diff --git a/local/recipes/kde/breeze/source.tar b/local/recipes/kde/breeze/source.tar index 03b5da8f47..6b65d6fb4e 100644 Binary files a/local/recipes/kde/breeze/source.tar and b/local/recipes/kde/breeze/source.tar differ diff --git a/local/recipes/kde/breeze/source/.gitignore b/local/recipes/kde/breeze/source/.gitignore index 04fd2a9818..ee83117be6 100644 --- a/local/recipes/kde/breeze/source/.gitignore +++ b/local/recipes/kde/breeze/source/.gitignore @@ -1,8 +1,10 @@ -build +# Ignore the following files +/build*/ +CMakeLists.txt.user* .clang-format /compile_commands.json .clangd .idea /cmake-build* .cache -.vscode \ No newline at end of file +.vscode diff --git a/local/recipes/kde/breeze/source/.gitlab-ci.yml b/local/recipes/kde/breeze/source/.gitlab-ci.yml index 457f547156..70ec9f70c6 100644 --- a/local/recipes/kde/breeze/source/.gitlab-ci.yml +++ b/local/recipes/kde/breeze/source/.gitlab-ci.yml @@ -5,8 +5,9 @@ include: - project: sysadmin/ci-utilities file: - /gitlab-templates/linux.yml - - /gitlab-templates/freebsd.yml - /gitlab-templates/linux-qt6.yml - - /gitlab-templates/windows.yml - /gitlab-templates/freebsd-qt6.yml - /gitlab-templates/windows-qt6.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml + - /gitlab-templates/linux-qt6-next.yml diff --git a/local/recipes/kde/breeze/source/.kde-ci.yml b/local/recipes/kde/breeze/source/.kde-ci.yml index 0f004b44d9..533b548aae 100644 --- a/local/recipes/kde/breeze/source/.kde-ci.yml +++ b/local/recipes/kde/breeze/source/.kde-ci.yml @@ -2,9 +2,11 @@ # SPDX-License-Identifier: CC0-1.0 Dependencies: -- 'on': ['Linux/Qt5', 'FreeBSD/Qt5', 'Windows/Qt5'] - 'require': + - 'on': ['Linux/Qt5'] + 'require': 'frameworks/extra-cmake-modules': '@latest' + 'frameworks/frameworkintegration': '@latest' + 'frameworks/kcmutils': '@latest' 'frameworks/kconfig': '@latest' 'frameworks/kconfigwidgets': '@latest' 'frameworks/kcoreaddons': '@latest' @@ -14,13 +16,8 @@ Dependencies: 'frameworks/kirigami': '@latest' 'frameworks/kwindowsystem': '@latest' -- 'on': ['Linux/Qt5', 'FreeBSD/Qt5'] - 'require': - 'frameworks/frameworkintegration': '@latest' - 'frameworks/kcmutils': '@latest' - -- 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6'] - 'require': + - 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6', 'Linux/Qt6Next'] + 'require': 'frameworks/extra-cmake-modules': '@latest-kf6' 'frameworks/kconfig': '@latest-kf6' 'frameworks/kcoreaddons': '@latest-kf6' @@ -31,11 +28,12 @@ Dependencies: 'frameworks/kwindowsystem': '@latest-kf6' 'frameworks/kcolorscheme': '@latest-kf6' -- 'on': ['Linux/Qt6', 'FreeBSD/Qt6'] - 'require': + - 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Linux/Qt6Next'] + 'require': 'plasma/kdecoration': '@same' 'frameworks/frameworkintegration': '@latest-kf6' 'frameworks/kcmutils': '@latest-kf6' Options: - require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows'] + require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows'] + enable-lsan: True diff --git a/local/recipes/kde/breeze/source/.redbear-src-version b/local/recipes/kde/breeze/source/.redbear-src-version new file mode 100644 index 0000000000..2dd517aa61 --- /dev/null +++ b/local/recipes/kde/breeze/source/.redbear-src-version @@ -0,0 +1 @@ +6.7.2 diff --git a/local/recipes/kde/breeze/source/CMakeLists.txt b/local/recipes/kde/breeze/source/CMakeLists.txt index de0084d22f..6f0350095c 100644 --- a/local/recipes/kde/breeze/source/CMakeLists.txt +++ b/local/recipes/kde/breeze/source/CMakeLists.txt @@ -1,13 +1,12 @@ cmake_minimum_required(VERSION 3.16) project(breeze) -set(PROJECT_VERSION "6.3.4") -set(PROJECT_VERSION_MAJOR 6) +set(PROJECT_VERSION "6.7.2") set(KF5_MIN_VERSION "5.102.0") -set(KF6_MIN_VERSION "6.10.0") +set(KF6_MIN_VERSION "6.26.0") set(KDE_COMPILERSETTINGS_LEVEL "5.82") set(QT5_MIN_VERSION "5.15.2") -set(QT_MIN_VERSION "6.7.0") +set(QT_MIN_VERSION "6.10.0") include(GenerateExportHeader) include(WriteBasicConfigVersionFile) @@ -39,6 +38,8 @@ include(GtkUpdateIconCache) option(BUILD_QT5 "Build Qt5 style" ON) option(BUILD_QT6 "Build with Qt6" ON) +option(BUILD_CURSOR "Build Breeze Cursor" ON) +option(BUILD_WITH_QTQUICK "Build with Qt Quick features enabled" ON) set(QT_NO_CREATE_VERSIONLESS_TARGETS ON) set(QT_NO_CREATE_VERSIONLESS_FUNCTIONS ON) @@ -86,9 +87,8 @@ function(build_Qt5) IconThemes WindowSystem) - find_package(Qt5 ${QT5_MIN_VERSION} OPTIONAL_COMPONENTS Quick) - if(${Qt5Quick_FOUND}) - find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Kirigami2) + if(BUILD_WITH_QTQUICK) + find_package(Qt5 ${QT5_MIN_VERSION} REQUIRED COMPONENTS Quick) endif() set(BREEZE_HAVE_KSTYLE ${KF5FrameworkIntegration_FOUND}) @@ -144,23 +144,13 @@ function(build_Qt6) IconThemes WindowSystem) - find_package(Qt6 ${QT_MIN_VERSION} OPTIONAL_COMPONENTS Quick) - if(${Qt6Quick_FOUND}) - find_package(KF6KirigamiPlatform ${KF6_MIN_VERSION} REQUIRED) + if(BUILD_WITH_QTQUICK) + find_package(Qt6 ${QT_MIN_VERSION} REQUIRED COMPONENTS Quick) endif() set(BREEZE_HAVE_KSTYLE ${KF6FrameworkIntegration_FOUND}) set(BREEZE_HAVE_QTQUICK ${Qt6Quick_FOUND}) - # https://bugreports.qt.io/browse/QTBUG-114706 - add_library(Qt::Core ALIAS Qt6::Core) - add_library(Qt::Gui ALIAS Qt6::Gui) - add_library(Qt::OpenGL ALIAS Qt6::OpenGL) - add_library(Qt::Network ALIAS Qt6::Network) - if(Qt6_VERSION_MINOR GREATER 6) - add_library(Qt::PlatformModuleInternal ALIAS Qt6::PlatformModuleInternal) - endif() - add_subdirectory(kstyle kstyle6) add_subdirectory(libbreezecommon libbreezecommon6) add_subdirectory(misc) @@ -206,7 +196,9 @@ function(build_colors_and_cursors) # only use ICONDIR and DATADIR which both do not depend on the version include(KDEInstallDirs) add_subdirectory(colors) - add_subdirectory(cursors) + if(BUILD_CURSOR) + add_subdirectory(cursors) + endif() endfunction() build_colors_and_cursors() diff --git a/local/recipes/kde/breeze/source/README.md b/local/recipes/kde/breeze/source/README.md index fe765b1b42..8256c3baf2 100644 --- a/local/recipes/kde/breeze/source/README.md +++ b/local/recipes/kde/breeze/source/README.md @@ -26,7 +26,7 @@ If you can't find what you're looking for, it may exist in another repository in ## Building -The easiest way to make changes and test Breeze during development is to [build it with kdesrc-build](https://community.kde.org/Get_Involved/development/Build_software_with_kdesrc-build). +The easiest way to make changes and test Breeze during development is to [build it with kde-builder](https://develop.kde.org/docs/getting-started/building). When building Breeze manually, keep in mind that the Qt5 and Qt6 versions will be built by default. To control which versions are built, use the `BUILD_QT5` and `BUILD_QT6` CMake variables. diff --git a/local/recipes/kde/breeze/source/colors/BreezeClassic.colors b/local/recipes/kde/breeze/source/colors/BreezeClassic.colors index 59720ee135..cf4466b442 100644 --- a/local/recipes/kde/breeze/source/colors/BreezeClassic.colors +++ b/local/recipes/kde/breeze/source/colors/BreezeClassic.colors @@ -132,12 +132,12 @@ Name[ja]=Breeze クラシック Name[ka]=Breeze კლასიკური Name[ko]=Breeze 고전 Name[lt]=Breeze klasikinis -Name[lv]=Breeze Classic +Name[lv]=„Breeze“ klasiskais Name[nl]=Breeze Classic Name[nn]=Breeze klassisk Name[pa]=ਬਰੀਜ਼ ਟਕਸਾਲੀ Name[pl]=Klasyczna Bryza -Name[pt]=Brisa Clássica +Name[pt]=Brisa Clássico Name[pt_BR]=Breeze Classic Name[ro]=Briză, clasic Name[ru]=Breeze, классический вариант @@ -145,9 +145,9 @@ Name[sa]=हवा क्लासिक Name[sk]=Klasický vánok Name[sl]=Sapica, klasična Name[sv]=Breeze klassisk +Name[ta]=செந்தர பிரீஸ் Name[tr]=Esinti Klasik Name[uk]=Класична Breeze -Name[x-test]=xxBreeze Classicxx Name[zh_CN]=Breeze 微风经典 Name[zh_TW]=Breeze Classic accentActiveTitlebar=true diff --git a/local/recipes/kde/breeze/source/colors/BreezeDark.colors b/local/recipes/kde/breeze/source/colors/BreezeDark.colors index 7166fbf489..2c982e081b 100644 --- a/local/recipes/kde/breeze/source/colors/BreezeDark.colors +++ b/local/recipes/kde/breeze/source/colors/BreezeDark.colors @@ -4,6 +4,7 @@ # SPDX-FileCopyrightText: Noah Davis # SPDX-FileCopyrightText: Neal Gompa # SPDX-FileCopyrightText: David Redondo +# SPDX-FileCopyrightText: Thomas Duckworth # SPDX-License-Identifier: LGPL-2.0-or-later [ColorEffects:Disabled] @@ -28,7 +29,7 @@ IntensityEffect=0 [Colors:Button] BackgroundAlternate=30,87,116 -BackgroundNormal=49,54,59 +BackgroundNormal=41,44,48 DecorationFocus=61,174,233 DecorationHover=61,174,233 ForegroundActive=61,174,233 @@ -42,7 +43,7 @@ ForegroundVisited=155,89,182 [Colors:Complementary] BackgroundAlternate=30,87,116 -BackgroundNormal=42,46,50 +BackgroundNormal=32,35,38 DecorationFocus=61,174,233 DecorationHover=61,174,233 ForegroundActive=61,174,233 @@ -55,8 +56,8 @@ ForegroundPositive=39,174,96 ForegroundVisited=155,89,182 [Colors:Header] -BackgroundAlternate=42,46,50 -BackgroundNormal=49,54,59 +BackgroundAlternate=32,35,38 +BackgroundNormal=41,44,48 DecorationFocus=61,174,233 DecorationHover=61,174,233 ForegroundActive=61,174,233 @@ -69,8 +70,8 @@ ForegroundPositive=39,174,96 ForegroundVisited=155,89,182 [Colors:Header][Inactive] -BackgroundAlternate=49,54,59 -BackgroundNormal=42,46,50 +BackgroundAlternate=41,44,48 +BackgroundNormal=32,35,38 DecorationFocus=61,174,233 DecorationHover=61,174,233 ForegroundActive=61,174,233 @@ -97,8 +98,8 @@ ForegroundPositive=23,104,57 ForegroundVisited=155,89,182 [Colors:Tooltip] -BackgroundAlternate=42,46,50 -BackgroundNormal=49,54,59 +BackgroundAlternate=32,35,38 +BackgroundNormal=41,44,48 DecorationFocus=61,174,233 DecorationHover=61,174,233 ForegroundActive=61,174,233 @@ -111,8 +112,8 @@ ForegroundPositive=39,174,96 ForegroundVisited=155,89,182 [Colors:View] -BackgroundAlternate=35,38,41 -BackgroundNormal=27,30,32 +BackgroundAlternate=29,31,34 +BackgroundNormal=20,22,24 DecorationFocus=61,174,233 DecorationHover=61,174,233 ForegroundActive=61,174,233 @@ -125,8 +126,8 @@ ForegroundPositive=39,174,96 ForegroundVisited=155,89,182 [Colors:Window] -BackgroundAlternate=49,54,59 -BackgroundNormal=42,46,50 +BackgroundAlternate=41,44,48 +BackgroundNormal=32,35,38 DecorationFocus=61,174,233 DecorationHover=61,174,233 ForegroundActive=61,174,233 @@ -170,13 +171,13 @@ Name[ja]=Breeze ダーク Name[ka]=Breeze მუქი Name[ko]=어두운 Breeze Name[lt]=Breeze tamsus -Name[lv]=Breeze Dark +Name[lv]=„Breeze“ tumšais Name[nb]=Breeze mørk Name[nl]=Breeze Dark Name[nn]=Breeze mørk Name[pa]=ਬਰੀਜ਼ ਗੂੜ੍ਹਾ Name[pl]=Ciemna Bryza -Name[pt]=Brisa Escura +Name[pt]=Brisa Escuro Name[pt_BR]=Breeze Dark Name[ro]=Briză, întunecat Name[ru]=Breeze, тёмный вариант @@ -188,10 +189,10 @@ Name[sr@ijekavian]=Поветарац тамни Name[sr@ijekavianlatin]=Povetarac tamni Name[sr@latin]=Povetarac tamni Name[sv]=Breeze mörk +Name[ta]=கரும் பிரீஸ் Name[tg]=Насими торик Name[tr]=Esinti Koyu Name[uk]=Темна Breeze -Name[x-test]=xxBreeze Darkxx Name[zh_CN]=Breeze 微风深色 Name[zh_TW]=Breeze Dark shadeSortColumn=true @@ -200,9 +201,9 @@ shadeSortColumn=true contrast=4 [WM] -activeBackground=49,54,59 +activeBackground=39,44,49 activeBlend=252,252,252 activeForeground=252,252,252 -inactiveBackground=42,46,50 +inactiveBackground=32,36,40 inactiveBlend=161,169,177 inactiveForeground=161,169,177 diff --git a/local/recipes/kde/breeze/source/colors/BreezeLight.colors b/local/recipes/kde/breeze/source/colors/BreezeLight.colors index 8241d17034..14fce890df 100644 --- a/local/recipes/kde/breeze/source/colors/BreezeLight.colors +++ b/local/recipes/kde/breeze/source/colors/BreezeLight.colors @@ -169,12 +169,12 @@ Name[ja]=Breeze ライト Name[ka]=Breeze ღია Name[ko]=밝은 Breeze Name[lt]=Breeze šviesus -Name[lv]=Breeze Light +Name[lv]=„Breeze“ gaišais Name[nl]=Breeze Light Name[nn]=Breeze lys Name[pa]=ਬਰੀਜ਼ ਹਲਕਾ Name[pl]=Jasna Bryza -Name[pt]=Brisa Clara +Name[pt]=Brisa Claro Name[pt_BR]=Breeze Light Name[ro]=Briză, luminos Name[ru]=Breeze, светлый вариант @@ -182,10 +182,10 @@ Name[sa]=वायु प्रकाश Name[sk]=Svetlý vánok Name[sl]=Sapica, svetla Name[sv]=Breeze ljus +Name[ta]=வெளிர் பிரீஸ் Name[tg]=Насими сабук Name[tr]=Esinti Açık Name[uk]=Світла Breeze -Name[x-test]=xxBreeze Lightxx Name[zh_CN]=Breeze 微风浅色 Name[zh_TW]=Breeze Light shadeSortColumn=true diff --git a/local/recipes/kde/breeze/source/cursors/Breeze/Breeze/index.theme b/local/recipes/kde/breeze/source/cursors/Breeze/Breeze/index.theme index 9beb16bdd6..46ee1d49fc 100644 --- a/local/recipes/kde/breeze/source/cursors/Breeze/Breeze/index.theme +++ b/local/recipes/kde/breeze/source/cursors/Breeze/Breeze/index.theme @@ -1,106 +1,101 @@ [Icon Theme] -Name=Breeze -Name[ar]=نسيم -Name[ast]=Breeze -Name[az]=Breeze -Name[bg]=Breeze -Name[bs]=Breeze -Name[ca]=Brisa -Name[ca@valencia]=Brisa -Name[cs]=Breeze -Name[da]=Breeze -Name[de]=Breeze -Name[el]=Breeze -Name[en_GB]=Breeze -Name[eo]=Breeze -Name[es]=Brisa -Name[et]=Breeze -Name[eu]=Breeze -Name[fi]=Breeze -Name[fr]=Brise -Name[gl]=Brisa -Name[he]=בריזה -Name[hi]=ब्रीज़ -Name[hu]=Breeze -Name[ia]=Brisa -Name[id]=Breeze -Name[is]=Breeze -Name[it]=Brezza -Name[ja]=Breeze -Name[ka]=Breeze -Name[ko]=Breeze -Name[lt]=Breeze -Name[lv]=Breeze -Name[nb]=Breeze -Name[nds]=Breeze -Name[nl]=Breeze -Name[nn]=Breeze -Name[pa]=ਬਰੀਜ਼ -Name[pl]=Bryza -Name[pt]=Brisa -Name[pt_BR]=Breeze -Name[ro]=Briză -Name[ru]=Breeze -Name[sa]=वायुः -Name[sk]=Vánok -Name[sl]=Sapica -Name[sr]=Поветарац -Name[sr@ijekavian]=Поветарац -Name[sr@ijekavianlatin]=Povetarac -Name[sr@latin]=Povetarac -Name[sv]=Breeze -Name[ta]=பிரீஸ் -Name[tg]=Насим -Name[tr]=Esinti -Name[uk]=Breeze -Name[x-test]=xxBreezexx -Name[zh_CN]=Breeze 微风 -Name[zh_TW]=Breeze -Comment=Breeze by the KDE VDG -Comment[ar]=نسيم من مجموعة تصميم كِيدِي -Comment[az]=Breeze - KDE VDG tərəfindən -Comment[bg]=Breeze от KDE VDG -Comment[ca]=Brisa, creat pel VDG del KDE -Comment[ca@valencia]=Brisa, creat pel VDG de KDE -Comment[cs]=Breeze od KDE VDG -Comment[da]=Breeze af KDE's visuelle designgruppe -Comment[de]=Breeze von der KDE VDG -Comment[el]=Breeze από το KDE VDG -Comment[en_GB]=Breeze by the KDE VDG -Comment[eo]=Breeze de la KDE VDG -Comment[es]=Brisa, por KDE VDG -Comment[et]=Breeze KDE VDG-lt -Comment[eu]=Breeze, KDE VDGk egina -Comment[fi]=Breeze KDE VDG:ltä -Comment[fr]=Brise par KDE VDG -Comment[gl]=Brisa do KDE VDG. -Comment[he]=בריזה מאת צוות העיצוב החזותי של KDE -Comment[hi]=केडीई वीडीजी द्वारा ब्रीज़ -Comment[hu]=Breeze a KDE VDG-től -Comment[ia]=Breeze (Brisa) per le KDE VDG -Comment[id]=Breeze oleh KDE VDG -Comment[is]=Breeze frá KDE VDG -Comment[it]=Brezza a cura del VDG di KDE -Comment[ja]=KDE VDG による Breeze -Comment[ka]=Breeze-ი KDE VDG-სგან -Comment[ko]=KDE 시각 디자인 그룹에서 제작한 Breeze -Comment[lt]=Breeze pagal KDE VDG -Comment[lv]=KDE VDG veidotā „Breeze“ -Comment[nl]=Breeze door de KDE VDG -Comment[nn]=Breeze frå KDE VDG -Comment[pa]=ਕੇਡੀਈ ਵੀਡੀਜੀ ਵਲੋਂ ਬਰੀਜ਼ -Comment[pl]=Bryza autorstwa KDE VDG -Comment[pt]=Brisa da VDG do KDE -Comment[pt_BR]=Breeze pelo KDE VDG -Comment[ro]=Briză, de KDE VDG -Comment[ru]=Breeze от KDE VDG -Comment[sa]=केडीई वीडीजी द्वारा वायुः -Comment[sk]=Vánok od KDE VDG -Comment[sl]=Sapica; izdelali pri KDE VDG -Comment[sv]=Breeze av KDE:s visuella designgrupp -Comment[tg]=Насим аз KDE VDG -Comment[tr]=KDE Görsel Tasarım grubundan Esinti -Comment[uk]=Breeze, автори — KDE VDG -Comment[x-test]=xxBreeze by the KDE VDGxx -Comment[zh_CN]=Breeze 微风主题,由 KDE VDG (视觉设计团队) 设计制作 -Comment[zh_TW]=由 KDE VDG 製作的 Breeze +Name=Breeze Dark +Name[ar]=نسيم داكن +Name[az]=Breeze - Tünd +Name[bg]=Breeze Тъмен +Name[bs]=Breeze tamna +Name[ca]=Brisa fosca +Name[ca@valencia]=Brisa fosca +Name[cs]=Breeze Tmavé +Name[da]=Breeze Dark +Name[de]=Breeze Dunkel +Name[el]=Breeze σκούρο +Name[en_GB]=Breeze Dark +Name[eo]=Breeze Dark +Name[es]=Brisa oscuro +Name[et]=Breeze tume +Name[eu]=Breeze iluna +Name[fi]=Tumma Breeze +Name[fr]=Brise sombre +Name[gl]=Brisa escura +Name[he]=בריזה כהה +Name[hi]=ब्रीज़ गहरा +Name[hu]=Breeze Dark +Name[ia]=Brisa obscure +Name[id]=Breeze Gelap +Name[is]=Breeze dökkt +Name[it]=Brezza scuro +Name[ja]=Breeze ダーク +Name[ka]=Breeze მუქი +Name[ko]=어두운 Breeze +Name[lt]=Breeze tamsus +Name[lv]=„Breeze“ tumšais +Name[nb]=Breeze mørk +Name[nl]=Breeze Dark +Name[nn]=Breeze mørk +Name[pa]=ਬਰੀਜ਼ ਗੂੜ੍ਹਾ +Name[pl]=Ciemna Bryza +Name[pt]=Brisa Escuro +Name[pt_BR]=Breeze Dark +Name[ro]=Briză, întunecat +Name[ru]=Breeze, тёмный вариант +Name[sa]=वायुः अन्धकारः +Name[sk]=Tmavý vánok +Name[sl]=Sapica, temna +Name[sr]=Поветарац тамни +Name[sr@ijekavian]=Поветарац тамни +Name[sr@ijekavianlatin]=Povetarac tamni +Name[sr@latin]=Povetarac tamni +Name[sv]=Breeze mörk +Name[ta]=கரும் பிரீஸ் +Name[tg]=Насими торик +Name[tr]=Esinti Koyu +Name[uk]=Темна Breeze +Name[zh_CN]=Breeze 微风深色 +Name[zh_TW]=Breeze Dark +Comment=Breeze Dark by the KDE VDG +Comment[ar]=نسيم داكن من من مجموعة تصميم كِيدِي +Comment[az]=Breeze - Tünd - by the KDE VDG +Comment[bg]=Breeze Тъмен от KDE VDG +Comment[ca]=Brisa fosca, creat pel VDG del KDE +Comment[ca@valencia]=Brisa fosca, creat pel VDG de KDE +Comment[cs]=Breeze Dark od KDE VDG +Comment[da]=Breeze Dark af KDE's visuelle designgruppe +Comment[de]=Breeze Dunkel von der KDE VDG +Comment[el]=Breeze σκούρο από το KDE VDG +Comment[en_GB]=Breeze Dark by the KDE VDG +Comment[eo]=Breeze Dark de la KDE VDG +Comment[es]=Brisa oscuro, por KDE VDG +Comment[et]=Breeze tume KDE VDG-lt +Comment[eu]=Breeze iluna, KDE VDGk egina +Comment[fi]=Tumma Breeze KDE VDG:ltä +Comment[fr]=Breeze sombre, par KDE VDG +Comment[gl]=Breeze escuro de KDE VDG +Comment[he]=בריזה כהה מאת צוות העיצוב החזותי של KDE +Comment[hi]=केडीई वीडीजी द्वारा ब्रीज़ गहरा +Comment[hu]=Breeze Dark a KDE VDG-től +Comment[ia]=Breeze Dark (Brisa Obscure) per le KDE VDG +Comment[id]=Breeze Gelap oleh KDE VDG +Comment[is]=Breeze Dark frá KDE VDG +Comment[it]=Brezza scuro a cura del VDG di KDE +Comment[ka]=Breeze Dark "KDE VDG"-სგან +Comment[ko]=KDE 시각 디자인 그룹에서 제작한 어두운 Breeze +Comment[lt]=Breeze tamsus pagal KDE VDG +Comment[lv]=KDE VDG veidotais „Breeze“ tumšais motīvs +Comment[nl]=Breeze Dark door de KDE VDG +Comment[nn]=Breeze Dark frå KDE VDG +Comment[pa]=ਕੇਡੀਈ ਵੀਡੀਜੀ ਵਲੋਂ ਬਰੀਜ਼ ਗੂੜ੍ਹਾ +Comment[pl]=Ciemna Bryza autorstwa KDE VDG +Comment[pt]=Brisa Escuro pelo VDG do KDE +Comment[pt_BR]=Breeze Dark pelo KDE VDG +Comment[ro]=Briză, întunecat, de KDE VDG +Comment[ru]=Тёмный вариант Breeze от KDE VDG +Comment[sk]=Tmavý vánok od KDE VDG +Comment[sl]=Sapica temna; izdelali pri KDE VDG +Comment[sv]=Breeze mörk av KDE:s visuella designgrupp +Comment[ta]=கே.டீ.யீ. VDG வழங்கும் கரும் பிரீஸ் +Comment[tg]=Насими торик аз KDE VDG +Comment[tr]=KDE Görsel Tasarım grubundan Esinti Koyu +Comment[uk]=Темна Breeze, автори — KDE VDG +Comment[zh_CN]=Breeze 微风深色主题,由 KDE VDG (视觉设计团队) 设计制作 +Comment[zh_TW]=由 KDE VDG 製作的 Breeze Dark diff --git a/local/recipes/kde/breeze/source/cursors/Breeze/src/index.theme b/local/recipes/kde/breeze/source/cursors/Breeze/src/index.theme index 9beb16bdd6..fa68bcd6ab 100644 --- a/local/recipes/kde/breeze/source/cursors/Breeze/src/index.theme +++ b/local/recipes/kde/breeze/source/cursors/Breeze/src/index.theme @@ -53,7 +53,6 @@ Name[ta]=பிரீஸ் Name[tg]=Насим Name[tr]=Esinti Name[uk]=Breeze -Name[x-test]=xxBreezexx Name[zh_CN]=Breeze 微风 Name[zh_TW]=Breeze Comment=Breeze by the KDE VDG @@ -85,12 +84,12 @@ Comment[ja]=KDE VDG による Breeze Comment[ka]=Breeze-ი KDE VDG-სგან Comment[ko]=KDE 시각 디자인 그룹에서 제작한 Breeze Comment[lt]=Breeze pagal KDE VDG -Comment[lv]=KDE VDG veidotā „Breeze“ +Comment[lv]=KDE VDG veidotais „Breeze“ motīvs Comment[nl]=Breeze door de KDE VDG Comment[nn]=Breeze frå KDE VDG Comment[pa]=ਕੇਡੀਈ ਵੀਡੀਜੀ ਵਲੋਂ ਬਰੀਜ਼ Comment[pl]=Bryza autorstwa KDE VDG -Comment[pt]=Brisa da VDG do KDE +Comment[pt]=Brisa pelo VDG do KDE Comment[pt_BR]=Breeze pelo KDE VDG Comment[ro]=Briză, de KDE VDG Comment[ru]=Breeze от KDE VDG @@ -98,9 +97,9 @@ Comment[sa]=केडीई वीडीजी द्वारा वायु Comment[sk]=Vánok od KDE VDG Comment[sl]=Sapica; izdelali pri KDE VDG Comment[sv]=Breeze av KDE:s visuella designgrupp +Comment[ta]=கே.டீ.யீ. VDG வழங்கும் பிரீஸ் Comment[tg]=Насим аз KDE VDG Comment[tr]=KDE Görsel Tasarım grubundan Esinti Comment[uk]=Breeze, автори — KDE VDG -Comment[x-test]=xxBreeze by the KDE VDGxx Comment[zh_CN]=Breeze 微风主题,由 KDE VDG (视觉设计团队) 设计制作 Comment[zh_TW]=由 KDE VDG 製作的 Breeze diff --git a/local/recipes/kde/breeze/source/cursors/Breeze_Light/Breeze_Light/index.theme b/local/recipes/kde/breeze/source/cursors/Breeze_Light/Breeze_Light/index.theme index 9e7e880b15..f2316c72d5 100644 --- a/local/recipes/kde/breeze/source/cursors/Breeze_Light/Breeze_Light/index.theme +++ b/local/recipes/kde/breeze/source/cursors/Breeze_Light/Breeze_Light/index.theme @@ -28,12 +28,12 @@ Name[ja]=Breeze ライト Name[ka]=Breeze ღია Name[ko]=밝은 Breeze Name[lt]=Breeze šviesus -Name[lv]=Breeze Light +Name[lv]=„Breeze“ gaišais Name[nl]=Breeze Light Name[nn]=Breeze lys Name[pa]=ਬਰੀਜ਼ ਹਲਕਾ Name[pl]=Jasna Bryza -Name[pt]=Brisa Clara +Name[pt]=Brisa Claro Name[pt_BR]=Breeze Light Name[ro]=Briză, luminos Name[ru]=Breeze, светлый вариант @@ -41,10 +41,10 @@ Name[sa]=वायु प्रकाश Name[sk]=Svetlý vánok Name[sl]=Sapica, svetla Name[sv]=Breeze ljus +Name[ta]=வெளிர் பிரீஸ் Name[tg]=Насими сабук Name[tr]=Esinti Açık Name[uk]=Світла Breeze -Name[x-test]=xxBreeze Lightxx Name[zh_CN]=Breeze 微风浅色 Name[zh_TW]=Breeze Light Comment=Breeze Light by the KDE VDG @@ -76,12 +76,12 @@ Comment[ja]=KDE VDG による Breeze ライト Comment[ka]=Breeze ღია KDE VDG-სგან Comment[ko]=KDE 시각 디자인 그룹에서 제작한 밝은 Breeze Comment[lt]=Breeze šviesus pagal KDE VDG -Comment[lv]=KDE VDG veidotā „Breeze Light“ +Comment[lv]=KDE VDG veidotais „Breeze“ gaišais motīvs Comment[nl]=Breeze Light door de KDE VDG Comment[nn]=Breeze Light frå KDE VDG Comment[pa]=ਕੇਡੀਈ ਵੀਡੀਜੀ ਵਲੋਂ ਬਰੀਜ਼ ਹਲਕਾ Comment[pl]=Jasna Bryza autorstwa KDE VDG -Comment[pt]=Brisa Claro da VDG do KDE +Comment[pt]=Brisa Claro pelo VDG do KDE Comment[pt_BR]=Breeze Light pelo KDE VDG Comment[ro]=Briză, luminos, de KDE VDG Comment[ru]=Светлый вариант Breeze от KDE VDG @@ -89,9 +89,9 @@ Comment[sa]=केडीई वीडीजी द्वारा वायु Comment[sk]=Svetlý vánok od KDE VDG Comment[sl]=Sapica, svetla; izdelali pri KDE VDG Comment[sv]=Breeze ljus av KDE:s visuella designgrupp +Comment[ta]=கே.டீ.யீ. VDG வழங்கும் வெளிர் பிரீஸ் Comment[tg]=Насими сабук аз KDE VDG Comment[tr]=KDE Görsel Tasarım grubundan Esinti Açık Comment[uk]=Світла Breeze, автори — KDE VDG -Comment[x-test]=xxBreeze Light by the KDE VDGxx Comment[zh_CN]=Breeze 微风浅色主题,由 KDE VDG (视觉设计团队) 设计制作 Comment[zh_TW]=由 KDE VDG 製作的 Breeze Light diff --git a/local/recipes/kde/breeze/source/cursors/Breeze_Light/src/index.theme b/local/recipes/kde/breeze/source/cursors/Breeze_Light/src/index.theme index 9e7e880b15..f2316c72d5 100644 --- a/local/recipes/kde/breeze/source/cursors/Breeze_Light/src/index.theme +++ b/local/recipes/kde/breeze/source/cursors/Breeze_Light/src/index.theme @@ -28,12 +28,12 @@ Name[ja]=Breeze ライト Name[ka]=Breeze ღია Name[ko]=밝은 Breeze Name[lt]=Breeze šviesus -Name[lv]=Breeze Light +Name[lv]=„Breeze“ gaišais Name[nl]=Breeze Light Name[nn]=Breeze lys Name[pa]=ਬਰੀਜ਼ ਹਲਕਾ Name[pl]=Jasna Bryza -Name[pt]=Brisa Clara +Name[pt]=Brisa Claro Name[pt_BR]=Breeze Light Name[ro]=Briză, luminos Name[ru]=Breeze, светлый вариант @@ -41,10 +41,10 @@ Name[sa]=वायु प्रकाश Name[sk]=Svetlý vánok Name[sl]=Sapica, svetla Name[sv]=Breeze ljus +Name[ta]=வெளிர் பிரீஸ் Name[tg]=Насими сабук Name[tr]=Esinti Açık Name[uk]=Світла Breeze -Name[x-test]=xxBreeze Lightxx Name[zh_CN]=Breeze 微风浅色 Name[zh_TW]=Breeze Light Comment=Breeze Light by the KDE VDG @@ -76,12 +76,12 @@ Comment[ja]=KDE VDG による Breeze ライト Comment[ka]=Breeze ღია KDE VDG-სგან Comment[ko]=KDE 시각 디자인 그룹에서 제작한 밝은 Breeze Comment[lt]=Breeze šviesus pagal KDE VDG -Comment[lv]=KDE VDG veidotā „Breeze Light“ +Comment[lv]=KDE VDG veidotais „Breeze“ gaišais motīvs Comment[nl]=Breeze Light door de KDE VDG Comment[nn]=Breeze Light frå KDE VDG Comment[pa]=ਕੇਡੀਈ ਵੀਡੀਜੀ ਵਲੋਂ ਬਰੀਜ਼ ਹਲਕਾ Comment[pl]=Jasna Bryza autorstwa KDE VDG -Comment[pt]=Brisa Claro da VDG do KDE +Comment[pt]=Brisa Claro pelo VDG do KDE Comment[pt_BR]=Breeze Light pelo KDE VDG Comment[ro]=Briză, luminos, de KDE VDG Comment[ru]=Светлый вариант Breeze от KDE VDG @@ -89,9 +89,9 @@ Comment[sa]=केडीई वीडीजी द्वारा वायु Comment[sk]=Svetlý vánok od KDE VDG Comment[sl]=Sapica, svetla; izdelali pri KDE VDG Comment[sv]=Breeze ljus av KDE:s visuella designgrupp +Comment[ta]=கே.டீ.யீ. VDG வழங்கும் வெளிர் பிரீஸ் Comment[tg]=Насими сабук аз KDE VDG Comment[tr]=KDE Görsel Tasarım grubundan Esinti Açık Comment[uk]=Світла Breeze, автори — KDE VDG -Comment[x-test]=xxBreeze Light by the KDE VDGxx Comment[zh_CN]=Breeze 微风浅色主题,由 KDE VDG (视觉设计团队) 设计制作 Comment[zh_TW]=由 KDE VDG 製作的 Breeze Light diff --git a/local/recipes/kde/breeze/source/cursors/src/kcursorgen/kcursorgen.cpp b/local/recipes/kde/breeze/source/cursors/src/kcursorgen/kcursorgen.cpp index 3ae7335013..aa4bd9ff26 100644 --- a/local/recipes/kde/breeze/source/cursors/src/kcursorgen/kcursorgen.cpp +++ b/local/recipes/kde/breeze/source/cursors/src/kcursorgen/kcursorgen.cpp @@ -7,6 +7,7 @@ #include "options.h" #include +#include #include #include #include diff --git a/local/recipes/kde/breeze/source/cursors/src/kcursorgen/main.cpp b/local/recipes/kde/breeze/source/cursors/src/kcursorgen/main.cpp index 96d5e2ecde..b1a284f44e 100644 --- a/local/recipes/kde/breeze/source/cursors/src/kcursorgen/main.cpp +++ b/local/recipes/kde/breeze/source/cursors/src/kcursorgen/main.cpp @@ -8,6 +8,7 @@ #include #include +#include #include int main(int argc, char **argv) diff --git a/local/recipes/kde/breeze/source/kdecoration/CMakeLists.txt b/local/recipes/kde/breeze/source/kdecoration/CMakeLists.txt index e62fa37214..876430a777 100644 --- a/local/recipes/kde/breeze/source/kdecoration/CMakeLists.txt +++ b/local/recipes/kde/breeze/source/kdecoration/CMakeLists.txt @@ -33,6 +33,7 @@ target_link_libraries(breezedecoration KF6::I18n KF6::IconThemes KDecoration3::KDecoration + KF6::ColorScheme ) install(TARGETS breezedecoration DESTINATION ${KDE_INSTALL_PLUGINDIR}/${KDECORATION_PLUGIN_DIR}) diff --git a/local/recipes/kde/breeze/source/kdecoration/breeze.json b/local/recipes/kde/breeze/source/kdecoration/breeze.json index 2d2efaef15..faa96d23b4 100644 --- a/local/recipes/kde/breeze/source/kdecoration/breeze.json +++ b/local/recipes/kde/breeze/source/kdecoration/breeze.json @@ -2,7 +2,7 @@ "KPlugin": { "Description": "Window decoration using the Breeze visual style for the Plasma Desktop", "Description[ar]": "زخرفة نوافذ تستخدم نمط «نسيم» المرئيّ لسطح مكتب «بلازما»", - "Description[az]": "Plazma Masaüstü üçün Breeze vizual üslubundan istifadə edən pəncərə dekorasiyası", + "Description[az]": "Plasma iş masası üçün Breeze üslubunda pəncərə tərtibatı", "Description[bg]": "Декорация на прозорци, използваща Breeze визуален стил за работнаta среда на Plasma", "Description[ca@valencia]": "Decoració de les finestres que utilitza l'estil visual Brisa per a l'escriptori Plasma", "Description[ca]": "Decoració de les finestres que usa l'estil visual Brisa per a l'escriptori Plasma", @@ -14,7 +14,7 @@ "Description[eo]": "Fenestraĵa ornamo", "Description[es]": "Decoración de ventanas que usa el estilo visual Brisa para el escritorio Plasma", "Description[et]": "Plasma töölaua akende dekoratsioon Breeze'i visuaalse stiiliga", - "Description[eu]": "Leiho apainketa Plasma mahaigainerako Breeze ikus-estiloa erabiliz", + "Description[eu]": "Plasma mahaigainerako Brisa ikus-estiloa erabiltzen duen leiho-apaindura", "Description[fi]": "Breeze-tyyliä käyttävä ikkunan kehys Plasma-työpöydälle", "Description[fr]": "Décorations de fenêtres utilisant le style visuel Breeze pour le bureau Plasma", "Description[gl]": "Decoración de xanelas que usa o estilo visual Brisa para o escritorio Plasma.", @@ -35,7 +35,7 @@ "Description[nn]": "Vindaugspynt som brukar Breeze-stilen for Plasma-skrivebordet", "Description[pa]": "ਪਲਾਜ਼ਮਾ ਡੈਸਕਟਾਪ ਲਈ ਬਰੀਜ਼ ਦਿੱਖ ਸਟਾਈਲ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਵਿੰਡੋ ਸਜਾਵਟ", "Description[pl]": "Okna zgodne ze stylem Bryzy dla Pulpitu Plazmy", - "Description[pt]": "Decoração de janelas que usa o estilo visual Brisa para a Área de Trabalho Plasma", + "Description[pt]": "Decoração de janelas utilizando o estilo visual Brisa para o Ambiente de Trabalho Plasma", "Description[pt_BR]": "Decoração de janelas que usa o estilo visual Breeze para o Plasma Desktop", "Description[ro]": "Decorații de fereastră folosind stilul vizual Briză pentru biroul Plasma", "Description[ru]": "Оформление окон Breeze", @@ -51,12 +51,11 @@ "Description[tg]": "Ороиши равзана бо истифодаи услуби намоёнии Насим барои мизи кории Plasma", "Description[tr]": "Plasma Masaüstü için Esinti görsel biçemini kullanan pencere dekorasyonu", "Description[uk]": "Обрамлення вікон з використанням візуального стилю Breeze для стільничного середовища Плазми", - "Description[x-test]": "xxWindow decoration using the Breeze visual style for the Plasma Desktopxx", "Description[zh_CN]": "Breeze 微风外观样式的 Plasma 桌面窗口装饰", "Description[zh_TW]": "使用 Plasma 桌面 Breeze 視覺樣式的視窗裝飾", "EnabledByDefault": true, "Name": "Breeze", - "Name[ar]": "نسيم", + "Name[ar]": "النسيم", "Name[ast]": "Breeze", "Name[az]": "Breeze", "Name[bg]": "Breeze", @@ -70,7 +69,7 @@ "Name[eo]": "Breeze", "Name[es]": "Brisa", "Name[et]": "Breeze", - "Name[eu]": "Breeze", + "Name[eu]": "Brisa", "Name[fi]": "Breeze", "Name[fr]": "Breeze", "Name[gl]": "Brisa", @@ -98,6 +97,7 @@ "Name[sa]": "वायुः", "Name[sk]": "Vánok", "Name[sl]": "Sapica", + "Name[sq]": "Breeze", "Name[sr@ijekavian]": "Поветарац", "Name[sr@ijekavianlatin]": "Povetarac", "Name[sr@latin]": "Povetarac", @@ -107,7 +107,6 @@ "Name[tg]": "Насим", "Name[tr]": "Esinti", "Name[uk]": "Breeze", - "Name[x-test]": "xxBreezexx", "Name[zh_CN]": "Breeze 微风", "Name[zh_TW]": "Breeze" }, diff --git a/local/recipes/kde/breeze/source/kdecoration/breezebutton.cpp b/local/recipes/kde/breeze/source/kdecoration/breezebutton.cpp index ba45c42222..83971c9f39 100644 --- a/local/recipes/kde/breeze/source/kdecoration/breezebutton.cpp +++ b/local/recipes/kde/breeze/source/kdecoration/breezebutton.cpp @@ -35,7 +35,6 @@ Button::Button(DecorationButtonType type, Decoration *decoration, QObject *paren }); // connections - connect(decoration, &Decoration::tabletModeChanged, this, &Button::reconfigure); connect(decoration->window(), SIGNAL(iconChanged(QIcon)), this, SLOT(update())); connect(decoration->settings().get(), &KDecoration3::DecorationSettings::reconfigured, this, &Button::reconfigure); connect(this, &KDecoration3::DecorationButton::hoveredChanged, this, &Button::updateAnimationState); @@ -256,6 +255,28 @@ void Button::drawIcon(QPainter *painter) const break; } + case DecorationButtonType::ExcludeFromCapture: { + // A spy hat (like view-private.svg icon) + const qreal cx = 9, cy = 9; + // Hat crown with dip/crease at top (filled) + std::array crownPoints{QPointF(cx - 4.1, cy - 2.5), + QPointF(cx - 3.2, cy - 6.1), + QPointF(cx, cy - 5), + QPointF(cx + 3.2, cy - 6.1), + QPointF(cx + 4.1, cy - 2.5)}; + painter->setBrush(pen.color()); + painter->drawPolygon(crownPoints.data(), crownPoints.size()); + painter->setBrush(Qt::NoBrush); + // Hat brim + painter->drawLine(QPointF(cx - 6.2, cy - 0.5), QPointF(cx + 6.2, cy - 0.5)); + // Glasses' lenses + painter->drawEllipse(QPointF(cx - 4, cy + 3.8), 2.3, 2.3); + painter->drawEllipse(QPointF(cx + 4, cy + 3.8), 2.3, 2.3); + // Bridge between lenses + painter->drawLine(QPointF(cx - 1.5, cy + 3.8), QPointF(cx + 1.5, cy + 3.8)); + break; + } + case DecorationButtonType::ApplicationMenu: { painter->drawRect(QRectF(3.5, 4.5, 11, 1)); painter->drawRect(QRectF(3.5, 8.5, 11, 1)); @@ -294,7 +315,8 @@ QColor Button::foregroundColor() const } else if (type() == DecorationButtonType::Close && d->internalSettings()->outlineCloseButton()) { return d->titleBarColor(); - } else if ((type() == DecorationButtonType::KeepBelow || type() == DecorationButtonType::KeepAbove || type() == DecorationButtonType::Shade) + } else if ((type() == DecorationButtonType::KeepBelow || type() == DecorationButtonType::KeepAbove || type() == DecorationButtonType::Shade + || type() == DecorationButtonType::ExcludeFromCapture) && isChecked()) { return d->titleBarColor(); @@ -330,7 +352,8 @@ QColor Button::backgroundColor() const } else if ((type() == DecorationButtonType::KeepBelow || type() == DecorationButtonType::KeepAbove || type() == DecorationButtonType::Shade) && isChecked()) { return d->fontColor(); - + } else if (type() == DecorationButtonType::ExcludeFromCapture && isChecked()) { + return redColor; } else if (m_animation->state() == QAbstractAnimation::Running) { if (type() == DecorationButtonType::Close) { if (d->internalSettings()->outlineCloseButton()) { diff --git a/local/recipes/kde/breeze/source/kdecoration/breezedecoration.cpp b/local/recipes/kde/breeze/source/kdecoration/breezedecoration.cpp index ee63e60b09..48afd7ba3f 100644 --- a/local/recipes/kde/breeze/source/kdecoration/breezedecoration.cpp +++ b/local/recipes/kde/breeze/source/kdecoration/breezedecoration.cpp @@ -24,6 +24,7 @@ #include #include +#include #include #include #include @@ -108,25 +109,6 @@ inline CompositeShadowParams lookupShadowParams(int size) return s_shadowParams[3]; } } - -inline qreal lookupOutlineIntensity(int intensity) -{ - switch (intensity) { - case Breeze::InternalSettings::OutlineOff: - return 0; - case Breeze::InternalSettings::OutlineLow: - return Breeze::Metrics::Bias_Default / 2; - case Breeze::InternalSettings::OutlineMedium: - return Breeze::Metrics::Bias_Default; - case Breeze::InternalSettings::OutlineHigh: - return Breeze::Metrics::Bias_Default * 2; - case Breeze::InternalSettings::OutlineMaximum: - return Breeze::Metrics::Bias_Default * 3; - default: - // Fallback to the Medium intensity. - return Breeze::Metrics::Bias_Default; - } -} } namespace Breeze @@ -198,11 +180,7 @@ QColor Decoration::fontColor() const } //________________________________________________________________ -#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) bool Decoration::init() -#else -void Decoration::init() -#endif { // active state change animation // It is important start and end value are of the same type, hence 0.0 and not just 0 @@ -231,29 +209,6 @@ void Decoration::init() this, SLOT(reconfigure())); - dbus.connect(QStringLiteral("org.kde.KWin"), - QStringLiteral("/org/kde/KWin"), - QStringLiteral("org.kde.KWin.TabletModeManager"), - QStringLiteral("tabletModeChanged"), - QStringLiteral("b"), - this, - SLOT(onTabletModeChanged(bool))); - - auto message = QDBusMessage::createMethodCall(QStringLiteral("org.kde.KWin"), - QStringLiteral("/org/kde/KWin"), - QStringLiteral("org.freedesktop.DBus.Properties"), - QStringLiteral("Get")); - message.setArguments({QStringLiteral("org.kde.KWin.TabletModeManager"), QStringLiteral("tabletMode")}); - auto call = new QDBusPendingCallWatcher(dbus.asyncCall(message), this); - connect(call, &QDBusPendingCallWatcher::finished, this, [this, call]() { - QDBusPendingReply reply = *call; - if (!reply.isError()) { - onTabletModeChanged(reply.value().toBool()); - } - - call->deleteLater(); - }); - reconfigure(); updateTitleBar(); auto s = settings(); @@ -273,6 +228,7 @@ void Decoration::init() connect(s.get(), &KDecoration3::DecorationSettings::reconfigured, SettingsProvider::self(), &SettingsProvider::reconfigure, Qt::UniqueConnection); connect(s.get(), &KDecoration3::DecorationSettings::reconfigured, this, &Decoration::updateButtonsGeometryDelayed); + connect(window(), &KDecoration3::DecoratedWindow::activeChanged, this, &Decoration::recalculateBorders); connect(window(), &KDecoration3::DecoratedWindow::adjacentScreenEdgesChanged, this, &Decoration::recalculateBorders); connect(window(), &KDecoration3::DecoratedWindow::maximizedHorizontallyChanged, this, &Decoration::recalculateBorders); connect(window(), &KDecoration3::DecoratedWindow::maximizedVerticallyChanged, this, &Decoration::recalculateBorders); @@ -298,9 +254,7 @@ void Decoration::init() createButtons(); updateShadow(); -#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) return true; -#endif } //________________________________________________________________ @@ -349,12 +303,12 @@ qreal Decoration::borderSize(bool bottom, qreal scale) const if (m_internalSettings && (m_internalSettings->mask() & BorderSize)) { switch (m_internalSettings->borderSize()) { case InternalSettings::BorderNone: - return outlinesEnabled() ? std::max(pixelSize, KDecoration3::snapToPixelGrid(1, scale)) : 0; + return 0; case InternalSettings::BorderNoSides: if (bottom) { return KDecoration3::snapToPixelGrid(std::max(4.0, baseSize + Metrics::Frame_FrameRadius), scale); } else { - return outlinesEnabled() ? std::max(pixelSize, KDecoration3::snapToPixelGrid(1, scale)) : 0; + return 0; } default: case InternalSettings::BorderTiny: @@ -379,12 +333,12 @@ qreal Decoration::borderSize(bool bottom, qreal scale) const } else { switch (settings()->borderSize()) { case KDecoration3::BorderSize::None: - return outlinesEnabled() ? std::max(pixelSize, KDecoration3::snapToPixelGrid(1, scale)) : 0; + return 0; case KDecoration3::BorderSize::NoSides: if (bottom) { return KDecoration3::snapToPixelGrid(std::max(4.0, baseSize + Metrics::Frame_FrameRadius), scale); } else { - return outlinesEnabled() ? std::max(pixelSize, KDecoration3::snapToPixelGrid(1, scale)) : 0; + return 0; } default: case KDecoration3::BorderSize::Tiny: @@ -464,7 +418,7 @@ void Decoration::recalculateBorders() setBorders(bordersFor(window()->nextScale())); // extended sizes - const qreal extSize = window()->snapToPixelGrid(settings()->largeSpacing()); + const qreal extSize = KDecoration3::snapToPixelGrid(settings()->largeSpacing(), window()->nextScale()); qreal extSides = 0; qreal extBottom = 0; if (hasNoBorders()) { @@ -480,6 +434,50 @@ void Decoration::recalculateBorders() } setResizeOnlyBorders(QMarginsF(extSides, 0, extSides, extBottom)); + + qreal topLeftRightRadius = 0; + qreal bottomLeftRadius = 0; + qreal bottomRightRadius = 0; + if (m_internalSettings->roundedCorners()) { + if (hideTitleBar()) { + topLeftRightRadius = m_scaledCornerRadius; + } + + if (hasNoBorders()) { + if (!isBottomEdge()) { + if (!isLeftEdge()) { + bottomLeftRadius = m_scaledCornerRadius; + } + if (!isRightEdge()) { + bottomRightRadius = m_scaledCornerRadius; + } + } + } + } + setBorderRadius(KDecoration3::BorderRadius(topLeftRightRadius, topLeftRightRadius, bottomRightRadius, bottomLeftRadius)); + + if (isMaximized() || !outlinesEnabled()) { + setBorderOutline(KDecoration3::BorderOutline()); + } else { + const auto color = KColorUtils::mix(window()->color(window()->isActive() ? ColorGroup::Active : ColorGroup::Inactive, ColorRole::Frame), + window()->palette().text().color(), + KColorScheme::frameContrast()); + const qreal thickness = std::max(KDecoration3::pixelSize(window()->nextScale()), KDecoration3::snapToPixelGrid(1, window()->nextScale())); + + qreal topLeftRightRadius = 0; + qreal bottomLeftRadius = 0; + qreal bottomRightRadius = 0; + if (!hideTitleBar() || m_internalSettings->roundedCorners()) { + topLeftRightRadius = m_scaledCornerRadius; + } + if (!hasNoBorders() || m_internalSettings->roundedCorners()) { + bottomLeftRadius = m_scaledCornerRadius; + bottomRightRadius = m_scaledCornerRadius; + } + + const auto radius = KDecoration3::BorderRadius(topLeftRightRadius, topLeftRightRadius, bottomRightRadius, bottomLeftRadius); + setBorderOutline(KDecoration3::BorderOutline(thickness, color, radius)); + } } //________________________________________________________________ @@ -602,67 +600,22 @@ void Decoration::paint(QPainter *painter, const QRectF &repaintRegion) } if (hasBorders() && !s->isAlphaChannelSupported()) { - painter->save(); - painter->setRenderHint(QPainter::Antialiasing, false); - painter->setBrush(Qt::NoBrush); - painter->setPen(window()->isActive() ? window()->color(ColorGroup::Active, ColorRole::TitleBar) - : window()->color(ColorGroup::Inactive, ColorRole::Foreground)); - - painter->drawRect(rect().adjusted(0, 0, -1, -1)); - painter->restore(); - } - if (outlinesEnabled() && !isMaximized()) { - auto outlineColor = KColorUtils::mix(window()->color(window()->isActive() ? ColorGroup::Active : ColorGroup::Inactive, ColorRole::Frame), - window()->palette().text().color(), - lookupOutlineIntensity(m_internalSettings->outlineIntensity())); - - const qreal lineWidth = std::max(window()->pixelSize(), window()->snapToPixelGrid(1)); - QRectF outlineRect = rect(); - // this is necessary to paint exactly in the center of the intended line - // otherwise anti aliasing kicks in and ruins the day - outlineRect.adjust(lineWidth / 2, lineWidth / 2, -lineWidth / 2, -lineWidth / 2); - - qreal cornerSize = m_scaledCornerRadius * 2.0; - QRectF cornerRect(outlineRect.x(), outlineRect.y(), cornerSize, cornerSize); - - QPainterPath outlinePath; - outlinePath.arcMoveTo(cornerRect, 180); - outlinePath.arcTo(cornerRect, 180, -90); - cornerRect.moveTopRight(outlineRect.topRight()); - outlinePath.arcTo(cornerRect, 90, -90); - // Check if border size is "no borders" or "no side-borders" - if (hasNoBorders()) { - outlinePath.lineTo(outlineRect.bottomRight()); - outlinePath.lineTo(outlineRect.bottomLeft()); - } else { - cornerRect.moveBottomRight(outlineRect.bottomRight()); - outlinePath.arcTo(cornerRect, 0, -90); - cornerRect.moveBottomLeft(outlineRect.bottomLeft()); - outlinePath.arcTo(cornerRect, 270, -90); + const QColor borderColor = borderOutline().color(); + if (borderColor.alphaF() > 0) { + painter->save(); + painter->setRenderHint(QPainter::Antialiasing, false); + painter->setBrush(Qt::NoBrush); + painter->setPen(borderColor); + painter->drawRect(rect().adjusted(0, 0, -1, -1)); + painter->restore(); } - outlinePath.closeSubpath(); - - painter->save(); - painter->setPen(QPen(outlineColor, lineWidth)); - painter->setBrush(Qt::NoBrush); - painter->setRenderHint(QPainter::Antialiasing); - painter->drawPath(outlinePath.simplified()); - painter->restore(); } } //________________________________________________________________ void Decoration::paintTitleBar(QPainter *painter, const QRectF &repaintRegion) { - const qreal halfAPixel = 0.5 * window()->pixelSize(); QRectF rect(QPointF(0, 0), QSizeF(size().width(), borderTop())); - const bool noOutlines = isMaximized() || !settings()->isAlphaChannelSupported(); - const bool bottomOutline = window()->isShaded(); - if (!noOutlines && outlinesEnabled()) { - // this is needed to match the corner radius with the outline - rect.adjust(halfAPixel, halfAPixel, -halfAPixel, bottomOutline ? -halfAPixel : 0); - } - QBrush frontBrush; QBrush backBrush(this->titleBarColor()); @@ -687,13 +640,13 @@ void Decoration::paintTitleBar(QPainter *painter, const QRectF &repaintRegion) painter->setBrush(titleBarColor()); } - if (noOutlines) { + if (isMaximized() || !settings()->isAlphaChannelSupported()) { painter->setBrush(backBrush); painter->drawRect(rect); painter->setBrush(frontBrush); painter->drawRect(rect); - } else if (bottomOutline) { + } else if (window()->isShaded()) { painter->setBrush(backBrush); painter->drawRoundedRect(rect, m_scaledCornerRadius, m_scaledCornerRadius); @@ -733,7 +686,7 @@ void Decoration::paintTitleBar(QPainter *painter, const QRectF &repaintRegion) //________________________________________________________________ int Decoration::buttonSize() const { - const int baseSize = m_tabletMode ? settings()->gridUnit() * 2 : settings()->gridUnit(); + const int baseSize = settings()->gridUnit(); switch (m_internalSettings->buttonSize()) { case InternalSettings::ButtonTiny: return baseSize; @@ -749,15 +702,6 @@ int Decoration::buttonSize() const } } -void Decoration::onTabletModeChanged(bool mode) -{ - m_tabletMode = mode; - Q_EMIT tabletModeChanged(); - - recalculateBorders(); - updateButtonsGeometry(); -} - //________________________________________________________________ qreal Decoration::captionHeight() const { @@ -771,15 +715,17 @@ QPair Decoration::captionRect() const return qMakePair(QRectF(), Qt::AlignCenter); } else { const qreal leftOffset = - window()->snapToPixelGrid(m_leftButtons->buttons().isEmpty() ? Metrics::TitleBar_SideMargin * settings()->smallSpacing() - : m_leftButtons->geometry().x() + m_leftButtons->geometry().width() - + Metrics::TitleBar_SideMargin * settings()->smallSpacing()); + KDecoration3::snapToPixelGrid(m_leftButtons->buttons().isEmpty() ? Metrics::TitleBar_SideMargin * settings()->smallSpacing() + : m_leftButtons->geometry().x() + m_leftButtons->geometry().width() + + Metrics::TitleBar_SideMargin * settings()->smallSpacing(), + window()->scale()); - const qreal rightOffset = window()->snapToPixelGrid(m_rightButtons->buttons().isEmpty() ? Metrics::TitleBar_SideMargin * settings()->smallSpacing() - : size().width() - m_rightButtons->geometry().x() - + Metrics::TitleBar_SideMargin * settings()->smallSpacing()); + const qreal rightOffset = KDecoration3::snapToPixelGrid(m_rightButtons->buttons().isEmpty() ? Metrics::TitleBar_SideMargin * settings()->smallSpacing() + : size().width() - m_rightButtons->geometry().x() + + Metrics::TitleBar_SideMargin * settings()->smallSpacing(), + window()->scale()); - const qreal yOffset = window()->snapToPixelGrid(settings()->smallSpacing() * Metrics::TitleBar_TopMargin); + const qreal yOffset = KDecoration3::snapToPixelGrid(settings()->smallSpacing() * Metrics::TitleBar_TopMargin, window()->scale()); const QRectF maxRect(leftOffset, yOffset, size().width() - leftOffset - rightOffset, captionHeight()); switch (m_internalSettings->titleAlignment()) { @@ -837,7 +783,6 @@ void Decoration::updateShadow() auto &shadow = (window()->isActive()) ? g_sShadow : g_sShadowInactive; if (!shadow) { - // Update both active and inactive shadows so outline stays consistent between the two g_sShadow = createShadowObject(1.0); g_sShadowInactive = createShadowObject(0.5); } @@ -909,7 +854,7 @@ void Decoration::setScaledCornerRadius() // On X11, the smallSpacing value is used for scaling. // On Wayland, this value has constant factor of 2. // Removing it will break radius scaling on X11. - m_scaledCornerRadius = window()->snapToPixelGrid(Metrics::Frame_FrameRadius * settings()->smallSpacing()); + m_scaledCornerRadius = KDecoration3::snapToPixelGrid(Metrics::Frame_FrameRadius * settings()->smallSpacing(), window()->nextScale()); } void Decoration::updateScale() diff --git a/local/recipes/kde/breeze/source/kdecoration/breezedecoration.h b/local/recipes/kde/breeze/source/kdecoration/breezedecoration.h index cfbe5a3e8c..72694c5bdd 100644 --- a/local/recipes/kde/breeze/source/kdecoration/breezedecoration.h +++ b/local/recipes/kde/breeze/source/kdecoration/breezedecoration.h @@ -84,15 +84,8 @@ public: inline bool hideTitleBar() const; //@} -Q_SIGNALS: - void tabletModeChanged(); - public Q_SLOTS: -#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) bool init() override; -#else - void init() override; -#endif private Q_SLOTS: void reconfigure(); @@ -101,7 +94,6 @@ private Q_SLOTS: void updateButtonsGeometryDelayed(); void updateTitleBar(); void updateAnimationState(); - void onTabletModeChanged(bool mode); void updateScale(); private: @@ -139,8 +131,6 @@ private: //*frame corner radius, scaled according to DPI qreal m_scaledCornerRadius = 3; - - bool m_tabletMode = false; }; bool Decoration::hasBorders() const @@ -215,6 +205,6 @@ bool Decoration::hideTitleBar() const bool Decoration::outlinesEnabled() const { - return (m_internalSettings->outlineIntensity() != InternalSettings::OutlineOff); + return m_internalSettings->outlineEnabled(); } } diff --git a/local/recipes/kde/breeze/source/kdecoration/breezesettingsdata.kcfg b/local/recipes/kde/breeze/source/kdecoration/breezesettingsdata.kcfg index 559983d79d..a91f73cafc 100644 --- a/local/recipes/kde/breeze/source/kdecoration/breezesettingsdata.kcfg +++ b/local/recipes/kde/breeze/source/kdecoration/breezesettingsdata.kcfg @@ -35,15 +35,12 @@ false - - - - - - - - - OutlineMedium + + true + + + + true diff --git a/local/recipes/kde/breeze/source/kdecoration/config/CMakeLists.txt b/local/recipes/kde/breeze/source/kdecoration/config/CMakeLists.txt index 21d29a4a2b..e5e56e3b3c 100644 --- a/local/recipes/kde/breeze/source/kdecoration/config/CMakeLists.txt +++ b/local/recipes/kde/breeze/source/kdecoration/config/CMakeLists.txt @@ -30,3 +30,13 @@ target_link_libraries(kcm_breezedecoration KF6::KCMUtils ) kcmutils_generate_desktop_file(kcm_breezedecoration) + +# kcmshell6 < 6.27.0 doesn't know the --smoke-test param, so skip this test for +# now. +# TODO: Drop this when KF6_MIN_VERSION >= 6.27.0 +if(KF6KCMUtils_VERSION VERSION_GREATER_EQUAL "6.27.0") + add_test(NAME kcm_breezedecoration_smoketest COMMAND kcmshell6 -style Breeze --smoke-test ${KDECORATION_KCM_PLUGIN_DIR}/kcm_breezedecoration) + set_tests_properties(kcm_breezedecoration_smoketest PROPERTIES + ENVIRONMENT_MODIFICATION QT_PLUGIN_PATH=path_list_prepend:${CMAKE_BINARY_DIR}/bin + ) +endif() diff --git a/local/recipes/kde/breeze/source/kdecoration/config/breezeconfigwidget.cpp b/local/recipes/kde/breeze/source/kdecoration/config/breezeconfigwidget.cpp index d9ae8b3401..2c273e99ca 100644 --- a/local/recipes/kde/breeze/source/kdecoration/config/breezeconfigwidget.cpp +++ b/local/recipes/kde/breeze/source/kdecoration/config/breezeconfigwidget.cpp @@ -35,12 +35,13 @@ ConfigWidget::ConfigWidget(QObject *parent, const KPluginMetaData &data, const Q connect(m_ui.outlineCloseButton, &QAbstractButton::clicked, this, &ConfigWidget::updateChanged); connect(m_ui.drawBorderOnMaximizedWindows, &QAbstractButton::clicked, this, &ConfigWidget::updateChanged); connect(m_ui.drawBackgroundGradient, &QAbstractButton::clicked, this, &ConfigWidget::updateChanged); + connect(m_ui.roundedCorners, &QAbstractButton::clicked, this, &ConfigWidget::updateChanged); // track shadows changes connect(m_ui.shadowSize, SIGNAL(currentIndexChanged(int)), SLOT(updateChanged())); connect(m_ui.shadowStrength, SIGNAL(valueChanged(int)), SLOT(updateChanged())); connect(m_ui.shadowColor, &KColorButton::changed, this, &ConfigWidget::updateChanged); - connect(m_ui.outlineIntensity, SIGNAL(activated(int)), SLOT(updateChanged())); + connect(m_ui.drawOutline, &QAbstractButton::clicked, this, &ConfigWidget::updateChanged); // track exception changes connect(m_ui.exceptions, &ExceptionListWidget::changed, this, &ConfigWidget::updateChanged); @@ -62,6 +63,7 @@ void ConfigWidget::load() m_ui.drawBorderOnMaximizedWindows->setChecked(m_internalSettings->drawBorderOnMaximizedWindows()); m_ui.outlineCloseButton->setChecked(m_internalSettings->outlineCloseButton()); m_ui.drawBackgroundGradient->setChecked(m_internalSettings->drawBackgroundGradient()); + m_ui.roundedCorners->setChecked(m_internalSettings->roundedCorners()); // load shadows if (m_internalSettings->shadowSize() <= InternalSettings::ShadowVeryLarge) { @@ -70,16 +72,11 @@ void ConfigWidget::load() m_ui.shadowSize->setCurrentIndex(InternalSettings::ShadowLarge); } + m_ui.drawOutline->setChecked(m_internalSettings->outlineEnabled()); + m_ui.shadowStrength->setValue(qRound(qreal(m_internalSettings->shadowStrength() * 100) / 255)); m_ui.shadowColor->setColor(m_internalSettings->shadowColor()); - // load outline intensity - if (m_internalSettings->outlineIntensity() <= InternalSettings::OutlineMaximum) { - m_ui.outlineIntensity->setCurrentIndex(m_internalSettings->outlineIntensity()); - } else { - m_ui.outlineIntensity->setCurrentIndex(InternalSettings::OutlineMedium); - } - // load exceptions ExceptionList exceptions; exceptions.readConfig(m_configuration); @@ -100,11 +97,13 @@ void ConfigWidget::save() m_internalSettings->setOutlineCloseButton(m_ui.outlineCloseButton->isChecked()); m_internalSettings->setDrawBorderOnMaximizedWindows(m_ui.drawBorderOnMaximizedWindows->isChecked()); m_internalSettings->setDrawBackgroundGradient(m_ui.drawBackgroundGradient->isChecked()); + m_internalSettings->setRoundedCorners(m_ui.roundedCorners->isChecked()); m_internalSettings->setShadowSize(m_ui.shadowSize->currentIndex()); m_internalSettings->setShadowStrength(qRound(qreal(m_ui.shadowStrength->value() * 255) / 100)); m_internalSettings->setShadowColor(m_ui.shadowColor->color()); - m_internalSettings->setOutlineIntensity(m_ui.outlineIntensity->currentIndex()); + + m_internalSettings->setOutlineEnabled(m_ui.drawOutline->isChecked()); // save configuration m_internalSettings->save(); @@ -143,11 +142,12 @@ void ConfigWidget::defaults() m_ui.outlineCloseButton->setChecked(m_internalSettings->outlineCloseButton()); m_ui.drawBorderOnMaximizedWindows->setChecked(m_internalSettings->drawBorderOnMaximizedWindows()); m_ui.drawBackgroundGradient->setChecked(m_internalSettings->drawBackgroundGradient()); + m_ui.roundedCorners->setChecked(m_internalSettings->roundedCorners()); m_ui.shadowSize->setCurrentIndex(m_internalSettings->shadowSize()); m_ui.shadowStrength->setValue(qRound(qreal(m_internalSettings->shadowStrength() * 100) / 255)); m_ui.shadowColor->setColor(m_internalSettings->shadowColor()); - m_ui.outlineIntensity->setCurrentIndex(m_internalSettings->outlineIntensity()); + m_ui.drawOutline->setChecked(m_internalSettings->outlineEnabled()); } //_______________________________________________ @@ -171,6 +171,8 @@ void ConfigWidget::updateChanged() modified = true; } else if (m_ui.drawBackgroundGradient->isChecked() != m_internalSettings->drawBackgroundGradient()) { modified = true; + } else if (m_ui.roundedCorners->isChecked() != m_internalSettings->roundedCorners()) { + modified = true; // shadows } else if (m_ui.shadowSize->currentIndex() != m_internalSettings->shadowSize()) { @@ -179,9 +181,8 @@ void ConfigWidget::updateChanged() modified = true; } else if (m_ui.shadowColor->color() != m_internalSettings->shadowColor()) { modified = true; - } else if (m_ui.outlineIntensity->currentIndex() != m_internalSettings->outlineIntensity()) { + } else if (m_ui.drawOutline->isChecked() != m_internalSettings->outlineEnabled()) { modified = true; - // exceptions } else if (m_ui.exceptions->isChanged()) { modified = true; diff --git a/local/recipes/kde/breeze/source/kdecoration/config/kcm_breezedecoration.json b/local/recipes/kde/breeze/source/kdecoration/config/kcm_breezedecoration.json index 16ca69f684..d8cd038dbf 100644 --- a/local/recipes/kde/breeze/source/kdecoration/config/kcm_breezedecoration.json +++ b/local/recipes/kde/breeze/source/kdecoration/config/kcm_breezedecoration.json @@ -2,16 +2,17 @@ "KPlugin": { "Description": "Modify the appearance of window decorations", "Description[ar]": "عدّل مظهر زخرفات النّوافذ", + "Description[az]": "Pəncərə başlıqlarının görünüşünü dəyişmək", "Description[bg]": "Промяна на външния вид на декорацията на прозорците", "Description[ca@valencia]": "Modifica l'aparença de les decoracions de les finestres", "Description[ca]": "Modifica l'aparença de les decoracions de les finestres", "Description[cs]": "Změnit vzhled dekorace oken", - "Description[de]": "Das Erscheinungsbild der Fensterdekoration ändern", + "Description[de]": "Das Erscheinungsbild der Fensterdekorationen ändern", "Description[el]": "Τροποποίηση της εμφάνισης των διακοσμητικών στοιχείων των παραθύρων", "Description[en_GB]": "Modify the appearance of window decorations", "Description[eo]": "Modifi la aspekton de fenestraĵaj ornamaĵoj", "Description[es]": "Modificar el aspecto de las decoraciones de ventanas", - "Description[eu]": "Leiho apainduren itxura aldatzea", + "Description[eu]": "Leiho-apainduren itxura aldatu", "Description[fi]": "Muuta ikkunakoristeiden ulkoasua", "Description[fr]": "Modifier l'apparence des décorations de fenêtres", "Description[gl]": "Modifica a aparencia da decoración da xanela.", @@ -29,7 +30,7 @@ "Description[nn]": "Endra utsjånad på vindaugspynt", "Description[pa]": "ਵਿੰਡੋ ਸਜਾਵਟ ਦੀ ਦਿੱਖ ਨੂੰ ਸੋਧੋ", "Description[pl]": "Zmień wygląd okien", - "Description[pt]": "Modificar a aparência das decorações das janelas", + "Description[pt]": "Modificar o aspeto das decorações de janelas", "Description[pt_BR]": "Modifica a aparência das decorações da janela", "Description[ro]": "Modifică aspectul decorațiilor pentru ferestre", "Description[ru]": "Настройка заголовков окон", @@ -39,12 +40,12 @@ "Description[sv]": "Ändra utseendet hos fönsterdekorationer", "Description[tr]": "Pencere dekorasyonlarının görünüşünü değiştirin", "Description[uk]": "Внесення змін до обрамлення вікон", - "Description[x-test]": "xxModify the appearance of window decorationsxx", "Description[zh_CN]": "调整窗口装饰外观", "Description[zh_TW]": "修改視窗裝飾的外觀", "Icon": "preferences-system-windows", "Name": "Breeze Window Decoration", "Name[ar]": "زخرفة نوافذ نسيم", + "Name[az]": "Breeze pəncərə tərtibatı", "Name[bg]": "Декорации на прозорци Breeze", "Name[ca@valencia]": "Decoració Brisa de les finestres", "Name[ca]": "Decoració Brisa de les finestres", @@ -54,7 +55,7 @@ "Name[en_GB]": "Breeze Window Decoration", "Name[eo]": "Breeze-fenestraĵornamoj", "Name[es]": "Decoración de ventanas Brisa", - "Name[eu]": "Breeze leihoen apaindura", + "Name[eu]": "Brisa leiho-apaindura", "Name[fi]": "Breeze-ikkunakoristelu", "Name[fr]": "Décoration de fenêtre pour Breeze", "Name[gl]": "Decoración de xanela de Brisa", @@ -64,6 +65,7 @@ "Name[id]": "Dekorasi Jendela Breeze", "Name[is]": "Breeze gluggaskreytingar", "Name[it]": "Decorazione delle finestre di Brezza", + "Name[ja]": "Breeze ウィンドウ装飾", "Name[ka]": "Breeze -ის ფანჯრის დეკორაცია", "Name[ko]": "Breeze 창 장식", "Name[lt]": "Breeze lango dekoracijos", @@ -79,10 +81,10 @@ "Name[sa]": "हवा खिडकी सजावट", "Name[sk]": "Dekorácie okien Vánok", "Name[sl]": "Okraski oken Sapice", + "Name[sq]": "Dekorimet e Dritareve Breeze", "Name[sv]": "Breeze fönsterdekoration", "Name[tr]": "Esinti Pencere Dekorasyonu", "Name[uk]": "Обрамлення вікон Breeze", - "Name[x-test]": "xxBreeze Window Decorationxx", "Name[zh_CN]": "Breeze 微风窗口装饰", "Name[zh_TW]": "Breeze 視窗裝飾", "ServiceTypes": [ @@ -91,21 +93,24 @@ }, "X-KDE-Keywords": "breeze,decoration", "X-KDE-Keywords[ar]": "زخرفة,نسيم", + "X-KDE-Keywords[az]": "breeze,decoration,tərtibat", "X-KDE-Keywords[bg]": "breeze,декорация", "X-KDE-Keywords[ca@valencia]": "brisa,decoració", "X-KDE-Keywords[ca]": "brisa,decoració", "X-KDE-Keywords[cs]": "breeze,dekorace", + "X-KDE-Keywords[de]": "Breeze,Dekoration", + "X-KDE-Keywords[el]": "breeze, διακόσμηση", "X-KDE-Keywords[en_GB]": "breeze,decoration", "X-KDE-Keywords[eo]": "breeze,fenestraĵornamoj", "X-KDE-Keywords[es]": "brisa,decoración de ventanas", - "X-KDE-Keywords[eu]": "breeze,brisa,apaindura,apaingarria", + "X-KDE-Keywords[eu]": "breeze,brisa,apaindura,apaingarria,apainketa", "X-KDE-Keywords[fi]": "breeze,koristelu", "X-KDE-Keywords[fr]": "breeze, décoration", "X-KDE-Keywords[gl]": "breeze,decoración", "X-KDE-Keywords[he]": "בריזה,עיטור", "X-KDE-Keywords[hu]": "breeze,dekoráció", "X-KDE-Keywords[ia]": "breeze,decoration", - "X-KDE-Keywords[is]": "breeze,gluggaskreyting", + "X-KDE-Keywords[is]": "breeze,skreyting", "X-KDE-Keywords[it]": "brezza,decorazione", "X-KDE-Keywords[ka]": "breeze,decoration,დეკორაცია", "X-KDE-Keywords[ko]": "장식", @@ -114,14 +119,17 @@ "X-KDE-Keywords[nl]": "breeze,decoratie", "X-KDE-Keywords[nn]": "breeze,dekorasjonar,pynt", "X-KDE-Keywords[pl]": "breeze,dekoracja,bryza,wystrój", + "X-KDE-Keywords[pt]": "brisa,decoração", "X-KDE-Keywords[pt_BR]": "breeze,decoração", + "X-KDE-Keywords[ro]": "briză,decorație", "X-KDE-Keywords[ru]": "breeze,decoration,оформление", "X-KDE-Keywords[sa]": "वायुः,अलंकारः", + "X-KDE-Keywords[sk]": "bríza,dekorácia", "X-KDE-Keywords[sl]": "sapica,dekoracija", + "X-KDE-Keywords[sq]": "breeze,decoration", "X-KDE-Keywords[sv]": "breeze,dekoration", "X-KDE-Keywords[tr]": "breeze,esinti,dekorasyon", "X-KDE-Keywords[uk]": "breeze,decoration,бриз,декорації,декорація,обрамлення", - "X-KDE-Keywords[x-test]": "xxbreezexx,xxdecorationxx", "X-KDE-Keywords[zh_CN]": "breeze,weifeng,zhuangshi,xiushi,微风,装饰,修饰", "X-KDE-Keywords[zh_TW]": "breeze,裝飾", "X-KDE-ParentApp": "kcontrol", diff --git a/local/recipes/kde/breeze/source/kdecoration/config/ui/breezeconfigurationui.ui b/local/recipes/kde/breeze/source/kdecoration/config/ui/breezeconfigurationui.ui index 60983a63d0..0364971689 100644 --- a/local/recipes/kde/breeze/source/kdecoration/config/ui/breezeconfigurationui.ui +++ b/local/recipes/kde/breeze/source/kdecoration/config/ui/breezeconfigurationui.ui @@ -6,7 +6,7 @@ 0 0 - 428 + 469 418 @@ -35,15 +35,15 @@ General - + + + Qt::AlignmentFlag::AlignHCenter|Qt::AlignmentFlag::AlignTop + Tit&le alignment: - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - titleAlignment @@ -73,27 +73,11 @@ - - - - Qt::Horizontal - - - - 40 - 20 - - - - B&utton size: - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - buttonSize @@ -128,29 +112,29 @@ - + Draw a circle around close button - + Draw border on maximized and tiled windows - + - Qt::Horizontal + Qt::Orientation::Horizontal - QSizePolicy::Fixed + QSizePolicy::Policy::Fixed @@ -172,25 +156,19 @@ - + Draw titlebar background gradient - - - - Qt::Vertical + + + + Round bottom corners of windows with no borders - - - 20 - 40 - - - + @@ -198,15 +176,15 @@ Shadows and Outline - + + + Qt::AlignmentFlag::AlignHCenter|Qt::AlignmentFlag::AlignTop + Shadow size: - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - shadowSize @@ -246,9 +224,6 @@ Shadow strength: - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - shadowStrength @@ -267,86 +242,22 @@ - - - - Qt::Horizontal - - - - 40 - 20 - - - - Shadow color: - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - Outline intensity: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - outlineIntensity - - - - - - - Off - - - - - Low - - - - - Medium - - - - - High - - - - - Maximum - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - + + + Draw window outline + + @@ -384,17 +295,6 @@ 1 - - tabWidget - titleAlignment - buttonSize - outlineCloseButton - drawBorderOnMaximizedWindows - drawBackgroundGradient - shadowSize - shadowStrength - shadowColor - diff --git a/local/recipes/kde/breeze/source/kstyle/CMakeLists.txt b/local/recipes/kde/breeze/source/kstyle/CMakeLists.txt index af7a9a1512..d5c89896b2 100644 --- a/local/recipes/kde/breeze/source/kstyle/CMakeLists.txt +++ b/local/recipes/kde/breeze/source/kstyle/CMakeLists.txt @@ -101,14 +101,8 @@ target_link_libraries(breeze${QT_MAJOR_VERSION} if(QT_MAJOR_VERSION STREQUAL "5") target_link_libraries(breeze5 KF5::ConfigWidgets) - if (BREEZE_HAVE_QTQUICK) - target_link_libraries(breeze5 KF5::Kirigami2) - endif() else() target_link_libraries(breeze6 KF6::ColorScheme) - if (BREEZE_HAVE_QTQUICK) - target_link_libraries(breeze6 KF6::KirigamiPlatform) - endif() endif() target_link_libraries(breeze${QT_MAJOR_VERSION} breezecommon${QT_MAJOR_VERSION}) diff --git a/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.cpp b/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.cpp index 12e5107c5f..5285f5dafd 100644 --- a/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.cpp +++ b/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.cpp @@ -82,7 +82,7 @@ void Animations::setupEngines() } //____________________________________________________________ -void Animations::registerWidget(QWidget *widget) const +void Animations::registerWidget(QObject *widget) const { if (!widget) { return; @@ -100,38 +100,47 @@ void Animations::registerWidget(QWidget *widget) const // install animation timers // for optimization, one should put with most used widgets here first + // KQuickStyleItem. + const QString elementType = widget->property("elementType").toString(); + if (!elementType.isEmpty()) { + if (elementType == QLatin1String("checkbox") || elementType == QLatin1String("radiobutton")) { + _widgetStateEngine->registerWidget(widget, AnimationHover | AnimationFocus | AnimationPressed); + } + return; + } + // buttons - if (qobject_cast(widget)) { - _toolButtonEngine->registerWidget(widget, AnimationHover | AnimationFocus); - _widgetStateEngine->registerWidget(widget, AnimationHover | AnimationFocus); + if (auto toolButton = qobject_cast(widget)) { + _toolButtonEngine->registerWidget(toolButton, AnimationHover | AnimationFocus); + _widgetStateEngine->registerWidget(toolButton, AnimationHover | AnimationFocus); } else if (qobject_cast(widget) || qobject_cast(widget)) { _widgetStateEngine->registerWidget(widget, AnimationHover | AnimationFocus | AnimationPressed); - } else if (qobject_cast(widget)) { + } else if (auto button = qobject_cast(widget)) { // register to toolbox engine if needed - if (qobject_cast(widget->parent())) { - _toolBoxEngine->registerWidget(widget); + if (auto toolBox = qobject_cast(widget->parent())) { + _toolBoxEngine->registerWidget(toolBox); } - _widgetStateEngine->registerWidget(widget, AnimationHover | AnimationFocus); + _widgetStateEngine->registerWidget(button, AnimationHover | AnimationFocus); } // groupboxes else if (QGroupBox *groupBox = qobject_cast(widget)) { if (groupBox->isCheckable()) { - _widgetStateEngine->registerWidget(widget, AnimationHover | AnimationFocus); + _widgetStateEngine->registerWidget(groupBox, AnimationHover | AnimationFocus); } } // sliders - else if (qobject_cast(widget)) { - _scrollBarEngine->registerWidget(widget, AnimationHover | AnimationFocus); - } else if (qobject_cast(widget)) { - _widgetStateEngine->registerWidget(widget, AnimationHover | AnimationFocus); - } else if (qobject_cast(widget)) { - _dialEngine->registerWidget(widget, AnimationHover | AnimationFocus); + else if (auto scrollBar = qobject_cast(widget)) { + _scrollBarEngine->registerWidget(scrollBar, AnimationHover | AnimationFocus); + } else if (auto slider = qobject_cast(widget)) { + _widgetStateEngine->registerWidget(slider, AnimationHover | AnimationFocus); + } else if (auto dial = qobject_cast(widget)) { + _dialEngine->registerWidget(dial, AnimationHover | AnimationFocus); } // progress bar @@ -162,24 +171,24 @@ void Animations::registerWidget(QWidget *widget) const // header views // need to come before abstract item view, otherwise is skipped - else if (qobject_cast(widget)) { - _headerViewEngine->registerWidget(widget); + else if (auto headerView = qobject_cast(widget)) { + _headerViewEngine->registerWidget(headerView); } // lists - else if (qobject_cast(widget)) { - _inputWidgetEngine->registerWidget(widget, AnimationHover | AnimationFocus); + else if (auto itemView = qobject_cast(widget)) { + _inputWidgetEngine->registerWidget(itemView, AnimationHover | AnimationFocus); } // tabbar - else if (qobject_cast(widget)) { - _tabBarEngine->registerWidget(widget); + else if (auto tabBar = qobject_cast(widget)) { + _tabBarEngine->registerWidget(tabBar); } // scrollarea else if (QAbstractScrollArea *scrollArea = qobject_cast(widget)) { - if (scrollArea->frameShadow() == QFrame::Sunken && (widget->focusPolicy() & Qt::StrongFocus)) { - _inputWidgetEngine->registerWidget(widget, AnimationHover | AnimationFocus); + if (scrollArea->frameShadow() == QFrame::Sunken && (scrollArea->focusPolicy() & Qt::StrongFocus)) { + _inputWidgetEngine->registerWidget(scrollArea, AnimationHover | AnimationFocus); } } @@ -190,7 +199,7 @@ void Animations::registerWidget(QWidget *widget) const } //____________________________________________________________ -void Animations::unregisterWidget(QWidget *widget) const +void Animations::unregisterWidget(QObject *widget) const { if (!widget) { return; diff --git a/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.h b/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.h index 6551900a56..3215e8fb92 100644 --- a/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.h +++ b/local/recipes/kde/breeze/source/kstyle/animations/breezeanimations.h @@ -31,10 +31,10 @@ public: explicit Animations(); //* register animations corresponding to given widget, depending on its type. - void registerWidget(QWidget *widget) const; + void registerWidget(QObject *widget) const; /** unregister all animations associated to a widget */ - void unregisterWidget(QWidget *widget) const; + void unregisterWidget(QObject *widget) const; //* enability engine [[nodiscard]] WidgetStateEngine &widgetEnabilityEngine() const diff --git a/local/recipes/kde/breeze/source/kstyle/animations/breezetransitionwidget.h b/local/recipes/kde/breeze/source/kstyle/animations/breezetransitionwidget.h index 95beefaf84..71d9d4cea7 100644 --- a/local/recipes/kde/breeze/source/kstyle/animations/breezetransitionwidget.h +++ b/local/recipes/kde/breeze/source/kstyle/animations/breezetransitionwidget.h @@ -154,7 +154,7 @@ public: //@} - //* grap pixmap + //* grab pixmap QPixmap grab(QWidget * = nullptr, QRect = QRect()); //* true if animated diff --git a/local/recipes/kde/breeze/source/kstyle/breeze.themerc b/local/recipes/kde/breeze/source/kstyle/breeze.themerc index 8a74dcbb0a..486322f9a4 100644 --- a/local/recipes/kde/breeze/source/kstyle/breeze.themerc +++ b/local/recipes/kde/breeze/source/kstyle/breeze.themerc @@ -53,7 +53,6 @@ Name[ta]=பிரீஸ் Name[tg]=Насим Name[tr]=Esinti Name[uk]=Breeze -Name[x-test]=xxBreezexx Name[zh_CN]=Breeze 微风 Name[zh_TW]=Breeze ConfigPage=kstyle_config/breezestyleconfig @@ -94,7 +93,7 @@ Comment[nl]=Widget-stijl voor KDE Frameworks Comment[nn]=Elementstil for KDE-rammeverket Comment[pa]=KDE ਫਰੇਮਵਰਕਸ ਲਈ ਵਿਜੈਟ ਸਟਾਈਲ Comment[pl]=Wygląd interfejsu dla Szkieletów KDE -Comment[pt]=Estilo gráfico para as Plataformas do KDE +Comment[pt]=Estilo de widget para Plataformas KDE Comment[pt_BR]=Estilo do widget para o KDE Frameworks Comment[ro]=Stil de controale grafice pentru Platforma KDE Comment[ru]=Стиль графических элементов для KDE Frameworks @@ -106,10 +105,10 @@ Comment[sr@ijekavian]=Стил виџета̂ за Радне оквире КД Comment[sr@ijekavianlatin]=Stil vidžetâ̂ za Radne okvire KDE‑a Comment[sr@latin]=Stil vidžetâ̂ za Radne okvire KDE‑a Comment[sv]=Grafisk komponentstil för KDE Ramverk +Comment[ta]=கே.டீ.யீ. நிரலகங்களுக்கான தோற்றத்திட்டம் Comment[tg]=Услуби виҷет барои сохторҳои KDE Comment[tr]=KDE Frameworks için araç takımı biçemi Comment[uk]=Стиль віджетів KDE Frameworks -Comment[x-test]=xxWidget style for KDE Frameworksxx Comment[zh_CN]=KDE 框架的窗口部件外观样式 Comment[zh_TW]=KDE Frameworks 的元件樣式 [KDE] diff --git a/local/recipes/kde/breeze/source/kstyle/breezehelper.cpp b/local/recipes/kde/breeze/source/kstyle/breezehelper.cpp index 5d7ff5a88f..9b075c92c6 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezehelper.cpp +++ b/local/recipes/kde/breeze/source/kstyle/breezehelper.cpp @@ -26,6 +26,7 @@ #include #include #include +#include #include #include @@ -36,7 +37,7 @@ namespace Breeze //* contrast for arrow and treeline rendering static const qreal arrowShade = 0.15; -static const qreal highlightBackgroundAlpha = 0.33; +static const qreal highlightBackgroundAlpha = Metrics::Blend_Value; static const auto radioCheckSunkenDarkeningFactor = 110; @@ -72,7 +73,6 @@ Helper::Helper(KSharedConfig::Ptr config) : QObject() , _config(std::move(config)) , _kwinConfig(KSharedConfig::openConfig("kwinrc")) - , _decorationConfig(new InternalSettings()) , _eventFilter(new PaletteChangedEventFilter(this)) { } @@ -83,19 +83,11 @@ KSharedConfig::Ptr Helper::config() const return _config; } -//____________________________________________________________________ -QSharedPointer Helper::decorationConfig() const -{ - return _decorationConfig; -} - //____________________________________________________________________ void Helper::loadConfig() { _viewFocusBrush = KStatefulBrush(KColorScheme::View, KColorScheme::FocusColor); _viewHoverBrush = KStatefulBrush(KColorScheme::View, KColorScheme::HoverColor); - _buttonFocusBrush = KStatefulBrush(KColorScheme::Button, KColorScheme::FocusColor); - _buttonHoverBrush = KStatefulBrush(KColorScheme::Button, KColorScheme::HoverColor); _viewNegativeTextBrush = KStatefulBrush(KColorScheme::View, KColorScheme::NegativeText); _viewNeutralTextBrush = KStatefulBrush(KColorScheme::View, KColorScheme::NeutralText); @@ -103,13 +95,17 @@ void Helper::loadConfig() _config->reparseConfiguration(); _kwinConfig->reparseConfiguration(); _cachedAutoValid = false; - _decorationConfig->load(); KConfigGroup globalGroup(_config->group(QStringLiteral("WM"))); _activeTitleBarColor = globalGroup.readEntry("activeBackground", palette.color(QPalette::Active, QPalette::Highlight)); _activeTitleBarTextColor = globalGroup.readEntry("activeForeground", palette.color(QPalette::Active, QPalette::HighlightedText)); _inactiveTitleBarColor = globalGroup.readEntry("inactiveBackground", palette.color(QPalette::Disabled, QPalette::Highlight)); _inactiveTitleBarTextColor = globalGroup.readEntry("inactiveForeground", palette.color(QPalette::Disabled, QPalette::HighlightedText)); +#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) + _contrastBias = KColorScheme::frameContrast(); +#else + _contrastBias = 0.2; +#endif if (const QString colorSchemePath = qApp->property("KDE_COLOR_SCHEME_PATH").toString(); !colorSchemePath.isEmpty()) { KConfig config(colorSchemePath, KConfig::SimpleConfig); @@ -145,7 +141,7 @@ QColor transparentize(const QColor &color, qreal amount) //____________________________________________________________________ QColor Helper::frameOutlineColor(const QPalette &palette, bool mouseOver, bool hasFocus, qreal opacity, AnimationMode mode) const { - QColor outline(KColorUtils::mix(palette.color(QPalette::Window), palette.color(QPalette::WindowText), Metrics::Bias_Default)); + QColor outline(KColorUtils::mix(palette.color(QPalette::Window), palette.color(QPalette::WindowText), frameIntensityBias())); // focus takes precedence over hover if (mode == AnimationFocus) { @@ -184,18 +180,6 @@ QColor Helper::hoverOutlineColor(const QPalette &palette) const return KColorUtils::mix(hoverColor(palette), palette.color(QPalette::WindowText), 0.15); } -//____________________________________________________________________ -QColor Helper::buttonFocusOutlineColor(const QPalette &palette) const -{ - return KColorUtils::mix(buttonFocusColor(palette), palette.color(QPalette::ButtonText), 0.15); -} - -//____________________________________________________________________ -QColor Helper::buttonHoverOutlineColor(const QPalette &palette) const -{ - return KColorUtils::mix(buttonHoverColor(palette), palette.color(QPalette::ButtonText), 0.15); -} - //____________________________________________________________________ QColor Helper::sidePanelOutlineColor(const QPalette &palette, bool hasFocus, qreal opacity, AnimationMode mode) const { @@ -215,7 +199,7 @@ QColor Helper::sidePanelOutlineColor(const QPalette &palette, bool hasFocus, qre //____________________________________________________________________ QColor Helper::frameBackgroundColor(const QPalette &palette, QPalette::ColorGroup group) const { - return KColorUtils::mix(palette.color(group, QPalette::Window), palette.color(group, QPalette::Base), 0.3); + return KColorUtils::mix(palette.color(group, QPalette::Window), palette.color(group, QPalette::Base), Metrics::Blend_Value); } //____________________________________________________________________ @@ -263,7 +247,7 @@ QColor Helper::arrowColor(const QPalette &palette, bool mouseOver, bool hasFocus //____________________________________________________________________ QColor Helper::sliderOutlineColor(const QPalette &palette, bool mouseOver, bool hasFocus, qreal opacity, AnimationMode mode) const { - QColor outline(KColorUtils::mix(palette.color(QPalette::Button), palette.color(QPalette::ButtonText), Metrics::Bias_Default)); + QColor outline(KColorUtils::mix(palette.color(QPalette::Button), palette.color(QPalette::ButtonText), frameIntensityBias())); // hover takes precedence over focus if (mode == AnimationHover) { @@ -344,7 +328,7 @@ QColor Helper::checkBoxIndicatorColor(const QPalette &palette, bool mouseOver, b //______________________________________________________________________________ QColor Helper::separatorColor(const QPalette &palette) const { - return KColorUtils::mix(palette.color(QPalette::Window), palette.color(QPalette::WindowText), Metrics::Bias_Default); + return KColorUtils::mix(palette.color(QPalette::Window), palette.color(QPalette::WindowText), frameIntensityBias()); } //______________________________________________________________________________ @@ -382,15 +366,11 @@ void Helper::renderDebugFrame(QPainter *painter, const QRectF &rect) const } //______________________________________________________________________________ -void Helper::renderFocusRect(QPainter *painter, const QRectF &rect, const QColor &color, const QColor &outline, Sides sides) const +void Helper::renderFocusRect(QPainter *painter, const QRectF &rect, const QBrush &brush, const QColor &outline, Sides sides) const { - if (!color.isValid()) { - return; - } - painter->save(); painter->setRenderHints(QPainter::Antialiasing); - painter->setBrush(color); + painter->setBrush(brush); if (!(outline.isValid() && sides)) { painter->setPen(Qt::NoPen); @@ -680,6 +660,7 @@ void Helper::renderButtonFrame(QPainter *painter, bool defaultButton = stateProperties.value("defaultButton"); bool hasNeutralHighlight = stateProperties.value("hasNeutralHighlight"); bool isActiveWindow = stateProperties.value("isActiveWindow"); + const bool roundButton = stateProperties.value("roundButton"); // don't render background if flat and not hovered, down, checked, or given visual focus if (flat && !(hovered || down || checked || visualFocus) && bgAnimation == AnimationData::OpacityInvalid && penAnimation == AnimationData::OpacityInvalid) { @@ -688,7 +669,6 @@ void Helper::renderButtonFrame(QPainter *painter, QRectF shadowedRect = this->shadowedRect(rect); QRectF frameRect = strokedRect(shadowedRect); - qreal radius = frameRadius(PenWidth::Frame); // setting color group to work around KColorScheme feature const QColor &highlightColor = palette.color(!enabled ? QPalette::Disabled : QPalette::Active, QPalette::Highlight); QBrush bgBrush; @@ -701,29 +681,29 @@ void Helper::renderButtonFrame(QPainter *painter, } else if (checked) { bgBrush = hasNeutralHighlight ? alphaColor(neutralText(palette), highlightBackgroundAlpha) : alphaColor(palette.buttonText().color(), 0.125); penBrush = - hasNeutralHighlight ? neutralText(palette) : KColorUtils::mix(palette.button().color(), palette.buttonText().color(), Metrics::Bias_Default); + hasNeutralHighlight ? neutralText(palette) : KColorUtils::mix(palette.button().color(), palette.buttonText().color(), frameIntensityBias()); } else if (isActiveWindow && defaultButton) { bgBrush = alphaColor(highlightColor, 0.125); - penBrush = KColorUtils::mix(highlightColor, KColorUtils::mix(palette.button().color(), palette.buttonText().color(), Metrics::Bias_Default), 0.5); + penBrush = KColorUtils::mix(highlightColor, KColorUtils::mix(palette.button().color(), palette.buttonText().color(), frameIntensityBias()), 0.5); } else { bgBrush = alphaColor(highlightColor, 0); penBrush = hasNeutralHighlight ? neutralText(palette) : bgBrush; } } else { if (down && enabled) { - bgBrush = KColorUtils::mix(palette.button().color(), highlightColor, 0.333); + bgBrush = KColorUtils::mix(palette.button().color(), highlightColor, Metrics::Blend_Value); } else if (checked) { - bgBrush = hasNeutralHighlight ? KColorUtils::mix(palette.button().color(), neutralText(palette), 0.333) + bgBrush = hasNeutralHighlight ? KColorUtils::mix(palette.button().color(), neutralText(palette), Metrics::Blend_Value) : KColorUtils::mix(palette.button().color(), palette.buttonText().color(), 0.125); penBrush = - hasNeutralHighlight ? neutralText(palette) : KColorUtils::mix(palette.button().color(), palette.buttonText().color(), Metrics::Bias_Default); + hasNeutralHighlight ? neutralText(palette) : KColorUtils::mix(palette.button().color(), palette.buttonText().color(), frameIntensityBias()); } else if (isActiveWindow && defaultButton) { bgBrush = KColorUtils::mix(palette.button().color(), highlightColor, 0.2); - penBrush = KColorUtils::mix(highlightColor, KColorUtils::mix(palette.button().color(), palette.buttonText().color(), Metrics::Bias_Default), 0.5); + penBrush = KColorUtils::mix(highlightColor, KColorUtils::mix(palette.button().color(), palette.buttonText().color(), frameIntensityBias()), 0.5); } else { bgBrush = palette.button().color(); penBrush = - hasNeutralHighlight ? neutralText(palette) : KColorUtils::mix(palette.button().color(), palette.buttonText().color(), Metrics::Bias_Default); + hasNeutralHighlight ? neutralText(palette) : KColorUtils::mix(palette.button().color(), palette.buttonText().color(), frameIntensityBias()); } } @@ -734,7 +714,8 @@ void Helper::renderButtonFrame(QPainter *painter, // Animations if (bgAnimation != AnimationData::OpacityInvalid && enabled) { QColor color1 = bgBrush.color(); - QColor color2 = flat ? alphaColor(highlightColor, highlightBackgroundAlpha) : KColorUtils::mix(palette.button().color(), highlightColor, 0.333); + QColor color2 = + flat ? alphaColor(highlightColor, highlightBackgroundAlpha) : KColorUtils::mix(palette.button().color(), highlightColor, Metrics::Blend_Value); bgBrush = KColorUtils::mix(color1, color2, bgAnimation); } if (penAnimation != AnimationData::OpacityInvalid && enabled) { @@ -743,15 +724,18 @@ void Helper::renderButtonFrame(QPainter *painter, penBrush = KColorUtils::mix(color1, color2, penAnimation); } + const qreal roundRadius = std::max(rect.width(), rect.height()) / 2; // Shadow if (isActiveWindow && !(flat || down || checked) && enabled) { - renderRoundedRectShadow(painter, shadowedRect, shadowColor(palette)); + const qreal shadowRadius = roundButton ? roundRadius : Metrics::Frame_FrameRadius - PenWidth::Shadow / 2; + renderRoundedRectShadow(painter, shadowedRect, shadowColor(palette), shadowRadius); } // Render button painter->setRenderHint(QPainter::Antialiasing, true); painter->setBrush(bgBrush); painter->setPen(QPen(penBrush, PenWidth::Frame)); + const qreal radius = roundButton ? roundRadius : frameRadius(PenWidth::Frame); painter->drawRoundedRect(frameRect, radius, radius); } @@ -826,15 +810,6 @@ void Helper::renderTabWidgetFrame(QPainter *painter, const QRectF &rect, const Q painter->drawPath(path); } -//______________________________________________________________________________ -void Helper::renderSelection(QPainter *painter, const QRectF &rect, const QColor &color) const -{ - painter->setRenderHint(QPainter::Antialiasing); - painter->setPen(Qt::NoPen); - painter->setBrush(color); - painter->drawRect(rect); -} - //______________________________________________________________________________ void Helper::renderSeparator(QPainter *painter, const QRectF &rect, const QColor &color, bool vertical) const { @@ -884,26 +859,18 @@ void Helper::renderCheckBoxBackground(QPainter *painter, const auto radius = Metrics::CheckBox_Radius; - switch (state) { - case CheckOff: - painter->setBrush(palette.button().color().darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); - painter->drawRoundedRect(frameRect, radius, radius); - break; + painter->setBrush(palette.button().color().darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); + painter->drawRoundedRect(frameRect, radius, radius); - case CheckPartial: - case CheckOn: - painter->setBrush(transparent.darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); - painter->drawRoundedRect(frameRect, radius, radius); - break; - - case CheckAnimated: - painter->setBrush(palette.button().color().darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); - painter->drawRoundedRect(frameRect, radius, radius); - painter->setBrush(transparent); - painter->setOpacity(animation); - painter->drawRoundedRect(frameRect, radius, radius); - break; + if (state == CheckOff) { + return; } + + painter->setBrush(transparent); + if (state == CheckAnimated) { + painter->setOpacity(animation); + } + painter->drawRoundedRect(frameRect, radius, radius); } //______________________________________________________________________________ @@ -1042,23 +1009,18 @@ void Helper::renderRadioButtonBackground(QPainter *painter, } painter->setPen(QPen(penBrush, PenWidth::Frame)); - switch (state) { - case RadioOff: - painter->setBrush(palette.button().color().darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); - painter->drawEllipse(frameRect); - break; - case RadioOn: - painter->setBrush(transparent.darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); - painter->drawEllipse(frameRect); - break; - case RadioAnimated: - painter->setBrush(palette.button().color().darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); - painter->drawEllipse(frameRect); - painter->setBrush(transparent); - painter->setOpacity(animation); - painter->drawEllipse(frameRect); - break; + painter->setBrush(palette.button().color().darker(sunken ? radioCheckSunkenDarkeningFactor : 100)); + painter->drawEllipse(frameRect); + + if (state == RadioOff) { + return; } + + painter->setBrush(transparent); + if (state == RadioAnimated) { + painter->setOpacity(animation); + } + painter->drawEllipse(frameRect); } //______________________________________________________________________________ @@ -1097,23 +1059,19 @@ void Helper::renderRadioButton(QPainter *painter, painter->setBrush(palette.text()); painter->setPen(Qt::NoPen); - QRectF markerRect; - markerRect = frameRect.adjusted(6, 6, -6, -6); - - qreal adjustFactor; + const int radius = (std::min(frameRect.width(), frameRect.height()) - 12) / 2; + const QPointF center = frameRect.center(); // mark switch (state) { case RadioOn: - painter->drawEllipse(markerRect); - + painter->drawEllipse(center, radius, radius); break; - case RadioAnimated: - adjustFactor = markerRect.height() * (1 - animation); - markerRect.adjust(adjustFactor, adjustFactor, -adjustFactor, -adjustFactor); - painter->drawEllipse(markerRect); - + case RadioAnimated: { + const qreal animationRadius = radius * animation; + painter->drawEllipse(center, animationRadius, animationRadius); break; + } default: break; } @@ -1132,7 +1090,7 @@ void Helper::renderSliderGroove(QPainter *painter, const QRectF &rect, const QCo // content // content if (fg.isValid()) { - painter->setPen(QPen(transparentize(fg, Metrics::Bias_Default), PenWidth::Frame)); + painter->setPen(QPen(transparentize(fg, frameIntensityBias()), PenWidth::Frame)); painter->setBrush(KColorUtils::overlayColors(bg, alphaColor(fg, 0.7))); painter->drawRoundedRect(baseRect, radius, radius); } @@ -1155,7 +1113,7 @@ void Helper::renderDialGroove(QPainter *painter, const QRectF &rect, const QColo const int angleStart(first * 180 * 16 / M_PI); const int angleSpan((last - first) * 180 * 16 / M_PI); const QPen bgPen(fg, penWidth, Qt::SolidLine, Qt::RoundCap); - const QPen fgPen(transparentize(KColorUtils::overlayColors(bg, alphaColor(fg, 0.5)), Metrics::Bias_Default), penWidth - 2, Qt::SolidLine, Qt::RoundCap); + const QPen fgPen(transparentize(KColorUtils::overlayColors(bg, alphaColor(fg, 0.5)), frameIntensityBias()), penWidth - 2, Qt::SolidLine, Qt::RoundCap); // setup pen if (angleSpan != 0) { @@ -1254,7 +1212,7 @@ void Helper::renderProgressBarGroove(QPainter *painter, const QRectF &rect, cons // content if (fg.isValid()) { - painter->setPen(QPen(transparentize(fg, Metrics::Bias_Default), PenWidth::Frame)); + painter->setPen(QPen(transparentize(fg, frameIntensityBias()), PenWidth::Frame)); painter->setBrush(KColorUtils::overlayColors(bg, alphaColor(fg, 0.7))); painter->drawRoundedRect(baseRect, radius, radius); } @@ -1322,7 +1280,7 @@ void Helper::renderScrollBarHandle(QPainter *painter, const QRectF &rect, const const qreal radius(0.5 * std::min({baseRect.width(), baseRect.height(), (qreal)Metrics::ScrollBar_SliderWidth})); painter->setPen(Qt::NoPen); - painter->setPen(QPen(transparentize(fg, Metrics::Bias_Default), 1.001)); + painter->setPen(QPen(transparentize(fg, frameIntensityBias()), 1.001)); painter->setBrush(KColorUtils::overlayColors(bg, alphaColor(fg, 0.5))); painter->drawRoundedRect(strokedRect(baseRect), radius, radius); } @@ -1375,12 +1333,12 @@ void Helper::renderStaticTabBarTab(QPainter *painter, painter->drawRect(frameRect); if (documentMode && !isQtQuickControl && !hasAlteredBackground) { - const auto highlightBackground = alphaColor(palette.color(QPalette::Highlight), Metrics::Bias_Default); + const auto highlightBackground = alphaColor(palette.color(QPalette::Highlight), frameIntensityBias()); bgBrush = highlightBackground; } else { bgBrush = frameBackgroundColor(palette); } - QColor penBrush = KColorUtils::mix(bgBrush, palette.color(QPalette::WindowText), Metrics::Bias_Default); + QColor penBrush = KColorUtils::mix(bgBrush, palette.color(QPalette::WindowText), frameIntensityBias()); painter->setBrush(bgBrush); painter->setPen(QPen(penBrush, PenWidth::Frame)); QRectF highlightRect = frameRect; @@ -1428,7 +1386,7 @@ void Helper::renderStaticTabBarTab(QPainter *painter, bgBrush = baseColor; } - const auto hover = alphaColor(hoverColor(palette), Metrics::Bias_Default); + const auto hover = alphaColor(hoverColor(palette), frameIntensityBias()); if (animated) { bgBrush = KColorUtils::mix(bgBrush, hover, animation); } else if (enabled && hovered) { @@ -1440,7 +1398,7 @@ void Helper::renderStaticTabBarTab(QPainter *painter, } if (!isRightOfSelected && !isFirst && (north || south)) { - auto penColor = KColorUtils::mix(baseColor, palette.color(QPalette::WindowText), 0.20); + auto penColor = KColorUtils::mix(baseColor, palette.color(QPalette::WindowText), frameIntensityBias()); QRectF lineRect = frameRect; lineRect.setRight(lineRect.x() + 1); lineRect.adjust(0, 0, 0, -1); @@ -1456,7 +1414,7 @@ void Helper::renderStaticTabBarTab(QPainter *painter, painter->setBrush(penColor); painter->drawRect(lineRect); } else if (!isRightOfSelected && !isFirst && (east || west)) { - auto penColor = KColorUtils::mix(baseColor, palette.color(QPalette::WindowText), 0.20); + auto penColor = KColorUtils::mix(baseColor, palette.color(QPalette::WindowText), frameIntensityBias()); QRectF lineRect = frameRect; lineRect.setBottom(lineRect.y() - 1); lineRect.adjust(0, 0, -1, 0); @@ -1511,7 +1469,7 @@ void Helper::renderTabBarTab(QPainter *painter, } else { bgBrush = frameBackgroundColor(palette); } - QColor penBrush = KColorUtils::mix(bgBrush, palette.color(QPalette::WindowText), Metrics::Bias_Default); + QColor penBrush = KColorUtils::mix(bgBrush, palette.color(QPalette::WindowText), frameIntensityBias()); painter->setBrush(bgBrush); painter->setPen(QPen(penBrush, PenWidth::Frame)); QRectF highlightRect = frameRect; @@ -1735,6 +1693,46 @@ void Helper::renderEllipseShadow(QPainter *painter, const QRectF &rect, const QC painter->restore(); } +void Helper::renderViewItemPosition(QPainter *painter, + const QStyleOptionViewItem::ViewItemPosition &pos, + const Qt::LayoutDirection direction, + const QRectF &rect, + const QBrush &bg, + const QColor &outline) const +{ + painter->save(); + painter->setRenderHint(QPainter::Antialiasing); + QFlags sides; + const bool reverse = direction == Qt::RightToLeft; + + switch (pos) { + case QStyleOptionViewItem::Invalid: + painter->setBrush(bg); + painter->setPen(outline); + painter->drawRect(rect); + painter->restore(); + return; + case QStyleOptionViewItem::Beginning: + painter->setClipping(true); + painter->setClipRect(rect); + sides = SideTop | SideBottom | (reverse ? SideRight : SideLeft); + break; + case QStyleOptionViewItem::Middle:; + sides = SideTop | SideBottom; + break; + case QStyleOptionViewItem::End: + painter->setClipping(true); + painter->setClipRect(rect); + sides = SideTop | SideBottom | (reverse ? SideLeft : SideRight); + break; + case QStyleOptionViewItem::OnlyOne: + sides = SideTop | SideBottom | SideLeft | SideRight; + break; + } + renderFocusRect(painter, rect, bg, outline, sides); + painter->restore(); +} + //______________________________________________________________________________ bool Helper::isX11() { @@ -1762,6 +1760,47 @@ QRectF Helper::strokedRect(const QRectF &rect, const qreal penWidth) const return rect.adjusted(adjustment, adjustment, -adjustment, -adjustment); } +QMargins Helper::itemViewItemMargins(const QStyleOptionViewItem *option) const +{ + QMargins margins(Metrics::ItemView_ItemMarginLeft, Metrics::ItemView_ItemMarginTop, Metrics::ItemView_ItemMarginRight, Metrics::ItemView_ItemMarginBottom); + if (!option) { + return margins; + } + + const QFrame *frame = qobject_cast(option->widget); + const QAbstractItemView *abstractItemView = qobject_cast(option->widget); + + const bool isFirst = option->index.row() == 0; + const bool hasFrame = frame && frame->frameShape() == QFrame::StyledPanel; + const bool reverse = option->direction == Qt::RightToLeft; + + if (isFirst) { + margins.setTop(Metrics::ItemView_FirstItemTopMarginHeight); + } + + // Breeze frame has one extra white pixel + if (hasFrame) { + margins -= {1, isFirst ? 1 : 0, 1, 0}; + } + + // If a treeview wants to show the highlight separate for each column, always draw rounded borders + // if (tree && !tree->allColumnsShowFocus()) { + if (abstractItemView && abstractItemView->selectionBehavior() != QAbstractItemView::SelectRows) { + return margins; + } + + if ((reverse && option->viewItemPosition == QStyleOptionViewItem::End) || (!reverse && option->viewItemPosition == QStyleOptionViewItem::Beginning) + || option->viewItemPosition == QStyleOptionViewItem::Middle) { + margins.setRight(0); + } + if ((reverse && option->viewItemPosition == QStyleOptionViewItem::Beginning) || (!reverse && option->viewItemPosition == QStyleOptionViewItem::End) + || option->viewItemPosition == QStyleOptionViewItem::Middle) { + margins.setLeft(0); + } + + return margins; +} + //______________________________________________________________________________ QPainterPath Helper::roundedPath(const QRectF &rect, Corners corners, qreal radius) const { diff --git a/local/recipes/kde/breeze/source/kstyle/breezehelper.h b/local/recipes/kde/breeze/source/kstyle/breezehelper.h index e15730e5ea..9ce055a1a7 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezehelper.h +++ b/local/recipes/kde/breeze/source/kstyle/breezehelper.h @@ -9,8 +9,6 @@ #include "breeze.h" #include "breezeanimationdata.h" #include "breezemetrics.h" -#include "breezesettings.h" -#include "config-breeze.h" #include #include @@ -18,6 +16,7 @@ #include #include +#include #include #include #include @@ -49,9 +48,6 @@ public: //* pointer to shared config KSharedConfig::Ptr config() const; - //* pointer to kdecoration config - QSharedPointer decorationConfig() const; - //* install event filter for palette change event void installEventFilter(QApplication *app) const; @@ -76,18 +72,6 @@ public: return _viewFocusBrush.brush(palette).color(); } - //* mouse over color for buttons - QColor buttonHoverColor(const QPalette &palette) const - { - return _buttonHoverBrush.brush(palette).color(); - } - - //* focus color for buttons - QColor buttonFocusColor(const QPalette &palette) const - { - return _buttonFocusBrush.brush(palette).color(); - } - //* negative text color (used for close button) QColor negativeText(const QPalette &palette) const { @@ -118,6 +102,11 @@ public: return active ? _activeTitleBarTextColor : _inactiveTitleBarTextColor; } + qreal frameIntensityBias() const + { + return _contrastBias; + } + //* frame outline color, using animations QColor frameOutlineColor(const QPalette &, bool mouseOver = false, @@ -131,12 +120,6 @@ public: //* hover outline color, using animations QColor hoverOutlineColor(const QPalette &) const; - //* focus outline color, using animations - QColor buttonFocusOutlineColor(const QPalette &) const; - - //* hover outline color, using animations - QColor buttonHoverOutlineColor(const QPalette &) const; - //* side panel outline color, using animations QColor sidePanelOutlineColor(const QPalette &, bool hasFocus = false, qreal opacity = AnimationData::OpacityInvalid, AnimationMode = AnimationNone) const; @@ -188,7 +171,7 @@ public: void renderDebugFrame(QPainter *, const QRectF &) const; //* focus rect - void renderFocusRect(QPainter *, const QRectF &, const QColor &, const QColor &outline = QColor(), Sides = {}) const; + void renderFocusRect(QPainter *, const QRectF &, const QBrush &, const QColor &outline = QColor(), Sides = {}) const; //* focus line void renderFocusLine(QPainter *, const QRectF &, const QColor &) const; @@ -226,9 +209,6 @@ public: //* tab widget frame void renderTabWidgetFrame(QPainter *, const QRectF &, const QColor &color, const QColor &outline, Corners) const; - //* selection frame - void renderSelection(QPainter *, const QRectF &, const QColor &) const; - //* separator void renderSeparator(QPainter *, const QRectF &, const QColor &, bool vertical = false) const; @@ -327,11 +307,18 @@ public: void renderDecorationButton(QPainter *, const QRectF &, const QColor &, ButtonType, bool inverted) const; //* generic shadow for rounded rectangles - void renderRoundedRectShadow(QPainter *, const QRectF &, const QColor &, qreal radius = Metrics::Frame_FrameRadius - PenWidth::Shadow / 2) const; + void renderRoundedRectShadow(QPainter *, const QRectF &, const QColor &, qreal radius) const; //* generic shadow for ellipses void renderEllipseShadow(QPainter *, const QRectF &, const QColor &) const; + void renderViewItemPosition(QPainter *painter, + const QStyleOptionViewItem::ViewItemPosition &pos, + const Qt::LayoutDirection direction, + const QRectF &rect, + const QBrush &bg, + const QColor &outline) const; + //@} //*@name compositing utilities @@ -375,6 +362,8 @@ public: return rect.adjusted(shadowSize, shadowSize, -shadowSize, -shadowSize); } + QMargins itemViewItemMargins(const QStyleOptionViewItem *option) const; + QPixmap coloredIcon(const QIcon &icon, const QPalette &palette, const QSize &size, @@ -395,9 +384,6 @@ private: //* KWin configuration KSharedConfig::Ptr _kwinConfig; - //* decoration configuration - QSharedPointer _decorationConfig; - //* event filter PaletteChangedEventFilter *_eventFilter; @@ -405,8 +391,6 @@ private: //@{ KStatefulBrush _viewFocusBrush; KStatefulBrush _viewHoverBrush; - KStatefulBrush _buttonFocusBrush; - KStatefulBrush _buttonHoverBrush; KStatefulBrush _viewNegativeTextBrush; KStatefulBrush _viewNeutralTextBrush; //@} @@ -421,6 +405,8 @@ private: mutable bool _cachedAutoValid = false; + qreal _contrastBias; + friend class ToolsAreaManager; friend class PaletteChangedEventFilter; }; diff --git a/local/recipes/kde/breeze/source/kstyle/breezemetrics.h b/local/recipes/kde/breeze/source/kstyle/breezemetrics.h index 5afcd68764..8811816423 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezemetrics.h +++ b/local/recipes/kde/breeze/source/kstyle/breezemetrics.h @@ -51,15 +51,17 @@ struct Metrics { // menu items static constexpr int Menu_FrameWidth = 0; - static constexpr int MenuItem_MarginWidth = 5; + static constexpr int MenuItem_MarginWidth = 4; static constexpr int MenuItem_HighlightGap = 4; static constexpr int MenuItem_ExtraLeftMargin = 4; - static constexpr int MenuItem_MarginHeight = 3; - static constexpr int MenuItem_ItemSpacing = 4; + static constexpr int MenuItem_MarginHeight = 4; + static constexpr int MenuItem_ItemSpacing = 2; static constexpr int MenuItem_AcceleratorSpace = 16; + static constexpr int MenuItem_TextLeftMargin = 8; // combobox static constexpr int ComboBox_FrameWidth = 6; + static constexpr int ComboBox_ItemMarginWidth = 3; // spinbox static constexpr int SpinBox_FrameWidth = LineEdit_FrameWidth; @@ -152,7 +154,15 @@ struct Metrics { // tree view static constexpr int ItemView_ArrowSize = ArrowSize; - static constexpr int ItemView_ItemMarginWidth = 3; + static constexpr int ItemView_ItemMarginLeft = 2; + static constexpr int ItemView_ItemMarginRight = 2; + // Normal margin height is 2 to have rows spaced 4 + // First and last items will have a bigger top/bottom margin for consistent borders with the outside frame + static constexpr int ItemView_FirstItemTopMarginHeight = 2; + static constexpr int ItemView_ItemMarginTop = 1; + static constexpr int ItemView_ItemMarginBottom = 1; + static constexpr int ItemView_ItemPaddingWidth = 2; + static constexpr int ItemView_ItemPaddingHeight = 2; static constexpr int SidePanel_ItemMarginWidth = 4; // splitter @@ -161,9 +171,10 @@ struct Metrics { // shadow dimensions static constexpr int Shadow_Overlap = 2; - // frame intensities (called bias in KColorUtilities::Mix) - // Keep this value in sync with Kirigami PlatformTheme::frameContrast() - // https://invent.kde.org/frameworks/kirigami/-/blob/master/src/platform/platformtheme.cpp?ref_type=heads#L701 - static constexpr qreal Bias_Default = 0.20; + // Value used to blend background and foreground, + // used for hover effects and similar. + static constexpr qreal Blend_Value = 0.3; + + static constexpr qreal Focus_LightenColorValue = 110; }; } diff --git a/local/recipes/kde/breeze/source/kstyle/breezepropertynames.cpp b/local/recipes/kde/breeze/source/kstyle/breezepropertynames.cpp index 4dce403edc..ee0759619d 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezepropertynames.cpp +++ b/local/recipes/kde/breeze/source/kstyle/breezepropertynames.cpp @@ -22,4 +22,5 @@ const char PropertyNames::menuSeamlessEdges[] = "_breeze_menu_seamless_edges"; const char PropertyNames::bordersSides[] = "_breeze_borders_sides"; const char PropertyNames::forceFrame[] = "_breeze_force_frame"; const char PropertyNames::statusBarSeparator[] = "_breeze_statusbar_separator"; +const char PropertyNames::roundButton[] = "_kde_round_button"; } diff --git a/local/recipes/kde/breeze/source/kstyle/breezepropertynames.h b/local/recipes/kde/breeze/source/kstyle/breezepropertynames.h index a7b5aa7f78..7735778868 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezepropertynames.h +++ b/local/recipes/kde/breeze/source/kstyle/breezepropertynames.h @@ -23,6 +23,7 @@ struct PropertyNames { static const char bordersSides[]; static const char forceFrame[]; static const char statusBarSeparator[]; + static const char roundButton[]; }; } diff --git a/local/recipes/kde/breeze/source/kstyle/breezestyle.cpp b/local/recipes/kde/breeze/source/kstyle/breezestyle.cpp index f76b0c9b5c..3a9096524e 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezestyle.cpp +++ b/local/recipes/kde/breeze/source/kstyle/breezestyle.cpp @@ -50,6 +50,8 @@ #include #include #include +#include +#include #include #include #include @@ -61,23 +63,6 @@ #include #endif -#if BREEZE_HAVE_QTQUICK -#include -#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) -#include -using TabletModeWatcher = Kirigami::Platform::TabletModeWatcher; -#else -#if __has_include() -// the namespaced include is new in KF 5.91 -#include -#else -#include -#endif -using TabletModeWatcher = Kirigami::TabletModeWatcher; -#endif -#include -#endif - #include "breeze_logging.h" #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) @@ -160,7 +145,7 @@ public: explicit ComboBoxItemDelegate(QAbstractItemView *parent) : QItemDelegate(parent) , _proxy(parent->itemDelegate()) - , _itemMargin(Breeze::Metrics::ItemView_ItemMarginWidth) + , _itemMargin(Breeze::Metrics::ComboBox_ItemMarginWidth) { } @@ -181,7 +166,7 @@ public: auto c = option.palette.brush((option.state & QStyle::State_Enabled) ? QPalette::Normal : QPalette::Disabled, HighlightColor).color(); painter->setPen(c); - c.setAlphaF(c.alphaF() * 0.3); + c.setAlphaF(c.alphaF() * Metrics::Blend_Value); painter->setBrush(c); auto radius = Metrics::Frame_FrameRadius - (0.5 * PenWidth::Frame); painter->drawRoundedRect(QRectF(option.rect).adjusted(0.5, 0.5, -0.5, -0.5), radius, radius); @@ -284,6 +269,7 @@ Style::Style() #if BREEZE_HAVE_KSTYLE , SH_ArgbDndWindow(newStyleHint(QStringLiteral("SH_ArgbDndWindow"))) , CE_CapacityBar(newControlElement(QStringLiteral("CE_CapacityBar"))) + , CE_IconButton(newControlElement(QStringLiteral("CE_IconButton"))) #endif { #if HAVE_QTDBUS @@ -666,22 +652,7 @@ int Style::pixelMetric(PixelMetric metric, const QStyleOption *option, const QWi // small icon size case PM_SmallIconSize: { - auto iconSize = ParentStyleClass::pixelMetric(metric, option, widget); - if (!isTabletMode()) { - return iconSize; - } - - // in tablet mode, we try to figure out the next size and use it - // see bug 455513 - auto metaEnum = QMetaEnum::fromType(); - for (int i = 0; i + 1 < metaEnum.keyCount(); ++i) { - if (iconSize == metaEnum.value(i)) { - return metaEnum.value(i + 1); - } - } - - // size is either too large or unknown, just increase it by 50% - return iconSize * 3 / 2; + return ParentStyleClass::pixelMetric(metric, option, widget); } // frame width @@ -743,7 +714,7 @@ int Style::pixelMetric(PixelMetric metric, const QStyleOption *option, const QWi } } - if (qobject_cast(widget)) { + if (qobject_cast(widget) || qobject_cast(widget)) { return Metrics::Frame_FrameWidth; } @@ -1050,6 +1021,54 @@ QRect Style::subElementRect(SubElement element, const QStyleOption *option, cons return tabWidgetCornerRect(SE_TabWidgetRightCorner, option, widget); case SE_ToolBoxTabContents: return toolBoxTabContentsRect(option, widget); + case SE_ItemViewItemCheckIndicator: + case SE_ItemViewItemDecoration: { + QRect baseRect = ParentStyleClass::subElementRect(element, option, widget); + const auto viewOption = qstyleoption_cast(option); + const QMargins margins = _helper->itemViewItemMargins(viewOption); + + // This counteracts a quirk of QCommonStyle: when the view has a frame, it adds an hardcoded one pixel to the subelementrect x + int marginAdjust = 0; + const auto frame = viewOption ? qobject_cast(viewOption->widget) : nullptr; + if (frame && frame->frameShape() == QFrame::StyledPanel) { + marginAdjust = 1; + } + + if (viewOption && (viewOption->decorationPosition == QStyleOptionViewItem::Left || viewOption->decorationPosition == QStyleOptionViewItem::Right)) { + if ((option->direction == Qt::RightToLeft) != (viewOption->decorationPosition == QStyleOptionViewItem::Right)) { + // Move from right to left either right aligned icons on ltr layouts or left aligned on rtl layouts + const auto adjustment = baseRect.right() - margins.right() - Metrics::ItemView_ItemPaddingWidth + marginAdjust; + if (viewOption->rect.width() > adjustment) { + baseRect.moveRight(adjustment); + } + + } else { + // Move from left to right either left aligned icons on ltr layouts or right aligned icons on rtl layouts + const auto adjustment = baseRect.left() + margins.left() + Metrics::ItemView_ItemPaddingWidth - marginAdjust; + if (viewOption->rect.width() > adjustment) { + baseRect.moveLeft(adjustment); + } + } + } + + // This will move it down by the difference of margins.top - margin.bottom + // Only the first item has a bigger top margin so will be moved down accordingly + baseRect.moveTop(baseRect.top() + margins.top() - margins.bottom()); + + return baseRect; + } + case SE_ItemViewItemText: { + auto viewItem = qstyleoption_cast(option); + QRect rect = ParentStyleClass::subElementRect(element, option, widget); + if (viewItem) { + const QMargins margins = _helper->itemViewItemMargins(viewItem); + rect.setRight(rect.right() - margins.right() - Metrics::ItemView_ItemPaddingWidth); + rect.setLeft(rect.left() + margins.left() + Metrics::ItemView_ItemPaddingWidth); + rect.moveTop(rect.top() + margins.top() - margins.bottom()); + } + + return rect; + } // fallback default: @@ -1137,7 +1156,7 @@ QStyle::SubControl Style::hitTestComplexControl(ComplexControl control, const QS if (sliderRect.contains(point)) { return SC_ScrollBarSlider; - } else if (preceeds(point, sliderRect, option)) { + } else if (precedes(point, sliderRect, option)) { return SC_ScrollBarSubPage; } else { return SC_ScrollBarAddPage; @@ -1145,7 +1164,7 @@ QStyle::SubControl Style::hitTestComplexControl(ComplexControl control, const QS } // This is one of the up/down buttons. First, decide which one it is. - if (preceeds(point, grooveRect, option)) { + if (precedes(point, grooveRect, option)) { if (_subLineButtons == DoubleButton) { auto buttonRect = scrollBarInternalSubControlRect(option, SC_ScrollBarSubLine); return scrollBarHitTest(buttonRect, point, option); @@ -1397,6 +1416,8 @@ void Style::drawControl(ControlElement element, const QStyleOption *option, QPai #if BREEZE_HAVE_KSTYLE if (element == CE_CapacityBar) { fcn = &Style::drawProgressBarControl; + } else if (element == CE_IconButton) { + fcn = &Style::drawIconButtonControl; } else #endif @@ -3629,7 +3650,8 @@ QSize Style::menuItemSizeFromContents(const QStyleOption *option, const QSize &c size.setHeight(qMax(size.height(), int(Metrics::MenuButton_IndicatorWidth))); size.setHeight(qMax(size.height(), int(Metrics::CheckBox_Size))); size.setHeight(qMax(size.height(), iconWidth)); - return expandSize(size, Metrics::MenuItem_MarginWidth, (isTabletMode() ? 2 : 1) * Metrics::MenuItem_MarginHeight); + size.setHeight(size.height() + 1); // Make sure to add one pixel here to follow QQC2 style more closely + return expandSize(size, Metrics::MenuItem_MarginWidth, Metrics::MenuItem_MarginHeight); } case QStyleOptionMenuItem::Separator: { @@ -3666,7 +3688,7 @@ QSize Style::menuItemSizeFromContents(const QStyleOption *option, const QSize &c h += Metrics::MenuItem_MarginHeight; // extra top padding } - return {w + Metrics::MenuItem_MarginWidth * 2, h + Metrics::MenuItem_MarginHeight * 2}; + return {w + Metrics::MenuItem_MarginWidth * 2, h + Metrics::MenuItem_MarginHeight}; } // for all other cases, return input @@ -3868,7 +3890,16 @@ QSize Style::itemViewItemSizeFromContents(const QStyleOption *option, const QSiz { // call base class const QSize size(ParentStyleClass::sizeFromContents(CT_ItemViewItem, option, contentsSize, widget)); - return expandSize(size, Metrics::ItemView_ItemMarginWidth); + if (!qobject_cast(widget)) { + const QMargins margins = _helper->itemViewItemMargins(qstyleoption_cast(option)); + + return size + + QSize(margins.left() + margins.right() + Metrics::ItemView_ItemPaddingWidth * 2, + margins.top() + margins.bottom() + Metrics::ItemView_ItemPaddingHeight * 2); + } + return expandSize(size, + Metrics::ItemView_ItemMarginLeft + Metrics::ItemView_ItemMarginRight, + Metrics::ItemView_ItemMarginBottom + Metrics::ItemView_ItemMarginTop); } //______________________________________________________________ @@ -4057,20 +4088,63 @@ bool Style::drawFrameFocusRectPrimitive(const QStyleOption *option, QPainter *pa } const State &state(option->state); + if (!(state & State_HasFocus)) { + return true; + } + + const auto &palette(option->palette); + auto outlineColor(palette.color(HighlightColor)); + const auto focusRectOption = qstyleoption_cast(option); + if (focusRectOption && focusRectOption->backgroundColor.isValid()) { + outlineColor = focusRectOption->backgroundColor; + } + outlineColor = outlineColor.lighter(Metrics::Focus_LightenColorValue); + + auto drawItemViewFocus = [option, painter, widget, outlineColor, this]() { + auto rect(option->rect); + + QStyleOptionViewItem viewItemOption; + if (widget) { + viewItemOption.initFrom(widget); + } + viewItemOption.viewItemPosition = QStyleOptionViewItem::ViewItemPosition::OnlyOne; + rect = rect.marginsRemoved(_helper->itemViewItemMargins(&viewItemOption)); + + if (rect.width() < 10) { + return; + } + + _helper->renderFocusRect(painter, rect, Qt::transparent, outlineColor, AllSides); + }; // no focus indicator on selected list items - if ((state & State_Selected) && qobject_cast(widget)) { + if (qobject_cast(widget)) { + if (!(state & State_Selected)) { + drawItemViewFocus(); + } + return true; + } + + // Dolphin uses these + if (qobject_cast(option->styleObject)) { + drawItemViewFocus(); + return true; + } + + const auto itemView = qobject_cast(option->styleObject); + if (itemView && itemView->selectionModel()) { + if (!itemView->selectionModel()->hasSelection()) { + drawItemViewFocus(); + } return true; } const auto rect(option->rect.adjusted(0, 0, 0, 1)); - const auto &palette(option->palette); if (rect.width() < 10) { return true; } - const auto outlineColor(state & State_Selected ? palette.color(QPalette::HighlightedText) : palette.color(HighlightColor)); painter->setRenderHint(QPainter::Antialiasing, false); painter->setPen(outlineColor); painter->drawLine(QPoint(rect.bottomLeft() - QPoint(0, 1)), QPoint(rect.bottomRight() - QPoint(0, 1))); @@ -4437,6 +4511,10 @@ bool Style::drawPanelButtonCommandPrimitive(const QStyleOption *option, QPainter // Use to determine if this button is a default button. bool defaultButton = false; bool hasNeutralHighlight = hasHighlightNeutral(widget, option); + bool roundButton = widget ? widget->property(PropertyNames::roundButton).toBool() : false; + if (!roundButton && option->styleObject) { + roundButton = option->styleObject->property(PropertyNames::roundButton).toBool(); + } const auto buttonOption = qstyleoption_cast(option); if (buttonOption) { @@ -4470,6 +4548,7 @@ bool Style::drawPanelButtonCommandPrimitive(const QStyleOption *option, QPainter stateProperties["defaultButton"] = defaultButton; stateProperties["hasNeutralHighlight"] = hasNeutralHighlight; stateProperties["isActiveWindow"] = widget ? widget->isActiveWindow() : true; + stateProperties["roundButton"] = roundButton; _helper->renderButtonFrame(painter, option->rect, option->palette, stateProperties, bgAnimation, penAnimation); @@ -4643,7 +4722,7 @@ bool Style::drawPanelTipLabelPrimitive(const QStyleOption *option, QPainter *pai const auto &palette(option->palette); const auto &background = palette.color(QPalette::ToolTipBase); - const auto outline(KColorUtils::mix(palette.color(QPalette::ToolTipBase), palette.color(QPalette::ToolTipText), 0.25)); + const auto outline(KColorUtils::mix(palette.color(QPalette::ToolTipBase), palette.color(QPalette::ToolTipText), _helper->frameIntensityBias())); const bool hasAlpha(_helper->hasAlphaChannel(widget)); _helper->renderMenuFrame(painter, option->rect, background, outline, hasAlpha); @@ -4659,13 +4738,67 @@ bool Style::drawPanelItemViewItemPrimitive(const QStyleOption *option, QPainter return false; } + const QWidget *actualWidget = widget; + if (!actualWidget) { + actualWidget = viewItemOption->widget; + } + // try cast widget - const auto abstractItemView = qobject_cast(widget); + const auto abstractItemView = qobject_cast(actualWidget); // store palette and rect const auto &palette(option->palette); auto rect(option->rect); + if (!qobject_cast(actualWidget)) { + rect = rect.marginsRemoved(_helper->itemViewItemMargins(viewItemOption)); + } + + const auto treeItemView = qobject_cast(actualWidget); + auto viewItemPosition = viewItemOption->viewItemPosition; + if (abstractItemView && abstractItemView->selectionBehavior() != QAbstractItemView::SelectRows) { + viewItemPosition = QStyleOptionViewItem::OnlyOne; + } + if (treeItemView && treeItemView->header()) { + // If the last column is very narrow, there won't be enough room to draw the rounded border, + // so in that case remove move everything in the second to last column + // And the same case is valid for the first column + const int thisColumn = treeItemView->header()->visualIndex(viewItemOption->index.column()); + int prevColumn = thisColumn - 1; + int nextColumn = thisColumn + 1; + + // ignore hidden columns when trying to find prev and next + while (prevColumn > 0 && treeItemView->isColumnHidden(prevColumn)) { + prevColumn--; + } + const int count = treeItemView->header()->count(); + while (nextColumn < count - 1 && treeItemView->isColumnHidden(nextColumn)) { + nextColumn++; + } + + // Make sure to check that the column exists, since columnWidth will report 0 for nonexistent columns too! + if (treeItemView->columnViewportPosition(prevColumn) != -1) { + if (viewItemPosition != QStyleOptionViewItem::Beginning && viewItemPosition != QStyleOptionViewItem::OnlyOne + && treeItemView->columnWidth(prevColumn) < Metrics::Frame_FrameRadius) { + rect.setX(rect.x() + Metrics::Frame_FrameRadius); + } + } + if (treeItemView->columnViewportPosition(thisColumn) != -1) { + if (treeItemView->columnWidth(thisColumn) < Metrics::Frame_FrameRadius) { + if (viewItemPosition == QStyleOptionViewItem::Beginning) { + rect.setWidth(rect.width() + Metrics::Frame_FrameRadius); + } else { + rect.setX(rect.x() - Metrics::Frame_FrameRadius); + } + } + } + if (treeItemView->columnViewportPosition(nextColumn) != -1) { + if (viewItemPosition != QStyleOptionViewItem::End && treeItemView->columnWidth(nextColumn) < Metrics::Frame_FrameRadius) { + rect.setWidth(rect.width() - Metrics::Frame_FrameRadius); + } + } + } + // store flags const State &state(option->state); const bool mouseOver((state & State_MouseOver) && (!abstractItemView || abstractItemView->selectionMode() != QAbstractItemView::NoSelection)); @@ -4673,7 +4806,7 @@ bool Style::drawPanelItemViewItemPrimitive(const QStyleOption *option, QPainter const bool enabled(state & State_Enabled); const bool active(state & State_Active); - const bool hasCustomBackground = viewItemOption->backgroundBrush.style() != Qt::NoBrush && !(state & State_Selected); + const bool hasCustomBackground = viewItemOption->backgroundBrush.style() != Qt::NoBrush && !selected; const bool hasSolidBackground = !hasCustomBackground || viewItemOption->backgroundBrush.style() == Qt::SolidPattern; const bool hasAlternateBackground(viewItemOption->features & QStyleOptionViewItem::Alternate); @@ -4693,8 +4826,12 @@ bool Style::drawPanelItemViewItemPrimitive(const QStyleOption *option, QPainter // render alternate background if (hasAlternateBackground) { painter->setPen(Qt::NoPen); - painter->setBrush(palette.brush(colorGroup, QPalette::AlternateBase)); - painter->drawRect(rect); + _helper->renderViewItemPosition(painter, + viewItemPosition, + viewItemOption->direction, + option->rect, + palette.color(colorGroup, QPalette::AlternateBase), + QColor()); } // stop here if no highlight is needed @@ -4705,9 +4842,7 @@ bool Style::drawPanelItemViewItemPrimitive(const QStyleOption *option, QPainter // render custom background if (hasCustomBackground && !hasSolidBackground) { painter->setBrushOrigin(viewItemOption->rect.topLeft()); - painter->setBrush(viewItemOption->backgroundBrush); - painter->setPen(Qt::NoPen); - painter->drawRect(viewItemOption->rect); + _helper->renderViewItemPosition(painter, viewItemPosition, viewItemOption->direction, viewItemOption->rect, viewItemOption->backgroundBrush, QColor()); return true; } @@ -4723,14 +4858,27 @@ bool Style::drawPanelItemViewItemPrimitive(const QStyleOption *option, QPainter // change color to implement mouse over if (mouseOver && !hasCustomBackground) { if (!selected) { - color.setAlphaF(0.2); + color.setAlphaF(Metrics::Blend_Value); } else { - color = color.lighter(110); + color = color.lighter(Metrics::Focus_LightenColorValue); } } + // Focus decoration + QColor focusColor = color; + if (!hasCustomBackground) { + focusColor.setAlphaF(selected ? 1.0 : 0.8); + } + // render - _helper->renderSelection(painter, rect, color); + painter->setBrush(color); + const auto isTable = qobject_cast(viewItemOption->widget); + // We want table cells to not be rounded + if (isTable) { + _helper->renderViewItemPosition(painter, QStyleOptionViewItem::ViewItemPosition::Invalid, viewItemOption->direction, rect, color, focusColor); + } else { + _helper->renderViewItemPosition(painter, viewItemPosition, viewItemOption->direction, rect, color, focusColor); + } return true; } @@ -4738,6 +4886,9 @@ bool Style::drawPanelItemViewItemPrimitive(const QStyleOption *option, QPainter //___________________________________________________________________________________ bool Style::drawIndicatorCheckBoxPrimitive(const QStyleOption *option, QPainter *painter, const QWidget *widget) const { + const QObject *styleObject = widget ? widget : option->styleObject; + isQtQuickControl(option, widget); // registers it with widgetStateEngine. + // copy rect and palette const auto &rect(option->rect); const auto &palette(option->palette); @@ -4757,15 +4908,15 @@ bool Style::drawIndicatorCheckBoxPrimitive(const QStyleOption *option, QPainter } // animation state - _animations->widgetStateEngine().updateState(widget, AnimationHover, mouseOver); - _animations->widgetStateEngine().updateState(widget, AnimationPressed, checkBoxState != CheckOff); + _animations->widgetStateEngine().updateState(styleObject, AnimationHover, mouseOver); + _animations->widgetStateEngine().updateState(styleObject, AnimationPressed, checkBoxState != CheckOff); auto target = checkBoxState; - if (_animations->widgetStateEngine().isAnimated(widget, AnimationPressed)) { + if (_animations->widgetStateEngine().isAnimated(styleObject, AnimationPressed)) { checkBoxState = CheckAnimated; } - const qreal animation(_animations->widgetStateEngine().opacity(widget, AnimationPressed)); + const qreal animation(_animations->widgetStateEngine().opacity(styleObject, AnimationPressed)); - const qreal opacity(_animations->widgetStateEngine().opacity(widget, AnimationHover)); + const qreal opacity(_animations->widgetStateEngine().opacity(styleObject, AnimationHover)); // render _helper->renderCheckBoxBackground(painter, rect, palette, checkBoxState, hasHighlightNeutral(widget, option, mouseOver), sunken, animation); @@ -4777,6 +4928,9 @@ bool Style::drawIndicatorCheckBoxPrimitive(const QStyleOption *option, QPainter //___________________________________________________________________________________ bool Style::drawIndicatorRadioButtonPrimitive(const QStyleOption *option, QPainter *painter, const QWidget *widget) const { + const QObject *styleObject = widget ? widget : option->styleObject; + isQtQuickControl(option, widget); // registers it with widgetStateEngine. + // copy rect and palette const auto &rect(option->rect); const auto &palette(option->palette); @@ -4791,19 +4945,27 @@ bool Style::drawIndicatorRadioButtonPrimitive(const QStyleOption *option, QPaint RadioButtonState radioButtonState((state & State_On) ? RadioOn : RadioOff); // animation state - _animations->widgetStateEngine().updateState(widget, AnimationHover, mouseOver); - _animations->widgetStateEngine().updateState(widget, AnimationPressed, radioButtonState != RadioOff); - if (_animations->widgetStateEngine().isAnimated(widget, AnimationPressed)) { + _animations->widgetStateEngine().updateState(styleObject, AnimationHover, mouseOver); + _animations->widgetStateEngine().updateState(styleObject, AnimationPressed, radioButtonState != RadioOff); + if (_animations->widgetStateEngine().isAnimated(styleObject, AnimationPressed)) { radioButtonState = RadioAnimated; } - const qreal animation(_animations->widgetStateEngine().opacity(widget, AnimationPressed)); + const qreal animation(_animations->widgetStateEngine().opacity(styleObject, AnimationPressed)); // colors - const qreal opacity(_animations->widgetStateEngine().opacity(widget, AnimationHover)); + const qreal opacity(_animations->widgetStateEngine().opacity(styleObject, AnimationHover)); // render - _helper->renderRadioButtonBackground(painter, rect, palette, radioButtonState, hasHighlightNeutral(widget, option, mouseOver), sunken, animation); - _helper->renderRadioButton(painter, rect, palette, mouseOver, radioButtonState, hasHighlightNeutral(widget, option, mouseOver), sunken, animation, opacity); + _helper->renderRadioButtonBackground(painter, rect, palette, radioButtonState, hasHighlightNeutral(styleObject, option, mouseOver), sunken, animation); + _helper->renderRadioButton(painter, + rect, + palette, + mouseOver, + radioButtonState, + hasHighlightNeutral(styleObject, option, mouseOver), + sunken, + animation, + opacity); return true; } @@ -5271,6 +5433,77 @@ bool Style::drawPushButtonLabelControl(const QStyleOption *option, QPainter *pai return true; } +bool Style::drawIconButtonControl(const QStyleOption *option, QPainter *painter, const QWidget *widget) const +{ + const auto styleOptionButton = qstyleoption_cast(option); + if (!styleOptionButton) { + return true; + } + + QStyleOptionButton overlayOption(*styleOptionButton); + const int buttonIconSize = pixelMetric(QStyle::PM_ButtonIconSize, &overlayOption, widget); + overlayOption.iconSize = QSize(buttonIconSize, buttonIconSize); + + // Basically pushButtonSizeFromContents. + QSize overlaySize = overlayOption.iconSize; + overlaySize = expandSize(overlaySize, Metrics::Button_MarginWidth); + overlaySize = expandSize(overlaySize, Metrics::Frame_FrameWidth); + + // Fit the overlay button and be able to see at least some part of the icon. + const QSize minimumSize = overlaySize + QSize(buttonIconSize, buttonIconSize); + + // No room for an overlay, just render the button as a button. + if (styleOptionButton->rect.size().width() <= minimumSize.width() || styleOptionButton->rect.size().height() <= minimumSize.height()) { + drawControl(QStyle::CE_PushButton, option, painter, widget); + return true; + } + + // Draw original button contents without the frame. + // TODO Consider SE_PushButtonContents? + drawPushButtonLabelControl(styleOptionButton, painter, widget); + + // Now draw an edit button into a corner. + overlayOption.icon = QIcon::fromTheme(QStringLiteral("document-edit")); + + overlayOption.rect.setSize(overlaySize); + // Paint it into the respective corner. + if (styleOptionButton->direction == Qt::RightToLeft) { + overlayOption.rect.moveBottomLeft(styleOptionButton->rect.bottomLeft()); + } else { + overlayOption.rect.moveBottomRight(styleOptionButton->rect.bottomRight()); + } + + // button state + const bool enabled = option->state & QStyle::State_Enabled; + const bool activeFocus = option->state & QStyle::State_HasFocus; + // Using `widget->focusProxy() == nullptr` to work around a possible Qt bug + // where buttons that have a focusProxy still show focus. + const bool visualFocus = activeFocus && option->state & QStyle::State_KeyboardFocusChange && (widget == nullptr || widget->focusProxy() == nullptr); + const bool hovered = option->state & QStyle::State_MouseOver; + const bool down = option->state & QStyle::State_Sunken; + + // NOTE: Using focus animation for bg down because the pressed animation only works on press when enabled for buttons and not on release. + _animations->widgetStateEngine().updateState(widget, AnimationFocus, down && enabled); + _animations->widgetStateEngine().updateState(widget, AnimationHover, (hovered || visualFocus || down) && enabled); + const qreal bgAnimation = _animations->widgetStateEngine().opacity(widget, AnimationFocus); + const qreal penAnimation = _animations->widgetStateEngine().opacity(widget, AnimationHover); + + const QHash stateProperties{ + {"enabled", enabled}, + {"visualFocus", visualFocus}, + {"hovered", hovered}, + {"down", down}, + {"isActiveWindow", widget ? widget->isActiveWindow() : true}, + {"roundButton", true}, + }; + + _helper->renderButtonFrame(painter, overlayOption.rect, overlayOption.palette, stateProperties, bgAnimation, penAnimation); + + drawPushButtonLabelControl(&overlayOption, painter, widget); + + return true; +} + //___________________________________________________________________________________ bool Style::drawToolButtonLabelControl(const QStyleOption *option, QPainter *painter, const QWidget *widget) const { @@ -5287,14 +5520,6 @@ bool Style::drawToolButtonLabelControl(const QStyleOption *option, QPainter *pai const bool mouseOver(enabled && (option->state & State_MouseOver)); const bool flat(state & State_AutoRaise); - // focus flag is set to match the background color in either renderButtonFrame or renderToolButtonFrame - bool hasFocus(false); - if (flat) { - hasFocus = enabled && !mouseOver && (option->state & State_HasFocus); - } else { - hasFocus = enabled && !mouseOver && (option->state & (State_HasFocus | State_Sunken)); - } - // contents auto contentsRect(rect); @@ -5411,8 +5636,6 @@ bool Style::drawToolButtonLabelControl(const QStyleOption *option, QPainter *pai QIcon::Mode iconMode; if (!enabled) { iconMode = QIcon::Disabled; - } else if (!flat && hasFocus) { - iconMode = QIcon::Selected; } else if (mouseOver && flat) { iconMode = QIcon::Active; } else { @@ -5450,6 +5673,9 @@ bool Style::drawCheckBoxLabelControl(const QStyleOption *option, QPainter *paint return true; } + const QObject *styleObject = widget ? widget : option->styleObject; + isQtQuickControl(option, widget); // registers it with widgetStateEngine. + // copy palette and rect const auto &palette(option->palette); const auto &rect(option->rect); @@ -5501,10 +5727,10 @@ bool Style::drawCheckBoxLabelControl(const QStyleOption *option, QPainter *paint const bool hasFocus(enabled && (state & State_HasFocus)); // update animation state - _animations->widgetStateEngine().updateState(widget, AnimationFocus, hasFocus); + _animations->widgetStateEngine().updateState(styleObject, AnimationFocus, hasFocus); - const bool isFocusAnimated(_animations->widgetStateEngine().isAnimated(widget, AnimationFocus)); - const qreal opacity(_animations->widgetStateEngine().opacity(widget, AnimationFocus)); + const bool isFocusAnimated(_animations->widgetStateEngine().isAnimated(styleObject, AnimationFocus)); + const qreal opacity(_animations->widgetStateEngine().opacity(styleObject, AnimationFocus)); // focus color QColor focusColor; if (isFocusAnimated) { @@ -5623,13 +5849,18 @@ bool Style::drawMenuBarItemControl(const QStyleOption *option, QPainter *painter // render hover and focus if (useStrongFocus && (selected || sunken)) { - QColor outlineColor; + QColor color; if (sunken) { - outlineColor = _helper->focusColor(palette); + color = _helper->focusColor(palette); } else if (selected) { - outlineColor = _helper->hoverColor(palette); + color = _helper->hoverColor(palette); } - _helper->renderFocusRect(painter, rect, outlineColor); + + const qreal radius = _helper->frameRadius(PenWidth::Frame); + + painter->setBrush(color); + painter->setPen(Qt::NoPen); + painter->drawRoundedRect(rect, radius, radius); } /* @@ -5682,7 +5913,7 @@ bool Style::drawMenuBarItemControl(const QStyleOption *option, QPainter *painter const auto textRect = option->fontMetrics.boundingRect(rect, textFlags, menuItemOption->text); // render text - const QPalette::ColorRole role = (useStrongFocus && sunken) ? QPalette::HighlightedText : QPalette::WindowText; + const QPalette::ColorRole role = (useStrongFocus && (sunken || selected)) ? QPalette::HighlightedText : QPalette::WindowText; drawItemText(painter, textRect, textFlags, palette, enabled, menuItemOption->text, role); // render outline @@ -5735,7 +5966,7 @@ bool Style::drawMenuItemControl(const QStyleOption *option, QPainter *painter, c -Metrics::MenuItem_MarginWidth, 0); QColor separatorColor; if (StyleConfigData::menuOpacity() < 100) { - separatorColor = _helper->alphaColor(palette.color(QPalette::WindowText), Metrics::Bias_Default); + separatorColor = _helper->alphaColor(palette.color(QPalette::WindowText), _helper->frameIntensityBias()); } else { separatorColor = _helper->separatorColor(palette); } @@ -5776,8 +6007,13 @@ bool Style::drawMenuItemControl(const QStyleOption *option, QPainter *painter, c // render hover and focus if (useStrongFocus && (selected || sunken)) { auto color = _helper->focusColor(palette); - color = _helper->alphaColor(color, 0.3); - const auto outlineColor = _helper->focusOutlineColor(palette); + // When clicking, use the same background color + auto outlineColor = color; + if (!sunken) { + // If not clicking, use the alphaColor + color = _helper->alphaColor(color, Metrics::Blend_Value); + outlineColor = _helper->focusOutlineColor(palette); + } Sides sides; if (!menuItemOption->menuRect.isNull()) { @@ -5801,17 +6037,18 @@ bool Style::drawMenuItemControl(const QStyleOption *option, QPainter *painter, c } // get rect available for contents - auto contentsRect(insideMargin(rect, Metrics::MenuItem_MarginWidth, (isTabletMode() ? 2 : 1) * Metrics::MenuItem_MarginHeight)); + auto contentsRect(insideMargin(rect, Metrics::MenuItem_MarginWidth, Metrics::MenuItem_MarginHeight)); + contentsRect = contentsRect.marginsRemoved(QMargins(Metrics::MenuItem_TextLeftMargin, 0, 0, 0)); // define relevant rectangles // checkbox QRect checkBoxRect; if (menuItemOption->menuHasCheckableItems) { - checkBoxRect = QRect(contentsRect.left(), + checkBoxRect = QRect(contentsRect.left() - Metrics::MenuItem_TextLeftMargin, contentsRect.top() + (contentsRect.height() - Metrics::CheckBox_Size) / 2, Metrics::CheckBox_Size, Metrics::CheckBox_Size); - contentsRect.setLeft(checkBoxRect.right() + Metrics::MenuItem_ItemSpacing + 1); + contentsRect.setLeft(checkBoxRect.right() + (Metrics::MenuItem_TextLeftMargin)); } // render checkbox indicator @@ -5822,14 +6059,14 @@ bool Style::drawMenuItemControl(const QStyleOption *option, QPainter *painter, c CheckBoxState state(menuItemOption->checked ? CheckOn : CheckOff); _helper->renderCheckBoxBackground(painter, checkBoxRect, palette, state, false, sunken); - _helper->renderCheckBox(painter, checkBoxRect, palette, false, state, state, false, sunken); + _helper->renderCheckBox(painter, checkBoxRect, palette, selected, state, state, false, sunken); } else if (menuItemOption->checkType == QStyleOptionMenuItem::Exclusive) { checkBoxRect = visualRect(option, checkBoxRect); const bool active(menuItemOption->checked); _helper->renderRadioButtonBackground(painter, checkBoxRect, palette, active ? RadioOn : RadioOff, false, sunken); - _helper->renderRadioButton(painter, checkBoxRect, palette, false, active ? RadioOn : RadioOff, false, sunken); + _helper->renderRadioButton(painter, checkBoxRect, palette, selected, active ? RadioOn : RadioOff, false, sunken); } // icon @@ -5857,7 +6094,7 @@ bool Style::drawMenuItemControl(const QStyleOption *option, QPainter *painter, c // icon mode QIcon::Mode mode; if (enabled) { - mode = QIcon::Normal; + mode = sunken ? QIcon::Selected : QIcon::Normal; } else { mode = QIcon::Disabled; } @@ -5884,7 +6121,7 @@ bool Style::drawMenuItemControl(const QStyleOption *option, QPainter *painter, c const ArrowOrientation orientation(reverseLayout ? ArrowLeft : ArrowRight); // color - const QColor arrowColor = _helper->arrowColor(palette, QPalette::WindowText); + const QColor arrowColor = _helper->arrowColor(palette, sunken ? QPalette::HighlightedText : QPalette::WindowText); // render _helper->renderArrow(painter, arrowRect, arrowColor, orientation); @@ -5902,7 +6139,7 @@ bool Style::drawMenuItemControl(const QStyleOption *option, QPainter *painter, c painter->setFont(menuItemOption->font); // color role - const QPalette::ColorRole role = QPalette::WindowText; + QPalette::ColorRole role = sunken ? QPalette::HighlightedText : QPalette::WindowText; // locate accelerator and render const int tabPosition(text.indexOf(QLatin1Char('\t'))); @@ -6149,7 +6386,7 @@ bool Style::drawScrollBarSliderControl(const QStyleOption *option, QPainter *pai const qreal opacity(_animations->scrollBarEngine().opacity(widget, SC_ScrollBarSlider)); auto color = _helper->scrollBarHandleColor(palette, mouseOver, hasFocus, opacity, mode); if (StyleConfigData::animationsEnabled()) { - color.setAlphaF(color.alphaF() * (0.7 + 0.3 * grooveAnimationOpacity)); + color.setAlphaF(color.alphaF() * (0.7 + Metrics::Blend_Value * grooveAnimationOpacity)); } _helper->renderScrollBarHandle(painter, handleRect, color, palette.color(QPalette::Window)); @@ -6391,7 +6628,7 @@ bool Style::drawFocusFrame(const QStyleOption *option, QPainter *painter, const focusFramePath.addRoundedRect(outerRect, outerRadius, outerRadius); } else if (targetWidget->inherits("QLineEdit") || targetWidget->inherits("QTextEdit") || targetWidget->inherits("QAbstractSpinBox") || targetWidget->inherits("QComboBox") || targetWidget->inherits("QPushButton") || targetWidget->inherits("QToolButton")) { - /* It's OK to check for QAbstractSpinBox instead of more spacific classes + /* It's OK to check for QAbstractSpinBox instead of more specific classes * because QAbstractSpinBox handles the painting for spinboxes, * unlike most abstract widget classes. */ @@ -6523,7 +6760,7 @@ bool Style::drawFocusFrame(const QStyleOption *option, QPainter *painter, const focusFramePath.addRoundedRect(outerRect, outerRadius, outerRadius); } - auto outerColor = _helper->alphaColor(option->palette.highlight().color(), 0.33); + auto outerColor = _helper->alphaColor(option->palette.highlight().color(), Metrics::Blend_Value); painter->setRenderHint(QPainter::Antialiasing); painter->fillPath(focusFramePath, outerColor); @@ -6596,7 +6833,7 @@ bool Style::drawHeaderSectionControl(const QStyleOption *option, QPainter *paint // outline painter->setBrush(Qt::NoBrush); - painter->setPen(_helper->alphaColor(palette.color(QPalette::WindowText), Metrics::Bias_Default)); + painter->setPen(_helper->alphaColor(palette.color(QPalette::WindowText), _helper->frameIntensityBias())); if (isCorner) { if (reverseLayout) { @@ -6617,7 +6854,7 @@ bool Style::drawHeaderSectionControl(const QStyleOption *option, QPainter *paint } // separators - painter->setPen(_helper->alphaColor(palette.color(QPalette::WindowText), Metrics::Bias_Default)); + painter->setPen(_helper->alphaColor(palette.color(QPalette::WindowText), _helper->frameIntensityBias())); // If the separator is next to a "HeaderEmptyArea", skip it and let that draw // the separator instead. This means that those separators are only visible when necessary. @@ -6674,7 +6911,7 @@ bool Style::drawHeaderEmptyAreaControl(const QStyleOption *option, QPainter *pai } // separators - painter->setPen(_helper->alphaColor(palette.color(QPalette::WindowText), 0.2)); + painter->setPen(_helper->alphaColor(palette.color(QPalette::WindowText), _helper->frameIntensityBias())); if (horizontal) { // 26aa20407d in qtbase introduced a 1px empty area in reversed horizontal headers. Ignore it. @@ -6984,7 +7221,7 @@ bool Style::drawTabBarTabShapeControl(const QStyleOption *option, QPainter *pain } // overlap - // for QtQuickControls, ovelap is already accounted of in the option. Unlike in the qwidget case + // for QtQuickControls, overlap is already accounted for in the option. Unlike in the qwidget case const int overlap = isQtQuickControl || isStatic ? 0 : Metrics::TabBar_TabOverlap; // adjust rect and define corners based on tabbar orientation @@ -7347,7 +7584,7 @@ bool Style::drawGroupBoxComplexControl(const QStyleOptionComplex *option, QPaint } // Text for label - QFont font = qApp->font(); + QFont font = widget ? widget->font() : qApp->font("QGroupBox"); if (groupBoxOption->features == QStyleOptionFrame::Flat && !(groupBoxOption->subControls & SC_GroupBoxCheckBox)) { font.setPointSize(font.pointSize() + 1); font.setBold(true); @@ -7618,9 +7855,16 @@ bool Style::drawComboBoxComplexControl(const QStyleOptionComplex *option, QPaint // arrow if (option->subControls & SC_ComboBoxArrow) { - // detect empty comboboxes - const auto comboBox = qobject_cast(widget); - const bool empty(comboBox && !comboBox->count()); + // detect empty comboboxes, different procedure between QWidgets and QQuickItems + bool empty = true; + if (isQtQuickControl(option, widget)) { + bool ok; + const int count = option->styleObject->property("count").toInt(&ok); + empty = !ok || count <= 0; + } else { + const auto comboBox = qobject_cast(widget); + empty = comboBox && !comboBox->count(); + } // arrow color QColor arrowColor; @@ -7967,7 +8211,7 @@ bool Style::drawScrollBarComplexControl(const QStyleOptionComplex *option, QPain separatorRect = alignedRect(option->direction, Qt::AlignLeft, QSize(PenWidth::Frame, option->rect.height()), option->rect); } - _helper->renderScrollBarBorder(painter, separatorRect, _helper->alphaColor(option->palette.color(QPalette::Text), Metrics::Bias_Default)); + _helper->renderScrollBarBorder(painter, separatorRect, _helper->alphaColor(option->palette.color(QPalette::Text), _helper->frameIntensityBias())); // call base class primitive ParentStyleClass::drawComplexControl(CC_ScrollBar, option, painter, widget); @@ -8331,18 +8575,6 @@ QIcon Style::toolBarExtensionIcon(StandardPixmap standardPixmap, const QStyleOpt return icon; } -bool Style::isTabletMode() const -{ - if (qEnvironmentVariableIsSet("BREEZE_IS_TABLET_MODE")) { - return qEnvironmentVariableIntValue("BREEZE_IS_TABLET_MODE"); - } -#if BREEZE_HAVE_QTQUICK - return TabletModeWatcher::self()->isTabletMode(); -#else - return false; -#endif -} - //____________________________________________________________________________________ QIcon Style::titleBarButtonIcon(StandardPixmap standardPixmap, const QStyleOption *option, const QWidget *widget) const { @@ -8446,6 +8678,7 @@ bool Style::isQtQuickControl(const QStyleOption *option, const QWidget *widget) if (!widget && option) { if (const auto item = qobject_cast(option->styleObject)) { _windowManager->registerQuickItem(item); + _animations->registerWidget(item); return true; } } diff --git a/local/recipes/kde/breeze/source/kstyle/breezestyle.h b/local/recipes/kde/breeze/source/kstyle/breezestyle.h index 8d057a0eca..4429f4540c 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezestyle.h +++ b/local/recipes/kde/breeze/source/kstyle/breezestyle.h @@ -170,8 +170,6 @@ private: //* load configuration void loadConfiguration(); - bool isTabletMode() const; - //*@name subelementRect specialized functions //@{ @@ -302,6 +300,7 @@ private: } bool drawPushButtonLabelControl(const QStyleOption *, QPainter *, const QWidget *) const; + bool drawIconButtonControl(const QStyleOption *, QPainter *, const QWidget *) const; bool drawToolButtonLabelControl(const QStyleOption *, QPainter *, const QWidget *) const; bool drawCheckBoxLabelControl(const QStyleOption *, QPainter *, const QWidget *) const; bool drawComboBoxLabelControl(const QStyleOption *, QPainter *, const QWidget *) const; @@ -328,7 +327,7 @@ private: //*@} - //*@name complex ontrols specialized functions + //*@name complex controls specialized functions //@{ bool drawGroupBoxComplexControl(const QStyleOptionComplex *, QPainter *, const QWidget *) const; bool drawToolButtonComplexControl(const QStyleOptionComplex *, QPainter *, const QWidget *) const; @@ -456,7 +455,7 @@ private: This is needed to implement custom number of buttons in scrollbars, as well as proper mouse-hover */ - inline bool preceeds(const QPoint &, const QRect &, const QStyleOption *) const; + inline bool precedes(const QPoint &, const QRect &, const QStyleOption *) const; //* return which arrow button is hit by point for scrollbar double buttons inline QStyle::SubControl scrollBarHitTest(const QRect &, const QPoint &, const QStyleOption *) const; @@ -528,11 +527,14 @@ private: //! styled painting for KCapacityBar QStyle::ControlElement CE_CapacityBar; + //! styled painting for KIconButton + QStyle::ControlElement CE_IconButton; + //@} }; //_________________________________________________________________________ -bool Style::preceeds(const QPoint &point, const QRect &bound, const QStyleOption *option) const +bool Style::precedes(const QPoint &point, const QRect &bound, const QStyleOption *option) const { if (option->state & QStyle::State_Horizontal) { if (option->direction == Qt::LeftToRight) { diff --git a/local/recipes/kde/breeze/source/kstyle/breezetileset.h b/local/recipes/kde/breeze/source/kstyle/breezetileset.h index a3308873c5..98901784cc 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezetileset.h +++ b/local/recipes/kde/breeze/source/kstyle/breezetileset.h @@ -97,7 +97,7 @@ protected: void initPixmap(PixmapList &, const QPixmap &, int w, int h, const QRect &); private: - //* pixmap arry + //* pixmap array PixmapList _pixmaps; // dimensions diff --git a/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.cpp b/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.cpp index 825719b21d..0e598a4e8f 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.cpp +++ b/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.cpp @@ -11,18 +11,36 @@ #include +#ifdef Q_OS_WIN +#include "windows.h" +#endif + const char *colorProperty = "KDE_COLOR_SCHEME_PATH"; +#ifdef Q_OS_WIN +static bool isHighContrastModeActive() +{ + HIGHCONTRAST result; + result.cbSize = sizeof(HIGHCONTRAST); + if (SystemParametersInfo(SPI_GETHIGHCONTRAST, result.cbSize, &result, 0)) { + return (result.dwFlags & HCF_HIGHCONTRASTON); + } + return false; +} +#endif + namespace Breeze { ToolsAreaManager::ToolsAreaManager() : QObject() { +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) QString path; if (qApp && qApp->property(colorProperty).isValid()) { path = qApp->property(colorProperty).toString(); } recreateConfigWatcher(path); +#endif configUpdated(); } @@ -30,11 +48,16 @@ ToolsAreaManager::~ToolsAreaManager() { } -void ToolsAreaManager::recreateConfigWatcher(const QString &path) +void ToolsAreaManager::loadSchemeConfig(const QString &path) { const auto openFlags = path.isEmpty() ? KConfig::OpenFlag::FullConfig : KConfig::OpenFlag::NoGlobals; _config = KSharedConfig::openConfig(path, openFlags); +} +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) +void ToolsAreaManager::recreateConfigWatcher(const QString &path) +{ + loadSchemeConfig(path); if (!path.startsWith(QLatin1Char('/'))) { _watcher = KConfigWatcher::create(_config); connect(_watcher.data(), &KConfigWatcher::configChanged, this, &ToolsAreaManager::configUpdated); @@ -42,6 +65,7 @@ void ToolsAreaManager::recreateConfigWatcher(const QString &path) _watcher.reset(); } } +#endif void ToolsAreaManager::appendIfNotAlreadyExists(const QMainWindow *window, const QPointer &toolBar) { @@ -81,10 +105,12 @@ void ToolsAreaManager::registerApplication(QApplication *application) { _listener = new AppListener(this); _listener->manager = this; +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) if (application->property(colorProperty).isValid()) { auto path = application->property(colorProperty).toString(); recreateConfigWatcher(path); } +#endif application->installEventFilter(_listener); configUpdated(); } @@ -119,6 +145,7 @@ bool ToolsAreaManager::tryRegisterToolBar(QPointer window, QP } if (window->toolBarArea(toolbar) == Qt::TopToolBarArea) { + widget->setProperty("breeze_has_toolsarea_palette", true); widget->setPalette(palette()); appendIfNotAlreadyExists(window, toolbar); return true; @@ -137,6 +164,7 @@ void ToolsAreaManager::tryUnregisterToolBar(QPointer window, } if (window->toolBarArea(toolbar) != Qt::TopToolBarArea) { + widget->setProperty("breeze_has_toolsarea_palette", true); widget->setPalette(window->palette()); removeWindowToolBar(window, toolbar); } @@ -144,11 +172,41 @@ void ToolsAreaManager::tryUnregisterToolBar(QPointer window, void ToolsAreaManager::configUpdated() { +#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) + if (qApp->property(colorProperty).isValid()) { + const auto colorSchemePath = qApp->property(colorProperty).toString(); +#ifdef Q_OS_WIN + // If no color scheme is set and high-contrast is active then use the system colors + if (colorSchemePath.isEmpty() && isHighContrastModeActive()) { + _config.reset(); + } else +#endif + { + if (!_config || _config->name() != colorSchemePath) { + loadSchemeConfig(colorSchemePath); + } + } + } else { +#ifdef Q_OS_WIN + // If high-contrast is active then use the system colors + if (isHighContrastModeActive()) { + _config.reset(); + } else +#endif + { + loadSchemeConfig(QString{}); + } + } +#endif auto active = KColorScheme(QPalette::Active, KColorScheme::Header, _config); auto inactive = KColorScheme(QPalette::Inactive, KColorScheme::Header, _config); auto disabled = KColorScheme(QPalette::Disabled, KColorScheme::Header, _config); +#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) + _palette = qApp->palette(); +#else _palette = KColorScheme::createApplicationPalette(_config); +#endif _palette.setBrush(QPalette::Active, QPalette::Window, active.background()); _palette.setBrush(QPalette::Active, QPalette::WindowText, active.foreground()); @@ -160,16 +218,18 @@ void ToolsAreaManager::configUpdated() for (const WindowToolBars &windowToolBars : _windows) { for (const auto &toolbar : windowToolBars.toolBars) { if (!toolbar.isNull()) { + toolbar->setProperty("breeze_has_toolsarea_palette", true); toolbar->setPalette(_palette); } } if (QMenuBar *menuBar = windowToolBars.window->menuBar()) { + menuBar->setProperty("breeze_has_toolsarea_palette", true); menuBar->setPalette(_palette); } } - _colorSchemeHasHeaderColor = KColorScheme::isColorSetSupported(_config, KColorScheme::Header); + _colorSchemeHasHeaderColor = _config ? KColorScheme::isColorSetSupported(_config, KColorScheme::Header) : false; } bool AppListener::eventFilter(QObject *watched, QEvent *event) @@ -181,10 +241,12 @@ bool AppListener::eventFilter(QObject *watched, QEvent *event) return false; } +#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) + if (event->type() == QEvent::ApplicationPaletteChange) { + manager->configUpdated(); + } +#else if (event->type() == QEvent::DynamicPropertyChange) { - if (watched != qApp) { - return false; - } auto ev = static_cast(event); if (ev->propertyName() == colorProperty) { QString path; @@ -195,6 +257,7 @@ bool AppListener::eventFilter(QObject *watched, QEvent *event) manager->configUpdated(); } } +#endif return false; } @@ -222,6 +285,7 @@ bool ToolsAreaManager::eventFilter(QObject *watched, QEvent *event) if (event->type() == QEvent::ChildAdded) { QChildEvent *childEvent = static_cast(event); if (QMenuBar *menuBar = qobject_cast(childEvent->child())) { + menuBar->setProperty("breeze_has_toolsarea_palette", true); menuBar->setPalette(_palette); } } @@ -264,6 +328,7 @@ void ToolsAreaManager::registerWidget(QWidget *widget) } if (QMenuBar *menuBar = mainWindow->menuBar()) { + menuBar->setProperty("breeze_has_toolsarea_palette", true); menuBar->setPalette(_palette); } @@ -293,6 +358,11 @@ void ToolsAreaManager::registerWidget(QWidget *widget) void ToolsAreaManager::unregisterWidget(QWidget *widget) { Q_ASSERT(widget); + + if (widget->property("breeze_has_toolsarea_palette").toBool()) { + widget->setPalette({}); + } + auto ptr = QPointer(widget); if (QPointer window = qobject_cast(ptr)) { diff --git a/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.h b/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.h index e4f7ed4a5f..2b5f68ebe1 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.h +++ b/local/recipes/kde/breeze/source/kstyle/breezetoolsareamanager.h @@ -37,12 +37,17 @@ private: }; std::vector _windows; KSharedConfigPtr _config; +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) KConfigWatcher::Ptr _watcher; +#endif QPalette _palette = QPalette(); AppListener *_listener; bool _colorSchemeHasHeaderColor; + void loadSchemeConfig(const QString &path); +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) void recreateConfigWatcher(const QString &path); +#endif void appendIfNotAlreadyExists(const QMainWindow *window, const QPointer &toolBar); void removeWindowToolBar(const QMainWindow *window, const QPointer &toolBar); void removeWindow(const QMainWindow *window); diff --git a/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.cpp b/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.cpp index 8b90688329..283e1f0d0a 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.cpp +++ b/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.cpp @@ -150,9 +150,9 @@ void WindowManager::initialize() //_____________________________________________________________ void WindowManager::registerWidget(QWidget *widget) { - if (isBlackListed(widget) || isDragable(widget) || widget->inherits("QQuickWidget")) { + if (isBlackListed(widget) || isDraggable(widget) || widget->inherits("QQuickWidget")) { /* - install filter for dragable widgets. + install filter for draggable widgets. also install filter for blacklisted widgets to be able to catch the relevant events and prevent the drag to happen @@ -171,10 +171,11 @@ void WindowManager::registerQuickItem(QQuickItem *item) } if (auto window = item->window()) { - auto contentItem = window->contentItem(); - contentItem->setAcceptedMouseButtons(Qt::LeftButton); - contentItem->removeEventFilter(this); - contentItem->installEventFilter(this); + if (auto contentItem = window->contentItem()) { + contentItem->setAcceptedMouseButtons(Qt::LeftButton); + contentItem->removeEventFilter(this); + contentItem->installEventFilter(this); + } } } #endif @@ -291,7 +292,7 @@ bool WindowManager::mousePressEvent(QObject *object, QEvent *event) } // If we are in a QQuickWidget we don't want to ever do dragging from a qwidget in the - // hyerarchy, but only from an internal item, if any. If any event handler will manage + // hierarchy, but only from an internal item, if any. If any event handler will manage // the event, we don't want the drag to start if (object->inherits("QQuickWidget")) { _eventInQQuickWidget = true; @@ -441,7 +442,7 @@ bool WindowManager::mouseReleaseEvent(QObject *object, QEvent *event) } //_____________________________________________________________ -bool WindowManager::isDragable(QWidget *widget) +bool WindowManager::isDraggable(QWidget *widget) { // check widget if (!widget) { @@ -569,7 +570,7 @@ bool WindowManager::canDrag(QWidget *widget) return false; } - // assume isDragable widget is already passed + // assume isDraggable widget is already passed // check some special cases where drag should not be effective // check mouse grabber diff --git a/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.h b/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.h index 1623ae86b6..5cd8dee539 100644 --- a/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.h +++ b/local/recipes/kde/breeze/source/kstyle/breezewindowmanager.h @@ -122,13 +122,13 @@ protected: //@} - //* returns true if widget is dragable - bool isDragable(QWidget *); + //* returns true if widget is draggable + bool isDraggable(QWidget *); - //* returns true if widget is dragable + //* returns true if widget is draggable bool isBlackListed(QWidget *); - //* returns true if widget is dragable + //* returns true if widget is draggable bool isWhiteListed(QWidget *) const; //* returns true if drag can be started from current widget diff --git a/local/recipes/kde/breeze/source/kstyle/config/CMakeLists.txt b/local/recipes/kde/breeze/source/kstyle/config/CMakeLists.txt index d43aa1b629..8d1065f93a 100644 --- a/local/recipes/kde/breeze/source/kstyle/config/CMakeLists.txt +++ b/local/recipes/kde/breeze/source/kstyle/config/CMakeLists.txt @@ -56,3 +56,13 @@ install(TARGETS breeze-settings ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) ecm_install_icons(ICONS sc-apps-breeze-settings.svgz DESTINATION ${KDE_INSTALL_ICONDIR} THEME hicolor ) + +# kcmshell6 < 6.27.0 doesn't know the --smoke-test param, so skip this test for +# now. +# TODO: Drop this when KF6_MIN_VERSION >= 6.27.0 +if(KF6KCMUtils_VERSION VERSION_GREATER_EQUAL "6.27.0") + add_test(NAME breezestyleconfig_smoketest COMMAND kcmshell6 -style Breeze --smoke-test kstyle_config/breezestyleconfig) + set_tests_properties(breezestyleconfig_smoketest PROPERTIES + ENVIRONMENT_MODIFICATION QT_PLUGIN_PATH=path_list_prepend:${CMAKE_BINARY_DIR}/bin + ) +endif() diff --git a/local/recipes/kde/breeze/source/kstyle/config/breezestyleconfig.json b/local/recipes/kde/breeze/source/kstyle/config/breezestyleconfig.json index e1bc5ccfc7..5f363744cf 100644 --- a/local/recipes/kde/breeze/source/kstyle/config/breezestyleconfig.json +++ b/local/recipes/kde/breeze/source/kstyle/config/breezestyleconfig.json @@ -11,7 +11,7 @@ "Description[en_GB]": "Modify the appearance of widgets", "Description[eo]": "Modifi la aspekton de fenestraĵoj", "Description[es]": "Modificar el aspecto de los widgets", - "Description[eu]": "Trepeten itxura aldatzea", + "Description[eu]": "Trepeten itxura aldatu", "Description[fi]": "Muuta käyttöliittymäalkioiden ulkoasua", "Description[fr]": "Modifier l'apparence des composants graphiques", "Description[gl]": "Modifica a aparencia dos trebellos.", @@ -29,17 +29,17 @@ "Description[nn]": "Endra utsjånaden på skjermkontrollar", "Description[pa]": "ਟੈਬ ਵਿਦਜੈੱਟ ਦੀ ਦਿੱਖ ਬਦਲੋ", "Description[pl]": "Zmień wygląd interfejsu", - "Description[pt]": "Modificar a aparência dos elementos gráficos", + "Description[pt]": "Modificar o aspeto visual das 'widgets'", "Description[pt_BR]": "Modifica a aparência dos widgets", "Description[ro]": "Modifică aspectul controalelor grafice", "Description[ru]": "Настройка элементов интерфейса", "Description[sa]": "विजेट् इत्यस्य स्वरूपं परिवर्तयन्तु", "Description[sk]": "Zmena vzhľadu miniaplikácií", "Description[sl]": "Spremeni videz gradnikov", + "Description[sq]": "Ndrysho pamjen e elementeve të ndërveprimit", "Description[sv]": "Ändra utseende hos grafiska komponenter", "Description[tr]": "Araç takımlarının görünüşünü değiştirin", "Description[uk]": "Внесення змін до вигляду віджетів", - "Description[x-test]": "xxModify the appearance of widgetsxx", "Description[zh_CN]": "调整窗口部件外观", "Description[zh_TW]": "修改元件的外觀", "Icon": "preferences-desktop-theme", @@ -49,12 +49,12 @@ "Name[ca@valencia]": "Estil dels ginys Brisa", "Name[ca]": "Estil dels ginys Brisa", "Name[cs]": "Styl widgetů Breeze", - "Name[de]": "Breeze-Stil der BedienelementeBreeze-Stil der Bedienelemente", + "Name[de]": "Breeze-Stil der Bedienelemente", "Name[el]": "Breeze στιλ γραφικού συστατικού", "Name[en_GB]": "Breeze Widget Style", "Name[eo]": "Breeze-fenestraĵostilo", "Name[es]": "Estilo de widgets Brisa", - "Name[eu]": "Breeze trepeten estiloa", + "Name[eu]": "Brisa trepeta-estiloa", "Name[fi]": "Breeze-käyttöliittymäalkiotyyli", "Name[fr]": "Style des composants graphiques de Breeze", "Name[gl]": "Estilo do trebello de Brisa", @@ -72,7 +72,7 @@ "Name[nn]": "Breeze-elementstil", "Name[pa]": "ਬਰੀਜ਼ ਵਿਜੈਟ ਸਟਾਈਲ", "Name[pl]": "Wygląd interfejsu Bryzy", - "Name[pt]": "Estilo Gráfico Brisa", + "Name[pt]": "Estilo de Widget Brisa", "Name[pt_BR]": "Estilo dos widgets Breeze", "Name[ro]": "Stilul controalelor Briză", "Name[ru]": "Стиль интерфейса Breeze", @@ -82,7 +82,6 @@ "Name[sv]": "Breeze stil för grafiska komponenter", "Name[tr]": "Esinti Araç Takımı Biçemi", "Name[uk]": "Стиль віджетів Breeze", - "Name[x-test]": "xxBreeze Widget Stylexx", "Name[zh_CN]": "Breeze 微风窗口部件风格", "Name[zh_TW]": "Breeze 元件樣式", "ServiceTypes": [ @@ -95,9 +94,11 @@ "X-KDE-Keywords[ca@valencia]": "brisa,giny,estil", "X-KDE-Keywords[ca]": "brisa,giny,estil", "X-KDE-Keywords[cs]": "breeze,widget,styl", + "X-KDE-Keywords[de]": "Breeze,Bedienelemente,Stil", + "X-KDE-Keywords[el]": "breeze, γραφικό στοιχείο, στυλ", "X-KDE-Keywords[en_GB]": "breeze,widget,style", "X-KDE-Keywords[eo]": "breeze,fenestraĵo,stilo", - "X-KDE-Keywords[es]": "brisa,widget,estilo", + "X-KDE-Keywords[es]": "brisa,widget,elemento gráfico,estilo", "X-KDE-Keywords[eu]": "breeze,brisa,trepeta,estiloa", "X-KDE-Keywords[fi]": "breeze,käyttöliittymä,alkio,elementti,tyyli", "X-KDE-Keywords[fr]": "breeze, composant graphique, style", @@ -105,7 +106,7 @@ "X-KDE-Keywords[he]": "בריזה,וידג׳ט,סגנון", "X-KDE-Keywords[hu]": "breeze,elem,stílus", "X-KDE-Keywords[ia]": "breeze,widget,style", - "X-KDE-Keywords[is]": "breeze,viðmótshluti,stíll", + "X-KDE-Keywords[is]": "breeze,græja,stílsnið", "X-KDE-Keywords[it]": "brezza,oggetto,stile", "X-KDE-Keywords[ka]": "breeze,widget,style,ვიჯეტი,სტილი", "X-KDE-Keywords[ko]": "위젯,스타일", @@ -114,14 +115,17 @@ "X-KDE-Keywords[nl]": "breeze,widget,stijl", "X-KDE-Keywords[nn]": "breeze,skjermelement,skjermkontrollar,stil,utsjånad", "X-KDE-Keywords[pl]": "breeze,widget,styl,bryza,element interfejsu", + "X-KDE-Keywords[pt]": "brisa,widget,estilo", "X-KDE-Keywords[pt_BR]": "breeze,widget,estilo", + "X-KDE-Keywords[ro]": "briză,control,controale,stil", "X-KDE-Keywords[ru]": "breeze,widget,style,виджет,стиль", "X-KDE-Keywords[sa]": "हवा,विजेट,शैली", + "X-KDE-Keywords[sk]": "bríza,widget,štýl", "X-KDE-Keywords[sl]": "sapica,gradnik,slog", + "X-KDE-Keywords[sq]": "breeze,widget,style", "X-KDE-Keywords[sv]": "breeze,grafisk komponent,stil", "X-KDE-Keywords[tr]": "esinti,breeze,araç takımı,biçem,stil", "X-KDE-Keywords[uk]": "breeze,widget,style,бриз,віджет,стиль,вигляд", - "X-KDE-Keywords[x-test]": "xxbreezexx,xxwidgetxx,xxstylexx", "X-KDE-Keywords[zh_CN]": "breeze,weifeng,chuangkoubujian,yangshi,fengge,shijuefengge,微风,窗口部件,样式,风格,视觉风格", "X-KDE-Keywords[zh_TW]": "breeze,元件,風格,樣式", "X-KDE-ParentApp": "kcontrol", diff --git a/local/recipes/kde/breeze/source/po/ar/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ar/breeze_kwin_deco.po index 19ae3fb410..a7ddcd31b2 100644 --- a/local/recipes/kde/breeze/source/po/ar/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ar/breeze_kwin_deco.po @@ -1,16 +1,16 @@ # oxygen_kwin_deco.po # Copyright (C) 2014 This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. +# Safa Alfulaij , 2015, 2016. +# SPDX-FileCopyrightText: 2021, 2022, 2023, 2025 Zayed Al-Saidi # # Abd_Allatif, 2014. -# Safa Alfulaij , 2015, 2016. -# Zayed Al-Saidi , 2021, 2022, 2023. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-16 11:40+0400\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-30 10:07+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -18,7 +18,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Lokalize 23.08.5\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -91,7 +92,7 @@ msgid "General" msgstr "عامّ" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "محاذاة الع&نوان:" @@ -121,21 +122,20 @@ msgid "Right" msgstr "اليمين" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "حجم الزّ&رّ:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "ضئيل" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +143,8 @@ msgstr "صغير" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +152,8 @@ msgstr "متوسط" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +161,27 @@ msgstr "كبير" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "كبير جدًّا" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "ارسم دائرة حول زرّ الإغلاق" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "ارسم حدود للنّوافذ المكبّرة والمرتبة" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -192,93 +192,63 @@ msgstr "" "ستغير أشرطة التمرير وأزرار إغلاق النوافذ مواضعها ولن تلمس حواف الشاشة." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "ارسم تدرّج خلفيّة لشريط العنوان" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "زوايا سفلية مستديرة للنوافذ بلا حدود" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "الظلال والحدود" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "حجم الظل:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" -msgstr "بلا" +msgstr "لا شيء" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "القوة الظل:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "لون الظل:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "شدة الحدود:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "معطلة" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "منخفضة" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "متوسطة" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "عالية" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "القصوى" +msgid "Draw window outline" +msgstr "ارسم حدود النافذة" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "تجاوزات خاصّة بالنّافذة" @@ -418,15 +388,39 @@ msgstr "أضف" msgid "Edit" msgstr "حرّر" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "شدة الحدود:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "معطلة" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "منخفضة" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "متوسطة" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "عالية" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "القصوى" + +#~ msgid "Round bottom corners" +#~ msgstr "حواف سفلية مستديرة" + #~ msgid "Si&ze:" #~ msgstr "الح&جم:" #~ msgid "Color:" #~ msgstr "اللون:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "أضف مقبضًا لتغيير حجم النّافذة الّتي لا حدود لها" - #~ msgid "Information about Selected Window" #~ msgstr "معلومات عن النّافذة المحدّدة" diff --git a/local/recipes/kde/breeze/source/po/ar/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ar/breeze_style_config.po index 94a1f52277..f8cc16d1e9 100644 --- a/local/recipes/kde/breeze/source/po/ar/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ar/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-05 09:57+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Lokalize 23.08.5\n" #: main.cpp:25 main.cpp:29 diff --git a/local/recipes/kde/breeze/source/po/ast/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ast/breeze_kwin_deco.po index b0fe7d2125..e5f8bd497c 100644 --- a/local/recipes/kde/breeze/source/po/ast/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ast/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-11-11 01:00+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" @@ -88,7 +88,7 @@ msgid "General" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "" @@ -118,21 +118,20 @@ msgid "Right" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -187,93 +186,63 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" +msgid "Draw window outline" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "" diff --git a/local/recipes/kde/breeze/source/po/ast/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ast/breeze_style_config.po index f96f3a3f2c..ec5b23e8dd 100644 --- a/local/recipes/kde/breeze/source/po/ast/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ast/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-11-11 01:00+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" diff --git a/local/recipes/kde/breeze/source/po/az/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/az/breeze_kwin_deco.po index a736771b1a..82a7e47773 100644 --- a/local/recipes/kde/breeze/source/po/az/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/az/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2020-07-14 22:00+0400\n" "Last-Translator: Xəyyam Qocayev \n" "Language-Team: Azerbaijani \n" @@ -88,7 +88,7 @@ msgid "General" msgstr "Əsas" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Baş&lığın düzləndirilməsi:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Sağ" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Düy&mələrin ölçüsü:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "İncə" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Kiçik" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Orta" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "Geniş" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Çox geniş" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "\"Bağlamaq\" düyməsi ətrafında çərçivə göstərmək" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -187,33 +186,40 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Başlığın fon rəng keçidini (qradient, genəltmə) çəkin" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Çərçivəsiz pəncərənin ölçüsünü dəyişmək üçün künc əlavə edin" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Kölgələr" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Heç biri" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -222,64 +228,27 @@ msgid "Shadow strength:" msgstr "Qe&yri-şəffaflıq:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Kölgələr" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Orta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Pəncərə başlığına görə" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Ayrı-ayrı pəncərələrin qeyri-şəffaflığı" @@ -420,15 +389,19 @@ msgstr "Əlavə etmək" msgid "Edit" msgstr "Düzəliş etmək" +#, fuzzy +#~| msgctxt "@item:inlistbox Button size:" +#~| msgid "Medium" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Orta" + #~ msgid "Si&ze:" #~ msgstr "Ölçü&sü:" #~ msgid "Color:" #~ msgstr "Rəng:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Çərçivəsiz pəncərənin ölçüsünü dəyişmək üçün künc əlavə edin" - #~ msgid "Information about Selected Window" #~ msgstr "Seçilmiş pəncərə haqqında məlumat" @@ -444,9 +417,6 @@ msgstr "Düzəliş etmək" #~ msgid "Use window class (whole application)" #~ msgstr "Pəncərə siniflərinə görə (bütün tətbiqlər)" -#~ msgid "Use window title" -#~ msgstr "Pəncərə başlığına görə" - #~ msgid "Allow resizing maximized windows from window edges" #~ msgstr "Tam ekran boyu açılan pəncərənin ölçüsünü dəyidirməyə icazə vermək" diff --git a/local/recipes/kde/breeze/source/po/az/breeze_style_config.po b/local/recipes/kde/breeze/source/po/az/breeze_style_config.po index d7e9bcfdda..7e24d9eab9 100644 --- a/local/recipes/kde/breeze/source/po/az/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/az/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-02-13 13:58+0400\n" "Last-Translator: Kheyyam Gojayev \n" "Language-Team: Azerbaijani \n" diff --git a/local/recipes/kde/breeze/source/po/bg/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/bg/breeze_kwin_deco.po index 47648796dd..9fc0ccb1fa 100644 --- a/local/recipes/kde/breeze/source/po/bg/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/bg/breeze_kwin_deco.po @@ -1,20 +1,20 @@ # Copyright (C) 2024 This file is copyright: # This file is distributed under the same license as the breeze package. # -# SPDX-FileCopyrightText: 2022, 2023, 2024 Mincho Kondarev +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025 Mincho Kondarev msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2024-11-10 15:18+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-07 22:54+0100\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 25.07.70\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: config/breezeexceptionlistwidget.cpp:88 @@ -88,7 +88,7 @@ msgid "General" msgstr "Общи" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Подравняване на за&главие:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Вдясно" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Размер на бутона:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Миниатюрен" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Малък" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Среден" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "Голям" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Много голям" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Показване на окръжност около бутона за затваряне" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Показване на рамки на максимизирани и подредени прозорци" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +189,63 @@ msgstr "" "на прозореца ще променят позициите си и няма да докосват краищата на екрана." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Показване на градиент на фона на заглавната лента" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Заоблени долни ъгли на прозорците без рамки" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Сенки и очертания" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Размер на сянка:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Без" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Плътност на сянка:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Цвят на сенки:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Интензитет на очертание:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Изкл." - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Ниска" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Средна" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Висока" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Максимална" +msgid "Draw window outline" +msgstr "Показване на контура на прозореца" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Настройки, специфични за прозореца" diff --git a/local/recipes/kde/breeze/source/po/bg/breeze_style_config.po b/local/recipes/kde/breeze/source/po/bg/breeze_style_config.po index 3cc62c2457..3aa3e6b0a3 100644 --- a/local/recipes/kde/breeze/source/po/bg/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/bg/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-19 19:49+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" diff --git a/local/recipes/kde/breeze/source/po/bs/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/bs/breeze_kwin_deco.po index 3bf7eb2731..cbd4d39ab2 100644 --- a/local/recipes/kde/breeze/source/po/bs/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/bs/breeze_kwin_deco.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2015-02-24 20:36+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian\n" @@ -94,7 +94,7 @@ msgid "General" msgstr "Općenito" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Poravnanje naslova:" @@ -124,13 +124,13 @@ msgid "Right" msgstr "Desno" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "V&eličina dugmeta:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, fuzzy, kde-format #| msgctxt "@item:inlistbox Border size:" #| msgid "Tiny" @@ -139,8 +139,7 @@ msgstr "sićušne" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -148,8 +147,8 @@ msgstr "Mala" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -157,8 +156,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -166,28 +165,28 @@ msgstr "Velika" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "vrlo velike" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, fuzzy, kde-format #| msgid "Display window borders for maximized windows" msgid "Draw border on maximized and tiled windows" msgstr "Prikaži ivice prozora za maksimizirane prozore" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -196,93 +195,65 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Dodaj dršku za raširivanje prozora bez ivica" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Po naslovu prozora" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Potiskivanja posebna po prozoru" @@ -423,9 +394,6 @@ msgstr "Dodaj" msgid "Edit" msgstr "Izmijeni" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Dodaj dršku za raširivanje prozora bez ivica" - #~ msgid "Information about Selected Window" #~ msgstr "Podaci o izabranom prozoru" @@ -441,9 +409,6 @@ msgstr "Izmijeni" #~ msgid "Use window class (whole application)" #~ msgstr "Po klasi prozora (cio program)" -#~ msgid "Use window title" -#~ msgstr "Po naslovu prozora" - #~ msgid "Animations" #~ msgstr "Animacije" diff --git a/local/recipes/kde/breeze/source/po/bs/breeze_style_config.po b/local/recipes/kde/breeze/source/po/bs/breeze_style_config.po index 8b9693931e..65c5f222dc 100644 --- a/local/recipes/kde/breeze/source/po/bs/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/bs/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bosnianuniversetranslation\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2015-02-05 00:36+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" diff --git a/local/recipes/kde/breeze/source/po/ca/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ca/breeze_kwin_deco.po index 6cae865d87..9c0ed8db40 100644 --- a/local/recipes/kde/breeze/source/po/ca/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ca/breeze_kwin_deco.po @@ -1,17 +1,17 @@ # Translation of breeze_kwin_deco.po to Catalan -# Copyright (C) 2014-2023 This_file_is_part_of_KDE +# Copyright (C) 2014-2025 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Josep M. Ferrer , 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023. -# Antoni Bella Pérez , 2015, 2018, 2020, 2022. -# Empar Montoro Martín , 2019. +# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023, 2025 Josep M. Ferrer +# SPDX-FileCopyrightText: 2015, 2018, 2020, 2022 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 12:43+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 10:25+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -20,7 +20,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -"X-Generator: Lokalize 20.12.0\n" +"X-Generator: Lokalize 25.04.0\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -93,7 +93,7 @@ msgid "General" msgstr "General" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "A&lineació del títol:" @@ -123,21 +123,20 @@ msgid "Right" msgstr "Dreta" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Mida dels b&otons:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minúscul" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -145,8 +144,8 @@ msgstr "Petit" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -154,8 +153,8 @@ msgstr "Mitjà" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -163,28 +162,28 @@ msgstr "Gran" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Molt gran" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Dibuixa un cercle al voltant del botó de tancament" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" "Dibuixa les vores de les finestres en les finestres maximitzades i en mosaic" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -197,93 +196,63 @@ msgstr "" "la pantalla." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Dibuixa el degradat del fons de la barra de títol" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Cantonades inferiors arrodonides de les finestres sense vores" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Ombres i contorn" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Mida de l'ombra:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Sense" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Intensitat de l'ombra:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Color de l'ombra:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensitat del contorn:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Inactiva" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Baixa" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Mitjana" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Màxima" +msgid "Draw window outline" +msgstr "Dibuixa el contorn de les finestres" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Substitucions específiques de la finestra" @@ -422,3 +391,30 @@ msgstr "Afegeix" #, kde-format msgid "Edit" msgstr "Edita" + +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensitat del contorn:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Inactiva" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Baixa" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Mitjana" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Alta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Màxima" + +#~ msgid "Round bottom corners" +#~ msgstr "Cantonades inferiors arrodonides" diff --git a/local/recipes/kde/breeze/source/po/ca/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ca/breeze_style_config.po index 60c9f22bc2..62f9da20ff 100644 --- a/local/recipes/kde/breeze/source/po/ca/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ca/breeze_style_config.po @@ -3,14 +3,14 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Antoni Bella Pérez , 2014, 2015, 2017, 2020, 2022. +# SPDX-FileCopyrightText: 2014, 2015, 2017, 2020, 2022 Antoni Bella Pérez # SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2021, 2022, 2024 Josep M. Ferrer -# Alfredo Vicente , 2019. +# SPDX-FileCopyrightText: 2019 Alfredo Vicente msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 09:38+0200\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" diff --git a/local/recipes/kde/breeze/source/po/ca@valencia/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ca@valencia/breeze_kwin_deco.po index ac57f87ff4..659c9190f6 100644 --- a/local/recipes/kde/breeze/source/po/ca@valencia/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ca@valencia/breeze_kwin_deco.po @@ -1,17 +1,17 @@ # Translation of breeze_kwin_deco.po to Catalan (Valencian) -# Copyright (C) 2014-2023 This_file_is_part_of_KDE +# Copyright (C) 2014-2025 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Josep M. Ferrer , 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023. -# Antoni Bella Pérez , 2015, 2018, 2020, 2022. -# Empar Montoro Martín , 2019. +# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023, 2025 Josep M. Ferrer +# SPDX-FileCopyrightText: 2015, 2018, 2020, 2022 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 12:43+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 10:25+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" @@ -20,22 +20,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -"X-Generator: Lokalize 20.12.0\n" +"X-Generator: Lokalize 25.04.0\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format msgid "New Exception - Breeze Settings" -msgstr "Excepció nova - Configuració de Brisa" +msgstr "Excepció nova – Configuració de Brisa" #: config/breezeexceptionlistwidget.cpp:136 #, kde-format msgid "Edit Exception - Breeze Settings" -msgstr "Edita l'excepció - Configuració de Brisa" +msgstr "Edita l'excepció – Configuració de Brisa" #: config/breezeexceptionlistwidget.cpp:167 #, kde-format msgid "Question - Breeze Settings" -msgstr "Pregunta - Configuració de Brisa" +msgstr "Pregunta – Configuració de Brisa" #: config/breezeexceptionlistwidget.cpp:168 #, kde-format @@ -52,7 +52,7 @@ msgstr "Elimina" #: config/breezeexceptionlistwidget.cpp:300 #, kde-format msgid "Warning - Breeze Settings" -msgstr "Avís - Configuració de Brisa" +msgstr "Avís – Configuració de Brisa" #: config/breezeexceptionlistwidget.cpp:300 #, kde-format @@ -93,7 +93,7 @@ msgid "General" msgstr "General" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "A&lineació del títol:" @@ -123,21 +123,20 @@ msgid "Right" msgstr "Dreta" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Mida dels b&otons:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minúscul" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -145,8 +144,8 @@ msgstr "Xicotet" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -154,8 +153,8 @@ msgstr "Mitjà" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -163,28 +162,28 @@ msgstr "Gran" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Molt gran" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Dibuixa un cercle al voltant del botó de tancament" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" "Dibuixa les vores de les finestres en les finestres maximitzades i en mosaic" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -197,93 +196,63 @@ msgstr "" "la pantalla." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Dibuixa el degradat del fons de la barra de títol" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Cantons inferiors arredonits de les finestres sense vores" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Ombres i contorn" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Mida de l'ombra:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Sense" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Intensitat de l'ombra:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Color de l'ombra:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensitat del contorn:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Inactiva" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Baixa" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Mitjana" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Màxima" +msgid "Draw window outline" +msgstr "Dibuixa el contorn de les finestres" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Substitucions específiques de la finestra" diff --git a/local/recipes/kde/breeze/source/po/ca@valencia/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ca@valencia/breeze_style_config.po index d03d42da8a..ba7fe4ae40 100644 --- a/local/recipes/kde/breeze/source/po/ca@valencia/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ca@valencia/breeze_style_config.po @@ -3,14 +3,14 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Antoni Bella Pérez , 2014, 2015, 2017, 2020, 2022. +# SPDX-FileCopyrightText: 2014, 2015, 2017, 2020, 2022 Antoni Bella Pérez # SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2021, 2022, 2024 Josep M. Ferrer -# Alfredo Vicente , 2019. +# SPDX-FileCopyrightText: 2019 Alfredo Vicente msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 09:38+0200\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" @@ -61,7 +61,7 @@ msgstr "Oculta sempre" #: ui/breezestyleconfig.ui:90 #, kde-format msgid "Show when Alt key is pressed" -msgstr "Mostra quan es prema la tecla Alt" +msgstr "Mostra quan es prema la tecla «Alt»" #. i18n: ectx: property (text), item, widget (QComboBox, _mnemonicsMode) #: ui/breezestyleconfig.ui:95 diff --git a/local/recipes/kde/breeze/source/po/cs/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/cs/breeze_kwin_deco.po index a7e42bbbff..921076d36d 100644 --- a/local/recipes/kde/breeze/source/po/cs/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/cs/breeze_kwin_deco.po @@ -1,22 +1,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Lukáš Tinkl , 2010, 2011, 2012, 2013. -# Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018, 2019, 2020, 2023. +# SPDX-FileCopyrightText: 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018, 2019, 2020, 2023, 2025 Vít Pelčák +# SPDX-FileCopyrightText: 2026 Libor Filípek # msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-06 16:59+0100\n" -"Last-Translator: Vit Pelcak \n" -"Language-Team: Czech \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-04-12 22:06+0200\n" +"Last-Translator: Libor Filípek \n" +"Language-Team: \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.12.3\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -89,7 +90,7 @@ msgid "General" msgstr "Obecné" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Zarovnání titu&lku:" @@ -119,21 +120,20 @@ msgid "Right" msgstr "Vpravo" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Velikost &tlačítka:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Drobná" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +141,8 @@ msgstr "Malá" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +150,8 @@ msgstr "Střední" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,123 +159,96 @@ msgstr "Velká" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Velmi velká" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Kreslit kruh kolem tlačítka zavřít" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Kreslit okraj maximalizovaných a dlaždicovaných oken" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " "edges. Scrollbars and window close buttons will shift positions and will not " "touch screen edges." msgstr "" +"Toto nastavení vám umožní měnit velikost okna tak, aby jeho okraje " +"nedosahovaly k okrajům obrazovky. Posuvníky a tlačítka pro zavření okna se " +"posunou a nebudou se dotýkat okrajů obrazovky." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Vykreslit přechod pruhu titulku okna" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Zaoblené spodní rohy oken bez okrajů" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Stíny a obrys" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Velikost stínu:" # žádné parametry funkce v inspektoru funkcí #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Žádný" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Síla stínu:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Barva stínu:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intenzita obrysu:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Vypnuto" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Nízká" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Střední" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Vysoká" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximum" +msgid "Draw window outline" +msgstr "Vykreslit obrys okna" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Výjimky pro specifická okna" diff --git a/local/recipes/kde/breeze/source/po/cs/breeze_style_config.po b/local/recipes/kde/breeze/source/po/cs/breeze_style_config.po index b7e431e197..c2a7a9d5fd 100644 --- a/local/recipes/kde/breeze/source/po/cs/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/cs/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-02-08 14:49+0100\n" "Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" diff --git a/local/recipes/kde/breeze/source/po/da/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/da/breeze_kwin_deco.po index bccb4627da..3346d7f51e 100644 --- a/local/recipes/kde/breeze/source/po/da/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/da/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2020-07-21 17:37+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -88,7 +88,7 @@ msgid "General" msgstr "Generelt" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Tite&ljustering:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Højre" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "K&napstørrelse:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Meget lille" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Lille" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Mellem" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,28 +157,28 @@ msgstr "Stor" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Meget stor" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Tegn en cirkel omkring lukkeknappen" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, fuzzy, kde-format #| msgid "Display window borders for maximized windows" msgid "Draw border on maximized and tiled windows" msgstr "Vis vindueskanter for maksimerede vinduer" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -188,33 +187,40 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Tegn gradient for titellinjebaggrund" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Tilføj håndtag til at ændre størrelse på vinduer uden kant" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Skygger" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Ingen" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -223,64 +229,27 @@ msgid "Shadow strength:" msgstr "S&tyrke:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Skygger" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Mellem" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Brug vinduestitel" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Vinduesspecifik tilsidesættelse" @@ -421,15 +390,19 @@ msgstr "Tilføj" msgid "Edit" msgstr "Redigér" +#, fuzzy +#~| msgctxt "@item:inlistbox Button size:" +#~| msgid "Medium" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Mellem" + #~ msgid "Si&ze:" #~ msgstr "S&tørrelse:" #~ msgid "Color:" #~ msgstr "Farve:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Tilføj håndtag til at ændre størrelse på vinduer uden kant" - #~ msgid "Information about Selected Window" #~ msgstr "Information om valgt vindue" @@ -445,9 +418,6 @@ msgstr "Redigér" #~ msgid "Use window class (whole application)" #~ msgstr "Brug vinduesklasse (hele programmet)" -#~ msgid "Use window title" -#~ msgstr "Brug vinduestitel" - #~ msgid "Allow resizing maximized windows from window edges" #~ msgstr "" #~ "Tillad ændring af størrelse fra vindues kanter på maksimerede vinduer" diff --git a/local/recipes/kde/breeze/source/po/da/breeze_style_config.po b/local/recipes/kde/breeze/source/po/da/breeze_style_config.po index 666d53772d..bbc9f2877c 100644 --- a/local/recipes/kde/breeze/source/po/da/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/da/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-08-08 17:40+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" diff --git a/local/recipes/kde/breeze/source/po/de/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/de/breeze_kwin_deco.po index e2c4201beb..c73120407a 100644 --- a/local/recipes/kde/breeze/source/po/de/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/de/breeze_kwin_deco.po @@ -1,21 +1,22 @@ -# Frederik Schwarzer , 2014, 2016, 2022. -# Burkhard Lück , 2014, 2015, 2017, 2018, 2020, 2021. -# Frank Steinmetzger , 2022. -# Jannick Kuhr , 2023. +# SPDX-FileCopyrightText: 2014, 2016, 2022 Frederik Schwarzer +# SPDX-FileCopyrightText: 2014-2015, 2017-2018, 2020-2021 Burkhard Lück +# SPDX-FileCopyrightText: 2022, 2025 Frank Steinmetzger +# SPDX-FileCopyrightText: 2023 Jannick Kuhr +# SPDX-FileCopyrightText: 2025 Philipp Kiemle msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-16 19:23+0100\n" -"Last-Translator: Jannick Kuhr \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-12-27 19:17+0100\n" +"Last-Translator: Philipp Kiemle \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.08.3\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -88,7 +89,7 @@ msgid "General" msgstr "Allgemein" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Tite&lausrichtung:" @@ -118,21 +119,20 @@ msgid "Right" msgstr "Rechts" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Knopfgröße:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Winzig" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +140,8 @@ msgstr "Klein" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +149,8 @@ msgstr "Mittel" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +158,27 @@ msgstr "Groß" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Sehr groß" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Einen Kreis um den Schließen-Knopf zeichnen" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Umrandung um maximierte und gekachelte Fenster zeichnen" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +190,63 @@ msgstr "" "verschoben und berühren nicht mehr die Bildschirmränder." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Hintergrundverlauf der Titelleiste zeichnen" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Untere Ecken von Fenstern ohne Rahmen abrunden" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Schatten und Umrandung" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Schattengröße:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Keine" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Schattenstärke:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr " %" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Schattenfarbe:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Umrandungsintensität:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Aus" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Niedrig" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Mittel" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Hoch" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximal" +msgid "Draw window outline" +msgstr "Fensterumrandung zeichnen" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Fensterspezifische Einstellungen" @@ -309,7 +279,7 @@ msgstr "Passender ®ulärer Ausdruck: " #: config/ui/breezeexceptiondialog.ui:52 #, kde-format msgid "Detect Window Properties…" -msgstr "Fenstereigenschaften ermitteln ..." +msgstr "Fenstereigenschaften ermitteln …" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) #: config/ui/breezeexceptiondialog.ui:83 @@ -416,15 +386,39 @@ msgstr "Hinzufügen" msgid "Edit" msgstr "Bearbeiten" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Umrandungsintensität:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Aus" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Niedrig" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Mittel" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Hoch" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximal" + +#~ msgid "Round bottom corners" +#~ msgstr "Abgerundete untere Ecken" + #~ msgid "Si&ze:" #~ msgstr "&Größe:" #~ msgid "Color:" #~ msgstr "Farbe:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Griff zur Größenänderung von Fenstern ohne Rahmen hinzufügen" - #~ msgid "Information about Selected Window" #~ msgstr "Informationen zum ausgewählten Fenster" diff --git a/local/recipes/kde/breeze/source/po/de/breeze_style_config.po b/local/recipes/kde/breeze/source/po/de/breeze_style_config.po index ea6bdb92de..d589259d31 100644 --- a/local/recipes/kde/breeze/source/po/de/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/de/breeze_style_config.po @@ -1,12 +1,12 @@ +# SPDX-FileCopyrightText: 2014-2017, 2021 Burkhard Lück +# SPDX-FileCopyrightText: 2018, 2022 Frederik Schwarzer +# SPDX-FileCopyrightText: 2022 Frank Steinmetzger # SPDX-FileCopyrightText: 2024 Johannes Obermayr -# Burkhard Lück , 2014, 2015, 2016, 2017, 2021. -# Frederik Schwarzer , 2018, 2022. -# Frank Steinmetzger , 2022. msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-02 18:36+0200\n" "Last-Translator: Johannes Obermayr \n" "Language-Team: German \n" diff --git a/local/recipes/kde/breeze/source/po/el/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/el/breeze_kwin_deco.po index fb617f16d4..138c798373 100644 --- a/local/recipes/kde/breeze/source/po/el/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/el/breeze_kwin_deco.po @@ -2,23 +2,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Dimitris Kardarakos , 2014, 2015, 2016. -# Long Run , 2018. +# SPDX-FileCopyrightText: 2018, 2026 Long Run # Stelios , 2020, 2023. # George Stefanakis , 2023. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-08-02 01:14+0300\n" -"Last-Translator: George Stefanakis \n" -"Language-Team: Greek \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-04-16 11:52+0300\n" +"Last-Translator: Petros Vidalis \n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.04.3\n" +"X-Generator: Lokalize 25.08.1\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -91,7 +91,7 @@ msgid "General" msgstr "Γενικά" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Στοίχιση τίτλου:" @@ -121,21 +121,20 @@ msgid "Right" msgstr "Δεξιά" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Μέγεθος &κουμπιού:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Μικροσκοπικό" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +142,8 @@ msgstr "Μικρό" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +151,8 @@ msgstr "Μεσαίο" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +160,27 @@ msgstr "Μεγάλο" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Πολύ μεγάλο" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Σχεδιάστε έναν κύκλο γύρω από το κουμπί κλεισίματος" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Σχεδιάστε περιθώριο σε μεγιστοποιημένα και σε παράθεση παράθυρα" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "αλλάξουν θέση και δεν θα αγγίζουν τις άκρες της οθόνης." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Σχεδιάστε διαβάθμιση φόντου γραμμής τίτλου" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Στρογγυλές κάτω γωνίες παραθύρων χωρίς περιθώρια" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Σκιές και περιγράμματα" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Μέγεθος Σκιάς:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Κανένα" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Ένταση σκιάς:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Χρώμα σκιάς:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Ένταση περιγράμματος:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Ανενεργό" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Χαμηλό" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Μεσαίο" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Υψηλό" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Μέγιστο" +msgid "Draw window outline" +msgstr "Σχεδίαση περιγράμματος παραθύρου" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Αντικαταστάσεις ειδικά για παράθυρα" @@ -419,16 +388,36 @@ msgstr "Προσθήκη" msgid "Edit" msgstr "Επεξεργασία" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Ένταση περιγράμματος:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Ανενεργό" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Χαμηλό" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Μεσαίο" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Υψηλό" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Μέγιστο" + #~ msgid "Si&ze:" #~ msgstr "&Μέγεθος:" #~ msgid "Color:" #~ msgstr "Χρώμα:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "" -#~ "Προσθήκη χειριστηρίου για αλλαγή μεγέθους παραθύρων χωρίς περίγραμμα" - #~ msgid "Information about Selected Window" #~ msgstr "Πληροφορίες για το επιλεγμένο παράθυρο" diff --git a/local/recipes/kde/breeze/source/po/el/breeze_style_config.po b/local/recipes/kde/breeze/source/po/el/breeze_style_config.po index e1f77b38ed..0090d1adb0 100644 --- a/local/recipes/kde/breeze/source/po/el/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/el/breeze_style_config.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-01-04 11:10+0200\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" diff --git a/local/recipes/kde/breeze/source/po/en_GB/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/en_GB/breeze_kwin_deco.po index e2c4698aa5..6845c30926 100644 --- a/local/recipes/kde/breeze/source/po/en_GB/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/en_GB/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-03-10 19:29+0000\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English\n" @@ -88,7 +88,7 @@ msgid "General" msgstr "General" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Tit&le alignment:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Right" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "B&utton size:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Tiny" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Small" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Medium" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "Large" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Very Large" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Draw a circle around close button" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Draw border on maximised and tiled windows" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +189,65 @@ msgstr "" "touch screen edges." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Draw titlebar background gradient" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Add handle to resize windows with no border" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Shadows and Outline" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Shadow size:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "None" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Shadow strength:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Shadow colour:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Outline intensity:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Off" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Low" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Medium" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "High" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximum" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Shadows and Outline" +msgid "Draw window outline" +msgstr "Shadows and Outline" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Window-Specific Overrides" @@ -416,15 +387,36 @@ msgstr "Add" msgid "Edit" msgstr "Edit" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Outline intensity:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Off" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Low" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Medium" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "High" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximum" + #~ msgid "Si&ze:" #~ msgstr "Si&ze:" #~ msgid "Color:" #~ msgstr "Colour:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Add handle to resize windows with no border" - #~ msgid "Information about Selected Window" #~ msgstr "Information about Selected Window" diff --git a/local/recipes/kde/breeze/source/po/en_GB/breeze_style_config.po b/local/recipes/kde/breeze/source/po/en_GB/breeze_style_config.po index db792dcf4b..5414a8b0af 100644 --- a/local/recipes/kde/breeze/source/po/en_GB/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/en_GB/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-07 12:21+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English\n" diff --git a/local/recipes/kde/breeze/source/po/eo/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/eo/breeze_kwin_deco.po index 4e6dd91d4c..9c22898a99 100644 --- a/local/recipes/kde/breeze/source/po/eo/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/eo/breeze_kwin_deco.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-05-01 13:30+0100\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: Esperanto \n" @@ -89,7 +89,7 @@ msgid "General" msgstr "Ĝenerala" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Titola&lliniigo:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "Dekstre" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "B&utona grandeco:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Eta" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Malgranda" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Meza" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Granda" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Grandega" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Desegni cirklon ĉirkaŭ ferma butono" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Desegni randon sur maksimumigitaj kaj kahelitaj fenestroj" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,93 +190,64 @@ msgstr "" "tuŝos ekranajn randojn." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Desegni fonan gradienton de titolbreto" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Ombroj kaj Skizo" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Ombrograndeco:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Neniu" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Ombroforto:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Ombrokoloro:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Skiza intenseco:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Malŝaltita" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Malalta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Meza" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maksimumo" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Shadows and Outline" +msgid "Draw window outline" +msgstr "Ombroj kaj Skizo" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Fenestro-Specifikaj Overrides" @@ -416,3 +386,27 @@ msgstr "Aldoni" #, kde-format msgid "Edit" msgstr "Redakti" + +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Skiza intenseco:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Malŝaltita" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Malalta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Meza" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Alta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maksimumo" diff --git a/local/recipes/kde/breeze/source/po/eo/breeze_style_config.po b/local/recipes/kde/breeze/source/po/eo/breeze_style_config.po index 8c264de92d..0f667fbe24 100644 --- a/local/recipes/kde/breeze/source/po/eo/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/eo/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-14 11:22+0200\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: Esperanto \n" diff --git a/local/recipes/kde/breeze/source/po/es/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/es/breeze_kwin_deco.po index b502d83fb1..c7ea3026c9 100644 --- a/local/recipes/kde/breeze/source/po/es/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/es/breeze_kwin_deco.po @@ -1,15 +1,15 @@ # Spanish translations for breeze_kwin_deco.po package. -# Copyright (C) 2014 This_file_is_part_of_KDE +# Copyright (C) 2014-2025 This file is copyright: # This file is distributed under the same license as the breeze package. -# # Automatically generated, 2014. +# # SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2020, 2021, 2022, 2023, 2025 Eloy Cuadra msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2025-03-09 01:27+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 12:01+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.12.2\n" +"X-Generator: Lokalize 25.08.2\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -90,7 +90,7 @@ msgid "General" msgstr "General" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "A&lineamiento del título:" @@ -120,21 +120,20 @@ msgid "Right" msgstr "Derecha" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Ta&maño de los botones:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Muy pequeño" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -142,8 +141,8 @@ msgstr "Pequeño" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -151,8 +150,8 @@ msgstr "Medio" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -160,27 +159,27 @@ msgstr "Grande" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Muy grande" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Dibujar un círculo alrededor el botón de cierre" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Dibujar un borde en las ventanas maximizadas y en mosaico" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "extremos de la pantalla. " #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Dibujar gradiente del fondo de la barra de título" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Esquinas inferiores redondeadas de ventanas sin bordes" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Sombras y contorno" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Tamaño de la sombra:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Ninguno" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Solidez de la sombra:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Color de la sombra:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensidad del contorno:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Desactivado" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Baja" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Media" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Máxima" +msgid "Draw window outline" +msgstr "Dibujar contorno de las ventanas" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Sustituciones específicas de la ventana" diff --git a/local/recipes/kde/breeze/source/po/es/breeze_style_config.po b/local/recipes/kde/breeze/source/po/es/breeze_style_config.po index 992a98ebb1..0264119028 100644 --- a/local/recipes/kde/breeze/source/po/es/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/es/breeze_style_config.po @@ -1,15 +1,15 @@ # Spanish translations for breeze_style_config.po package. -# Copyright (C) 2014 This_file_is_part_of_KDE +# Copyright (C) 2014-2025 This file is copyright: # This file is distributed under the same license as the breeze package. -# # Automatically generated, 2014. +# # SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2022, 2024, 2025 Eloy Cuadra msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" -"PO-Revision-Date: 2025-03-09 01:27+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-06-11 01:47+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.12.2\n" +"X-Generator: Lokalize 24.08.0\n" #: main.cpp:25 main.cpp:29 #, kde-format diff --git a/local/recipes/kde/breeze/source/po/et/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/et/breeze_kwin_deco.po index 62fb65e167..a81ab0df32 100644 --- a/local/recipes/kde/breeze/source/po/et/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/et/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2020-05-02 10:28+0300\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -88,7 +88,7 @@ msgid "General" msgstr "Üldine" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Tiitli joo&ndus:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Paremal" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "N&upu suurus:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Tilluke" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Väike" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Keskmine" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,28 +157,28 @@ msgstr "Suur" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Väga suur" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Sulgemisnupu ümbritsemine rõngaga" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, fuzzy, kde-format #| msgid "Display window borders for maximized windows" msgid "Draw border on maximized and tiled windows" msgstr "Maksimeeritud akende piirete näitamine" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -188,33 +187,40 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Tiitliriba tausta ülemineku kujutamine" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Pideme lisamine piireteta akende suuruse muutmiseks" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Varjud" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Puudub" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -223,64 +229,27 @@ msgid "Shadow strength:" msgstr "&Tugevus:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Varjud" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Keskmine" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Kasutatakse akna tiitlit" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Akende spetsiifilised tühistavad sätted" @@ -421,15 +390,19 @@ msgstr "Lisa" msgid "Edit" msgstr "Muuda" +#, fuzzy +#~| msgctxt "@item:inlistbox Button size:" +#~| msgid "Medium" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Keskmine" + #~ msgid "Si&ze:" #~ msgstr "Suu&rus:" #~ msgid "Color:" #~ msgstr "Värv:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Pideme lisamine piireteta akende suuruse muutmiseks" - #~ msgid "Information about Selected Window" #~ msgstr "Valitud akna teave" @@ -445,9 +418,6 @@ msgstr "Muuda" #~ msgid "Use window class (whole application)" #~ msgstr "Kasutatakse akna klassi (kogu rakendus)" -#~ msgid "Use window title" -#~ msgstr "Kasutatakse akna tiitlit" - #~ msgid "Allow resizing maximized windows from window edges" #~ msgstr "Maksimeeritud akende suuruse muutmise lubamine aknaservadest" diff --git a/local/recipes/kde/breeze/source/po/et/breeze_style_config.po b/local/recipes/kde/breeze/source/po/et/breeze_style_config.po index 6dced218dd..8bc00715c8 100644 --- a/local/recipes/kde/breeze/source/po/et/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/et/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-10-30 13:32+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" diff --git a/local/recipes/kde/breeze/source/po/eu/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/eu/breeze_kwin_deco.po index 5b4fd692e1..957025876b 100644 --- a/local/recipes/kde/breeze/source/po/eu/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/eu/breeze_kwin_deco.po @@ -1,24 +1,24 @@ # Translation of breeze_kwin_deco.po to Euskara/Basque (eu). -# Copyright (C) 2016-2020, This file is copyright: +# Copyright (C) 2016-2025 This file is copyright: # This file is distributed under the same license as the breeze package. -# KDE euskaratzeko proiektuko arduraduna +# SPDX-FileCopyrightText: 2025 KDE euskaratzeko proiektuaren arduraduna # # Translators: -# Iñigo Salvador Azurmendi , 2016, 2017, 2018, 2019, 2020, 2022, 2023. +# Iñigo Salvador Azurmendi , 2016, 2017, 2018, 2019, 2020, 2022, 2023, 2025. msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 20:46+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-30 15:13+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" -"Language-Team: Basque\n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.08.3\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -91,7 +91,7 @@ msgid "General" msgstr "Orokorra" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Tit&uluaren lerrokatzea:" @@ -121,21 +121,20 @@ msgid "Right" msgstr "Eskuinera" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "B&otoiaren neurria:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Ñimiñoa" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +142,8 @@ msgstr "Txikia" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +151,8 @@ msgstr "Ertaina" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +160,27 @@ msgstr "Handia" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Oso handia" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Marraztu zirkulu bat ixteko botoiaren inguruan" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Marraztu ertza maximizatutako eta teilakatutako leihoetan" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "kokalekuak aldatuko dituzte eta ez dute pantailako ertzik ukituko." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Marraztu titulu-barrako atzealdeko gradientea" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Biribildu ertzik gabeko leihoen beheko izkinak" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Itzalak eta ingerada" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Itzalaren neurria:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Bat ere ez" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Itzalaren sendotasuna:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Itzalaren kolorea:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Ingeradaren intentsitatea:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Itzalita" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Baxua" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Ertaina" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Altua" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Gehienekoa" +msgid "Draw window outline" +msgstr "Marraztu leihoaren ingerada" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Leihoen berariazko gainezartzeak" @@ -419,15 +388,39 @@ msgstr "Erantsi" msgid "Edit" msgstr "Editatu" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Ingeradaren intentsitatea:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Itzalita" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Baxua" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Ertaina" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Altua" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Gehienekoa" + +#~ msgid "Round bottom corners" +#~ msgstr "Beheko izkina biribilduak" + #~ msgid "Si&ze:" #~ msgstr "&Neurria:" #~ msgid "Color:" #~ msgstr "Kolorea:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Erantsi heldulekua ertzik gabeko leihoen neurria aldatzeko" - #~ msgid "Information about Selected Window" #~ msgstr "Hautatutako leihoari buruzko informazioa" diff --git a/local/recipes/kde/breeze/source/po/eu/breeze_style_config.po b/local/recipes/kde/breeze/source/po/eu/breeze_style_config.po index 33b5bd4fa9..55e230f227 100644 --- a/local/recipes/kde/breeze/source/po/eu/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/eu/breeze_style_config.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-30 18:21+0200\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" diff --git a/local/recipes/kde/breeze/source/po/fi/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/fi/breeze_kwin_deco.po index 90e3274a47..b17cb05b33 100644 --- a/local/recipes/kde/breeze/source/po/fi/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/fi/breeze_kwin_deco.po @@ -5,7 +5,7 @@ # Kim Enkovaara , 2005. # Teemu Rytilahti , 2008. # Teemu Rytilahti , 2008. -# Tommi Nieminen , 2009, 2010, 2012, 2016, 2017, 2018, 2020, 2022, 2023. +# SPDX-FileCopyrightText: 2009, 2010, 2012, 2016, 2017, 2018, 2020, 2022, 2023, 2025, 2026 Tommi Nieminen # Lasse Liehu , 2010, 2011, 2012, 2013, 2014, 2015. # Jorma Karvonen , 2011. # @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-08 22:03+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-01-10 20:42+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -24,6 +24,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -96,7 +97,7 @@ msgid "General" msgstr "Yleistä" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Otsikon sijainti:" @@ -126,21 +127,20 @@ msgid "Right" msgstr "Oikealla" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Pa&inikkeen koko:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Pikkuruinen" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -148,8 +148,8 @@ msgstr "Pieni" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -157,8 +157,8 @@ msgstr "Keskikokoinen" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -166,27 +166,27 @@ msgstr "Suuri" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Hyvin suuri" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Piirrä ympyrä sulkemispainikkeen ympärille" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Näytä suurennetuille ja laatoitetuille ikkunoille reunus" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -198,93 +198,63 @@ msgstr "" "näytön reunoja." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Piirrä otsikkorivin taustan väriliuku" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Reunuksettomien ikkunoiden pyöristetyt alakulmat" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Varjot ja ääriviivat" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Varjon koko:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Ei mitään" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Varjon vahvuus:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr " %" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Varjon väri:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Ääriviivojen voimakkuus:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Ei käytössä" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Vähäinen" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Keskitaso" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Suuri" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maksimi" +msgid "Draw window outline" +msgstr "Piirrä ikkunan ääriviivat" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Ikkunakohtaiset asetukset" @@ -424,15 +394,36 @@ msgstr "Lisää" msgid "Edit" msgstr "Muokkaa" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Ääriviivojen voimakkuus:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Ei käytössä" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Vähäinen" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Keskitaso" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Suuri" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maksimi" + #~ msgid "Si&ze:" #~ msgstr "K&oko:" #~ msgid "Color:" #~ msgstr "Väri:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Lisää kahva reunattomien ikkunoiden koon muuttamiseksi" - #~ msgid "Information about Selected Window" #~ msgstr "Valitun ikkunan tiedot" diff --git a/local/recipes/kde/breeze/source/po/fi/breeze_style_config.po b/local/recipes/kde/breeze/source/po/fi/breeze_style_config.po index cc35289a9b..b5f6778649 100644 --- a/local/recipes/kde/breeze/source/po/fi/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/fi/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-10-17 18:11+0300\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" diff --git a/local/recipes/kde/breeze/source/po/fr/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/fr/breeze_kwin_deco.po index 8a2aab42a8..8308443b6d 100644 --- a/local/recipes/kde/breeze/source/po/fr/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/fr/breeze_kwin_deco.po @@ -6,7 +6,7 @@ # Matthieu Robin , 2004, 2006. # Nicolas Ternisien , 2004, 2005. # Nicolas Ternisien , 2005, 2007, 2008, 2010, 2012. -# Xavier Besnard , 2013. +# SPDX-FileCopyrightText: 2013, 2025 Xavier Besnard # Bruno Patri , 2013, 2015. # Sophie ABBAD , 2015. # Vincent Pinon , 2016. @@ -19,18 +19,18 @@ msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-04 19:39+0100\n" -"Last-Translator: Xavier BESNARD \n" -"Language-Team: French \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-30 09:19+0100\n" +"Last-Translator: Xavier Besnard \n" +"Language-Team: French >\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 22.12.3\n" -"X-Environment: kde\n" "X-Accelerator-Marker: &\n" +"X-Environment: kde\n" +"X-Generator: Lokalize 25.08.2\n" "X-Text-Markup: kde4\n" #: config/breezeexceptionlistwidget.cpp:88 @@ -104,7 +104,7 @@ msgid "General" msgstr "Général" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "A&lignement du titre :" @@ -134,21 +134,20 @@ msgid "Right" msgstr "À droite" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Taille de bo&uton :" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Petite" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -156,8 +155,8 @@ msgstr "Petit" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -165,8 +164,8 @@ msgstr "Moyen" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -174,27 +173,27 @@ msgstr "Grand" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Très grand" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Dessiner un cercle autour du bouton de fermeture" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Tracer une bordure sur les fenêtres agrandies et superposées" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -207,93 +206,63 @@ msgstr "" "bords de l'écran." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Dessiner le dégradé d'arrière plan de la barre de titre" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Coins inférieurs arrondis des fenêtres sans bordures" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Ombres et bordures" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Taille des ombres :" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Aucun" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Force des ombres :" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr " %" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Couleur des ombres :" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensité des bordures :" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Désactivé" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Faible" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Moyen" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Haut" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximum" +msgid "Draw window outline" +msgstr "Dessiner le contour de fenêtre" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Réglages pour des fenêtres spécifiques" @@ -433,15 +402,39 @@ msgstr "Ajouter" msgid "Edit" msgstr "Modifier" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensité des bordures :" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Désactivé" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Faible" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Moyen" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Haut" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximum" + +#~ msgid "Round bottom corners" +#~ msgstr "Coins inférieurs arrondis" + #~ msgid "Si&ze:" #~ msgstr "&Taille :" #~ msgid "Color:" #~ msgstr "Couleur :" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Ajouter des poignées pour re-dimensionner les fenêtres sans bordure" - #~ msgid "Information about Selected Window" #~ msgstr "Informations sur la fenêtre sélectionnée" diff --git a/local/recipes/kde/breeze/source/po/fr/breeze_style_config.po b/local/recipes/kde/breeze/source/po/fr/breeze_style_config.po index a6d090c65e..8aca087f60 100644 --- a/local/recipes/kde/breeze/source/po/fr/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/fr/breeze_style_config.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-30 08:31+0200\n" "Last-Translator: Xavier Besnard \n" "Language-Team: French >\n" diff --git a/local/recipes/kde/breeze/source/po/ga/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ga/breeze_kwin_deco.po new file mode 100644 index 0000000000..a291a3a5a7 --- /dev/null +++ b/local/recipes/kde/breeze/source/po/ga/breeze_kwin_deco.po @@ -0,0 +1,384 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the breeze package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: breeze\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Irish Gaelic \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " +"3 : 4\n" + +#: config/breezeexceptionlistwidget.cpp:88 +#, kde-format +msgid "New Exception - Breeze Settings" +msgstr "" + +#: config/breezeexceptionlistwidget.cpp:136 +#, kde-format +msgid "Edit Exception - Breeze Settings" +msgstr "" + +#: config/breezeexceptionlistwidget.cpp:167 +#, kde-format +msgid "Question - Breeze Settings" +msgstr "" + +#: config/breezeexceptionlistwidget.cpp:168 +#, kde-format +msgid "Remove selected exception?" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, removeButton) +#: config/breezeexceptionlistwidget.cpp:170 +#: config/ui/breezeexceptionlistwidget.ui:91 +#, kde-format +msgid "Remove" +msgstr "" + +#: config/breezeexceptionlistwidget.cpp:300 +#, kde-format +msgid "Warning - Breeze Settings" +msgstr "" + +#: config/breezeexceptionlistwidget.cpp:300 +#, kde-format +msgid "Regular Expression syntax is incorrect" +msgstr "" + +#: config/breezeexceptionmodel.cpp:17 +#, kde-format +msgid "Exception Type" +msgstr "" + +#: config/breezeexceptionmodel.cpp:17 +#, kde-format +msgid "Regular Expression" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, exceptionType) +#: config/breezeexceptionmodel.cpp:36 config/ui/breezeexceptiondialog.ui:72 +#, kde-format +msgid "Window Title" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, exceptionType) +#: config/breezeexceptionmodel.cpp:40 config/ui/breezeexceptiondialog.ui:67 +#, kde-format +msgid "Window Class Name" +msgstr "" + +#: config/breezeexceptionmodel.cpp:55 +#, kde-format +msgid "Enable/disable this exception" +msgstr "" + +#. i18n: ectx: attribute (title), widget (QWidget, tab) +#: config/ui/breezeconfigurationui.ui:36 +#, kde-format +msgid "General" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: config/ui/breezeconfigurationui.ui:45 +#, kde-format +msgid "Tit&le alignment:" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, titleAlignment) +#: config/ui/breezeconfigurationui.ui:56 +#, kde-format +msgid "Left" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, titleAlignment) +#: config/ui/breezeconfigurationui.ui:61 +#, kde-format +msgid "Center" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, titleAlignment) +#: config/ui/breezeconfigurationui.ui:66 +#, kde-format +msgid "Center (Full Width)" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, titleAlignment) +#: config/ui/breezeconfigurationui.ui:71 +#, kde-format +msgid "Right" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: config/ui/breezeconfigurationui.ui:79 +#, kde-format +msgid "B&utton size:" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) +#: config/ui/breezeconfigurationui.ui:90 +#, kde-format +msgid "Tiny" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) +#. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 +#, kde-format +msgctxt "@item:inlistbox Button size:" +msgid "Small" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) +#. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 +#, kde-format +msgctxt "@item:inlistbox Button size:" +msgid "Medium" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) +#. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 +#, kde-format +msgctxt "@item:inlistbox Button size:" +msgid "Large" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) +#. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 +#, kde-format +msgctxt "@item:inlistbox Button size:" +msgid "Very Large" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) +#: config/ui/breezeconfigurationui.ui:118 +#, kde-format +msgid "Draw a circle around close button" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) +#: config/ui/breezeconfigurationui.ui:125 +#, kde-format +msgid "Draw border on maximized and tiled windows" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) +#: config/ui/breezeconfigurationui.ui:150 +#, kde-format +msgid "" +"This setting will allow you to resize from window edges touching screen " +"edges. Scrollbars and window close buttons will shift positions and will not " +"touch screen edges." +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) +#: config/ui/breezeconfigurationui.ui:162 +#, kde-format +msgid "Draw titlebar background gradient" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + +#. i18n: ectx: attribute (title), widget (QWidget, tab_4) +#: config/ui/breezeconfigurationui.ui:177 +#, kde-format +msgid "Shadows and Outline" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: config/ui/breezeconfigurationui.ui:186 +#, kde-format +msgid "Shadow size:" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) +#: config/ui/breezeconfigurationui.ui:197 +#, kde-format +msgctxt "@item:inlistbox Button size:" +msgid "None" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: config/ui/breezeconfigurationui.ui:225 +#, kde-format +msgctxt "strength of the shadow (from transparent to opaque)" +msgid "Shadow strength:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) +#: config/ui/breezeconfigurationui.ui:235 +#, no-c-format, kde-format +msgid "%" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: config/ui/breezeconfigurationui.ui:248 +#, kde-format +msgid "Shadow color:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, kde-format +msgid "Draw window outline" +msgstr "" + +#. i18n: ectx: attribute (title), widget (QWidget, tab_3) +#: config/ui/breezeconfigurationui.ui:266 +#, kde-format +msgid "Window-Specific Overrides" +msgstr "" + +#. i18n: ectx: property (windowTitle), widget (QDialog, BreezeExceptionDialog) +#: config/ui/breezeexceptiondialog.ui:14 +#, kde-format +msgid "Dialog" +msgstr "" + +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: config/ui/breezeexceptiondialog.ui:20 +#, kde-format +msgid "Window Identification" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: config/ui/breezeexceptiondialog.ui:26 +#, kde-format +msgid "&Matching window property: " +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: config/ui/breezeexceptiondialog.ui:39 +#, kde-format +msgid "Regular expression &to match: " +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, detectDialogButton) +#: config/ui/breezeexceptiondialog.ui:52 +#, kde-format +msgid "Detect Window Properties…" +msgstr "" + +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#: config/ui/breezeexceptiondialog.ui:83 +#, kde-format +msgid "Decoration Options" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, borderSizeCheckBox) +#: config/ui/breezeexceptiondialog.ui:89 +#, kde-format +msgid "Border size:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, hideTitleBar) +#: config/ui/breezeexceptiondialog.ui:96 +#, kde-format +msgid "Hide window title bar" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:107 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "No Border" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:112 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "No Side Borders" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:117 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "Tiny" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:122 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "Normal" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:127 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "Large" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:132 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "Very Large" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:137 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "Huge" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:142 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "Very Huge" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) +#: config/ui/breezeexceptiondialog.ui:147 +#, kde-format +msgctxt "@item:inlistbox Border size:" +msgid "Oversized" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, moveUpButton) +#: config/ui/breezeexceptionlistwidget.ui:70 +#, kde-format +msgid "Move Up" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, moveDownButton) +#: config/ui/breezeexceptionlistwidget.ui:77 +#, kde-format +msgid "Move Down" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, addButton) +#: config/ui/breezeexceptionlistwidget.ui:84 +#, kde-format +msgid "Add" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, editButton) +#: config/ui/breezeexceptionlistwidget.ui:98 +#, kde-format +msgid "Edit" +msgstr "" diff --git a/local/recipes/kde/breeze/source/po/ga/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ga/breeze_style_config.po new file mode 100644 index 0000000000..7c15dffa7d --- /dev/null +++ b/local/recipes/kde/breeze/source/po/ga/breeze_style_config.po @@ -0,0 +1,195 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the breeze package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: breeze\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Irish Gaelic \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " +"3 : 4\n" + +#: main.cpp:25 main.cpp:29 +#, kde-format +msgid "Breeze Settings" +msgstr "" + +#. i18n: ectx: attribute (title), widget (QWidget, tab) +#: ui/breezestyleconfig.ui:39 +#, kde-format +msgid "General" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, _windowDragLabel) +#: ui/breezestyleconfig.ui:51 +#, kde-format +msgid "W&indows' drag mode:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _viewDrawFocusIndicator) +#: ui/breezestyleconfig.ui:64 +#, kde-format +msgid "Draw focus indicator in lists" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, _mnemonicsLabel) +#: ui/breezestyleconfig.ui:71 +#, kde-format +msgid "&Keyboard accelerators visibility:" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _mnemonicsMode) +#: ui/breezestyleconfig.ui:85 +#, kde-format +msgid "Always hide" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _mnemonicsMode) +#: ui/breezestyleconfig.ui:90 +#, kde-format +msgid "Show when Alt key is pressed" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _mnemonicsMode) +#: ui/breezestyleconfig.ui:95 +#, kde-format +msgid "Always show" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _windowDragMode) +#: ui/breezestyleconfig.ui:117 +#, kde-format +msgid "Drag windows from titlebar only" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _windowDragMode) +#: ui/breezestyleconfig.ui:122 +#, kde-format +msgid "Drag windows from titlebar, menubar and toolbars" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _windowDragMode) +#: ui/breezestyleconfig.ui:127 +#, kde-format +msgid "Drag windows from all empty areas" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _tabBarDrawCenteredTabs) +#: ui/breezestyleconfig.ui:148 +#, kde-format +msgid "Center tabbar tabs" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _toolBarDrawItemSeparator) +#: ui/breezestyleconfig.ui:155 +#, kde-format +msgid "Draw toolbar item separators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _sliderDrawTickMarks) +#: ui/breezestyleconfig.ui:162 +#, kde-format +msgid "Draw slider tick marks" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _splitterProxyEnabled) +#: ui/breezestyleconfig.ui:169 +#, kde-format +msgid "Enable extended resize handles" +msgstr "" + +#. i18n: ectx: attribute (title), widget (QWidget, tab_3) +#: ui/breezestyleconfig.ui:177 +#, kde-format +msgid "Frames" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _dockWidgetDrawFrame) +#: ui/breezestyleconfig.ui:183 +#, kde-format +msgid "Draw frame around dockable panels" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _sidePanelDrawFrame) +#: ui/breezestyleconfig.ui:190 +#, kde-format +msgid "Draw frame around side panels" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, _menuItemDrawThinFocus) +#: ui/breezestyleconfig.ui:197 +#, kde-format +msgid "Draw a thin line to indicate focus in menus and menubars" +msgstr "" + +#. i18n: ectx: attribute (title), widget (QWidget, tab_4) +#: ui/breezestyleconfig.ui:218 +#, kde-format +msgid "Scrollbars" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, _scrollBarAddLineLabel) +#: ui/breezestyleconfig.ui:237 +#, kde-format +msgid "Bottom arrow button t&ype:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, _scrollBarSubLineLabel) +#: ui/breezestyleconfig.ui:250 +#, kde-format +msgid "&Top arrow button type:" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) +#. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) +#: ui/breezestyleconfig.ui:264 ui/breezestyleconfig.ui:283 +#, kde-format +msgid "No buttons" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) +#. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) +#: ui/breezestyleconfig.ui:269 ui/breezestyleconfig.ui:288 +#, kde-format +msgid "One button" +msgstr "" + +#. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) +#. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) +#: ui/breezestyleconfig.ui:274 ui/breezestyleconfig.ui:293 +#, kde-format +msgid "Two buttons" +msgstr "" + +#. i18n: ectx: attribute (title), widget (QWidget, tab_5) +#: ui/breezestyleconfig.ui:315 +#, kde-format +msgid "Transparency" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, _menuOpacityTransparentLabel) +#: ui/breezestyleconfig.ui:336 +#, kde-format +msgid "Transparent" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, _menuOpacityOpaqueLabel) +#: ui/breezestyleconfig.ui:362 +#, kde-format +msgid "Opaque" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, _menuGroupDescription) +#: ui/breezestyleconfig.ui:373 +#, kde-format +msgid "Menu:" +msgstr "" diff --git a/local/recipes/kde/breeze/source/po/gl/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/gl/breeze_kwin_deco.po index 34945c343c..7abc766d26 100644 --- a/local/recipes/kde/breeze/source/po/gl/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/gl/breeze_kwin_deco.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-06-24 11:13+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" @@ -89,7 +89,7 @@ msgid "General" msgstr "Xeral" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Aliñamento do título:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "Dereita" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Tamaño dos b&otóns:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Pequerrechos" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Pequenos" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Medianos" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Grandes" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Moi grandes" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Debuxar un círculo arredor do botón de pechar." #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Debuxar un bordo nas xanelas maximizadas e teseladas" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -192,93 +191,65 @@ msgstr "" "da pantalla." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Debuxar o fondo da barra de título cunha gradación" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Engadir unha asa para cambiar o tamaño das xanelas sen moldura" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Sombras e contornos" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Tamaño das sombras:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Ningún" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Forza das sombras:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Cor das sombras:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensidade dos contornos:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Desactivada" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Baixa" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Media" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Máxima" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Shadows and Outline" +msgid "Draw window outline" +msgstr "Sombras e contornos" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Sobredefinicións específicas da xanela" @@ -418,15 +389,36 @@ msgstr "Engadir" msgid "Edit" msgstr "Editar" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensidade dos contornos:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Desactivada" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Baixa" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Media" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Alta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Máxima" + #~ msgid "Si&ze:" #~ msgstr "Tama&ño:" #~ msgid "Color:" #~ msgstr "Cor:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Engadir unha asa para cambiar o tamaño das xanelas sen moldura" - #~ msgid "Information about Selected Window" #~ msgstr "Información sobre a xanela escollida" diff --git a/local/recipes/kde/breeze/source/po/gl/breeze_style_config.po b/local/recipes/kde/breeze/source/po/gl/breeze_style_config.po index 422b336cc5..96483c1e7b 100644 --- a/local/recipes/kde/breeze/source/po/gl/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/gl/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 18:22+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" diff --git a/local/recipes/kde/breeze/source/po/he/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/he/breeze_kwin_deco.po index c1064d1055..76a2ac7b2d 100644 --- a/local/recipes/kde/breeze/source/po/he/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/he/breeze_kwin_deco.po @@ -3,13 +3,13 @@ # # Elkana Bardugo , 2016. # Elkana Bardugo , 2017. #zanata -# SPDX-FileCopyrightText: 2023 Yaron Shahrabani +# SPDX-FileCopyrightText: 2023, 2025 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-10-29 14:17+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 10:58+0200\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" -"X-Generator: Lokalize 23.08.1\n" +"X-Generator: Lokalize 25.08.2\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -33,7 +33,7 @@ msgstr "עריכת חריגה – הגדרות בריזה" #: config/breezeexceptionlistwidget.cpp:167 #, kde-format msgid "Question - Breeze Settings" -msgstr "שאלה – הגדרות בריזה" +msgstr "שאלה – הגדרות בריזה" #: config/breezeexceptionlistwidget.cpp:168 #, kde-format @@ -91,7 +91,7 @@ msgid "General" msgstr "כללי" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "יישור &כותרת:" @@ -121,21 +121,20 @@ msgid "Right" msgstr "ימין" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "גודל כ&פתורים:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "פצפון" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +142,8 @@ msgstr "קטן" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +151,8 @@ msgstr "בינוני" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +160,27 @@ msgstr "גדול" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "ענק" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "ציור עיגול מסביב לכפתור הסגירה" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "ציור גבול על חלונות מוגדלים ומרוצפים" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -192,93 +191,63 @@ msgstr "" "סרגלי גלילה וכפתורי הסגירה של החלונות יזוזו ולא יגעו בקצוות המסך." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "ציור הדרגת צבעים ברקע שורות כותרת" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "פינות תחתונות מעוגלות של חלונות בלי מסגרת" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "הצללות וקווי מתאר" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "גודל הצללה:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "ללא" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "חוזק צל:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "צבע צל:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "חוזק קווי מתאר:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "כבוי" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "נמוך" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "בינוני" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "גבוה" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "מרבי" +msgid "Draw window outline" +msgstr "ציור קווי המתאר של החלון" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "מעקפים לחלונות ספציפים" @@ -418,15 +387,39 @@ msgstr "הוספה" msgid "Edit" msgstr "עריכה" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "חוזק קווי מתאר:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "כבוי" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "נמוך" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "בינוני" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "גבוה" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "מרבי" + +#~ msgid "Round bottom corners" +#~ msgstr "פינות תחתונות מעוגלות" + #~ msgid "Si&ze:" #~ msgstr "גודל" #~ msgid "Color:" #~ msgstr "צבע:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "הוסף איזור אחיזה לשינוי גודל חלונות ללא גבול" - #~ msgid "Information about Selected Window" #~ msgstr "מידע עבור חלונות נבחרים" diff --git a/local/recipes/kde/breeze/source/po/he/breeze_style_config.po b/local/recipes/kde/breeze/source/po/he/breeze_style_config.po index 58f3be18dd..70fe8b6eda 100644 --- a/local/recipes/kde/breeze/source/po/he/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/he/breeze_style_config.po @@ -1,18 +1,18 @@ # Elkana Bardugo , 2017. #zanata -# SPDX-FileCopyrightText: 2023, 2024 Yaron Shahrabani +# SPDX-FileCopyrightText: 2023, 2024, 2025 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" -"PO-Revision-Date: 2024-08-29 06:48+0300\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-08-06 10:13+0300\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 25.04.3\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" diff --git a/local/recipes/kde/breeze/source/po/hi/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/hi/breeze_kwin_deco.po index e3d14e504b..1c346b6932 100644 --- a/local/recipes/kde/breeze/source/po/hi/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/hi/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-13 11:32+0530\n" "Last-Translator: Raghavendra Kamath \n" "Language-Team: kde-hindi\n" @@ -88,7 +88,7 @@ msgid "General" msgstr "साधारण" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "शीर्षक पंक्तिबद्धता (&l):" @@ -118,21 +118,20 @@ msgid "Right" msgstr "दायाँ" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "बटन आकार :" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "नन्हा" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "छोटा" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "मध्यम" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "बड़ा" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "बहुत बड़ा" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "बंद करने वाले बटन के चारों ओर एक वृत्त बनाएं " #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -187,33 +186,40 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "शीर्षक पट्टी पृष्ठभूमि में ग्रेडिएंट बनाएँ" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "बिना सीमारेखा वाली विंडो का आकार बदलने के लिए हैंडल जोड़ें" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "छायाएँ" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "कुछ नहीं" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -222,64 +228,27 @@ msgid "Shadow strength:" msgstr "बल : (&t)" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "छायाएँ" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "मध्यम" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "विंडो शीर्षक का उपयोग करें" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "विंडो-विशिष्ट अध्यारोहण" @@ -420,15 +389,19 @@ msgstr "जोड़ें" msgid "Edit" msgstr "संपादित करें" +#, fuzzy +#~| msgctxt "@item:inlistbox Button size:" +#~| msgid "Medium" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "मध्यम" + #~ msgid "Si&ze:" #~ msgstr "आकार (&z) :" #~ msgid "Color:" #~ msgstr "रंग :" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "बिना सीमारेखा वाली विंडो का आकार बदलने के लिए हैंडल जोड़ें" - #~ msgid "Information about Selected Window" #~ msgstr "चयनित विंडे के बारे में जानकारी" @@ -444,9 +417,6 @@ msgstr "संपादित करें" #~ msgid "Use window class (whole application)" #~ msgstr "विंडो वर्ग (संपूर्ण अनुप्रयोग) का उपयोग करें" -#~ msgid "Use window title" -#~ msgstr "विंडो शीर्षक का उपयोग करें" - #~ msgid "Allow resizing maximized windows from window edges" #~ msgstr "विंडो के किनारों से बडे किए गए विंडो का आकार बदलने की अनुमति दें" diff --git a/local/recipes/kde/breeze/source/po/hi/breeze_style_config.po b/local/recipes/kde/breeze/source/po/hi/breeze_style_config.po index e01bff587f..f8be779941 100644 --- a/local/recipes/kde/breeze/source/po/hi/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/hi/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-02-10 11:43+0530\n" "Last-Translator: Raghavendra Kamath \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/breeze/source/po/hu/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/hu/breeze_kwin_deco.po index df2bdac9cf..bb7f716ab4 100644 --- a/local/recipes/kde/breeze/source/po/hu/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/hu/breeze_kwin_deco.po @@ -3,13 +3,13 @@ # # Kristóf Kiszel , 2014, 2015. # Kiszel Kristóf , 2017, 2018, 2020. -# SPDX-FileCopyrightText: 2023 Kristof Kiszel +# SPDX-FileCopyrightText: 2023, 2025, 2026 Kristof Kiszel msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-12-22 21:20+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-01-30 21:07+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 23.08.4\n" +"X-Generator: Lokalize 25.12.1\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -90,7 +90,7 @@ msgid "General" msgstr "Általános" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Címsorigazítás:" @@ -120,21 +120,20 @@ msgid "Right" msgstr "Jobbra" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Gombméret:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Apró" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -142,8 +141,8 @@ msgstr "Kicsi" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -151,8 +150,8 @@ msgstr "Közepes" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -160,27 +159,27 @@ msgstr "Nagy" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Nagyon nagy" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Kör rajzolása a bezárás gomb körül" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Keretek rajzolása maximalizált és csempe ablakokra" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -192,93 +191,63 @@ msgstr "" "megváltozik, és nem érnek hozzá a képernyő széleihez." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Színátmenetes ablakháttér rajzolása" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Ablakok alsó sarkainak lekerekítése, szegény nélkül" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Árnyékok és körvonal" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Árnyék mérete:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Nincs" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Árnyék erőssége:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Árnyék színe:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Körvonal intenzitása:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Ki" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Alacsony" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Közepes" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Magas" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximum" +msgid "Draw window outline" +msgstr "Ablakkörvonal rajzolása" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Ablakspecifikus felülbírálás" @@ -418,15 +387,39 @@ msgstr "Hozzáadás" msgid "Edit" msgstr "Szerkesztés" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Körvonal intenzitása:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Ki" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Alacsony" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Közepes" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Magas" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximum" + +#~ msgid "Round bottom corners" +#~ msgstr "Kerekített alsó sarkok" + #~ msgid "Si&ze:" #~ msgstr "Mé&ret:" #~ msgid "Color:" #~ msgstr "Szín:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Fogantyú hozzáadása a szegély nélküli ablakok átméretezéséhez" - #~ msgid "Information about Selected Window" #~ msgstr "A kijelölt ablak jellemzői" diff --git a/local/recipes/kde/breeze/source/po/hu/breeze_style_config.po b/local/recipes/kde/breeze/source/po/hu/breeze_style_config.po index 25ad5e1715..4341b70f74 100644 --- a/local/recipes/kde/breeze/source/po/hu/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/hu/breeze_style_config.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-19 14:30+0200\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" diff --git a/local/recipes/kde/breeze/source/po/ia/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ia/breeze_kwin_deco.po index 29e15e520a..6fe76b81d4 100644 --- a/local/recipes/kde/breeze/source/po/ia/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ia/breeze_kwin_deco.po @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Giovanni Sora , 2014, 2016, 2017, 2019, 2020, 2022, 2023. +# SPDX-FileCopyrightText: 2014, 2016, 2017, 2019, 2020, 2022, 2023, 2025 Giovanni Sora msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-04-06 09:30+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-12-29 16:57+0100\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" "Language: ia\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 23.08.5\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -88,7 +88,7 @@ msgid "General" msgstr "General" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Alineamento de Titulo" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Dextera" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Dimension de b&utton:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minuscule" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Parve" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Medie" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "Grande (Large)" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Multe Grande" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Designa un circulo circa le button de clauder" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Designa bordo sur fenestras maximisate e tegulate (tiled)" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +189,63 @@ msgstr "" "displaciara positiones e non toccara orlos de schermo." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Designa gradiente de fundo de barra de titulo" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Angulos de botton rotunde de fenestras con necun bordos" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Umbras e Profilo" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Grandor de Umbra:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Necun" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Fortia de Umbra:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Color de Umbra:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensitate de Profilo:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "De-Activate (Off)" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Basse" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Medie" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alte" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maxime" +msgid "Draw window outline" +msgstr "Designa profilo de fenestra" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Annullationes specific de Window" @@ -416,15 +385,36 @@ msgstr "Adde" msgid "Edit" msgstr "Edita" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensitate de Profilo:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "De-Activate (Off)" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Basse" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Medie" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Alte" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maxime" + #~ msgid "Si&ze:" #~ msgstr "Dimen&sion:" #~ msgid "Color:" #~ msgstr "Color:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Adde manico per redimensionar fenestras con necun bordo" - #~ msgid "Information about Selected Window" #~ msgstr "Information re fenestra seligite" diff --git a/local/recipes/kde/breeze/source/po/ia/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ia/breeze_style_config.po index f2a3d98824..c83037dcfa 100644 --- a/local/recipes/kde/breeze/source/po/ia/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ia/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-30 16:19+0200\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" diff --git a/local/recipes/kde/breeze/source/po/id/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/id/breeze_kwin_deco.po index a792182df5..dd2484b161 100644 --- a/local/recipes/kde/breeze/source/po/id/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/id/breeze_kwin_deco.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-01-13 08:29+0700\n" "Last-Translator: Linerly \n" "Language-Team: Indonesian \n" @@ -89,7 +89,7 @@ msgid "General" msgstr "Umum" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Kesejajaran &judul:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "Kanan" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Ukuran t&ombol:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Kecil" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Kecil" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Sedang" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Besar" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Sangat Besar" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Gambari sebuah lingkaran sekitar tombol tutup" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Gambar garis luar pada jendela yang dimaksimalkan dan berubin" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,33 +190,40 @@ msgstr "" "posisi dan tidak akan menyentuh ujung layar." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Gambari gradasi latarbelakang bilah judul" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Tambahkan pegangan untuk mengubah ukuran jendela tanpa batas" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Bayangan" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Nihil" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -226,64 +232,27 @@ msgid "Shadow strength:" msgstr "Kekua&tan:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Bayangan" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Sedang" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Gunakan judul jendela" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Penimpaan Jendela Tertentu" @@ -427,15 +396,19 @@ msgstr "Tambah" msgid "Edit" msgstr "Edit" +#, fuzzy +#~| msgctxt "@item:inlistbox Button size:" +#~| msgid "Medium" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Sedang" + #~ msgid "Si&ze:" #~ msgstr "Uku&ran:" #~ msgid "Color:" #~ msgstr "Warna:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Tambahkan pegangan untuk mengubah ukuran jendela tanpa batas" - #~ msgid "Information about Selected Window" #~ msgstr "Informasi tentang Jendela Terpilih" @@ -451,9 +424,6 @@ msgstr "Edit" #~ msgid "Use window class (whole application)" #~ msgstr "Gunakan kelas jendela (keseluruhan aplikasi)" -#~ msgid "Use window title" -#~ msgstr "Gunakan judul jendela" - #~ msgid "Allow resizing maximized windows from window edges" #~ msgstr "" #~ "Bolehkan mengubah ukuran jendela yang dimaksimalkan dari tepi jendela" diff --git a/local/recipes/kde/breeze/source/po/id/breeze_style_config.po b/local/recipes/kde/breeze/source/po/id/breeze_style_config.po index 417bae7e1b..b6efdaa5ee 100644 --- a/local/recipes/kde/breeze/source/po/id/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/id/breeze_style_config.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: KDE Frameworks 5 Applications\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-09-27 18:04+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" diff --git a/local/recipes/kde/breeze/source/po/is/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/is/breeze_kwin_deco.po index 78b89dd1c1..a59ceb0737 100644 --- a/local/recipes/kde/breeze/source/po/is/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/is/breeze_kwin_deco.po @@ -1,21 +1,22 @@ -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the breeze package. # # Guðmundur Erlingsson , 2023. +# SPDX-FileCopyrightText: 2025 Sveinn í Felli msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-09-16 14:33+0000\n" -"Last-Translator: Guðmundur Erlingsson \n" -"Language-Team: Icelandic \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-17 09:47+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.04.3\n" +"X-Generator: Lokalize 23.08.5\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -88,7 +89,7 @@ msgid "General" msgstr "Almennt" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Jöfnun titi&ls:" @@ -118,21 +119,20 @@ msgid "Right" msgstr "Hægri" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "St&ærð hnappa:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Örsmáir" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +140,8 @@ msgstr "Litlir" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +149,8 @@ msgstr "Miðlungs" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +158,27 @@ msgstr "Stórir" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Mjög stórir" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Teikna hring utan um lokunarhnapp" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Teikna ramma utan um fullstækkaða og reitaraðaða glugga" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +190,63 @@ msgstr "" "og snerta ekki skjájaðrana." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Teikna litstigul á bakgrunn titilstiku" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Rúnnuð horn neðst á gluggum með engum jöðrum" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Skuggar og útlínur" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Dýpt skugga:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Engin" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Styrkur skugga:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Litur skugga:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Styrkur útlínu:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Slökkt" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Lítill" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Miðlungs" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Mikill" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Hámarks" +msgid "Draw window outline" +msgstr "Teikna útlínu glugga" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Hnekkingar fyrir tiltekna glugga" @@ -415,3 +385,27 @@ msgstr "Bæta við" #, kde-format msgid "Edit" msgstr "Breyta" + +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Styrkur útlínu:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Slökkt" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Lítill" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Miðlungs" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Mikill" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Hámarks" diff --git a/local/recipes/kde/breeze/source/po/is/breeze_style_config.po b/local/recipes/kde/breeze/source/po/is/breeze_style_config.po index 391dcebf41..3293d1a2fa 100644 --- a/local/recipes/kde/breeze/source/po/is/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/is/breeze_style_config.po @@ -1,22 +1,22 @@ # Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the breeze package. # -# SPDX-FileCopyrightText: 2022, 2025 Sveinn í Felli -# gummi , 2022, 2023. +# Sveinn í Felli , 2022. +# SPDX-FileCopyrightText: 2022, 2023, 2025 gummi msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" -"PO-Revision-Date: 2025-03-24 11:06+0000\n" -"Last-Translator: Sveinn í Felli \n" -"Language-Team: Icelandic\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-07-11 18:52+0000\n" +"Last-Translator: Gummi \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 24.12.3\n" #: main.cpp:25 main.cpp:29 #, kde-format diff --git a/local/recipes/kde/breeze/source/po/it/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/it/breeze_kwin_deco.po index 1f339f337e..4139a87edd 100644 --- a/local/recipes/kde/breeze/source/po/it/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/it/breeze_kwin_deco.po @@ -1,14 +1,14 @@ # translation of kwin_clients.po to Italian +# SPDX-FileCopyrightText: 2015, 2017, 2018, 2020, 2022, 2023, 2025 Vincenzo Reale # Andrea Rizzi , 2004, 2005. # Luciano Montanaro , 2007, 2008, 2009, 2010, 2011, 2012. # Andrea Rizzi , 2007. -# Vincenzo Reale , 2015, 2017, 2018, 2020, 2022, 2023. msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 10:38+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 14:10+0100\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" "Language: it\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.08.2\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -89,7 +89,7 @@ msgid "General" msgstr "Generale" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "A&llineamento del titolo:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "A destra" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Dimensione dei p&ulsanti:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minuscola" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Piccola" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Media" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Grande" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Molto grande" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Disegna un cerchio intorno al pulsante di chiusura" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Disegna il bordo sulle finestre ingrandite e affiancate" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -192,93 +191,63 @@ msgstr "" "dello schermo." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Disegna la sfumatura di sfondo della barra del titolo" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Angoli inferiori arrotondati delle finestre senza bordi" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Ombre e bordatura" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Dimensionei dell'ombra:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Nessuna" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Intensità dell'ombra:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Colore dell'ombra" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensità della bordatura:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Nessuna" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Bassa" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Media" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Massima" +msgid "Draw window outline" +msgstr "Disegna il contorno della finestra" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Ridefinizioni specifiche per finestra" @@ -418,15 +387,39 @@ msgstr "Aggiungi" msgid "Edit" msgstr "Modifica" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensità della bordatura:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Nessuna" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Bassa" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Media" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Alta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Massima" + +#~ msgid "Round bottom corners" +#~ msgstr "Angoli inferiori arrotondati" + #~ msgid "Si&ze:" #~ msgstr "Di&mensione:" #~ msgid "Color:" #~ msgstr "Colore:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Aggiungi una maniglia per ridimensionare le finestre senza bordo" - #~ msgid "Information about Selected Window" #~ msgstr "Informazioni sulla finestra selezionata" diff --git a/local/recipes/kde/breeze/source/po/it/breeze_style_config.po b/local/recipes/kde/breeze/source/po/it/breeze_style_config.po index 74d851aac7..28a6e2346b 100644 --- a/local/recipes/kde/breeze/source/po/it/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/it/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 18:34+0200\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" diff --git a/local/recipes/kde/breeze/source/po/ja/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ja/breeze_kwin_deco.po index 9c1f68b2e2..59886ab45a 100644 --- a/local/recipes/kde/breeze/source/po/ja/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ja/breeze_kwin_deco.po @@ -1,24 +1,26 @@ # Translation of kwin_clients into Japanese. +# SPDX-FileCopyrightText: 2025 Yuma Kakei # This file is distributed under the same license as the kdebase package. # Shinichi Tsunoda , 2005. # Yukiko Bando , 2006, 2007, 2008, 2009, 2010. # Taiki Komoda , 2010. # Fumiaki Okushi , 2004, 2005, 2010, 2015, 2021. # R.Suga <21r.suga@gmail.com>, 2022. +# SPDX-FileCopyrightText: 2026 Mint <5602mint@gmail.com> # msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2022-02-23 15:13+0900\n" -"Last-Translator: R.Suga <21r.suga@gmail.com>\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-05-10 12:53+0900\n" +"Last-Translator: Mint <5602mint@gmail.com>\n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.04.2\n" +"X-Generator: Lokalize 26.04.1\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -94,7 +96,7 @@ msgid "General" msgstr "全般" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "タイトルの位置(&L):" @@ -115,7 +117,7 @@ msgstr "中央" #: config/ui/breezeconfigurationui.ui:66 #, kde-format msgid "Center (Full Width)" -msgstr "中央(幅に合わせる)" +msgstr "中央 (幅に合わせる)" #. i18n: ectx: property (text), item, widget (QComboBox, titleAlignment) #: config/ui/breezeconfigurationui.ui:71 @@ -124,21 +126,20 @@ msgid "Right" msgstr "右" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "ボタンサイズ(&U):" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "最小" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -146,8 +147,8 @@ msgstr "小" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -155,8 +156,8 @@ msgstr "中" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -164,128 +165,95 @@ msgstr "大" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "とても大" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "閉じるボタンの周りに円を表示" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" -msgstr "" +msgstr "最大化またはタイル化されたウィンドウに境界線を描画する" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " "edges. Scrollbars and window close buttons will shift positions and will not " "touch screen edges." msgstr "" +"この設定を有効にすると、スクリーンの端に接しているウィンドウの縁からでもリサ" +"イズできるようになります。スクロールバーとウィンドウの「閉じる」ボタンは位置" +"がずれて、スクリーンの端に触れなくなります。" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "タイトルバーの背景にグラデーションを表示" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "枠がないウィンドウの下端の角を丸くする" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" -msgstr "" +msgstr "シャドーと輪郭" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 -#, fuzzy, kde-format -#| msgid "Shadows" +#: config/ui/breezeconfigurationui.ui:186 +#, kde-format msgid "Shadow size:" -msgstr "影" +msgstr "シャドーのサイズ:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "なし" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 -#, fuzzy, kde-format -#| msgctxt "strength of the shadow (from transparent to opaque)" -#| msgid "S&trength:" +#: config/ui/breezeconfigurationui.ui:225 +#, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" -msgstr "強さ(&T):" +msgstr "シャドーの強さ:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 -#, fuzzy, kde-format -#| msgid "Shadows" +#: config/ui/breezeconfigurationui.ui:248 +#, kde-format msgid "Shadow color:" -msgstr "影" +msgstr "シャドーの色:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "中" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +msgid "Draw window outline" +msgstr "ウィンドウの輪郭を描画" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "ウィンドウ固有の設定" @@ -306,7 +274,7 @@ msgstr "ウィンドウの識別" #: config/ui/breezeexceptiondialog.ui:26 #, kde-format msgid "&Matching window property: " -msgstr "識別に用いるウィンドウのプロパティ(&M): " +msgstr "識別するウィンドウのプロパティ(&M): " #. i18n: ectx: property (text), widget (QLabel, label_2) #: config/ui/breezeexceptiondialog.ui:39 @@ -316,10 +284,9 @@ msgstr "マッチさせる正規表現(&T): " #. i18n: ectx: property (text), widget (QPushButton, detectDialogButton) #: config/ui/breezeexceptiondialog.ui:52 -#, fuzzy, kde-format -#| msgid "Detect Window Properties" +#, kde-format msgid "Detect Window Properties…" -msgstr "ウィンドウのプロパティを検出" +msgstr "ウィンドウのプロパティを検出…" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) #: config/ui/breezeexceptiondialog.ui:83 @@ -331,7 +298,7 @@ msgstr "装飾オプション" #: config/ui/breezeexceptiondialog.ui:89 #, kde-format msgid "Border size:" -msgstr "枠サイズ:" +msgstr "枠のサイズ:" #. i18n: ectx: property (text), widget (QCheckBox, hideTitleBar) #: config/ui/breezeexceptiondialog.ui:96 diff --git a/local/recipes/kde/breeze/source/po/ja/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ja/breeze_style_config.po index fabf4e60f8..d6a27d1ad0 100644 --- a/local/recipes/kde/breeze/source/po/ja/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ja/breeze_style_config.po @@ -1,3 +1,4 @@ +# SPDX-FileCopyrightText: 2025 Yuma Kakei # 百武 朋大 , 2019. # Fumiaki Okushi , 2019. # R.Suga <21r.suga@gmail.com>, 2022. @@ -5,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" -"PO-Revision-Date: 2022-03-05 11:14+0900\n" -"Last-Translator: R.Suga <21r.suga@gmail.com>\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-09-23 23:33+0900\n" +"Last-Translator: Yuma Kakei \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -16,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -"X-Generator: Lokalize 20.04.2\n" +"X-Generator: Lokalize 25.08.1\n" #: main.cpp:25 main.cpp:29 #, kde-format @@ -152,24 +153,21 @@ msgstr "上側の矢印ボタンの種類(&T):" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:264 ui/breezestyleconfig.ui:283 -#, fuzzy, kde-format -#| msgid "No Buttons" +#, kde-format msgid "No buttons" msgstr "ボタンなし" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:269 ui/breezestyleconfig.ui:288 -#, fuzzy, kde-format -#| msgid "One Button" +#, kde-format msgid "One button" msgstr "一つのボタン" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:274 ui/breezestyleconfig.ui:293 -#, fuzzy, kde-format -#| msgid "Two Buttons" +#, kde-format msgid "Two buttons" msgstr "二つのボタン" diff --git a/local/recipes/kde/breeze/source/po/ka/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ka/breeze_kwin_deco.po index 6bd0218dc2..10102c1fba 100644 --- a/local/recipes/kde/breeze/source/po/ka/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ka/breeze_kwin_deco.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 04:19+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 04:03+0100\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" "Language: ka\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.8\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -89,7 +89,7 @@ msgid "General" msgstr "ძირითადი" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&სათაური სწორება:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "მარჯვენა" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&ღილაკის ზომა:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "პაწაწინა" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "პატარა" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "საშუალო" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "დიდი" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "ძალიან დიდი" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "დახურვის ღილაკის გარშემო წრის დახატვა" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "ფილებად დალაგებული და მთელ ეკრანზე გაშლილი ფანჯრების საზღვრის დახატვა" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,93 +190,63 @@ msgstr "" "კუთხეებში აღარ გამჩნდებიან." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "სათაურის ზოლზე ფონის გრადიენტის დახავა" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "მრგვალი ქვედა კუთხეები საზღვრის არმქონი ფანჯრებისთვის" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "ჩრდილები და კონტური" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "ჩრდილის ზომა:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "არაფერი" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "ჩრდილის სიძლიერე:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "ჩრდილის ფერი:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "კონტურის ინტენსივობა:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "გამორთულია" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "დაბალი" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "საშუალო" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "მაღალი" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "მაქსიმუმი" +msgid "Draw window outline" +msgstr "ფანჯრის კონტურის დახატვა" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "ფანჯარაზე-დამოკიდებული გადაფარვები" @@ -417,15 +386,39 @@ msgstr "დამატება" msgid "Edit" msgstr "ჩასწორება" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "კონტურის ინტენსივობა:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "გამორთულია" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "დაბალი" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "საშუალო" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "მაღალი" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "მაქსიმუმი" + +#~ msgid "Round bottom corners" +#~ msgstr "მრგვალი ქვედა კუთხეები" + #~ msgid "Si&ze:" #~ msgstr "&ზომა:" #~ msgid "Color:" #~ msgstr "ფერი:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "საზღვრის არმქონი ფანჯრების ზომის შესაცვლელი სახელურის დამატება" - #~ msgid "Allow resizing maximized windows from window edges" #~ msgstr "მთელ ეკრანზე გაშლილი ფანჯრების წიბოებიდან ზომის შეცვლის დაშვება" diff --git a/local/recipes/kde/breeze/source/po/ka/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ka/breeze_style_config.po index 542166d1d4..dee360bfbd 100644 --- a/local/recipes/kde/breeze/source/po/ka/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ka/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 06:18+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" diff --git a/local/recipes/kde/breeze/source/po/ko/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ko/breeze_kwin_deco.po index e289d0a882..7dcf4927d7 100644 --- a/local/recipes/kde/breeze/source/po/ko/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ko/breeze_kwin_deco.po @@ -1,14 +1,14 @@ # Translation of kwin_clients to Korean. # Copyright (C) 2007 This_file_is_part_of_KDE # This file is distributed under the same license as the kdebase package. -# Shinjo Park , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2022, 2023. +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2022, 2023, 2025, 2026 Shinjo Park # msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-04-21 23:30+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-04-26 22:58+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.08.1\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -89,7 +89,7 @@ msgid "General" msgstr "일반" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "제목 표시줄 정렬(&L):" @@ -119,21 +119,20 @@ msgid "Right" msgstr "오른쪽" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "단추 크기(&U):" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "매우 작게" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "작게" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "중간" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "크게" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "매우 크게" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "닫기 단추 주위에 원 그리기" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "최대화거나 바둑판식 배열된 창의 테두리 그리기" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +189,63 @@ msgstr "" "와 창 닫기 단추의 위치가 조정되어 화면 경계에 더 이상 인접하지 않게 됩니다." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "창 배경 그라디언트 그리기" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "경계선이 없는 창의 아래쪽 모서리 둥글게" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "그림자와 외곽선" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "그림자 크기:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "없음" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "그림자 강도:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "그림자 색상:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "외곽선 강도:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "끔" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "낮음" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "중간" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "높음" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "최대" +msgid "Draw window outline" +msgstr "창 외곽선 그리기" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "창 지정 설정" @@ -416,15 +385,39 @@ msgstr "추가" msgid "Edit" msgstr "편집" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "외곽선 강도:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "끔" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "낮음" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "중간" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "높음" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "최대" + +#~ msgid "Round bottom corners" +#~ msgstr "아래쪽 모서리 둥글게" + #~ msgid "Si&ze:" #~ msgstr "크기(&Z):" #~ msgid "Color:" #~ msgstr "색:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "경계선이 없는 창에 크기 조절 핸들 추가" - #~ msgid "Information about Selected Window" #~ msgstr "선택한 창 정보" diff --git a/local/recipes/kde/breeze/source/po/ko/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ko/breeze_style_config.po index 58ef94d2ed..0f31b35084 100644 --- a/local/recipes/kde/breeze/source/po/ko/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ko/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-11-29 01:00+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" diff --git a/local/recipes/kde/breeze/source/po/lt/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/lt/breeze_kwin_deco.po index 2ff9b95b6f..bffca12745 100644 --- a/local/recipes/kde/breeze/source/po/lt/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/lt/breeze_kwin_deco.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: trunk-kf 5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2024-01-16 02:00+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-12-20 03:00+0200\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -18,22 +18,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.8\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format msgid "New Exception - Breeze Settings" -msgstr "Nauja išimtis - Breeze nuostatos" +msgstr "Nauja išimtis – Breeze nuostatos" #: config/breezeexceptionlistwidget.cpp:136 #, kde-format msgid "Edit Exception - Breeze Settings" -msgstr "Taisyti išimtį - Breeze nuostatos" +msgstr "Taisyti išimtį – Breeze nuostatos" #: config/breezeexceptionlistwidget.cpp:167 #, kde-format msgid "Question - Breeze Settings" -msgstr "Klausimas - Breeze nuostatos" +msgstr "Klausimas – Breeze nuostatos" #: config/breezeexceptionlistwidget.cpp:168 #, kde-format @@ -50,7 +50,7 @@ msgstr "Šalinti" #: config/breezeexceptionlistwidget.cpp:300 #, kde-format msgid "Warning - Breeze Settings" -msgstr "Įspėjimas - Breeze nuostatos" +msgstr "Įspėjimas – Breeze nuostatos" #: config/breezeexceptionlistwidget.cpp:300 #, kde-format @@ -91,7 +91,7 @@ msgid "General" msgstr "Bendra" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Antraščių &lygiavimas:" @@ -121,21 +121,20 @@ msgid "Right" msgstr "Dešinėje" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Mygt&ukų dydis:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Mažytis" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +142,8 @@ msgstr "Mažas" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +151,8 @@ msgstr "Vidutinis" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +160,27 @@ msgstr "Didelis" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Labai didelis" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Rodyti apskritimą aplink užvėrimo mygtuką" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Rodyti rėmelį išskleistuose ir išklotuose languose" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "ekrano kraštų." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Rodyti antraštės juostos fono gradientą" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Apvalūs apatiniai kampai languose be rėmelių" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Šešėliai ir kontūrai" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Šešėlio dydis:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Nėra" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Šešėlio stiprumas:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Šešėlio spalva:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Kontūro intensyvumas:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Išjungtas" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Žemas" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Vidutinis" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Aukštas" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Didžiausias" +msgid "Draw window outline" +msgstr "Rodyti lango kontūrus" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Langų specifiniai nustelbimai" @@ -419,15 +388,36 @@ msgstr "Pridėti" msgid "Edit" msgstr "Taisyti" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Kontūro intensyvumas:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Išjungtas" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Žemas" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Vidutinis" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Aukštas" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Didžiausias" + #~ msgid "Si&ze:" #~ msgstr "D&ydis:" #~ msgid "Color:" #~ msgstr "Spalva:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Pridėti rankenėlę, skirtą keisti langų be rėmų dydį" - #~ msgid "Information about Selected Window" #~ msgstr "Informacija apie pasirinktą langą" diff --git a/local/recipes/kde/breeze/source/po/lt/breeze_style_config.po b/local/recipes/kde/breeze/source/po/lt/breeze_style_config.po index ef7ee29add..959aefc6cf 100644 --- a/local/recipes/kde/breeze/source/po/lt/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/lt/breeze_style_config.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: trunk-kf 5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-31 21:33+0300\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian \n" diff --git a/local/recipes/kde/breeze/source/po/lv/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/lv/breeze_kwin_deco.po index c66d4ab2bd..9c61ee4cf1 100644 --- a/local/recipes/kde/breeze/source/po/lv/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/lv/breeze_kwin_deco.po @@ -1,13 +1,13 @@ # Copyright (C) 2024 This file is copyright: # This file is distributed under the same license as the breeze package. # -# SPDX-FileCopyrightText: 2024 Toms Trasuns +# SPDX-FileCopyrightText: 2024, 2025, 2026 Toms Trasuns msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2024-01-25 11:17+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-01-19 16:10+0200\n" "Last-Translator: Toms Trasuns \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -"X-Generator: Lokalize 23.08.4\n" +"X-Generator: Lokalize 25.12.1\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -89,7 +89,7 @@ msgid "General" msgstr "Pamata" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Virsraksta novietojums:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "Pa labi" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Pogas izmērs:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Sīka" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Maza" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Vidēja" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Liela" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Ļoti liela" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Zīmēt apli ap aizvēršanas pogu" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Zīmēt apmali maksimizētiem un flīzētiem logiem" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,93 +190,63 @@ msgstr "" "vairs nepieskaries ekrāna malām." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Zīmēt virsrakstjoslas fona gradientu" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Apaļi apakšējie stūri logiem bez apmalēm" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Ēnas un kontūras" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Ēnas lielums:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Nav" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Ēnas stiprums:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Ēnas krāsa:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Kontūras intensitāte:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Izslēgta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Zema" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Vidēja" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Augsta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maksimāla" +msgid "Draw window outline" +msgstr "Zīmēt loga kontūru" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Logam specifiski virsiestatījumi" @@ -416,3 +385,27 @@ msgstr "Pievienot" #, kde-format msgid "Edit" msgstr "Rediģēt" + +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Kontūras intensitāte:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Izslēgta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Zema" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Vidēja" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Augsta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maksimāla" diff --git a/local/recipes/kde/breeze/source/po/lv/breeze_style_config.po b/local/recipes/kde/breeze/source/po/lv/breeze_style_config.po index 0e94d7f134..c47ec3b16e 100644 --- a/local/recipes/kde/breeze/source/po/lv/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/lv/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-05 15:55+0300\n" "Last-Translator: Toms Trasuns \n" "Language-Team: Latvian \n" diff --git a/local/recipes/kde/breeze/source/po/ml/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ml/breeze_kwin_deco.po index 02d6988338..53676d5fb9 100644 --- a/local/recipes/kde/breeze/source/po/ml/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ml/breeze_kwin_deco.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2018-10-14 04:20+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +91,7 @@ msgid "General" msgstr "Generelt" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Titte&linnretting:" @@ -121,21 +121,20 @@ msgid "Right" msgstr "Høyre" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "K&nappestørrelse:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Bitteliten" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +142,8 @@ msgstr "Liten" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +151,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +160,27 @@ msgstr "Stor" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Svært stor" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Tegn en sirkel rundt lukke-knappen" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +189,63 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format msgid "Shadow size:" msgstr "Skygger" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "S&tyrke:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format msgid "Shadow color:" msgstr "Skygger" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" +msgid "Draw window outline" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Vindus-spesifikke overstyringer" diff --git a/local/recipes/kde/breeze/source/po/nb/breeze_style_config.po b/local/recipes/kde/breeze/source/po/nb/breeze_style_config.po index 2c1af06011..6f658d348f 100644 --- a/local/recipes/kde/breeze/source/po/nb/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/nb/breeze_style_config.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2015-06-05 09:05+0200\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/breeze/source/po/nds/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/nds/breeze_kwin_deco.po index b11322e4f8..4a9a996f95 100644 --- a/local/recipes/kde/breeze/source/po/nds/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/nds/breeze_kwin_deco.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2014-02-17 11:58+0100\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -91,7 +91,7 @@ msgid "General" msgstr "Allmeen" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Tite&lutrichten:" @@ -121,13 +121,13 @@ msgid "Right" msgstr "Rechts" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Kn&oopgrött:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, fuzzy, kde-format #| msgctxt "@item:inlistbox Border size:" #| msgid "Tiny" @@ -136,8 +136,7 @@ msgstr "Lierlütt" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -145,8 +144,8 @@ msgstr "Lütt" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -154,8 +153,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -163,28 +162,28 @@ msgstr "Groot" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Bannig groot" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, fuzzy, kde-format #| msgid "Display window borders for maximized windows" msgid "Draw border on maximized and tiled windows" msgstr "Bi maximeert Finstern Rahmen wiesen" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,34 +192,41 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, fuzzy, kde-format #| msgid "Draw window background" msgid "Draw titlebar background gradient" msgstr "Finsterachtergrund wiesen" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Finstern ahn Rahmen en Greep för Gröttännern tofögen" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Schaddens" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgid "Shadows" msgctxt "strength of the shadow (from transparent to opaque)" @@ -228,64 +234,27 @@ msgid "Shadow strength:" msgstr "Schaddens" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Schaddens" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, fuzzy, kde-format -#| msgid "Outline active window title:" -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Ümreet för aktiev Finstertitel:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, fuzzy, kde-format -#| msgid "Maximize" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximeren" +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Finstertitel bruken" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Besünner Instellen för enkelte Finstern" @@ -428,8 +397,17 @@ msgstr "Tofögen" msgid "Edit" msgstr "Bewerken" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Finstern ahn Rahmen en Greep för Gröttännern tofögen" +#, fuzzy +#~| msgid "Outline active window title:" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Ümreet för aktiev Finstertitel:" + +#, fuzzy +#~| msgid "Maximize" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximeren" #~ msgid "Information about Selected Window" #~ msgstr "Informatschoon över't utsöchte Finster" @@ -446,9 +424,6 @@ msgstr "Bewerken" #~ msgid "Use window class (whole application)" #~ msgstr "Finsterklass bruken (heel Programm)" -#~ msgid "Use window title" -#~ msgstr "Finstertitel bruken" - #, fuzzy #~| msgid "Draw Separator When Window is Active" #~ msgid "Draw separator under active window's titlebar" diff --git a/local/recipes/kde/breeze/source/po/nds/breeze_style_config.po b/local/recipes/kde/breeze/source/po/nds/breeze_style_config.po index f1e5e57f0a..386bd95dce 100644 --- a/local/recipes/kde/breeze/source/po/nds/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/nds/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2014-09-18 15:56+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" diff --git a/local/recipes/kde/breeze/source/po/nl/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/nl/breeze_kwin_deco.po index 089cc5cf42..8cb69e82d0 100644 --- a/local/recipes/kde/breeze/source/po/nl/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/nl/breeze_kwin_deco.po @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Freek de Kruijf , 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023. +# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023, 2025 Freek de Kruijf msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 14:25+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 10:48+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" "Language: nl\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.08.2\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -88,7 +88,7 @@ msgid "General" msgstr "Algemeen" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Tite&luitlijning:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Rechts" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Knopgrootte:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Heel klein" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Klein" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Middel" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,21 +157,21 @@ msgstr "Groot" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Erg groot" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Teken een cirkel rond de sluitknop" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" @@ -180,7 +179,7 @@ msgstr "" "tekenen" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "randen van het scherm raken." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Kleurverloop van titelachtergrond tekenen" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Onderhoeken van vensters zonder rand afronden" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Schaduwen en omlijning" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Schaduwgrootte:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Geen" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Schaduwsterkte:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Schaduwkleur:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensiteit van omlijning:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Uit" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Laag" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Middel" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Hoog" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximum" +msgid "Draw window outline" +msgstr "Omlijning van venster tekenen" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Vensterspecifieke zaken die voorgaan" @@ -419,16 +388,39 @@ msgstr "Toevoegen" msgid "Edit" msgstr "Bewerken" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensiteit van omlijning:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Uit" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Laag" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Middel" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Hoog" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximum" + +#~ msgid "Round bottom corners" +#~ msgstr "Onderste hoeken afronden" + #~ msgid "Si&ze:" #~ msgstr "&Grootte:" #~ msgid "Color:" #~ msgstr "Kleur:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "" -#~ "Voeg handvat toe om vensters zonder rand van grootte te laten wijzigen" - #~ msgid "Information about Selected Window" #~ msgstr "Informatie over geselecteerd venster" diff --git a/local/recipes/kde/breeze/source/po/nl/breeze_style_config.po b/local/recipes/kde/breeze/source/po/nl/breeze_style_config.po index 820b0ce492..d596556917 100644 --- a/local/recipes/kde/breeze/source/po/nl/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/nl/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 10:16+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" diff --git a/local/recipes/kde/breeze/source/po/nn/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/nn/breeze_kwin_deco.po index f6fc28e159..722a555164 100644 --- a/local/recipes/kde/breeze/source/po/nn/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/nn/breeze_kwin_deco.po @@ -1,21 +1,20 @@ # Translation of breeze_kwin_deco to Norwegian Nynorsk # # Gaute Hvoslef Kvalnes , 2004, 2005. -# Karl Ove Hufthammer , 2007, 2008, 2010, 2015, 2016, 2018, 2019, 2020, 2022, 2023. # Eirik U. Birkeland , 2008, 2009, 2010. msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-04 16:14+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-04-21 19:22+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 22.12.2\n" +"X-Generator: Lokalize 25.12.3\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" @@ -92,7 +91,7 @@ msgid "General" msgstr "Generelt" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Titteljustering:" @@ -122,21 +121,20 @@ msgid "Right" msgstr "Høgre" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Knappestorleik:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Ørliten" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -144,8 +142,8 @@ msgstr "Liten" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -153,8 +151,8 @@ msgstr "Middels" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -162,27 +160,27 @@ msgstr "Stor" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Svært stor" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Teikn ein sirkel rundt lukk-knappen" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Teikn kantlinje rundt maksimerte eller flislagde vindauge" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -194,93 +192,63 @@ msgstr "" "skjermkantane." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Teikn fargeovergang på tittellinja" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Runde botnhjørne på vindauge utan kantlinjer" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Skuggar og omriss" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Skuggestorleik:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Ingen" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Skuggestyrke:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr " %" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Skuggefarge:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Omrissintensitet:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Av" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Låg" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Middels" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Høg" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maksimum" +msgid "Draw window outline" +msgstr "Teikn ramme rundt vindauge" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Vindaugsspesifikke overstyringar" diff --git a/local/recipes/kde/breeze/source/po/nn/breeze_style_config.po b/local/recipes/kde/breeze/source/po/nn/breeze_style_config.po index 87bb2c9a99..d99ac2413e 100644 --- a/local/recipes/kde/breeze/source/po/nn/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/nn/breeze_style_config.po @@ -4,10 +4,10 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-01 15:20+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/breeze/source/po/pa/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/pa/breeze_kwin_deco.po index ecbbf1e6cd..5b5661b30b 100644 --- a/local/recipes/kde/breeze/source/po/pa/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/pa/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-05-19 20:13-0700\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -88,7 +88,7 @@ msgid "General" msgstr "ਆਮ" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "" @@ -118,21 +118,20 @@ msgid "Right" msgstr "ਸੱਜੇ" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "ਨਿੰਮਾ" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "ਛੋਟਾ" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "ਮੱਧਮ" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "ਵੱਡਾ" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "ਬਹੁਤ ਵੱਡਾ" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -187,93 +186,63 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" +msgid "Draw window outline" msgstr "" -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "ਬੰਦ" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "ਘੱਟ" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "ਮੱਧਮ" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "ਜਿਆਦਾ" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "ਵੱਧੋ-ਵੱਧ" - #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "" @@ -413,6 +382,26 @@ msgstr "ਜੋੜੋ" msgid "Edit" msgstr "ਸੋਧੋ" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "ਬੰਦ" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "ਘੱਟ" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "ਮੱਧਮ" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "ਜਿਆਦਾ" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "ਵੱਧੋ-ਵੱਧ" + #~ msgid "Animations" #~ msgstr "ਐਨੀਮੇਸ਼ਨ" diff --git a/local/recipes/kde/breeze/source/po/pa/breeze_style_config.po b/local/recipes/kde/breeze/source/po/pa/breeze_style_config.po index 16a34a13d7..5c20cf12d6 100644 --- a/local/recipes/kde/breeze/source/po/pa/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/pa/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-03 14:21-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" diff --git a/local/recipes/kde/breeze/source/po/pl/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/pl/breeze_kwin_deco.po index 51a3312793..f51258718d 100644 --- a/local/recipes/kde/breeze/source/po/pl/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/pl/breeze_kwin_deco.po @@ -1,21 +1,22 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. +# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2022, 2023, 2025 Łukasz Wojniłowicz # -# Łukasz Wojniłowicz , 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2022, 2023. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-04-10 11:26+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-08 08:55+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" -"Language-Team: Polish \n" +"Language-Team: pl\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 25.08.2\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -88,7 +89,7 @@ msgid "General" msgstr "Ogólne" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Wyrówn&anie nazwy:" @@ -118,21 +119,20 @@ msgid "Right" msgstr "Do prawej" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Rozmiar przycisk&u:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Drobny" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +140,8 @@ msgstr "Mały" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +149,8 @@ msgstr "Średni" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +158,27 @@ msgstr "Duży" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Bardzo duży" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Rysuj okrąg wokół przycisku zamknięcia" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Wyświetl obramowania dla okien zmaksymalizowanych i w kafelku" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +190,63 @@ msgstr "" "zmienią położenie i nie dotkną krawędzi ekranu. " #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Rysuj gradient tła paska nazwy" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Zaokrąglij dolne narożniki okien bez obramowań" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Cienie i obrys" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Rozmiar cienia:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Brak" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Siła cienia:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Barwa cienia:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Natężenie obrysu:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Wył." - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Niskie" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Średnie" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Wysokie" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Największe" +msgid "Draw window outline" +msgstr "Narysuj obrys okna" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Wymuszenia dla określonych okien" @@ -416,15 +386,39 @@ msgstr "Dodaj" msgid "Edit" msgstr "Edytuj" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Natężenie obrysu:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Wył." + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Niskie" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Średnie" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Wysokie" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Największe" + +#~ msgid "Round bottom corners" +#~ msgstr "Zaokrąglij dolne narożniki" + #~ msgid "Si&ze:" #~ msgstr "Ro&zmiar:" #~ msgid "Color:" #~ msgstr "Kolor:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Dodaj uchwyty do zmiany rozmiaru okien bez obramowania" - #~ msgid "Information about Selected Window" #~ msgstr "Informacje o wybranym oknie" diff --git a/local/recipes/kde/breeze/source/po/pl/breeze_style_config.po b/local/recipes/kde/breeze/source/po/pl/breeze_style_config.po index 10a8502fec..3508ba57a6 100644 --- a/local/recipes/kde/breeze/source/po/pl/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/pl/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-31 06:55+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -17,7 +17,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 23.08.5\n" #: main.cpp:25 main.cpp:29 #, kde-format diff --git a/local/recipes/kde/breeze/source/po/pt/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/pt/breeze_kwin_deco.po index 771f7f4a6e..309aa87b5a 100644 --- a/local/recipes/kde/breeze/source/po/pt/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/pt/breeze_kwin_deco.po @@ -1,42 +1,42 @@ -# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. # +# SPDX-FileCopyrightText: 2026 César A. P. Cláudio msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2022-11-28 18:21+0000\n" -"Last-Translator: José Nuno Coelho Pires \n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-02-01 20:20+0000\n" +"Last-Translator: César A. P. Cláudio \n" +"Language-Team: pt\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POFile-SpellExtra: ms Oxygen px\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 25.12.1\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format msgid "New Exception - Breeze Settings" -msgstr "Nova Excepção - Configuração da Brisa" +msgstr "Nova exceção - Definições do Brisa" #: config/breezeexceptionlistwidget.cpp:136 #, kde-format msgid "Edit Exception - Breeze Settings" -msgstr "Editar a Excepção - Configuração da Brisa" +msgstr "Editar exceção - Definições do Brisa" #: config/breezeexceptionlistwidget.cpp:167 #, kde-format msgid "Question - Breeze Settings" -msgstr "Pergunta - Configuração da Brisa" +msgstr "Pergunta - Definições do Brisa" #: config/breezeexceptionlistwidget.cpp:168 #, kde-format msgid "Remove selected exception?" -msgstr "Deseja remover a excepção seleccionada?" +msgstr "Remover exceção selecionada?" #. i18n: ectx: property (text), widget (QPushButton, removeButton) #: config/breezeexceptionlistwidget.cpp:170 @@ -48,39 +48,39 @@ msgstr "Remover" #: config/breezeexceptionlistwidget.cpp:300 #, kde-format msgid "Warning - Breeze Settings" -msgstr "Atenção - Configuração da Brisa" +msgstr "Aviso - Definições do Brisa" #: config/breezeexceptionlistwidget.cpp:300 #, kde-format msgid "Regular Expression syntax is incorrect" -msgstr "A sintaxe da expressão regular está incorrecta" +msgstr "A sintaxe da expressão regular está incorreta" #: config/breezeexceptionmodel.cpp:17 #, kde-format msgid "Exception Type" -msgstr "Tipo de Excepção" +msgstr "Tipo de exceção" #: config/breezeexceptionmodel.cpp:17 #, kde-format msgid "Regular Expression" -msgstr "Expressão Regular" +msgstr "Expressão regular" #. i18n: ectx: property (text), item, widget (QComboBox, exceptionType) #: config/breezeexceptionmodel.cpp:36 config/ui/breezeexceptiondialog.ui:72 #, kde-format msgid "Window Title" -msgstr "Título da Janela" +msgstr "Título de janela" #. i18n: ectx: property (text), item, widget (QComboBox, exceptionType) #: config/breezeexceptionmodel.cpp:40 config/ui/breezeexceptiondialog.ui:67 #, kde-format msgid "Window Class Name" -msgstr "Nome da Classe da Janela" +msgstr "Nome de classe de janela" #: config/breezeexceptionmodel.cpp:55 #, kde-format msgid "Enable/disable this exception" -msgstr "Activar/desactivar esta excepção" +msgstr "Ativar/desativar esta exceção" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: config/ui/breezeconfigurationui.ui:36 @@ -89,10 +89,10 @@ msgid "General" msgstr "Geral" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" -msgstr "A&linhamento do título:" +msgstr "A&linhamento de título:" #. i18n: ectx: property (text), item, widget (QComboBox, titleAlignment) #: config/ui/breezeconfigurationui.ui:56 @@ -110,7 +110,7 @@ msgstr "Centro" #: config/ui/breezeconfigurationui.ui:66 #, kde-format msgid "Center (Full Width)" -msgstr "Centro (Largura Total)" +msgstr "Centro (Largura total)" #. i18n: ectx: property (text), item, widget (QComboBox, titleAlignment) #: config/ui/breezeconfigurationui.ui:71 @@ -119,21 +119,20 @@ msgid "Right" msgstr "Direita" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Tamanho dos &botões:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minúsculo" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Pequeno" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Médio" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,134 +158,98 @@ msgstr "Grande" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" -msgstr "Muito Grande" +msgstr "Muito grande" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" -msgstr "Desenhar um círculo em torno do botão de fecho" +msgstr "Desenhar um círculo à volta do botão fechar" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" -msgstr "Desenhar um contorno nas janelas maximizadas e lado-a-lado" +msgstr "Desenhar borda em janelas maximizadas e organizadas" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " "edges. Scrollbars and window close buttons will shift positions and will not " "touch screen edges." msgstr "" -"Esta configuração permitir-lhe-á dimensionar nos extremos das janelas que " -"tocam nos extremos do ecrã. As barras de deslocamento e os botões de fecho " -"das janelas irão mudar de posição e não irão tocar nos extremos do ecrã." +"Esta definição permitirá-lhe redimensionar a partir das bordas das janelas " +"que tocam os extremos do ecrã. As barras de deslocamento e os botões de " +"fechar janelas mudarão de posição e não tocarão nos extremos do ecrã." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" -msgstr "Desenhar um gradiente no fundo do título" +msgstr "Desenhar gradiente de fundo da barra de título" + +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Arredondar os cantos inferiores das janelas sem bordas" #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" -msgstr "" +msgstr "Sombras e Contorno" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 -#, fuzzy, kde-format -#| msgid "Shadows" +#: config/ui/breezeconfigurationui.ui:186 +#, kde-format msgid "Shadow size:" -msgstr "Sombras" +msgstr "Tamanho da sombra:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Nenhum" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 -#, fuzzy, kde-format -#| msgctxt "strength of the shadow (from transparent to opaque)" -#| msgid "S&trength:" +#: config/ui/breezeconfigurationui.ui:225 +#, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" -msgstr "Po&tência:" +msgstr "Intensidade da sombra:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 -#, fuzzy, kde-format -#| msgid "Shadows" +#: config/ui/breezeconfigurationui.ui:248 +#, kde-format msgid "Shadow color:" -msgstr "Sombras" +msgstr "Cor da sombra:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Médio" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +msgid "Draw window outline" +msgstr "Desenhar contorno da janela" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" -msgstr "Substituições Específicas da Janela" +msgstr "Substituições específicas da janela" #. i18n: ectx: property (windowTitle), widget (QDialog, BreezeExceptionDialog) #: config/ui/breezeexceptiondialog.ui:14 @@ -298,7 +261,7 @@ msgstr "Janela" #: config/ui/breezeexceptiondialog.ui:20 #, kde-format msgid "Window Identification" -msgstr "Identificação da Janela" +msgstr "Identificação de janela" #. i18n: ectx: property (text), widget (QLabel, label) #: config/ui/breezeexceptiondialog.ui:26 @@ -316,39 +279,39 @@ msgstr "Expressão regular a &corresponder: " #: config/ui/breezeexceptiondialog.ui:52 #, kde-format msgid "Detect Window Properties…" -msgstr "Detectar as Propriedades da Janela…" +msgstr "Detectar propriedades da janela…" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) #: config/ui/breezeexceptiondialog.ui:83 #, kde-format msgid "Decoration Options" -msgstr "Opções de Decoração" +msgstr "Opções de decoração" #. i18n: ectx: property (text), widget (QCheckBox, borderSizeCheckBox) #: config/ui/breezeexceptiondialog.ui:89 #, kde-format msgid "Border size:" -msgstr "Tamanho do contorno:" +msgstr "Tamanho da borda:" #. i18n: ectx: property (text), widget (QCheckBox, hideTitleBar) #: config/ui/breezeexceptiondialog.ui:96 #, kde-format msgid "Hide window title bar" -msgstr "Esconder a barra de título da janela" +msgstr "Ocultar barra de título da janela" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:107 #, kde-format msgctxt "@item:inlistbox Border size:" msgid "No Border" -msgstr "Sem Contorno" +msgstr "Sem borda" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:112 #, kde-format msgctxt "@item:inlistbox Border size:" msgid "No Side Borders" -msgstr "Sem Contornos Laterais" +msgstr "Sem bordas laterais" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:117 @@ -390,14 +353,14 @@ msgstr "Enorme" #, kde-format msgctxt "@item:inlistbox Border size:" msgid "Very Huge" -msgstr "Mais do que Enorme" +msgstr "Gigante" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:147 #, kde-format msgctxt "@item:inlistbox Border size:" msgid "Oversized" -msgstr "Ainda Maior" +msgstr "De tamanho exagerado" #. i18n: ectx: property (text), widget (QPushButton, moveUpButton) #: config/ui/breezeexceptionlistwidget.ui:70 @@ -423,6 +386,13 @@ msgstr "Adicionar" msgid "Edit" msgstr "Editar" +#, fuzzy +#~| msgctxt "@item:inlistbox Button size:" +#~| msgid "Medium" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Médio" + #~ msgid "Si&ze:" #~ msgstr "&Tamanho:" diff --git a/local/recipes/kde/breeze/source/po/pt/breeze_style_config.po b/local/recipes/kde/breeze/source/po/pt/breeze_style_config.po index fbb6fc9ef1..2b29d5b063 100644 --- a/local/recipes/kde/breeze/source/po/pt/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/pt/breeze_style_config.po @@ -1,22 +1,24 @@ +# SPDX-FileCopyrightText: 2026 César A. P. Cláudio msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" -"PO-Revision-Date: 2022-03-28 01:55+0100\n" -"Last-Translator: José Nuno Coelho Pires \n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-02-01 20:28+0000\n" +"Last-Translator: César A. P. Cláudio \n" +"Language-Team: pt\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POFile-SpellExtra: ms\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 25.12.1\n" #: main.cpp:25 main.cpp:29 #, kde-format msgid "Breeze Settings" -msgstr "Configuração da Brisa" +msgstr "Definições do Brisa" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: ui/breezestyleconfig.ui:39 @@ -46,13 +48,13 @@ msgstr "&Visibilidade das combinações de teclas:" #: ui/breezestyleconfig.ui:85 #, kde-format msgid "Always hide" -msgstr "Esconder sempre" +msgstr "Ocultar sempre" #. i18n: ectx: property (text), item, widget (QComboBox, _mnemonicsMode) #: ui/breezestyleconfig.ui:90 #, kde-format msgid "Show when Alt key is pressed" -msgstr "Mostrar quando carregar na tecla Alt" +msgstr "Mostrar quando a tecla Alt é premida" #. i18n: ectx: property (text), item, widget (QComboBox, _mnemonicsMode) #: ui/breezestyleconfig.ui:95 @@ -64,44 +66,45 @@ msgstr "Mostrar sempre" #: ui/breezestyleconfig.ui:117 #, kde-format msgid "Drag windows from titlebar only" -msgstr "Arrastar as janelas apenas a partir da barra de título" +msgstr "Arrastar janelas apenas a partir da barra de título" #. i18n: ectx: property (text), item, widget (QComboBox, _windowDragMode) #: ui/breezestyleconfig.ui:122 #, kde-format msgid "Drag windows from titlebar, menubar and toolbars" msgstr "" -"Arrastar as janelas a partir da barra de título, menu e barras de ferramentas" +"Arrastar janelas a partir da barra de título, barra de menu e barras de " +"ferramentas" #. i18n: ectx: property (text), item, widget (QComboBox, _windowDragMode) #: ui/breezestyleconfig.ui:127 #, kde-format msgid "Drag windows from all empty areas" -msgstr "Arrastar as janelas a partir de todas as áreas vazias" +msgstr "Arrastar janelas a partir de todas as áreas vazias" #. i18n: ectx: property (text), widget (QCheckBox, _tabBarDrawCenteredTabs) #: ui/breezestyleconfig.ui:148 #, kde-format msgid "Center tabbar tabs" -msgstr "Centrar as páginas na barra" +msgstr "Centrar separadores na barra de separadores" #. i18n: ectx: property (text), widget (QCheckBox, _toolBarDrawItemSeparator) #: ui/breezestyleconfig.ui:155 #, kde-format msgid "Draw toolbar item separators" -msgstr "Desenhar o separador dos itens das barras de ferramentas" +msgstr "Desenhar separador de itens das barras de ferramentas" #. i18n: ectx: property (text), widget (QCheckBox, _sliderDrawTickMarks) #: ui/breezestyleconfig.ui:162 #, kde-format msgid "Draw slider tick marks" -msgstr "Desenhar as marcas da barra deslizante" +msgstr "Desenhar marcas de escala no controlo deslizante" #. i18n: ectx: property (text), widget (QCheckBox, _splitterProxyEnabled) #: ui/breezestyleconfig.ui:169 #, kde-format msgid "Enable extended resize handles" -msgstr "Activar as pegas de dimensionamento extendidas" +msgstr "Ativar pegas de redimensionamento estendidas" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) #: ui/breezestyleconfig.ui:177 @@ -113,13 +116,13 @@ msgstr "Molduras" #: ui/breezestyleconfig.ui:183 #, kde-format msgid "Draw frame around dockable panels" -msgstr "Desenhar contornos à volta dos painéis acopláveis" +msgstr "Desenhar moldura à volta dos painéis ancoráveis" #. i18n: ectx: property (text), widget (QCheckBox, _sidePanelDrawFrame) #: ui/breezestyleconfig.ui:190 #, kde-format msgid "Draw frame around side panels" -msgstr "Desenhar contornos à volta dos painéis laterais" +msgstr "Desenhar moldura à volta dos painéis laterais" #. i18n: ectx: property (text), widget (QCheckBox, _menuItemDrawThinFocus) #: ui/breezestyleconfig.ui:197 @@ -137,37 +140,34 @@ msgstr "Barras de deslocamento" #: ui/breezestyleconfig.ui:237 #, kde-format msgid "Bottom arrow button t&ype:" -msgstr "T&ipo do botão da seta do fundo:" +msgstr "T&ipo de botão de seta inferior:" #. i18n: ectx: property (text), widget (QLabel, _scrollBarSubLineLabel) #: ui/breezestyleconfig.ui:250 #, kde-format msgid "&Top arrow button type:" -msgstr "&Tipo do botão da seta de topo:" +msgstr "T&ipo de botão de seta superior:" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:264 ui/breezestyleconfig.ui:283 -#, fuzzy, kde-format -#| msgid "No Buttons" +#, kde-format msgid "No buttons" -msgstr "Sem Botões" +msgstr "Sem botões" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:269 ui/breezestyleconfig.ui:288 -#, fuzzy, kde-format -#| msgid "One Button" +#, kde-format msgid "One button" -msgstr "Um Botão" +msgstr "Um botão" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:274 ui/breezestyleconfig.ui:293 -#, fuzzy, kde-format -#| msgid "Two Buttons" +#, kde-format msgid "Two buttons" -msgstr "Dois Botões" +msgstr "Dois botões" #. i18n: ectx: attribute (title), widget (QWidget, tab_5) #: ui/breezestyleconfig.ui:315 diff --git a/local/recipes/kde/breeze/source/po/pt_BR/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/pt_BR/breeze_kwin_deco.po index c6be968faa..c24ca9fdea 100644 --- a/local/recipes/kde/breeze/source/po/pt_BR/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/pt_BR/breeze_kwin_deco.po @@ -4,21 +4,23 @@ # # André Marcelo Alvarenga , 2014, 2015, 2019. # Luiz Fernando Ranghetti , 2016, 2017, 2018, 2020, 2022. -# Geraldo Simiao , 2023. +# SPDX-FileCopyrightText: 2023, 2025 Geraldo Simiao +# SPDX-FileCopyrightText: 2025 Marcus Gama +# SPDX-FileCopyrightText: 2025 Guilherme Marçal Silva msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-08-02 00:33-0300\n" -"Last-Translator: Geraldo Simiao \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-08 21:10-0300\n" +"Last-Translator: Guilherme Marçal Silva \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 23.04.3\n" +"X-Generator: Lokalize 25.08.2\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -91,7 +93,7 @@ msgid "General" msgstr "Geral" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "A&linhamento do título:" @@ -121,21 +123,20 @@ msgid "Right" msgstr "Direita" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Tamanho dos &botões:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minúsculo" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +144,8 @@ msgstr "Pequeno" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +153,8 @@ msgstr "Médio" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +162,27 @@ msgstr "Grande" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Muito grande" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Desenhar um círculo em torno do botão de fechamento" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Desenhar borda em janelas maximizadas e lado a lado" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +194,63 @@ msgstr "" "fechar janela mudarão de posição e não tocarão nas bordas da tela." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Desenhar um gradiente no fundo da barra de título" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Cantos inferiores arredondados de janelas sem bordas" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Sombras e contorno" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Tamanho da sombra:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Nenhum" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Intensidade da sombra:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Cor da sombra:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensidade do contorno:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Desligado" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Baixa" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Médio" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Alta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Máximo" +msgid "Draw window outline" +msgstr "Desenhar contorno da janela" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Substituições específicas da janela" @@ -312,7 +283,7 @@ msgstr "&Expressão regular a corresponder: " #: config/ui/breezeexceptiondialog.ui:52 #, kde-format msgid "Detect Window Properties…" -msgstr "Detectar propriedades da janela..." +msgstr "Detectar propriedades da janela…" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) #: config/ui/breezeexceptiondialog.ui:83 @@ -419,15 +390,39 @@ msgstr "Adicionar" msgid "Edit" msgstr "Editar" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensidade do contorno:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Desligado" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Baixa" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Médio" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Alta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Máximo" + +#~ msgid "Round bottom corners" +#~ msgstr "Arredondar cantos inferiores" + #~ msgid "Si&ze:" #~ msgstr "Ta&manho:" #~ msgid "Color:" #~ msgstr "Cor:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Adicionar alça para redimensionar as janelas sem borda" - #~ msgid "Information about Selected Window" #~ msgstr "Informações sobre a janela selecionada" diff --git a/local/recipes/kde/breeze/source/po/pt_BR/breeze_style_config.po b/local/recipes/kde/breeze/source/po/pt_BR/breeze_style_config.po index 7790ed571b..844a2ce028 100644 --- a/local/recipes/kde/breeze/source/po/pt_BR/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/pt_BR/breeze_style_config.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2025-02-05 01:23-0300\n" "Last-Translator: Guilherme Marçal Silva \n" "Language-Team: Brazilian Portuguese \n" diff --git a/local/recipes/kde/breeze/source/po/ro/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ro/breeze_kwin_deco.po index ad7af17d3f..2a9dda983c 100644 --- a/local/recipes/kde/breeze/source/po/ro/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ro/breeze_kwin_deco.po @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Sergiu Bivol , 2014, 2020, 2023, 2024. +# SPDX-FileCopyrightText: 2014, 2020, 2023, 2024, 2025 Sergiu Bivol # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2024-01-07 15:27+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-27 12:26+0000\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 25.08.1\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -89,7 +89,7 @@ msgid "General" msgstr "Generale" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "A&liniere titlu:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "Dreapta" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Dimensiune b&utoane:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minusculă" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Mică" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Medie" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Mare" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Foarte mare" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Desenează un cerc în jurul butonului de închidere" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Desenează contur pe ferestre maximizate și în dale" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,93 +190,63 @@ msgstr "" "ferestrelor își vor schimba pozițiile și nu vor atinge marginile ecranului." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Desenează gradient de fundal al barei de titlu" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Rotunjește colțurile de jos ale ferestrelor fără chenar" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Umbre și chenar" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Dimensiune umbră:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Niciuna" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Intensitate umbră:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Culoare umbră:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intensitate chenar:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Dezactivat" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Joasă" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Medie" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Înaltă" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximă" +msgid "Draw window outline" +msgstr "Desenează conturul ferestrei" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Supradefiniri specifice ferestrei" @@ -417,15 +386,36 @@ msgstr "Adaugă" msgid "Edit" msgstr "Modifică" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intensitate chenar:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Dezactivat" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Joasă" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Medie" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Înaltă" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximă" + #~ msgid "Si&ze:" #~ msgstr "Dim&ensiune:" #~ msgid "Color:" #~ msgstr "Culoare:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Adaugă mâner pentru redimensionarea ferestrelor fără chenar" - #~ msgid "Information about Selected Window" #~ msgstr "Informații despre fereastra aleasă" diff --git a/local/recipes/kde/breeze/source/po/ro/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ro/breeze_style_config.po index f020f9633b..fad0d161e4 100644 --- a/local/recipes/kde/breeze/source/po/ro/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ro/breeze_style_config.po @@ -1,22 +1,22 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Sergiu Bivol , 2015, 2020, 2022. +# SPDX-FileCopyrightText: 2015, 2020, 2022, 2025 Sergiu Bivol # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" -"PO-Revision-Date: 2022-02-17 14:12+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-19 02:48+0100\n" "Last-Translator: Sergiu Bivol \n" -"Language-Team: Romanian\n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Lokalize 21.12.2\n" +"X-Generator: Lokalize 25.08.1\n" #: main.cpp:25 main.cpp:29 #, kde-format @@ -153,24 +153,21 @@ msgstr "&Tip buton săgeată spre vârf:" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:264 ui/breezestyleconfig.ui:283 -#, fuzzy, kde-format -#| msgid "No Buttons" +#, kde-format msgid "No buttons" msgstr "Fără butoane" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:269 ui/breezestyleconfig.ui:288 -#, fuzzy, kde-format -#| msgid "One Button" +#, kde-format msgid "One button" msgstr "Un buton" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:274 ui/breezestyleconfig.ui:293 -#, fuzzy, kde-format -#| msgid "Two Buttons" +#, kde-format msgid "Two buttons" msgstr "Două butoane" diff --git a/local/recipes/kde/breeze/source/po/ru/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ru/breeze_kwin_deco.po index 4da78e514d..1c8b69e233 100644 --- a/local/recipes/kde/breeze/source/po/ru/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ru/breeze_kwin_deco.po @@ -4,20 +4,20 @@ # Andrey Cherepanov , 2009, 2011. # Alexander Potashev , 2009, 2010, 2011, 2014, 2015, 2016, 2017, 2018. # Yuri Efremov , 2013. -# Alexander Yavorsky , 2018, 2020, 2022, 2023. +# SPDX-FileCopyrightText: 2018, 2020, 2022, 2023, 2025 Alexander Yavorsky msgid "" msgstr "" "Project-Id-Version: kstyle_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-12-20 21:05+0300\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-27 19:27+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.08.3\n" +"X-Generator: Lokalize 25.11.80\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Environment: kde\n" @@ -95,7 +95,7 @@ msgid "General" msgstr "Основное" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "В&ыравнивание заголовка:" @@ -125,21 +125,20 @@ msgid "Right" msgstr "Справа" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Кнопки:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Тонкие" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -147,8 +146,8 @@ msgstr "Маленькие" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -156,8 +155,8 @@ msgstr "Средние" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -165,27 +164,27 @@ msgstr "Большие" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Очень большие" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Круг вокруг кнопки закрытия окна" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Показывать границы распахнутых или расположенных каскадом окон" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -197,93 +196,63 @@ msgstr "" "соприкасаться с краями экрана." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Градиентный фон заголовка" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Скруглённые нижние углы окон без рамок" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Тени и контур" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Размер тени:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Не использовать тени" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Непрозрачность:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Цвет тени:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Выделение контура:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Отключено" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Низкое" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Среднее" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Высокое" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Максимальное" +msgid "Draw window outline" +msgstr "Рисовать контур окна" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Переназначения для отдельных окон" @@ -423,15 +392,36 @@ msgstr "Добавить" msgid "Edit" msgstr "Изменить" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Выделение контура:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Отключено" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Низкое" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Среднее" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Высокое" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Максимальное" + #~ msgid "Si&ze:" #~ msgstr "&Размер:" #~ msgid "Color:" #~ msgstr "Цвет:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Добавить уголок для изменения размера окон без рамки" - #~ msgid "Information about Selected Window" #~ msgstr "Сведения о выбранном окне" diff --git a/local/recipes/kde/breeze/source/po/ru/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ru/breeze_style_config.po index 1ee3becf67..6d440cd523 100644 --- a/local/recipes/kde/breeze/source/po/ru/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ru/breeze_style_config.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-13 11:11+0300\n" "Last-Translator: Olesya Gerasimenko \n" "Language-Team: Basealt Translation Team\n" diff --git a/local/recipes/kde/breeze/source/po/sa/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sa/breeze_kwin_deco.po index 5c27cff3b9..575dec1fba 100644 --- a/local/recipes/kde/breeze/source/po/sa/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sa/breeze_kwin_deco.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-20 21:51+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" @@ -90,7 +90,7 @@ msgid "General" msgstr "सामान्य" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "शीर्षकम् & संरेखणम् :" @@ -120,21 +120,20 @@ msgid "Right" msgstr "दक्षिणः" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "B&utton आकारः :" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "तुच्छ" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -142,8 +141,8 @@ msgstr "लघु" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -151,8 +150,8 @@ msgstr "मध्यम" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -160,27 +159,27 @@ msgstr "बृहत्‌" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "अतीव विशालः" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "close बटनस्य परितः वृत्तं आकर्षयन्तु" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "अधिकतमकृतेषु टाइल्-युक्तेषु च खिडकेषु सीमां आकर्षयन्तु" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,93 +190,64 @@ msgstr "" "तथा विण्डो क्लोज् बटन्स् स्थानानि शिफ्ट् करिष्यन्ति तथा च स्क्रीन एज्स् न स्पृशन्ति ।" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "शीर्षकपट्टिका पृष्ठभूमि ढाल आकर्षित करें" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "छायाः रूपरेखा च" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "छाया आकारः :" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "न कश्चित्" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "छायाबलम् :" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "% ." #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "छायावर्णः :" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "रूपरेखा तीव्रता :" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "दूरे" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "न्यूनम्‌" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "मध्यम" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "उच्चैः" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "अधिकतम" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Shadows and Outline" +msgid "Draw window outline" +msgstr "छायाः रूपरेखा च" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "विण्डो-विशिष्टं अधिलिखितम्" @@ -416,3 +386,27 @@ msgstr "संयोजयति" #, kde-format msgid "Edit" msgstr "सम्पादन" + +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "रूपरेखा तीव्रता :" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "दूरे" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "न्यूनम्‌" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "मध्यम" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "उच्चैः" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "अधिकतम" diff --git a/local/recipes/kde/breeze/source/po/sa/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sa/breeze_style_config.po index 13657654b7..2c91bb2534 100644 --- a/local/recipes/kde/breeze/source/po/sa/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sa/breeze_style_config.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-20 21:51+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" diff --git a/local/recipes/kde/breeze/source/po/se/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/se/breeze_kwin_deco.po index d45c757113..81edee2b9c 100644 --- a/local/recipes/kde/breeze/source/po/se/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/se/breeze_kwin_deco.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kwin_clients\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2005-01-29 18:47+0100\n" "Last-Translator: Børre Gaup \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,7 +90,7 @@ msgid "General" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "" @@ -120,21 +120,20 @@ msgid "Right" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Hui unni" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -142,8 +141,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -151,8 +150,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -160,27 +159,27 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -189,93 +188,63 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" +msgid "Draw window outline" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "" diff --git a/local/recipes/kde/breeze/source/po/sk/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sk/breeze_kwin_deco.po index 5ca5d6a1f3..27505a1371 100644 --- a/local/recipes/kde/breeze/source/po/sk/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sk/breeze_kwin_deco.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-11-23 08:47+0100\n" "Last-Translator: Ferdinand Galko \n" "Language-Team: Slovak \n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 22.12.3\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 22.12.3\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -89,7 +89,7 @@ msgid "General" msgstr "Všeobecné" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Zarovnanie titulku:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "Vpravo" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Veľkosť tlačidiel:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Drobné" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Malé" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Stredné" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Veľké" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Veľmi veľká" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Kresliť kružnicu okolo tlačidla zatvorenia" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Kresliť okraj na maximalizovaných a dlaždicovaných oknách" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,93 +190,63 @@ msgstr "" "svoje pozície a nebudú sa dotýkať okrajov obrazovky." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Kresliť prechod pozadia záhlavia" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Zaobliť spodné rohy okien bez okrajov" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Tiene a obrysy" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Veľkosť tieňa:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Žiadne" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Sila tieňa:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Farba tieňa:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intenzita obrysov:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Vypnuté" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Nízka" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Stredná" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Vysoká" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximálna" +msgid "Draw window outline" +msgstr "Kresliť obrys okna" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Špecifické nastavenia okna" @@ -417,15 +386,36 @@ msgstr "Pridať" msgid "Edit" msgstr "Upraviť" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intenzita obrysov:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Vypnuté" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Nízka" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Stredná" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Vysoká" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximálna" + #~ msgid "Si&ze:" #~ msgstr "Veľkosť:" #~ msgid "Color:" #~ msgstr "Farba:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Pridať spracovač na zmenu veľkosti okien bez okraja" - #~ msgid "Information about Selected Window" #~ msgstr "Informácie o vybranom okne" diff --git a/local/recipes/kde/breeze/source/po/sk/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sk/breeze_style_config.po index 8cd59bf4a6..5495a11753 100644 --- a/local/recipes/kde/breeze/source/po/sk/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sk/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-02-14 14:00+0100\n" "Last-Translator: Matej Mrenica \n" "Language-Team: Slovak \n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 21.12.2\n" #: main.cpp:25 main.cpp:29 #, kde-format @@ -152,24 +152,21 @@ msgstr "Typ horného tlačidla so šípkou:" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:264 ui/breezestyleconfig.ui:283 -#, fuzzy, kde-format -#| msgid "No Buttons" +#, kde-format msgid "No buttons" msgstr "Žiadne tlačidlá" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:269 ui/breezestyleconfig.ui:288 -#, fuzzy, kde-format -#| msgid "One Button" +#, kde-format msgid "One button" msgstr "Jedno tlačidlo" #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarSubLineButtons) #. i18n: ectx: property (text), item, widget (QComboBox, _scrollBarAddLineButtons) #: ui/breezestyleconfig.ui:274 ui/breezestyleconfig.ui:293 -#, fuzzy, kde-format -#| msgid "Two Buttons" +#, kde-format msgid "Two buttons" msgstr "Dve tlačidlá" diff --git a/local/recipes/kde/breeze/source/po/sl/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sl/breeze_kwin_deco.po index 8c70212400..0c885a44ed 100644 --- a/local/recipes/kde/breeze/source/po/sl/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sl/breeze_kwin_deco.po @@ -7,18 +7,18 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 22:55+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 06:25+0100\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Translator: Andrej Mernik \n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" -"X-Generator: Lokalize 22.12.2\n" +"Translator: Andrej Mernik \n" +"X-Generator: Poedit 3.8\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -91,7 +91,7 @@ msgid "General" msgstr "Splošno" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Poravnava nas&lova:" @@ -121,21 +121,20 @@ msgid "Right" msgstr "Desno" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Velikost g&umbov:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Zelo majhna" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +142,8 @@ msgstr "Majhna" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +151,8 @@ msgstr "Srednja" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +160,27 @@ msgstr "Velika" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Zelo velika" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Izriši krog okrog gumba za zapiranje" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Prikaži obrobo oken za razpeta in pokrivajoča okna" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "premaknjenih položajih in se ne bodo dotikali robov zaslona." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Nariši preliv za ozadje okna" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Zaobljeni spodnji vogali oken brez robov" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Sence in obris" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Velikost sence:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Brez" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Jakost sence:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Barva sence:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Intenzivnost obrisa:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Brez" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Nizka" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Srednja" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Visoka" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maksimalna" +msgid "Draw window outline" +msgstr "Nariši obris okna" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Nastavitve glede na določeno okno" @@ -419,15 +388,39 @@ msgstr "Dodaj" msgid "Edit" msgstr "Uredi" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Intenzivnost obrisa:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Brez" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Nizka" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Srednja" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Visoka" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maksimalna" + +#~ msgid "Round bottom corners" +#~ msgstr "Zaobljeni spodnji vogali" + #~ msgid "Si&ze:" #~ msgstr "Velikost:" #~ msgid "Color:" #~ msgstr "Barva:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Dodaj ročico za spreminjanje velikosti oken brez obrobe" - #~ msgid "Information about Selected Window" #~ msgstr "Podatki o izbranem oknu" diff --git a/local/recipes/kde/breeze/source/po/sl/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sl/breeze_style_config.po index c3e2c4528b..8789cd78a8 100644 --- a/local/recipes/kde/breeze/source/po/sl/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sl/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 07:03+0200\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" diff --git a/local/recipes/kde/breeze/source/po/sr/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sr/breeze_kwin_deco.po index 36d5c54d5d..f2e5a59a9f 100644 --- a/local/recipes/kde/breeze/source/po/sr/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sr/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-12-17 18:00+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -95,7 +95,7 @@ msgid "General" msgstr "Опште" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Поравнање наслова:" @@ -129,21 +129,20 @@ msgid "Right" msgstr "десно" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Величина &дугмади:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "сићушна" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -151,8 +150,8 @@ msgstr "мала" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -160,8 +159,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -169,27 +168,27 @@ msgstr "велика" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "врло велика" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Круг око дугмета за затварање" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -198,34 +197,41 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, fuzzy, kde-format #| msgid "Draw window background gradient" msgid "Draw titlebar background gradient" msgstr "Прелив у позадини прозора" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Ручка за промену величине прозора без ивица" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Сенке" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -234,62 +240,27 @@ msgid "Shadow strength:" msgstr "&Јачина:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Сенке" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "По наслову прозора" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Потискивања посебна по прозору" @@ -436,9 +407,6 @@ msgstr "Уреди" #~ msgid "Color:" #~ msgstr "Боја:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Ручка за промену величине прозора без ивица" - #, fuzzy #~| msgid "Draw separator between Title Bar and Window" #~ msgid "Draw separator under active window's titlebar" @@ -473,6 +441,3 @@ msgstr "Уреди" #~ msgid "Use window class (whole application)" #~ msgstr "По класи прозора (цео програм)" - -#~ msgid "Use window title" -#~ msgstr "По наслову прозора" diff --git a/local/recipes/kde/breeze/source/po/sr/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sr/breeze_style_config.po index b09fe7b5a9..c2226bc5fb 100644 --- a/local/recipes/kde/breeze/source/po/sr/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sr/breeze_style_config.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-10-30 23:08+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_kwin_deco.po index 042c8dfdb5..ecc1b66b5f 100644 --- a/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-12-17 18:00+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -95,7 +95,7 @@ msgid "General" msgstr "Опште" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Поравнање наслова:" @@ -129,21 +129,20 @@ msgid "Right" msgstr "десно" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Величина &дугмади:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "сићушна" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -151,8 +150,8 @@ msgstr "мала" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -160,8 +159,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -169,27 +168,27 @@ msgstr "велика" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "врло велика" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Круг око дугмета за затварање" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -198,34 +197,41 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, fuzzy, kde-format #| msgid "Draw window background gradient" msgid "Draw titlebar background gradient" msgstr "Прелив у позадини прозора" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Ручка за промену величине прозора без ивица" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Сенке" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -234,62 +240,27 @@ msgid "Shadow strength:" msgstr "&Јачина:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Сенке" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "По наслову прозора" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Потискивања посебна по прозору" @@ -436,9 +407,6 @@ msgstr "Уреди" #~ msgid "Color:" #~ msgstr "Боја:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Ручка за промену величине прозора без ивица" - #, fuzzy #~| msgid "Draw separator between Title Bar and Window" #~ msgid "Draw separator under active window's titlebar" @@ -473,6 +441,3 @@ msgstr "Уреди" #~ msgid "Use window class (whole application)" #~ msgstr "По класи прозора (цио програм)" - -#~ msgid "Use window title" -#~ msgstr "По наслову прозора" diff --git a/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_style_config.po index ed74f1042d..89832135b0 100644 --- a/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sr@ijekavian/breeze_style_config.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-10-30 23:08+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_kwin_deco.po index 5c21ddecc9..645089c98f 100644 --- a/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-12-17 18:00+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -95,7 +95,7 @@ msgid "General" msgstr "Opšte" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Poravnanje naslova:" @@ -129,21 +129,20 @@ msgid "Right" msgstr "desno" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Veličina &dugmadi:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "sićušna" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -151,8 +150,8 @@ msgstr "mala" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -160,8 +159,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -169,27 +168,27 @@ msgstr "velika" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "vrlo velika" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Krug oko dugmeta za zatvaranje" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -198,34 +197,41 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, fuzzy, kde-format #| msgid "Draw window background gradient" msgid "Draw titlebar background gradient" msgstr "Preliv u pozadini prozora" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Ručka za promenu veličine prozora bez ivica" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Senke" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -234,62 +240,27 @@ msgid "Shadow strength:" msgstr "&Jačina:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Senke" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Po naslovu prozora" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Potiskivanja posebna po prozoru" @@ -436,9 +407,6 @@ msgstr "Uredi" #~ msgid "Color:" #~ msgstr "Boja:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Ručka za promenu veličine prozora bez ivica" - #, fuzzy #~| msgid "Draw separator between Title Bar and Window" #~ msgid "Draw separator under active window's titlebar" @@ -473,6 +441,3 @@ msgstr "Uredi" #~ msgid "Use window class (whole application)" #~ msgstr "Po klasi prozora (cio program)" - -#~ msgid "Use window title" -#~ msgstr "Po naslovu prozora" diff --git a/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_style_config.po index 1fdffe3d61..8dd4a982cb 100644 --- a/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sr@ijekavianlatin/breeze_style_config.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-10-30 23:08+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/breeze/source/po/sr@latin/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sr@latin/breeze_kwin_deco.po index fcfdafa4b7..106c3e510b 100644 --- a/local/recipes/kde/breeze/source/po/sr@latin/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sr@latin/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-12-17 18:00+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -95,7 +95,7 @@ msgid "General" msgstr "Opšte" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "&Poravnanje naslova:" @@ -129,21 +129,20 @@ msgid "Right" msgstr "desno" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Veličina &dugmadi:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "sićušna" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -151,8 +150,8 @@ msgstr "mala" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -160,8 +159,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -169,27 +168,27 @@ msgstr "velika" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "vrlo velika" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Krug oko dugmeta za zatvaranje" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -198,34 +197,41 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, fuzzy, kde-format #| msgid "Draw window background gradient" msgid "Draw titlebar background gradient" msgstr "Preliv u pozadini prozora" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "Ručka za promenu veličine prozora bez ivica" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Senke" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -234,62 +240,27 @@ msgid "Shadow strength:" msgstr "&Jačina:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Senke" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 +#, fuzzy, kde-format +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "Po naslovu prozora" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Potiskivanja posebna po prozoru" @@ -436,9 +407,6 @@ msgstr "Uredi" #~ msgid "Color:" #~ msgstr "Boja:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Ručka za promenu veličine prozora bez ivica" - #, fuzzy #~| msgid "Draw separator between Title Bar and Window" #~ msgid "Draw separator under active window's titlebar" @@ -473,6 +441,3 @@ msgstr "Uredi" #~ msgid "Use window class (whole application)" #~ msgstr "Po klasi prozora (ceo program)" - -#~ msgid "Use window title" -#~ msgstr "Po naslovu prozora" diff --git a/local/recipes/kde/breeze/source/po/sr@latin/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sr@latin/breeze_style_config.po index 6686228875..887253b5a1 100644 --- a/local/recipes/kde/breeze/source/po/sr@latin/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sr@latin/breeze_style_config.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-10-30 23:08+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/breeze/source/po/sv/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/sv/breeze_kwin_deco.po index 54945e44c1..77d0ad8ebc 100644 --- a/local/recipes/kde/breeze/source/po/sv/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/sv/breeze_kwin_deco.po @@ -1,21 +1,21 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2024 Stefan Asserhäll +# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2024, 2025 Stefan Asserhäll msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2024-06-16 19:41+0200\n" -"Last-Translator: Stefan Asserhäll \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-21 01:34+0100\n" +"Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.08.3\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -88,7 +88,7 @@ msgid "General" msgstr "Allmänt" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Namn&listjustering:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Höger" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Knappstorlek:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Mycket liten" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "Liten" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "Normal" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "Stor" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Mycket stor" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Rita en cirkel omkring stängningsknapp" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Rita kant på maximerade fönster och fönster sida vid sida" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -190,93 +189,63 @@ msgstr "" "berör inte längre skärmkanterna." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Rita toning av namnlistens bakgrund" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Runda nedre hörn i fönster utan kanter" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Skuggor och kontur" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Skuggstorlek:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Ingen" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Skuggstyrka:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Skuggfärg:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Konturintensitet:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Av" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Låg" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Medium" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Hög" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Maximal" +msgid "Draw window outline" +msgstr "Rita fönsterkontur" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Fönsterspecifika alternativ" @@ -416,15 +385,39 @@ msgstr "Lägg till" msgid "Edit" msgstr "Redigera" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Konturintensitet:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Av" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Låg" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Medium" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Hög" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Maximal" + +#~ msgid "Round bottom corners" +#~ msgstr "Rundade nedre hörn" + #~ msgid "Si&ze:" #~ msgstr "S&torlek:" #~ msgid "Color:" #~ msgstr "Färg:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Lägg till grepp för att ändra storlek på fönster utan kant" - #~ msgid "Information about Selected Window" #~ msgstr "Information om valda fönster" diff --git a/local/recipes/kde/breeze/source/po/sv/breeze_style_config.po b/local/recipes/kde/breeze/source/po/sv/breeze_style_config.po index 4ab637a53a..c51da03f4e 100644 --- a/local/recipes/kde/breeze/source/po/sv/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/sv/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 20:04+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" diff --git a/local/recipes/kde/breeze/source/po/ta/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/ta/breeze_kwin_deco.po index c40fe82ddc..5a9c10aae7 100644 --- a/local/recipes/kde/breeze/source/po/ta/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/ta/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-12-01 21:53+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" @@ -88,7 +88,7 @@ msgid "General" msgstr "பொதுவானவை" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "தலைப்பின் &சீரமைப்பு:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "வலதில்" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&பட்டனின் அளவு:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "இருப்பதில் சிறியது" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "சிறியது" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "நடுத்தரமானது" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "பெரியது" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "மிகப்பெரியது" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "மூடுவதற்கான பட்டனைச் சுற்றி வட்டம் வரை" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "அதிகபட்ச பெரிதாக்கப்பட்டுள்ள சாளரங்களுக்கு விளிம்பை வரை" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -189,33 +188,40 @@ msgstr "" "உருள்பட்டைகளும் சாளரத்தை மூடும் பட்டன்களும் திரையின் ஓரத்தைத் தொடாதவாறு அமைக்கப்படும்." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "தலைப்புப்பட்டையின் பின்புல நிறத்தை சாயலிடு" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, fuzzy, kde-format +#| msgid "Add handle to resize windows with no border" +msgid "Round bottom corners of windows with no borders" +msgstr "விளிம்பில்லா சாளரங்களின் அளவை மாற்ற ஓர் பிடிப்பியை காட்டு" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "நிழல்கள்" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "ஏதுமில்லை" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -224,64 +230,27 @@ msgid "Shadow strength:" msgstr "அ&டர்த்தி:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "நிழல்கள்" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 -#, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, fuzzy, kde-format -#| msgctxt "@item:inlistbox Button size:" -#| msgid "Medium" -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "நடுத்தரமானது" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "" +#| msgid "Use window title" +msgid "Draw window outline" +msgstr "சாளர தலைப்பை பயன்படுத்து" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "தனிப்பட்ட சாளரங்களுக்கான அமைப்புகள்" @@ -421,15 +390,19 @@ msgstr "சேர்" msgid "Edit" msgstr "திருத்து" +#, fuzzy +#~| msgctxt "@item:inlistbox Button size:" +#~| msgid "Medium" +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "நடுத்தரமானது" + #~ msgid "Si&ze:" #~ msgstr "&அளவு:" #~ msgid "Color:" #~ msgstr "நிறம்:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "விளிம்பில்லா சாளரங்களின் அளவை மாற்ற ஓர் பிடிப்பியை காட்டு" - #~ msgid "Information about Selected Window" #~ msgstr "தேர்ந்தெடுத்துள்ள சாளரங்குறித்த விவரங்கள்" @@ -444,6 +417,3 @@ msgstr "திருத்து" #~ msgid "Use window class (whole application)" #~ msgstr "சாளர வகுப்பைப பயன்படுத்து (முழுச்செயலி)" - -#~ msgid "Use window title" -#~ msgstr "சாளர தலைப்பை பயன்படுத்து" diff --git a/local/recipes/kde/breeze/source/po/ta/breeze_style_config.po b/local/recipes/kde/breeze/source/po/ta/breeze_style_config.po index b3c3932454..ccc0b06c00 100644 --- a/local/recipes/kde/breeze/source/po/ta/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/ta/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-07 20:57+0200\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" diff --git a/local/recipes/kde/breeze/source/po/tg/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/tg/breeze_kwin_deco.po index 5f6bf88a83..56dad9a1ad 100644 --- a/local/recipes/kde/breeze/source/po/tg/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/tg/breeze_kwin_deco.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-10-01 09:56+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" @@ -88,7 +88,7 @@ msgid "General" msgstr "Умумӣ" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Москунии &сарлавҳа:" @@ -118,21 +118,20 @@ msgid "Right" msgstr "Рост" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Андозаи тугма:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -187,33 +186,39 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow size:" msgstr "Сояҳо" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Ҳеҷ чиз" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, fuzzy, kde-format #| msgctxt "strength of the shadow (from transparent to opaque)" #| msgid "S&trength:" @@ -222,62 +227,26 @@ msgid "Shadow strength:" msgstr "&Тавоноӣ:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, fuzzy, kde-format #| msgid "Shadows" msgid "Shadow color:" msgstr "Сояҳо" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" +msgid "Draw window outline" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "" diff --git a/local/recipes/kde/breeze/source/po/tg/breeze_style_config.po b/local/recipes/kde/breeze/source/po/tg/breeze_style_config.po index f58d2cca1b..c7a3f9f120 100644 --- a/local/recipes/kde/breeze/source/po/tg/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/tg/breeze_style_config.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-10-01 09:58+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" diff --git a/local/recipes/kde/breeze/source/po/tr/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/tr/breeze_kwin_deco.po index eed295d43d..61b4f83ab3 100644 --- a/local/recipes/kde/breeze/source/po/tr/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/tr/breeze_kwin_deco.po @@ -2,31 +2,31 @@ # This file is distributed under the same license as the PACKAGE package. # # Volkan Gezer , 2015, 2017. -# SPDX-FileCopyrightText: 2022, 2023, 2024 Emir SARI +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025 Emir SARI msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2024-05-19 23:04+0300\n" -"Last-Translator: Emir SARI \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 08:38+0300\n" +"Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.07.70\n" +"X-Generator: Lokalize 25.08.2\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format msgid "New Exception - Breeze Settings" -msgstr "Yeni İstisna - Esinti Ayarları" +msgstr "Yeni İstisna — Esinti Ayarları" #: config/breezeexceptionlistwidget.cpp:136 #, kde-format msgid "Edit Exception - Breeze Settings" -msgstr "İstisnayı Düzenle - Esinti Ayarları" +msgstr "İstisnayı Düzenle — Esinti Ayarları" #: config/breezeexceptionlistwidget.cpp:167 #, kde-format @@ -69,13 +69,13 @@ msgstr "Düzenli İfade" #: config/breezeexceptionmodel.cpp:36 config/ui/breezeexceptiondialog.ui:72 #, kde-format msgid "Window Title" -msgstr "Pencere Başlığı" +msgstr "Pencere başlığı" #. i18n: ectx: property (text), item, widget (QComboBox, exceptionType) #: config/breezeexceptionmodel.cpp:40 config/ui/breezeexceptiondialog.ui:67 #, kde-format msgid "Window Class Name" -msgstr "Pencere Sınıf Adı" +msgstr "Pencere sınıfı adı" #: config/breezeexceptionmodel.cpp:55 #, kde-format @@ -89,7 +89,7 @@ msgid "General" msgstr "Genel" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Baş&lık hizalama:" @@ -119,21 +119,20 @@ msgid "Right" msgstr "Sağ" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "&Düğme boyutu:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Minik" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -141,8 +140,8 @@ msgstr "Küçük" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -150,8 +149,8 @@ msgstr "Orta" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -159,27 +158,27 @@ msgstr "Büyük" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" -msgstr "Çok Büyük" +msgstr "Çok büyük" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Kapat düğmesi etrafına bir daire çiz" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Ekranı kaplayan ve döşenen pencerelerde kenarlıkları çiz" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -191,93 +190,63 @@ msgstr "" "düğmelerinin konumları kaydırılacak ve ekran kenarlarına dokunmayacaklardır." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Başlık çubuğu arka plan geçişini çiz" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Kenarlığı olmayan pencerelerin alt köşelerini yuvarla" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Gölgeler ve Dış Hat" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Gölge boyutu:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Yok" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Gölge sertliği:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Gölge rengi:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Dış hat yoğunluğu:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Kapalı" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Düşük" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Orta" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Yüksek" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "En Yüksek" +msgid "Draw window outline" +msgstr "Pencere ana hattını çiz" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Pencereye Özgü Geçersiz Kılmalar" @@ -335,21 +304,21 @@ msgstr "Pencere başlık çubuğunu gizle" #, kde-format msgctxt "@item:inlistbox Border size:" msgid "No Border" -msgstr "Kenarlık Yok" +msgstr "Kenarlık yok" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:112 #, kde-format msgctxt "@item:inlistbox Border size:" msgid "No Side Borders" -msgstr "Kenarda Çizgiler Yok" +msgstr "Kenarda çizgiler yok" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:117 #, kde-format msgctxt "@item:inlistbox Border size:" msgid "Tiny" -msgstr "Çok Küçük" +msgstr "Çok küçük" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:122 @@ -370,7 +339,7 @@ msgstr "Büyük" #, kde-format msgctxt "@item:inlistbox Border size:" msgid "Very Large" -msgstr "Çok Büyük" +msgstr "Çok büyük" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:137 @@ -384,7 +353,7 @@ msgstr "Kocaman" #, kde-format msgctxt "@item:inlistbox Border size:" msgid "Very Huge" -msgstr "En Büyük" +msgstr "En büyük" #. i18n: ectx: property (text), item, widget (QComboBox, borderSizeComboBox) #: config/ui/breezeexceptiondialog.ui:147 @@ -417,15 +386,39 @@ msgstr "Ekle" msgid "Edit" msgstr "Düzenle" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Dış hat yoğunluğu:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Kapalı" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Düşük" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Orta" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Yüksek" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "En Yüksek" + +#~ msgid "Round bottom corners" +#~ msgstr "Alt köşeleri yuvarla" + #~ msgid "Si&ze:" #~ msgstr "Bo&yut:" #~ msgid "Color:" #~ msgstr "Renk:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Kenarlığı olmayan pencereleri boyutlandırmak için bir tutamaç ekle" - #~ msgid "Information about Selected Window" #~ msgstr "Seçilen Pencere Hakkında Bilgi" diff --git a/local/recipes/kde/breeze/source/po/tr/breeze_style_config.po b/local/recipes/kde/breeze/source/po/tr/breeze_style_config.po index b947853e33..3d507041c7 100644 --- a/local/recipes/kde/breeze/source/po/tr/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/tr/breeze_style_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 13:55+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" diff --git a/local/recipes/kde/breeze/source/po/uk/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/uk/breeze_kwin_deco.po index b8ba231955..7a09f8c262 100644 --- a/local/recipes/kde/breeze/source/po/uk/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/uk/breeze_kwin_deco.po @@ -3,22 +3,22 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Yuri Chornoivan , 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023. +# Yuri Chornoivan , 2014, 2015, 2016, 2017, 2018, 2020, 2022, 2023, 2025. msgid "" msgstr "" "Project-Id-Version: breeze_kwin_deco\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2023-03-05 19:08+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-10-29 10:13+0200\n" "Last-Translator: Yuri Chornoivan \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Lokalize 20.12.0\n" +"X-Generator: Lokalize 23.04.3\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -91,7 +91,7 @@ msgid "General" msgstr "Загальне" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "Ви&рівнювання заголовка:" @@ -121,21 +121,20 @@ msgid "Right" msgstr "Праворуч" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "Р&озмір кнопок:" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "Крихітний" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -143,8 +142,8 @@ msgstr "Малий" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -152,8 +151,8 @@ msgstr "Середній" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -161,27 +160,27 @@ msgstr "Великий" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "Дуже великий" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "Малювати коло навколо кнопки закриття" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "Малювати обрамлення для максимізованих і мозаїчних вікон" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "посунуто так, щоб вони не торкалися країв екрана." #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "Малювати градієнт тла смужки заголовка" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "Закруглені нижні кути вікон без рамок" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "Тіні і контури" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "Розмір тіні:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "Немає" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "Потужність тіні:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "Колір тіні:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "Інтенсивність контуру:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "Вимкнено" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "Низька" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "Середня" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "Висока" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "Максимальна" +msgid "Draw window outline" +msgstr "Малювати контури вікон" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "Параметри для окремих вікон" @@ -419,15 +388,39 @@ msgstr "Додати" msgid "Edit" msgstr "Змінити" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "Інтенсивність контуру:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "Вимкнено" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "Низька" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "Середня" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "Висока" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "Максимальна" + +#~ msgid "Round bottom corners" +#~ msgstr "Заокруглені нижні кути" + #~ msgid "Si&ze:" #~ msgstr "&Розмір:" #~ msgid "Color:" #~ msgstr "Колір:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "Додавати елемент керування для зміни розмірів вікон без обрамлення" - #~ msgid "Information about Selected Window" #~ msgstr "Інформація про вибране вікно" diff --git a/local/recipes/kde/breeze/source/po/uk/breeze_style_config.po b/local/recipes/kde/breeze/source/po/uk/breeze_style_config.po index b91f3517c1..a3aa8a6fbe 100644 --- a/local/recipes/kde/breeze/source/po/uk/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/uk/breeze_style_config.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: breeze_style_config\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-08-29 09:10+0300\n" "Last-Translator: Fracture dept \n" "Language-Team: Ukrainian \n" diff --git a/local/recipes/kde/breeze/source/po/zh_CN/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/zh_CN/breeze_kwin_deco.po index 61abc8dab6..8ccd2ad8fe 100644 --- a/local/recipes/kde/breeze/source/po/zh_CN/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/zh_CN/breeze_kwin_deco.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -88,7 +88,7 @@ msgid "General" msgstr "常规" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "标题对齐(&L):" @@ -118,21 +118,20 @@ msgid "Right" msgstr "居右" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "按钮大小(&U):" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "超小" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -140,8 +139,8 @@ msgstr "小" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -149,8 +148,8 @@ msgstr "中等" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -158,27 +157,27 @@ msgstr "大" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "超大" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" msgstr "在关闭按钮周围绘制圆圈" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "最大化和拼贴窗口绘制边框" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -189,93 +188,63 @@ msgstr "" "关闭按钮将移动位置以避免触碰屏幕边缘" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "绘制标题栏背景色渐变" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "无边框窗口的圆角底部边角" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "阴影和外框" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "阴影大小:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "无" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "阴影强度:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "阴影颜色:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "外框亮度:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "关闭" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "低" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "中" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "高" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "最大" +msgid "Draw window outline" +msgstr "绘制窗口轮廓" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "特定窗口优先规则" diff --git a/local/recipes/kde/breeze/source/po/zh_CN/breeze_style_config.po b/local/recipes/kde/breeze/source/po/zh_CN/breeze_style_config.po index 059217aeb1..2a088c94ab 100644 --- a/local/recipes/kde/breeze/source/po/zh_CN/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/zh_CN/breeze_style_config.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff --git a/local/recipes/kde/breeze/source/po/zh_TW/breeze_kwin_deco.po b/local/recipes/kde/breeze/source/po/zh_TW/breeze_kwin_deco.po index c47c75db02..551a0fd46e 100644 --- a/local/recipes/kde/breeze/source/po/zh_TW/breeze_kwin_deco.po +++ b/local/recipes/kde/breeze/source/po/zh_TW/breeze_kwin_deco.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-04-06 00:39+0000\n" -"PO-Revision-Date: 2025-03-10 18:53+0900\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-11-13 21:52+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" "Language: zh_TW\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 24.12.3\n" +"X-Generator: Lokalize 25.11.70\n" #: config/breezeexceptionlistwidget.cpp:88 #, kde-format @@ -92,7 +92,7 @@ msgid "General" msgstr "一般" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: config/ui/breezeconfigurationui.ui:42 +#: config/ui/breezeconfigurationui.ui:45 #, kde-format msgid "Tit&le alignment:" msgstr "標題對齊(&L):" @@ -122,21 +122,20 @@ msgid "Right" msgstr "置右" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: config/ui/breezeconfigurationui.ui:92 +#: config/ui/breezeconfigurationui.ui:79 #, kde-format msgid "B&utton size:" msgstr "按鍵大小(&U):" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) -#: config/ui/breezeconfigurationui.ui:106 +#: config/ui/breezeconfigurationui.ui:90 #, kde-format msgid "Tiny" msgstr "極小" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:111 -#: config/ui/breezeconfigurationui.ui:224 +#: config/ui/breezeconfigurationui.ui:95 config/ui/breezeconfigurationui.ui:202 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Small" @@ -144,8 +143,8 @@ msgstr "小" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:116 -#: config/ui/breezeconfigurationui.ui:229 +#: config/ui/breezeconfigurationui.ui:100 +#: config/ui/breezeconfigurationui.ui:207 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Medium" @@ -153,8 +152,8 @@ msgstr "中等" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:121 -#: config/ui/breezeconfigurationui.ui:234 +#: config/ui/breezeconfigurationui.ui:105 +#: config/ui/breezeconfigurationui.ui:212 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Large" @@ -162,27 +161,27 @@ msgstr "大" #. i18n: ectx: property (text), item, widget (QComboBox, buttonSize) #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:126 -#: config/ui/breezeconfigurationui.ui:239 +#: config/ui/breezeconfigurationui.ui:110 +#: config/ui/breezeconfigurationui.ui:217 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "Very Large" msgstr "非常大" #. i18n: ectx: property (text), widget (QCheckBox, outlineCloseButton) -#: config/ui/breezeconfigurationui.ui:134 +#: config/ui/breezeconfigurationui.ui:118 #, kde-format msgid "Draw a circle around close button" -msgstr "在關閉按鈕外面畫一個圈" +msgstr "在關閉按鈕周圍繪製圓圈" #. i18n: ectx: property (text), widget (QCheckBox, drawBorderOnMaximizedWindows) -#: config/ui/breezeconfigurationui.ui:141 +#: config/ui/breezeconfigurationui.ui:125 #, kde-format msgid "Draw border on maximized and tiled windows" msgstr "為最大化與並排視窗描繪邊界" #. i18n: ectx: property (text), widget (QLabel, drawBorderOnMaximizedWindowsHelpLabel) -#: config/ui/breezeconfigurationui.ui:166 +#: config/ui/breezeconfigurationui.ui:150 #, kde-format msgid "" "This setting will allow you to resize from window edges touching screen " @@ -193,93 +192,63 @@ msgstr "" "閉按鈕會稍微移動而不會碰到螢幕邊界。" #. i18n: ectx: property (text), widget (QCheckBox, drawBackgroundGradient) -#: config/ui/breezeconfigurationui.ui:178 +#: config/ui/breezeconfigurationui.ui:162 #, kde-format msgid "Draw titlebar background gradient" msgstr "繪製標題列背景漸層" +#. i18n: ectx: property (text), widget (QCheckBox, roundedCorners) +#: config/ui/breezeconfigurationui.ui:169 +#, kde-format +msgid "Round bottom corners of windows with no borders" +msgstr "將沒有邊框的視窗的底部角落圓角化" + #. i18n: ectx: attribute (title), widget (QWidget, tab_4) -#: config/ui/breezeconfigurationui.ui:199 +#: config/ui/breezeconfigurationui.ui:177 #, kde-format msgid "Shadows and Outline" msgstr "陰影與外框" #. i18n: ectx: property (text), widget (QLabel, label) -#: config/ui/breezeconfigurationui.ui:205 +#: config/ui/breezeconfigurationui.ui:186 #, kde-format msgid "Shadow size:" msgstr "陰影大小:" #. i18n: ectx: property (text), item, widget (QComboBox, shadowSize) -#: config/ui/breezeconfigurationui.ui:219 +#: config/ui/breezeconfigurationui.ui:197 #, kde-format msgctxt "@item:inlistbox Button size:" msgid "None" msgstr "無" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: config/ui/breezeconfigurationui.ui:247 +#: config/ui/breezeconfigurationui.ui:225 #, kde-format msgctxt "strength of the shadow (from transparent to opaque)" msgid "Shadow strength:" msgstr "陰影強度:" #. i18n: ectx: property (suffix), widget (QSpinBox, shadowStrength) -#: config/ui/breezeconfigurationui.ui:260 +#: config/ui/breezeconfigurationui.ui:235 #, no-c-format, kde-format msgid "%" msgstr "%" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: config/ui/breezeconfigurationui.ui:286 +#: config/ui/breezeconfigurationui.ui:248 #, kde-format msgid "Shadow color:" msgstr "陰影色彩:" -#. i18n: ectx: property (text), widget (QLabel, label_6) -#: config/ui/breezeconfigurationui.ui:299 +#. i18n: ectx: property (text), widget (QCheckBox, drawOutline) +#: config/ui/breezeconfigurationui.ui:258 #, kde-format -msgctxt "outline intensity" -msgid "Outline intensity:" -msgstr "外框強度:" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:313 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Off" -msgstr "關閉" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:318 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Low" -msgstr "低" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:323 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Medium" -msgstr "中" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:328 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "High" -msgstr "高" - -#. i18n: ectx: property (text), item, widget (QComboBox, outlineIntensity) -#: config/ui/breezeconfigurationui.ui:333 -#, kde-format -msgctxt "@item:inlistbox Outline intensity:" -msgid "Maximum" -msgstr "最高" +msgid "Draw window outline" +msgstr "繪製視窗外框" #. i18n: ectx: attribute (title), widget (QWidget, tab_3) -#: config/ui/breezeconfigurationui.ui:355 +#: config/ui/breezeconfigurationui.ui:266 #, kde-format msgid "Window-Specific Overrides" msgstr "視窗指定覆寫" @@ -419,15 +388,36 @@ msgstr "新增" msgid "Edit" msgstr "編輯" +#~ msgctxt "outline intensity" +#~ msgid "Outline intensity:" +#~ msgstr "外框強度:" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Off" +#~ msgstr "關閉" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Low" +#~ msgstr "低" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Medium" +#~ msgstr "中" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "High" +#~ msgstr "高" + +#~ msgctxt "@item:inlistbox Outline intensity:" +#~ msgid "Maximum" +#~ msgstr "最高" + #~ msgid "Si&ze:" #~ msgstr "大小(&Z):" #~ msgid "Color:" #~ msgstr "顏色:" -#~ msgid "Add handle to resize windows with no border" -#~ msgstr "新增把手來調整沒有邊框的視窗" - #~ msgid "Information about Selected Window" #~ msgstr "選取的視窗的資訊" diff --git a/local/recipes/kde/breeze/source/po/zh_TW/breeze_style_config.po b/local/recipes/kde/breeze/source/po/zh_TW/breeze_style_config.po index dfc28186f5..3f0a1fd8d7 100644 --- a/local/recipes/kde/breeze/source/po/zh_TW/breeze_style_config.po +++ b/local/recipes/kde/breeze/source/po/zh_TW/breeze_style_config.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-08-29 00:40+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-10 01:11+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1024x768.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1024x768.png deleted file mode 100644 index 395992e2a6..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1024x768.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1080x1920.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1080x1920.png deleted file mode 100644 index 621ca1f694..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1080x1920.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1280x1024.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1280x1024.png deleted file mode 100644 index 77aafc7f6e..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1280x1024.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1280x800.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1280x800.png deleted file mode 100644 index c0009db6ad..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1280x800.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1366x768.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1366x768.png deleted file mode 100644 index 9b79457e04..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1366x768.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1440x2960.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1440x2960.png new file mode 100644 index 0000000000..77be81e40e Binary files /dev/null and b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1440x2960.png differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1440x900.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1440x900.png deleted file mode 100644 index cd83aedbbd..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1440x900.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1600x1200.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1600x1200.png deleted file mode 100644 index 4023fee5a2..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1600x1200.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1680x1050.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1680x1050.png deleted file mode 100644 index 262487946f..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1680x1050.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1920x1080.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1920x1080.png deleted file mode 100644 index 180036d040..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1920x1080.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1920x1200.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1920x1200.png deleted file mode 100644 index 80a57c6c5b..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/1920x1200.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/2560x1440.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/2560x1440.png deleted file mode 100644 index ea03a75adc..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/2560x1440.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/2560x1600.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/2560x1600.png deleted file mode 100644 index a8801d5b41..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/2560x1600.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3200x1800.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3200x1800.png deleted file mode 100644 index 6c18e1ea98..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3200x1800.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3200x2000.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3200x2000.png deleted file mode 100644 index a203166d1b..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3200x2000.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/360x720.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/360x720.png deleted file mode 100644 index 899aefd223..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/360x720.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3840x2160.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3840x2160.png deleted file mode 100644 index a35ba9ab08..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/3840x2160.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/440x247.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/440x247.png deleted file mode 100644 index 34dc58b525..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/440x247.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/5120x2880.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/5120x2880.png index c835e39bb5..882397f896 100644 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/5120x2880.png and b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/5120x2880.png differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/720x1440.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/720x1440.png deleted file mode 100644 index 90aeb8d76a..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/720x1440.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/7680x2160.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/7680x2160.png index 4432e39501..3d6f22873d 100644 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/7680x2160.png and b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/7680x2160.png differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/base_size.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/base_size.png deleted file mode 100644 index edd7f71b96..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/base_size.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/vertical_base_size.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/vertical_base_size.png deleted file mode 100644 index edd7f71b96..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images/vertical_base_size.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1024x768.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1024x768.png deleted file mode 100644 index cfc7d7351b..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1024x768.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1080x1920.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1080x1920.png deleted file mode 100644 index dba44231cd..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1080x1920.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1280x1024.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1280x1024.png deleted file mode 100644 index c389c7f3ad..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1280x1024.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1280x800.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1280x800.png deleted file mode 100644 index ef5addae47..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1280x800.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1366x768.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1366x768.png deleted file mode 100644 index f75e178805..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1366x768.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1440x2960.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1440x2960.png new file mode 100644 index 0000000000..6aeaa924e4 Binary files /dev/null and b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1440x2960.png differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1440x900.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1440x900.png deleted file mode 100644 index 94194d93ba..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1440x900.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1600x1200.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1600x1200.png deleted file mode 100644 index 982bbc057b..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1600x1200.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1680x1050.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1680x1050.png deleted file mode 100644 index 245506cdd9..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1680x1050.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1920x1080.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1920x1080.png deleted file mode 100644 index d45bde4d73..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1920x1080.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1920x1200.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1920x1200.png deleted file mode 100644 index a117b4935f..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/1920x1200.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/2560x1440.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/2560x1440.png deleted file mode 100644 index fc729da46f..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/2560x1440.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/2560x1600.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/2560x1600.png deleted file mode 100644 index 02750323d3..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/2560x1600.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3200x1800.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3200x1800.png deleted file mode 100644 index c4b6ae589f..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3200x1800.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3200x2000.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3200x2000.png deleted file mode 100644 index 80ce5638f7..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3200x2000.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/360x720.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/360x720.png deleted file mode 100644 index 49100a0729..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/360x720.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3840x2160.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3840x2160.png deleted file mode 100644 index 988587327e..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/3840x2160.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/440x247.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/440x247.png deleted file mode 100644 index 453fbb4894..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/440x247.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/5120x2880.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/5120x2880.png index 07b84797b5..e1c66508f2 100644 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/5120x2880.png and b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/5120x2880.png differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/720x1440.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/720x1440.png deleted file mode 100644 index cc50e092c6..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/720x1440.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/7680x2160.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/7680x2160.png index 402e597515..945928ca61 100644 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/7680x2160.png and b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/7680x2160.png differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/base_size.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/base_size.png deleted file mode 100644 index b10b20cbec..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/base_size.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/vertical_base_size.png b/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/vertical_base_size.png deleted file mode 100644 index b10b20cbec..0000000000 Binary files a/local/recipes/kde/breeze/source/wallpapers/Next/contents/images_dark/vertical_base_size.png and /dev/null differ diff --git a/local/recipes/kde/breeze/source/wallpapers/Next/metadata.json b/local/recipes/kde/breeze/source/wallpapers/Next/metadata.json index 4b92b9dd4f..388aaa4503 100644 --- a/local/recipes/kde/breeze/source/wallpapers/Next/metadata.json +++ b/local/recipes/kde/breeze/source/wallpapers/Next/metadata.json @@ -10,6 +10,7 @@ "Name[ca]": "Krystian Zajdel", "Name[cs]": "Krystian Zajdel", "Name[de]": "Krystian Zajdel", + "Name[el]": "Krystian Zajdel", "Name[en_GB]": "Krystian Zajdel", "Name[eo]": "Krystian Zajdel", "Name[es]": "Krystian Zajdel", @@ -29,46 +30,50 @@ "Name[nl]": "Krystian Zajdel", "Name[nn]": "Krystian Zajdel", "Name[pl]": "Krystian Zajdel", + "Name[pt]": "Krystian Zajdel", "Name[pt_BR]": "Krystian Zajdel", + "Name[ro]": "Krystian Zajdel", "Name[ru]": "Krystian Zajdel", "Name[sa]": "क्रिस्टियन ज़ाजदेल", + "Name[sk]": "Krystian Zajdel", "Name[sl]": "Krystian Zajdel", + "Name[sq]": "Krystian Zajdel", "Name[sv]": "Krystian Zajdel", "Name[tr]": "Krystian Zajdel", "Name[uk]": "Krystian Zajdel", - "Name[x-test]": "xxKrystian Zajdelxx", "Name[zh_CN]": "Krystian Zajdel", "Name[zh_TW]": "Krystian Zajdel" } ], "Id": "Next", "License": "CC-BY-SA-4.0", - "Name": "Nuvole", - "Name[ar]": "نوفول", - "Name[bg]": "Nuvole", - "Name[ca@valencia]": "Nuvole", - "Name[ca]": "Nuvole", - "Name[eo]": "Nuvole", - "Name[es]": "Nuvole", - "Name[eu]": "Nuvole", - "Name[fi]": "Nuvole", - "Name[fr]": "Nuvole", - "Name[gl]": "Nuvole", - "Name[he]": "חדשני", - "Name[hu]": "Nuvole", - "Name[ia]": "Nuvole", - "Name[is]": "Nuvole", - "Name[it]": "Nuvole", - "Name[ka]": "Nuvole", - "Name[nl]": "Nuvole", - "Name[pl]": "Nuvole", - "Name[pt_BR]": "Nuvole", - "Name[sl]": "Nuvole", - "Name[sv]": "Nuvole", - "Name[tr]": "Nuvole", - "Name[uk]": "Nuvole", - "Name[x-test]": "xxNuvolexx", - "Name[zh_CN]": "Nuvole 星云", - "Name[zh_TW]": "Nuvole" + "Name": "Waterfall", + "Name[ar]": "شلال", + "Name[bg]": "Водопад", + "Name[ca@valencia]": "Waterfall", + "Name[ca]": "Waterfall", + "Name[cs]": "Vodopád", + "Name[de]": "Wasserfall", + "Name[es]": "Cascada", + "Name[eu]": "Ur-jauzia", + "Name[fr]": "Cascade", + "Name[he]": "מפל", + "Name[hu]": "Vízesés", + "Name[ia]": "Cascada", + "Name[it]": "Cascata", + "Name[ka]": "ჩანჩქერი", + "Name[ko]": "폭포", + "Name[lt]": "Krioklys", + "Name[nl]": "Waterfall", + "Name[nn]": "Foss", + "Name[pt_BR]": "Cascata", + "Name[ro]": "Cascadă", + "Name[ru]": "Водопад", + "Name[sk]": "Vodopád", + "Name[sl]": "Slap", + "Name[tr]": "Şelâle", + "Name[uk]": "Водоспад", + "Name[zh_CN]": "Waterfall 飞瀑", + "Name[zh_TW]": "瀑布" } } diff --git a/local/recipes/kde/breeze/source/wallpapers/generate_wallpaper_sizes.py b/local/recipes/kde/breeze/source/wallpapers/generate_wallpaper_sizes.py deleted file mode 100644 index f294ec4e02..0000000000 --- a/local/recipes/kde/breeze/source/wallpapers/generate_wallpaper_sizes.py +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python3 - -import logging -from multiprocessing import cpu_count -from multiprocessing.pool import Pool -from subprocess import check_output, run -from pathlib import Path -from itertools import chain -from typing import Final - -def is_oxipng_installed(): - try: - # Run 'oxipng --version' to check if installed - run(["oxipng", "--version"], check=True) - return True - except FileNotFoundError: - # Command not found, oxipng is not installed - return False - -try: - import PIL - from PIL import Image -except ImportError: - logging.critical("Please install the python PIL library.") - logging.critical("e.g.: python3 -m pip install PIL") - exit() - -sizes = { - 'horizontal': ( - (5120, 2880), (3840, 2160), (3200, 2000), (3200, 1800), - (2560, 1600), (2560, 1440), (1920, 1200), (1920, 1080), - (1680, 1050), (1600, 1200), (1440, 900), (1366, 768), - (1280, 1024), (1280, 800), (1024, 768), (440, 247) - ), - 'vertical': ((720, 1440), (360, 720), (1080, 1920)) - } - -templates = { - 'horizontal': ('base_size.png', 'base_size.jpg'), - 'vertical': ('vertical_base_size.png', 'vertical_base_size.jpg') - } - -PIL_VERSION: Final = tuple(map(int, PIL.__version__.split("."))) - - -def resize_and_save_image(file: Path, image: Image, width: int, height: int) -> None: - """ - Image.LANCZOS is deprecated since 9.1.0 https://pillow.readthedocs.io/en/stable/deprecations.html#constants - """ - logging.info(f'Generating {width}x{height}') - - base_dir, extension = file.parent, file.suffix - base_width, base_height = image.size - - if width / height > base_width / base_height: - crop = int(base_height - height / (width / base_width)) // 2 - box = (0, crop, base_width, base_height - crop) - elif width / height < base_width / base_height: - crop = int(base_width - width / (height / base_height)) // 2 - box = (crop, 0, base_width - crop, base_height) - else: - box = None - - if PIL_VERSION >= (9, 1): - resized_image = image.resize((width, height), Image.Resampling.LANCZOS, box) - else: - resized_image = image.resize((width, height), Image.LANCZOS, box) - - if extension.lower() == ".png": - target = base_dir / f'{width}x{height}{extension}' - resized_image.save(target, compress_level=0) - run(["oxipng", str(base_dir / f'{width}x{height}{extension}')]) - else: - resized_image.save(base_dir / f'{width}x{height}{extension}', - quality=90, optimize=True, subsampling=1) - -argument_list: list[tuple] = [] - -for orientation in ('horizontal', 'vertical'): - for file in chain(*map(Path().rglob, templates[orientation])): - image = Image.open(file) - image.load() - for width, height in sizes[orientation]: - argument_list.append((file, image, width, height)) - if file.suffix.lower() == ".png" and not is_oxipng_installed(): - logging.critical("Please install 'oxipng', which is required to compress the png images.") - exit() - -with Pool(processes=cpu_count()) as pool: - pool.starmap(resize_and_save_image, argument_list) diff --git a/local/recipes/kde/kde-cli-tools/source.tar b/local/recipes/kde/kde-cli-tools/source.tar new file mode 100644 index 0000000000..9a51e65e98 Binary files /dev/null and b/local/recipes/kde/kde-cli-tools/source.tar differ diff --git a/local/recipes/kde/kde-cli-tools/source/.gitlab-ci.yml b/local/recipes/kde/kde-cli-tools/source/.gitlab-ci.yml index f6e2f69c03..5df13dfdab 100644 --- a/local/recipes/kde/kde-cli-tools/source/.gitlab-ci.yml +++ b/local/recipes/kde/kde-cli-tools/source/.gitlab-ci.yml @@ -6,3 +6,6 @@ include: file: - /gitlab-templates/linux-qt6.yml - /gitlab-templates/freebsd-qt6.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml + - /gitlab-templates/linux-qt6-next.yml diff --git a/local/recipes/kde/kde-cli-tools/source/.kde-ci.yml b/local/recipes/kde/kde-cli-tools/source/.kde-ci.yml index a75b77cf3d..aa57506fca 100644 --- a/local/recipes/kde/kde-cli-tools/source/.kde-ci.yml +++ b/local/recipes/kde/kde-cli-tools/source/.kde-ci.yml @@ -2,8 +2,8 @@ # SPDX-License-Identifier: CC0-1.0 Dependencies: -- 'on': ['@all'] - 'require': + - 'on': ['@all'] + 'require': 'frameworks/extra-cmake-modules': '@latest-kf6' 'frameworks/kcmutils': '@latest-kf6' 'frameworks/kcompletion': '@latest-kf6' @@ -18,4 +18,5 @@ Dependencies: 'frameworks/kwindowsystem': '@latest-kf6' 'frameworks/kparts': '@latest-kf6' Options: - require-passing-tests-on: [ 'Linux/Qt5', 'FreeBSD/Qt5'] + require-passing-tests-on: ['Linux/Qt5', 'FreeBSD/Qt5'] + enable-lsan: True diff --git a/local/recipes/kde/kde-cli-tools/source/.redbear-src-version b/local/recipes/kde/kde-cli-tools/source/.redbear-src-version new file mode 100644 index 0000000000..2dd517aa61 --- /dev/null +++ b/local/recipes/kde/kde-cli-tools/source/.redbear-src-version @@ -0,0 +1 @@ +6.7.2 diff --git a/local/recipes/kde/kde-cli-tools/source/CMakeLists.txt b/local/recipes/kde/kde-cli-tools/source/CMakeLists.txt index 67fd9d60f0..5b6d8dc7cb 100644 --- a/local/recipes/kde/kde-cli-tools/source/CMakeLists.txt +++ b/local/recipes/kde/kde-cli-tools/source/CMakeLists.txt @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) project(KDE-CLI-Tools) -set(PROJECT_VERSION "6.3.4") +set(PROJECT_VERSION "6.7.2") -set(QT_MIN_VERSION "6.7.0") -set(KF6_MIN_VERSION "6.10.0") +set(QT_MIN_VERSION "6.10.0") +set(KF6_MIN_VERSION "6.26.0") set(KDE_COMPILERSETTINGS_LEVEL "5.82") set(CMAKE_CXX_STANDARD 20) @@ -46,6 +46,10 @@ if (NOT Qt6Test_FOUND) set(BUILD_TESTING OFF CACHE BOOL "Build the testing tree.") endif() +if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0") + find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) +endif() + find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS Config IconThemes @@ -67,7 +71,7 @@ add_definitions(-DQT_NO_URL_CAST_FROM_STRING) option(WITH_X11 "Build kdesu and kstart with X11 support." ON) -ecm_set_disabled_deprecation_versions(QT 6.7.0 KF 6.4.0) +ecm_set_disabled_deprecation_versions(QT 6.11.0 KF 6.23.0) include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -126,6 +130,6 @@ kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES}) kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT) -#ki18n_install(po) +ki18n_install(po) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff --git a/local/recipes/kde/kde-cli-tools/source/keditfiletype/CMakeLists.txt b/local/recipes/kde/kde-cli-tools/source/keditfiletype/CMakeLists.txt index 3453727199..1bf7e38f6d 100644 --- a/local/recipes/kde/kde-cli-tools/source/keditfiletype/CMakeLists.txt +++ b/local/recipes/kde/kde-cli-tools/source/keditfiletype/CMakeLists.txt @@ -18,55 +18,47 @@ set(libfiletypes_SRCS multiapplydialog.cpp newtypedlg.cpp kserviceselectdlg.cpp - filetypedetails.h - filegroupdetails.h - kservicelistwidget.h - typeslistitem.h - typeslistitembase.h - typeslistproxyitem.h - typeslisttreewidget.h - mimetypedata.h - mimetypewriter.h - multiapplydialog.h - newtypedlg.h - kserviceselectdlg.h ) -########### next target ############### +########### library ############### -set(kcm_filetypes_SRCS filetypesview.cpp filetypesview.h ${libfiletypes_SRCS}) +add_library(libfiletypes STATIC ${libfiletypes_SRCS}) +# Needed for KDE Invent CI +set_target_properties(libfiletypes PROPERTIES POSITION_INDEPENDENT_CODE TRUE) +target_link_libraries(libfiletypes + PUBLIC + KF6::I18n + KF6::KIOWidgets # KOpenWithDialog, KBuildSycocaProgressDialog + PRIVATE + KF6::ConfigCore + KF6::IconThemes + KF6::IconWidgets + KF6::Parts + Qt::DBus +) + +########### KCM ############### + +set(kcm_filetypes_SRCS filetypesview.cpp filetypesview.h) kcoreaddons_add_plugin(kcm_filetypes SOURCES ${kcm_filetypes_SRCS} INSTALL_NAMESPACE "plasma/kcms/systemsettings_qwidgets") kcmutils_generate_desktop_file(kcm_filetypes) target_link_libraries(kcm_filetypes - KF6::ConfigCore - KF6::IconThemes - KF6::IconWidgets - KF6::I18n + libfiletypes KF6::KCMUtils - KF6::KIOWidgets # KOpenWithDialog, KBuildSycocaProgressDialog - KF6::Parts - Qt::DBus ) -########### next target ############### +########### command line utility ############### -set(keditfiletype_SRCS keditfiletype.cpp keditfiletype.h ${libfiletypes_SRCS}) +set(keditfiletype_SRCS keditfiletype.cpp keditfiletype.h) add_executable(keditfiletype ${keditfiletype_SRCS}) target_compile_definitions(keditfiletype PRIVATE -DPROJECT_VERSION="${PROJECT_VERSION}") target_link_libraries(keditfiletype - KF6::ConfigCore - KF6::IconThemes - KF6::IconWidgets - KF6::KIOWidgets # KOpenWithDialog, KBuildSycocaProgressDialog + libfiletypes KF6::WindowSystem - KF6::I18n - KF6::Service - KF6::Parts - Qt::DBus ) install_compat_symlink(keditfiletype) diff --git a/local/recipes/kde/kde-cli-tools/source/keditfiletype/filetypedetails.cpp b/local/recipes/kde/kde-cli-tools/source/keditfiletype/filetypedetails.cpp index 2087648b9e..4bd37d6ae1 100644 --- a/local/recipes/kde/kde-cli-tools/source/keditfiletype/filetypedetails.cpp +++ b/local/recipes/kde/kde-cli-tools/source/keditfiletype/filetypedetails.cpp @@ -208,7 +208,8 @@ void FileTypeDetails::addExtension() bool ok; QString ext = QInputDialog::getText(this, i18n("Add New Extension"), i18n("Extension:"), QLineEdit::Normal, QStringLiteral("*."), &ok); if (ok) { - extensionLB->addItem(ext); + // Unicode chars that mark the entire string as LtR, to prevent "*.foo" turning into "foo.*" in RtL languages + extensionLB->addItem(QChar(0x2066) + ext + QChar(0x2069)); QStringList patt = m_mimeTypeData->patterns(); patt += ext; m_mimeTypeData->setPatterns(patt); @@ -226,7 +227,7 @@ void FileTypeDetails::removeExtension() return; } QStringList patt = m_mimeTypeData->patterns(); - patt.removeAll(extensionLB->currentItem()->text()); + patt.removeAll(extensionLB->currentItem()->text().mid(1).chopped(1)); m_mimeTypeData->setPatterns(patt); delete extensionLB->takeItem(extensionLB->currentRow()); updateRemoveButton(); @@ -342,7 +343,10 @@ void FileTypeDetails::setMimeTypeData(MimeTypeData *mimeTypeData, TypesListItem m_autoEmbedGroup->button(mimeTypeData->autoEmbed())->setChecked(true); m_rbGroupSettings->setEnabled(mimeTypeData->canUseGroupSetting()); - extensionLB->addItems(mimeTypeData->patterns()); + for (const auto &pattern : mimeTypeData->patterns()) { + // Unicode chars that mark the entire string as LtR, to prevent "*.foo" turning into "foo.*" in RtL languages + extensionLB->addItem(QChar(0x2066) + pattern + QChar(0x2069)); + } updateAskSave(); } diff --git a/local/recipes/kde/kde-cli-tools/source/keditfiletype/kcm_filetypes.json b/local/recipes/kde/kde-cli-tools/source/keditfiletype/kcm_filetypes.json index 8a1c092a2b..b05f61bff7 100644 --- a/local/recipes/kde/kde-cli-tools/source/keditfiletype/kcm_filetypes.json +++ b/local/recipes/kde/kde-cli-tools/source/keditfiletype/kcm_filetypes.json @@ -24,6 +24,7 @@ "Description[it]": "Configura le associazioni dei file", "Description[ka]": "ფაილების ასოციაციების მორგება", "Description[ko]": "파일 연결 설정", + "Description[lt]": "Konfigūruoti failų sąsajas", "Description[lv]": "Konfigurēt datņu asociācijas", "Description[nl]": "Hier kunt u de bestandsassociaties instellen", "Description[nn]": "Set opp filtilknytingar", @@ -37,9 +38,9 @@ "Description[sl]": "Nastavi datotečne asociacije", "Description[sv]": "Anpassa filbindningar", "Description[tr]": "Dosya ilişkilendirmelerini yapılandırın", + "Description[ug]": "ھۆججەت باغلىنىشىنى سەپلەيدۇ", "Description[uk]": "Налаштування прив’язки файлів", "Description[vi]": "Cấu hình liên kết tệp", - "Description[x-test]": "xxConfigure file associationsxx", "Description[zh_CN]": "配置文件关联", "Description[zh_TW]": "設定檔案關聯", "Icon": "preferences-desktop-filetype-association", @@ -132,7 +133,6 @@ "Name[uz]": "Fayl turi bilan\\nbogʻliqlar", "Name[vi]": "Liên kết tệp", "Name[wa]": "Assoçnaedje des fitchîs", - "Name[x-test]": "xxFile Associationsxx", "Name[xh]": "Uyelemaniso Lwefayile", "Name[zh_CN]": "文件关联", "Name[zh_TW]": "檔案關聯" @@ -182,7 +182,6 @@ "X-KDE-Keywords[pa]": "ਫਾਈਲਕਿਸਮ,ਫਾਈਲ ਸਬੰਧ,ਮਾਈਮ ਕਿਸਮ,ਫਾਈਲ ਪੈਟਰਨ,ਫਾਈਲਾਂ,ਪੈਟਰਨ", "X-KDE-Keywords[pl]": "rodzaje plików,skojarzenia plików,rodzaje mime,wzorce plików,pliki,wzorzec", "X-KDE-Keywords[pt_BR]": "Tipos de arquivos,Associações de arquivos,Tipos MIME,Padrões de arquivos,Arquivos,Padrão", - "X-KDE-Keywords[ro]": "tipuri de fișier,asociere de fișiere,tipuri mime,fișiere,model", "X-KDE-Keywords[ru]": "Filetypes,File Associations,Mime Types,File Patterns,Files,Pattern,типы файлов,привязки файлов,типы MIME,шаблоны файлов,файлы,шаблон", "X-KDE-Keywords[sa]": "Filetypes,File Associations,Mime प्रकार,फाइल पैटर्न,फाइल,पैटर्न", "X-KDE-Keywords[sk]": "Filetypes,File Associations,Mime Typy,File Patterns,Súbory,Vzory", @@ -194,11 +193,10 @@ "X-KDE-Keywords[sv]": "Filtyper,Filbindningar,Mime-typer,Filmönster,Filer,Mönster", "X-KDE-Keywords[tg]": "Намуди файлҳо,Муносибати файлҳо,Навъи қиёфа,Қолабҳои файл,Файлҳо,Қолабҳо", "X-KDE-Keywords[tr]": "dosya türleri,dosya ilişkilendirmeleri,mime türleri,dosya dizgileri,dosya desenleri,dosya örüntüleri,dosyalar,desen,dizgi,örüntü", - "X-KDE-Keywords[ug]": "ھۆججەت تىپى، ھۆججەت مۇناسىۋەتلىرى، Mime تىپلىرى، ھۆججەت ئەندىزىلىرى، ھۆججەتلەر، ئەندىزە", + "X-KDE-Keywords[ug]": "ھۆججەت تۈرى، ھۆججەت مۇناسىۋەتلىرى، Mime تىپلىرى، ھۆججەت ئەندىزىلىرى، ھۆججەتلەر، ئەندىزە", "X-KDE-Keywords[uk]": "Filetypes,File Associations,Mime Types,File Patterns,Files,Pattern,файл,файли,типи файлів,тип,прив’язка,прив’язування,відповідність,взірці,шаблон,файли,взірець,файла", "X-KDE-Keywords[vi]": "Kiểu tệp,Tệp tương ứng,Kiểu MIME,Mẫu tệp,Tệp, Mẫu,Filetypes,File Associations,Mime Types,File Patterns,Files,Pattern", "X-KDE-Keywords[wa]": "Sôres di fitchîs,assoçnaedjes des fitchîs,assoçnaedjes di fitchîs,sôres mime,patrons di fitchîs,patron d' fitchîs,modeles di fitchîs,fitchîs,patron,modele", - "X-KDE-Keywords[x-test]": "xxFiletypesxx,xxFile Associationsxx,xxMime Typesxx,xxFile Patternsxx,xxFilesxx,xxPatternxx", "X-KDE-Keywords[zh_CN]": "Filetypes,File Associations,Mime Types,File Patterns,Files,Pattern,文件类型,文件关联,后缀名,文件", "X-KDE-Keywords[zh_TW]": "Filetypes,File Associations,Mime Types,File Patterns,Files,Pattern", "X-KDE-ParentApp": "kcontrol", diff --git a/local/recipes/kde/kde-cli-tools/source/keditfiletype/org.kde.keditfiletype.desktop b/local/recipes/kde/kde-cli-tools/source/keditfiletype/org.kde.keditfiletype.desktop index 2f59a73e9f..5d68132dfb 100644 --- a/local/recipes/kde/kde-cli-tools/source/keditfiletype/org.kde.keditfiletype.desktop +++ b/local/recipes/kde/kde-cli-tools/source/keditfiletype/org.kde.keditfiletype.desktop @@ -18,10 +18,11 @@ Name[gl]=Editor de tipos de ficheiro Name[he]=עורך סוגי קבצים Name[hu]=Fájltípusszerkesztő Name[ia]=Editor de typo de file -Name[is]=Ritill fyrir skrárgerðir +Name[is]=Ritill fyrir skráategundir Name[it]=Editor dei tipi di file Name[ka]=ფაილის ტიპის რედაქტორი Name[ko]=파일 형식 편집기 +Name[lt]=Failo tipų redaktorius Name[lv]=Datņu tipa redaktors Name[nl]=Bewerker van bestandstype Name[nn]=Filtyperedigering @@ -36,9 +37,9 @@ Name[sl]=Urejevalnik vrst datotek Name[sv]=Filtypeditor Name[ta]=கோப்புவகை திருத்தி Name[tr]=Dosya Türü Düzenleyicisi +Name[ug]=ھۆججەت تۈرى تەھرىرلىگۈچ Name[uk]=Редактор типів файлів Name[vi]=Trình biên tập kiểu tệp -Name[x-test]=xxFile Type Editorxx Name[zh_CN]=文件类型编辑器 Name[zh_TW]=檔案類型編輯工具 GenericName=File Type Editor @@ -64,11 +65,11 @@ GenericName[hsb]=Wobdźěłar za družinu dataje GenericName[hu]=Fájltípusszerkesztő GenericName[ia]=Editor de typo de file GenericName[id]=Pengedit Tipe File -GenericName[is]=Ritill fyrir skrárgerðir +GenericName[is]=Ritill fyrir skráategundir GenericName[it]=Editor dei tipi di file GenericName[ka]=ფაილის ტიპის რედაქტორი GenericName[ko]=파일 형식 편집기 -GenericName[lt]=Failų tipų redaktorius +GenericName[lt]=Failo tipų redaktorius GenericName[lv]=Datņu tipa redaktors GenericName[nl]=Bewerker van bestandstype GenericName[nn]=Filtyperedigering @@ -84,9 +85,9 @@ GenericName[sv]=Filtypeditor GenericName[ta]=கோப்புவகை திருத்தி GenericName[tg]=Муҳаррири навъи файл GenericName[tr]=Dosya Türü Düzenleyicisi +GenericName[ug]=ھۆججەت تۈرى تەھرىرلىگۈچ GenericName[uk]=Редактор типів файлів GenericName[vi]=Trình biên tập kiểu tệp -GenericName[x-test]=xxFile Type Editorxx GenericName[zh_CN]=文件类型编辑器 GenericName[zh_TW]=檔案類型編輯工具 Exec=keditfiletype diff --git a/local/recipes/kde/kde-cli-tools/source/keditfiletype/tests/CMakeLists.txt b/local/recipes/kde/kde-cli-tools/source/keditfiletype/tests/CMakeLists.txt index eb70f6b62f..1478f9a667 100644 --- a/local/recipes/kde/kde-cli-tools/source/keditfiletype/tests/CMakeLists.txt +++ b/local/recipes/kde/kde-cli-tools/source/keditfiletype/tests/CMakeLists.txt @@ -17,3 +17,8 @@ target_link_libraries(filetypestest Qt::Gui Qt::Test ) + +add_test(NAME kcm_smoketest COMMAND kcmshell6 --smoke-test kcm_filetypes) +set_tests_properties(kcm_smoketest PROPERTIES + ENVIRONMENT_MODIFICATION QT_PLUGIN_PATH=path_list_prepend:${CMAKE_BINARY_DIR}/bin +) diff --git a/local/recipes/kde/kde-cli-tools/source/kinfo/kinfo b/local/recipes/kde/kde-cli-tools/source/kinfo/kinfo index cad080e625..42083a78b6 100644 --- a/local/recipes/kde/kde-cli-tools/source/kinfo/kinfo +++ b/local/recipes/kde/kde-cli-tools/source/kinfo/kinfo @@ -4,6 +4,11 @@ export QT_LOGGING_RULES="*=false" +if ! kcmshell6 --list | grep -q kcm_about-distro; then + echo "kinfocenter is not installed" >&2 + exit 1 +fi + if [ "$XDG_SESSION_TYPE" = "wayland" ]; then exec kcmshell6 kcm_about-distro --args dump --platform wayland elif [ -n "${DISPLAY+x}" ]; then diff --git a/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.cpp b/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.cpp index 5f97fd4058..6d94d2fa4e 100644 --- a/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.cpp +++ b/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.cpp @@ -10,6 +10,7 @@ #include #include +#include #include #include #ifndef KIOCORE_ONLY @@ -122,6 +123,13 @@ static void usage() .toLocal8Bit() .constData()); + puts(i18nc("The argument is the command \"kioclient mkdir\"", + " %1 'url'\n" + " # Creates a directory at 'url'\n", + "kioclient mkdir") + .toLocal8Bit() + .constData()); + puts(i18nc("The argument is the command \"kioclient stat\"", " %1 'url'\n" " # Shows all of the available information for 'url'\n\n", @@ -168,11 +176,11 @@ int main(int argc, char **argv) KLocalizedString::setApplicationDomain(QByteArrayLiteral("kioclient")); - QString appName = QStringLiteral("kioclient"); QString programName = i18n("KIO Client"); QString description = i18n("Command-line tool for network-transparent operations"); QString version = QLatin1String(PROJECT_VERSION); - KAboutData data(appName, programName, version, description, KAboutLicense::LGPL_V2); + KAboutData data(QString(), programName, version, description, KAboutLicense::LGPL_V2); + data.setDesktopFileName(QString()); KAboutData::setApplicationData(data); QCommandLineParser parser; @@ -340,6 +348,20 @@ bool ClientApp::doRemove(const QStringList &urls) return m_ok; } +bool ClientApp::doMkdir(const QStringList &urls) +{ + KIO::Job *job = KIO::mkdir(makeURL(urls.first()), s_jobFlags); + if (!s_interactive) { + job->setUiDelegate(nullptr); + job->setUiDelegateExtension(nullptr); + } + + connect(job, &KJob::result, this, &ClientApp::slotResult); + + qApp->exec(); + return m_ok; +} + bool ClientApp::doStat(const QStringList &urls) { KIO::Job *job = KIO::stat(makeURL(urls.first()), @@ -481,6 +503,11 @@ bool ClientApp::doIt(const QCommandLineParser &parser) QStringList args = parser.positionalArguments(); args.removeFirst(); return doStat(args); + } else if (command == QLatin1String("mkdir")) { + checkArgumentCount(argc, 2, 2); // mkdir + QStringList args = parser.positionalArguments(); + args.removeFirst(); + return doMkdir(args); } else { fputs(i18nc("@info:shell", "%1: Syntax error, unknown command '%2'\n", qAppName(), command).toLocal8Bit().data(), stderr); return false; diff --git a/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.h b/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.h index a205166459..abdd213b31 100644 --- a/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.h +++ b/local/recipes/kde/kde-cli-tools/source/kioclient/kioclient.h @@ -40,6 +40,7 @@ private: bool doList(const QStringList &urls); bool doRemove(const QStringList &urls); bool doStat(const QStringList &urls); + bool doMkdir(const QStringList &urls); static bool m_ok; }; diff --git a/local/recipes/kde/kde-cli-tools/source/kstart/kstart.cpp b/local/recipes/kde/kde-cli-tools/source/kstart/kstart.cpp index 0c3082dddf..8764a068c4 100644 --- a/local/recipes/kde/kde-cli-tools/source/kstart/kstart.cpp +++ b/local/recipes/kde/kde-cli-tools/source/kstart/kstart.cpp @@ -80,6 +80,8 @@ int main(int argc, char *argv[]) KAboutLicense::GPL, i18n("(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)")); + aboutData.setDesktopFileName(QString()); + aboutData.addAuthor(i18n("Matthias Ettrich"), QString(), QStringLiteral("ettrich@kde.org")); aboutData.addAuthor(i18n("David Faure"), QString(), QStringLiteral("faure@kde.org")); aboutData.addAuthor(i18n("Richard J. Moore"), QString(), QStringLiteral("rich@kde.org")); diff --git a/local/recipes/kde/kde-cli-tools/source/plasma-open-settings/org.kde.plasma.settings.open.desktop b/local/recipes/kde/kde-cli-tools/source/plasma-open-settings/org.kde.plasma.settings.open.desktop index 5ba6865753..c0054a9c14 100644 --- a/local/recipes/kde/kde-cli-tools/source/plasma-open-settings/org.kde.plasma.settings.open.desktop +++ b/local/recipes/kde/kde-cli-tools/source/plasma-open-settings/org.kde.plasma.settings.open.desktop @@ -26,6 +26,7 @@ Name[is]=Opna kerfisstillingar Name[it]=Apri le impostazioni di sistema Name[ka]=სისტემის პარამეტრების ფანჯრის გახსნა Name[ko]=시스템 설정 열기 +Name[lt]=Atverti sistemos nuostatas Name[lv]=Atvērt sistēmas iestatījumus Name[nl]=Systeeminstellingen openen Name[nn]=Opna system­oppsett @@ -40,9 +41,9 @@ Name[sl]=Odpri sistemske nastavitve Name[sv]=Öppna systeminställningar Name[ta]=கணினி அமைப்புகளைத் திற Name[tr]=Sistem Ayarlarını Aç +Name[ug]=سىستېما تەڭشىكىنى ئاچ Name[uk]=Відкрити «Системні параметри» Name[vi]=Mở Thiết lập hệ thống -Name[x-test]=xxOpen System Settingsxx Name[zh_CN]=打开系统设置 Name[zh_TW]=開啟系統設定 MimeType=x-scheme-handler/systemsettings diff --git a/local/recipes/kde/kde-cli-tools/source/po/af/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/af/kcm_filetypes.po index 6ace6c320b..1890c5bbaf 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/af/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/af/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes stable\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2005-11-22 11:27+0200\n" "Last-Translator: Frikkie Thirion \n" "Language-Team: AFRIKAANS \n" @@ -182,13 +182,13 @@ msgstr "Voeg by Nuwe Uitbreiding" msgid "Extension:" msgstr "Uitbreiding:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "Redigeer Lêer Tipe: %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Gebruik instellings vir '%1' groep" diff --git a/local/recipes/kde/kde-cli-tools/source/po/af/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/af/kdesu.po index a8c490e130..72cee1f321 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/af/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/af/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu stable\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2005-06-15 11:29+0200\n" "Last-Translator: JUANITA FRANZ \n" "Language-Team: AFRIKAANS \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/af/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/af/kstart.po index a2ac86e45b..4592355efa 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/af/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/af/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart stable\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2005-09-13 15:33+0200\n" "Last-Translator: Kobus Venter \n" "Language-Team: AFRIKAANS \n" @@ -43,37 +43,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Opdrag om uit te voer" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nee opdrag gespesifiseer" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ar/kbroadcastnotification.po index eeda809812..09bfc45b67 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/kbroadcastnotification.po @@ -1,13 +1,13 @@ -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the kde-cli-tools package. +# SPDX-FileCopyrightText: 2022, 2025 Zayed Al-Saidi # -# Zayed Al-Saidi , 2022. msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" -"PO-Revision-Date: 2022-10-27 11:49+0400\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-08-05 12:52+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -15,7 +15,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Lokalize 23.08.5\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -30,14 +31,14 @@ msgstr "zayed.alsaidi@gmail.com" #: main.cpp:22 #, kde-format msgid "Broadcast Notifications" -msgstr "بث الإخطارات" +msgstr "بث الإشعارات" #: main.cpp:24 #, kde-format msgid "" "A tool that emits a notification for all users by sending it on the system " "DBus" -msgstr "أداة تبث الإخطارات لكل المستخدمين عن طريق إرسالها في باص النظام" +msgstr "أداة تبث الإشعارات لكل المستخدمين عن طريق إرسالها في باص النظام" #: main.cpp:26 #, kde-format @@ -53,12 +54,12 @@ msgstr "اسم التطبيق المراد ربطه بهذا الإشعار" #: main.cpp:36 #, kde-format msgid "A brief one-line summary of the notification" -msgstr "ملخص من سطر واحد لهذا الإخطار" +msgstr "ملخص من سطر واحد لهذا الإشعار" #: main.cpp:38 #, kde-format msgid "Icon for the notification" -msgstr "أيقونة الإخطار" +msgstr "أيقونة الإشعار" #: main.cpp:42 #, kde-format @@ -66,20 +67,20 @@ msgid "" "A comma-separated list of user IDs this notification should be sent to. If " "omitted, the notification will be sent to all users." msgstr "" -"قائمة بمعرفات المستخدمين مفصولة بفاصلة الذين سيستلموا هذا الإخطار. إذا لم " +"قائمة بمعرفات المستخدمين مفصولة بفاصلة الذين سيستلموا هذا الإشعار. إذا لم " "تحدد سيرسل إلى جميع المستخدمين." #: main.cpp:45 #, kde-format msgid "Timeout for the notification" -msgstr "مهلة الإخطار" +msgstr "مهلة الإشعار" #: main.cpp:47 #, kde-format msgid "Keep the notification in the history until the user closes it" -msgstr "أبقِ الإخطار في التاريخ حتى يغلقه المستخدم" +msgstr "أبقِ الإشعار في التاريخ حتى يغلقه المستخدم" #: main.cpp:50 #, kde-format msgid "The actual notification body text" -msgstr "نص محتوى الفعلي للإخطار" +msgstr "نص محتوى الفعلي للإشعار" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ar/kcm_filetypes.po index 5e191c14c4..45399d72b1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/kcm_filetypes.po @@ -1,18 +1,18 @@ # translation of filetypes.po to Arabic # translation of filetypes.po to +# SPDX-FileCopyrightText: 2008, 2022, 2023, 2025 zayed # محمد سعد Mohamed SAAD , 2006. # AbdulAziz AlSharif , 2007. # Youssef Chahibi , 2007. # محمد الحرقان , 2008. # Anas Husseini , 2008. -# zayed , 2008, 2022, 2023. # Abdalrahim Fakhouri , 2012. msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" -"PO-Revision-Date: 2023-05-21 09:54+0400\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" +"PO-Revision-Date: 2025-08-03 12:03+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -20,7 +20,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Lokalize 23.08.5\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -84,7 +85,7 @@ msgid "" "text files." msgstr "" "هذا مربّع يحتوي على قائمة نماذج يمكن استعمالها للتعرف على ملفات من نوع ما. " -"مثلا، النموذج *.txt مرتبط بنوع الملفات النصية ؛ تعتبر كل الملفات المنتهية بـ " +"مثلا، النموذج *.txt مرتبط بنوع الملفات النصية؛ تعتبر كل الملفات المنتهية بـ " "'.txt' بأنها ملفات نصية." #: filetypedetails.cpp:87 filetypesview.cpp:86 kservicelistwidget.cpp:105 @@ -168,12 +169,12 @@ msgstr "أضف امتداد جديد" msgid "Extension:" msgstr "الامتداد:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "نوع الملف %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "استخدم الإعدادات للمجموعة '%1'" @@ -191,7 +192,7 @@ msgid "" "name as it appears in the list." msgstr "" "أدخل جزء من نمط اسم الملف، وستظهر أنواع الملفات المطابقة لنمط الملف فقط في " -"القائمة ؛ أو أدخل جزء من اسم نوع الملف كما يظهر في القائمة." +"القائمة؛ أو أدخل جزء من اسم نوع الملف كما يظهر في القائمة." #: filetypesview.cpp:71 multiapplydialog.cpp:27 #, kde-format @@ -234,7 +235,7 @@ msgstr "ا&سترجع" #: filetypesview.cpp:383 #, kde-format msgid "Revert this file type to its initial system-wide definition" -msgstr "استرجع نوع الملف هذا إلى تعريفه الافتراضي" +msgstr "استرجع نوع الملف هذا إلى تعريفه المبدئي" #: filetypesview.cpp:385 #, kde-format @@ -245,8 +246,8 @@ msgid "" "minimize the chances of them being used (but the file type determination " "from file contents can still end up using them)." msgstr "" -"انقر هنا لاسترجاع حالة هذا النوع إلى تعريفه الافتراضي system-wide و إلغاء أي " -"تعديل عليه. لاحظ أن نوع ملف system-wide لا يمكن إزالته ، ولكن يمكن تفريغ " +"انقر هنا لاسترجاع حالة هذا النوع إلى تعريفه المبدئي system-wide و إلغاء أي " +"تعديل عليه. لاحظ أن نوع ملف system-wide لا يمكن إزالته، ولكن يمكن تفريغ " "قائمة أنماطه لتقلل من احتمالية استخدمها (لكن تحديد نوع الملف من محتويات ملف " "يمكن أن ينتهي باستخدامها على كل حال)." @@ -264,8 +265,8 @@ msgid "" "of them being used (but the file type determination from file contents can " "still end up using them)." msgstr "" -"انقر هنا لحذف هذا النوع بالكامل. هذا ممكن للأنواع المعرفة بواسطة المستخدم ، " -"أما نوع ملف system-wide لا يمكن إزالته ، ولكن يمكن تفريغ قائمة أنماطه لتقلل " +"انقر هنا لحذف هذا النوع بالكامل. هذا ممكن للأنواع المعرفة بواسطة المستخدم، " +"أما نوع ملف system-wide لا يمكن إزالته، ولكن يمكن تفريغ قائمة أنماطه لتقلل " "من احتمالية استخدمها (لكن تحديد نوع الملف من محتويات ملف يمكن أن ينتهي " "باستخدامها على كل حال)." @@ -451,13 +452,13 @@ msgstr "طبّق ترتيب التفضيل الحالي على أنواع الم #, kde-format msgctxt "No applications associated with this file type" msgid "None" -msgstr "بدون" +msgstr "لا يوجد" #: kservicelistwidget.cpp:167 #, kde-format msgctxt "No components associated with this file type" msgid "None" -msgstr "بدون" +msgstr "لا يوجد" #: kserviceselectdlg.cpp:26 #, kde-format @@ -496,7 +497,7 @@ msgid "" "category and you type 'custom' here, the file type 'image/custom' will be " "created." msgstr "" -"أكتب اسم نوع الملف. فعلى سبيل المثال ، إذا كنت قد اخترت صورة 'كفئة وكتبت " +"أكتب اسم نوع الملف. فعلى سبيل المثال، إذا كنت قد اخترت صورة 'كفئة وكتبت " "'خاص' هنا سينشئ نوع الملف وسيكون 'صوره/خاص." #~ msgid "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ar/kde-inhibit.po index 37d0cc90a5..f95ed9a333 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-11-29 06:20+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Lokalize 23.08.5\n" #: main.cpp:26 @@ -41,7 +41,7 @@ msgstr "امنع تصحيح الألوان (الوضع الليلي)" #: main.cpp:38 #, kde-format msgid "Inhibit notifications (Do not disturb)" -msgstr "امنع الإخطارات (عدم الإزعاج)" +msgstr "امنع الإشعارات (عدم الإزعاج)" #: main.cpp:41 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ar/kdesu.po index 9031ff5b50..881758d3ea 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/kdesu.po @@ -7,14 +7,14 @@ # محمد سعد Mohamed SAAD , 2006. # AbdulAziz AlSharif , 2007. # Youssef Chahibi , 2007. -# zayed , 2008, 2022. +# SPDX-FileCopyrightText: 2008, 2022, 2025 zayed # Abdalrahim Fakhouri , 2012. msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" -"PO-Revision-Date: 2022-10-27 11:53+0400\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-08-09 18:37+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -22,7 +22,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Lokalize 23.08.5\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -61,7 +62,7 @@ msgstr "Geert Jansen" #: kdesu.cpp:97 #, kde-format msgid "Maintainer" -msgstr "المشرف على المشروع" +msgstr "الصائن" #: kdesu.cpp:98 #, kde-format @@ -155,7 +156,7 @@ msgstr "لا يمكن تنفيذ الأمر '%1'." #: kdesu.cpp:158 #, kde-format msgid "Cannot execute command '%1'. It contains invalid characters." -msgstr "لا يمكن تنفيذ الأمر '%1'. يحويى على محارف غير صالحة." +msgstr "لا يمكن تنفيذ الأمر '%1'. يحوي على محارف غير صالحة." #: kdesu.cpp:232 #, kde-format @@ -165,12 +166,12 @@ msgstr "أولوية غير شرعية: %1" #: kdesu.cpp:253 #, kde-format msgid "No command specified." -msgstr "لم يتم تحديد أمر." +msgstr "لم يحدّد أمر." #: kdesu.cpp:356 #, kde-format msgid "Su returned with an error.\n" -msgstr "تم استرجاع خطأ من su \n" +msgstr "أرجع su خطأ.\n" #: kdesu.cpp:384 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ar/kioclient.po index 4843b508de..1e93a425ff 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/kioclient.po @@ -4,14 +4,14 @@ # This file is distributed under the same license as the PACKAGE package. # Youssef Chahibi , 2007. # Abdulaziz AlSharif , 2007. -# zayed , 2008, 2023. +# SPDX-FileCopyrightText: 2008, 2023, 2025 zayed # Abdalrahim G. Fakhouri , 2012. msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2023-03-16 12:38+0400\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-08-09 14:09+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -19,7 +19,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Lokalize 23.08.5\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -31,7 +32,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "zayed.alsaidi@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +41,7 @@ msgstr "" "\n" "الجملة:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -52,7 +53,7 @@ msgstr "" " # يفتح قائمة الخصائص\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -67,12 +68,12 @@ msgstr "" " %1 'عنوان' ['mimetype']\n" " # يحاول فتح المستند ذو العنوان 'عنوان'، في التطبيق\n" " # الملحق به في كِيدِي. يمكن حذف 'mimetype'.\n" -" # في هذه الحالة سيتم التعرف على mimetype\n" -" # تلقائي. بطبيعة الحال العنوان قد يكون عنوان مسند\n" +" # في هذه الحالة سيُتعرف على mimetype\n" +" # آليًّا. بطبيعة الحال العنوان قد يكون عنوان مسند\n" " # أو قد يكون *.desktop file.\n" " # يمكن أن يكون المسار 'عنوان' تنفيذيًّا أيضاً.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +92,7 @@ msgstr "" " # تتوفر النسخة الأقصر 'kioclient mv'.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -103,11 +104,11 @@ msgid "" msgstr "" " %1 ['مصدر']\n" " # ينسخ عنوان 'مصدر' إلى الموقع الذي يحدده المستخدم'.\n" -" # قد يكون 'مصدر' قائمة عناوين ، إذا لم يحدد سيتم طلب\n" +" # قد يكون 'مصدر' قائمة عناوين، إذا لم يحدد سيطلب\n" " # عنوان.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -121,7 +122,7 @@ msgstr "" " # تنسخ عنوان 'مصدر' إلى 'مقصد'.\n" " # قد يكون 'مصدر' قائمة عناوين.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -133,7 +134,7 @@ msgstr "" " # تطبع محتويات ملف 'عنوان' إلى الخرج القياسي\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -145,7 +146,7 @@ msgstr "" " # تسرد محتويات مجلد 'عنوان' إلى الخرج القياسي\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -161,7 +162,17 @@ msgstr "" " # النسخة الأقصر 'kioclient rm' متوفرة أيضا.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'عنوان'\n" +" # ينشئ دليل في العنوان المعطى\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -173,7 +184,7 @@ msgstr "" " # تعرض كل المعلومات المتوفرة عن 'عنوان' \n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -185,12 +196,12 @@ msgstr "" " # يشغّل مطلق التطبيقات البسيط\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** أمثلة:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -203,7 +214,7 @@ msgstr "" " // المخصص لهذا النوع من الملفات\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -214,7 +225,7 @@ msgstr "" " // تفتح الرابط في التطبيق المبدئي المخصص لأف تي بي\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -225,7 +236,7 @@ msgstr "" " // تشغل emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -238,22 +249,22 @@ msgstr "" " الملفات المبدئي. مريحة جدا.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "عميل KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "أداة سطر أوامر لعمليات العابرة للشبكة." -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "استعمل صناديق الرسائل وغيرها من الإشعارات الأصلية" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -262,80 +273,80 @@ msgstr "" "استخدام غير تفاعلي: لا حواريات. إذا لم ترغب في اتصال مرئي، استخدم --platform " "offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "استبدال الهدف إذا كان موجوداً (لأوامر النسخ والنقل)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "ملف أو عنوان" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "عناوين…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "مصدر العنوان أو العناوين" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "وجهة العنوان" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "رابط" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "أظهر الأوامر المتوفرة" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "الأمر (انظر --الأوامر)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "أمر" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "معطيات الأمر" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: خطأ في الصياغة: المتحولات ليست كافية\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: خطأ في الصياغة: معطيات كثيرة\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "المقصد حيث ستُنزّل الملفات" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: صيغة خاطئة: الأمر غير معروف '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ar/kmimetypefinder.po index e6b536794f..7465f6f4c1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/kmimetypefinder.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-01-05 22:24+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ar/kstart.po index 30ad2e8450..28c72e7c4f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/kstart.po @@ -7,13 +7,13 @@ # محمد سعد Mohamed SAAD , 2006. # AbdulAziz AlSharif , 2007. # Youssef Chahibi , 2007. -# SPDX-FileCopyrightText: 2008, 2022, 2023, 2024 zayed +# SPDX-FileCopyrightText: 2008, 2022, 2023, 2024, 2025 zayed msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" -"PO-Revision-Date: 2024-02-12 12:21+0400\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" +"PO-Revision-Date: 2025-08-06 13:53+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -21,7 +21,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Lokalize 23.08.5\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -48,41 +49,41 @@ msgstr "أداة لتشغيل التطبيقات" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" -msgstr "أمر ليتم تنفيذه" +msgstr "الأمر لتنفيذه" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "بديل لـ : اسم ملف سطح مكتب لتشغيله، على سبيل المثال org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "وصلة اختيارية لتمريرها إلى التطبيق عند استخدام --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" -msgstr "لم يتم تحديد أمر" +msgstr "لم يحدّد أمر" #~ msgid "" #~ "Alternative to : desktop file path to start. D-Bus service will " diff --git a/local/recipes/kde/kde-cli-tools/source/po/ar/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ar/plasma-open-settings.po index 68b5ac5ace..08af2330f3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ar/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ar/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-10-27 11:43+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -40,7 +40,7 @@ msgstr "أداة لبدء وحدات إعدادات النظام" #: main.cpp:34 #, kde-format msgid "(c) 2021, The KDE Developers" -msgstr "© 2021 ، لمطوري كِيدِي" +msgstr "© 2021، لمطوري كِيدِي" #: main.cpp:67 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ast/kbroadcastnotification.po index d97a22a42d..8137ebfee4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-10-31 20:02+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ast/kcm_filetypes.po index 39516fdb07..84a186610b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-11-07 21:26+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" @@ -151,12 +151,12 @@ msgstr "" msgid "Extension:" msgstr "Estensión:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ast/kde-inhibit.po index 077ee6cc89..8b83511f2b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-03-27 23:50+0100\n" "Last-Translator: Enol P. \n" "Language-Team: Asturian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ast/kdesu.po index aa67f08927..520056424d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-10-31 20:02+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ast/kioclient.po index 0f8391fed6..54d5c31c5f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2023-11-07 21:26+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" @@ -27,14 +27,14 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "alministradores@softastur.org" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" "Syntax:\n" msgstr "" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -43,7 +43,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -56,7 +56,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -68,7 +68,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -79,7 +79,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -90,7 +90,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -99,7 +99,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -108,7 +108,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -119,7 +119,15 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -128,7 +136,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -137,12 +145,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Exemplos:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -151,7 +159,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -159,7 +167,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -167,7 +175,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -176,102 +184,102 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ast/kmimetypefinder.po index 0663deeab9..456db7b3c0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-05-03 21:25+0200\n" "Last-Translator: Enol P. \n" "Language-Team: \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ast/kstart.po index 4e6ec4b2e0..c1ad61d19e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-10-31 20:02+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" @@ -42,37 +42,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ast/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ast/plasma-open-settings.po index 9d342ce513..bc2c01bba5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ast/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ast/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-10-31 20:02+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/az/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/az/kbroadcastnotification.po index a1c10aa007..e6b120f1a4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/az/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/az/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2020-05-13 00:06+0400\n" "Last-Translator: Xəyyam Qocayev \n" "Language-Team: Azerbaijani\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/az/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/az/kcm_filetypes.po index 09114bf4d5..d99fbf7f22 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/az/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/az/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2022-07-03 14:28+0400\n" "Last-Translator: Kheyyam \n" "Language-Team: Azerbaijani \n" @@ -168,12 +168,12 @@ msgstr "Yeni uzantı əlavə etmək" msgid "Extension:" msgstr "Uzantı:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Fayl növü %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' qrup üçün ayarları istifadə edin" diff --git a/local/recipes/kde/kde-cli-tools/source/po/az/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/az/kdesu.po index f6e4442bbc..96f2a4af90 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/az/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/az/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-10-29 17:51+0400\n" "Last-Translator: Kheyyam Gojayev \n" "Language-Team: Azerbaijani \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/az/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/az/kioclient.po index 674b433d15..a1e8a9c696 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/az/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/az/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2022-04-22 17:04+0400\n" "Last-Translator: Kheyyam Gojayev \n" "Language-Team: Azerbaijani \n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "xxmn77@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "Söz düzümü:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -48,7 +48,7 @@ msgstr "" " # 'url'-un xassələri dialoqunu açır \n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -67,7 +67,7 @@ msgstr "" " # 'url' sənədə, iş masası və ya icra faylına keçid\n" " # ola bilər.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -86,7 +86,7 @@ msgstr "" " # Həmçinin qısa 'kioclient mv' versiyası əlçatandı.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -102,7 +102,7 @@ msgstr "" " # bir URL tələb olunacaqdır.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -118,7 +118,7 @@ msgstr "" " # Həmçinin qısa 'kioclient cp' versiyası əlçatandır.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -130,7 +130,7 @@ msgstr "" " # 'url' faylının tərkiblərini standart çıxışa daxil edir\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -142,7 +142,7 @@ msgstr "" " # 'url' kataloqunun tərkiblərinin 'standart çıxış'da sıralayır\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -158,7 +158,23 @@ msgstr "" " # Həmçinin qısa 'kioclient rm' versiyası əlçatandır.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # 'url'-un xassələri dialoqunu açır \n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -170,7 +186,7 @@ msgstr "" " # 'url' üçün bütün əlçatan məlumatları göstərir\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -182,12 +198,12 @@ msgstr "" " # Əsas tətbiq başladıcısını açır\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Nümunələr:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -200,7 +216,7 @@ msgstr "" " // faylı açır\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -211,7 +227,7 @@ msgstr "" " // ftp:// sxemi üçün URL-u standart işləyici ilə açır\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -222,7 +238,7 @@ msgstr "" " // emacs başladılır\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -235,23 +251,23 @@ msgstr "" " // açır. Çox rahatdır.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Şəffaf şəbəkə əməliyyatları üçün əmrlər sətri" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" "İsmarıc qutusunu və digər bildirişləri çatdırma vasitələrini istifadə etmək" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -260,80 +276,80 @@ msgstr "" "Qeyri-interaltiv istifadə: ismarıc dialoqları yoxdur. Əgər qrafik altsistem " "olmadan qoşulmaq istəsəniz --platform offscreen əmrini istifadə edin" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Mövcud olan faylı əvəz etmək (kopyalamaq və köçürmək üç.)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Fayl və ya URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "ünvanlar..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Mənbənin URL və ya URL-ları" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL təyinat ünvanı" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "ünvan" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Mövcud əmrləri göstərmək" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Əmr (mövcud olan əmrlər siyahısını --commands əmri ilə almaq olar)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "əmr" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Əmr üçün arqumentlər" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Söz düzümü xətası, kifayət qədər arqumentlər yoxdu\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Söz düzümü xətası, arqumentlər həddindən çoxdur\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Alınan faylların saxlanılacağı ünvan" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Söz düzümü xətası, naməlum əmr '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/az/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/az/kmimetypefinder.po index 5dca822926..74a9764da8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/az/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/az/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2020-06-04 15:49+0400\n" "Last-Translator: Xəyyam Qocayev \n" "Language-Team: Azerbaijani\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/az/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/az/kstart.po index 7ee8ad0cc8..c7f54daa21 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/az/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/az/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-02-18 20:46+0400\n" "Last-Translator: Kheyyam \n" "Language-Team: Azerbaijani \n" @@ -42,33 +42,33 @@ msgstr "Tətbiqləri başlatmaq üçün vasitə" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "İcra əmri" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "Alternative to : desktop file to start." msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "<əmr> üçün alternativ: başlamaq üçün iş masası faylı." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" @@ -76,7 +76,7 @@ msgstr "" "--service parametri istifadə edilərkən -a keçid üçün ixtiyari " "URL" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Əmr göstərilməyib" diff --git a/local/recipes/kde/kde-cli-tools/source/po/az/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/az/plasma-open-settings.po index 1bc242dbe2..8fc33b38b4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/az/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/az/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-06-21 17:24+0400\n" "Last-Translator: Kheyyam \n" "Language-Team: Azerbaijani \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/be/kcm_filetypes.po index ddb2041f12..7b29e4282b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2007-08-22 09:26+0000\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian \n" @@ -187,13 +187,13 @@ msgstr "Дадаць новае пашырэнне" msgid "Extension:" msgstr "Пашырэнне:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "Змяніць тып файлаў %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Выкарыстоўваць наладкі для групы '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/be/kdesu.po index 0de1ce4d0b..a80e1f48a0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-09-26 17:46+0300\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/be/kioclient.po index 55b6ed3d2a..23a95b0d4d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2007-08-26 21:10+0300\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian \n" @@ -30,7 +30,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -39,7 +39,7 @@ msgstr "" "\n" "Сінтаксіс:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -55,7 +55,7 @@ msgstr "" " # Адкрывае меню ўласцівасцяў\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -68,7 +68,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -80,7 +80,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -91,7 +91,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -102,7 +102,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -118,7 +118,7 @@ msgstr "" " # Адкрывае меню ўласцівасцяў\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -134,7 +134,7 @@ msgstr "" " # Адкрывае меню ўласцівасцяў\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -145,7 +145,22 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Адкрывае меню ўласцівасцяў\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -161,7 +176,7 @@ msgstr "" " # Адкрывае меню ўласцівасцяў\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -177,12 +192,12 @@ msgstr "" " # Адкрывае меню ўласцівасцяў\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -198,7 +213,7 @@ msgstr "" " // Адкрывае файл пры дапамозе праграмы па змаўчанні\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -213,7 +228,7 @@ msgstr "" " // Адкрывае файл пры дапамозе праграмы па змаўчанні\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -228,7 +243,7 @@ msgstr "" " // Стартуе emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -244,107 +259,107 @@ msgstr "" " // Адкрывае тэчку мацавання CD-ROM'y\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Кліент KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Празрыстыя сеткавыя аперацыі з каманднага радку" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, fuzzy, kde-format #| msgid "Source url or urls" msgid "Source URL or URLs" msgstr "Крынічны адрас ці адрасы" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, fuzzy, kde-format #| msgid "Destination url" msgid "Destination URL" msgstr "Адрас прызначэння" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Паказаць даступныя каманды" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Каманда (гл. --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Аргументы для каманды" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Сінтаксічная памылка: недастаткова агрументаў\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Сінтаксічная памылка: надта шмат агрументаў\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Сінтаксічная памылка: невядомая каманда '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/be/kmimetypefinder.po index bd2d7f0919..dfd2551eb1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2007-08-06 10:53+0000\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/be/kstart.po index 40dd278c84..835833b430 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2007-08-01 10:21+0000\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian \n" @@ -45,37 +45,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Матыяс Эттрых (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Матыяс Эттрых" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "Дэвід Фор" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Рычард Дж. Мур" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Выканаць каманду" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Каманда не вызначана" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kcm_filetypes.po index e2c559df4b..baf21880c8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2008-09-08 21:43+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" @@ -184,12 +184,12 @@ msgstr "Dadańnie novaha pašyreńnia" msgid "Extension:" msgstr "Pašyreńnie:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Typ fajłaŭ „%1”" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Karystajsia naładami dla hrupy „%1”" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kdesu.po index 36df7a2494..16f7f3fbb8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-09-19 14:10+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kmimetypefinder.po index 991b212834..548582dce2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-10-05 00:32+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kstart.po index 5206897fc4..9cc529ddc6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/be@latin/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/be@latin/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2008-09-08 22:22+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" @@ -45,37 +45,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Zahad dla vykanańnia" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Zahad nie padadzieny" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/bg/kbroadcastnotification.po index e2a25ec428..00eedc665d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-05-20 19:00+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/bg/kcm_filetypes.po index 7e16f300a0..629aa77ba1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/kcm_filetypes.po @@ -2,7 +2,7 @@ # Bulgarian translation of KDE. # This file is licensed under the GPL. # -# $Id: kcm_filetypes.po 1695993 2024-11-26 01:16:37Z scripty $ +# $Id: kcm_filetypes.po 1738409 2026-06-04 03:30:23Z scripty $ # # Zlatko Popov , 2007, 2008. # Yasen Pramatarov , 2009, 2011. @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-11-10 14:27+0100\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" @@ -170,12 +170,12 @@ msgstr "Добавяне на ново разширение" msgid "Extension:" msgstr "Разширение:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Вид файл: %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Използване на настройките за „%1“" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/bg/kde-inhibit.po index 490129e587..193245cd87 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-06-04 13:41+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/bg/kdesu.po index c28033b970..23e2527238 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-11-10 20:12+0100\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/bg/kioclient.po index 28d9a820ff..34d2e5197e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/kioclient.po @@ -2,20 +2,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Yasen Pramatarov , 2009, 2011, 2013. -# SPDX-FileCopyrightText: 2022, 2024 Mincho Kondarev +# SPDX-FileCopyrightText: 2022, 2024, 2025 Mincho Kondarev msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2024-11-09 20:09+0100\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-21 00:11+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.08.2\n" +"X-Generator: Lokalize 25.07.70\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "mkondarev@yahoo.de" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "Синтаксис:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -49,7 +49,7 @@ msgstr "" " # Отваря прозорец със свойствата на 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -69,7 +69,7 @@ msgstr "" " # документ, така и *.desktop файл.\n" " # 'url' може също да бъде и изпълним файл.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -88,7 +88,7 @@ msgstr "" " # Кратката версия 'kioclient mv' също е налична.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -104,7 +104,7 @@ msgstr "" " # ще бъдете запитан за него.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -118,7 +118,7 @@ msgstr "" " # Копира URL адреса 'src' в 'dest'.\n" " # 'src' може да е списък с URL адреси.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -130,7 +130,7 @@ msgstr "" " # Извежда съдържанието на директорията 'url' към stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -142,7 +142,7 @@ msgstr "" " # Показва съдържанието на директорията 'url' към stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -158,7 +158,17 @@ msgstr "" " # Кратката версия 'kioclient rm' също е налична.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Създава директория на 'url'\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -170,7 +180,7 @@ msgstr "" " #Показва цялата налична информация за 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -182,12 +192,12 @@ msgstr "" " # Отваря стартер на приложения\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Примери:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -199,7 +209,7 @@ msgstr "" " // Отваря файла със стандартните свързвания\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -211,7 +221,7 @@ msgstr "" "схемата \n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -222,7 +232,7 @@ msgstr "" " // Стартира emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -235,22 +245,22 @@ msgstr "" "мениджър по подразбиране. Много удобно\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Клиент KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Програма от команден ред за прозрачни мрежови операции" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Използване на прозорци за съобщения и други нативни известия" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -259,80 +269,80 @@ msgstr "" "Неинтерактивна употреба: без прозорци за съобщения. Ако не искате графична " "връзка, използвайте --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Презаписване на назначението, ако съществува (при копиране и местене)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "файл или URL-адрес" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "urls..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL-адрес(и) на източник" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL-адрес на назначение" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Показване на наличните команди" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Команда (вж. --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "команда" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Аргументи на командата" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Синтактична грешка. Недостатъчно аргументи\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Синтактична грешка. Прекалено много аргументи\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Дестинация за изтеглените файловете" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Синтактична грешка. Непозната команда „%2“\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/bg/kmimetypefinder.po index b860e67043..909ecb2e11 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/kmimetypefinder.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-05-20 19:11+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/bg/kstart.po index 879d37cb0f..6780a0399f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-11-10 14:09+0100\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" @@ -44,40 +44,40 @@ msgstr "Инструмент за стартиране на приложения msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Команда за изпълнение" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Алтернатива на : desktop файл за стартиране, напр. org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "Опционален адрес за подаване към приложението, когато се използва --" "application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Не е указана команда" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bg/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/bg/plasma-open-settings.po index d072be509d..f06584c236 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bg/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bg/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-05-20 19:15+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bn/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/bn/kcm_filetypes.po index c6d7ec18af..fa16e5ab68 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bn/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bn/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2006-01-04 13:20-0600\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: Bengali \n" @@ -173,12 +173,12 @@ msgstr "নতুন এক্সটেনশন যোগ করো" msgid "Extension:" msgstr "এক্সটেনশন:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format msgid "File type %1" msgstr "ফাইল টাইপ %1 সম্পাদনা করো" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' গ্রুপ-এর সেটিংস ব্যবহার করো" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bn/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/bn/kstart.po index c19571d07a..42a66c878a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bn/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bn/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2012-07-13 14:34+0530\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: American English \n" @@ -42,37 +42,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "যে কমান্ড চালানো হবে" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "কোন কমান্ড উল্লিখিত হয়নি" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kcm_filetypes.po index 674559bb66..120cf2d703 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2009-12-28 21:48+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" @@ -151,12 +151,12 @@ msgstr "নতুন এক্সটেনশন যোগ করুন" msgid "Extension:" msgstr "এক্সটেনশন:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ফাইলের ধরন %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' দলের বৈশিষ্ট্য ব্যবহার করা হবে" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kdesu.po index c049e82abf..9fccc761a7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-13 10:27+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kioclient.po index 1e63ac2978..c012c68e6c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2009-01-12 18:02+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "সিন্টেক্স:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -53,7 +53,7 @@ msgstr "" " # বৈশিষ্ট্য সংক্রান্ত মেনু প্রদর্শন করা হয়\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -66,7 +66,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -78,7 +78,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -100,7 +100,7 @@ msgstr "" " # একটি URL লেখার অনুরোধ জানানো হবে।\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -120,7 +120,7 @@ msgstr "" " # 'src'-র ক্ষেত্রে একাধিক URL উল্লিখিত হতে পারে।\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -136,7 +136,7 @@ msgstr "" " # 'url'-এ উপস্থিত তথ্য stdout-এ লেখা হবে\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # 'url'-এ উপস্থিত তথ্য stdout-এ লেখা হবে\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -170,7 +170,22 @@ msgstr "" " # URL 'src'-কে 'dest'-এ স্থানান্তর করা হয়।\n" " # 'src'-র ক্ষেত্রে একাধিক URL উল্লিখিত হতে পারে।\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # বৈশিষ্ট্য সংক্রান্ত মেনু প্রদর্শন করা হয়\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -186,7 +201,7 @@ msgstr "" " # 'url'-এ উপস্থিত তথ্য stdout-এ লেখা হবে\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -202,12 +217,12 @@ msgstr "" " # বৈশিষ্ট্য সংক্রান্ত মেনু প্রদর্শন করা হয়\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -223,7 +238,7 @@ msgstr "" " // ডিফল্ট বাইন্ডিং সহ ফাইল খোলা হয়\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -238,7 +253,7 @@ msgstr "" " // URL সহ নতুন উইন্ডো খোলা হয়\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -253,7 +268,7 @@ msgstr "" " // emacs আরম্ভ করা হয়\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -269,106 +284,106 @@ msgstr "" " // বর্তমান ডিরেক্টরি খোলা হয়। অত্যন্ত সুবিধাজনক।\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO ক্লায়েন্ট" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL অথবা একাধিক URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "উৎসের URL অথবা URLগুলি" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "উদ্দিষ্ট URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "উপলব্ধ কমান্ড প্রদর্শন করা হবে" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "কমান্ড (--commands দেখুন)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "কমান্ডের আর্গুমেন্ট" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "সিন্টেক্সের ত্রুটি: পর্যাপ্ত আর্গুমেন্ট উপস্থিত নেই\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "সিন্টেক্সের ত্রুটি: অত্যাধিক পরিমাণ আর্গুমেন্ট উপস্থিত রয়েছে\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "সিন্টেক্সের ত্রুটি: অজানা কমান্ড '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kmimetypefinder.po index 4cbfed9f12..2b6f5ea86f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-01-04 12:43+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kstart.po index 1b7996a4a6..5388e3befe 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bn_IN/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-01-12 16:25+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" @@ -43,37 +43,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) ১৯৯৭-২০০০ ম্যাথায়েস এট্রিখ (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "ম্যাথায়েস এট্রিখ" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "ডেভিড ফেউরে" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "রিচার্ড জে. মুর" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "সঞ্চালনযোগ্য কমান্ড" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "কোনো কমান্ড ধার্য করা হয়নি" diff --git a/local/recipes/kde/kde-cli-tools/source/po/br/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/br/kcm_filetypes.po index 6a19b02a29..fbb6becade 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/br/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/br/kcm_filetypes.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2004-09-19 14:22+0200\n" "Last-Translator: Thierry Vignaud \n" "Language-Team: Brezhoneg \n" @@ -145,13 +145,13 @@ msgstr "Ouzhpennañ un astenn nevez" msgid "Extension:" msgstr "Astenn :" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "Aozañ seurt ar restr %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Implijit dibarzhoù evit ar strollad '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/br/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/br/kdesu.po index 3cb62c9a8b..ad6a88fe6c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/br/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/br/kdesu.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2004-07-08 17:18+0200\n" "Last-Translator: Thierry Vignaud \n" "Language-Team: Brezhoneg \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/br/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/br/kstart.po index 8638d1bf39..819bb0a875 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/br/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/br/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart-1.1\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 1999-04-15 07:03+0300\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" @@ -41,37 +41,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Goulev da seveniñ" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "N'eus urzhiad spisaet ebet" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bs/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/bs/kcm_filetypes.po index 9e13899939..2953e478d0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bs/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bs/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2013-10-18 20:18+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" @@ -171,12 +171,12 @@ msgstr "Dodaj novi sufiks" msgid "Extension:" msgstr "Sufiks:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tip datoteke %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Koristi postavke grupe '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bs/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/bs/kdesu.po index 07c1951d47..70adc8f3cd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bs/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bs/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2014-11-03 12:03+0000\n" "Last-Translator: Emina Krehic \n" "Language-Team: Bosnian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bs/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/bs/kioclient.po index 5080e47c79..3dc07d7ae9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bs/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bs/kioclient.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2015-01-07 16:09+0100\n" "Last-Translator: Samir Ribic \n" "Language-Team: Bosnian \n" @@ -31,7 +31,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "samir.ribic@etf.unsa.ba" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "\n" "Sintaksa:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -56,7 +56,7 @@ msgstr "" " # otvara meni svojstava\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -84,7 +84,7 @@ msgstr "" " # može biti URL dokumenta, ili *.desktop datoteke.\n" " # URL može biti i izvršni fajl.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -96,7 +96,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -118,7 +118,7 @@ msgstr "" " # URL će biti zatražen.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -136,7 +136,7 @@ msgstr "" " # Kopira URL izvora na odredište.\n" " # Izvor može biti i spisak URL‑ova.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # Prikazuje sadržaj direktorija 'url' na stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -168,7 +168,7 @@ msgstr "" " # Prikazuje sadržaj direktorija 'url' na stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,22 @@ msgstr "" " # Uklanja URL\n" " # (može se navesti i spisak URL‑ova).\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # otvara meni svojstava\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -202,7 +217,7 @@ msgstr "" " # Ispisuje sadržaj URL‑a na stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -218,12 +233,12 @@ msgstr "" " # otvara meni svojstava\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -239,7 +254,7 @@ msgstr "" " # otvara fajl podrazumijevanim programom\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -255,7 +270,7 @@ msgstr "" "\n" # literal-segment: kioclient exec file:/root/Desktop/emacs.desktop -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -270,7 +285,7 @@ msgstr "" " # pokreće Emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -286,22 +301,22 @@ msgstr "" " # otvara tekući direktorijum — vrlo zgodno.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO klijent" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Alatka komandne linije za mrežno-providne postupke" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -310,80 +325,80 @@ msgstr "" "Neinteraktivna upotreba: nema okvira s porukama. Ako ne želite grafičku " "konekciju koristite --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Prebriši odredište ako postoji (za kopiranje i premještanje)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "datoteka ili URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Izvorni URL ili URL‑ovi" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Odredišni URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Prikaži raspoložive naredbe" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Naredba (vidi --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "naredba" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenti uz naredbu" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Sintaksna greška: nedovoljno argumenata\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Sintaksna greška, previše argumenata\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Odredište gdje preuzeti datoteke" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Sintaksna greška: nepoznata naredba „%2“\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bs/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/bs/kmimetypefinder.po index 7667d8cee3..ec7cd94d84 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bs/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bs/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase-runtime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2015-02-04 15:48+0000\n" "Last-Translator: Samir Ribic \n" "Language-Team: Bosnian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/bs/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/bs/kstart.po index 3204087db5..0b18be93b9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/bs/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/bs/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase-runtime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2014-10-20 19:46+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" @@ -45,27 +45,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Naredba koju treba izvršiti" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -75,13 +75,13 @@ msgstr "" "Alternativa naredbi: .desktop fajl za pokretanje. D‑Bus servis će biti " "ispisan na stdiz." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "Opcioni URL za prosljeđivanje .desktop datoteke, uz --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nije navedena nijedna naredba" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ca/docs/kdesu/index.docbook b/local/recipes/kde/kde-cli-tools/source/po/ca/docs/kdesu/index.docbook index 87ed7f054b..7dc04513df 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ca/docs/kdesu/index.docbook +++ b/local/recipes/kde/kde-cli-tools/source/po/ca/docs/kdesu/index.docbook @@ -203,7 +203,7 @@ does this really work? > Especifica l'ordre a executar com a root. Aquesta se li ha d'especificar com a un únic argument. De manera que, per exemple, si voleu executar un nou gestor de fitxers, haureu d'introduir a l'indicatiu: Especifica l'ordre a executar com a root. Aquesta se li ha d'especificar com a un únic argument. De manera que, per exemple, si voleu executar un nou gestor de fitxers, haureu d'introduir a l'indicador: $(kf5-config --path libexec) kdesu Vous pouvez modifier cet ordre grâce aux boutons .desktop. Bien qu'il demande le mot de passe administrateur à travers une boîte de dialogue graphique, je le considère plus comme une ligne de commande connectée à une interface graphique que comme un véritable programme graphique. +> à travers une boite de dialogue graphique, je le considère plus comme une ligne de commande connectée à une interface graphique que comme un véritable programme graphique. Comme Spécifie l'icône à utiliser dans la boîte de dialogue de mot de passe. Spécifiez juste le nom, sans l'extension. +>Spécifie l'icône à utiliser dans la boite de dialogue de mot de passe. Spécifiez juste le nom, sans l'extension. Par exemple, pour exécuter &konqueror; en mode gestionnaire de fichiers et afficher l'icône de &konqueror; dans la boîte de dialogue du mot de passe : +>Par exemple, pour exécuter &konqueror; en mode gestionnaire de fichiers et afficher l'icône de &konqueror; dans la boite de dialogue du mot de passe : $(kde5-config --path libexec)Ne conserve pas le mot de passe. Ceci désactive la case à cocher conserver le mot de passe dans la boîte de dialogue correspondante. dans la boite de dialogue correspondante. @@ -357,12 +357,12 @@ does this really work? >Authentification X Le programme que vous exécutez va fonctionner sous l'identité d'administrateur et n'aura généralement pas accès à votre affichage Xwindow. &kdesu; contourne ce problème en ajoutant un cookie d'authentification pour votre affichage dans un fichier temporaire nommé Le programme que vous exécutez va fonctionner sous l'identité d'administrateur et n'aura généralement pas accès à votre affichage sous XWindow. &kdesu; contourne ce problème en ajoutant un cookie d'authentification pour votre affichage dans un fichier temporaire nommé .Xauthority. Après la fin de la commande, ce fichier sera supprimé. Si vous ne voulez pas utiliser de cookies X, vous devrez vous débrouiller par vos propres moyens. &kdesu; le détectera et n'ajoutera aucun cookie, mais il vous faudra vous assurer que l'administrateur est autorisé à accéder à votre affichage Xwindow. +>Si vous n'utilisez pas cookies X, vous devrez vous débrouiller par vos propres moyens. &kdesu; le détectera et n'ajoutera aucun cookie. Cependant, il vous faudra vous assurer que l'administrateur est autorisé à accéder à votre affichage. @@ -446,20 +446,20 @@ does this really work? >kdesud. Ce démon attend des commandes dans un socket &UNIX; placé dans /tmp. Le mode de ce socket est 0600, ainsi seul votre utilisateur peut s'y connecter. Si la conservation des mots de passe est activée, &kdesu; exécute les commandes par l'intermédiaire de ce démon. Il écrit la commande et le mot de passe . Le mode de ce socket est « 0600 ». Ainsi, seul votre identifiant utilisateur permet de s'y connecter. Si la conservation des mots de passe est activée, &kdesu; exécute les commandes par l'intermédiaire de ce démon. Il écrit la commande et le mot de passe administrateur dans ce socket, puis le démon exécute la commande su comme décrit précédemment. Ensuite, la commande et le mot de passe ne sont pas détruits. Au lieu de cela, ils sont conservés pour une durée déterminée. Il s'agit de la durée spécifiée dans le module de configuration. Si une autre requête pour la même commande intervient pendant cette période, le client ne vous demandera pas de fournir de nouveau le mot de passe. Pour empêcher les pirates qui prendraient le contrôle de votre compte de voler les mots de passe au daemon (Par exemple en lui attachant un débogueur), le démon est installé set-group-id nogroup. Ceci devrait interdire à tous les utilisateurs normaux (y compris vous) d'obtenir les mots de passe dans le processus comme décrit précédemment. Ensuite, la commande et le mot de passe ne sont pas détruits. Au lieu de cela, ils sont conservés pour une durée déterminée. Il s'agit de la durée spécifiée dans le module de configuration. Si une autre requête pour la même commande intervient pendant cette période, le client ne vous demandera pas de fournir de nouveau le mot de passe. Pour empêcher les pirates qui prendraient le contrôle de votre compte de voler les mots de passe au daemon (Par exemple en lui attachant un débogueur), le démon est installé en « set-group-id nogroup ». Ceci devrait interdire à tous les utilisateurs normaux (y compris vous) d'obtenir les mots de passe dans le processus kdesud. Par ailleurs, le daemon fixe la variable d'environnement DISPLAY à la valeur qu'elle avait quand il a été lancé. Ainsi, la seule chose que puisse faire un hacker est d'exécuter une application sur votre écran. Un point faible dans ce schéma est que le programme que vous exécutez n'a peut être pas été écrit avec un grand souci de sécurité (comme c'est le cas pour les programmes setuid Un point faible dans ce schéma est que le programme que vous exécutez n'a peut être pas été écrit avec un grand souci de sécurité (Comme c'est le cas pour les programmes setuid root). Ceci signifie que ce programme pourrait avoir des débordements de tampons (« buffer overruns ») ou d'autres faiblesses qu'un hacker pourrait utiliser. +>). Ceci signifie que ce programme pourrait avoir des débordements de tampons (« buffer overruns ») ou d'autres faiblesses qu'un pirate pourrait utiliser. La conservation des mots de passe est donc le fruit d'un compromis entre confort et sécurité. Je vous incite à y réfléchir et à décider par vous-même si vous souhaitez vous en servir ou pas. diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/docs/kdesu/man-kdesu.1.docbook b/local/recipes/kde/kde-cli-tools/source/po/fr/docs/kdesu/man-kdesu.1.docbook index 6ccfc59f8e..eecbeb20da 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/docs/kdesu/man-kdesu.1.docbook +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/docs/kdesu/man-kdesu.1.docbook @@ -214,7 +214,7 @@ > Spécifie l'icône à utiliser dans la boîte de dialogue du mot de passe. Vous pouvez spécifier uniquement le nom, sans extensions. +>Spécifie l'icône à utiliser dans la boite de dialogue du mot de passe. Vous pouvez spécifier uniquement le nom, sans extensions. @@ -227,7 +227,7 @@ >Ne pas mémoriser le mot de passe. Ceci désactive la case à cocher mémoriser le mot de passe dans la boîte de dialogue du mot de passe. dans la boite de dialogue du mot de passe. @@ -347,7 +347,7 @@ >kfmclient en tant qu'utilisateur jean et affiche l'icône de &konqueror; dans la boîte de dialogue du mot de passe : +> et affiche l'icône de &konqueror; dans la boite de dialogue du mot de passe : $(kde5-config --path libexec)\n" "Language-Team: French \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/fr/kcm_filetypes.po index 42c4f9ba63..223c80b1c1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/kcm_filetypes.po @@ -9,7 +9,7 @@ # Cedric Pasteur , 2004. # Nicolas Ternisien , 2005, 2007, 2008, 2010. # Sébastien Renard , 2008. -# SPDX-FileCopyrightText: 2013, 2024 Xavier Besnard +# SPDX-FileCopyrightText: 2013, 2024, 2025 Xavier Besnard # Vincent Pinon , 2016. # Simon Depiets , 2019. # Xavier Besnard , 2023. @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" -"PO-Revision-Date: 2024-04-26 15:43+0200\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" +"PO-Revision-Date: 2025-04-02 20:47+0200\n" "Last-Translator: Xavier Besnard \n" "Language-Team: French >\n" "Language: fr\n" @@ -27,7 +27,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 24.12.3\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -100,10 +100,10 @@ msgid "" "file type 'text/plain'; all files ending in '.txt' are recognized as plain " "text files." msgstr "" -"Cette boîte de dialogue contient la liste des motifs pouvant être utilisés " -"pour identifier les fichiers du type sélectionné Par exemple, le motif « *." +"Cette boite de dialogue contient la liste des motifs pouvant être utilisés " +"pour identifier les fichiers du type sélectionné. Par exemple, le motif « *." "txt » est associé au type de fichier « text / plain ». Tous les fichiers se " -"terminant par « .txt » seront alors reconnus comme des fichiers texte." +"terminant par « .txt » seront alors reconnus comme des fichiers de texte." #: filetypedetails.cpp:87 filetypesview.cpp:86 kservicelistwidget.cpp:105 #, kde-format @@ -192,12 +192,12 @@ msgstr "Ajouter une nouvelle extension" msgid "Extension:" msgstr "Extension :" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Type de fichier « %1 »" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Utiliser la configuration du groupe « %1 »" @@ -215,8 +215,8 @@ msgid "" "name as it appears in the list." msgstr "" "Saisissez une partie d'un motif de fichier et seuls les types de fichiers " -"dont le motif correspond apparaîtront dans la liste. Vous pouvez également " -"saisir une partie du nom du type de fichier tel qu'il apparaît dans la liste." +"dont le motif correspond apparaitront dans la liste. Vous pouvez également " +"saisir une partie du nom du type de fichier tel qu'il apparait dans la liste." #: filetypesview.cpp:71 multiapplydialog.cpp:27 #, kde-format @@ -232,11 +232,11 @@ msgid "" "the information for that file type using the controls on the right." msgstr "" "Vous pouvez voir ici une liste hiérarchique des types de fichiers installés " -"sur votre système. Cliquez sur le signe « + » pour développer le contenu " -"d'une catégorie ou sur le signe « - » pour la refermer. Sélectionnez un type " -"de fichier (par exemple « text / html » pour les fichiers HTML) pour " -"afficher ou modifier les informations sur ce type de fichier en utilisant " -"les boutons situés à droite." +"sur votre système. Veuillez cliquer sur le signe « + » pour développer le " +"contenu d'une catégorie ou sur le signe « - » pour la réduire. Veuillez " +"sélectionner un type de fichier (Par exemple, « text / html » pour les " +"fichiers « HTML ») pour afficher ou modifier les informations sur ce type de " +"fichier en utilisant les boutons situés à droite." #: filetypesview.cpp:91 #, kde-format @@ -333,13 +333,13 @@ msgstr "David Faure" #, kde-format msgid "Makes the dialog transient for the window specified by winid" msgstr "" -"Rend la boîte de dialogue temporaire pour la fenêtre spécifiée par son " +"Rend la boite de dialogue temporaire pour la fenêtre spécifiée par son " "identifiant « winid »" #: keditfiletype.cpp:128 #, kde-format msgid "File type to edit (e.g. text/html)" -msgstr "Type de fichier à modifier (par exemple, « text / html »)" +msgstr "Type de fichier à modifier (Par exemple, « text / html »)" #: keditfiletype.cpp:159 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/fr/kde-inhibit.po index ef8d95c46a..b164003d64 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/kde-inhibit.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-13 11:14+0100\n" "Last-Translator: Xavier BESNARD \n" "Language-Team: French \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/fr/kdesu.po index 55ca83e778..6cc6abeaaa 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/kdesu.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-25 14:31+0200\n" "Last-Translator: Xavier Besnard \n" "Language-Team: French >\n" @@ -88,7 +88,7 @@ msgstr "Spécifie la commande à exécuter comme des arguments distincts" #: kdesu.cpp:108 #, kde-format msgid "Specifies the command to run as one string" -msgstr "Spécifie la commande à exécuter en une seule chaîne de caractères" +msgstr "Spécifie la commande à exécuter en une seule chaine de caractères" #: kdesu.cpp:109 #, kde-format @@ -137,12 +137,12 @@ msgstr "Ne pas afficher le bouton « Ignorer »" #, kde-format msgid "Specify icon to use in the password dialog" msgstr "" -"Spécifier l'icône à utiliser dans la boîte de dialogue pour le mot de passe" +"Spécifier l'icône à utiliser dans la boite de dialogue pour le mot de passe" #: kdesu.cpp:119 #, kde-format msgid "Do not show the command to be run in the dialog" -msgstr "Ne pas afficher la commande à exécuter dans la boîte de dialogue" +msgstr "Ne pas afficher la commande à exécuter dans la boite de dialogue" #: kdesu.cpp:126 #, kde-format @@ -151,7 +151,7 @@ msgctxt "" "the winid so that it is like a dialog box rather than some separate program" msgid "Makes the dialog transient for an X app specified by winid" msgstr "" -"Rend temporaire la boîte de dialogue pour l'application X désignée par " +"Rend temporaire la boite de dialogue pour l'application X désignée par " "« winid »" #: kdesu.cpp:128 diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/fr/kioclient.po index 554ba1a8fe..4d5065e57b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/kioclient.po @@ -7,7 +7,7 @@ # Amine Say , 2008. # Guillaume Pujol , 2010. # Sébastien Renard , 2012. -# SPDX-FileCopyrightText: 2012, 2013, 2020, 2021, 2022, 2023 Xavier Besnard +# SPDX-FileCopyrightText: 2012, 2013, 2020, 2021, 2022, 2023, 2025 Xavier Besnard # Vincent Pinon , 2016. # Simon Depiets , 2019. # SPDX-FileCopyrightText: 2023 Xavier Besnard @@ -17,16 +17,16 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2023-12-20 09:45+0100\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-10 08:43+0200\n" "Last-Translator: Xavier Besnard \n" -"Language-Team: French \n" +"Language-Team: French >\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 23.08.4\n" +"X-Generator: Lokalize 25.04.3\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -41,7 +41,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "vpinon@kde.org, xavier.besnard@kde.org" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -50,7 +50,7 @@ msgstr "" "\n" "Syntaxe :\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -59,10 +59,10 @@ msgid "" "\n" msgstr "" " %1 « URL »\n" -" # Ouvre une boîte de dialogue de propriétés pour l'URL.\n" +" # Ouvre une boite de dialogue de propriétés pour l'URL.\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -85,7 +85,7 @@ msgstr "" "« *.desktop »,\n" " # ou d'un exécutable.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -105,7 +105,7 @@ msgstr "" "disponible.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -123,7 +123,7 @@ msgstr "" " # une URL sera demandée.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -139,7 +139,7 @@ msgstr "" " # La version simplifiée de « kioclient cp » est aussi " "disponible.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -152,7 +152,7 @@ msgstr "" "standard de sortie\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -165,7 +165,7 @@ msgstr "" "sortie\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -182,7 +182,18 @@ msgstr "" "disponible.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 « URL »\n" +" # Cré un dossier à l'URL.\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -195,7 +206,7 @@ msgstr "" "« URL ».\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -207,12 +218,12 @@ msgstr "" " # Ouvre un lanceur standard d'applications\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Exemples :\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -225,7 +236,7 @@ msgstr "" " // au type « MIME ».\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -237,7 +248,7 @@ msgstr "" "« ftp :// ».\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -248,7 +259,7 @@ msgstr "" " // Démarre « emacs »\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -261,106 +272,106 @@ msgstr "" "fichiers // par défaut. Très pratique.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" "Un outil en ligne de commandes pour les opérations réseau transparentes" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" -msgstr "Utiliser les boîtes de dialogue et autres notifications natives" +msgstr "Utiliser les boites de dialogue et autres notifications natives" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -"Utilisation non interactive : aucune boîte de dialogue. Si vous ne voulez " +"Utilisation non interactive : aucune boite de dialogue. Si vous ne voulez " "aucune connexion graphique, utilisez l'option « --platform offscreen »" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" "Écraser la destination si elle existe (pour la copie et le déplacement)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Fichier ou URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URLs…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL(s) de la source" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL de la destination" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "URL" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Afficher les commandes disponibles" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Commande (voir « --commands »)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "commande" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Paramètres de la commande" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1 : erreur de syntaxe, pas assez de paramètres\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1 : erreur de syntaxe, beaucoup trop de paramètres\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Destination vers laquelle télécharger les fichiers" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1 : erreur de syntaxe, commande « %2 » inconnue \n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/fr/kmimetypefinder.po index 4c499234f4..ce209181b9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/kmimetypefinder.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-06-28 18:41+0100\n" "Last-Translator: Vincent Pinon \n" "Language-Team: French \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/fr/kstart.po index 6e2644eecf..fd7f2404d7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/kstart.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-12-20 09:35+0100\n" "Last-Translator: Xavier Besnard \n" "Language-Team: French \n" @@ -58,41 +58,41 @@ msgstr "Utilitaire pour le lancement d'applications" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Commande à exécuter" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternative à la  : nom du fichier de bureau à démarrer, par " "exemple, « org.kde.kate »" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "URL facultative à passer à l'application, lors de l'utilisation de « --" "service »" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Aucune commande fournie" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fr/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/fr/plasma-open-settings.po index 9d6e27a1fc..b200533e2d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fr/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fr/plasma-open-settings.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-20 09:41+0100\n" "Last-Translator: Xavier Besnard \n" "Language-Team: French \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fy/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/fy/kcm_filetypes.po index b4c796f6cc..21c366c1da 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fy/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fy/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2009-12-19 18:22+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frysk \n" @@ -171,12 +171,12 @@ msgstr "Nij taheaksel taheakje" msgid "Extension:" msgstr "Taheaksel:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Triemtype %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Brûk ynstellings foar groep '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fy/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/fy/kdesu.po index ef15b71088..88d5dcced3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fy/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fy/kdesu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-06-21 12:01+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frysk \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fy/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/fy/kioclient.po index ed906a60d7..6e81934650 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fy/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fy/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2010-07-16 11:58+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frysk \n" @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "Gebrûk:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -53,7 +53,7 @@ msgstr "" " # Iepenet in eigenskippenmenu\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -82,7 +82,7 @@ msgstr "" " # beskied. Natuerlik mei URL-adres it adres fan in\n" " # dokumint wêze of in *.desktop-bestand.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -94,7 +94,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -118,7 +118,7 @@ msgstr "" " # opjûn sil der om in URL-adres frege wurde.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -136,7 +136,7 @@ msgstr "" " # Kopiearret it URL-adres 'boarne' nei 'bestimming'.\n" " # 'boarne' mei in list fan URL-adressen wêze.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # Iepenet in eigenskipenmenu\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -168,7 +168,7 @@ msgstr "" " # Iepenet in eigenskipenmenu\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,22 @@ msgstr "" " # Wisket it URL-adres\n" " # 'boarne' mei in list fan URL-adressen wêze.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'URL-adres'\n" +" # Iepenet in eigenskippenmenu\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -202,7 +217,7 @@ msgstr "" " # Iepenet in eigenskipenmenu\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -218,12 +233,12 @@ msgstr "" " # Iepenet in eigenskippenmenu\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -239,7 +254,7 @@ msgstr "" " // iepenet de triem mei de standertassosaasje\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -254,7 +269,7 @@ msgstr "" " // iepenet in nij finster mei it URL-adres\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -269,7 +284,7 @@ msgstr "" " // start it programma Emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -285,106 +300,106 @@ msgstr "" " // iepenet de aktive triemtafel. Hiel hannich.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO kliïnt" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Kommandorigelprogramma foar netwerktrochsichtige operaasjes" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Bestimming oerskriuwe as it bestiet (foar kopy of ferpleatsing)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL-adres of URL-adressen" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Boarne URL-adres of URL-adressen" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Bestimming URL-adres" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Beskikbere kommando's werjaan" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Kommando (sjoch --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Arguminten foar command" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Syntaksisflater: Net genôch arguminten\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Syntaksisflater:Tefolle arguminten\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Syntaksisflater: '%1' is in ûnbekend kommando\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fy/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/fy/kmimetypefinder.po index 4bc776abec..01eedcf22f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fy/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fy/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-08-17 14:55+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frysk \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/fy/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/fy/kstart.po index f9916ba920..9f8a291f89 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/fy/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/fy/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2010-07-20 13:49+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frysk \n" @@ -43,27 +43,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Kommando om út te fieren" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -73,14 +73,14 @@ msgstr "" "Alternatyf nei : Te starten buroblêd triem. D-Bus tsjinst sil " "printe wurde nei stdout" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "" "Opsjonele URL-adres om troch te jaan , wylst brûkend --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Gjin kommando oantsjutte" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ga/kbroadcastnotification.po new file mode 100644 index 0000000000..d260b99397 --- /dev/null +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/kbroadcastnotification.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the kde-cli-tools package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: kde-cli-tools\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Irish Gaelic \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " +"3 : 4\n" + +#, kde-format +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" + +#, kde-format +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" + +#: main.cpp:22 +#, kde-format +msgid "Broadcast Notifications" +msgstr "" + +#: main.cpp:24 +#, kde-format +msgid "" +"A tool that emits a notification for all users by sending it on the system " +"DBus" +msgstr "" + +#: main.cpp:26 +#, kde-format +msgid "(c) 2016 Kai Uwe Broulik" +msgstr "" + +#: main.cpp:33 +#, kde-format +msgid "" +"Name of the application that should be associated with this notification" +msgstr "" + +#: main.cpp:36 +#, kde-format +msgid "A brief one-line summary of the notification" +msgstr "" + +#: main.cpp:38 +#, kde-format +msgid "Icon for the notification" +msgstr "" + +#: main.cpp:42 +#, kde-format +msgid "" +"A comma-separated list of user IDs this notification should be sent to. If " +"omitted, the notification will be sent to all users." +msgstr "" + +#: main.cpp:45 +#, kde-format +msgid "Timeout for the notification" +msgstr "" + +#: main.cpp:47 +#, kde-format +msgid "Keep the notification in the history until the user closes it" +msgstr "" + +#: main.cpp:50 +#, kde-format +msgid "The actual notification body text" +msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ga/kcm_filetypes.po index ee24b48454..5172031a17 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ga/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/kcm_filetypes.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase/filetypes.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -13,7 +13,6 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.0beta1\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" @@ -168,21 +167,20 @@ msgstr "Cuir Iarmhír Nua Leis" msgid "Extension:" msgstr "Iarmhír:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Cineál comhaid %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Bain úsáid as socruithe do ghrúpa '%1'" #: filetypesview.cpp:57 -#, fuzzy, kde-format -#| msgid "Find file type or filename pattern" +#, kde-format msgid "Search for file type or filename pattern..." -msgstr "Aimsigh cineál comhaid nó patrún comhadainm" +msgstr "" #: filetypesview.cpp:63 #, kde-format @@ -279,10 +277,9 @@ msgstr "" "trí anailís a dhéanamh ar inneachar comhaid)." #: keditfiletype.cpp:114 -#, fuzzy, kde-format -#| msgid "File type %1" +#, kde-format msgid "File Type Editor" -msgstr "Cineál comhaid %1" +msgstr "" #: keditfiletype.cpp:116 #, kde-format @@ -515,81 +512,3 @@ msgstr "" "Iontráil ainm an chineáil comhaid. Mar shampla, má roghnaíonn tú 'image' " "mar chatagóir agus iontrálann tú 'custom' anseo, cruthófar an cineál 'image/" "custom'." - -#~ msgid "" -#~ "

File Associations

This module allows you to choose which " -#~ "applications are associated with a given type of file. File types are " -#~ "also referred to as MIME types (MIME is an acronym which stands for " -#~ "\"Multipurpose Internet Mail Extensions\").

A file association " -#~ "consists of the following:

  • Rules for determining the MIME-type of " -#~ "a file, for example the filename pattern *.png, which means 'all files " -#~ "with names that end in .png', is associated with the MIME type \"image/png" -#~ "\";
  • A short description of the MIME-type, for example the " -#~ "description of the MIME type \"image/png\" is simply 'PNG image';
  • " -#~ "
  • An icon to be used for displaying files of the given MIME-type, so " -#~ "that you can easily identify the type of file in a file manager or file-" -#~ "selection dialog (at least for the types you use often);
  • A list " -#~ "of the applications which can be used to open files of the given MIME-" -#~ "type -- if more than one application can be used then the list is ordered " -#~ "by priority.
You may be surprised to find that some MIME types " -#~ "have no associated filename patterns; in these cases, KDE is able to " -#~ "determine the MIME-type by directly examining the contents of the file." -#~ msgstr "" -#~ "

Comhcheangail Chomhaid

Leis an modúl seo, is féidir leat " -#~ "feidhmchlár a chomhcheangal le gach cineál comhaid. Tugtar 'cineálacha " -#~ "MIME' ar na cineálacha comhaid seo de ghnáth (is acrainm é MIME a " -#~ "sheasann do \"Multipurpose Internet Mail Extensions\".)

Is éard " -#~ "atá i gcomhcheangal comhaid ná na rudaí seo a leanas:

  • Rialacha a " -#~ "deir go bhfuil comhaid áirithe den chineál MIME, mar shampla comhaid atá " -#~ "comhoiriúnach leis an bpatrún *.kwd, baineann siad leis an gcineál MIME " -#~ "\"x-kword\";
  • Cur síos beag ar an gcineál MIME, mar shampla is é " -#~ "'KWord document' an cur síos iomlán ar an gcineál \"x-kword\";
  • " -#~ "
  • Deilbhín a úsáidtear nuair a thaispeántar comhaid den chineál MIME, " -#~ "sa chaoi gur féidir leat comhaid den chineál seo a aithint in amharc " -#~ "Konqueror mar shampla (bhuel, na cineálacha a úsáideann tú go minic ar a " -#~ "laghad);
  • Liosta feidhmchlár lenar féidir comhaid den chineál seo " -#~ "a oscailt -- má tá níos mó ná feidhmchlár amháin ann, is in ord " -#~ "tosaíochta é an liosta.
Seans nach bhfuil fhios agat go bhfuil " -#~ "roinnt cineálacha MIME gan phatrúin chomhaid a mbaineann leo; sna cásanna " -#~ "seo, is féidir le Konqueror an cineál MIME a dhéanamh amach go díreach " -#~ "trí inneachar an chomhaid a iniúchadh.

" - -#~ msgid "KEditFileType" -#~ msgstr "KEditFileType" - -#~ msgid "" -#~ "This is the icon associated with the selected file type. Choosing a " -#~ "different icon requires shared-mime-info to be at least version 0.40." -#~ msgstr "" -#~ "Seo é an deilbhín a bhaineann leis an gcineál comhaid a roghnaigh tú. Tá " -#~ "shared-mime-info leagan 0.40 nó níos déanaí de dhíth chun deilbhín eile a " -#~ "roghnú." - -#~ msgid "You are not authorized to remove this service." -#~ msgstr "Níl cead agat an tseirbhís seo a bhaint." - -#~ msgid "Click here to remove the selected file type." -#~ msgstr "Cliceáil anseo chun an cineál roghnaithe comhaid a bhaint." - -#~ msgid "None" -#~ msgstr "Neamhní" - -#~ msgid "The service %1 can not be removed." -#~ msgstr "Ní féidir an tseirbhís %1 a bhaint." - -#~ msgid "" -#~ "The service is listed here because it has been associated with the %1 (%2) file type and files of type %3 (%4) are per definition " -#~ "also of type %5." -#~ msgstr "" -#~ "Taispeántar an tseirbhís anseo toisc gur ceanglaíodh é le cineál comhaid " -#~ "%1 (%2), agus tá comhaid den chineál %3 (%4) den chineál " -#~ "%5 freisin, de réir sainmhínithe." - -#~ msgid "" -#~ "Either select the %1 file type to remove the service from there or " -#~ "move the service down to deprecate it." -#~ msgstr "" -#~ "Roghnaigh an cineál comhaid %1 chun an tseirbhís a bhaint uaidh, " -#~ "nó bog an tseirbhís síos go tosaíocht níos ísle." diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ga/kde-inhibit.po new file mode 100644 index 0000000000..f9d27f389c --- /dev/null +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/kde-inhibit.po @@ -0,0 +1,55 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the kde-cli-tools package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: kde-cli-tools\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Irish Gaelic \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " +"3 : 4\n" + +#: main.cpp:26 +#, kde-format +msgid "Inhibit various desktop functions whilst a command runs" +msgstr "" + +#: main.cpp:28 +#, kde-format +msgid "Inhibit power management" +msgstr "" + +#: main.cpp:31 +#, kde-format +msgid "Inhibit screensaver" +msgstr "" + +#: main.cpp:35 +#, kde-format +msgid "Inhibit colour correction (night mode)" +msgstr "" + +#: main.cpp:38 +#, kde-format +msgid "Inhibit notifications (Do not disturb)" +msgstr "" + +#: main.cpp:41 +#, kde-format +msgid "Command with arguments to run" +msgstr "" + +#: main.cpp:64 main.cpp:73 main.cpp:89 +#, kde-format +msgctxt "Script as in shell script" +msgid "Running Script" +msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ga/kdesu.po index 423343b9cd..32e0f1508b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ga/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -14,7 +14,6 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.0beta1\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" @@ -144,10 +143,9 @@ msgid "Cannot execute command '%1'." msgstr "Ní féidir ordú '%1' a rith." #: kdesu.cpp:158 -#, fuzzy, kde-format -#| msgid "Cannot execute command '%1'." +#, kde-format msgid "Cannot execute command '%1'. It contains invalid characters." -msgstr "Ní féidir ordú '%1' a rith." +msgstr "" #: kdesu.cpp:232 #, kde-format @@ -259,18 +257,3 @@ msgstr "" msgid "Internal error: illegal return from SuProcess::checkInstall()" msgstr "" "Earráid inmheánach: filleadh neamhcheadaithe ó SuProcess::checkInstall()" - -#~ msgid "Ignore" -#~ msgstr "Déan neamhaird de" - -#~ msgid "&Ignore" -#~ msgstr "Déan neamha&ird de" - -#~ msgid "Command '%1' not found." -#~ msgstr "Ní bhfuarthas ordú '%1'." - -#~ msgid "Incorrect password, please try again." -#~ msgstr "Focal faire mícheart, bain triail eile as." - -#~ msgid "Let command use existing dcopserver" -#~ msgstr "Lig don ordú freastalaí dcop atá ann a úsáid" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ga/kioclient.po index 45f37c5339..60f83716c9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ga/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase/kioclient.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2007-07-08 10:16-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,33 +36,17 @@ msgstr "" "\n" "Comhréir:\n" -#: kioclient.cpp:57 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:58 +#, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" " %1 'url'\n" " # Opens a properties dialog of 'url'\n" "\n" msgstr "" -" kioclient openProperties 'url'\n" -" # Oscail roghchlár airíonna\n" -"\n" -#: kioclient.cpp:64 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient exec 'url' ['mimetype']\n" -#| " # Tries to open the document pointed to by 'url', in the " -#| "application\n" -#| " # associated with it in KDE. You may omit 'mimetype'.\n" -#| " # In this case the mimetype is determined\n" -#| " # automatically. Of course URL may be the URL of a\n" -#| " # document, or it may be a *.desktop file.\n" -#| " # 'url' can be an executable, too.\n" +#: kioclient.cpp:65 +#, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" " %1 'url' ['mimetype']\n" @@ -73,17 +57,8 @@ msgid "" " # 'url' can be the URL of a document, a *.desktop file,\n" " # or an executable.\n" msgstr "" -" kioclient exec 'url' ['cineál MIME']\n" -" # Bain triail as an gcáipéis ag 'url' a oscailt san " -"fheidhmchlár\n" -" # a bhaineann leis i KDE. Is féidir an cineál MIME a fhágáil " -"ar lár,\n" -" # agus déanfar an cineál MIME amach go huathoibríoch.\n" -" # Ar ndóigh, is féidir URL de cháipéis a thabhairt, nó de " -"chomhad *.desktop,\n" -" # nó de chlár inrite freisin.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -95,14 +70,8 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient download ['src']\n" -#| " # Copies the URL 'src' to a user-specified location'.\n" -#| " # 'src' may be a list of URLs, if not present then\n" -#| " # a URL will be requested.\n" -#| "\n" +#: kioclient.cpp:86 +#, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" " %1 ['src']\n" @@ -111,20 +80,9 @@ msgid "" " # a URL will be requested.\n" "\n" msgstr "" -" kioclient download ['foinse']\n" -" # Cóipeáil an URL 'foinse' go suíomh a shonraíonn an t-" -"úsáideoir.\n" -" # Is féidir 'foinse' a bheith ina liosta de URLanna; gan " -"'foinse',\n" -" # iarrfar URL ort.\n" -"\n" -#: kioclient.cpp:94 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient copy 'src' 'dest'\n" -#| " # Copies the URL 'src' to 'dest'.\n" -#| " # 'src' may be a list of URLs.\n" +#: kioclient.cpp:95 +#, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" " %1 'src' 'dest'\n" @@ -133,48 +91,27 @@ msgid "" " # The short version 'kioclient cp' is also available.\n" "\n" msgstr "" -" kioclient copy 'foinse' 'sprioc'\n" -" # Cóipeáil an URL 'foinse' go 'sprioc'.\n" -" # Is féidir 'foinse' a bheith ina liosta de URLanna.\n" -#: kioclient.cpp:103 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient ls 'url'\n" -#| " # Lists the contents of the directory 'url' to stdout\n" -#| "\n" +#: kioclient.cpp:104 +#, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" " %1 'url'\n" " # Prints the contents of the file 'url' to the standard output\n" "\n" msgstr "" -" kioclient ls 'url'\n" -" # Scríobh inneachar de 'url' go dtí an gnáth-aschur\n" -"\n" -#: kioclient.cpp:110 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient ls 'url'\n" -#| " # Lists the contents of the directory 'url' to stdout\n" -#| "\n" +#: kioclient.cpp:111 +#, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" " %1 'url'\n" " # Lists the contents of the directory 'url' to stdout\n" "\n" msgstr "" -" kioclient ls 'url'\n" -" # Scríobh inneachar de 'url' go dtí an gnáth-aschur\n" -"\n" -#: kioclient.cpp:117 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient remove 'url'\n" -#| " # Removes the URL\n" -#| " # 'url' may be a list of URLs.\n" +#: kioclient.cpp:118 +#, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" " %1 'url'\n" @@ -183,327 +120,171 @@ msgid "" " # The short version 'kioclient rm' is also available.\n" "\n" msgstr "" -" kioclient remove 'url'\n" -" # Baineann sé seo an URL\n" -" # Is féidir liosta URLanna a thabhairt mar 'url' freisin.\n" -#: kioclient.cpp:126 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient cat 'url'\n" -#| " # Writes out the contents of 'url' to stdout\n" -#| "\n" +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 +#, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" " %1 'url'\n" " # Shows all of the available information for 'url'\n" "\n" msgstr "" -" kioclient cat 'url'\n" -" # Scríobh inneachar de 'url' go dtí an gnáth-aschur\n" -"\n" -#: kioclient.cpp:133 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:141 +#, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" " %1\n" " # Opens a basic application launcher\n" "\n" msgstr "" -" kioclient openProperties 'url'\n" -" # Oscail roghchlár airíonna\n" -"\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient exec file:/home/weis/data/test.html\n" -#| " // Opens the file with default binding\n" -#| "\n" +#: kioclient.cpp:148 +#, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" " // Opens the file with the default application associated\n" " // with this MimeType\n" "\n" msgstr "" -" kioclient exec file:/home/kps/gaeilge/sauce.html\n" -" // Oscail an comhad le ceangal réamhshocraithe\n" -"\n" -#: kioclient.cpp:145 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient exec ftp://localhost/\n" -#| " // Opens new window with URL\n" -#| "\n" +#: kioclient.cpp:153 +#, kde-format msgid "" " kioclient exec ftp://localhost/\n" " // Opens URL with the default handler for ftp:// scheme\n" "\n" msgstr "" -" kioclient exec ftp://localhost/\n" -" // Oscail fuinneog nua le URL\n" -"\n" -#: kioclient.cpp:149 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient exec file:/root/Desktop/emacs.desktop\n" -#| " // Starts emacs\n" -#| "\n" +#: kioclient.cpp:157 +#, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" " // Starts emacs\n" "\n" msgstr "" -" kioclient exec file:/root/Desktop/emacs.desktop\n" -" // Tosaigh emacs\n" -"\n" -#: kioclient.cpp:153 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient exec .\n" -#| " // Opens the current directory. Very convenient.\n" -#| "\n" +#: kioclient.cpp:161 +#, kde-format msgid "" " kioclient exec .\n" " // Opens the current directory in the default\n" " // file manager. Very convenient.\n" "\n" msgstr "" -" kioclient exec .\n" -" // Oscail an chomhadlann reatha. An-áisiúil.\n" -"\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Cliant KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" "Uirlis lenar féidir oibríochtaí líonra thrédhearcaigh a dhéanamh ó líne na n-" "orduithe" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Scríobh ar an sprioc-chomhad má tá sé ann (cóipeáil agus aistriú)" -#: kioclient.cpp:191 -#, fuzzy, kde-format -#| msgid "URL or URLs" +#: kioclient.cpp:199 +#, kde-format msgid "file or URL" -msgstr "URL nó URLanna" +msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL nó URLanna Foinse" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL sprice" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Taispeáin na horduithe atá ar fáil" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Ordú (féach ar --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argóintí don ordú" -#: kioclient.cpp:225 -#, fuzzy, kde-format -#| msgid "Syntax Error: Not enough arguments\n" +#: kioclient.cpp:233 +#, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" -msgstr "Earráid Chomhréire: Níl go leor argóintí ann\n" +msgstr "" -#: kioclient.cpp:229 -#, fuzzy, kde-format -#| msgid "Syntax Error: Too many arguments\n" +#: kioclient.cpp:237 +#, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" -msgstr "Earráid Chomhréire: An iomarca argóintí\n" +msgstr "" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 -#, fuzzy, kde-format -#| msgid "Syntax Error: Unknown command '%1'\n" +#: kioclient.cpp:512 +#, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" -msgstr "Earráid Chomhréire: Ordú anaithnid '%1'\n" +msgstr "" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" msgstr "" - -#, fuzzy -#~| msgid "" -#~| " kioclient move 'src' 'dest'\n" -#~| " # Moves the URL 'src' to 'dest'.\n" -#~| " # 'src' may be a list of URLs.\n" -#~ msgid "" -#~ " kioclient move 'src' 'dest'\n" -#~ " # Moves the URL 'src' to 'dest'.\n" -#~ " # 'src' may be a list of URLs.\n" -#~ msgstr "" -#~ " kioclient move 'foinse' 'sprioc'\n" -#~ " # Bog an URL 'foinse' go 'sprioc'.\n" -#~ " # Is féidir 'foinse' a bheith ina liosta de URLanna.\n" - -#~ msgid "" -#~ " # 'dest' may be \"trash:/\" to move the files\n" -#~ " # to the trash.\n" -#~ msgstr "" -#~ " # Tabhair \"trash:/\" ar 'sprioc' chun na comhaid\n" -#~ " # a chur sa bhruscar.\n" - -#, fuzzy -#~| msgid "" -#~| " # the short version kioclient mv\n" -#~| " # is also available.\n" -#~| "\n" -#~ msgid "" -#~ " # the short version kioclient mv\n" -#~ " # is also available.\n" -#~ "\n" -#~ msgstr "" -#~ " # tá an leagan gearr kioclient mv\n" -#~ " # ar fáil freisin.\n" -#~ "\n" - -#, fuzzy -#~| msgid "" -#~| " # the short version kioclient cp\n" -#~| " # is also available.\n" -#~| "\n" -#~ msgid "" -#~ " # the short version kioclient cp\n" -#~ " # is also available.\n" -#~ "\n" -#~ msgstr "" -#~ " # tá an leagan gearr kioclient cp\n" -#~ " # ar fáil freisin.\n" -#~ "\n" - -#, fuzzy -#~| msgid "" -#~| " kioclient cat 'url'\n" -#~| " # Writes out the contents of 'url' to stdout\n" -#~| "\n" -#~ msgid "" -#~ " kioclient cat 'url'\n" -#~ " # Writes out the contents of 'url' to stdout\n" -#~ "\n" -#~ msgstr "" -#~ " kioclient cat 'url'\n" -#~ " # Scríobh inneachar de 'url' go dtí an gnáth-aschur\n" -#~ "\n" - -#, fuzzy -#~| msgid "" -#~| " # the short version kioclient rm\n" -#~| " # is also available.\n" -#~| "\n" -#~ msgid "" -#~ " # the short version kioclient rm\n" -#~ " # is also available.\n" -#~ "\n" -#~ msgstr "" -#~ " # tá an leagan gearr kioclient rm\n" -#~ " # ar fáil freisin.\n" -#~ "\n" - -#~ msgid "" -#~ "*** Examples:\n" -#~ " kioclient exec file:/root/Desktop/cdrom.desktop \"Mount default\"\n" -#~ " // Mounts the CDROM\n" -#~ "\n" -#~ msgstr "" -#~ "*** Samplaí:\n" -#~ " kioclient exec file:/root/Desktop/cdrom.desktop \"Mount default\"\n" -#~ " // Feistigh an CD-ROM\n" -#~ "\n" - -#~ msgid "" -#~ " kioclient exec file:/home/weis/data/test.html Netscape\n" -#~ " // Opens the file with netscape\n" -#~ "\n" -#~ msgstr "" -#~ " kioclient exec file:/home/kps/gaeilge/sauce.html Netscape\n" -#~ " // Oscail an comhad i Netscape\n" -#~ "\n" - -#~ msgid "" -#~ " kioclient exec file:/root/Desktop/cdrom.desktop\n" -#~ " // Opens the CDROM's mount directory\n" -#~ "\n" -#~ msgstr "" -#~ " kioclient exec file:/root/Desktop/cdrom.desktop\n" -#~ " // Oscail comhadlann fheistithe an CD-ROM\n" -#~ "\n" - -#~ msgid "Non-interactive use: no message boxes" -#~ msgstr "Úsáid neamh-idirghníomhach: gan bhoscaí teachtaireachta" - -#~ msgid "Unable to download from an invalid URL." -#~ msgstr "Ní féidir íosluchtú ó URL neamhbhailí." - -#~ msgid "url or urls" -#~ msgstr "URL nó URLanna" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ga/kmimetypefinder.po index 8eba2865fc..cbcaf9e25a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ga/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase/kmimetypefinder.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2007-07-08 10:16-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -28,35 +28,26 @@ msgid "Your emails" msgstr "" #: kmimetypefinder.cpp:26 -#, fuzzy, kde-format -#| msgid "MimeType Finder" +#, kde-format msgid "MIME Type Finder" -msgstr "Aimsitheoir Cineáil MIME" +msgstr "" #: kmimetypefinder.cpp:27 -#, fuzzy, kde-format -#| msgid "Gives the mimetype for a given file" +#, kde-format msgid "Gives the MIME type for a given file" -msgstr "Aimsigh an cineál MIME do rogha comhad" +msgstr "" #: kmimetypefinder.cpp:33 -#, fuzzy, kde-format -#| msgid "Use only the file content for determining the mimetype." +#, kde-format msgid "Use only the file content for determining the MIME type." msgstr "" -"Ná húsáid ach inneachar an chomhaid chun a chineál MIME a dhéanamh amach." #: kmimetypefinder.cpp:35 -#, fuzzy, kde-format -#| msgid "" -#| "Whether use the file name only for determining the mimetype. Not used if -" -#| "c is specified." +#, kde-format msgid "" "Whether use the file name only for determining the MIME type. Not used if -c " "is specified." msgstr "" -"Roghnaigh é seo más mian leat ainm an chomhaid amháin a úsáid chun a chineál " -"MIME a dhéanamh amach. Ní úsáidfear é seo má tá -c roghnaithe." #: kmimetypefinder.cpp:36 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ga/kstart.po index 56f74835e3..d783f7e0b5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ga/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -14,7 +14,6 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.0beta1\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" @@ -43,142 +42,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Ordú le rith" -#: kstart.cpp:92 -#, fuzzy, kde-format -#| msgid "" -#| "Alternative to : desktop file to start. D-Bus service will be " -#| "printed to stdout" +#: kstart.cpp:94 +#, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -"Mar mhalairt ar : comhad deisce le tosú. Priontálfar seirbhís D-Bus " -"ar an ngnáth-aschur" -#: kstart.cpp:95 -#, fuzzy, kde-format -#| msgid "Optional URL to pass , when using --service" +#: kstart.cpp:97 +#, kde-format msgid "Optional URL to pass to the application when using --application" -msgstr "URL roghnach le seoladh chuig , agus --service in úsáid" +msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Níor tugadh ordú" - -#, fuzzy -#~| msgid "" -#~| "Alternative to : desktop file to start. D-Bus service will be " -#~| "printed to stdout" -#~ msgid "" -#~ "Alternative to : desktop file path to start. D-Bus service will " -#~ "be printed to stdout. Deprecated: use --application" -#~ msgstr "" -#~ "Mar mhalairt ar : comhad deisce le tosú. Priontálfar seirbhís D-" -#~ "Bus ar an ngnáth-aschur" - -#~ msgid "" -#~ "Utility to launch applications with special window properties \n" -#~ "such as iconified, maximized, a certain virtual desktop, a special " -#~ "decoration\n" -#~ "and so on." -#~ msgstr "" -#~ "Uirlis lenar féidir feidhmchláir a thosú le hairíonna speisialta,\n" -#~ "mar shampla leis an bhfuinneog uasmhéadaithe nó laghdaithe, deasc " -#~ "fhíorúil ar leith,\n" -#~ "maisíochtaí speisialta, srl." - -#~ msgid "A regular expression matching the window title" -#~ msgstr "Slonn ionadaíochta atá comhoiriúnach do theideal na fuinneoige" - -#~ msgid "" -#~ "A string matching the window class (WM_CLASS property)\n" -#~ "The window class can be found out by running\n" -#~ "'xprop | grep WM_CLASS' and clicking on a window\n" -#~ "(use either both parts separated by a space or only the right part).\n" -#~ "NOTE: If you specify neither window title nor window class,\n" -#~ "then the very first window to appear will be taken;\n" -#~ "omitting both options is NOT recommended." -#~ msgstr "" -#~ "Teaghrán comhoiriúnach d'aicme na fuinneoige (airí WM_CLASS)\n" -#~ "Is féidir aicme na fuinneoige a fháil tríd an ordú\n" -#~ "'xprop | grep WM_CLASS' a rith agus fuinneog a chliceáil\n" -#~ "(úsáid an dá chuid le spás eatarthu nó an chuid ar dheis amháin).\n" -#~ "NÓTA: Mura sonraíonn tú teideal na fuinneoige ná aicme na fuinneoige,\n" -#~ "tógfar an chéad fhuinneog a thaispeántar; NÍ moltar duit an dá rogha\n" -#~ "a fhágáil ar lár." - -#~ msgid "Desktop on which to make the window appear" -#~ msgstr "Deasc a dtaispeánfar an fhuinneog air" - -#~ msgid "" -#~ "Make the window appear on the desktop that was active\n" -#~ "when starting the application" -#~ msgstr "" -#~ "Taispeáin an fhuinneog ar an deasc a bhí gníomhach\n" -#~ "nuair a tosaíodh an feidhmchlár" - -#~ msgid "Make the window appear on all desktops" -#~ msgstr "Cuir an fhuinneog ar gach deasc" - -#~ msgid "Iconify the window" -#~ msgstr "Cuir an fhuinneog ina deilbhín" - -#~ msgid "Maximize the window" -#~ msgstr "Uasmhéadaigh an fhuinneog" - -#~ msgid "Maximize the window vertically" -#~ msgstr "Uasmhéadaigh an fhuinneog go hingearach" - -#~ msgid "Maximize the window horizontally" -#~ msgstr "Uasmhéadaigh an fhuinneog go cothrománach" - -#~ msgid "Show window fullscreen" -#~ msgstr "Fuinneog ar an scáileán iomlán" - -#~ msgid "" -#~ "The window type: Normal, Desktop, Dock, Toolbar, \n" -#~ "Menu, Dialog, TopMenu or Override" -#~ msgstr "" -#~ "Cineál na fuinneoige: Gnáth, Deasc, Duga, Barra Uirlisí, \n" -#~ "Roghchlár, Dialóg, BarrRoghchlár nó Sárú" - -#~ msgid "" -#~ "Jump to the window even if it is started on a \n" -#~ "different virtual desktop" -#~ msgstr "" -#~ "Léim go dtí an fhuinneog fiú má tosaíodh é \n" -#~ "ar dheasc fhíorúil eile" - -#~ msgid "Try to keep the window above other windows" -#~ msgstr "Déan iarracht an fhuinneog a choinneáil os cionn cinn eile" - -#~ msgid "Try to keep the window below other windows" -#~ msgstr "Déan iarracht an fhuinneog a choinneáil faoi chinn eile" - -#~ msgid "The window does not get an entry in the taskbar" -#~ msgstr "Níl aon iontráil sa tascbharra ag an bhfuinneog" - -#~ msgid "The window does not get an entry on the pager" -#~ msgstr "Ní fhaigheann an fhuinneog iontráil ar an mbrabhsálaí leathanach" - -#~ msgid "The window is sent to the system tray in Kicker" -#~ msgstr "Seoltar an fhuinneog chuig tráidire an chórais i Kicker" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ga/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ga/plasma-open-settings.po new file mode 100644 index 0000000000..baa9bddd9b --- /dev/null +++ b/local/recipes/kde/kde-cli-tools/source/po/ga/plasma-open-settings.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the kde-cli-tools package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: kde-cli-tools\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Irish Gaelic \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " +"3 : 4\n" + +#, kde-format +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" + +#, kde-format +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" + +#: main.cpp:30 +#, kde-format +msgid "App to open Settings app" +msgstr "" + +#: main.cpp:32 +#, kde-format +msgid "A tool to start system settings" +msgstr "" + +#: main.cpp:34 +#, kde-format +msgid "(c) 2021, The KDE Developers" +msgstr "" + +#: main.cpp:67 +#, kde-format +msgid "Could not open: %1" +msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/gl/kbroadcastnotification.po index b2c1a6ae06..63003970a4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-10-19 22:14+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/gl/kcm_filetypes.po index 221301a384..2f7bb029e9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/kcm_filetypes.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-06-17 09:08+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" @@ -180,12 +180,12 @@ msgstr "Engadir unha extensión nova" msgid "Extension:" msgstr "Extensión:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tipo de ficheiro %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Usar a configuración do grupo «%1»" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/gl/kde-inhibit.po index 1cda0ae10d..67e087695a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-27 10:52+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/gl/kdesu.po index a0754c1d7f..80b9a1636d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/kdesu.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-02-27 07:53+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/gl/kioclient.po index 965f809f69..054f4941ce 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/kioclient.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2023-05-02 20:07+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" @@ -32,7 +32,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "mvillarino@kde-espana.org, adrian@chaves.gal" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -41,7 +41,7 @@ msgstr "" "\n" "Sintaxe:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -53,7 +53,7 @@ msgstr "" " # Abre un diálogo de propiedades de «URL».\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -72,7 +72,7 @@ msgstr "" " # URL pode ser o URL dun documento, dun ficheiro *.desktop\n" " # ou dun executábel.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +91,7 @@ msgstr "" " # Tamén está dispoñíbel a versión acurtada «kioclient mv».\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -107,7 +107,7 @@ msgstr "" " # A «orixe» pedirase se non se indica.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -123,7 +123,7 @@ msgstr "" " # A versión acurtada «kioclient cp» tamén está dispoñíbel.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -135,7 +135,7 @@ msgstr "" " # Imprime o contido do ficheiro «URL» na saída estándar.\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -147,7 +147,7 @@ msgstr "" " # Lista o contido do directorio «URL» na saída estándar.\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -163,7 +163,23 @@ msgstr "" " # A versión acurtada «kioclient rm» tamén está dispoñíbel.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 «URL»\n" +" # Abre un diálogo de propiedades de «URL».\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -175,7 +191,7 @@ msgstr "" " # Mostra toda a información dispoñíbel sobre «URL».\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -187,12 +203,12 @@ msgstr "" " # Abre un iniciador básico de aplicacións.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Exemplos:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -206,7 +222,7 @@ msgstr "" " // MIME.\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -217,7 +233,7 @@ msgstr "" " // Abre o URL co manexador predeterminado do esquema ftp://.\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -228,7 +244,7 @@ msgstr "" " // Inicia emacs.\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -242,22 +258,22 @@ msgstr "" " // Moi útil.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Cliente de KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Ferramenta da liña de ordes para operacións transparentes á rede" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Usar caixas de mensaxe e outras notificacións nativas" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -266,80 +282,80 @@ msgstr "" "Uso non interactivo: sen diálogos. Se non quere unha conexión gráfica use --" "platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Sobrescribe o destino se existe (para copiar e mover)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "ficheiro ou URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "lista de URL…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Lista de URL de orixe" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL de destino" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Amosar as ordes dispoñíbeis" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Orde (consulte --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "orde" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumentos da orde" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Erro de sintaxe, non hai argumentos de abondo\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Erro de sintaxe, hai demasiados argumentos\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "O destino onde descargar os ficheiros" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Erro de sintaxe, non se coñece a orde «%2»\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/gl/kmimetypefinder.po index eb9e7f7099..a62c8ef4d8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/kmimetypefinder.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-07-29 09:54+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/gl/kstart.po index 1cd10c6d83..55ac76f7cf 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/kstart.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-24 14:36+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" @@ -57,39 +57,39 @@ msgstr "Ferramenta para iniciar aplicacións" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "A orde a executar" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternativa a : o nome de ficheiro de escritorio para iniciar, p. " "ex. «org.kde.kate»." -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "Un URL opcional a pasar á aplicación cando se usa con «--application»." -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Non se indicou unha orde" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gl/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/gl/plasma-open-settings.po index 5e97fa3ddc..6be0c1097d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gl/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gl/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-05-02 19:44+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gu/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/gu/kcm_filetypes.po index aad7d6e639..a2906dd928 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gu/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gu/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2009-05-10 10:45+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -149,12 +149,12 @@ msgstr "નવું એક્સટેન્શન ઉમેરો" msgid "Extension:" msgstr "એક્સટેન્શન:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ફાઇલ પ્રકાર %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "સમૂહ '%1' માટે ગોઠવણીઓ વાપરો" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gu/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/gu/kdesu.po index dc6c8d009f..66991a555b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gu/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gu/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-12-23 12:31+0530\n" "Last-Translator: Sweta Kothari \n" "Language-Team: Gujarati\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gu/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/gu/kioclient.po index 5339d7c151..758897b6fa 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gu/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gu/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2008-09-30 23:57+0530\n" "Last-Translator: Pragnesh Radadiya \n" "Language-Team: Gujarati \n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "વાકયરચના:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -52,7 +52,7 @@ msgstr "" " # ગોઠવણીઓનુ મેનુ ખોલશે\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -80,7 +80,7 @@ msgstr "" " # હા પણ URL દસ્તાવેજની URL હોય શકે છે,\n" " # કયા તો તે *.desktop ફાઇલ હોય શકે છે.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -92,7 +92,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -114,7 +114,7 @@ msgstr "" " # URL માગવામાં આવશે.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -134,7 +134,7 @@ msgstr "" " # 'ઉદગમ' URLs ની યાદી હોઇ શકે છે.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -150,7 +150,7 @@ msgstr "" " # 'url' પરની વિગતો ને stdout પર લખો\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -166,7 +166,7 @@ msgstr "" " # 'url' પરની વિગતો ને stdout પર લખો\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -184,7 +184,22 @@ msgstr "" " # URL ને 'ઉદ્ગમ' થી 'લક્ષ્ય' ખસેડે છે.\n" " # 'ઉદ્ગમ' URLs ની યાદી પણ હોઇ શકે છે.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient ગોઠવણીઓ ખોલો 'url'\n" +" # ગોઠવણીઓનુ મેનુ ખોલશે\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -200,7 +215,7 @@ msgstr "" " # 'url' પરની વિગતો ને stdout પર લખો\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -216,12 +231,12 @@ msgstr "" " # ગોઠવણીઓનુ મેનુ ખોલશે\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -237,7 +252,7 @@ msgstr "" " // ફાઇલને મૂળભૂત જોડાણ સાથે ખોલો\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -252,7 +267,7 @@ msgstr "" " // URL સાથે નવી વિન્ડો ખોલે છે\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -267,7 +282,7 @@ msgstr "" " // URL સાથે નવી વિન્ડો ખોલે છે\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -283,106 +298,106 @@ msgstr "" " // હાલની ડિરેકટરી ખોલે છે. ખૂબ જ માફક આવે તેવૂ.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO કલાઇન્ટ" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "નેટવર્ક-પારદર્શક કાર્યો માટે આદેશ-રેખા સાધન" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL કે URLs" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "ઉદ્ગમ URL ke URLs" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "લક્ષ્ય URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "ઉપલ્બધ આદેશો બતાવો" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "આદેશ (જુઓ --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "આદેશ માટેની દલીલો" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "વાકયરચના ભૂલ: અપૂરતી દલીલો\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "વાકયરચના ભૂલ: વધુ પડતી દલીલો\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "વાકયરચના ભૂલ: અજાણ્યો આદેશ '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gu/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/gu/kmimetypefinder.po index 1cdd3a4afd..e494ea9d9f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gu/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gu/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-02-01 12:38+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/gu/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/gu/kstart.po index 75f60608b4..4740e93d22 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/gu/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/gu/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart-gu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2008-11-18 10:58+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -42,37 +42,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) ૧૯૯૭-૨૦૦૦ મેથ્થિઆસ ઇટ્રિચ (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "મેથ્થિઆસ ઇટ્રિચ" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "ડેવિડ ફાઉરે" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "રીચાર્ડ જે. મુરે" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "ચલાવવાનો આદેશ" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "કોઇ આદેશ સ્પષ્ટ કરેલ નથી" diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/he/kbroadcastnotification.po index 5ed25ebc68..7108c0b08b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/kbroadcastnotification.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-16 11:30-0400\n" "Last-Translator: Elkana Bardugo \n" "Language-Team: Hebrew\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/he/kcm_filetypes.po index 94777267b2..dc308d8153 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/kcm_filetypes.po @@ -16,20 +16,20 @@ # tahmar1900 , 2008, 2009. # Elkana Bardugo , 2016. # Elkana Bardugo , 2017. #zanata -# SPDX-FileCopyrightText: 2023 Yaron Shahrabani +# SPDX-FileCopyrightText: 2023, 2025, 2026 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: kcm5_filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" -"PO-Revision-Date: 2023-11-16 21:39+0200\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" +"PO-Revision-Date: 2026-04-13 08:11+0300\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.3\n" +"X-Generator: Lokalize 25.12.3\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" @@ -51,12 +51,12 @@ msgstr "פעולה בלחיצה על הכפתור השמאלי (רק במנהל #: filegroupdetails.cpp:26 filetypedetails.cpp:134 #, kde-format msgid "Show file in embedded viewer" -msgstr "הצגת הקובץ במציג מוטמע" +msgstr "להציג את הקובץ במציג מוטמע" #: filegroupdetails.cpp:27 filetypedetails.cpp:135 #, kde-format msgid "Show file in separate viewer" -msgstr "הצגת הקובץ במציג נפרד" +msgstr "להציג את הקובץ במציג נפרד" #: filegroupdetails.cpp:36 #, kde-format @@ -179,12 +179,12 @@ msgstr "הוספת סיומת חדשה" msgid "Extension:" msgstr "סיומת:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "סוג הקובץ %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "להשתמש בהגדרות לקבוצה ‚%1’" @@ -439,7 +439,7 @@ msgstr "עריכה…" #: kservicelistwidget.cpp:117 #, kde-format msgid "Edit command line of the selected application." -msgstr "עריכת שורת הפקודה של היישום הנבחר." +msgstr "עריכת שורת הפקודות של היישום הנבחר." #: kservicelistwidget.cpp:124 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/he/kde-inhibit.po index 243cebad11..93e11a85ac 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/kde-inhibit.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-13 22:45+0200\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/he/kdesu.po index 3ec0715ba9..4d91d7cd92 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/kdesu.po @@ -14,20 +14,21 @@ # Diego Iastrubni , 2005, 2008, 2009. # elkana bardugo , 2016. # Elkana Bardugo , 2017. #zanata +# SPDX-FileCopyrightText: 2026 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: kdesu5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" -"PO-Revision-Date: 2017-05-22 05:43-0400\n" -"Last-Translator: Elkana Bardugo \n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-05-14 20:56+0300\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2011-01-04 21:12+0000\n" -"X-Generator: Zanata 3.9.6\n" +"X-Generator: Lokalize 26.04.0\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" @@ -256,8 +257,8 @@ msgid "" ">On some systems, you need to be in a special group (often: wheel) to use " "this program." msgstr "" -"הגישה נדחתה.
יש לנסות שנית, כנראה הסיסמה לא נכונה.
במערכות " -"מסויימות אליך להיות בקבוצה מיוחדת (לרוב: wheel) כדי להשתמש ביישום זה." +"הגישה נדחתה.
יש לנסות שנית, כנראה הסיסמה לא נכונה.
במערכות מסוימות " +"אליך להיות בקבוצה מיוחדת (לרוב: wheel) כדי להשתמש ביישום זה." #: sudlg.cpp:105 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/he/kioclient.po index 79bc2e453e..c621a9eb77 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/kioclient.po @@ -1,18 +1,18 @@ # Elkana Bardugo , 2017. #zanata -# SPDX-FileCopyrightText: 2023 Yaron Shahrabani +# SPDX-FileCopyrightText: 2023, 2025 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: kioclient5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2023-11-16 20:44+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-09 15:36+0300\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.3\n" +"X-Generator: Lokalize 25.04.3\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" @@ -26,7 +26,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "kde-l10n-he@kde.org" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -35,7 +35,7 @@ msgstr "" "\n" "תחביר:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -47,7 +47,7 @@ msgstr "" " # פותח חלונית מאפיינים של ‚url’\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -66,7 +66,7 @@ msgstr "" " # ‚url’ יכול להיות כתובת של מסמך, קובץ ‎*.desktop,\n" " # או קובץ הפעלה.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -84,7 +84,7 @@ msgstr "" " # הגרסה הקצרה ‚kioclient mv’ זמינה גם כן.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -100,7 +100,7 @@ msgstr "" " # תופיע בקשה לכתובת.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -116,7 +116,7 @@ msgstr "" " # הגרסה הקצרה ‚kioclient cp’ זמינה גם כן.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -128,7 +128,7 @@ msgstr "" " # מציג את תוכן הקובץ ‚url’ דרך הפלט התקני (stdout)\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -140,7 +140,7 @@ msgstr "" " # מציג את תוכן התיקייה ‚url’ דרך stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -156,7 +156,17 @@ msgstr "" " # הגרסה הקצרה ‚kioclient rm’ זמינה גם כן.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # יוצר תיקייה ב־‚url’\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -168,7 +178,7 @@ msgstr "" " # מציג את כל המידע הזמין על ‚url’\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -180,12 +190,12 @@ msgstr "" " # פותח משגר יישומים בסיסי\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** דוגמאות:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -198,7 +208,7 @@ msgstr "" " // לסוג MIME זה\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -209,7 +219,7 @@ msgstr "" " // פותח כתובת עם היישום שמטפל בסכמת ftp://‎\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -220,7 +230,7 @@ msgstr "" " // מפעיל את emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -233,22 +243,22 @@ msgstr "" " // הקבצים כברירת מחדל. נוח מאוד.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "לקוח KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "כלי שורת פקודה לפעולות שקופות לרשת" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "אפשר להשתמש בתיבות הודעה ושאר התראות מובנות" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -257,80 +267,80 @@ msgstr "" "שימוש בלתי אינטראקטיבי: ללא תיבות הודעות. אם אין לך צורך בחיבור גרפי, יש " "להשתמש ב־‎--platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "דריסה על היעד אם קיים (להעתקה והעברה)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "קובץ או כתובת" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "urls..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "כתובת או כתובות מקור" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "כתובת יעד" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "הצגת פקודות זמינות" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "פקודה (ר׳ ‎--commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "command" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "ארגומנטים לפקודה" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: שגיאת תחביר, אין מספיק ארגומנטים\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: שגיאת תחביר, יותר מדי ארגומנטים\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "יעד להורדת הקבצים" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: שגיאת תחביר, הפקודה ‚%2’ אינה ידועה\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/he/kmimetypefinder.po index 87f62e82d3..df6fa3ae5d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/kmimetypefinder.po @@ -6,20 +6,20 @@ # Liel Fridman , 2011. # Elkana Bardugo , 2016. # Elkana Bardugo , 2017. #zanata -# SPDX-FileCopyrightText: 2023 Yaron Shahrabani +# SPDX-FileCopyrightText: 2023, 2025 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: kmimetypefinder5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" -"PO-Revision-Date: 2023-11-16 13:59+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-09-17 10:43+0300\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.3\n" +"X-Generator: Lokalize 25.08.0\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" @@ -58,4 +58,4 @@ msgstr "האם להשתמש בשם הקובץ רק לאיתור סוג ה־MIME. #: kmimetypefinder.cpp:36 #, kde-format msgid "The filename to test. '-' to read from stdin." -msgstr "שם הקובץ לבדיקה. ‚-’ לקריאה מקלט שורת הפקודה (stdin)." +msgstr "שם הקובץ לבדיקה. ‚-’ לקריאה מקלט שורת הפקודות (stdin)." diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/he/kstart.po index 943fe179f1..2f37db37ac 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/kstart.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-11-16 14:01+0200\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" @@ -55,38 +55,38 @@ msgstr "כלי להפעלת יישומים" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997‏-2000 מתיאס אטריך (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "מטיאס אטריך" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "דוד פור" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "ריצ׳ארד ג׳. מור" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "פקודה להפעלה" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "חלופה ל<פקודה>: שם קובץ שולחן עבודה (desktop) להפעלה, למשל: org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "כתובת להעברת ליישום בעת שימוש ב־‎--application כרשות" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "לא צוינה פקודה" diff --git a/local/recipes/kde/kde-cli-tools/source/po/he/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/he/plasma-open-settings.po index c2012b2a2f..a262b6ab40 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/he/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/he/plasma-open-settings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-06 10:41+0200\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/hi/kbroadcastnotification.po index 227759624f..94fd0226dc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-15 15:58+0530\n" "Last-Translator: Kali \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/hi/kcm_filetypes.po index c88e521ed2..9c2db3ecbe 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2021-06-29 20:35+0530\n" "Last-Translator: Raghavendra Kamath \n" "Language-Team: kde-hindi\n" @@ -151,12 +151,12 @@ msgstr "नया एक्सटेंशन जोड़ें" msgid "Extension:" msgstr "एक्सटेंशनः" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "फ़ाइल की किस्म %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "समूह '%1' के लिए विन्यास इस्तेमाल करें" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/hi/kde-inhibit.po index 2a4b2f4343..369b3597f4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/kde-inhibit.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-15 15:58+0530\n" "Last-Translator: Kali \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/hi/kdesu.po index d6c5add5e9..93385413ff 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2012-07-10 20:18+0530\n" "Last-Translator: G Karunakar \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/hi/kioclient.po index c7222b2f35..058cf112d6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2012-07-10 20:26+0530\n" "Last-Translator: G Karunakar \n" "Language-Team: Hindi \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "सिंटेक्स:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # प्रॉपर्टी मेन्यू खोलता है\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -84,7 +84,7 @@ msgstr "" " # document, or it may be a *.desktop file.\n" " # 'url' can be an executable, too.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -96,7 +96,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -118,7 +118,7 @@ msgstr "" " # a URL will be requested.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -136,7 +136,7 @@ msgstr "" " # Copies the URL 'src' to 'dest'.\n" " # 'src' may be a list of URLs.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # Writes out the contents of 'url' to stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -168,7 +168,7 @@ msgstr "" " # Writes out the contents of 'url' to stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,22 @@ msgstr "" " # Removes the URL\n" " # 'url' may be a list of URLs.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" केआईओक्लाएंट ओपन प्रॉपर्टीज़ 'यूआरएल'\n" +" # प्रॉपर्टी मेन्यू खोलता है\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -202,7 +217,7 @@ msgstr "" " # Writes out the contents of 'url' to stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -218,12 +233,12 @@ msgstr "" " # प्रॉपर्टी मेन्यू खोलता है\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -239,7 +254,7 @@ msgstr "" " // फ़ाइल को डिफ़ॉल्ट बाइंडिंग के साथ खोलता है\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -254,7 +269,7 @@ msgstr "" " // यूआरएल के साथ नया विंडो खोलता है\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -269,7 +284,7 @@ msgstr "" " // ईमैक्स खोलता है\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -285,106 +300,106 @@ msgstr "" " // मौजूदा डिरेक्ट्री को खोलता है. बहुत ही सुविधाजनक.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "केआईओ क्लाएंट" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "नेटवर्क-पारदर्शी ऑपरेशनों के लिए कमांड लाइन औजार" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "गंतव्य के उपर लिख दें अगर पहले से मोजूद है (नकल वस्थानांतरण के लिए )" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "यूआरएल" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "स्रोत यूआरएल" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "गंतव्य यूआरएल" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "उपलब्ध कमांड्स दिखाएँ" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "कमांड (देखें --कमांड्स)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "कमांड के लिए आर्गुमेंट्स" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "सिंटेक्स त्रुटिः पर्याप्त आर्गुमेंट नहीं हैं\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "सिंटेक्स त्रुटिः बहुत ज्यादा आर्गुमेंट हैं\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "सिंटेक्स त्रुटिः अज्ञात कमांड '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/hi/kmimetypefinder.po index 52cc625388..3cdd4578c5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2012-07-04 00:58+0530\n" "Last-Translator: G Karunakar \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/hi/kstart.po index 16cefd2cef..7d522c5e4b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2012-07-02 13:57+0530\n" "Last-Translator: G Karunakar \n" "Language-Team: Hindi \n" @@ -44,27 +44,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 मैथियास एट्रिच (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "मेथियास एट्रिच" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "डेविड फॉउरे" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "रिचर्ड जे मूर" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "चलाने के लिए कमांड " -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -74,13 +74,13 @@ msgstr "" "Alternative to : desktop file to start. D-Bus service will be " "printed to stdout" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "Optional URL to pass , when using --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "कोई कमांड निर्दिष्ट नहीं है" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hi/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/hi/plasma-open-settings.po index 79f11925fb..ec766d3f03 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hi/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hi/plasma-open-settings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-15 15:58+0530\n" "Last-Translator: Kali \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hne/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/hne/kcm_filetypes.po index c19d4ebd2d..f1d1833dd7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hne/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hne/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2009-01-21 18:20+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -153,12 +153,12 @@ msgstr "नवा एक्सटेंसन जोड़व" msgid "Extension:" msgstr "एक्सटेंसनः" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "फाइल के किसिम %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "समूह '%1' बर सेटिंग उपयोग करव" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hne/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/hne/kdesu.po index e6f3df4609..ae03be57bd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hne/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hne/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-02-09 17:52+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hne/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/hne/kioclient.po index 6c0c24cbee..efd291bd95 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hne/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hne/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2009-02-05 16:18+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "सिंटेक्स:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # प्रापर्टी मेन्यू खोलथे \n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -67,7 +67,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -79,7 +79,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -101,7 +101,7 @@ msgstr "" " # यूआरएल बर निवेदन करे जाही.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -121,7 +121,7 @@ msgstr "" " # 'स्रोत' यूआरएल के सूची हो सकथे .\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -137,7 +137,7 @@ msgstr "" " # यूआरएल के सामान ल एसटीडीआउट मं लिखथे \n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -153,7 +153,7 @@ msgstr "" " # यूआरएल के सामान ल एसटीडीआउट मं लिखथे \n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -171,7 +171,22 @@ msgstr "" " # खिसकाथे 'स्रोत' ल 'गंतव्य' में.\n" " # 'स्रोत' यूआरएल के सूची हो सकथे .\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # प्रापर्टी मेन्यू खोलथे \n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -187,7 +202,7 @@ msgstr "" " # यूआरएल के सामान ल एसटीडीआउट मं लिखथे \n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -203,12 +218,12 @@ msgstr "" " # प्रापर्टी मेन्यू खोलथे \n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -224,7 +239,7 @@ msgstr "" " // फाइल ल डिफाल्ट बाइंडिंग के साथ खोलथे \n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -239,7 +254,7 @@ msgstr "" " // यूआरएल के साथ नवा विंडो खोलथे \n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -254,7 +269,7 @@ msgstr "" " // ईमैक्स खोलथे \n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -270,106 +285,106 @@ msgstr "" " // अभी हाल के डिरेक्टरी ल खोलथे. बहुत ही सुविधाजनक.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "केआईओ क्लायंट" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "नेटवर्क-पारदर्सी आपरेसन मन बर कमांड लाइन औजार" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "यूआरएल या यूआरएल" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "स्रोत यूआरएल या यूआरएल" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "गंतव्य यूआरएल" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "मिलत कमांड मन ल देखाव" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "कमांड (देखव --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "कमांड बर आर्गुमेंट्स" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "सिंटेक्स गलतीः पूरा आर्गुमेंट नइ हे\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "सिंटेक्स गलतीः बहुत जादा आर्गुमेंट हे\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "सिंटेक्स गलतीः अग्यात कमांड '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hne/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/hne/kmimetypefinder.po index 244971dae4..3d6a87a2f7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hne/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hne/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-30 18:36+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hne/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/hne/kstart.po index 4c5a2a0107..63ed91b776 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hne/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hne/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-01-29 17:19+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -44,37 +44,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 मैथियास एट्रिच (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "मेथियास एट्रिच" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "डेविड फाउरे" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "रिचर्ड जे मूर" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "चलाय बर कमांड " -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "कोई कमांड निरधारित नइ हे" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hr/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/hr/kcm_filetypes.po index ce22d1f3dc..57ca332d7b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hr/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hr/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2011-04-17 13:48+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -175,12 +175,12 @@ msgstr "Dodaj novu ekstenziju" msgid "Extension:" msgstr "Ekstenzija:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Vrsta datoteke %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Upotrijebi postavke grupe '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hr/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/hr/kdesu.po index bf1c5234fe..805ae98a38 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hr/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hr/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2011-03-04 19:12+0100\n" "Last-Translator: Marko Dimjasevic \n" "Language-Team: Croatian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hr/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/hr/kioclient.po index 4296bb6156..5ac27fdcf5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hr/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hr/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2011-07-13 16:59+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -31,7 +31,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "\n" "Sintaksa:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -56,7 +56,7 @@ msgstr "" " # Otvara izbornik svojstava\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -85,7 +85,7 @@ msgstr "" " # dokumenta, ili može biti *.desktop datoteka.\n" " # 'url' može biti i izvršan.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -97,7 +97,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -119,7 +119,7 @@ msgstr "" " # će biti zatražen URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -137,7 +137,7 @@ msgstr "" " # Kopira URL 'src' u 'dest'.\n" " # 'src' može biti lista URL-ova.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -153,7 +153,7 @@ msgstr "" " # Ispisuje sadržaj 'url' u stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -169,7 +169,7 @@ msgstr "" " # Ispisuje sadržaj 'url' u stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -187,7 +187,22 @@ msgstr "" " # Uklanja URL.\n" " # 'url' može biti lista URL-ova.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Otvara izbornik svojstava\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -203,7 +218,7 @@ msgstr "" " # Ispisuje sadržaj 'url' u stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -219,12 +234,12 @@ msgstr "" " # Otvara izbornik svojstava\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -240,7 +255,7 @@ msgstr "" " // Otvara novu datoteku sa uobičajenim binding\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -255,7 +270,7 @@ msgstr "" " // Otvara novi prozor sa URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -270,7 +285,7 @@ msgstr "" " // Podiže emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -286,106 +301,106 @@ msgstr "" " // Otvara trenutni direktorij. Jako zgodno.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO klijent" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Alat naredbenog redka za mrežno-transparentne operacije" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Prepiši odredište ako ostoji (za kopiranje i premještanje)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL ili URL-ovi" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Izvorni URL ili URL-ovi" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Ciljni URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Prikaži dostupne naredbe" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Naredba (vidi --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenti naredbe" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Sintaksna greška: Nema dovoljno argumenata\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Sintaksna greška: Previše argumenata\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Sintaksna greška: Nepoznata naredba '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hr/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/hr/kmimetypefinder.po index 84ae1faaeb..83eed71080 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hr/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hr/kmimetypefinder.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-08-27 21:43+0200\n" "Last-Translator: DoDo \n" "Language-Team: Croatian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hr/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/hr/kstart.po index 8842792326..b9edc49fe0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hr/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hr/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-08-22 22:25+0200\n" "Last-Translator: Zarko Pintar \n" "Language-Team: Croatian \n" @@ -48,27 +48,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997–2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Naredbu za izvršiti." -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -78,13 +78,13 @@ msgstr "" "Zamjena za : datoteka radne površine za pokrenuti. D-Bus servis će " "biti ispisan na stdout" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "Izborni URL za propustiti , kada se koristi --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Bez određene naredbe" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hsb/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/hsb/kcm_filetypes.po index ccf9355257..812165d70d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hsb/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hsb/kcm_filetypes.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2021-10-19 18:34+0200\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" @@ -172,12 +172,12 @@ msgstr "Dodaj nowu ekstensiju" msgid "Extension:" msgstr "Ekstensija:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Družina dataje: %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Wužiwaj nastajenja za skupinu '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hsb/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/hsb/kdesu.po index 280348e09d..3001894091 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hsb/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hsb/kdesu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2005-02-22 15:33+0100\n" "Last-Translator: Bianka Šwejdźic \n" "Language-Team: Hornjoserbšćina\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hsb/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/hsb/kioclient.po index abcd5e1408..17aefbab8c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hsb/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hsb/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: desktop_kdebase\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2008-11-13 23:28+0100\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "Syntaksa:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -52,7 +52,7 @@ msgstr "" " # wočini meni ze swójstwami\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -80,7 +80,7 @@ msgstr "" " # URL móže być URL dokumenta\n" " # abo *.desktop-dataja.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -92,7 +92,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -114,7 +114,7 @@ msgstr "" " # so za URLom dopraša.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -134,7 +134,7 @@ msgstr "" " # 'src' móže być lisćina URLow.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -150,7 +150,7 @@ msgstr "" " # Pisa wobsah 'url' na stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -166,7 +166,7 @@ msgstr "" " # Pisa wobsah 'url' na stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -184,7 +184,22 @@ msgstr "" " # Přesunje URL 'src' na 'dest'.\n" " # 'src' móže być lisćina URLow.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # wočini meni ze swójstwami\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -200,7 +215,7 @@ msgstr "" " # Pisa wobsah 'url' na stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -216,12 +231,12 @@ msgstr "" " # wočini meni ze swójstwami\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -237,7 +252,7 @@ msgstr "" " // Wočini dataju ze standardnej komponentu\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -252,7 +267,7 @@ msgstr "" " // Wočini nowe wokno z URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -267,7 +282,7 @@ msgstr "" " // Startuje emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -283,108 +298,108 @@ msgstr "" " // Wočini aktualny zapisk. Jara přihódnje.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" "Na přikazowej lince bazowacy program za operacije, kiž su přez syć " "transparentne" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL abo wjacore" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Žórłowe URLe" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Cilowy URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Móžne přikazy pokazować" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Přikaz (hl. --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenty za přikaz" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Syntaktiski zmylk: přemało argumentow.\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Syntaktiski zmylk: přewjele argumentow.\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Syntaktiski zmylk: Njeznaty přikaz '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hsb/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/hsb/kmimetypefinder.po index 77705a7dc4..431605730b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hsb/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hsb/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: desktop_kdebase\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-11-06 22:08+0100\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hsb/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/hsb/kstart.po index a3fa404561..8205aa3f9c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hsb/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hsb/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2003-12-22 21:53+0100\n" "Last-Translator: Prof. Dr. Eduard Werner \n" "Language-Team: Upper Sorbian\n" @@ -42,37 +42,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, fuzzy, kde-format msgid "Command to execute" msgstr "Přikaz, kiž ma so wuwjesć." -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Žadyn přikaz zapodaty" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/hu/kbroadcastnotification.po index 125b868b53..51331aeb80 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-15 21:17+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/hu/kcm_filetypes.po index e07848f56e..f1bdc42e62 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: KDE 4.1\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-01-15 21:16+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" @@ -168,12 +168,12 @@ msgstr "Új kiterjesztés hozzáadása" msgid "Extension:" msgstr "Kiterjesztés:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Fájltípus: %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "A(z) „%1” csoport beállításainak használata" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/hu/kde-inhibit.po index 52ff1ad91d..95b1187401 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-15 21:19+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/hu/kdesu.po index b4177eec72..7a5f606cf6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: KDE 4.2\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-02-14 22:41+0100\n" "Last-Translator: Kiszel Kristóf \n" "Language-Team: Hungarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/hu/kioclient.po index 0d86773cf6..ee69f4cfed 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/kioclient.po @@ -5,13 +5,13 @@ # Kristóf Kiszel , 2011, 2014, 2019. # Balázs Úr , 2012, 2013. # Kiszel Kristóf , 2017, 2021. -# SPDX-FileCopyrightText: 2024 Kristof Kiszel +# SPDX-FileCopyrightText: 2024, 2025 Kristof Kiszel msgid "" msgstr "" "Project-Id-Version: KDE 4.1\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2024-01-15 21:30+0100\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-09-03 20:50+0200\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 23.08.4\n" +"X-Generator: Lokalize 25.08.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -31,7 +31,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "ulysses@fsf.hu" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "\n" "Szintaktika:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -52,7 +52,7 @@ msgstr "" " # Megnyitja az „url” tulajdonságok ablakát\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -73,7 +73,7 @@ msgstr "" " # asztali fájlra.\n" " # Az „url” lehet végrehajtható állomány is.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +91,7 @@ msgstr "" " # A rövid „kioclient mv” verzió is elérhető.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -108,7 +108,7 @@ msgstr "" " # a program bekéri.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -124,7 +124,7 @@ msgstr "" " # A rövid „kioclient cp” verzió is elérhető.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -136,7 +136,7 @@ msgstr "" " # Kilistázza az „url” fájl tartalmát a standard kimenetre\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -148,7 +148,7 @@ msgstr "" " # Kilistázza az „url” mappa tartalmát a standard kimenetre\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -164,7 +164,17 @@ msgstr "" " # A rövid „kioclient rm” verzió is elérhető.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 „url”\n" +" # Létrehoz egy mappát az „url”-en\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -176,7 +186,7 @@ msgstr "" " # Megjeleníti az „url” összes elérhető adatát\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -188,12 +198,12 @@ msgstr "" " # Megnyit egy egyszerű alkalmazásindítót.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Példák:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -206,7 +216,7 @@ msgstr "" " // alapértelmezett alkalmazással\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -218,7 +228,7 @@ msgstr "" "kezelőjével\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -229,7 +239,7 @@ msgstr "" " // Elindítja az Emacs-ot\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -242,22 +252,22 @@ msgstr "" " // fájlkezelőben. Nagyon kényelmes.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO kliensprogram" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Parancssoros segédprogram hálózati műveletekhez" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Üzenetablakok és más natív értesítések használata" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -266,80 +276,80 @@ msgstr "" "Nem interaktív használat: nincsenek üzenetablakok. Ha nem szeretne grafikus " "kapcsolatot, használja ezt a kapcsolót: --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Felülírja a célt, ha az létezik (másolásnál és áthelyezésnél)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "fájl vagy URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url-ek…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Egy vagy több forrás-URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Cél-URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Parancslista" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Parancs (lásd --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "parancs" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "A parancs argumentumai" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Szintaktikai hiba, túl kevés argumentum\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Szintaktikai hiba, túl sok argumentum\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "A fájlok letöltési helye" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Szintaktikai hiba, ismeretlen parancs - „%2”\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/hu/kmimetypefinder.po index f006372cc7..7688fb2c70 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/kmimetypefinder.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: KDE 4.1\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-15 21:30+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/hu/kstart.po index e5a36a82ca..e7a455a4fc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: KDE 4.0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-01-15 21:31+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" @@ -43,40 +43,40 @@ msgstr "Segédprogram alkalmazások indításához" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(c) Matthias Ettrich (ettrich@kde.org), 1997-2000." -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Végrehajtandó parancs" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternatíva a parancsra: az indítandó asztali fájl neve, például " "org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "Az alkalmazásnak átadandó opcionális URL az --application használatakor" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nincs megadva parancs" diff --git a/local/recipes/kde/kde-cli-tools/source/po/hu/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/hu/plasma-open-settings.po index 6d2bea2b4b..ca76bd2140 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/hu/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/hu/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-15 21:31+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ia/kbroadcastnotification.po index 9e9115c67d..b0fb464811 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-10-08 22:13+0200\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ia/kcm_filetypes.po index 787a84ca5f..103e55bcaf 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-16 22:15+0200\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" @@ -170,12 +170,12 @@ msgstr "Adde nove extension" msgid "Extension:" msgstr "Extension:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Typo de file %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Usa preferentias pro gruppo '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ia/kde-inhibit.po index 4ddb20cc16..b8884551fa 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-13 08:39+0100\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ia/kdesu.po index a348a2ec29..1a6d9e8975 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2020-01-01 23:06+0100\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ia/kioclient.po index 210108e902..30fa43d652 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/kioclient.po @@ -1,20 +1,20 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# g.sora , 2010, 2011, 2012, 2013, 2014, 2020, 2021, 2022. +# SPDX-FileCopyrightText: 2010, 2011, 2012, 2013, 2014, 2020, 2021, 2022, 2026 g.sora msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-04-19 22:41+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2026-01-14 12:33+0100\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 22.03.90\n" +"X-Generator: Lokalize 23.08.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "g.sora@tiscali.it" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "Syntaxe:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -48,7 +48,7 @@ msgstr "" " # Aperi un dialogo de proprietates de 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -69,7 +69,7 @@ msgstr "" "desktop\n" " # o un executable.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -88,7 +88,7 @@ msgstr "" " # Le version breve 'kioclient mv' es etiam disponibile.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -104,7 +104,7 @@ msgstr "" " # tunc un URL essera demandate.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -119,7 +119,7 @@ msgstr "" " # 'src' pote esser un lista de URLs.\n" " # Le version breve 'kioclient cp' es etiam disponibile.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -132,7 +132,7 @@ msgstr "" "stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -144,7 +144,7 @@ msgstr "" " # Il lista le contentos del directorio 'url' a stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -159,7 +159,17 @@ msgstr "" " # 'url' pote esser un lista de URLs.\n" " # Le version breve 'kioclient rm' es anque disponibile.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Crea un directorio a 'url'\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -171,7 +181,7 @@ msgstr "" " # Monstra omne le information disponibile per 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -183,12 +193,12 @@ msgstr "" " # Il Aperi un lanceator de application basic.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Exemplos:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -201,7 +211,7 @@ msgstr "" " // con le MimeType\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -212,7 +222,7 @@ msgstr "" " // il aperi URL con le maneator predefinite per ftp://scheme\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -223,7 +233,7 @@ msgstr "" " // il initia emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -236,22 +246,22 @@ msgstr "" " // de file predefinite. Multe conveniente.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Instrumento de linea de commando pro operationes transparente de rete" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Usa quadratos de message e altere notificationes native" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -260,80 +270,80 @@ msgstr "" "Uso non interactive: necun quadratos de message.Si tu non vole un connexion " "graphic, usa --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Super scriber destination si illo existe (pro copiar e mover)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "file o URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "urls..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL o URLs Fonte" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL de destination" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Monstrar commandos disponibile" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Commando (tu vide --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "Commando:" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumentos pro commando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Error de syntaxe: argumentos non bastante\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Error de Syntaxe: troppo argumentos\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Destination ubi discargar le files" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Error de Syntaxe: commando incognite '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ia/kmimetypefinder.po index a8645b34e9..6dcc7d53e0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2020-01-02 10:54+0100\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ia/kstart.po index f94950eea3..5d51f8babc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-19 08:11+0200\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" @@ -42,39 +42,39 @@ msgstr "Utilitate per lancear applicationes" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Commando que il debe exequer" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternativa a : nomine de file de scriptorio de initiar, p.ex.org." "kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "URL optional de passar al application quando on usa --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nulle commando specificate" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ia/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ia/plasma-open-settings.po index 5a5e5dc07a..e5bdc16a59 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ia/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ia/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-08-30 16:20+0200\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/id/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/id/kbroadcastnotification.po index a03ab90114..65020baa17 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/id/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/id/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2018-10-30 07:40+0700\n" "Last-Translator: Wantoyo \n" "Language-Team: Indonesian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/id/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/id/kcm_filetypes.po index f36e9eeb52..3ce3977fdc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/id/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/id/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2022-09-27 17:54+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" @@ -172,12 +172,12 @@ msgstr "Tambah Ekstensi Baru" msgid "Extension:" msgstr "Ekstensi:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tipe file %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Gunakan pengaturan untuk grup '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/id/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/id/kdesu.po index 5301566183..44583b9d8d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/id/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/id/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-09-27 18:12+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/id/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/id/kioclient.po index 7fab3942db..64ce24626a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/id/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/id/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2022-03-24 06:19+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "andhika.padmawan@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Sintaksis:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # Membuka menu properti\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -85,7 +85,7 @@ msgstr "" " # dokumen, atau mungkin file *.desktop.\n" " # 'url' bisa jadi file dapat dieksekusi pula.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -97,7 +97,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -119,7 +119,7 @@ msgstr "" " # sebuah URL akan diminta.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -137,7 +137,7 @@ msgstr "" " # Menyalin URL 'src' ke 'dest'.\n" " # 'src' dapat berupa senarai URL.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -153,7 +153,7 @@ msgstr "" " # Daftar konten direktori 'url' ke stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -169,7 +169,7 @@ msgstr "" " # Daftar konten direktori 'url' ke stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -187,7 +187,22 @@ msgstr "" " # Menghapus URL\n" " # 'url' dapat berupa senarai URL.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Membuka menu properti\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -203,7 +218,7 @@ msgstr "" " # Mengeluarkan konten 'url' ke stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -219,12 +234,12 @@ msgstr "" " # Membuka menu properti\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Contoh:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -240,7 +255,7 @@ msgstr "" " // Membuka file dengan pengikat baku\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -255,7 +270,7 @@ msgstr "" " // Membuka window baru dengan URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -266,7 +281,7 @@ msgstr "" " // Menjalankan emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -282,22 +297,22 @@ msgstr "" " // Membuka direktori saat ini. Sangat nyaman.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Klien KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Alat baris perintah untuk operasi transparan jaringan" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Gunakan kotak perpesanan dan notifikasi bawaan lainnya" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -306,80 +321,80 @@ msgstr "" "Penggunaan non interaktif: tanpa kotak pesan. Jika anda tidak ingin koneksi " "grafis, gunakan --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Timpa tujuan jika telah ada (untuk penyalinan dan pemindahan)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "file atau URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Sumber URL atau banyak URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL Tujuan" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Tampilkan perintah yang tersedia" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Perintah (lihat --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "perintah" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumen untuk perintah" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Galat sintaksis, tidak cukup argumen\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Galat sintaksis, terlalu banyak argumen\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Tujuan tempat unduhan file" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Galat sintaksis, perintah tak diketahui '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/id/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/id/kmimetypefinder.po index e361df098f..b8bc3ce20e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/id/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/id/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-04-16 07:54+0700\n" "Last-Translator: Wantoyo \n" "Language-Team: Indonesian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/id/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/id/kstart.po index 11bdea7091..3c72d62691 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/id/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/id/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2022-09-27 18:12+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" @@ -44,27 +44,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Perintah untuk mengeksekusi" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -74,14 +74,14 @@ msgstr "" "Alternatif untuk : file desktop untuk dijalankan. Layanan D-Bus " "akan dicetak ke stdout" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "" "URL opsional untuk meneruskan , ketika menggunakan --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Tak ada perintah yang ditentukan" diff --git a/local/recipes/kde/kde-cli-tools/source/po/is/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/is/kcm_filetypes.po index ffc692b7a8..01e6b53398 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/is/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/is/kcm_filetypes.po @@ -4,16 +4,16 @@ # # Logi Ragnarsson , 2000. # Arnar Leosson , 2005. -# Sveinn í Felli , 2008, 2009, 2011, 2015, 2024. +# SPDX-FileCopyrightText: 2008, 2009, 2011, 2015, 2024, 2025 Sveinn í Felli # SPDX-FileCopyrightText: 2024 Gummi msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" -"PO-Revision-Date: 2024-06-30 15:56+0000\n" -"Last-Translator: Gummi \n" -"Language-Team: Icelandic \n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" +"PO-Revision-Date: 2025-12-02 10:24+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -173,12 +173,12 @@ msgstr "Ný skráarending" msgid "Extension:" msgstr "Ending:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Skráartegund %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Nota stillingar fyrir hóp '%1'" @@ -186,7 +186,7 @@ msgstr "Nota stillingar fyrir hóp '%1'" #: filetypesview.cpp:57 #, kde-format msgid "Search for file type or filename pattern..." -msgstr "Leita að skrárgerð eða skráarheitismynstri..." +msgstr "Leita að skráartegund eða skráarheitismynstri..." #: filetypesview.cpp:63 #, kde-format @@ -195,14 +195,14 @@ msgid "" "pattern will appear in the list. Alternatively, enter a part of a file type " "name as it appears in the list." msgstr "" -"Sláðu inn hluta skráarheitamynsturs, og einungis skráategundir sem passa " +"Settu inn hluta skráarheitamynsturs, og einungis skráategundir sem passa " "verða sýndar í listanum. Eins er hægt að setja inn gerð skráa með svipuðum " "hætti." #: filetypesview.cpp:71 multiapplydialog.cpp:27 #, kde-format msgid "Known Types" -msgstr "Þekkt skráarform" +msgstr "Þekktar tegundir skráa" #: filetypesview.cpp:77 #, kde-format @@ -292,7 +292,7 @@ msgstr "Ritill fyrir skráategundir" msgid "" "KDE file type editor - simplified version for editing a single file type" msgstr "" -"KDE Skráartegundarbreytir - einfölduð útgáfa til að sýsla með skráartegundir" +"KDE Skráategundarbreytir - einfölduð útgáfa til að sýsla með skráartegundir" #: keditfiletype.cpp:118 #, kde-format @@ -458,7 +458,7 @@ msgstr "Beita á..." #: kservicelistwidget.cpp:131 #, kde-format msgid "Apply the current preference order to other file types." -msgstr "Nota núverandi forgangsröðun á aðrar skrárgerðir." +msgstr "Nota núverandi forgangsröðun á aðrar skráategundir." #: kservicelistwidget.cpp:154 #, kde-format @@ -509,7 +509,7 @@ msgid "" "category and you type 'custom' here, the file type 'image/custom' will be " "created." msgstr "" -"Sláðu inn nafn á skráargerð. Til dæmis, ef þú valdir 'myndir' sem flokk og " +"Settu inn nafn á skráargerð. Til dæmis, ef þú valdir 'myndir' sem flokk og " "þú skrifar síðan 'sérstakar' hér, þá verður gerðin 'myndir/sérstakar' búin " "til." diff --git a/local/recipes/kde/kde-cli-tools/source/po/is/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/is/kdesu.po index 43d09a1ca1..632432b05b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/is/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/is/kdesu.po @@ -7,20 +7,20 @@ # Richard Allen , 2000. # Pjetur G. Hjaltason , 2003. # Arnar Leosson , 2005. -# Sveinn í Felli , 2009, 2011, 2022. +# SPDX-FileCopyrightText: 2009, 2011, 2022, 2026 Sveinn í Felli msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" -"PO-Revision-Date: 2022-09-21 12:09+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-03-25 12:03+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 23.08.5\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" "\n" "\n" @@ -192,7 +192,7 @@ msgstr "Keyra sem %1" #: sudlg.cpp:31 #, kde-format msgid "Please enter your password below." -msgstr "Vinsamlega sláðu inn lykilorðið þitt." +msgstr "Settu lykilorðið þitt inn hér fyrir neðan." #: sudlg.cpp:36 #, kde-format @@ -201,7 +201,7 @@ msgid "" "root's password below or click Ignore to continue with your current " "privileges." msgstr "" -"Aðgerðin sem þú baðst um krefst kerfisstjóraaðgangs. Sláðu inn " +"Aðgerðin sem þú baðst um krefst kerfisstjóraaðgangs. Settu inn " "kerfisstjóralykilorðið hér að neðan eða ýttu á \"Hunsa\" til að halda áfram " "með óbreyttar heimildir." @@ -211,7 +211,7 @@ msgid "" "The action you requested needs root privileges. Please enter " "root's password below." msgstr "" -"Aðgerðin sem þú baðst um krefst kerfisstjóraaðgangs. Sláðu inn " +"Aðgerðin sem þú baðst um krefst kerfisstjóraaðgangs. Settu inn " "kerfisstjóralykilorðið hér að neðan." #: sudlg.cpp:49 @@ -221,7 +221,7 @@ msgid "" "password for %1 below or click Ignore to continue with your current " "privileges." msgstr "" -"Aðgerðin sem þú baðst um krefst frekari heimilda. Sláðu inn lykilorð " +"Aðgerðin sem þú baðst um krefst frekari heimilda. Settu inn lykilorð " "notandans %1 hér að neðan eða ýttu á \"Hunsa\" til að halda áfram með " "óbreyttar heimildir." @@ -231,7 +231,7 @@ msgid "" "The action you requested needs additional privileges. Please enter the " "password for %1 below." msgstr "" -"Aðgerðin sem þú baðst um krefst frekari heimilda. Sláðu inn lykilorð " +"Aðgerðin sem þú baðst um krefst frekari heimilda. Settu inn lykilorð " "notandans %1 hér að neðan." #: sudlg.cpp:79 diff --git a/local/recipes/kde/kde-cli-tools/source/po/is/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/is/kioclient.po index c3207a497e..826fdf278b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/is/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/is/kioclient.po @@ -2,16 +2,16 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Sveinn í Felli , 2009, 2011, 2013. +# SPDX-FileCopyrightText: 2009, 2011, 2013, 2025 Sveinn í Felli # SPDX-FileCopyrightText: 2024 Gummi msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2024-06-30 16:02+0000\n" -"Last-Translator: Gummi \n" -"Language-Team: Icelandic \n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-10-23 07:50+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "ra@ra.is, gudmundure@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "\n" "Notkun:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -52,7 +52,7 @@ msgstr "" " # Opnar eiginleikaglugga fyrir 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -72,7 +72,7 @@ msgstr "" " # 'url' getur verið slóð á skrá, *.desktop-skrá,\n" " # eða keyrsluskrá.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -90,7 +90,7 @@ msgstr "" " # Stutta útgáfan 'kioclient mv' er einnig í boði.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -107,7 +107,7 @@ msgstr "" " # verður beðið um slóð.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -123,7 +123,7 @@ msgstr "" " # Stutta útgáfan 'kioclient cp' er einnig í boði.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -135,7 +135,7 @@ msgstr "" " # Prentar lista yfir efni skrárinnar 'url' í staðlað úttak\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -147,7 +147,7 @@ msgstr "" " # Sendir lista yfir efni möppunar 'url' til stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -163,7 +163,17 @@ msgstr "" " # Stutta útgáfan 'kioclient rm' er einnig í boði.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Býr til möppu í 'url'\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -175,7 +185,7 @@ msgstr "" " # Sýnir allar tiltækar upplýsingar fyrir 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -187,12 +197,12 @@ msgstr "" " # Opnar einfaldan forritaræsi\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Dæmi:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -205,7 +215,7 @@ msgstr "" " // við þessa MIME-gerð\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -216,7 +226,7 @@ msgstr "" " // Opnar slóð með sjálfgefnum meðhöndlara fyrir ftp:// scheme\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -227,7 +237,7 @@ msgstr "" " // Ræsir emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -240,22 +250,22 @@ msgstr "" " // skráastjóra. Mjög þægilegt.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO biðlari" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Skipanalínuverkfæri fyrir gegnsæjar netvinnsluaðgerðir" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Nota skilaboðaglugga og aðrar innbyggðar tilkynningar" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -264,80 +274,80 @@ msgstr "" "Ógagnvirk notkun: engir skilaboðagluggar. Ef þú vilt ekki nota tengingu við " "myndviðmót skaltu nota --platform utan skjás" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Skrifa yfir ýttak ef það fyrirfinnst (við afritun eða flutning)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "skrá eða slóð" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "slóðir..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Upprunaslóð eða slóðir" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Úttaksnetfang (URL):" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "slóð" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Sýna tiltækar skipanir" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Skipun (sjá --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "skipun" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Viðföng fyrir skipun" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Málskipanarvilla, of fá viðföng\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Málskipanarvilla, of mörg viðföng\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Viðtökustaður fyrir skrár sem eru sóttar" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Málskipunarvilla, óþekkt skipun '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/is/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/is/kmimetypefinder.po index 2e750d510a..4bf454fa84 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/is/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/is/kmimetypefinder.po @@ -2,16 +2,16 @@ # Copyright (C) 2008 This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Sveinn í Felli , 2008, 2009. +# SPDX-FileCopyrightText: 2008, 2009, 2025 Sveinn í Felli # SPDX-FileCopyrightText: 2024 Gummi msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" -"PO-Revision-Date: 2024-06-30 16:03+0000\n" -"Last-Translator: Gummi \n" -"Language-Team: Icelandic \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2025-12-02 10:55+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,10 +52,10 @@ msgid "" "Whether use the file name only for determining the MIME type. Not used if -c " "is specified." msgstr "" -"Hvort einungis eigi að nota skrárheiti til að ákvarða MIME-gerðina. Ekki " +"Hvort einungis eigi að nota skráarheiti til að ákvarða MIME-gerðina. Ekki " "notað ef -c er tilgreint." #: kmimetypefinder.cpp:36 #, kde-format msgid "The filename to test. '-' to read from stdin." -msgstr "Skrárheiti til að prófa. '-' til að lesa úr stdin." +msgstr "Skráarheiti til að prófa. '-' til að lesa úr stdin." diff --git a/local/recipes/kde/kde-cli-tools/source/po/is/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/is/kstart.po index 31ca78da22..248cfee59c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/is/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/is/kstart.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-06-30 16:05+0000\n" "Last-Translator: Gummi \n" "Language-Team: Icelandic \n" @@ -50,39 +50,39 @@ msgstr "Verkfæri til að keyra forrit" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Skipun sem á að keyra" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Valkostur í stað : heiti skjáborðsskrár sem á að ræsa, t.d. org.kde." "kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "Valkvæm slóð sem send er til forritsins þegar --application er notað" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Engin skipun tilgreind" diff --git a/local/recipes/kde/kde-cli-tools/source/po/is/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/is/plasma-open-settings.po new file mode 100644 index 0000000000..8180bcadf6 --- /dev/null +++ b/local/recipes/kde/kde-cli-tools/source/po/is/plasma-open-settings.po @@ -0,0 +1,48 @@ +# Copyright (C) 2026 This file is copyright: +# This file is distributed under the same license as the kde-cli-tools package. +# +# SPDX-FileCopyrightText: 2026 Sveinn í Felli +msgid "" +msgstr "" +"Project-Id-Version: kde-cli-tools\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-03-17 16:33+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 23.08.5\n" + +#, kde-format +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Sveinn í Felli" + +#, kde-format +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sv1@fellsnet.is" + +#: main.cpp:30 +#, kde-format +msgid "App to open Settings app" +msgstr "Forrit til að opna stillingaforritið" + +#: main.cpp:32 +#, kde-format +msgid "A tool to start system settings" +msgstr "Tól til að ræsa kerfisstillingar" + +#: main.cpp:34 +#, kde-format +msgid "(c) 2021, The KDE Developers" +msgstr "(c) -2021, KDE þróunarhópurinn" + +#: main.cpp:67 +#, kde-format +msgid "Could not open: %1" +msgstr "Gat ekki opnað: %1" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/it/kbroadcastnotification.po index 621eaa7084..8f97747bbd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-03-02 10:08+0100\n" "Last-Translator: Paolo Zamponi \n" "Language-Team: Italian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/it/kcm_filetypes.po index 3d090afac9..da18c79e39 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-19 17:25+0200\n" "Last-Translator: Paolo Zamponi \n" "Language-Team: Italian \n" @@ -172,12 +172,12 @@ msgstr "Aggiungi nuova estensione" msgid "Extension:" msgstr "Estensione:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tipo di file %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Usa impostazioni per il gruppo «%1»" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/it/kde-inhibit.po index b4c81809f8..948537619d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-13 08:38+0100\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/it/kdesu.po index 6e4a5af561..8d9114867c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/kdesu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-17 08:18+0200\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/it/kioclient.po index cf2e2b3c64..6d803c70dd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/kioclient.po @@ -5,14 +5,14 @@ # Federico Zenith , 2008, 2012, 2013, 2014. # Luigi Toscano , 2016. # Paolo Zamponi , 2019, 2020, 2021. -# Vincenzo Reale , 2022. +# SPDX-FileCopyrightText: 2022, 2025 Vincenzo Reale # msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-04-09 20:24+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-09 18:38+0200\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" "Language: it\n" @@ -20,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 25.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -32,7 +32,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "smart2128vr@gmail.com," -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -41,7 +41,7 @@ msgstr "" "\n" "Sintassi:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -53,7 +53,7 @@ msgstr "" " # Apre una finestra delle proprietà di 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -74,7 +74,7 @@ msgstr "" " # di un documento, oppure un file *.desktop.\n" " # o un eseguibile.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -93,7 +93,7 @@ msgstr "" " # La versione breve 'kioclient mv' è inoltre disponibile.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -111,7 +111,7 @@ msgstr "" " # ti verrà richiesto.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -127,7 +127,7 @@ msgstr "" " # La versione breve 'kioclient cp' è inoltre disponibile.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -139,7 +139,7 @@ msgstr "" " # Elenca i contenuti del file 'url' sullo standard output\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -151,7 +151,7 @@ msgstr "" " # Elenca i contenuti della cartella 'url' sullo standard output\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -167,7 +167,17 @@ msgstr "" " # La versione breve 'kioclient rm' è inoltre disponibile.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Crea una cartella in 'url'\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -179,7 +189,7 @@ msgstr "" " # Mostra tutte le informazioni disponibili per 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -191,12 +201,12 @@ msgstr "" " # Apre un semplice avviatore di applicazioni.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Esempi:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -209,7 +219,7 @@ msgstr "" " // questo tipo MIME\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -220,7 +230,7 @@ msgstr "" " // Apre URL con il gestore predefinito per lo schema ftp://\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -231,7 +241,7 @@ msgstr "" " // Avvia Emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -244,22 +254,22 @@ msgstr "" " // predefinito. Molto comodo.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Client KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Strumento da riga di comando per operazioni trasparenti su rete" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Usa finestre con messaggio e altre notifiche native" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -268,80 +278,80 @@ msgstr "" "Uso non interattivo: senza finestre con messaggio. Se non vuoi una " "connessione grafica, usa --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Sovrascrivi destinazione se esistente (per copia e spostamento)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "file o URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL di origine o URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL di destinazione" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Mostra i comandi disponibili" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Comando (vedi --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "comando" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argomenti del comando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: errore di sintassi, argomenti insufficienti\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: errore di sintassi, troppi argomenti\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Destinazione dove scaricare i file" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: errore di sintassi, comando sconosciuto «%2»\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/it/kmimetypefinder.po index aa931e1484..de30cb80db 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-19 21:56+0100\n" "Last-Translator: Paolo Zamponi \n" "Language-Team: Italian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/it/kstart.po index b0fbc3b884..b7c875ead0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-23 23:07+0200\n" "Last-Translator: Paolo Zamponi \n" "Language-Team: Italian \n" @@ -44,40 +44,40 @@ msgstr "Programma per avviare le applicazioni" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Comando da eseguire" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternativa a : nome di file desktop da avviare, ad esempio org.kde." "kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "URL facoltativo da passare all'applicazione quando si usa --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nessun comando specificato" diff --git a/local/recipes/kde/kde-cli-tools/source/po/it/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/it/plasma-open-settings.po index 402e377670..0197877ba6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/it/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/it/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-23 15:58+0200\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ja/kbroadcastnotification.po index 6186186248..a315a5c32d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/kbroadcastnotification.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-06 00:09-0800\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ja/kcm_filetypes.po index 4b9de53d09..6db94b8234 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/kcm_filetypes.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-02-23 15:31+0900\n" "Last-Translator: Ryuichi Yamada \n" "Language-Team: ja\n" @@ -181,12 +181,12 @@ msgstr "新しい拡張子を追加" msgid "Extension:" msgstr "拡張子:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ファイルタイプ %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "%1 グループの設定を使う" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ja/kde-inhibit.po index fc6ead25d5..cf43c5f357 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/kde-inhibit.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-12 20:05-0800\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ja/kdesu.po index 7981373760..92a615a721 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/kdesu.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2014-02-22 22:39-0800\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ja/kioclient.po index adba823271..11e923e0ac 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/kioclient.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2014-12-06 16:41-0800\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -33,7 +33,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -42,7 +42,7 @@ msgstr "" "\n" "構文:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -58,7 +58,7 @@ msgstr "" " # プロパティメニューを開きます\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -88,7 +88,7 @@ msgstr "" " # を指定できます。\n" " # URL は実行ファイルでもかまいません。\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -100,7 +100,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -122,7 +122,7 @@ msgstr "" " # 指定がなければ URL を要求されます。\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -141,7 +141,7 @@ msgstr "" " # 'src' は URL のリストでもかまいません。\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -157,7 +157,7 @@ msgstr "" " # ディレクトリ 'url' のコンテンツを標準出力に書き出します\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -173,7 +173,7 @@ msgstr "" " # ディレクトリ 'url' のコンテンツを標準出力に書き出します\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -191,7 +191,22 @@ msgstr "" " # 'url' を削除します。\n" " # 'url' は URL のリストでもかまいません。\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # プロパティメニューを開きます\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -207,7 +222,7 @@ msgstr "" " # 'url' のコンテンツを標準出力に書き出します\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -223,12 +238,12 @@ msgstr "" " # プロパティメニューを開きます\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -244,7 +259,7 @@ msgstr "" " // ファイルをデフォルトの関連付けで開きます\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -259,7 +274,7 @@ msgstr "" " // URL を新しいウィンドウで開きます\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -270,7 +285,7 @@ msgstr "" " // emacs を起動します\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -286,102 +301,102 @@ msgstr "" " // 現在のディレクトリを開きます。とても便利です。\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO クライアント" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "ネットワーク透過な操作のためのコマンドラインツール" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "(コピーと移動のとき) 対象が存在する場合、上書きする" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "ファイルまたは URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "ソース URL (単一または複数)" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "行き先 URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "利用可能なコマンドを表示" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "コマンド (--commands を参照)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "コマンドの引数" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: 構文エラー: 引数が足りません\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: 構文エラー: 引数が多すぎます\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: 構文エラー: 不明なコマンド %2\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ja/kmimetypefinder.po index a23dc5248c..52be115552 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-09-25 16:38-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ja/kstart.po index 08136347b4..465632d92a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/kstart.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2007-05-27 15:00+0900\n" "Last-Translator: Yukiko Bando \n" "Language-Team: Japanese \n" @@ -50,37 +50,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "実行するコマンド" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "コマンドが指定されていません" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ja/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ja/plasma-open-settings.po index 465ca253f8..10af9a8223 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ja/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ja/plasma-open-settings.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-25 22:54-0700\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ka/kbroadcastnotification.po index 6d5384ed63..a965a3f846 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-03-04 13:43+0100\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ka/kcm_filetypes.po index 10789586da..1e47b4311d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-17 04:38+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" @@ -167,12 +167,12 @@ msgstr "ახალი გაფართოების დამატებ msgid "Extension:" msgstr "გაფართოება:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ფაილის ტიპი: %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "პარამეტრების გამოყენება '%1' ჯგუფისთვის" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ka/kde-inhibit.po index ac443330ba..69f4dac25a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/kde-inhibit.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-13 02:38+0100\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ka/kdesu.po index 7eae548728..ba3c7f29e3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-04-12 06:07+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ka/kioclient.po index 9590004a58..b207895704 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/kioclient.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2023-04-19 05:48+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-09 05:28+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" "Language: ka\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.6\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "Temuri.doghonadze@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "სინტაქსი:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -49,7 +49,7 @@ msgstr "" " # 'url'-ის თვისებების ფანჯრის გახსნა\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -70,7 +70,7 @@ msgstr "" " # 'url' შეიძლება იყოს ბმული დოკუმენტზე, *.desktop ფაილზე\n" " # ან გამშვებ ფაილზე.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -89,7 +89,7 @@ msgstr "" " # ასევე ხელმისაწვდომია მოკლე ვერსიაც: 'kioclient mv'.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -105,7 +105,7 @@ msgstr "" " # URL-ს გკითხავთ.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -121,7 +121,7 @@ msgstr "" " # ასევე ხელმისაწვდომია მოკლე ვერსიაც: 'kioclient cp'..\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -134,7 +134,7 @@ msgstr "" "დაბეჭდვა.\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -147,7 +147,7 @@ msgstr "" "გამოტანაზე დაბეჭდვა.\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -163,7 +163,17 @@ msgstr "" " # ასევე ხელმისაწვდომია უფრო მოკლე ვარიანტი 'kioclient rm'.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # შექმნის საქაღალდეს მისამართზე 'url'\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -175,7 +185,7 @@ msgstr "" " # 'URL'-ისთვის ხელმისაწვდომი ინფორმაციის ჩვენება\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -187,12 +197,12 @@ msgstr "" " # ჩვეულებრივი აპლიკაციების გაშვების გახსნა\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** მაგალითები:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -201,11 +211,11 @@ msgid "" "\n" msgstr "" " kioclient exec file:/home/weis/data/test.html\n" -" // ამ MIME ტიპთან ასოცირებული ნაგულისხმები\n" +" // ამ MIME ტიპთან ასოცირებული ნაგულისხმევი\n" " // აპლიკაციის გაშვება\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -213,10 +223,10 @@ msgid "" "\n" msgstr "" " kioclient exec ftp://localhost/\n" -" // URL-ის ftp:// ნაგულისხმებ ბრაუზერში გახსნა\n" +" // URL-ის ftp:// ნაგულისხმევ ბრაუზერში გახსნა\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -227,7 +237,7 @@ msgstr "" " // emacs-ის გაშვება\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -236,26 +246,26 @@ msgid "" "\n" msgstr "" " kioclient exec .\n" -" // მიმდინარე საქაღალდის ნაგულისხმებ ფაილების მმართველში\n" +" // მიმდინარე საქაღალდის ნაგულისხმევ ფაილების მმართველში\n" " // გახსნა. ძალიან მოსახერხებელია\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO -ის კლიენტი" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "ბრძანების სტრიქონის პროგრამა ქსელის გამჭვირვალობის ოპერაციებისთვის" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "მომხმარებლის შეტყობინების ფანჯრები და სხვა ნადვილი შეტყობინებეი" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -264,80 +274,80 @@ msgstr "" "არააქტიური გამოყენება: არ არის შეტყობინებების ფანჯრები. თუ არ გსურთ " "გრაფიკული კავშირი, გამოიყენეთ --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "სამიზნის თავზე გადაწერა, თუ ის არსებობს (კოპირებისა და გადატანისთვის)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "ფაილი ან URL-ი" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url-ები..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "წყაროს URL -(ებ)-ი" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "სამიზნე URL-ი" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "ხელმისაწვდომი ბრძანებების ჩვენება" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "ბრძანება (იხ. --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "ბრძანება" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "ბრძანების არგუმენტები" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: სინტაქსის შეცდომა. არგუმენტები საკმარისი არაა\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: სინტაქსის შეცდომა. მითითებულია მეტისმეტად ბევრი არგუმენტი\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "სამიზნე საქაღალდე, სადაც გადმოწერილი ფაილები ჩაიწერება" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: სინტაქსის შეცდომა. უცნობი ბრძანება '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ka/kmimetypefinder.po index b0762275ee..f7874eec80 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-08-23 12:57+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ka/kstart.po index 281d147893..acc885336f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-20 02:45+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" @@ -43,39 +43,39 @@ msgstr "აპლიკაციების გამშვები პრო msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "შესასრულებელი ბრძანება" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "<ბრძანების> ალტერნატივა: გასაშვები .desktop ფაილი, მაგ: org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "პარამეტრის --application გამოყენებისას აპლიკაციისთვის არასავალდებულო " "გასადაცემი ბმული" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "ბრძანება მითითებული არაა" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ka/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ka/plasma-open-settings.po index 756dfce20d..3b7f0e5844 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ka/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ka/plasma-open-settings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-08-23 12:59+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kk/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/kk/kcm_filetypes.po index a5e8afc163..5359f7cdf2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kk/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kk/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2013-05-15 04:53+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -169,12 +169,12 @@ msgstr "Жаңа жұрнақты қосу" msgid "Extension:" msgstr "Жұрнағы:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "%1 файл түрі" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' тобының баптауларды қолданылсын" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kk/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/kk/kdesu.po index 18cf69970c..8f9f5c549f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kk/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kk/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-11-23 05:08+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kk/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/kk/kioclient.po index 7a4d720ee3..3ccec76cb1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kk/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kk/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2013-06-17 04:42+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Синтаксисы:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -53,7 +53,7 @@ msgstr "" " kioclient openProperties 'url'\n" " # Қасиеттер мәзірін ашу\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -82,7 +82,7 @@ msgstr "" " # болу керек, немесе *.desktop файлы болуы мүмкін,\n" " # орындалатын файл да бола алады.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -94,7 +94,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -116,7 +116,7 @@ msgstr "" " # мүмкін. 'src' келтірілмесе ол сұралады.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -134,7 +134,7 @@ msgstr "" " # URL 'src' дегеннен 'dest' дегенге көшірмелеу.\n" " # 'src' деген URL-сілтемелер тізімі болуы мүмкін.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -150,7 +150,7 @@ msgstr "" " # 'url' қапшығының мазмұның stdout құрылғысына шығарады\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -166,7 +166,7 @@ msgstr "" " # 'url' қапшығының мазмұның stdout құрылғысына шығарады\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -184,7 +184,21 @@ msgstr "" " # URL дегенді өшіру.\n" " # 'url' деген URL-сілтемелер тізімі болуы мүмкін.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Қасиеттер мәзірін ашу\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -200,7 +214,7 @@ msgstr "" " # 'url' дегеннің мазмұның stdout құрылғысына шығарады\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -215,12 +229,12 @@ msgstr "" " kioclient openProperties 'url'\n" " # Қасиеттер мәзірін ашу\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -236,7 +250,7 @@ msgstr "" " // Сәйкесті қолданбада файлды ашу\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -251,7 +265,7 @@ msgstr "" " // URL-мен жаңа терезе ашу\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -266,7 +280,7 @@ msgstr "" " // Emacs-ты жегу\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -282,102 +296,102 @@ msgstr "" " // Назардағы каталогты ашу. Өте ыңғайлы.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO клиенті" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Желідегі әрекеттерге арналған команда жолының құралы" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Мақсатталған орнын (бар болса) ауыстыру" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "файл не URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Көз URL не URL-дер" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Мақсат URL-і" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Бар командаларын көрсету" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Команда (--commands деп қараңыз)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Команданың аргументтері" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Синтаксис қатесі, аргументтер жеткіліксіз\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Синтаксис қатесі, аргументтер тым көп\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Синтаксис қатесі, %2 командасы беймәлім\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kk/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/kk/kmimetypefinder.po index 28c71ceaaf..424d23e57b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kk/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kk/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-04-02 06:43+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kk/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/kk/kstart.po index ebeadca62b..938c7b5ccb 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kk/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kk/kstart.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2010-03-03 05:43+0600\n" "Last-Translator: \n" "Language-Team: Kazakh \n" @@ -42,27 +42,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Орындайтын команда" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -72,7 +72,7 @@ msgstr "" " деген командамен жегудің басқа түрі: desktop файл арқылы. D-Bus " "қызметі мәліметін stdout дегенге шығарады." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" @@ -80,7 +80,7 @@ msgstr "" "Егер --service параметрі қолданса бұл қосымша URL-ге файлы " "беріледі" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Командасы келтірілмеген" diff --git a/local/recipes/kde/kde-cli-tools/source/po/km/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/km/kcm_filetypes.po index d4ecba7d7a..f2d858ca8a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/km/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/km/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2010-11-08 09:44+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -164,12 +164,12 @@ msgstr "បន្ថែម​ផ្នែក​បន្ថែម​ថ្មី msgid "Extension:" msgstr "ផ្នែក​បន្ថែម ៖​" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ប្រភេទ​ឯកសារ %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "ប្រើ​ការ​កំណត់​សម្រាប់​ក្រុម '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/km/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/km/kdesu.po index 7c90d3e0f6..5a1bc46480 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/km/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/km/kdesu.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-11-16 14:44+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/km/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/km/kioclient.po index 04aafda5cf..7dc35f48a5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/km/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/km/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2012-07-11 09:42+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "វាក្យ​សម្ពន្ធ ៖\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # បើក​ម៉ឺនុយ​លក្ខណៈសម្បត្តិ\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -82,7 +82,7 @@ msgstr "" " # ដោយ​ស្វ័យប្រវត្តិ ។ URL គឺ​ជា URL របស់\n" " # ឯកសារ ឬ​វា​អាច​ជា​ឯកសារ *.desktop ។\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -94,7 +94,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -116,7 +116,7 @@ msgstr "" " # URL នឹង​ត្រូវបាន​ស្នើ ។\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -134,7 +134,7 @@ msgstr "" " # ចម្លង​ URL 'src' ទៅ 'dest'.\n" " # 'src' អាច​ជា​បញ្ជី​របស់ URL ។\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -150,7 +150,7 @@ msgstr "" " # រាយ​មាតិកា​​របស់​ថត​ 'url' ថត​ទៅ stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -166,7 +166,7 @@ msgstr "" " # រាយ​មាតិកា​​របស់​ថត​ 'url' ថត​ទៅ stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -184,7 +184,22 @@ msgstr "" " # យក​ URL ចេញ\n" " # 'url' អាចជា​បញ្ជី URL ។\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # បើក​ម៉ឺនុយ​លក្ខណៈសម្បត្តិ\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -200,7 +215,7 @@ msgstr "" " # សរសេរ​មាតិកា​របស់ 'url' to stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -216,12 +231,12 @@ msgstr "" " # បើក​ម៉ឺនុយ​លក្ខណៈសម្បត្តិ\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -237,7 +252,7 @@ msgstr "" " // បើក​ឯកសារ​ដែលមាន​ការ​ចង​លំនាំដើម\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -252,7 +267,7 @@ msgstr "" " // បើក​បង្អួចថ្មី​ដែលមាន URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -267,7 +282,7 @@ msgstr "" " // ចាប់ផ្ដើម emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -283,106 +298,106 @@ msgstr "" " // បើក​ថត​បច្ចុប្បន្ន ។ ងាយស្រួល​ណាស់ ។\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "ម៉ាស៊ីន​ភ្ញៀវ KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "ឧបករណ៍​បន្ទាត់​ពាក្យ​បញ្ជា សម្រាប់​ប្រតិបត្តិការ​បណ្ដាញ" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "សរសេរ​ជាន់លើ​ទិសដៅ ប្រសិនបើ​វា​មាន (សម្រាប់​ការ​ចម្លង និង​ផ្លាស់ទី)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL មួយ ឬ​ច្រើន" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL ប្រភព" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL ទិសដៅ" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "បង្ហាញ​ពាក្យ​បញ្ជា​ដែល​មាន" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "ពាក្យ​បញ្ជា (មើល --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "អាគុយម៉ង់​សម្រាប់​ពាក្យ​បញ្ជា" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "កំហុស​វាក្យសម្ពន្ធ ៖ អាគុយម៉ង់​មិន​គ្រប់​គ្រាន់\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "កំហុស​វាក្យ​សម្ពន្ធ ៖ អាគុយម៉ង់​ច្រើន​ពេក\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "កំហុស​វាក្យ​សម្ពន្ធ ៖ មិន​ស្គាល់​ពាក្យ​បញ្ជា '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/km/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/km/kmimetypefinder.po index 1e6825fa4e..b961994ba0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/km/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/km/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-04-09 14:54+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/km/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/km/kstart.po index 306ffb2458..b7a7dd5dfc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/km/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/km/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-04-09 15:39+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -43,27 +43,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "រក្សា​សិទ្ធិ​ឆ្នាំ ១៩៩៧-២០០០ ដោយ​លោក Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "ពាក្យ​បញ្ជា​ត្រូវ​ប្រតិបត្តិ" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -73,13 +73,13 @@ msgstr "" "ជម្រើស​ទៅ  ៖ ឯកសារ​ផ្ទៃតុ​ត្រូវ​ចាប់ផ្ដើម ។ សេវា D-Bus នឹង​ត្រូ​វបានបោះពុម្ព​ទៅ​កាន់ " "stdout" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "URL ជា​ជម្រើស​ត្រូ​វចម្លង​ នៅពេល​ប្រើ --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "មិន​បាន​បញ្ជាក់​ពាក្យ​បញ្ជា" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kn/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/kn/kcm_filetypes.po index 71c86eab23..516f13c97a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kn/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kn/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2007-09-12 13:59+0530\n" "Last-Translator: Ramaprakasha \n" "Language-Team: Kannada\n" @@ -179,13 +179,13 @@ msgstr "ಹೊಸ ವಿಸ್ತರಣೆಯನ್ನು ಸೇರಿಸು" msgid "Extension:" msgstr "ವಿಸ್ತರಣೆ:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "ಕಡತ ಬಗೆ %1 ನ್ನು ಸಂಪಾದಿಸು" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "ಸಿದ್ಧತೆಗಳನ್ನು '%1' ಬಳಗದ ಮೇಲೆ ಉಪಯೋಗಿಸು" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kn/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/kn/kdesu.po index 667518e146..f69f6a907f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kn/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kn/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-01-25 19:46+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: kdebase \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kn/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/kn/kioclient.po index a62e24383a..4805ca2d7c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kn/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kn/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2008-09-28 21:33+0200\n" "Last-Translator: Umesh Rudrapatna \n" "Language-Team: American English \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "ವಾಕ್ಯಾನ್ವಯ (ಸಿಂಟಾಕ್ಸ್):\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" "# ಗುಣಗಳ ಪರಿವಿಡಿಯೊಂದನ್ನು ತೆರೆಯುತ್ತದೆ\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -81,7 +81,7 @@ msgstr "" "#ಈ ಪರಿಸ್ಥಿತಿಯಲ್ಲಿ ಮೈಮ್ ಬಗೆಯನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಪತ್ತೆಹಚ್ಚಲಾಗುವುದು.\n" "#URL ಒಂದು ದಸ್ತಾವೇಜಿನ URL ಆಗಿರಬಹುದು ಇಲ್ಲವೇ ಅದು ಒಂದು *.desktop ಕಡತವಾಗಿರಬಹುದು.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -93,7 +93,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -115,7 +115,7 @@ msgstr "" "#ಒಂದು URL ಅನ್ನು ಕೋರಲಾಗುವುದು.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -135,7 +135,7 @@ msgstr "" "#'src' ಒಂದು URL ಗಳ ಪಟ್ಟಿಯಾಗಿರಬಹುದು.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -151,7 +151,7 @@ msgstr "" "# 'url' ನ ಒಳಪಿಡಿಯನ್ನು stdout ಗೆ ಬರೆಯುತ್ತದೆ\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -167,7 +167,7 @@ msgstr "" "# 'url' ನ ಒಳಪಿಡಿಯನ್ನು stdout ಗೆ ಬರೆಯುತ್ತದೆ\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -185,7 +185,22 @@ msgstr "" "#URL 'src' ಅನ್ನು 'dest' ಗೆ ಸ್ಥಾನಾಂತರಿಸುತ್ತದೆ.\n" "# 'src' ಒಂದು URL ಗಳ ಪಟ್ಟಿಯಾಗಿರಬಹುದು.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +"KIO ಸೇವನಾರ್ಥಿ (ಕ್ಲಯಂಟ್) ಗುಣಗಳ 'url'\n" +"# ಗುಣಗಳ ಪರಿವಿಡಿಯೊಂದನ್ನು ತೆರೆಯುತ್ತದೆ\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -201,7 +216,7 @@ msgstr "" "# 'url' ನ ಒಳಪಿಡಿಯನ್ನು stdout ಗೆ ಬರೆಯುತ್ತದೆ\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -217,12 +232,12 @@ msgstr "" "# ಗುಣಗಳ ಪರಿವಿಡಿಯೊಂದನ್ನು ತೆರೆಯುತ್ತದೆ\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -238,7 +253,7 @@ msgstr "" "//ಕಡತವನ್ನು ಪೂರ್ವನಿಯೋಜಿತ ನಿಬಂಧನೆಗಳೊಂದಿಗೆ (ಬೈಂಡಿಂಗ್) ತೆರೆಯುತ್ತದೆ\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -253,7 +268,7 @@ msgstr "" "//ಹೊಸ ಕಿಟಕಿಯೊಂದನ್ನು ತೆರೆಯುತ್ತದೆ\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -268,7 +283,7 @@ msgstr "" "//ಈಮಾಕ್ಸ್ ಅನ್ನು ಪ್ರಾರಂಭಿಸುತ್ತದೆ\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -284,106 +299,106 @@ msgstr "" "//ಪ್ರಸ್ತುತ ಕಡತಕೋಶವನ್ನು ತೆರೆಯುತ್ತದೆ. ಬಹೂಪಯುಕ್ತ.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO ಸೇವನಾರ್ಥಿ (ಕ್ಲಯಂಟ್)" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "ಜಾಲ-ಪಾರದರ್ಶಕ ಕಾರ್ಯಾಚರಣೆಗಳಿಗೆ ಆದೇಶ-ಸಾಲು ಸಲಕರಣೆ" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL ಅಥವಾ URL ಗಳು" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "ಆಕರ URL ಅಥವಾ URLಗಳು" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "ಉದ್ದಿಷ್ಟ URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "ಲಭ್ಯವಿರುವ ಆದೇಶಗಳನ್ನು ತೋರಿಸು" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "ಆದೇಶ (--commands ನೋಡು)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "ಆದೇಶಕ್ಕೆ ಚರಪರಿಮಾಣಗಳು (ಆರ್ಗ್ಯೂಮೆಂಟ್)" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "ವಾಕ್ಯರಚನಾ ದೋಷ: ಅಗತ್ಯವಾದಷ್ಟು ಚರಪರಿಮಾಣಗಳಿಲ್ಲ (ಆರ್ಗ್ಯೂಮೆಂಟ್)\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "ವಾಕ್ಯರಚನಾ ದೋಷ: ಅಗತ್ಯಕ್ಕಿಂತಲೂ ಹೆಚ್ಚು ಚರಪರಿಮಾಣಗಳು (ಆರ್ಗ್ಯೂಮೆಂಟ್)\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "ವಾಕ್ಯರಚನಾ ದೋಷ:ಅಜ್ಞಾತ ಆದೇಶ '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kn/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/kn/kmimetypefinder.po index a4d28a12b3..144e7f18bd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kn/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kn/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2007-09-22 15:40+0530\n" "Last-Translator: Mahesh \n" "Language-Team: \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/kn/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/kn/kstart.po index 4da85d568e..2bd7f79221 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/kn/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/kn/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-01-07 15:44+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: Kannada \n" @@ -43,37 +43,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬೇಕಿರುವ ಆದೇಶ" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "ಯಾವುದೆ ಆಜ್ಞೆಯನ್ನೂ ಸಹ ಸೂಚಿಸಲಾಗಿಲ್ಲ" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ko/kbroadcastnotification.po index 4d4699dc78..a154305cbf 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-22 19:51+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ko/kcm_filetypes.po index bc6a7c921d..4ac3e8531e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-07-23 23:28+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -164,12 +164,12 @@ msgstr "새로운 확장자 추가" msgid "Extension:" msgstr "확장자:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "파일 형식 %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' 그룹의 설정 사용하기" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ko/kde-inhibit.po index ce8f4619fa..bc50985e20 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-02-09 23:29+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ko/kdesu.po index df85859e55..ffed17ac8f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2018-08-14 23:43+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ko/kioclient.po index 27c931a811..46909fc0fb 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/kioclient.po @@ -1,14 +1,14 @@ # Translation of kioclient to Korean. # Copyright (C) 2007 This_file_is_part_of_KDE # This file is distributed under the same license as the kdebase package. -# Shinjo Park , 2007, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2019, 2020, 2021, 2022. +# SPDX-FileCopyrightText: 2007, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2019, 2020, 2021, 2022, 2025 Shinjo Park # msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-04-15 23:15+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-21 00:58+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 21.08.1\n" +"X-Generator: Lokalize 24.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "kde@peremen.name" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "문법:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -49,7 +49,7 @@ msgstr "" " # 속성 메뉴를 엽니다\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -68,7 +68,7 @@ msgstr "" " # 가리키거나, *.desktop 파일이거나, 실행 파일이 올\n" " # 수 있습니다.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -87,7 +87,7 @@ msgstr "" " # 단축 버전으로 'kioclient mv'를 제공합니다.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -103,7 +103,7 @@ msgstr "" " # 사용자에게 물어 봅니다.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -117,7 +117,7 @@ msgstr "" " # URL 'src'를 'dest'로 복사합니다.\n" " # 'src'에는 URL 목록이 올 수 있습니다.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -129,7 +129,7 @@ msgstr "" " # 'url'이 가리키는 디렉터리의 내용을 표준 출력으로 씁니다\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -141,7 +141,7 @@ msgstr "" " # 'url'이 가리키는 디렉터리의 내용을 표준 출력으로 씁니다\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -157,7 +157,17 @@ msgstr "" " # 단축 버전으로 'kioclient mv'를 제공합니다.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # 'url'에 디렉터리를 생성합니다\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -169,7 +179,7 @@ msgstr "" " # 'url'에 대한 사용 가능한 정보를 표시합니다\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -181,12 +191,12 @@ msgstr "" " # 기본 앱 실행기를 엽니다.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** 예제:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -199,7 +209,7 @@ msgstr "" " // 파일을 엽니다\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -210,7 +220,7 @@ msgstr "" " // ftp:// 형식 URL의 기본 프로그램을 엽니다\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -221,7 +231,7 @@ msgstr "" " // 이맥스를 시작합니다\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -234,22 +244,22 @@ msgstr "" " // 매우 편리합니다.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO 클라이언트" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "네트워크 투명 작업용 명령행 도구" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "메시지 상자와 다른 네이티브 알림 사용" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -258,80 +268,80 @@ msgstr "" "대화식 모드 사용하지 않기: 메시지 상자 없음. 그래픽 연결을 사용하지 않으려면 " "--platform offscreen을 사용하십시오" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "대상이 존재하면 덮어쓰기 (복사와 이동)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "파일 및 URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "urls..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "원본 URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "대상 URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "사용 가능한 명령 보기" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "명령 (--commands 참고)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "command" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "명령의 인자" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: 문법 오류: 인자가 충분하지 않음\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: 문법 오류: 인자가 너무 많음\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "파일을 다운로드할 위치" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: 문법 오류: 알 수 없는 명령 '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ko/kmimetypefinder.po index 64559b1c19..2a9796157c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-12-02 23:26+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ko/kstart.po index 0936071940..2eb2d264cd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-10-08 22:51+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -44,37 +44,37 @@ msgstr "앱을 실행하는 유틸리티" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "실행할 명령" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "의 대용품: 시작할 데스크톱 파일(예: org.kde.kate)." -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "--application 옵션을 사용할 때 앱에 전달할 선택적 URL" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "지정한 명령이 없음" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ko/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ko/plasma-open-settings.po index fc43d5fc90..8f1ce64345 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ko/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ko/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-28 02:32+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ku/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ku/kcm_filetypes.po index 2d7a05a3bb..5fa69ad30e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ku/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ku/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2008-12-30 20:48+0200\n" "Last-Translator: Omer Ensari \n" "Language-Team: Kurdish \n" @@ -184,12 +184,12 @@ msgstr "PêvekekeNû Têxê" msgid "Extension:" msgstr "Pêvek:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Cureyê Pelê %1 " -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Mîhengên ji bo koma '%1' bi kar bîne" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ku/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ku/kdesu.po index 9adbaf7a73..9a87c68e3b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ku/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ku/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-08 20:01+0200\n" "Last-Translator: Omer Ensari \n" "Language-Team: Kurdish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ku/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ku/kioclient.po index 75f9980e4d..99c6f6586b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ku/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ku/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2009-01-08 20:36+0200\n" "Last-Translator: Omer Ensari \n" "Language-Team: Kurdish \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Syntax:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # Pêşeka taybetiyan vedike\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -81,7 +81,7 @@ msgstr "" " # Bêguman URL dê URL ya\n" " # belgeyê bibe, an jî dê pela *.desktop bibe.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -93,7 +93,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -115,7 +115,7 @@ msgstr "" " # URL tê bê xwestin.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -135,7 +135,7 @@ msgstr "" " # 'src' di be ku lîsteya URLyan be.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -151,7 +151,7 @@ msgstr "" " # Naveroka 'url' yê dinivîse di nav stdout de\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -167,7 +167,7 @@ msgstr "" " # Naveroka 'url' yê dinivîse di nav stdout de\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -185,7 +185,22 @@ msgstr "" " # URL yê ji 'src' yê dibe 'dest' ê.\n" " # 'src' dibe ku lîsteya URLyan bibe.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Pêşeka taybetiyan vedike\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -201,7 +216,7 @@ msgstr "" " # Naveroka 'url' yê dinivîse di nav stdout de\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -217,12 +232,12 @@ msgstr "" " # Pêşeka taybetiyan vedike\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -238,7 +253,7 @@ msgstr "" " // Pelê bi girêdana standard re vedike\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -253,7 +268,7 @@ msgstr "" " // Bi URL re pace ya nû vedike\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -268,7 +283,7 @@ msgstr "" " // emacs dide destpêkirin\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -284,106 +299,106 @@ msgstr "" " // Peldanka heyî vedike. Pir kêrhatî ye.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Daxwazkara KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Amûra rêzika-ferman ji bo xebatên torê yê zelal" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL an jî URLyan" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Çavkaniya URL an jî URLyan" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL a hedefê" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Fermanên heyî nîşan bide" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Ferman (bibîne --fermanan)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argûmanên fermanê" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Çewtiya Hevoksazî yê: Argûman têrê nakin\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Çewtiya Hevoksazî yê: Argûman pir gelek in\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Çewtiya Hevoksazî yê: Fermana '%1' nenas e\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ku/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ku/kmimetypefinder.po index 1c759cb2ad..1932a811e9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ku/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ku/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-05-13 17:19+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ku/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ku/kstart.po index 74d81f041f..7a499ddeca 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ku/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ku/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2008-06-26 17:12+0300\n" "Last-Translator: Amed Çeko Jiyan \n" "Language-Team: Kurdish \n" @@ -44,37 +44,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Fermana were xebitandin" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Tu ferman nehatiye diyarkirin" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/lt/kbroadcastnotification.po index 694fac8ada..21e513c5d5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-07-31 00:37+0300\n" "Last-Translator: Moo\n" "Language-Team: lt\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/lt/kcm_filetypes.po index 4fc28ad102..56ef78570b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/kcm_filetypes.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" -"PO-Revision-Date: 2019-12-16 16:50+0200\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" +"PO-Revision-Date: 2026-02-26 02:18+0200\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 2.2.4\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -58,9 +58,9 @@ msgid "" msgstr "" "Čia galite konfigūruoti kaip Konqueror failų tvarkytuvė elgsis, kai " "spustelėsite ant šiai grupei priklausančio failo. Konqueror gali parodyti " -"failą su įtaisytoje žiūryklėje arba paleisti atskirą programą. Specifiniam " -"failo tipui galite pakeisti šią nuostatą failo tipo konfigūracijos „Įdėjimų“ " -"kortelėje. Dolphin failus visada rodo atskiroje žiūryklėje" +"failą įtaisytoje žiūryklėje arba paleisti atskirą programą. Specifiniam " +"failo tipui galite pakeisti šią nuostatą failo tipo konfigūracijos " +"„Įterpimų“ kortelėje. Dolphin visada rodo failus atskiroje žiūryklėje" #: filetypedetails.cpp:61 #, kde-format @@ -68,8 +68,8 @@ msgid "" "This button displays the icon associated with the selected file type. Click " "on it to choose a different icon." msgstr "" -"Šis mygtukas parodys piktogramą, susietą su nurodyto tipo failais. " -"Spustelėkite ant jo, norėdami pasirinkti kitokią piktogramą." +"Šis mygtukas atvaizduoja piktogramą, susietą su pasirinktu failo tipu. " +"Spustelėkite ant jo norėdami pasirinkti kitokią piktogramą." #: filetypedetails.cpp:67 #, kde-format @@ -84,8 +84,8 @@ msgid "" "file type 'text/plain'; all files ending in '.txt' are recognized as plain " "text files." msgstr "" -"Šiame lange yra šablonų, naudojamų identifikuoti nurodyto tipo failus, " -"sąrašas. Pavyzdžiui, šablonas *.txt yra susietas su 'text/plain' failų tipu. " +"Šiame lange yra šablonų, naudojamų identifikuoti pasirinkto tipo failus, " +"sąrašas. Pavyzdžiui, šablonas *.txt yra susietas su „text/plain“ failo tipu. " "Visi failai, pasibaigiantys „.txt“, yra atpažįstami kaip grynojo teksto " "failai." @@ -121,9 +121,9 @@ msgid "" "'HTML Page'). This description will be used by applications like Konqueror " "to display directory content." msgstr "" -"Galite įvesti trumpą pasirinkto failų tipo failų aprašą (pvz,. „HTML " -"puslapis“). Aprašą, katalogo turinio rodymui, naudos tokios programos kaip " -"Konqueror." +"Galite įvesti trumpą pasirinkto failо tipo failų aprašą (pvz., „HTML " +"puslapis“). Aprašą, skirtą katalogo turinio rodymui, naudos tokios programos " +"kaip Konqueror." #: filetypedetails.cpp:129 #, kde-format @@ -145,8 +145,8 @@ msgid "" "group G to which this type belongs; for instance, 'image' if the current " "file type is image/png. Dolphin always shows files in a separate viewer." msgstr "" -"Čia galite konfigūruoti kaip Konqueror failų tvarkytuvė elgsis kai " -"spustelėsite ant šio failų tipo failo. Konqueror gali parodyti failą " +"Čia galite konfigūruoti kaip Konqueror failų tvarkytuvė elgsis, kai " +"spustelėsite ant šio failо tipo failo. Konqueror gali parodyti failą " "įtaisytoje žiūryklėje arba paleisti atskirą programą. Jei nustatysite " "„Naudoti nuostatas G grupei“, failų tvarkytuvė elgsis pagal G grupės, kuriai " "priklauso šis tipas, nuostatas, pavyzdžiui, „paveikslas“, jeigu dabartinis " @@ -160,27 +160,27 @@ msgstr "&Bendros" #: filetypedetails.cpp:168 #, kde-format msgid "&Embedding" -msgstr "Į&dėjimai" +msgstr "Į&terpimai" #: filetypedetails.cpp:209 #, kde-format msgid "Add New Extension" -msgstr "Pridėti naują plėtinį" +msgstr "Pridėti naują prievardį" #: filetypedetails.cpp:209 #, kde-format msgid "Extension:" -msgstr "Plėtinys:" +msgstr "Prievardis:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Failo tipas %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" -msgstr "Naudoti nuostatas \"%1\" grupei" +msgstr "Naudoti nuostatas „%1“ grupei" #: filetypesview.cpp:57 #, kde-format @@ -211,7 +211,7 @@ msgid "" "collapse it. Select a file type (e.g. text/html for HTML files) to view/edit " "the information for that file type using the controls on the right." msgstr "" -"Čia galite matyti sistemai žinomų failų tipų hierarchinį sąrašą. Norėdami " +"Čia galite matyti sistemai žinomų failo tipų hierarchinį sąrašą. Norėdami " "išplėsti kategorijos sąrašą, spustelėkite ant „+“ ženklo, o norėdami jį " "suskleisti, ant „-“ ženklo. Norėdami pasižiūrėti arba taisyti failo tipo " "informaciją, pažymėkite failo tipą (pvz., HTML failams, text/html) ir " @@ -220,7 +220,7 @@ msgstr "" #: filetypesview.cpp:91 #, kde-format msgid "Click here to add a new file type." -msgstr "Norėdami pridėti naują failo tipą, spustelėkite čia." +msgstr "Spustelėkite čia norėdami pridėti naują failo tipą." #: filetypesview.cpp:93 filetypesview.cpp:389 #, kde-format @@ -230,7 +230,7 @@ msgstr "Ša&linti" #: filetypesview.cpp:119 #, kde-format msgid "Select a file type by name or by extension" -msgstr "Pasirinkite failo tipą pagal pavadinimą arba plėtinį" +msgstr "Pasirinkite failo tipą pagal pavadinimą arba prievardį" #: filetypesview.cpp:382 #, kde-format @@ -253,7 +253,7 @@ msgid "" msgstr "" "Spustelėkite čia, norėdami sugrąžinti pradinį šio failo tipo sisteminio " "masto apibrėžimą. Tai atšauks visus failo tipui atliktus pakeitimus. " -"Turėkite omenyje, kad sisteminio masto failų tipai negali būti ištrinti. Vis " +"Turėkite omenyje, kad sisteminio masto failo tipai negali būti ištrinti. Vis " "dėlto, galite išvalyti jų šablonų sąrašą, taip sumažindami tikimybę, kad tie " "tipai bus naudojami (tačiau failo tipo nustatymas pagal failo turinį visgi " "gali juos panaudoti)." @@ -273,28 +273,28 @@ msgid "" "still end up using them)." msgstr "" "Spustelėkite čia, norėdami galutinai ištrinti failo tipo apibrėžimą. Tai " -"galima padaryti tik su naudotojo apibrėžtais failų tipais. Sisteminio masto " -"failų tipų negalima ištrinti. Vis dėlto, galite išvalyti jų šablonų sąrašą, " +"galima padaryti tik naudotojo apibrėžtiems failo tipams. Sisteminio masto " +"failo tipų negalima ištrinti. Vis dėlto, galite išvalyti jų šablonų sąrašą, " "taip sumažindami tikimybę, kad tie tipai bus naudojami (tačiau failo tipo " "nustatymas pagal failo turinį visgi gali juos panaudoti)." #: keditfiletype.cpp:114 #, kde-format msgid "File Type Editor" -msgstr "Failų tipų redaktorius" +msgstr "Failo tipų redaktorius" #: keditfiletype.cpp:116 #, kde-format msgid "" "KDE file type editor - simplified version for editing a single file type" msgstr "" -"KDE failų tipų redaktorius - supaprastinta vieno failo tipo redagavimo " -"versija" +"KDE failų tipų redaktorius – supaprastinta versija, skirta vieno failo tipo " +"taisymui" #: keditfiletype.cpp:118 #, kde-format msgid "(c) 2000, KDE developers" -msgstr "(c) 2000, KDE programuotojai" +msgstr "(c) 2000, KDE plėtotojai" #: keditfiletype.cpp:119 #, kde-format @@ -309,12 +309,12 @@ msgstr "David Faure" #: keditfiletype.cpp:126 #, kde-format msgid "Makes the dialog transient for the window specified by winid" -msgstr "Padaro dialogą pereinamąjį langui, nurodytam pagal „winid“" +msgstr "Padaro dialogą priklausomą nuo lango, kurį nurodė „winid“" #: keditfiletype.cpp:128 #, kde-format msgid "File type to edit (e.g. text/html)" -msgstr "Failo tipas, kurį redaguoti (pvz., text/html)" +msgstr "Failo tipas, kurį taisyti (pvz., text/html)" #: keditfiletype.cpp:159 #, kde-format @@ -358,7 +358,7 @@ msgstr "" "Tai programų, susietų su pasirinkto failo tipo failais, sąrašas. Šis sąrašas " "yra rodomas Konqueror kontekstiniame meniu, kai pasirenkate „Atverti " "naudojant...“ parinktį. Jeigu su šiuo failo tipu yra susieta daugiau nei " -"viena programa, tuomet sąrašas bus surikiuotas pagal pirmenybę taip, kad " +"viena programa, tada sąrašas bus surikiuotas pagal pirmenybę taip, kad " "aukščiausias elementas turėtų pirmenybę prieš kitus." #: kservicelistwidget.cpp:68 @@ -373,7 +373,7 @@ msgstr "" "Tai tarnybų, susietų su pasirinkto failo tipo failais, sąrašas. Šis sąrašas " "yra rodomas Konqueror kontekstiniame meniu, kai pasirenkate „Peržiūrėti " "naudojant...“ parinktį. Jeigu su šiuo failo tipu yra susieta daugiau nei " -"viena tarnyba, tuomet sąrašas bus surikiuotas pagal pirmenybę taip, kad " +"viena tarnyba, tada sąrašas bus surikiuotas pagal pirmenybę taip, kad " "aukščiausias elementas turėtų pirmenybę prieš kitus." #: kservicelistwidget.cpp:80 @@ -391,7 +391,7 @@ msgid "" msgstr "" "Priskiria pasirinktai programai didesnę pirmenybę,\n" "pakeliant ją sąraše aukštyn. Turėkite omenyje:\n" -"Tai įtakos pasirinktą programą tik tuo atveju,\n" +"Tai darys įtaką pasirinktai programai tik tuo atveju,\n" "jei failo tipas susietas su daugiau nei viena programa." #: kservicelistwidget.cpp:90 @@ -418,7 +418,7 @@ msgid "" msgstr "" "Priskiria pasirinktai programai mažesnę pirmenybę,\n" "nuleidžiant ją sąraše žemyn. Turėkite omenyje:\n" -"Tai įtakos pasirinktą programą tik tuo atveju,\n" +"Tai darys įtaką pasirinktai programai tik tuo atveju,\n" "jei failo tipas susietas su daugiau nei viena programa." #: kservicelistwidget.cpp:102 @@ -453,12 +453,12 @@ msgstr "Pašalinti pasirinktą programą iš sąrašo." #: kservicelistwidget.cpp:126 multiapplydialog.cpp:19 #, kde-format msgid "Apply To..." -msgstr "" +msgstr "Taikyti..." #: kservicelistwidget.cpp:131 #, kde-format msgid "Apply the current preference order to other file types." -msgstr "" +msgstr "Taikyti dabartinę pirmenybės tvarką kitiems failo tipams." #: kservicelistwidget.cpp:154 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/lt/kde-inhibit.po index b082efe9a0..7f609ac22a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/kde-inhibit.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" -"PO-Revision-Date: 2023-12-12 01:38+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-02-26 02:35+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lt\n" @@ -17,39 +17,40 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" +"X-Generator: Poedit 3.8\n" #: main.cpp:26 #, kde-format msgid "Inhibit various desktop functions whilst a command runs" -msgstr "" +msgstr "Slopinti įvairias darbalaukio funkcijas, kol komanda vykdoma" #: main.cpp:28 #, kde-format msgid "Inhibit power management" -msgstr "" +msgstr "Slopinti maitinimo valdymą" #: main.cpp:31 #, kde-format msgid "Inhibit screensaver" -msgstr "" +msgstr "Slopinti ekrano užsklandą" #: main.cpp:35 #, kde-format msgid "Inhibit colour correction (night mode)" -msgstr "" +msgstr "Slopinti spalvų korekciją (nakties veikseną)" #: main.cpp:38 #, kde-format msgid "Inhibit notifications (Do not disturb)" -msgstr "" +msgstr "Slopinti pranešimus (Netrukdyti)" #: main.cpp:41 #, kde-format msgid "Command with arguments to run" -msgstr "" +msgstr "Komanda, kartu su argumentais, kurią paleisti" #: main.cpp:64 main.cpp:73 main.cpp:89 #, kde-format msgctxt "Script as in shell script" msgid "Running Script" -msgstr "" +msgstr "Vykdomas scenarijus" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/lt/kdesu.po index faccda4f1f..92a955d5f6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/kdesu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" -"PO-Revision-Date: 2019-11-04 19:59+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-02-26 20:44+0200\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 2.0.6\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -37,12 +37,12 @@ msgstr "KDE su" #: kdesu.cpp:94 #, kde-format msgid "Runs a program with elevated privileges." -msgstr "Paleidžia programą su padidintomis privilegijomis." +msgstr "Paleidžia programą naudojant didesnes teises." #: kdesu.cpp:96 #, kde-format msgid "Copyright (c) 1998-2000 Geert Jansen, Pietro Iglio" -msgstr "Copyright (c) 1998-2000 Geert Jansen, Pietro Iglio" +msgstr "Copyright (c) 1998–2000 Geert Jansen, Pietro Iglio" #: kdesu.cpp:97 #, kde-format @@ -78,12 +78,12 @@ msgstr "Nurodo komandą, kurią paleisti kaip vieną eilutę" #, kde-format msgid "Run command under target uid if is not writable" msgstr "" -"Paleisti komandą naudojant nurodytą uid, jei nėra skirtas rašymui" +"Paleisti komandą naudojant paskirties uid, jei nėra skirtas rašymui" #: kdesu.cpp:110 #, kde-format msgid "Specifies the target uid" -msgstr "Nurodo norimą naudoti uid" +msgstr "Nurodo paskirties uid" #: kdesu.cpp:111 #, kde-format @@ -113,7 +113,7 @@ msgstr "Naudoti tikralaikį planavimą" #: kdesu.cpp:117 #, kde-format msgid "Do not display ignore button" -msgstr "Nerodyti nepaisymo mygtuką" +msgstr "Nerodyti nepaisymo mygtuko" #: kdesu.cpp:118 #, kde-format @@ -131,7 +131,7 @@ msgctxt "" "Transient means that the kdesu app will be attached to the app specified by " "the winid so that it is like a dialog box rather than some separate program" msgid "Makes the dialog transient for an X app specified by winid" -msgstr "Padaro dialogą priklausomą nuo X programos, kurią nurodė winid" +msgstr "Padaro dialogą priklausomą nuo X programos, kurią nurodė „winid“" #: kdesu.cpp:128 #, kde-format @@ -141,7 +141,7 @@ msgstr "Įtaisyti į langą" #: kdesu.cpp:155 #, kde-format msgid "Cannot execute command '%1'." -msgstr "Nepavyksta įvykdyti komandos '%1'." +msgstr "Nepavyksta įvykdyti komandos „%1“." #: kdesu.cpp:158 #, kde-format @@ -186,7 +186,7 @@ msgstr "Paleisti kaip %1" #: sudlg.cpp:31 #, kde-format msgid "Please enter your password below." -msgstr "Prašome įrašyti savo slaptažodį žemiau." +msgstr "Įveskite žemiau slaptažodį." #: sudlg.cpp:36 #, kde-format @@ -195,9 +195,9 @@ msgid "" "root's password below or click Ignore to continue with your current " "privileges." msgstr "" -"Jūsų užklaustam veiksmui įvykdyti reikia pagrindinio naudotojo (root) " +"Jūsų prašomam veiksmui įvykdyti reikia pagrindinio naudotojo (root) " "teisių. Įveskite žemiau pagrindinio naudotojo slaptažodį arba " -"spustelėkite \"Nepaisyti\" norėdami tęsti su esamomis teisėmis." +"spustelėkite „Nepaisyti“ norėdami tęsti naudojant esamas teises." #: sudlg.cpp:42 #, kde-format @@ -205,7 +205,7 @@ msgid "" "The action you requested needs root privileges. Please enter " "root's password below." msgstr "" -"Jūsų užklaustam veiksmui įvykdyti reikia pagrindinio naudotojo (root) " +"Jūsų prašomam veiksmui įvykdyti reikia pagrindinio naudotojo (root) " "teisių. Įveskite žemiau pagrindinio naudotojo slaptažodį." #: sudlg.cpp:49 @@ -215,9 +215,9 @@ msgid "" "password for %1 below or click Ignore to continue with your current " "privileges." msgstr "" -"Jūsų užklaustam veiksmui įvykdyti reikia papildomų teisių. Įveskite žemiau " -"naudotojo %1 slaptažodį arba spustelėkite \"Nepaisyti\" norėdami " -"tęsti su esamomis teisėmis." +"Jūsų prašomam veiksmui įvykdyti reikia papildomų teisių. Įveskite žemiau " +"naudotojo %1 slaptažodį arba spustelėkite „Nepaisyti“ norėdami tęsti " +"naudojant esamas teises." #: sudlg.cpp:56 #, kde-format @@ -225,7 +225,7 @@ msgid "" "The action you requested needs additional privileges. Please enter the " "password for %1 below." msgstr "" -"Jūsų užklaustam veiksmui įvykdyti reikia papildomų teisių. Įveskite žemiau " +"Jūsų prašomam veiksmui įvykdyti reikia papildomų teisių. Įveskite žemiau " "naudotojo %1 slaptažodį." #: sudlg.cpp:79 diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/lt/kioclient.po index 351bd17ac6..e23d9ce761 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/kioclient.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2020-04-01 22:05+0300\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2026-02-26 21:14+0200\n" "Last-Translator: Moo\n" "Language-Team: lt \n" "Language: lt\n" @@ -20,7 +20,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 2.0.6\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -32,7 +32,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "liudas@akmc.lt, <>" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -41,33 +41,20 @@ msgstr "" "\n" "Sintaksė:\n" -#: kioclient.cpp:57 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:58 +#, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" " %1 'url'\n" " # Opens a properties dialog of 'url'\n" "\n" msgstr "" -" kioclient5 openProperties 'url'\n" -" # Atveria savybių meniu\n" +" %1 'url'\n" +" # Atveria 'url' savybių katalogą\n" "\n" -#: kioclient.cpp:64 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 exec 'url' ['mimetype']\n" -#| " # Tries to open the document pointed to by 'url', in the " -#| "application\n" -#| " # associated with it in KDE. You may omit 'mimetype'.\n" -#| " # In this case the mimetype is determined\n" -#| " # automatically. Of course URL may be the URL of a\n" -#| " # document, or it may be a *.desktop file.\n" -#| " # 'url' can be an executable, too.\n" +#: kioclient.cpp:65 +#, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" " %1 'url' ['mimetype']\n" @@ -78,15 +65,15 @@ msgid "" " # 'url' can be the URL of a document, a *.desktop file,\n" " # or an executable.\n" msgstr "" -" kioclient5 exec 'url' ['mimetype']\n" -" # Bando atverti „url“ nurodytą dokumentą programoje,\n" -" # susieta su KDE. Galite praleisti \"mimetype\".\n" -" # Šiuo atveju mimetype bus nustatytas\n" -" # automatiškai. Žinoma, URL gali būti dokumento URL\n" -" # arba gali būti *.desktop failas.\n" -" # \"url\" gali būti ir vykdomasis failas.\n" +" %1 'url' ['mimetype']\n" +" # Bando atverti dokumentą, į kurį nurodo 'url', programoje,\n" +" # kuri susieta su juo KDE aplinkoje. Galite praleisti " +"'mimetype'.\n" +" # Tokiu atveju MIME tipas bus nustatytas automatiškai.\n" +" # 'url' gali būti dokumento URL adresas, *.desktop failas,\n" +" # arba vykdomasis failas.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -97,15 +84,16 @@ msgid "" " # The short version 'kioclient mv' is also available.\n" "\n" msgstr "" +" %1 'šaltinis' 'paskirtis'\n" +" # Perkelia URL 'šaltinį' į 'paskirtį'.\n" +" # 'šaltinis' gali būti URL adresų sąrašas.\n" +" # 'paskirtis' gali būti „trash:/“, jei norima perkelti failus " +"į šiukšlinę.\n" +" # Taip pat yra prieinama trumpa 'kioclient mv' versija.\n" +"\n" -#: kioclient.cpp:85 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 download ['src']\n" -#| " # Copies the URL 'src' to a user-specified location'.\n" -#| " # 'src' may be a list of URLs, if not present then\n" -#| " # a URL will be requested.\n" -#| "\n" +#: kioclient.cpp:86 +#, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" " %1 ['src']\n" @@ -114,18 +102,15 @@ msgid "" " # a URL will be requested.\n" "\n" msgstr "" -" kioclient5 download ['src']\n" -" # Kopijuoja URL \"src\" į naudotojo nurodytą vietą.\n" -" # \"src\" gali būti keleto URL sąrašas; jo nenurodžius,\n" -" # URL bus užklaustas.\n" +" %1 ['šaltinis']\n" +" # Kopijuoja URL 'šaltinį' į naudotojo nurodytą vietą.\n" +" # 'šaltinis' gali būti URL adresų sąrašas, o jei jo nėra, " +"tada\n" +" # bus paprašyta pateikti URL.\n" "\n" -#: kioclient.cpp:94 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 copy 'src' 'dest'\n" -#| " # Copies the URL 'src' to 'dest'.\n" -#| " # 'src' may be a list of URLs.\n" +#: kioclient.cpp:95 +#, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" " %1 'src' 'dest'\n" @@ -134,48 +119,38 @@ msgid "" " # The short version 'kioclient cp' is also available.\n" "\n" msgstr "" -" kioclient5 copy 'src' 'dest'\n" -" # Kopijuoja URL \"src\" į \"dest\".\n" -" # \"src\" gali būti keleto URL sąrašas..\n" +" %1 'šaltinis' 'paskirtis'\n" +" # Kopijuoja URL 'šaltinį' į 'paskirtį'.\n" +" # 'šaltinis' gali būti URL adresų sąrašas.\n" +" # Taip pat yra prieinama trumpa 'kioclient cp' versija.\n" +"\n" -#: kioclient.cpp:103 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 ls 'url'\n" -#| " # Lists the contents of the directory 'url' to stdout\n" -#| "\n" +#: kioclient.cpp:104 +#, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" " %1 'url'\n" " # Prints the contents of the file 'url' to the standard output\n" "\n" msgstr "" -" kioclient5 ls 'url'\n" -" # Išvardija \"url\" katalogo turinį į stdout\n" +" %1 'url'\n" +" # Išspausdina 'url' failo turinį į standartinę išvestį\n" "\n" -#: kioclient.cpp:110 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 ls 'url'\n" -#| " # Lists the contents of the directory 'url' to stdout\n" -#| "\n" +#: kioclient.cpp:111 +#, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" " %1 'url'\n" " # Lists the contents of the directory 'url' to stdout\n" "\n" msgstr "" -" kioclient5 ls 'url'\n" -" # Išvardija \"url\" katalogo turinį į stdout\n" +" %1 'url'\n" +" # Išvardija 'url' katalogo turinį į stdout\n" "\n" -#: kioclient.cpp:117 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 remove 'url'\n" -#| " # Removes the URL\n" -#| " # 'url' may be a list of URLs.\n" +#: kioclient.cpp:118 +#, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" " %1 'url'\n" @@ -184,125 +159,116 @@ msgid "" " # The short version 'kioclient rm' is also available.\n" "\n" msgstr "" -" kioclient5 remove 'url'\n" +" %1 'url'\n" " # Pašalina URL\n" -" # \"url\" gali būti keleto URL sąrašas.\n" +" # 'url' gali būti URL adresų sąrašas.\n" +" # Taip pat yra prieinama trumpa 'kioclient rm' versija.\n" +"\n" -#: kioclient.cpp:126 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 cat 'url'\n" -#| " # Writes out the contents of 'url' to stdout\n" -#| "\n" +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Sukuria katalogą ties 'url'\n" + +#: kioclient.cpp:134 +#, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" " %1 'url'\n" " # Shows all of the available information for 'url'\n" "\n" msgstr "" -" kioclient5 cat 'url'\n" -" # Įrašo \"url\" turinį į stdout\n" +" %1 'url'\n" +" # Rodo visą prieinamą informaciją apie 'url'\n" "\n" -#: kioclient.cpp:133 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:141 +#, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" " %1\n" " # Opens a basic application launcher\n" "\n" msgstr "" -" kioclient5 openProperties 'url'\n" -" # Atveria savybių meniu\n" +" %1\n" +" # Atveria pagrindinę programų paleidyklę\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Pavyzdžiai:\n" -#: kioclient.cpp:140 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 exec file:/home/weis/data/test.html\n" -#| " // Opens the file with default binding\n" -#| "\n" +#: kioclient.cpp:148 +#, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" " // Opens the file with the default application associated\n" " // with this MimeType\n" "\n" msgstr "" -" kioclient5 exec file:/home/weis/data/test.html\n" -" // Atveria failą su numatytuoju susiejimu\n" +" kioclient exec file:/home/weis/data/test.html\n" +" // Atveria failą naudodamas numatytąją programą, susietą\n" +" // su šiuo MIME tipu\n" "\n" -#: kioclient.cpp:145 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 exec ftp://localhost/\n" -#| " // Opens new window with URL\n" -#| "\n" +#: kioclient.cpp:153 +#, kde-format msgid "" " kioclient exec ftp://localhost/\n" " // Opens URL with the default handler for ftp:// scheme\n" "\n" msgstr "" -" kioclient5 exec ftp://localhost/\n" -" // Atveria naują langa su URL\n" +" kioclient exec ftp://localhost/\n" +" // Atveria URL naudodamas numatytąją doroklę, skirtą ftp:// " +"schemai\n" "\n" -#: kioclient.cpp:149 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 exec file:/root/Desktop/emacs.desktop\n" -#| " // Starts emacs\n" -#| "\n" +#: kioclient.cpp:157 +#, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" " // Starts emacs\n" "\n" msgstr "" -" kioclient5 exec file:/root/Desktop/emacs.desktop\n" +" kioclient exec file:/root/Desktop/emacs.desktop\n" " // Paleidžia emacs\n" "\n" -#: kioclient.cpp:153 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient5 exec .\n" -#| " // Opens the current directory. Very convenient.\n" -#| "\n" +#: kioclient.cpp:161 +#, kde-format msgid "" " kioclient exec .\n" " // Opens the current directory in the default\n" " // file manager. Very convenient.\n" "\n" msgstr "" -" kioclient5 exec .\n" -" // Atveria esamą katalogą. Labai patogu.\n" +" kioclient exec .\n" +" // Atveria esamą katalogą numatytojoje\n" +" // failų tvarkytuvėje. Labai patogu.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO kliento programa" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" -msgstr "Komandinų eilutės įrankis, skirtas skaidrioms tinklo operacijoms" +msgstr "Komandų eilutės įrankis, skirtas skaidrioms tinklo operacijoms" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Naudoti žinučių langus ir kitus savus pranešimus" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -311,85 +277,85 @@ msgstr "" "Neinteraktyvus naudojimas: jokių žinučių langų. Jei nenorite grafinio ryšio, " "naudokite --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" "Perrašyti paskirties failą, jei toks yra (kopijavimo ir perkėlimo atveju)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "failas arba URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Vienas ar keletas šaltinio URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Paskirties URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Rodyti prieinamas komandas" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Komanda (žr. --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "komanda" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Komandos argumentai" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Sintaksės klaida: per mažai argumentų\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Sintaksės klaida: per daug argumentų\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" -msgstr "Paskirtis kur atsisiųsti failus" +msgstr "Paskirtis, į kurią atsisiųsti failus" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Sintaksės klaida: nežinoma komanda „%2“\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" -msgstr "" +msgstr "%1: %2\n" #, fuzzy #~| msgid "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/lt/kmimetypefinder.po index c503ce8033..b40371b805 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-06-08 19:53+0000\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/lt/kstart.po index a7b26df918..6410302473 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/kstart.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" -"PO-Revision-Date: 2019-07-30 22:14+0300\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" +"PO-Revision-Date: 2026-02-22 02:33+0200\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 2.0.6\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -37,50 +37,46 @@ msgstr "KStart" #: kstart.cpp:79 #, kde-format msgid "Utility to launch applications" -msgstr "" +msgstr "Paslaugų programa, skirta paleisti programas" #: kstart.cpp:81 #, kde-format msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" +msgstr "(C) 1997–2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Komanda, kurią vykdyti" -#: kstart.cpp:92 -#, fuzzy, kde-format -#| msgid "" -#| "Alternative to : desktop file to start. D-Bus service will be " -#| "printed to stdout" +#: kstart.cpp:94 +#, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -"Alternatyva komandai: darbalaukio failas, kurį paleisti. D-Bus " -"tarnybos pranešimai bus nukreipiami į stdout" +"Alternatyva komandai: darbalaukio failas, kurį paleisti, pvz., org." +"kde.kate" -#: kstart.cpp:95 -#, fuzzy, kde-format -#| msgid "Optional URL to pass , when using --service" +#: kstart.cpp:97 +#, kde-format msgid "Optional URL to pass to the application when using --application" -msgstr "Nebūtinas URL, skirtas perduoti , naudojant --service" +msgstr "Nebūtinas URL, kurį perduoti programai, kai naudojamas --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nenurodyta jokia komanda" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lt/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/lt/plasma-open-settings.po index baf56900f5..1c1205f2a3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lt/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lt/plasma-open-settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" -"PO-Revision-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-02-22 02:37+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lt\n" @@ -17,33 +17,34 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "" +msgstr "Moo" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "" +msgstr "<>" #: main.cpp:30 #, kde-format msgid "App to open Settings app" -msgstr "" +msgstr "Programa, skirta atverti nuostatų programą" #: main.cpp:32 #, kde-format msgid "A tool to start system settings" -msgstr "" +msgstr "Įrankis, skirtas paleisti sistemos nuostatas" #: main.cpp:34 #, kde-format msgid "(c) 2021, The KDE Developers" -msgstr "" +msgstr "(c) 2021, KDE plėtotojai" #: main.cpp:67 #, kde-format msgid "Could not open: %1" -msgstr "" +msgstr "Nepavyko atverti: %1" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/lv/kbroadcastnotification.po index a5ecd4553c..9402c53256 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-30 19:32+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/lv/kcm_filetypes.po index 9802ef6c69..45ff4682db 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-10-01 16:44+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" @@ -172,12 +172,12 @@ msgstr "Pievienot jaunu paplašinājumu" msgid "Extension:" msgstr "Paplašinājums:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Datnes tips %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Izmantot iestatījumus „%1“ grupai" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/lv/kde-inhibit.po index a3b0a4a021..9022d5f759 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-10-01 17:36+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/lv/kdesu.po index df75ba53a0..6f9acf59d6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/kdesu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-10-01 18:09+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/lv/kioclient.po index e796449d0a..aa70554878 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/kioclient.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2024-10-01 18:50+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" @@ -33,7 +33,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "toms.trasuns@posteo.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -42,7 +42,7 @@ msgstr "" "\n" "Sintakse:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -54,7 +54,7 @@ msgstr "" " # Atver „url“ īpašību lodziņu\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -73,7 +73,7 @@ msgstr "" " # „url“ var būt dokumenta URL, „*.desktop“ datne,\n" " # vai izpilddatne.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -92,7 +92,7 @@ msgstr "" " # Pieejama ir arī īsā versija „kioclient mv“.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -108,7 +108,7 @@ msgstr "" " # pieprasīs norādīt URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -124,7 +124,7 @@ msgstr "" " # Tāpat ir pieejama arī īsā versija „kioclient cp“.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -136,7 +136,7 @@ msgstr "" " # Standarta izvadē izdrukā datnes „url“ saturu\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -148,7 +148,7 @@ msgstr "" " # Uzskaita „url“ direktorija saturu uz „stdout“\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -164,7 +164,23 @@ msgstr "" " # Tāpat ir pieejama īsā versija „kioclient rm“.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Atver „url“ īpašību lodziņu\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -176,7 +192,7 @@ msgstr "" " # Parāda visu pieejamo informāciju par „url“\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -188,12 +204,12 @@ msgstr "" " # Atver pamata programmu palaidēju\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Piemēri:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -206,7 +222,7 @@ msgstr "" " // ar šo MIME tipu\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -217,7 +233,7 @@ msgstr "" " // Atver URL ar noklusējuma „ftp://“ shēmas apstrādātāju\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -228,7 +244,7 @@ msgstr "" " // Palaiž „emacs“\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -241,25 +257,25 @@ msgstr "" " // datņu pārvaldniekā. Ļoti ērti.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO klients" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" "Komandrindas rīks caurspīdīgām (bez nepieciešamības zināt, kā darbojas) " "operācijām tīklā" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" "Izmanto ziņojumu laukus un cita veida darbvirsmas standarta paziņojumus" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -268,80 +284,80 @@ msgstr "" "Neinteraktīvs lietojums: bez ziņojumu laukiem. Ja nevēlaties grafisku " "sasrkarni, izmantojiet „--platform offscreen“" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Pārrakstīt galamērķi, ja tas pastāv (kopējot un pārvietojot)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "datne vai URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url adreses..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Viens vai vairāki avota URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Mērķa URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Rādīt pieejamās komandas" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Komanda (skatīt „--commands“)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "komanda" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Komandas argumenti" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: sintakses kļūda, nepietiek parametru\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: sintakses kļūda, par daudz parametru\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Datņu lejupielādes galamērķa vieta" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: sintakses kļūda, nezināma komanda „%2“\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/lv/kmimetypefinder.po index d07006931b..346593d6ca 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/kmimetypefinder.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-10-01 18:52+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/lv/kstart.po index d1aeb4ca9c..4d2ad61609 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/kstart.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-10-01 18:56+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" @@ -46,38 +46,38 @@ msgstr "Utilītprogramma programmu palaišanai" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997—2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Izpildāmā komanda" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" " alternatīva: palaižamā darbvirsmas datne, piemēram, „org.kde.kate“" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "Pēc izvēles URL, ko padot programmai, izmantojot „--application“" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Komanda nav norādīta" diff --git a/local/recipes/kde/kde-cli-tools/source/po/lv/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/lv/plasma-open-settings.po index ba0bba2cf5..549481cf05 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/lv/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/lv/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-30 21:34+0300\n" "Last-Translator: Toms Trasuns \n" "Language-Team: Latvian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mai/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/mai/kcm_filetypes.po index 7a531dab6e..9181a18ad8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mai/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mai/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2010-09-24 16:09+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Maithili \n" @@ -156,12 +156,12 @@ msgstr "नवीन एक्सटेंशन जोडू" msgid "Extension:" msgstr "एक्सटेंशनः" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "फाइलक प्रकार %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "समूह '%1' क' लेल बिन्यास इस्तेमाल करू" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mai/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/mai/kdesu.po index 802732a69f..8c6fcb23be 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mai/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mai/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-01-29 15:08+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Maithili \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mai/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/mai/kioclient.po index fd418520b9..9b3bf6b167 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mai/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mai/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2010-01-29 15:45+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Maithili \n" @@ -33,7 +33,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -42,7 +42,7 @@ msgstr "" "\n" "सिंटेक्स:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -58,7 +58,7 @@ msgstr "" " # प्रापर्टी मेनू खोलैत अछि\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -88,7 +88,7 @@ msgstr "" " # document, or it may be a *.desktop file.\n" " # 'url' can be an executable, too.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -100,7 +100,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -122,7 +122,7 @@ msgstr "" " # a URL will be requested.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -140,7 +140,7 @@ msgstr "" " # Copies the URL 'src' to 'dest'.\n" " # 'src' may be a list of URLs.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -156,7 +156,7 @@ msgstr "" " # Writes out the contents of 'url' to stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -172,7 +172,7 @@ msgstr "" " # Writes out the contents of 'url' to stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -190,7 +190,22 @@ msgstr "" " # Removes the URL\n" " # 'url' may be a list of URLs.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" केआईओक्लाएंट ओपन प्रापर्टीज़ 'यूआरएल'\n" +" # प्रापर्टी मेनू खोलैत अछि\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -206,7 +221,7 @@ msgstr "" " # Writes out the contents of 'url' to stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -222,12 +237,12 @@ msgstr "" " # प्रापर्टी मेनू खोलैत अछि\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -243,7 +258,7 @@ msgstr "" " // Opens the file with default binding\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -258,7 +273,7 @@ msgstr "" " // Opens new window with URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -273,7 +288,7 @@ msgstr "" " // ईमैक्स खोलता है\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -289,106 +304,106 @@ msgstr "" " // मोजुदा डिरेक्ट्री केँ खोलैत अछि. बहुते सुविधाजनक.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "केआईओ क्लाएंट " -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "नेटवर्क-पारदर्शी आपरेशन क' लेल कमांड लाइन अओजार" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL या URLs" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "गंतव्य URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "उपलब्ध कमांडसभ देखाबू" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "कमांड (देखू --कमांडसभ)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "कमांड क' लेल आर्गुमेंटसभ" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "सिंटेक्स त्रुटिः पर्याप्त आर्गुमेंट नहि अछि\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "सिंटेक्स त्रुटिः बहुत बेसी आर्गुमेंट अछि\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "सिंटेक्स त्रुटिः अज्ञात कमांड '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mai/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/mai/kmimetypefinder.po index 16e02249ac..c8f7453806 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mai/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mai/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-12 19:53+0530\n" "Last-Translator: \n" "Language-Team: maithili \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mai/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/mai/kstart.po index 38e5bcf15e..bf9a30820b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mai/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mai/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-01-17 23:03+0530\n" "Last-Translator: Sangeeta Kumari \n" "Language-Team: Maithili \n" @@ -45,37 +45,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 मैथियास एट्रिच (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "मेथियास एट्रिच" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "डेविड फाउरे" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "रिचर्ड जे मूर" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "चलाबए लेल कमांड" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "कोनो कमांड निर्दिष्ट नहि अछि" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mk/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/mk/kcm_filetypes.po index 0034b9404e..41fb6a7da9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mk/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mk/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2010-01-29 22:16+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -174,12 +174,12 @@ msgstr "Додај нова наставка" msgid "Extension:" msgstr "Наставка:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Тип на датотека %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Користи ги поставувањата за групата „%1“" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mk/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/mk/kdesu.po index 2cc97db37f..c3be2f8db2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mk/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mk/kdesu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-06-21 20:35+0200\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mk/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/mk/kioclient.po index 94eb8637ab..0094bb2e34 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mk/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mk/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2009-01-03 11:07+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Синтакса:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # Отвора мени со својства\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -83,7 +83,7 @@ msgstr "" " # автоматски. „url“ може да биде URL на\n" " # документ или може да биде *.desktop-датотека.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -95,7 +95,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -117,7 +117,7 @@ msgstr "" " # ќе биде побаран URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -137,7 +137,7 @@ msgstr "" " # 'src' може да биде листа со URL.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -153,7 +153,7 @@ msgstr "" " # Ја запишува содржината на 'url' на стандардниот излез\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -169,7 +169,7 @@ msgstr "" " # Ја запишува содржината на 'url' на стандардниот излез\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -187,7 +187,22 @@ msgstr "" " # Го преместува URL од 'src' во 'dest'.\n" " # 'src' може да биде листа со URL.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Отвора мени со својства\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -203,7 +218,7 @@ msgstr "" " # Ја запишува содржината на 'url' на стандардниот излез\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -219,12 +234,12 @@ msgstr "" " # Отвора мени со својства\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -240,7 +255,7 @@ msgstr "" " // Ја отвора датотеката со стандардното поврзување\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -255,7 +270,7 @@ msgstr "" " // Отвора нов прозорец со URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -270,7 +285,7 @@ msgstr "" " // Стартува emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -286,106 +301,106 @@ msgstr "" " // Го отвора тековниот именик. Многу пригодно.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO-клиент" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Команднолиниска алатка за мрежно-транспарентни операции" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "Адреса или адреси" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Изворна адреса или адреси" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Одредишна адреса" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Покажи достапни команди" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Команда (видете --commands)." -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Аргументи за командата" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Грешка во синтаксата: Недоволно аргументи\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Грешка во синтаксата: Премногу аргументи\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Грешка во синтаксата: Непозната команда „%1“\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mk/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/mk/kmimetypefinder.po index 8d13194873..89f0696e3d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mk/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mk/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-06-21 21:08+0200\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mk/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/mk/kstart.po index fc7e14af28..e1ff8d58c6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mk/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mk/kstart.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2008-12-21 16:35+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -46,37 +46,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Команда за извршување" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Не е наведена команда" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ml/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ml/kbroadcastnotification.po index e8d7d33df5..46cf9b1150 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ml/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ml/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-12-12 22:34+0000\n" "Last-Translator: Vivek KJ Pazhedath \n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" "Language-Team: Swathantra Malayalam Computing | സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ് " @@ -169,12 +169,12 @@ msgstr "പുതിയ എക്സ്റ്റെന്‍ഷന്‍ ചേ msgid "Extension:" msgstr "എക്സ്റ്റെന്‍ഷന്‍:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "%1 എന്ന തരത്തിലുള്ള ഫയല്‍" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' ഗ്രൂപ്പിനുള്ള ക്രമികരണങ്ങള്‍ ഉപയോഗിക്കുക" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ml/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ml/kdesu.po index 3fc287d60f..a0ecd234a3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ml/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ml/kdesu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu trunk\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-12-12 22:58+0000\n" "Last-Translator: Vivek KJ Pazhedath \n" "Language-Team: \n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "ഒരു ആജ്ഞയും വ്യക്തമാക്കിയിട്ടില്ല" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mr/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/mr/kcm_filetypes.po index 0630eaaab0..8f1d5a5966 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mr/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mr/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2014-10-28 15:31+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -170,12 +170,12 @@ msgstr "नवीन विस्तारण जोडा" msgid "Extension:" msgstr "विस्तारण:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "फाईल प्रकार %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' समूहाकरिता वापरकर्ता संयोजना" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mr/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/mr/kdesu.po index bf7c37fe32..ac11b4682c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mr/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mr/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2014-10-28 15:31+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mr/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/mr/kioclient.po index ffe0cd4339..070343767f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mr/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mr/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2013-02-23 17:39+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "सिन्टॅक्स्:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # प्रॉपर्टीज मेन्यू उघडतो \n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -83,7 +83,7 @@ msgstr "" " अथवा ती *.डेस्कटॉप फ़ाइल.\n" " #'url' हि executable हि असते.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -95,7 +95,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -117,7 +117,7 @@ msgstr "" " #URLला विनंती करता येईल.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -135,7 +135,7 @@ msgstr "" " #URL'src'ला 'dest' वर कॉपी करते.\n" " #'src'हि URL ची सूची असू शकते.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -151,7 +151,7 @@ msgstr "" " # कंटेंट सूची'url'शब्दकोश stdout साठी \n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -167,7 +167,7 @@ msgstr "" " # कंटेंट सूची'url'शब्दकोश stdout साठी \n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -185,7 +185,22 @@ msgstr "" " #'url' काढतो \n" " #'url' ही URLs ची सूची असू शकते.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" Kioclient ओपन प्रॉपर्टीज 'url ' \n" +" # प्रॉपर्टीज मेन्यू उघडतो \n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -201,7 +216,7 @@ msgstr "" " #'url' चे कंटेंट stdout वर लिहितो\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -217,12 +232,12 @@ msgstr "" " # प्रॉपर्टीज मेन्यू उघडतो \n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -238,7 +253,7 @@ msgstr "" " //डिफाँल्ट बाईंडिंग सह फ़ाइल उघडते\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -253,7 +268,7 @@ msgstr "" " //URLसह नवीन चौकट उघडते.\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -268,7 +283,7 @@ msgstr "" " //चालू करते emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -284,106 +299,106 @@ msgstr "" " //चालू शब्दकोश उघडतो.खूप सुविधाजनक.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO ग्राहक" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "संजाळ-पारदर्शक कार्यपद्धती करिता आदेश-ओळ साधन" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "लक्ष्य अस्तित्वात असल्यास ते खोडून लिहा (प्रत करा व हलवा)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL किंवा URLs" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "स्रोत URL किंवा URLs" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "लक्ष्य URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "उपलब्ध आदेश दर्शवा" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "आदेश (--commands पहा)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "आदेश करिता बाब" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "सिनटॅक्स् त्रुटी: अधिक बाब आढळले नाही\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "सिनटॅक्स् त्रुटी: खूप जास्त बाब\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "सिनटॅक्स् त्रुटी: अपरिचीत आदेश '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mr/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/mr/kmimetypefinder.po index 33abcdf655..dc18b0a450 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mr/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mr/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2013-01-28 16:55+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/mr/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/mr/kstart.po index c9ca21339e..a3dafe73f8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/mr/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/mr/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2013-02-22 14:26+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -48,27 +48,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 मात्थिआस एट्टरिच (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "मात्थिआस एट्टरिच" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "डेविड फ़ॉउर" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "रिचर्ड जे. मूर" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "कार्यान्वित करण्याचा आदेश" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -77,13 +77,13 @@ msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" " ला पर्याय : डेस्कटॉप फाईल सुुुरु होत आहे. D-Bus सेवा stdout ला छापण्यात येइल." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr " --service वापरताना ऐच्छिक URL ला पाठविला जाईल" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "कोणताही आदेश दिलेला नाही" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ms/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ms/kcm_filetypes.po index 51827ff150..14a64492b1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ms/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ms/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2011-07-16 01:02+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -173,12 +173,12 @@ msgstr "Tambah Penghujungan Baru" msgid "Extension:" msgstr "Penghujungan:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Fail jenis %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Gunakan tetapan '%1' untuk kumpulan" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ms/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ms/kdesu.po index b3f6502765..2df490b6b7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ms/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ms/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2011-05-11 16:40+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ms/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ms/kioclient.po index 449ebed5ce..02ab06af2a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ms/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ms/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2010-07-24 23:54+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Sintaks:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # Membuka menu ciri-ciri\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -85,7 +85,7 @@ msgstr "" " # dokumen, atau ia mungkin fail *.desktop.\n" " # 'url' boleh jadi bolehlaksana, juga.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -97,7 +97,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -119,7 +119,7 @@ msgstr "" " # satu URL akan diminta.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -137,7 +137,7 @@ msgstr "" " # Salin URL 'src' ke 'dest'.\n" " # 'src' mungkin adalah senarai URL.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -153,7 +153,7 @@ msgstr "" " # Tulis kandungan 'url' ke stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -169,7 +169,7 @@ msgstr "" " # Tulis kandungan 'url' ke stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -187,7 +187,22 @@ msgstr "" " # Membuang URL\n" " # 'url' mungkin adalah senarai URL.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Membuka menu ciri-ciri\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -203,7 +218,7 @@ msgstr "" " # Tulis kandungan 'url' ke stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -219,12 +234,12 @@ msgstr "" " # Membuka menu ciri-ciri\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -240,7 +255,7 @@ msgstr "" " // Membuka fail dengan ikatan default\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -255,7 +270,7 @@ msgstr "" " // Membuka tetingkap baru dengan URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -270,7 +285,7 @@ msgstr "" " // Memulakan emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -286,106 +301,106 @@ msgstr "" " // Buka direktori semasa. Sangat memudahkan.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Klien KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Alatan arahan-baris untuk operasi telus-rangkaian" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Tulisganti destinasi jika telah wujud (untuk salin dan pindah)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL atau beberapa URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Sumber URL atau beberapa URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Destinasi URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Papar arahan yang ada" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Arahan (lihat --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Hujah untuk arahan" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Ralat Sintaks: Tidak cukup hujah\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Ralat Sintaks: Terlalu banyak hujah\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Ralat Sintaks: Arahan '%1' tidak diketahui\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ms/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ms/kmimetypefinder.po index 756686846b..62b0ca5b85 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ms/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ms/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-03-08 20:49+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ms/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ms/kstart.po index 522ba95925..67ad9820c3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ms/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ms/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-03-12 23:54+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -44,27 +44,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Arahan untuk laksanakan" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -74,14 +74,14 @@ msgstr "" "Alternatif kepada : fail desktop untuk memulakan. Servis D-Bus akan " "dipaparkan ke stdout" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "" "URL pilihan untuk menghantar , apabila penggunakan --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Tiada arahan ditentukan" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nb/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/nb/kcm_filetypes.po index cd2ad9f0a1..28cce68eae 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nb/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nb/kcm_filetypes.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2014-11-07 18:02+0100\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -176,12 +176,12 @@ msgstr "Legg til nytt etternavn" msgid "Extension:" msgstr "Etternavn:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Filtype %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Bruk innstillingene for gruppa «%1»" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nb/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/nb/kdesu.po index e832e5d875..2c42907594 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nb/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nb/kdesu.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2014-04-25 18:42+0200\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nb/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/nb/kioclient.po index ed256bc44e..a3b920a9ed 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nb/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nb/kioclient.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2014-04-25 18:46+0200\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "bjornst@skogkatt.homelinux.org" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Syntaks:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -47,7 +47,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -60,7 +60,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -72,7 +72,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -83,7 +83,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -94,7 +94,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -103,7 +103,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -112,7 +112,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -123,7 +123,15 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -132,7 +140,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -141,12 +149,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -155,7 +163,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -163,7 +171,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -174,7 +182,7 @@ msgstr "" " // Starter emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -183,22 +191,22 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO klient" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Kommandolinjeverktøy for handlinger gjennom nettverket" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -207,80 +215,80 @@ msgstr "" "Ikke-interaktiv bruk: ingen meldingsbokser. Hvis du ikke vl ha en grafisk " "tilkobling, så bruk --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Skriv over målet hvis det finnes (for kopier og flytt)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "fil eller URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url-er …" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Kilde-URL eller URL-er" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Mål-URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Vis tilgjengelige kommandoer" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Kommando (se --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "kommando" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenter for kommando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Syntaksfeil, for få argumenter\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Syntaksfeil, for mange argumenter\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Målet dit filer skal lastes ned" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Syntaksfeil, ukjent kommando «%2»\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nb/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/nb/kmimetypefinder.po index 2c6b9f39be..a35208e7b4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nb/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nb/kmimetypefinder.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2015-02-06 22:25+0100\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nb/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/nb/kstart.po index 8d42a4d519..3e20b928fc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nb/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nb/kstart.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-02-09 10:56+0100\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,37 +47,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997–2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Kommando som skal utføres" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "Valgfri URL som skal sendes til når --service brukes" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Ingen kommando oppgitt" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nds/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/nds/kcm_filetypes.po index a0b3372a2c..ff0be9b4a9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nds/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nds/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2010-11-25 07:43+0100\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" @@ -172,12 +172,12 @@ msgstr "Nieg Verwiedern tofögen" msgid "Extension:" msgstr "Verwiedern:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Dateityp %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Instellen för \"%1\"-Koppel övernehmen" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nds/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/nds/kdesu.po index 4677ec7ee2..50fb351d60 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nds/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nds/kdesu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2014-04-13 20:22+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nds/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/nds/kioclient.po index 5f7c531581..b9c12a708f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nds/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nds/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2014-04-13 20:26+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "s_dibbern@web.de" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Syntax:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # Maakt en Egenschappenmenü op\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -82,7 +82,7 @@ msgstr "" " # he automaatsch kennt. \"URL\" kann op en Dokment, man ok\n" " # op en .desktop-Datei oder en utföhrbor Programm wiesen.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -94,7 +94,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -116,7 +116,7 @@ msgstr "" " # keen angeven, warrt na en fraagt.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -134,7 +134,7 @@ msgstr "" " # Kopeert \"Born\" na \"Teel\".\n" " # \"Born\" dörv en List vun URLs wesen.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -151,7 +151,7 @@ msgstr "" "ut\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -168,7 +168,7 @@ msgstr "" "ut\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,22 @@ msgstr "" " # Maakt de URL weg.\n" " # \"URL\" dörv en List vun URLs wesen.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties \"URL\"\n" +" # Maakt en Egenschappenmenü op\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -202,7 +217,7 @@ msgstr "" " # Gifft den Inholt vun \"URL\" na de Standardutgaav ut\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -218,12 +233,12 @@ msgstr "" " # Maakt en Egenschappenmenü op\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -239,7 +254,7 @@ msgstr "" " // Maakt de Datei mit dat Standardprogramm op.\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -254,7 +269,7 @@ msgstr "" " // Maakt för de angeven URL en nieg Finster op\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -269,7 +284,7 @@ msgstr "" " // Röppt Emacs op\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -285,22 +300,22 @@ msgstr "" " // Maakt den aktuellen Orner op. Bannig kommood.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO-Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Konsoolwarktüüch för Akschonen över't Nettwark" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -309,80 +324,80 @@ msgstr "" "Stummbedrief: keen Mellendialogen. Wenn Du keen graafsche Verbinnen wullt, " "bruuk \"--platform offscreen\"." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Al vörhannen Teel överschrieven (för't Koperen un Verschuven)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Datei oder URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URLs..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Born-URL oder -URLs" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Teel-URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "URL" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Verföögbor Befehlen wiesen" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Befehl (kiek bi --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "Befehl" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenten för Befehl" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Syntax-Fehler, nich noog Argumenten\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Syntax-Fehler, to vele Argumenten\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Teel för't Daalladen" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1 Syntax-Fehler, Befehl \"%2\" nich begäng\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nds/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/nds/kmimetypefinder.po index 2636c1fb7a..7054617a9d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nds/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nds/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-02-02 02:29+0100\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nds/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/nds/kstart.po index 3127a145cd..de0d6ac1a1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nds/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nds/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2010-10-07 16:31+0200\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" @@ -44,27 +44,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Befehl, den Du opropen wullt" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -74,7 +74,7 @@ msgstr "" "Ansteed vun : Schriefdischdatei, de Du opropen wullt. De D-Bus-" "Deenst warrt na de Standardutgaav utgeven" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" @@ -82,7 +82,7 @@ msgstr "" "Köörfree: URL, de na wiedergeven warrt, wenn Du \"--service\" " "bruukst" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Keen Befehl angeven" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ne/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ne/kcm_filetypes.po index c365432c7f..f01568c152 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ne/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ne/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2007-11-05 13:33+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" @@ -182,13 +182,13 @@ msgstr "नयाँ विस्तार थप्नुहोस्" msgid "Extension:" msgstr "विस्तार:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "फाइल प्रकार %1 सम्पादन गर्नुहोस्" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' समूहका लागि सेटिङ प्रयोग गर्नुहोस्" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ne/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ne/kdesu.po index 164e897f18..630b3b4913 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ne/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ne/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2007-11-01 19:20+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ne/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ne/kioclient.po index e6b35ee29f..a66d294a31 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ne/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ne/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2007-08-21 11:55+0545\n" "Last-Translator: Nabin Gautam \n" "Language-Team: Nepali \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "वाक्य संरचना:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # गुण मेनु खोल्दछ\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -81,7 +81,7 @@ msgstr "" " # स्वचालित रूपले निर्धारण गरिन्छ । वास्तवमै यूआरएल\n" " # कागजातको यूआरएल, वा एउटा *.desktop फाइल हुन सक्छ ।\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -93,7 +93,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -115,7 +115,7 @@ msgstr "" " # एउटा यूआरएल अनुरोध गरिनेछ ।\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -135,7 +135,7 @@ msgstr "" " # 'src' यूआरएलको सूची हुनसक्छ ।\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -151,7 +151,7 @@ msgstr "" " # गुण मेनु खोल्दछ\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -167,7 +167,7 @@ msgstr "" " # गुण मेनु खोल्दछ\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -185,7 +185,22 @@ msgstr "" " # यूआरएल 'src' लाई 'dest' मा सार्दछ ।\n" " # 'src' कुनै यूआरएलको सूची हुनसक्छ ।\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" किओ क्लाइन्ट openProperties 'url'\n" +" # गुण मेनु खोल्दछ\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -201,7 +216,7 @@ msgstr "" " # गुण मेनु खोल्दछ\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -217,12 +232,12 @@ msgstr "" " # गुण मेनु खोल्दछ\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -238,7 +253,7 @@ msgstr "" " // फाइललाई पूर्वनिर्धारित बाइन्डिङसँग खोल्दछ\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -253,7 +268,7 @@ msgstr "" " // नयाँ सञ्झ्याललाई यूआरएलसँग खोल्दछ\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -268,7 +283,7 @@ msgstr "" " // इमाक्स सुरु गर्दछ\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -284,107 +299,107 @@ msgstr "" " // हालको डाइरेक्टरी खोल्दछ । धेरै सुविधायुक्त ।\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "किओ क्लाइन्ट" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "सञ्जाल पारदर्शी कार्यका लागि आदेश-लाइन उपकरण" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, fuzzy, kde-format #| msgid "Source url or urls" msgid "Source URL or URLs" msgstr "स्रोत यूआरएल वा यूआरएलहरू" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, fuzzy, kde-format #| msgid "Destination url" msgid "Destination URL" msgstr "गन्तव्य यूआरएल" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "उपलब्ध आदेश देखाउनुहोस्" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "आदेश (आदेश -- हेर्नुहोस्)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "आदेशका लागि तर्क" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "वाक्य संरचना त्रुटि: पर्याप्त तर्क छैन\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "वाक्य संरचना त्रुटि: अति धेरै तर्क\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "वाक्य संरचना त्रुटि: अज्ञात आदेश '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ne/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ne/kmimetypefinder.po index c700dc45c7..a07f72484d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ne/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ne/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2007-08-20 16:58+0545\n" "Last-Translator: Nabin Gautam \n" "Language-Team: Nepali \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ne/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ne/kstart.po index f278588907..a9d2c208ae 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ne/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ne/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2007-08-20 11:53+0545\n" "Last-Translator: Nabin Gautam \n" "Language-Team: Nepali \n" @@ -45,37 +45,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 माथियस इट्रिच (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "माथियस इट्रिच" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "डेभिड फउर" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "रिचार्ड जे, मोर" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "कार्यान्वयन गर्ने आदेश" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "आदेश निर्दिष्ट गरिएको छैन" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/nl/kbroadcastnotification.po index 2303613767..72e7db9942 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-05 13:46+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/nl/kcm_filetypes.po index 486b7ff4a2..fb965c914f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-16 12:35+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" @@ -171,12 +171,12 @@ msgstr "Nieuwe extensie toevoegen" msgid "Extension:" msgstr "Extensie:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Bestandstype %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Gebruikt instellingen van groep '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/nl/kde-inhibit.po index 99f0d78901..0161dc92e2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-12 12:20+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/nl/kdesu.po index df001d2990..72f4f4ce2d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-14 00:26+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/nl/kioclient.po index 58efcffb45..258fce630b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/kioclient.po @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# SPDX-FileCopyrightText: 2014, 2016, 2018, 2020, 2021, 2022, 2023 Freek de Kruijf +# SPDX-FileCopyrightText: 2014, 2016, 2018, 2020, 2021, 2022, 2023, 2025 Freek de Kruijf msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2023-10-06 11:44+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-10 13:34+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" "Language: nl\n" @@ -15,19 +15,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.08.1\n" +"X-Generator: Lokalize 25.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Freek de Kruijf - t/m 2022" +msgstr "Freek de Kruijf - t/m 2025" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "freekdekruijf@kde.nl" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "Gebruik:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -48,7 +48,7 @@ msgstr "" " # Opent een eigenschappendialoog van 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -68,7 +68,7 @@ msgstr "" " # 'url' kan de URL van een document zijn, een \n" " # *.desktop-bestand of een uitvoerbaar bestand.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -87,7 +87,7 @@ msgstr "" " # De korte versie 'kioclient mv' is ook beschikbaar.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -104,7 +104,7 @@ msgstr "" " # gegeven zal er om een URL-adres worden gevraagd.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -119,7 +119,7 @@ msgstr "" " # 'bron' mag een lijst van URL-adressen zijn.\n" " # De korte versie 'kioclient cp' is ook beschikbaar.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -131,7 +131,7 @@ msgstr "" " # Schrijft de inhoud van het bestand 'url' naar stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -143,7 +143,7 @@ msgstr "" " # Schrijft de inhoud van de map 'url' naar stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -158,7 +158,18 @@ msgstr "" " # 'url' mag een lijst van URL-adressen zijn.\n" " # De korte versie 'kioclient rm'is ook beschikbaar.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Opent een map op 'url'\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -170,7 +181,7 @@ msgstr "" " # Toont alle beschikbare informatie voor 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -182,12 +193,12 @@ msgstr "" " # Opent een basis programmastarter.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Voorbeelden:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -200,7 +211,7 @@ msgstr "" " // geassocieerd met dit mimetype\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -212,7 +223,7 @@ msgstr "" " // het schema ftp://\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -223,7 +234,7 @@ msgstr "" " // start het programma Emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -236,22 +247,22 @@ msgstr "" " // bestandsbeheerder. Erg handig.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Commandoregelprogramma voor netwerktransparante operaties" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Berichtvelden en andere gebruikelijke meldingen gebruiken" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -260,81 +271,81 @@ msgstr "" "Niet-interactief gebruik: geen berichtvelden. Als u geen grafische " "verbinding wilt, gebruik --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" "Bestemming overschrijven als deze bestaat (voor kopiëren en verplaatsten)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Bestand of URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URL's..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Bron-URL-adres(sen)" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL-adres van bestemming" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Beschikbare commando's tonen" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Commando (zie --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "commando" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenten voor commando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Syntaxisfout: te weinig argumenten\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Syntaxisfout: te veel argumenten\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Bestemming waar vanaf de bestanden te downloaden" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Syntaxisfout: '%2' is een onbekend commando\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/nl/kmimetypefinder.po index 8ba4c94f7e..84e2faba9c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-01 09:45+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/nl/kstart.po index 9c43e8aa0a..5efb56ba71 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-19 09:53+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" @@ -42,41 +42,41 @@ msgstr "Programma om toepassingen te starten" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Uit te voeren commando" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternatief voor : te starten desktop-bestandsnaam, bijv. org.kde." "kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "Optionele URL om door te geven aan de toepassing bij gebruik van --" "application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Geen commando opgegeven" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nl/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/nl/plasma-open-settings.po index 0e6a2a966a..05bc9f4a2d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nl/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nl/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-22 13:51+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/nn/kbroadcastnotification.po index 38274aadb1..095621b3fb 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/kbroadcastnotification.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-02-05 10:28+0100\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/nn/kcm_filetypes.po index 6dfaed3bba..4ede83c53b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/kcm_filetypes.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-27 14:21+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -172,12 +172,12 @@ msgstr "Legg til nytt etternamn" msgid "Extension:" msgstr "Etternamn:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Filtype %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Bruk innstillingane for gruppa «%1»" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/nn/kde-inhibit.po index fdbfd496e2..5904f632dc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/kde-inhibit.po @@ -4,10 +4,10 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-07-28 00:23+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/nn/kdesu.po index e506956e19..70bcd46887 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/kdesu.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-10-11 23:34+0100\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/nn/kioclient.po index f90308273c..4fbd4d6961 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/kioclient.po @@ -1,20 +1,19 @@ # Translation of kioclient to Norwegian Nynorsk # -# Karl Ove Hufthammer , 2007, 2008, 2010, 2015, 2016, 2019, 2020, 2023. # Eirik U. Birkeland , 2008, 2009. msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2023-03-10 22:06+0100\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2026-04-18 16:06+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.12.3\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" @@ -30,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "karl@huftis.org" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -39,7 +38,7 @@ msgstr "" "\n" "Syntaks:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -51,7 +50,7 @@ msgstr "" " # Opnar eigenskapsvindauge for «adresse»\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -70,7 +69,7 @@ msgstr "" " # «adresse» kan vera adressa til eit dokument, ei .desktop-fil,\n" " # eller ei programfil.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -88,7 +87,7 @@ msgstr "" " # Kortversjonen «kioclient mv» er òg tilgjengeleg.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -103,7 +102,7 @@ msgstr "" " # argumentet er utelate, vert det spurd om ei adresse.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -119,7 +118,7 @@ msgstr "" " # Kortversjonen «kioclient cp» er òg tilgjengeleg.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -131,7 +130,7 @@ msgstr "" " # Skriv innhaldet i fila på «adresse» til standard-ut.\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -143,7 +142,7 @@ msgstr "" " # Viser innhaldet i mappa «adresse» på standard-ut.\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -159,7 +158,17 @@ msgstr "" " # Kortversjonen «kioclient rm» er òg tilgjengeleg.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 «adresse»\n" +" # Opprettar ei mappe i «adresse»\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -171,7 +180,7 @@ msgstr "" " # Viser all tilgjengeleg informasjon for «adresse».\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -183,12 +192,12 @@ msgstr "" " # Opnar ein enkel programstartar.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Eksempel:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -201,7 +210,7 @@ msgstr "" " // er knytt til denne MIME-typen.\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -213,7 +222,7 @@ msgstr "" "\n" " // for ftp://-adresser.\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -224,7 +233,7 @@ msgstr "" " // Startar programmet emacs.\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -237,22 +246,22 @@ msgstr "" " // filhandsamar. Veldig praktisk.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO-klient" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Kommandolinjeverktøy for nettverkstransparente operasjonar" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Bruk meldingsvindauge og andre innebygde varslingsmetodar." -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -261,80 +270,80 @@ msgstr "" "Ikkje-interaktiv bruk: ingen meldingsvindauge. Viss du ikkje vil ha ei " "grafisk tilkopling, bruk «--platform offscreen»." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Overskriv målet viss det finst (for kopiering og flytting)." -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "fil eller adresse" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "adresser …" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Kjeldeadresse(r)" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Måladresse" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "adresse" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Vis tilgjengelege kommandoar." -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Kommando (sjå «--commands»)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "kommando" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argument til kommando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Syntaksfeil: for få argument\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Syntaksfeil: for mange argument\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Målet der filene skal lastast ned til" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Syntaksfeil: ukjend kommando «%2»\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/nn/kmimetypefinder.po index e09f55b9cb..03c174692b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/kmimetypefinder.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2018-01-25 20:52+0100\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/nn/kstart.po index a8bbb9b00a..ce8cb934fb 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/kstart.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-07-30 22:45+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,41 +45,41 @@ msgstr "Verktøy for å starta program" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997–2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Kommando som skal køyrast" # skip-rule: mellomrom-før -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternativ til : Namn på skrivebordsfila som skal startast. " "Eksempel: org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "Valfri adresse som skal sendast til programmet når du brukar «--application»." -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Ingen kommando oppgjeven" diff --git a/local/recipes/kde/kde-cli-tools/source/po/nn/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/nn/plasma-open-settings.po index 63d70b3fc8..26aa2e902b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/nn/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/nn/plasma-open-settings.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-09-18 20:02+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/oc/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/oc/kcm_filetypes.po index f15350ed7f..d7cc216bfc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/oc/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/oc/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2008-08-05 22:26+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) \n" "Language-Team: Occitan (lengadocian) \n" @@ -152,12 +152,12 @@ msgstr "" msgid "Extension:" msgstr "Extension :" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Utilisar la configuracion del grop \"%1\"" diff --git a/local/recipes/kde/kde-cli-tools/source/po/oc/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/oc/kdesu.po index 031d0d3a44..afeb9bdfc6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/oc/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/oc/kdesu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-08-05 22:26+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) \n" "Language-Team: Occitan (lengadocian) \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/oc/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/oc/kioclient.po index fb3e2692ae..e49a94f3f7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/oc/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/oc/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2008-08-05 22:26+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) \n" "Language-Team: Occitan (lengadocian) \n" @@ -28,14 +28,14 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" "Syntax:\n" msgstr "" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -44,7 +44,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -57,7 +57,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -69,7 +69,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -80,7 +80,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -91,7 +91,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -100,7 +100,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -109,7 +109,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -120,7 +120,15 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -129,7 +137,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -138,12 +146,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -152,7 +160,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -160,7 +168,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -168,7 +176,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -177,102 +185,102 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/oc/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/oc/kmimetypefinder.po index d7da73272b..df1023aa8a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/oc/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/oc/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-08-05 22:26+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) \n" "Language-Team: Occitan (lengadocian) \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/oc/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/oc/kstart.po index e60fdd006f..a00b9c9540 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/oc/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/oc/kstart.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2008-08-05 22:26+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) \n" "Language-Team: Occitan (lengadocian) \n" @@ -45,37 +45,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Instruccion d'executar" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/or/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/or/kdesu.po index de96814cdd..7948319351 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/or/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/or/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-02 11:47+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/or/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/or/kioclient.po index 7d409e44a0..0e12579c91 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/or/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/or/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2009-01-02 11:48+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" @@ -30,14 +30,14 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" "Syntax:\n" msgstr "" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -46,7 +46,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -59,7 +59,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -71,7 +71,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -82,7 +82,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -93,7 +93,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -102,7 +102,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -111,7 +111,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -122,7 +122,15 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -131,7 +139,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -140,12 +148,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -154,7 +162,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -162,7 +170,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -170,7 +178,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -179,102 +187,102 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/or/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/or/kmimetypefinder.po index 47d7dd30e3..ad105acbff 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/or/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/or/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-02 11:48+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/or/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/or/kstart.po index 290c7619ff..ee64944d5f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/or/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/or/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-01-02 11:49+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" @@ -45,37 +45,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pa/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/pa/kcm_filetypes.po index 6babd143d5..44e84ee8c3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pa/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pa/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-01-28 15:14-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -167,12 +167,12 @@ msgstr "ਨਵੀਂ ਇਕਸਟੈਨਸ਼ਨ ਸ਼ਾਮਿਲ" msgid "Extension:" msgstr "ਇਕਸਟੈਨਸ਼ਨ:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ਫਾਇਲ ਟਾਈਪ %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "ਗਰੁੱਪ '%1' ਲਈ ਸੈਟਿੰਗਾਂ ਨੂੰ ਵਰਤੋਂ" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pa/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/pa/kdesu.po index ccdd236055..e9047003b8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pa/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pa/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2018-06-22 21:19-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pa/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/pa/kioclient.po index 45a8a137bb..d9399e6576 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pa/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pa/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2024-01-29 22:58-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "aalam@punlinux.org" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "ਸੰਟੈਕਸ:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -49,7 +49,7 @@ msgstr "" " # Opens a properties dialog of 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -79,7 +79,7 @@ msgstr "" " # document, or it may be a *.desktop file.\n" " # 'url' can be an executable, too.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +91,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -113,7 +113,7 @@ msgstr "" " # a URL will be requested.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -131,7 +131,7 @@ msgstr "" " # Copies the URL 'src' to 'dest'.\n" " # 'src' may be a list of URLs.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -147,7 +147,7 @@ msgstr "" " # Lists the contents of the directory 'url' to stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -163,7 +163,7 @@ msgstr "" " # Lists the contents of the directory 'url' to stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -181,7 +181,23 @@ msgstr "" " # Removes the URL\n" " # 'url' may be a list of URLs.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Opens a properties dialog of 'url'\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -197,7 +213,7 @@ msgstr "" " # Writes out the contents of 'url' to stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -213,12 +229,12 @@ msgstr "" " # Opens a properties menu\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** ਮਿਸਾਲਾਂ:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -234,7 +250,7 @@ msgstr "" " // Opens the file with default binding\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -249,7 +265,7 @@ msgstr "" " // Opens new window with URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -264,7 +280,7 @@ msgstr "" " // Starts emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -280,102 +296,102 @@ msgstr "" " // Opens the current directory. Very convenient.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO ਕਲਾਂਇਟ" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "ਨੈੱਟਵਰਕ-ਟਰਾਂਸਪੇਰੈਟ ਓਪਰੇਸ਼ਨਾਂ ਲਈ ਕਮਾਂਡ ਲਾਇਨ ਟੂਲ" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "ਟਿਕਾਣੇ ਉੱਤੇ ਲਿਖੋ, ਜੇ ਮੌਜੂਦ ਹੋਵੇ (ਕਾਪੀ ਕਰਨ ਤੇ ਭੇਜਣ ਲਈ)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "ਫਾਇਲ ਜਾਂ URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "urls..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "ਸਰੋਤ URL ਜਾਂ URLs" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "ਟਿਕਾਣਾ URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "ਉਪਲੱਬਧ ਕਮਾਂਡ ਵੇਖਾਓ" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "ਕਮਾਂਡ (--commands ਵੇਖੋ)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "ਕਮਾਂਡ" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "ਕਮਾਂਡ ਲਈ ਆਰਗੂਮੈਂਟ" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: ਸੰਟੈਕਸ ਗਲਤੀ, ਲੋੜੀਦੇ ਆਰਗੂਮੈਂਟ ਨਹੀਂ\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: ਸੰਟੈਕਸ ਗਲਤੀ, ਬਹੁਤ ਜ਼ਿਆਦਾ ਆਰਗੂਮੈਂਟ ਹਨ\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "ਟਿਕਾਣਾ, ਜਿੱਥੇ ਫਾਇਲਾਂ ਡਾਊਨਲੋਡ ਕਰਨੀਆਂ ਹਨ" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: ਸੰਟੈਕਸ ਗਲਤੀ, ਅਣਜਾਣ ਕਮਾਂਡ '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pa/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/pa/kmimetypefinder.po index 81774175fe..ae51bb889b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pa/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pa/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-03 14:00-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pa/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/pa/kstart.po index f9f234b8a7..21c1ad8d7f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pa/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pa/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2018-01-07 21:32-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -43,37 +43,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) ੧੯੯੭-੨੦੦੦ Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "ਮੈਥੂਸ ਇੱਟਰਿਚ" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "ਡੇਵਿਡ ਫਾਉਰੀ" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "ਰਿਚਰਡ ਜੇ. ਮੂਰੇ" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "ਚਲਾਉਣ ਲਈ ਕਮਾਂਡ" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "ਕੋਈ ਕਮਾਂਡ ਨਹੀਂ ਦਿੱਤੀ" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/pl/kbroadcastnotification.po index dcc4f9289b..3cbcb8e00b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-22 08:45+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/pl/kcm_filetypes.po index 6888609c03..5cad85c030 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/kcm_filetypes.po @@ -1,6 +1,6 @@ # translation of filetypes.po to Polish # translation of filetypes.po to -# Version: $Revision: 1695993 $ +# Version: $Revision: 1738409 $ # Translated by Artur Skura # minor updates by Jacek Stolarczyk # Latest translation by Daniel Koć @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-20 08:13+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -176,12 +176,12 @@ msgstr "Dodaj nowe rozszerzenie" msgid "Extension:" msgstr "Rozszerzenie:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Rodzaj pliku %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Użyj ustawień dla grupy '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/pl/kde-inhibit.po index 630ef4ae7b..042d0b564d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-23 12:03+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/pl/kdesu.po index f0b4ecf3b9..3326def3a4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/kdesu.po @@ -1,5 +1,5 @@ # translation of kdesu.po to Polish -# Version: $Revision: 1690989 $ +# Version: $Revision: 1723076 $ # Michal Rudolf , 2003, 2004, 2005, 2006, 2008, 2009. # Robert Gomulka , 2006. # Łukasz Wojniłowicz , 2011, 2014, 2015, 2016, 2017. @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-12-09 07:42+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/pl/kioclient.po index 9b917aa243..ff9b3867a6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/kioclient.po @@ -1,23 +1,24 @@ # translation of kioclient.po to # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# # Marta Rybczyńska , 2007, 2008, 2009, 2010, 2013. -# Łukasz Wojniłowicz , 2011, 2012, 2014, 2016, 2019, 2020, 2021, 2022. +# SPDX-FileCopyrightText: 2011, 2012, 2014, 2016, 2019, 2020, 2021, 2022, 2025 Łukasz Wojniłowicz +# msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-06-04 09:34+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-26 19:20+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" -"Language-Team: Polish \n" +"Language-Team: pl\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 25.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -29,7 +30,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "lukasz.wojnilowicz@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +39,7 @@ msgstr "" "\n" "Składnia:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -50,7 +51,7 @@ msgstr "" " # Otwiera okno właściwości dla 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -69,7 +70,7 @@ msgstr "" " # 'url' może być adresem URL dokumentu, pliku\n" " # *.desktop lub pliku wykonywalnego.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -88,7 +89,7 @@ msgstr "" " # Dostępna jest również skrócona wersja 'kioclient mv'.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -105,7 +106,7 @@ msgstr "" " # to zostanie wywołany adres URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -121,7 +122,7 @@ msgstr "" " # Dostępna jest również skrócona wersja 'kioclient cp'.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -133,7 +134,7 @@ msgstr "" " # Wypisuje zawartość pliku 'url' na standardowym wyjściu\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -145,7 +146,7 @@ msgstr "" " # Wypisuje zawartość katalogu 'url' na standardowym wyjściu\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -161,7 +162,17 @@ msgstr "" " # Dostępna jest również skrócona wersja 'kioclient rm'.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Tworzy katalog pod adresem 'url'\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -173,7 +184,7 @@ msgstr "" " # Pokazuje wszystkie dostępne szczegóły dla 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -185,12 +196,12 @@ msgstr "" " # Otwiera podstawowego otwieracza aplikacji\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Przykłady:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -203,7 +214,7 @@ msgstr "" " // skojarzonym z danym rodzajem mime\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -214,7 +225,7 @@ msgstr "" " // Otwiera adres URL w domyślnej aplikacji dla ftp:// scheme\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -225,7 +236,7 @@ msgstr "" " // Uruchamia Emacsa\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -238,22 +249,22 @@ msgstr "" " // do zarządzania plikami. Bardzo wygodne.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Klient KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Narzędzie wiersza poleceń do przezroczystych operacji sieciowych" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Użyj okien z wiadomością i innych natywnych powiadomień" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -262,80 +273,80 @@ msgstr "" "Nieinteraktywne użycie: bez okien z wiadomościami. Jeśli nie chcesz " "połączenia graficznego, użyj --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Zastąp cel, jeśli istnieje (dla kopiowania i przenoszenia)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "plik lub adres URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "adresy url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Źródłowy adres(y) URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Docelowy adres URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "adres url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Pokaż dostępne polecenia" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Polecenie (patrz --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "polecenie" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenty dla polecenia" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Błąd składni, za mało argumentów\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Błąd składni, za dużo argumentów\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Miejsce docelowe pobieranych plików" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Błąd składni, nieznane polecenie '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/pl/kmimetypefinder.po index a934e85f39..c054fda68b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-21 07:19+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/pl/kstart.po index e2861485db..b929029691 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/kstart.po @@ -1,6 +1,6 @@ # translation of kstart.po to Polish # translation of kstart.po to -# Version: $Revision: 1681059 $ +# Version: $Revision: 1739915 $ # Piotr Roszatycki , 1999-2000. # Michał Rudolf , 2002. # Michal Rudolf , 2003, 2004, 2005, 2009. @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-24 08:03+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -47,39 +47,39 @@ msgstr "Narzędzie do uruchamiania aplikacji" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Polecenie do wykonania" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Zamiennie dla : plik pulpitu do uruchomienia, np. org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "Opcjonalny adres URL do przekazania aplikacji przy użyciu --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nie określono polecenia" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pl/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/pl/plasma-open-settings.po index 21972ab09a..ebefe742f3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pl/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pl/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-08-01 07:25+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/pt/kbroadcastnotification.po index 515e329065..0bc8506cbc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-06 12:00+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/pt/kcm_filetypes.po index 6d7d960502..29623b2818 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt/kcm_filetypes.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2019-01-12 16:55+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -173,12 +173,12 @@ msgstr "Adicionar uma Extensão" msgid "Extension:" msgstr "Extensão:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tipo de ficheiro %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Usar a configuração do grupo '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/pt/kdesu.po index f8dd839978..ed16d76c64 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt/kdesu.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-11 16:29+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/pt/kioclient.po index 8ba822e59e..52eb291947 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt/kioclient.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2022-04-20 18:00+0100\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: pt \n" @@ -25,7 +25,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "zepires@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -34,7 +34,7 @@ msgstr "" "\n" "Sintaxe:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -46,7 +46,7 @@ msgstr "" " # Abre um menu de propriedades do 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -66,7 +66,7 @@ msgstr "" " # poderá ser um ficheiro '*.desktop' ou ainda ser um " "executável.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -85,7 +85,7 @@ msgstr "" " # Também está disponível a versão curta 'kioclient mv'.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -101,7 +101,7 @@ msgstr "" " # presente, será pedido um URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -115,7 +115,7 @@ msgstr "" " # Copia o URL de 'origem' para o 'destino'.\n" " # A 'origem' poderá ser uma lista de URLs.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -127,7 +127,7 @@ msgstr "" " # Apresenta o conteúdo da pasta 'url' no STDOUT\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -139,7 +139,7 @@ msgstr "" " # Apresenta o conteúdo da pasta 'url' no STDOUT\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -154,7 +154,23 @@ msgstr "" " # O 'url' pode ser uma lista de URLs.\n" " # Também está disponível a versão curta 'kioclient rm'.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Abre um menu de propriedades do 'url'\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -166,7 +182,7 @@ msgstr "" " # Mostra toda a informação disponível do 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -178,12 +194,12 @@ msgstr "" " # Abre um lançador de aplicações básico.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Exemplos:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -196,7 +212,7 @@ msgstr "" " // com este tipo MIME\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -207,7 +223,7 @@ msgstr "" " // Abre o URL com o tratamento predefinido do esquema FTP\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -218,7 +234,7 @@ msgstr "" " // Inicia o emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -231,23 +247,23 @@ msgstr "" " // Muito conveniente.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Cliente do KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" "Uma ferramenta da linha de comandos para as operações transparentes na rede" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Usar as janelas de mensagens e outras notificações nativas" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -256,80 +272,80 @@ msgstr "" "Uso não-interactivo: sem janelas de mensagens. Se não quiser uma ligação " "gráfica, use a opção '--platform offscreen'" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Substituir o destino, se existir (ao copiar e mover)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "ficheiro ou URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URL's..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL ou URLs de origem" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL de destino" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "URL" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Mostrar os comandos disponíveis" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Comando (ver o '--commands')" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "comando" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumentos do comando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Erro de sintaxe: os argumentos são insuficientes\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Erro de sintaxe: os argumentos estão em excesso\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "O destino para onde transferir os ficheiros" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Erro de sintaxe: o comando '%2' é desconhecido\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/pt/kmimetypefinder.po index bde5b0542e..606a84cd4d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt/kmimetypefinder.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-01 10:29+0100\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: pt \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/pt/kstart.po index 62052acee8..cfc13e9fe9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt/kstart.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-02-15 16:19+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -41,39 +41,39 @@ msgstr "Utilitário para lançar aplicações" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Comando a executar" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "Alternative to : desktop file to start." msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "Alternativa ao : ficheiro 'desktop' a iniciar." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "URL opcional a passar ao , ao usar o '--service'" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Não foi especificado nenhum comando" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/pt/plasma-open-settings.po index e9c39c22e2..7133609f4f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt/plasma-open-settings.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-24 23:44+0100\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kbroadcastnotification.po index 131c129b19..368e6f671f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-09-14 16:13-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Portuguese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kcm_filetypes.po index e636b4f86b..476ae1ed44 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kcm_filetypes.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kcm5_filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-31 14:55-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Brazilian Portuguese \n" @@ -181,12 +181,12 @@ msgstr "Adicionar nova extensão" msgid "Extension:" msgstr "Extensão:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tipo de arquivo %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Usar as configurações do grupo '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kde-inhibit.po index 765c710301..0ee3c904af 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-01-11 20:52-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Brazilian Portuguese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kdesu.po index 838ef9c493..92e1eb381f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kdesu.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-12 09:48-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Portuguese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kioclient.po index eff57f641f..fc4ac07135 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kioclient.po @@ -5,20 +5,21 @@ # Diniz Bortolotto , 2007, 2008. # André Marcelo Alvarenga , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2019. # Luiz Fernando Ranghetti , 2010, 2016, 2020, 2021, 2022. +# SPDX-FileCopyrightText: 2025 Geraldo Simiao msgid "" msgstr "" "Project-Id-Version: kioclient5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-04-13 11:07-0300\n" -"Last-Translator: Luiz Fernando Ranghetti \n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-30 19:26-0300\n" +"Last-Translator: Geraldo Simiao \n" +"Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 20.04.2\n" +"X-Generator: Lokalize 25.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -30,7 +31,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "alvarenga@kde.org" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -39,7 +40,7 @@ msgstr "" "\n" "Sintaxe:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -51,7 +52,7 @@ msgstr "" " # Abre um diálogo de propriedades da 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -71,7 +72,7 @@ msgstr "" "desktop\n" " # ou um executável.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -90,7 +91,7 @@ msgstr "" " # A versão curta 'kioclient mv' também está disponível.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -107,7 +108,7 @@ msgstr "" " # uma URL será solicitada.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -123,7 +124,7 @@ msgstr "" " # A versão curta de 'kioclient cp' também está disponível.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -135,7 +136,7 @@ msgstr "" " # Lista o conteúdo do arquivo 'url' na saída padrão\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -147,7 +148,7 @@ msgstr "" " # Lista o conteúdo da pasta 'url' na saída padrão\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -163,7 +164,18 @@ msgstr "" " # A versão curta de 'kioclient rm' também está disponível.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Cria um diretório na 'url'\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -175,7 +187,7 @@ msgstr "" " # Mostra todas as informações disponíveis da 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -187,12 +199,12 @@ msgstr "" " # Abre um lançador de aplicativos básico.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Exemplos:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -205,7 +217,7 @@ msgstr "" " // com este tipo MIME\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -216,7 +228,7 @@ msgstr "" " // Abre a URL com o manipulador padrão para o esquema ftp://\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -227,7 +239,7 @@ msgstr "" " // Inicia o Emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -240,23 +252,23 @@ msgstr "" " // padrão. Muito conveniente.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Cliente do KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" "Uma ferramenta de linha de comando para operações transparentes na rede" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Usar as caixas de mensagens e outras notificações nativas" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -265,80 +277,80 @@ msgstr "" "Uso não-interativo: sem caixas de mensagem. Se não quiser uma conexão " "gráfica, use a opção --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Sobrescrever destino se ele existir (para copiar e mover)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "arquivo ou URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URLs..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL ou URLs de origem" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL de destino" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "URL" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Mostrar os comandos disponíveis" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Comando (ver --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "comando" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Parâmetros para o comando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Erro de sintaxe - parâmetros insuficientes\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Erro de sintaxe - excesso de parâmetros\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "O destino para onde baixar os arquivos" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Erro de sintaxe - comando '%2' desconhecido\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kmimetypefinder.po index 0f3610ea74..6824edf375 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kmimetypefinder.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-07-28 11:56-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Portuguese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kstart.po index ea254f3bfc..082449e471 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/kstart.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-24 02:44-0300\n" "Last-Translator: Geraldo Simiao \n" "Language-Team: Brazilian Portuguese \n" @@ -50,28 +50,28 @@ msgstr "Utilitário para iniciar aplicativos" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Comando a executar" # É necessário quebra de linha para não misturar a mensagem em um terminal com 80 caracteres. -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" @@ -80,12 +80,12 @@ msgstr "" # É necessário quebra de linha para não misturar a mensagem em um terminal com 80 caracteres. # Não traduzir -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "URL opcional para passar ao aplicativo, quando usar o --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nenhum comando foi especificado" diff --git a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/plasma-open-settings.po index f803bf90d3..db33e1048e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/pt_BR/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/pt_BR/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-22 15:07-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Brazilian Portuguese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ro/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ro/kbroadcastnotification.po index 9bffc05d0d..64e2188e5e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ro/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ro/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-06-18 18:28+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ro/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ro/kcm_filetypes.po index 7ba2638d3a..8141c850b5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ro/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ro/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2020-09-19 15:52+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian\n" @@ -173,12 +173,12 @@ msgstr "Adaugă o extensie nouă" msgid "Extension:" msgstr "Extensie:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tip fișier %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Folosește configurările grupului „%1”" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ro/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ro/kdesu.po index 845cd985a9..bb1205b4c2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ro/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ro/kdesu.po @@ -1,26 +1,25 @@ # Traducerea kdesu.po în Română # translation of kdesu.po to Romanian -# translation of @PACKAGE.po to @LANGUAGE # Copyright (C) 2003, 2004, 2005, 2008 Free Software Foundation, Inc. # Claudiu Costin , 2003, 2004, 2005. -# Sergiu Bivol , 2008. -# Sergiu Bivol , 2008, 2009. +# Sergiu Bivol , 2008, 2009, 2023. # Cristian Oneț , 2011. # msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" -"PO-Revision-Date: 2011-01-06 23:20+0200\n" -"Last-Translator: Cristian Oneț \n" -"Language-Team: Romanian \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2023-06-18 18:29+0100\n" +"Last-Translator: Sergiu Bivol \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" +"X-Generator: Lokalize 21.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -139,7 +138,7 @@ msgstr "" #: kdesu.cpp:128 #, kde-format msgid "Embed into a window" -msgstr "" +msgstr "Încorporează într-o fereastră" #: kdesu.cpp:155 #, kde-format @@ -147,10 +146,9 @@ msgid "Cannot execute command '%1'." msgstr "Nu s-a putut executa comanda '%1'." #: kdesu.cpp:158 -#, fuzzy, kde-format -#| msgid "Cannot execute command '%1'." +#, kde-format msgid "Cannot execute command '%1'. It contains invalid characters." -msgstr "Nu s-a putut executa comanda '%1'." +msgstr "Nu s-a putut executa comanda „%1”. Aceasta conține caractere nevalide." #: kdesu.cpp:232 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/ro/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ro/kioclient.po index 63f045fa8b..b738a1ed28 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ro/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ro/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2023-06-18 18:32+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "sergiu@cip.md" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "Sintaxă:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -49,7 +49,7 @@ msgstr "" " # Deschide un dialog cu proprietăți pentru „url”\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -79,7 +79,7 @@ msgstr "" " # poate fi un fișier *.desktop.\n" " # 'url' poate fi executabil la rândul său.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +91,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -113,7 +113,7 @@ msgstr "" " # va fi cerut un URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -131,7 +131,7 @@ msgstr "" " # Copiază URL-ul 'src' la 'dest'.\n" " # 'src' poate fi o listă de URL-uri.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -147,7 +147,7 @@ msgstr "" " # Scrie conținutul dosarului „url” la stdout\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -163,7 +163,7 @@ msgstr "" " # Scrie conținutul dosarului „url” la stdout\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -181,7 +181,23 @@ msgstr "" " # Elimină URL-ul\n" " # 'url' poate fi o listă de URL-uri.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Deschide un dialog cu proprietăți pentru „url”\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -197,7 +213,7 @@ msgstr "" " # Afișează conținutul 'url' la stdout\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -209,12 +225,12 @@ msgstr "" " # Deschide un lansator de aplicații simplu\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -230,7 +246,7 @@ msgstr "" " // Deschide fișierul cu asociereaa implicită\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -245,7 +261,7 @@ msgstr "" " // Deschide o fereastră nouă cu URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -256,7 +272,7 @@ msgstr "" " // Lansează emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -272,103 +288,103 @@ msgstr "" " // Deschide directorul curent. Foarte comod.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Client KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" "Instrument în linie de comandă pentru operații transparente pentru rețea" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Suprascrie destinația dacă există (pentru copiere și mutare)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "fișier sau URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url-uri…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL sau URL-urile sursă" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL-ul destinație" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Arată comenzile disponibile" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Comandă (vezi --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "comandă" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumente pentru comandă" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: eroare de sintaxă: argumente insuficiente\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: eroare de sintaxă: prea multe argumente\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: eroare de sintaxă: comandă „%2” necunoscută\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ro/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ro/kmimetypefinder.po index 822501f8c3..c8d373a021 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ro/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ro/kmimetypefinder.po @@ -2,58 +2,52 @@ # translation of kmimetypefinder to Romanian # Copyright (C) 2008 This_file_is_part_of_KDE # This file is distributed under the same license as the kmimetypefinder package. -# Laurenţiu Buzdugan , 2008". -# Sergiu Bivol , 2008. -# Sergiu Bivol , 2009. +# Laurenţiu Buzdugan , 2008. +# Sergiu Bivol , 2009, 2023. # msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" -"PO-Revision-Date: 2009-02-27 14:50+0200\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2023-06-18 18:23+0100\n" "Last-Translator: Sergiu Bivol \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" +"X-Generator: Lokalize 21.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "" +msgstr "Sergiu Bivol" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "" +msgstr "sergiu@cip.md" #: kmimetypefinder.cpp:26 -#, fuzzy, kde-format -#| msgid "MimeType Finder" +#, kde-format msgid "MIME Type Finder" msgstr "Căutătorul de tipuri MIME" #: kmimetypefinder.cpp:27 -#, fuzzy, kde-format -#| msgid "Gives the mimetype for a given file" +#, kde-format msgid "Gives the MIME type for a given file" msgstr "Întoarce tipul MIME al unui fișier dat" #: kmimetypefinder.cpp:33 -#, fuzzy, kde-format -#| msgid "Use only the file content for determining the mimetype." +#, kde-format msgid "Use only the file content for determining the MIME type." -msgstr "Utilizează numai conținutul fișierului pentru a determina tipul MIME." +msgstr "Folosește numai conținutul fișierului pentru a determina tipul MIME." #: kmimetypefinder.cpp:35 -#, fuzzy, kde-format -#| msgid "" -#| "Whether use the file name only for determining the mimetype. Not used if -" -#| "c is specified." +#, kde-format msgid "" "Whether use the file name only for determining the MIME type. Not used if -c " "is specified." diff --git a/local/recipes/kde/kde-cli-tools/source/po/ro/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ro/kstart.po index 967b3f473e..27fb23143a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ro/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ro/kstart.po @@ -1,26 +1,24 @@ # Traducerea kstart.po în Română -# translation of kstart.po to # translation of kstart.po to Romanian -# translation of @PACKAGE.po to @LANGUAGE # Copyright (C) 2003, 2004, 2005, 2008 Free Software Foundation, Inc. # Claudiu Costin , 2003, 2004, 2005. -# Sergiu Bivol , 2008. -# Sergiu Bivol , 2008, 2009. +# Sergiu Bivol , 2008, 2009, 2023. # msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" -"PO-Revision-Date: 2009-04-25 17:57+0300\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" +"PO-Revision-Date: 2023-06-18 18:29+0100\n" "Last-Translator: Sergiu Bivol \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" +"X-Generator: Lokalize 21.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -40,34 +38,34 @@ msgstr "KStart" #: kstart.cpp:79 #, kde-format msgid "Utility to launch applications" -msgstr "" +msgstr "Utilitar pentru lansarea aplicațiilor" #: kstart.cpp:81 #, kde-format msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Comanda de executat" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -77,13 +75,13 @@ msgstr "" "Alternativă la : fișier desktop de pornit. Serviciul D-Bus va fi " "tipărit pe ieșirea standard" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "URL opțional de transmis , la utilizarea --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nu ați specificat o comandă" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ro/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ro/plasma-open-settings.po index f961cd2fdb..c8aaaaec41 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ro/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ro/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-02-04 00:50+0000\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ru/kbroadcastnotification.po index 25de7e5611..5ac7bfa19a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-21 18:43+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ru/kcm_filetypes.po index 19ec778bc9..0c61a70289 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/kcm_filetypes.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-01-04 21:51+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -185,12 +185,12 @@ msgstr "Добавить новое расширение" msgid "Extension:" msgstr "Расширение:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Тип файла %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Использовать настройку для группы «%1»" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ru/kde-inhibit.po index d74375009b..72fdbc30be 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-02-07 10:49+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ru/kdesu.po index e8b7767f6e..9891f01e88 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/kdesu.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-29 04:50+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ru/kioclient.po index d931436aa5..46eac47f94 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/kioclient.po @@ -7,21 +7,21 @@ # Nick Shaforostoff , 2009. # Yuri Efremov , 2013. # Alexander Lakhin , 2013. -# Alexander Yavorsky , 2019, 2020, 2021. +# SPDX-FileCopyrightText: 2019, 2020, 2021, 2025 Alexander Yavorsky # Olesya Gerasimenko , 2022. msgid "" msgstr "" "Project-Id-Version: kioclient.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-08-17 17:03+0300\n" -"Last-Translator: Olesya Gerasimenko \n" -"Language-Team: Basealt Translation Team\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-18 18:11+0300\n" +"Last-Translator: Alexander Yavorsky \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 22.04.3\n" +"X-Generator: Lokalize 25.07.80\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Environment: kde\n" @@ -40,7 +40,7 @@ msgid "Your emails" msgstr "" "skull@kde.ru,shafff@ukr.net,aspotashev@gmail.com,translation-team@basealt.ru" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -49,7 +49,7 @@ msgstr "" "\n" "Использование:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -61,7 +61,7 @@ msgstr "" " # Открыть диалог свойств «url»\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -80,7 +80,7 @@ msgstr "" " # В качестве «url» можно указать как адрес реального файла,\n" " # так и файл .desktop (значок для файла) или исполняемый файл.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -99,7 +99,7 @@ msgstr "" " # Также доступна краткая версия, «kioclient mv».\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -115,7 +115,7 @@ msgstr "" " # в котором можно его указать.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -131,7 +131,7 @@ msgstr "" " # Также доступна краткая версия, «kioclient mv».\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -143,7 +143,7 @@ msgstr "" " # Вывести содержимое файла «url» в стандартный поток вывода\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -155,7 +155,7 @@ msgstr "" " # Вывести содержимое каталога «url» в стандартный поток вывода\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -171,7 +171,18 @@ msgstr "" " # Также доступна краткая версия, «kioclient mv».\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 «url»\n" +" # Создаёт каталог в «url»\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -183,7 +194,7 @@ msgstr "" " # Показать всю доступную информацию для «url»\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -195,12 +206,12 @@ msgstr "" " # Открыть диалог выбора приложения\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Примеры:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -213,7 +224,7 @@ msgstr "" " // с этим типом MIME\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -225,7 +236,7 @@ msgstr "" "scheme\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -236,7 +247,7 @@ msgstr "" " // Запустить Emacs.\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -249,24 +260,24 @@ msgstr "" " // диспетчере файлов. Очень удобно.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Клиент KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Консольная программа для локальных и сетевых операций" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" "Использовать диалоговые окна с сообщениями и другие способы доставки " "уведомлений." -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -276,80 +287,80 @@ msgstr "" "показаны. Для запуска без подключения к графической подсистеме используйте " "«--platform offscreen»." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Заменять существующие файлы (при копировании и перемещении)." -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "файл или URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "адреса..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Один или несколько адресов URL источника" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Адрес URL назначения" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "адрес" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Показать доступные команды." -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Команда (список доступных можно получить через параметр --commands)." -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "команда" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Аргументы для команды." -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: ошибка синтаксиса (недостаточно аргументов)\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: ошибка синтаксиса (слишком много аргументов)\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Адрес, по которому следует сохранить полученные файлы" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: ошибка синтаксиса (неизвестная команда «%2»)\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ru/kmimetypefinder.po index b31c0d6a5d..759d6ada27 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-14 13:08+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ru/kstart.po index 729dc56042..7540964620 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/kstart.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-02-07 10:45+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -55,41 +55,41 @@ msgstr "Инструмент для запуска приложений" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© Matthias Ettrich (ettrich@kde.org), 1997-2000" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Ричард Дж. Мур (Richard J. Moore)" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Выполнить команду." -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Альтернатива вызова команды — запуск файла .desktop, например: org." "kde.kate." -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "Дополнительный URL, передаваемый приложению при использовании параметра --" "application." -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Команда не определена" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ru/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ru/plasma-open-settings.po index bd09324271..74b648eb7d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ru/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ru/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-08-01 12:48+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sa/kbroadcastnotification.po index 5f50a7736e..05e407f9ad 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/kbroadcastnotification.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sa/kcm_filetypes.po index dad395297e..4a3eec0187 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" @@ -166,12 +166,12 @@ msgstr "New Extension योजयतु" msgid "Extension:" msgstr "विस्तार:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "सञ्चिकाप्रकारः %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' समूहस्य कृते सेटिङ्ग्स् उपयुज्यताम्" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/sa/kde-inhibit.po index 56660f530b..f0b700708e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/kde-inhibit.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-20 12:25+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sa/kdesu.po index f0d3174734..4684305ca0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sa/kioclient.po index f40eba836a..41f6e96c11 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "skkalwar999@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "वाक्य रचना : १.\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -50,7 +50,7 @@ msgstr "" " # 'url' इत्यस्य गुणसंवादं उद्घाटयति ।\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -70,7 +70,7 @@ msgstr "" " # 'url' दस्तावेजस्य URL, *.desktop सञ्चिका, .\n" " # अथवा कार्यान्वयनीयः ।\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -88,7 +88,7 @@ msgstr "" " # 'kioclient mv' इति लघुसंस्करणम् अपि उपलभ्यते ।\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -104,7 +104,7 @@ msgstr "" " # एकं URL अनुरोधितं भविष्यति।\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -120,7 +120,7 @@ msgstr "" " # 'kioclient cp' इति लघुसंस्करणम् अपि उपलभ्यते ।\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -132,7 +132,7 @@ msgstr "" " # 'url' सञ्चिकायाः सामग्रीं मानकनिर्गमं प्रति मुद्रयति\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -144,7 +144,7 @@ msgstr "" " # 'url' इति निर्देशिकायाः सामग्रीं stdout मध्ये सूचीबद्धं करोति\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -160,7 +160,23 @@ msgstr "" " # 'kioclient rm' इति लघुसंस्करणम् अपि उपलभ्यते ।\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'.\n" +" # 'url' इत्यस्य गुणसंवादं उद्घाटयति ।\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -172,7 +188,7 @@ msgstr "" " # 'url' कृते उपलब्धानि सर्वाणि सूचनानि दर्शयति।\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -184,12 +200,12 @@ msgstr "" " # एकं मूलभूतं अनुप्रयोगप्रक्षेपकं उद्घाटयति\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** उदाहरणानि : १.\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -202,7 +218,7 @@ msgstr "" " // अस्मिन् MimeType इत्यनेन सह\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -213,7 +229,7 @@ msgstr "" " // ftp:// योजनायाः पूर्वनिर्धारित-हन्डलर-सहितं URL उद्घाटयति\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -224,7 +240,7 @@ msgstr "" " // emacs आरभते\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -237,22 +253,22 @@ msgstr "" " // सञ्चिकाप्रबन्धकः। अतीव सुविधाजनकम्।\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "जाल-पारदर्शक-सञ्चालनानां कृते आदेश-पङ्क्ति-उपकरणम्" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "सन्देशपेटिकाः अन्ये च देशीसूचनाः उपयुज्यताम्" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -261,80 +277,80 @@ msgstr "" "अ-अन्तरक्रियाशीलः उपयोगः : सन्देशपेटिकाः नास्ति । यदि भवान् चित्रात्मकं संयोजनं न इच्छति " "तर्हि --platform offscreen इत्यस्य उपयोगं कुर्वन्तु" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "गन्तव्यं यदि अस्ति तर्हि अधिलेखयन्तु (प्रतिलिपिं चालयितुं च)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "सञ्चिका अथवा URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "urls..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "स्रोतः URL अथवा URLs" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "गन्तव्यस्थानस्य URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "उपलब्धानि आदेशानि दर्शयन्तु" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "आदेशः (द्रष्टव्यम् --आदेशाः)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "आदेश" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "आज्ञार्थं तर्काः" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: वाक्यविन्यासदोषः, पर्याप्ताः तर्काः नास्ति\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: वाक्यविन्यासदोषः, अत्यधिकाः तर्काः\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "गन्तव्यं यत्र सञ्चिकाः अवतरणं कर्तव्यम्" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: वाक्यविन्यासदोषः, अज्ञातः आदेशः '%2' ।\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sa/kmimetypefinder.po index 4ee81fa48e..3763dffcb0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sa/kstart.po index fb5cc79a26..10d8ff447c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" @@ -44,38 +44,38 @@ msgstr "अनुप्रयोगानाम् आरम्भार्थ msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 मथियस एट्रिच (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "मथियस एट्रिच्" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "डेविड फौरे" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "रिचर्ड जे मूर" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "निष्पादयितुं आदेशः" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" " इत्यस्य विकल्पः: आरम्भार्थं डेस्कटॉप् सञ्चिकानाम, उदा. org.kde.kate इति" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "--application इत्यस्य उपयोगं कुर्वन् अनुप्रयोगाय पारयितुं वैकल्पिकं URL" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "न आदेशः निर्दिष्टः" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sa/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/sa/plasma-open-settings.po index 73d9806097..6ebc353d3e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sa/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sa/plasma-open-settings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/se/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/se/kcm_filetypes.po index 5aeeb8114c..0f23e82562 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/se/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/se/kcm_filetypes.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2007-12-24 01:21+0100\n" "Last-Translator: Børre Gaup \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -158,12 +158,12 @@ msgstr "Lasit ođđa dovddaldaga" msgid "Extension:" msgstr "Dovddaldat:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Geavat heivehusaid «%1» joavkku várás" diff --git a/local/recipes/kde/kde-cli-tools/source/po/se/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/se/kdesu.po index e7b2cd9386..2c70de1580 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/se/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/se/kdesu.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2005-01-30 02:10+0100\n" "Last-Translator: Børre Gaup \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/se/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/se/kioclient.po index 8c72ad5be9..700b5890f0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/se/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/se/kioclient.po @@ -4,11 +4,11 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2007-09-11 22:44+0200\n" "Last-Translator: Northern Sami translation team \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,14 +29,14 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" "Syntax:\n" msgstr "" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -45,7 +45,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -58,7 +58,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -70,7 +70,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -81,7 +81,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -92,7 +92,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -101,7 +101,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -110,7 +110,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -121,7 +121,15 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -130,7 +138,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -139,12 +147,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -153,7 +161,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -161,7 +169,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -169,7 +177,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -178,102 +186,102 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/se/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/se/kmimetypefinder.po index 38cad8e418..96423d79d1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/se/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/se/kmimetypefinder.po @@ -4,11 +4,11 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2007-09-11 22:44+0200\n" "Last-Translator: Northern Sami translation team \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/se/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/se/kstart.po index 6cdc5d03b9..9fa94ea46c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/se/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/se/kstart.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2005-10-23 23:45+0200\n" "Last-Translator: Børre Gaup \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,37 +44,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Gohččuma maid vuodjit" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Gohččun ii leat addejuvvon" diff --git a/local/recipes/kde/kde-cli-tools/source/po/si/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/si/kcm_filetypes.po index 94272e2386..a97d414e90 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/si/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/si/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2009-12-30 08:58+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" @@ -177,12 +177,12 @@ msgstr "නව දිගුව එක් කරන්න" msgid "Extension:" msgstr "දිගුව:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "%1 ගොනු වර්‍ගය" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "'%1' කණඩායම සඳහා සැකසුම් භාවිත කරන්න" diff --git a/local/recipes/kde/kde-cli-tools/source/po/si/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/si/kdesu.po index dd4132db0b..7820e3e049 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/si/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/si/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2011-09-24 05:48+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/si/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/si/kioclient.po index 3a86070c33..f660453edc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/si/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/si/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2009-12-15 18:49+0530\n" "Last-Translator: \n" "Language-Team: American English \n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "කේත රීතිය:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -52,7 +52,7 @@ msgstr "" " # වත්කම් මෙනුව විවෘත කරයි\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -80,7 +80,7 @@ msgstr "" " # ඇත්තෙන්ම URL ලිපිනය ලේඛනයක ලිපිනයක් හෝ *.desktop \n" " # ගොනුවක් විය හැක 'url' විධානීයද විය හැ.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -92,7 +92,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -114,7 +114,7 @@ msgstr "" " # URL ලිපිනය විමසනු ඇත .\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -133,7 +133,7 @@ msgstr "" " # 'src' URL ලිපින 'dest' වෙත පිටපත් කරයි.\n" " # 'src' යනු URL ලැයිස්තුවක් විය හැක.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -149,7 +149,7 @@ msgstr "" " # 'url' හි අන්තර්ගතය stdout වෙත ලියයි\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -165,7 +165,7 @@ msgstr "" " # 'url' හි අන්තර්ගතය stdout වෙත ලියයි\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -183,7 +183,22 @@ msgstr "" " # 'src' URL ලිපින 'dest' වෙත ගෙනියයි.\n" " # 'src' යනු URL ලැයිස්තුවක් විය හැක.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient වත්කම් විවෘත කිරීම 'url'\n" +" # වත්කම් මෙනුව විවෘත කරයි\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -199,7 +214,7 @@ msgstr "" " # 'url' හි අන්තර්ගතය stdout වෙත ලියයි\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -215,12 +230,12 @@ msgstr "" " # වත්කම් මෙනුව විවෘත කරයි\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -236,7 +251,7 @@ msgstr "" " // ගොනු බැඳුම් රහිතව විවෘත කරයි\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -251,7 +266,7 @@ msgstr "" " // URL ලිපිනය සමඟ නව කවුළුවක් විවෘත කරයි\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -266,7 +281,7 @@ msgstr "" " // emacs ආරම්භ කරයි\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -282,106 +297,106 @@ msgstr "" " // වත්මන් බහාළුම විවෘත කරයි. ඉතා උචිතයි.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO වැඩසටහන" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "ජාල-අන්තර්ක්‍රියා සඳහා විධාන රේඛීය ආයුධය" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL ලිපින හෝ URL ලිපිනයක්" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "මූල URL ලිපින හෝ URL ලිපිනයක්" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "ගමනාන්ත URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "පවතින විධාන පෙන්වයි" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "විධාන (බලන්න --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "විධානයට තර්ක" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "කේත රීති වරදක්: තර්ක ප්‍රමාණවත් නොමැත\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "කේත රීති වරදක්: තර්ක විශාල ප්‍රමාණයක් \n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "කේත රීති වරදක්: '%1' නොදන්නා විධානයක්\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/si/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/si/kmimetypefinder.po index f7511552a6..b84bc0259b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/si/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/si/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-11-27 08:34+0530\n" "Last-Translator: danishka \n" "Language-Team: Sinhala \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/si/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/si/kstart.po index c7cbcd17c2..3c5ca24585 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/si/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/si/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-12-13 06:18+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" @@ -42,27 +42,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "ක්‍රියාත්මක වීමට විධානය" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -70,12 +70,12 @@ msgstr "ක්‍රියාත්මක වීමට විධානය" msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "ට විකල්පයක්: ආරම්භයට වැඩතල ගොනුව. D-Bus සේවාව stdout වෙත මුද්‍රණය වේ" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "සේවාව (--s) භාවිත කරන විට, ගමන්කරන විකල්ප URL ලිපිනය " -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "විධානයක් සපයා නොමැත" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sk/kbroadcastnotification.po index 4829a93193..0c4ddc303b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/kbroadcastnotification.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-06 10:33+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sk/kcm_filetypes.po index 76b0037cc7..4c34f05e75 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/kcm_filetypes.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-12-12 19:13+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -175,12 +175,12 @@ msgstr "Pridať novú príponu" msgid "Extension:" msgstr "Prípona:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Typ súboru %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Použiť nastavenie pre skupinu '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/sk/kde-inhibit.po index f18f5a4d82..4d6576348d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/kde-inhibit.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-inhibit\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-12 19:12+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -12,18 +12,18 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.3\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 23.08.3\n" #: main.cpp:26 #, kde-format msgid "Inhibit various desktop functions whilst a command runs" -msgstr "" +msgstr "Potlačiť rôzne funkcie pracovnej plochy počas behu príkazu" #: main.cpp:28 #, kde-format msgid "Inhibit power management" -msgstr "" +msgstr "Potlačiť správu napájania" #: main.cpp:31 #, kde-format @@ -33,17 +33,17 @@ msgstr "Zabrániť šetrič obrazovky" #: main.cpp:35 #, kde-format msgid "Inhibit colour correction (night mode)" -msgstr "" +msgstr "Potlačiť korekciu farieb (nočný režim)" #: main.cpp:38 #, kde-format msgid "Inhibit notifications (Do not disturb)" -msgstr "" +msgstr "Potlačiť oznámenia (Nerušiť)" #: main.cpp:41 #, kde-format msgid "Command with arguments to run" -msgstr "" +msgstr "Príkaz s argumentmi na spustenie" #: main.cpp:64 main.cpp:73 main.cpp:89 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sk/kdesu.po index cbce22c782..e6dbdea60b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/kdesu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-11 13:13+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sk/kioclient.po index 32b96b8e72..c12a94c3a9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/kioclient.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2022-04-10 09:01+0200\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.12.3\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 21.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "wizzardsk@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Syntax:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -50,7 +50,7 @@ msgstr "" " # Otvorí ponuku s vlastnosťami\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -67,13 +67,11 @@ msgstr "" "aplikácii,\n" " # ktorá je s ním asociovaná v KDE. Môžete vynechať " "'mimetype'.\n" -" # V takom prípade bude mimetype nastavený\n" -" # automaticky. Samozrejme URL môže byť URL\n" -" # dokumentu alebo to môže byť súbor *.desktop.\n" -" # document, or it may be a *.desktop file.\n" -" # 'url' môže byť aj spustiteľné.\n" +" # V takom prípade bude mimetype nastavený automaticky.\n" +" # 'url' môže byť URL dokumentu, súbor *.desktop,\n" +" # alebo spustiteľný súbor.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +89,7 @@ msgstr "" " # Krátka verzia 'kioclient mv' je tiež dostupná.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -107,7 +105,7 @@ msgstr "" " # bude zobrazená výzva na jeho zadanie.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -123,7 +121,7 @@ msgstr "" " # 'src' môže byť zoznam URL.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -135,7 +133,7 @@ msgstr "" " # Vypíše obsah adresára 'url' na štandardný výstup\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -147,7 +145,7 @@ msgstr "" " # Vypíše obsah adresára 'url' na štandardný výstup\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -163,7 +161,18 @@ msgstr "" " # Krátka verzia 'kioclient rm' je tiež dostupná.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Otvorí ponuku s vlastnosťami\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -175,7 +184,7 @@ msgstr "" " # Vypíše všetky dostupné informácie pre 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -187,12 +196,12 @@ msgstr "" " # Otvorí základný spúšťač aplikácií.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Príklady:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -205,7 +214,7 @@ msgstr "" " // s týmto mime typom\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -216,7 +225,7 @@ msgstr "" " // Otvorí URL v predvolenom spracovači pre schému ftp://\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -227,7 +236,7 @@ msgstr "" " // Spustí emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -240,22 +249,22 @@ msgstr "" " // Veľmi šikovné.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO klient" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Nástroj pre príkazový riadok na sieťovo transparentné operácia" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Používať polia správ a iné natívne notifikácie" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -264,80 +273,80 @@ msgstr "" "Neinteraktívne použitie: žiadne okná správ. Ak nechcete grafické pripojenie, " "použite --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Prepísať cieľ ak existuje (pre kopírovanie a presun)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "súbor alebo URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Zdrojové URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Cieľové URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Zobraziť dostupné príkazy" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Príkaz (viď --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "príkaz" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Parametre pre command" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Chyba syntaxe, nedostatok parametrov\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Chyba syntaxe, príliš veľa parametrov\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Cieľ, kam sťahovať súbory" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Chyba syntaxe, neznámy príkaz '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sk/kmimetypefinder.po index 7a86ec57dc..93c503e3ec 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-18 21:54+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sk/kstart.po index ed4ef1e0d3..28e9eeba28 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/kstart.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-12-12 19:13+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -45,39 +45,39 @@ msgstr "Nástroj na spúšťanie aplikácií" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Príkaz, ktorý sa má spustiť" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternatíva k : súbor desktop, ktorý sa má spustiť, napr. org.kde." "kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "Volitelná URL na predanie aplikácii pri použití --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Neuvedený žiadny príkaz" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sk/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/sk/plasma-open-settings.po index e1d113375a..f371a057ba 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sk/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sk/plasma-open-settings.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: plasma-open-settings\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-23 21:30+0200\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sl/kbroadcastnotification.po index aeeb34cc07..83b1d08d1c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-03-27 20:01+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sl/kcm_filetypes.po index 5b998032f5..ec76b7082c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/kcm_filetypes.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-16 07:52+0200\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" @@ -184,12 +184,12 @@ msgstr "Dodaj novo pripono" msgid "Extension:" msgstr "Pripona:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Vrsta datotek: %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Uporabi nastavitve za skupino '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/sl/kde-inhibit.po index 895a63077e..f62e7a7a48 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/kde-inhibit.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-03-13 16:33+0100\n" "Last-Translator: Jure Repinc \n" "Language-Team: Slovenian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sl/kdesu.po index 92e93d99c5..a40a8c5d5a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/kdesu.po @@ -2,7 +2,7 @@ # Translation of kdesu.po to Slovenian # SLOVENIAN TRANSLATION OF KDESU. # Copyright (C) 2001, 2003, 2004, 2006 Free Software Foundation, Inc. -# $Id: kdesu.po 1690989 2024-09-21 01:15:19Z scripty $ +# $Id: kdesu.po 1723087 2025-11-17 12:44:32Z scripty $ # $Source$ # # Roman Maurer , 2000. @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-16 17:30+0200\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sl/kioclient.po index 18c4adec78..4fe37df3be 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/kioclient.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-04-07 08:26+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-09 07:14+0200\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Translator: Andrej Mernik \n" -"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" +"Translator: Andrej Mernik \n" +"X-Generator: Poedit 3.6\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -33,7 +33,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "andrejm@ubuntu.si,matjaz.jeran@amis.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -42,7 +42,7 @@ msgstr "" "\n" "Skladnja:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -54,7 +54,7 @@ msgstr "" " # Odpre meni lastnosti 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -74,7 +74,7 @@ msgstr "" "desktop.\n" " # 'url' je lahko tudi izvedljiva datoteka.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -92,7 +92,7 @@ msgstr "" " # Kratka verzija 'kioclient mv' je tudi na voljo.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -108,7 +108,7 @@ msgstr "" " # prikazalo pogovorno okno za vnos naslova URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -124,7 +124,7 @@ msgstr "" " # Kratka verzija 'kioclient cp' je tudi na voljo.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -136,7 +136,7 @@ msgstr "" " # Na standardni izpis izpiše vsebino mape 'url'\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -148,7 +148,7 @@ msgstr "" " # Na standardni izpis izpiše vsebino mape 'url'\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -164,7 +164,18 @@ msgstr "" " # Kratka verzija 'kioclient rm' je tudi na voljo.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Ustvari imenik na 'url'\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -176,7 +187,7 @@ msgstr "" " # Prikaže vso vsebino, ki je na voljo za 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -188,12 +199,12 @@ msgstr "" " # Odpre osnovni zaganjalnik aplikacij\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Primeri:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -206,7 +217,7 @@ msgstr "" " // s to vrsto Mime\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -217,7 +228,7 @@ msgstr "" " // Odpre naslov URL s privzetem orodjem za ftp:// scheme\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -228,7 +239,7 @@ msgstr "" " // Zažene emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -241,22 +252,22 @@ msgstr "" " //upravniku datotek. Zelo priročno.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Odjemalec KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Orodje ukazne vrstice za omrežno-transparentna opravila" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Uporabite polja za sporočila in druga izvorna obvestila" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -265,80 +276,80 @@ msgstr "" "Brez vzajemne uporabe: brez oken s sporočili. Če ne želite grafične " "povezave, uporabite --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Prepiše cilj, če obstaja (za kopiranje in premikanje)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "datoteka ali naslov URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "naslovi url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Izvorni naslov URL ali naslovi URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Ciljni naslov URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Prikaži razpoložljive ukaze" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Ukaz (glejte --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "ukaz" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenti ukaza" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: skladenjska napaka: premalo argumentov\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: skladenjska napaka: preveč argumentov\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Cilj za prejete datoteke" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: skladenjska napaka: neznan ukaz »%2«\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sl/kmimetypefinder.po index 0872b12476..ee5e8edaec 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-06-04 13:34+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sl/kstart.po index aa04ee5e57..02fc608dfb 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/kstart.po @@ -2,7 +2,7 @@ # Translation of kstart.po to Slovenian # KDEBASE translation to Slovenian language. # Copyright (C) 2000, 2003, 2004, 2005, 2007 Free Software Foundation, Inc. -# $Id: kstart.po 1675846 2024-03-17 01:07:03Z scripty $ +# $Id: kstart.po 1739915 2026-06-26 03:15:12Z scripty $ # $Source$ # # Roman Maurer , 2000. @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-19 07:04+0200\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" @@ -54,38 +54,38 @@ msgstr "Uporabni program za zagon aplikacij" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Ukaz, ki naj se izvede" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Druga možnost za : datoteka na namizju za zagon. npr. org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "Izbirni naslov URL za posredovanje pri uporabi --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Ni podanega ukaza" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sl/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/sl/plasma-open-settings.po index 9f823fa24f..2cc94d8e03 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sl/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sl/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-23 07:20+0200\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sq/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sq/kcm_filetypes.po index 49797febb5..9500a114b4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sq/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sq/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2009-08-07 21:20+0000\n" "Last-Translator: Vilson Gjeci \n" "Language-Team: Albanian \n" @@ -158,12 +158,12 @@ msgstr "Shto prapashtesë të re" msgid "Extension:" msgstr "Prapashtesë:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tip skedari %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Përdor rregullimet për grupin '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sq/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sq/kdesu.po index e8ea64c391..3df3ace9d9 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sq/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sq/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase-runtime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-01-06 03:26+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sq/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sq/kioclient.po index 5846746edd..8acf268599 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sq/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sq/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase-runtime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2010-02-19 15:07+0000\n" "Last-Translator: Vilson Gjeci \n" "Language-Team: Albanian \n" @@ -29,7 +29,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -38,7 +38,7 @@ msgstr "" "\n" "Sintaksa:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -54,7 +54,7 @@ msgstr "" " # Hap një menu parametrash\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -67,7 +67,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -79,7 +79,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -90,7 +90,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -101,7 +101,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -117,7 +117,7 @@ msgstr "" " # Hap një menu parametrash\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -133,7 +133,7 @@ msgstr "" " # Hap një menu parametrash\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -144,7 +144,22 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # Hap një menu parametrash\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -160,7 +175,7 @@ msgstr "" " # Hap një menu parametrash\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -176,12 +191,12 @@ msgstr "" " # Hap një menu parametrash\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -190,7 +205,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -198,7 +213,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -206,7 +221,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -215,106 +230,106 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Klient" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL ose URL-të" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Trego komandat e mundshme" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Komanda (shih --komandat)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumentet e komandës" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Gabim Sintakse: Nuk ka argumenta sa duhet\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Gabim Sintakse: shumë argumenta\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Gabim Sintakse: Komandë e panjohur '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sq/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sq/kmimetypefinder.po index d065a8150a..9336d763e3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sq/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sq/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase-runtime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-05-22 12:41+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sq/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sq/kstart.po index 78683b1131..cedfac9482 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sq/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sq/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdebase-runtime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-07-29 03:37+0000\n" "Last-Translator: Vilson Gjeci \n" "Language-Team: Albanian \n" @@ -44,37 +44,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Komanda për tu ekzekutuar" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Pa urdhër të përcaktuar" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sr/kbroadcastnotification.po index 9d345993e4..b13164e8ec 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr/kbroadcastnotification.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-06 21:01+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sr/kcm_filetypes.po index 0a6f59fa96..b9b63dccaa 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kcm5_filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -172,12 +172,12 @@ msgstr "Додај нови наставак" msgid "Extension:" msgstr "Наставак:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Тип фајла „%1“" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Користи поставке групе „%1“" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sr/kdesu.po index 3dd309f992..24bb2216bc 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sr/kioclient.po index c2f71c195f..91057bac7c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2016-07-10 19:45+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -30,7 +30,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "caslav.ilic@gmx.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "Синтакса:\n" # literal-segment: 'url' -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -56,7 +56,7 @@ msgstr "" " # отвара мени својстава\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -84,7 +84,7 @@ msgstr "" " # може бити УРЛ документа, или *.desktop фајла.\n" " # УРЛ може бити и извршни фајл.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -96,7 +96,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -118,7 +118,7 @@ msgstr "" " # УРЛ ће бити затражен.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -136,7 +136,7 @@ msgstr "" " # Копира УРЛ извора на одредиште.\n" " # Извор може бити и списак УРЛ‑ова.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # Исписује садржај фасцикле УРЛ‑а на стдиз\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -168,7 +168,7 @@ msgstr "" " # Исписује садржај фасцикле УРЛ‑а на стдиз\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,23 @@ msgstr "" " # Уклања УРЛ\n" " # (може се навести и списак УРЛ‑ова).\n" -#: kioclient.cpp:126 +# literal-segment: 'url' +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # отвара мени својстава\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -195,7 +211,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -204,12 +220,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Примери:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -225,7 +241,7 @@ msgstr "" " # отвара фајл подразумеваним програмом\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -241,7 +257,7 @@ msgstr "" "\n" # literal-segment: kioclient exec file:/root/Desktop/emacs.desktop -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -256,7 +272,7 @@ msgstr "" " # покреће Емакс\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -272,22 +288,22 @@ msgstr "" " # отвара текућу фасциклу — врло згодно.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "К‑У/И клијент" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Алатка командне линије за мрежнопрозирне поступке" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -296,80 +312,80 @@ msgstr "" "Неинтерактивна употреба: без прозора са порукама. Ако не желите графичку " "везу, употребите --platform offscreen." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Пребриши одредиште ако постоји (за копирање и премештање)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Фајл или УРЛ" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "УРЛ‑ови..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Изворни УРЛ или УРЛ‑ови" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Одредишни УРЛ" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "УРЛ" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Прикажи расположиве наредбе" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Наредба (види --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "наредба" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Аргументи уз наредбу" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Синтаксна грешка, недовољно аргумената.\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Синтаксна грешка, превише аргумената.\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Одредиште где треба преузети фајлове." -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Синтаксна грешка, непозната наредба „%2“.\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sr/kmimetypefinder.po index aa4199bc12..ef2309d3fd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr/kmimetypefinder.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-07 21:01+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sr/kstart.po index 43d38c3e69..eb9a8c5d51 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -46,27 +46,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000, Матијас Етрих" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Матијас Етрих" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "Давид Фор" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Ричард Мур" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Наредба за извршавање" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -76,13 +76,13 @@ msgstr "" "Алтернатива наредби: .десктоп фајл за покретање. Д‑бус сервис ће бити " "исписан на стдиз." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "Опциони УРЛ за прослеђивање .десктоп фајла, уз --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Нема ниједне наредбе" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kbroadcastnotification.po index 3453638a98..9e91b67aa7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kbroadcastnotification.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-06 21:01+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kcm_filetypes.po index 3b9b176651..7abcd0de21 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kcm5_filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -172,12 +172,12 @@ msgstr "Додај нови наставак" msgid "Extension:" msgstr "Наставак:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Тип фајла „%1“" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Користи поставке групе „%1“" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kdesu.po index c478b61d6b..38f8c98db6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kioclient.po index 9d65d932e5..81d989e1b6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2016-07-10 19:45+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -30,7 +30,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "caslav.ilic@gmx.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "Синтакса:\n" # literal-segment: 'url' -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -56,7 +56,7 @@ msgstr "" " # отвара мени својстава\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -84,7 +84,7 @@ msgstr "" " # може бити УРЛ документа, или *.desktop фајла.\n" " # УРЛ може бити и извршни фајл.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -96,7 +96,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -118,7 +118,7 @@ msgstr "" " # УРЛ ће бити затражен.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -136,7 +136,7 @@ msgstr "" " # Копира УРЛ извора на одредиште.\n" " # Извор може бити и списак УРЛ‑ова.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # Исписује садржај фасцикле УРЛ‑а на стдиз\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -168,7 +168,7 @@ msgstr "" " # Исписује садржај фасцикле УРЛ‑а на стдиз\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,23 @@ msgstr "" " # Уклања УРЛ\n" " # (може се навести и списак УРЛ‑ова).\n" -#: kioclient.cpp:126 +# literal-segment: 'url' +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # отвара мени својстава\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -195,7 +211,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -204,12 +220,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Примери:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -225,7 +241,7 @@ msgstr "" " # отвара фајл подразумијеваним програмом\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -241,7 +257,7 @@ msgstr "" "\n" # literal-segment: kioclient exec file:/root/Desktop/emacs.desktop -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -256,7 +272,7 @@ msgstr "" " # покреће Емакс\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -272,22 +288,22 @@ msgstr "" " # отвара текућу фасциклу — врло згодно.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "К‑У/И клијент" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Алатка командне линије за мрежнопрозирне поступке" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -296,80 +312,80 @@ msgstr "" "Неинтерактивна употреба: без прозора са порукама. Ако не желите графичку " "везу, употребите --platform offscreen." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Пребриши одредиште ако постоји (за копирање и премијештање)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Фајл или УРЛ" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "УРЛ‑ови..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Изворни УРЛ или УРЛ‑ови" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Одредишни УРЛ" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "УРЛ" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Прикажи расположиве наредбе" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Наредба (види --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "наредба" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Аргументи уз наредбу" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Синтаксна грешка, недовољно аргумената.\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Синтаксна грешка, превише аргумената.\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Одредиште где треба преузети фајлове." -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Синтаксна грешка, непозната наредба „%2“.\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kmimetypefinder.po index 73900d00d7..44ee2712cd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kmimetypefinder.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-07 21:01+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kstart.po index ee0bf8dc15..a637828a2c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavian/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -46,27 +46,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000, Матијас Етрих" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Матијас Етрих" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "Давид Фор" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Ричард Мур" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Наредба за извршавање" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -76,13 +76,13 @@ msgstr "" "Алтернатива наредби: .десктоп фајл за покретање. Д‑бус сервис ће бити " "исписан на стдиз." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "Опциони УРЛ за просљеђивање .десктоп фајла, уз --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Нема ниједне наредбе" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kbroadcastnotification.po index 1636cae4f9..1f11801f50 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kbroadcastnotification.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-06 21:01+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kcm_filetypes.po index b9748c2b43..9d7a765cbe 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kcm5_filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -172,12 +172,12 @@ msgstr "Dodaj novi nastavak" msgid "Extension:" msgstr "Nastavak:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tip fajla „%1“" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Koristi postavke grupe „%1“" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kdesu.po index 960e57ed16..f8f333ac84 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kioclient.po index d8fef6e97d..ca7e510939 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2016-07-10 19:45+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -30,7 +30,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "caslav.ilic@gmx.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "Sintaksa:\n" # literal-segment: 'url' -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -56,7 +56,7 @@ msgstr "" " # otvara meni svojstava\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -84,7 +84,7 @@ msgstr "" " # može biti URL dokumenta, ili *.desktop fajla.\n" " # URL može biti i izvršni fajl.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -96,7 +96,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -118,7 +118,7 @@ msgstr "" " # URL će biti zatražen.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -136,7 +136,7 @@ msgstr "" " # Kopira URL izvora na odredište.\n" " # Izvor može biti i spisak URL‑ova.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # Ispisuje sadržaj fascikle URL‑a na stdiz\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -168,7 +168,7 @@ msgstr "" " # Ispisuje sadržaj fascikle URL‑a na stdiz\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,23 @@ msgstr "" " # Uklanja URL\n" " # (može se navesti i spisak URL‑ova).\n" -#: kioclient.cpp:126 +# literal-segment: 'url' +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # otvara meni svojstava\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -195,7 +211,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -204,12 +220,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Primeri:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -225,7 +241,7 @@ msgstr "" " # otvara fajl podrazumijevanim programom\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -241,7 +257,7 @@ msgstr "" "\n" # literal-segment: kioclient exec file:/root/Desktop/emacs.desktop -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -256,7 +272,7 @@ msgstr "" " # pokreće Emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -272,22 +288,22 @@ msgstr "" " # otvara tekuću fasciklu — vrlo zgodno.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "K‑U/I klijent" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Alatka komandne linije za mrežnoprozirne postupke" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -296,80 +312,80 @@ msgstr "" "Neinteraktivna upotreba: bez prozora sa porukama. Ako ne želite grafičku " "vezu, upotrebite --platform offscreen." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Prebriši odredište ako postoji (za kopiranje i premiještanje)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Fajl ili URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URL‑ovi..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Izvorni URL ili URL‑ovi" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Odredišni URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "URL" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Prikaži raspoložive naredbe" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Naredba (vidi --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "naredba" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenti uz naredbu" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Sintaksna greška, nedovoljno argumenata.\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Sintaksna greška, previše argumenata.\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Odredište gde treba preuzeti fajlove." -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Sintaksna greška, nepoznata naredba „%2“.\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kmimetypefinder.po index 9acd7f35ef..f85053f406 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kmimetypefinder.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-07 21:01+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kstart.po index fc63ed489d..e3da077143 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@ijekavianlatin/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -46,27 +46,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000, Matijas Etrih" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matijas Etrih" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David For" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Ričard Mur" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Naredba za izvršavanje" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -76,13 +76,13 @@ msgstr "" "Alternativa naredbi: .desktop fajl za pokretanje. D‑Bus servis će biti " "ispisan na stdiz." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "Opcioni URL za prosljeđivanje .desktop fajla, uz --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nema nijedne naredbe" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kbroadcastnotification.po index d9c41ac1fe..7a5f3a6608 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kbroadcastnotification.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-06 21:01+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kcm_filetypes.po index 5d23ed9def..6d879699e0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kcm5_filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -172,12 +172,12 @@ msgstr "Dodaj novi nastavak" msgid "Extension:" msgstr "Nastavak:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Tip fajla „%1“" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Koristi postavke grupe „%1“" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kdesu.po index 923147fcf3..854217efd5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kioclient.po index 61b038dbfb..7368896910 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2016-07-10 19:45+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -30,7 +30,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "caslav.ilic@gmx.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "Sintaksa:\n" # literal-segment: 'url' -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -56,7 +56,7 @@ msgstr "" " # otvara meni svojstava\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -84,7 +84,7 @@ msgstr "" " # može biti URL dokumenta, ili *.desktop fajla.\n" " # URL može biti i izvršni fajl.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -96,7 +96,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -118,7 +118,7 @@ msgstr "" " # URL će biti zatražen.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -136,7 +136,7 @@ msgstr "" " # Kopira URL izvora na odredište.\n" " # Izvor može biti i spisak URL‑ova.\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -152,7 +152,7 @@ msgstr "" " # Ispisuje sadržaj fascikle URL‑a na stdiz\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient ls 'url'\n" @@ -168,7 +168,7 @@ msgstr "" " # Ispisuje sadržaj fascikle URL‑a na stdiz\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -186,7 +186,23 @@ msgstr "" " # Uklanja URL\n" " # (može se navesti i spisak URL‑ova).\n" -#: kioclient.cpp:126 +# literal-segment: 'url' +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # otvara meni svojstava\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -195,7 +211,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -204,12 +220,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Primeri:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -225,7 +241,7 @@ msgstr "" " # otvara fajl podrazumevanim programom\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -241,7 +257,7 @@ msgstr "" "\n" # literal-segment: kioclient exec file:/root/Desktop/emacs.desktop -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -256,7 +272,7 @@ msgstr "" " # pokreće Emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -272,22 +288,22 @@ msgstr "" " # otvara tekuću fasciklu — vrlo zgodno.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "K‑U/I klijent" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Alatka komandne linije za mrežnoprozirne postupke" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -296,80 +312,80 @@ msgstr "" "Neinteraktivna upotreba: bez prozora sa porukama. Ako ne želite grafičku " "vezu, upotrebite --platform offscreen." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Prebriši odredište ako postoji (za kopiranje i premeštanje)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "Fajl ili URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URL‑ovi..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Izvorni URL ili URL‑ovi" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Odredišni URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "URL" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Prikaži raspoložive naredbe" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Naredba (vidi --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "naredba" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argumenti uz naredbu" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Sintaksna greška, nedovoljno argumenata.\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Sintaksna greška, previše argumenata.\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Odredište gde treba preuzeti fajlove." -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Sintaksna greška, nepoznata naredba „%2“.\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kmimetypefinder.po index dc715bf8f2..e7acbbe0ab 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kmimetypefinder.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-07 21:01+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kstart.po index c35e7b3df4..d9e9db5c52 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sr@latin/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -46,27 +46,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000, Matijas Etrih" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matijas Etrih" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David For" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Ričard Mur" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Naredba za izvršavanje" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -76,13 +76,13 @@ msgstr "" "Alternativa naredbi: .desktop fajl za pokretanje. D‑Bus servis će biti " "ispisan na stdiz." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "Opcioni URL za prosleđivanje .desktop fajla, uz --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nema nijedne naredbe" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/sv/kbroadcastnotification.po index d1d61cf88b..05215793b8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-05 14:50+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/sv/kcm_filetypes.po index a6d17a4aee..eea63b1384 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/kcm_filetypes.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-06-17 21:57+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -172,12 +172,12 @@ msgstr "Lägg till ny filnamnsändelse" msgid "Extension:" msgstr "Filnamnsändelse:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Filtyp %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Använd inställningar för \"%1\"-grupp" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/sv/kde-inhibit.po index 27d08c43d0..aeda60a8b5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-06-21 12:20+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/sv/kdesu.po index ab553a2df9..c7a80be7bd 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/kdesu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-10 14:21+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/sv/kioclient.po index 363683a269..28e9f401a7 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/kioclient.po @@ -2,20 +2,20 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Stefan Asserhäll , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2020, 2021, 2022. +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2020, 2021, 2022, 2025 Stefan Asserhäll msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-04-06 19:26+0200\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-28 16:50+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.08.1\n" +"X-Generator: Lokalize 25.04.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "stefan.asserhall@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "Syntax:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -49,7 +49,7 @@ msgstr "" " # Öppnar en egenskapsdialogruta för 'webbadress'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -69,7 +69,7 @@ msgstr "" " # dokuments webbadress, en *.desktop-fil, eller\n" " # ett körbart program.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -88,7 +88,7 @@ msgstr "" " # Den korta versionen 'kioclient mv' är också tillgänglig.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -104,7 +104,7 @@ msgstr "" " # inte anges, frågas efter en webbadress.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -120,7 +120,7 @@ msgstr "" " # Den korta versionen 'kioclient cp' är också tillgänglig.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -132,7 +132,7 @@ msgstr "" " # Listar innehållet i filen 'webbadress' på standardutmatningen\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -145,7 +145,7 @@ msgstr "" "standardutmatningen\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -161,7 +161,18 @@ msgstr "" " # Den korta versionen 'kioclient rm' är också tillgänglig.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'webbadress'\n" +" # Öppnar katalogen 'webbadress'\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -173,7 +184,7 @@ msgstr "" " # Visar all tillgänglig information för 'webbadress'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -185,12 +196,12 @@ msgstr "" " # Visar en grundläggande programstart.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Exempel:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -203,7 +214,7 @@ msgstr "" " // ihop med Mime-typen\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -214,7 +225,7 @@ msgstr "" " // Öppnar webbadressen med ftp:// standardhanteraren\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -225,7 +236,7 @@ msgstr "" " // Startar emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -238,22 +249,22 @@ msgstr "" " // Mycket praktiskt.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO-klient" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Kommandoradsverktyg för nätverkstransparenta åtgärder" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Använd meddelanderutor och andra inbyggda underrättelser" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -262,80 +273,80 @@ msgstr "" "Icke-interaktiv användning: inga meddelanderutor. Om du inte vill ha en " "grafisk anslutning, använd --platform offscreen." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Skriv över mål om det finns (vid kopiera och flytta)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "fil eller webbadress" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "webbadresser..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Källwebbadress eller -adresser" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Målwebbadress" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "webbadress" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Visa tillgängliga kommandon" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Kommando (se --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "kommando" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Argument för kommando" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Syntaxfel, för få argument\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Syntaxfel. för många argument\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Plats dit filerna ska nerladdas" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Syntaxfel, okänt kommando '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/sv/kmimetypefinder.po index bd6fbc8bbc..dac6b0fd97 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-01 08:13+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/sv/kstart.po index 4c5355c740..236a95539e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/kstart.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-06-17 21:57+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -45,39 +45,39 @@ msgstr "Verktyg för att starta program" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Kommando att köra" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Alternativ till : namn på skrivbordsfil att starta, t.ex. org.kde." "kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "Valfri webbadress att skicka till programmet när --application används" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Inget kommando angavs" diff --git a/local/recipes/kde/kde-cli-tools/source/po/sv/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/sv/plasma-open-settings.po index 7e9b5e9e50..1ab94c3d54 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/sv/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/sv/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-22 11:38+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/ta/kbroadcastnotification.po index 2d3d76ab59..8c3c9e7516 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-03-10 12:08+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ta/kcm_filetypes.po index 052b1298f4..cc5b6e96d2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/kcm_filetypes.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-21 14:23+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" @@ -183,12 +183,12 @@ msgstr "புதிய வகைப்பெயரை சேர்" msgid "Extension:" msgstr "வகைப்பெயர்:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "கோப்புவகை %1 " -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "%1 எனும் குழுவுக்குரிய அமைப்புக்களைப் பயன்படுத்து" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/ta/kde-inhibit.po index 1852e86447..0db55c2d68 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-03-10 12:03+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ta/kdesu.po index d925e787c6..bff0c3e895 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-02-18 18:49+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ta/kioclient.po index 430d2701e3..1b4d7abe2c 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2008-03-17 13:15+0530\n" "Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "நெறி:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -52,7 +52,7 @@ msgstr "" " # பண்புகள் மெனுவைத் திறக்கும்\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -79,7 +79,7 @@ msgstr "" " # தீர்மானிக்கப்பட்டது. URL ஆவணத்தின் URL ஆகவோ a\n" " # அல்லது *.desktop கோப்பாகவோ இருக்கலாம்.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +91,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -113,7 +113,7 @@ msgstr "" " # ஒரு URL கோரப்படும்.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -133,7 +133,7 @@ msgstr "" " # 'src' யுஆர்எல் களின் பட்டியலாகலாம்.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -149,7 +149,7 @@ msgstr "" " # stdout க்கு 'url' விவரங்களை வெளியிடுகிறது\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -165,7 +165,7 @@ msgstr "" " # stdout க்கு 'url' விவரங்களை வெளியிடுகிறது\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient move 'src' 'dest'\n" @@ -183,7 +183,22 @@ msgstr "" " # URL 'src' தனை 'dest' க்கு மாற்றும்.\n" " # 'src' URL களின் பட்டியலாக இருக்கலாம்.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # பண்புகள் மெனுவைத் திறக்கும்\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -199,7 +214,7 @@ msgstr "" " # stdout க்கு 'url' விவரங்களை வெளியிடுகிறது\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -215,12 +230,12 @@ msgstr "" " # பண்புகள் மெனுவைத் திறக்கும்\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -236,7 +251,7 @@ msgstr "" " // இயல்பான பிணைப்புடன் கோப்பினை திறக்கிறது\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -251,7 +266,7 @@ msgstr "" " // URL கொண்டு புதிய சாளரத்தை திறக்கும்\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -266,7 +281,7 @@ msgstr "" " // இமாக்ஸினை திறக்கும்\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -282,107 +297,107 @@ msgstr "" " // தற்போதைய அடைவை திறக்கும். மிகவும் பயனுள்ளது.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "கேஐஓ வாங்கி" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "வெளிப்படையான-பிணையச் செயல்களுக்கான முனைய-வழி கருவி" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, fuzzy, kde-format #| msgid "Source url or urls" msgid "Source URL or URLs" msgstr "மூல url அ urls" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, fuzzy, kde-format #| msgid "Destination url" msgid "Destination URL" msgstr "அடையும் url" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "கிடைக்கக் கூடிய ஆணைகள்" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "ஆணை (பார்க்க --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "ஆணைக்கான துப்புகள்" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "நெறி வழு: போதுமான துப்புகள் இல்லை\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "நெறி வழு: அதிக அளவிலான துப்புகள்\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "நெறி வழு: அறியப்படாத ஆணை '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ta/kmimetypefinder.po index 0e5abe4545..265cab38b4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2008-03-15 07:53+0530\n" "Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ta/kstart.po index 412ab13dd4..74feb0b725 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/kstart.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-02-14 21:51+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" @@ -48,37 +48,37 @@ msgstr "செயலிகளை ஏவ‍ உதவும் நிரல்" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "மத்தையாஸ் எட்ரிச்" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "டேவிட் ஃபவுர்" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "ரிச்சர்ட் ஜே. மூர்" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "செயல்படுத்த வேண்டிய கட்டளை" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "கட்டளை எதுவும் குறிப்பிடப்படவில்லை" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ta/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/ta/plasma-open-settings.po index 30f0616a1c..2c61eee8d0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ta/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ta/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-03-10 11:58+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/te/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/te/kcm_filetypes.po index ccc7908c19..53a718759d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/te/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/te/kcm_filetypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2009-01-16 22:16+0530\n" "Last-Translator: Krishna Babu K \n" "Language-Team: Telugu \n" @@ -155,12 +155,12 @@ msgstr "కొత్త పొడిగింపును జతచేయుమ msgid "Extension:" msgstr "పొడిగింపు:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ఫైలు రకము %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "అమరికలను '%1' సమూహము కొరకు వుపయోగించుము" diff --git a/local/recipes/kde/kde-cli-tools/source/po/te/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/te/kdesu.po index 0022685bdf..b70dd657b1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/te/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/te/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-16 22:16+0530\n" "Last-Translator: Krishna Babu K \n" "Language-Team: Telugu \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/te/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/te/kioclient.po index 76a4a815bb..38cd37a9c1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/te/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/te/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2009-01-16 22:16+0530\n" "Last-Translator: Krishna Babu K \n" "Language-Team: Telugu \n" @@ -28,14 +28,14 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" "Syntax:\n" msgstr "" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -44,7 +44,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -57,7 +57,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -69,7 +69,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -80,7 +80,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -91,7 +91,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -100,7 +100,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -109,7 +109,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -120,7 +120,15 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -129,7 +137,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -138,12 +146,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -152,7 +160,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -160,7 +168,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -168,7 +176,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -177,102 +185,102 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/te/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/te/kmimetypefinder.po index cea4fb544e..aed335d794 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/te/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/te/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-01-16 22:16+0530\n" "Last-Translator: Krishna Babu K \n" "Language-Team: Telugu \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/te/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/te/kstart.po index 8f6c3013de..1d492b3646 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/te/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/te/kstart.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2009-01-16 22:16+0530\n" "Last-Translator: Krishna Babu K \n" "Language-Team: Telugu \n" @@ -43,37 +43,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "మథయాస్ ఎట్ట్రిచ్" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "డెవిడ్ ఫారె" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "ఎగ్జిక్యూట్ చేయుటకు ఆదేశము" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tg/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/tg/kcm_filetypes.po index 7a0572cadd..5a91b0c6b2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tg/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tg/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2019-09-17 14:20+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" @@ -147,12 +147,12 @@ msgstr "" msgid "Extension:" msgstr "" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tg/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/tg/kdesu.po index dccacb68d2..42f13f37e3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tg/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tg/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-09-17 14:27+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tg/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/tg/kioclient.po index dbde4f947e..b51b5cab82 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tg/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tg/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2019-09-16 14:19+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik \n" @@ -27,14 +27,14 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "victor.ibragimov@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" "Syntax:\n" msgstr "" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -50,7 +50,7 @@ msgstr "" " // Феҳрасти CDROM'ро мекушояд\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -63,7 +63,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -75,7 +75,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -86,7 +86,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -97,7 +97,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -113,7 +113,7 @@ msgstr "" " // Феҳрасти CDROM'ро мекушояд\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -129,7 +129,7 @@ msgstr "" " // Феҳрасти CDROM'ро мекушояд\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -140,7 +140,22 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient exec file:/root/Desktop/cdrom.desktop\n" +#| " // Opens the CDROM's mount directory\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient exec file:/root/Desktop/cdrom.desktop\n" +" // Феҳрасти CDROM'ро мекушояд\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -156,7 +171,7 @@ msgstr "" " // Феҳрасти CDROM'ро мекушояд\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -172,12 +187,12 @@ msgstr "" " // Феҳрасти CDROM'ро мекушояд\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html Netscape\n" @@ -193,7 +208,7 @@ msgstr "" " // Файлро бо netscape мекушояд\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html Netscape\n" @@ -208,7 +223,7 @@ msgstr "" " // Файлро бо netscape мекушояд\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -223,7 +238,7 @@ msgstr "" " // Феҳрасти CDROM'ро мекушояд\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/cdrom.desktop\n" @@ -239,102 +254,102 @@ msgstr "" " // Феҳрасти CDROM'ро мекушояд\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Мизоҷи KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "фармон" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tg/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/tg/kmimetypefinder.po index 4ef333f589..420800e898 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tg/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tg/kmimetypefinder.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2019-11-14 11:56+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tg/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/tg/kstart.po index f7aa15beaf..6950d027da 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tg/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tg/kstart.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2019-09-16 18:45+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" @@ -40,37 +40,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Фармоне, ки иҷро мешавад" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/th/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/th/kcm_filetypes.po index 83fc7b0a0e..84a3c948e4 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/th/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/th/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2010-12-17 20:21+0700\n" "Last-Translator: Thanomsub Noppaburana \n" "Language-Team: Thai \n" @@ -165,12 +165,12 @@ msgstr "เพิ่มส่วนขยายใหม่" msgid "Extension:" msgstr "ส่วนขยาย:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "ประเภทแฟ้ม %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "ใช้การตั้งค่านี้กับกลุ่ม '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/th/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/th/kdesu.po index a7dcfa77a0..ad59538814 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/th/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/th/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-12-17 21:02+0700\n" "Last-Translator: Thanomsub Noppaburana \n" "Language-Team: Thai \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/th/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/th/kioclient.po index 3fafb26330..81942db703 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/th/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/th/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2010-08-14 12:13+0700\n" "Last-Translator: Sahachart Anukulkitch \n" "Language-Team: Thai \n" @@ -30,7 +30,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -39,7 +39,7 @@ msgstr "" "\n" "Syntax:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -55,7 +55,7 @@ msgstr "" " # เปิดเมนูคุณสมบัติ\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, fuzzy, kde-format #| msgid "" #| " kioclient exec 'url' ['mimetype']\n" @@ -84,7 +84,7 @@ msgstr "" " # หรือมันอาจจะป็นแฟ้ม *.desktop ก็ได้\n" " # 'url' ยังสามารถเป็นแฟ้มเรียกประมวลผลก็ได้ดู\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -96,7 +96,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, fuzzy, kde-format #| msgid "" #| " kioclient download ['src']\n" @@ -119,7 +119,7 @@ msgstr "" " # ก็จะมีการร้องขอ URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, fuzzy, kde-format #| msgid "" #| " kioclient copy 'src' 'dest'\n" @@ -137,7 +137,7 @@ msgstr "" " # ทำการคัดลอก URL จาก 'src' ไปที่ 'dest'.\n" " # 'src' อาจจะเป็นรายการของ URLs หลาย ๆ อันได้\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -153,7 +153,7 @@ msgstr "" " # ทำการเขียนเนื้อหาของ 'url' ออกมาที่ stdout (เช่น หน้าจอ)\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -169,7 +169,7 @@ msgstr "" " # ทำการเขียนเนื้อหาของ 'url' ออกมาที่ stdout (เช่น หน้าจอ)\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, fuzzy, kde-format #| msgid "" #| " kioclient remove 'url'\n" @@ -187,7 +187,22 @@ msgstr "" " # ทำการลบ URL\n" " # 'url' อาจจะเป็นรายการของ URLs หลาย ๆ อันได้.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgid "" +#| " kioclient openProperties 'url'\n" +#| " # Opens a properties menu\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" kioclient openProperties 'url'\n" +" # เปิดเมนูคุณสมบัติ\n" +"\n" + +#: kioclient.cpp:134 #, fuzzy, kde-format #| msgid "" #| " kioclient cat 'url'\n" @@ -203,7 +218,7 @@ msgstr "" " # ทำการเขียนเนื้อหาของ 'url' ออกมาที่ stdout (เช่น หน้าจอ)\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, fuzzy, kde-format #| msgid "" #| " kioclient openProperties 'url'\n" @@ -219,12 +234,12 @@ msgstr "" " # เปิดเมนูคุณสมบัติ\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/home/weis/data/test.html\n" @@ -240,7 +255,7 @@ msgstr "" " // เปิดแฟ้มด้วยโปรแกรมที่ตั้งไว้เป็นค่าปริยาย\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, fuzzy, kde-format #| msgid "" #| " kioclient exec ftp://localhost/\n" @@ -255,7 +270,7 @@ msgstr "" " // เปิดหน้าต่างใหม่ด้วย URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, fuzzy, kde-format #| msgid "" #| " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -270,7 +285,7 @@ msgstr "" " // เปิดโปรแกรม emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, fuzzy, kde-format #| msgid "" #| " kioclient exec .\n" @@ -286,106 +301,106 @@ msgstr "" " // เปิดไดเร็คทอรีที่อยู่ตอนนี้. สะดวกมาก!\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "เครื่องมือแบบพิมพ์คำสั่งสำหรับการทำงานเกี่ยวกับเครือข่าย" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "ทำการเขียนทับที่ปลายทาง ถ้าหากว่ามีอยู่ (สำหรับการคัดลอก และการย้าย)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL (หนึ่งตัว) หรือ URLs (หลายตัว)" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL ต้นทาง (หนึ่งตัว) หรือ URLs ต้นทาง (หลายตัว)" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL ปลายทาง" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "แสดงคำสั่งที่มีให้" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "คำสั่ง (ดูที่ --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "ค่าอาร์กิวเมนต์สำหรับคำสั่ง" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "รูปแบบคำสั่งผิดพลาด: มีอาร์กิวเมนต์ไม่พอ \n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "รูปแบบคำสั่งผิดพลาด: มีอาร์กิวเมนต์มากเกินไป \n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "รูปแบบคำสั่งผิดพลาด: คำสั่งที่ไม่รู้จัก '%1'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/th/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/th/kmimetypefinder.po index 9d2c2d607d..61f02be932 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/th/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/th/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2010-03-26 20:17+0700\n" "Last-Translator: Thanomsub Noppaburana \n" "Language-Team: Thai \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/th/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/th/kstart.po index 43b14f8137..f353bf8135 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/th/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/th/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2010-02-11 20:34+0700\n" "Last-Translator: Thanomsub Noppaburana \n" "Language-Team: Thai \n" @@ -44,27 +44,27 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "คำสั่งที่จะประมวลผล" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "" #| "Alternative to : desktop file to start. D-Bus service will be " @@ -74,13 +74,13 @@ msgstr "" "ทางเลือกอื่นของ : แฟ้มพื้นที่ทำงานที่จะเริ่มการทำงานบริการ D-Bus " "จะทำการพิมพ์ผลส่งออกไปทาง stdout" -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "ตัวเลือกเพิ่มเติมที่อยู่ URL ที่จะส่งไปให้กับ เมื่อมีการใช้ --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "ยังไม่ได้ระบุคำสั่ง" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kcontrol6/filetypes/index.docbook b/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kcontrol6/filetypes/index.docbook index e050cb7e4a..87dc44fcfe 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kcontrol6/filetypes/index.docbook +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kcontrol6/filetypes/index.docbook @@ -32,7 +32,7 @@ 2016-11-11 +>2016‒11‒11 Plasma 5.8 @@ -56,12 +56,12 @@ >Giriş &kde;'nin en kullanışlı özelliklerinden bir tanesi de, bir veri dosyasını uygulaması ile eşleştirebilmesidir. Bir örnek olarak, sıkça kullandığınız bir &calligrawords; belgesine tıkladığınızda, &kde;, &calligrawords; yazılımını kendiliğinden başlatır ve o dosyayı hemen üzerinde çalışmaya başlayabilmeniz için &calligrawords;'e yükler. +>&kde;’nin en kullanışlı özelliklerinden bir tanesi de, bir veri dosyasını uygulaması ile eşleştirebilmesidir. Bir örnek olarak, sıkça kullandığınız bir &calligrawords; belgesine tıkladığınızda, &kde;, &calligrawords; yazılımını kendiliğinden başlatır ve o dosyayı hemen üzerinde çalışmaya başlayabilmeniz için &calligrawords;’e yükler. Yukarıdaki örnekte, &calligrawords; veri dosyası &calligrawords; (uygulama) ile ilişkilendirilmiştir. Bu dosya ilişkilendirmeleri, &kde;'nin işlevselliği için elzemdir. +>. Bu dosya ilişkilendirmeleri, &kde;’nin işlevselliği için elzemdir. &kde; kurulduğunda, yaygın olarak kullanılan veri türleri için yüzlerce ilişkilendirmeyi kendiliğinden oluşturur. Bu ilişkilendirmeler, sık kullanılan uygulamalar ve kullanıcı tercihleri temel alınarak oluşturulmuştur. @@ -107,7 +107,7 @@ > Dosya İlişkilendirmeleri'ni seçebilirsiniz. Alternatif olarak, uçbirimden veya &krunner; uygulamacığından ’ni seçebilirsiniz. Alternatif olarak, uçbirimden veya &krunner; uygulamacığından kcmshell5 filetypes yazarak da çalıştırılabilir. @@ -168,7 +168,7 @@ Ayrıca arama kutusunu kullanarak belirli bir &MIME; türünü de arayabilirsiniz. Arama kutusu, Dosya türü veya dosya adı dizgisi ara...Dosya türü veya dosya adı dizgisi ara… ile etiketlidir ve kategori listesinin üzerinde bulunur. Dosya ilişkilendirmelerinize yeni bir &MIME; türü eklemek istiyorsanız Ekle...Ekle… düğmesine tıklayabilirsiniz. Küçük bir iletişim kutusu açılacaktır. Grup: ile etiketli açılır menüden kategoriyi seçin ve &MIME; adını Tür adı: yazan boş kutuya girin. Yeni &MIME; türünü eklemeyi bitirmek için Tamam'a, veya &MIME; türü eklemeyi iptal etmek için ’a, veya &MIME; türü eklemeyi iptal etmek için İptal'e tıklayın. +>’e tıklayın. @@ -248,7 +248,7 @@ >Dosya Adı Dizgileri, &kde;'nin &MIME; türünü belirlemek için kullanacağı bir arama dizgisidir., &kde;’nin &MIME; türünü belirlemek için kullanacağı bir arama dizgisidir. Birden çok maskeye sahip olmak yararlıdır; biri BÜYÜK biri de küçük harfler için. Bu, &kde;'nin dosya türünü daha kesin belirlemesine yardımcı olur.Birden çok maskeye sahip olmak yararlıdır; biri BÜYÜK biri de küçük harfler için. Bu, &kde;’nin dosya türünü daha kesin belirlemesine yardımcı olur. @@ -359,9 +359,9 @@ >, Aşağı Taşı, Ekle...Ekle…, Düzenle...Düzenle… ve Kaldır) ve bir liste kutusu (uygulamaları listeleyen) bulunur. @@ -374,14 +374,14 @@ >&MIME; türü başına neden birden çok uygulama var? Buna niye gerek var? &kde;'nin yüzlerce dosya ilişkilendirmesi ile önceden yapılandırılmış olduğunu söyleyerek başlamıştık. Gerçekte, &kde;'nin kurulu olduğu her sistemde farklı bir uygulama seçkisi vardır. &MIME; türü başına birden çok ilişkilendirmeye izin vererek, &kde;, belirli bir uygulama sistemde kurulu değilse çalışmayı sürdürebilir. +>&kde;’nin yüzlerce dosya ilişkilendirmesi ile önceden yapılandırılmış olduğunu söyleyerek başlamıştık. Gerçekte, &kde;’nin kurulu olduğu her sistemde farklı bir uygulama seçkisi vardır. &MIME; türü başına birden çok ilişkilendirmeye izin vererek, &kde;, belirli bir uygulama sistemde kurulu değilse çalışmayı sürdürebilir. Örneğin: pdf &MIME; türü için bu dosya türüyle ilişkilendirilmiş iki adet uygulama vardır. İlkinin adı &okular;. Sisteminizde &okular; kurulu değilse &kde; kendiliğinden ikinci uygulama olan &krita; uygulamasını başlatır. Gördüğünüz gibi, bu, &kde;'nin arka planda siz uygulamaları kurup kaldırsanız bile pürüzsüz bir deneyim yaşatmasını sağlar. &MIME; türü için bu dosya türüyle ilişkilendirilmiş iki adet uygulama vardır. İlkinin adı &okular;. Sisteminizde &okular; kurulu değilse &kde; kendiliğinden ikinci uygulama olan &krita; uygulamasını başlatır. Gördüğünüz gibi, bu, &kde;’nin arka planda siz uygulamaları kurup kaldırsanız bile pürüzsüz bir deneyim yaşatmasını sağlar. Ekle...Ekle… ile etiketli düğmeye tıklayarak listeye yeni uygulamalar ekleyebilirsiniz. Bir iletişim kutusu açılır. Bu kutuyu kullanarak, bu &MIME; türü için kullanmak istediğiniz uygulamayı seçebilirsiniz. İşiniz bittiğinde Tamam düğmesine tıklayın ve uygulama geçerli listeye eklenir. Belirli bir &MIME; türü için uygulama seçeneklerini değiştirmek için onu listede seçin ve Düzenle...Düzenle… düğmesine tıklayın. Bu, içinde Genel, %f - tek bir dosya adı%f — tek bir dosya adı %F - bir dosyalar listesi; birden çok dosyayı aynı anda açabilen uygulamalarda kullanın%F — bir dosyalar listesi; birden çok dosyayı aynı anda açabilen uygulamalarda kullanın %u - tek bir &URL;%u — tek bir &URL; %U - bir &URL;'ler listesi%U — bir &URL;’ler listesi %d - açılacak dosyanın bulunduğu klasör%d — açılacak dosyanın bulunduğu klasör %D - bir klasörler listesi%D — bir klasörler listesi %i - simge%i — simge %m - ufak simge%m — ufak simge %c - başlık%c — başlık @@ -508,7 +508,7 @@ > 'application' grubu için ayarları kullan +>“application” grubu için ayarları kullan Bu, &MIME; türünün, &MIME; türü için olan ayarları kullanmasını sağlar. (Eğer bir ses &MIME; türünü düzenliyorsanız ses (audio) grubu için olan ayarlar kullanılır).&dolphin; veya &konqueror; gibi bir dosya yöneticisi kullanıyorsanız sağ tıklamanızda Birlikte Aç...Birlikte Aç… menü ögesi bulunur. Bu kutu, görünecek uygulamaları listeler ve görünecekleri sıra bu liste kutusundakiyle aynıdır. &FDLNotice; 2010-09-21 +>2010‒09‒21 KDE 4.5 @@ -90,7 +90,7 @@ does this really work? --> &kdesu;'ya hoş geldiniz! &kdesu;, &UNIX; &kdesu;’ya hoş geldiniz! &kdesu;, &UNIX; su komutunun K Masaüstü Ortamı için hazırlanmış bir grafiksel ön yüzüdür. Bir programı, başka bir kullanıcının parolasını sağlayarak o kullanıcıymış gibi çalıştırmaya izin verir. &kdesu; ayrıcalıksız bir programdır, sistemin sukf5-config --path libexec
konumunda kurulu olduğundan ve dolayısıyla PATH'inizde olmadığından, ’inizde olmadığından, kdesu komutunu başlatmak için $(kf5-config --path libexec) Bu seçenek, &kdesu;'nun Bu seçenek, &kdesu;’nun .desktop dosyalarında etkili kullanımını sağlar. &kdesu;'ya dosyalarında etkili kullanımını sağlar. &kdesu;’ya dosya parametresiyle verilen dosyayı incelemesini söyler. Dosyaya geçerli kullanıcı tarafından yazılabiliyorsa &kdesu; komutu geçerli kullanıcı olarak yürütür. Aksi durumda, komut kullanıcı Öncelik değerini ayarlayın. Öncelik, 1-100 arasında herhangi bir numaradır; 100 en yüksek önceliği ve 0 ise en düşük önceliği belirtir. Öntanımlı değer 50’dir. +>Öncelik değerini ayarlayın. Öncelik, 1–100 arasında herhangi bir numaradır; 100 en yüksek önceliği ve 0 ise en düşük önceliği belirtir. Öntanımlı değer 50’dir. @@ -355,7 +355,7 @@ does this really work? > &kdesu;'nun en yaygın kullanımı bir komutu yönetici kullanıcı olarak çalıştırmak olsa da, herhangi bir kullanıcı adını ve parolayı da verebilirsiniz. +>&kdesu;’nun en yaygın kullanımı bir komutu yönetici kullanıcı olarak çalıştırmak olsa da, herhangi bir kullanıcı adını ve parolayı da verebilirsiniz. @@ -390,7 +390,7 @@ does this really work? &kdesu;, yetki almak için sistemin su komutunu kullanır. Bu bölümde, &kdesu;'nun bunu nice yaptığı anlatılır. +> komutunu kullanır. Bu bölümde, &kdesu;’nun bunu nice yaptığı anlatılır. Bazı özelliği içerir. Güvenlik konusunda ilgiliyseniz bu paragrafı okumalısınız. &kdesu;'nun parolaları anımsamasına izin vermek sisteminizde (ufak) bir güvenlik açığı doğurur. Tabii ki &kdesu; sizin kullanıcı kimliğiniz dışındaki kimsenin parolanızı kullanmasına izin vermez; ancak dikkatli kullanılmazsa bu &kdesu;’nun parolaları anımsamasına izin vermek sisteminizde (ufak) bir güvenlik açığı doğurur. Tabii ki &kdesu; sizin kullanıcı kimliğiniz dışındaki kimsenin parolanızı kullanmasına izin vermez; ancak dikkatli kullanılmazsa bu yönetici'nin güvenlik düzeyini normal bir kullanıcının düzeyine (sen) düşürür. Hesabınızı kıran bir deşici, ’nin güvenlik düzeyini normal bir kullanıcının düzeyine (sen) düşürür. Hesabınızı kıran bir deşici, yönetici erişimi alabilir. &kdesu; bunu engellemeye çalışır. Kullandığı güvenlik şeması görece güvenlidir ve burada açıklanmıştır. diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kdesu/man-kdesu.1.docbook b/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kdesu/man-kdesu.1.docbook index c959a61bf8..dfa9824573 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kdesu/man-kdesu.1.docbook +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/docs/kdesu/man-kdesu.1.docbook @@ -10,7 +10,7 @@ &Lauri.Watts; &Lauri.Watts.mail; 2010-09-18 +>2010‒09‒18 K Masaüstü Ortamı @@ -135,7 +135,7 @@ >kf5-config --path libexec konumunda kurulu olduğundan ve dolayısıyla PATH'inizde olmadığından, ’inizde olmadığından, kdesu komutunu başlatmak için $(kf5-config --path libexec) Bu seçenek, &kdesu;'nun Bu seçenek, &kdesu;’nun .desktop dosyalarında etkili kullanımını sağlar. &kdesu;'ya dosyalarında etkili kullanımını sağlar. &kdesu;’ya dosya parametresiyle verilen dosyayı incelemesini söyler. Dosyaya geçerli kullanıcı tarafından yazılabiliyorsa &kdesu; komutu geçerli kullanıcı olarak yürütür. Aksi durumda, komut kullanıcı Öncelik değerini ayarlayın. Öncelik, 1-100 arasında herhangi bir numaradır; 100 en yüksek önceliği ve 0 ise en düşük önceliği belirtir. Öntanımlı değer 50’dir. +>Öncelik değerini ayarlayın. Öncelik, 1–100 arasında herhangi bir numaradır; 100 en yüksek önceliği ve 0 ise en düşük önceliği belirtir. Öntanımlı değer 50’dir. @@ -260,7 +260,7 @@ > kdesu ardalan sürecini durdurun. Bu, başarılı parolaları arka planda önbellekleyen ardalan sürecidir. Bu özellik aynı zamanda &kdesu;'nun ilk başlatılmasında ile de devre dışı bırakılabilir. @@ -286,7 +286,7 @@ > &kdesu;'nun en yaygın kullanımı bir komutu yönetici kullanıcı olarak çalıştırmak olsa da, herhangi bir kullanıcı adını ve parolayı da verebilirsiniz. +>&kdesu;’nun en yaygın kullanımı bir komutu yönetici kullanıcı olarak çalıştırmak olsa da, herhangi bir kullanıcı adını ve parolayı da verebilirsiniz. @@ -327,7 +327,7 @@ Daha ayrıntılı kullanıcı belgelendirmesi help:/kdesu (ya bu &URL;'yi &konqueror;'a girin ya da (ya bu &URL;’yi &konqueror;’a girin ya da khelpcenter , 2017. -# SPDX-FileCopyrightText: 2024 Emir SARI +# SPDX-FileCopyrightText: 2024, 2026 Emir SARI msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" -"PO-Revision-Date: 2024-09-15 21:40+0300\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-05-02 19:50+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Volkan Gezer" +msgstr "Volkan GEZER" #, kde-format msgctxt "EMAIL OF TRANSLATORS" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/tr/kcm_filetypes.po index 196eb689af..3895b9d3ae 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/kcm_filetypes.po @@ -10,13 +10,13 @@ # Onur Küçük , 2010. # Serdar SOYTETİR , 2010. # Volkan Gezer , 2014, 2017. -# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025 Emir SARI +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025, 2026 Emir SARI msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" -"PO-Revision-Date: 2025-02-17 19:43+0300\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" +"PO-Revision-Date: 2026-05-02 19:55+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -24,12 +24,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 25.03.70\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Görkem Çetin, Emir SARI" +msgstr "Görkem ÇETİN, Emir SARI" #, kde-format msgctxt "EMAIL OF TRANSLATORS" @@ -178,12 +178,12 @@ msgstr "Yeni Uzantı Ekle" msgid "Extension:" msgstr "Uzantı:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Dosya türü %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "“%1” grubu için ayarları kullan" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/tr/kde-inhibit.po index eacb9f81f7..5491f7b39f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-13 21:51+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/tr/kdesu.po index 292836a513..97e6cd9724 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/kdesu.po @@ -5,13 +5,13 @@ # Serdar Soytetir , 2007, 2008, 2009, 2011. # Volkan Gezer , 2013, 2014, 2017. # Kaan Ozdincer , 2014. -# SPDX-FileCopyrightText: 2022, 2023, 2024 Emir SARI +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2026 Emir SARI msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" -"PO-Revision-Date: 2024-09-15 21:42+0300\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-05-02 19:42+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -19,12 +19,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Serdar Soytetir, Mehmet Tarımcı" +msgstr "Serdar SOYTETİR, Mehmet Tarımcı" #, kde-format msgctxt "EMAIL OF TRANSLATORS" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/tr/kioclient.po index c543f8baa4..78bfa33f11 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/kioclient.po @@ -8,21 +8,21 @@ # Ozan Çağlayan , 2010, 2013. # Ongun Kanat , 2014. # Volkan Gezer , 2017. -# SPDX-FileCopyrightText: 2022, 2023, 2024 Emir SARI +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025 Emir SARI msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2024-09-15 21:48+0300\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-14 13:13+0300\n" "Last-Translator: Emir SARI \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 25.07.70\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -34,7 +34,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "ongun.kanat@gmail.com, emir_sari@icloud.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -43,7 +43,7 @@ msgstr "" "\n" "Sözdizim:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -52,10 +52,10 @@ msgid "" "\n" msgstr "" " %1 “URL”\n" -" # “URL”nin bir özellikler penceresini açar’\n" +" # “URL”nin özellikler iletişim kutusunu açar\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -74,7 +74,7 @@ msgstr "" " # algılanır. “URL”, bir belge, *.desktop dosyası veya bir\n" " # yürütülebilir olabilir.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -93,7 +93,7 @@ msgstr "" " # Kısa sürüm “kioclient mv” de ayrıca kullanılabilir.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -109,7 +109,7 @@ msgstr "" " # listesi olabilir. Eğer yoksa bir URL istenir.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -125,7 +125,7 @@ msgstr "" " # Kısa sürüm ’kioclient cp’ ayrıca vardır.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -137,7 +137,7 @@ msgstr "" " # “URL” dosyasının içeriğini standart çıktıya yazdırır\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -149,7 +149,7 @@ msgstr "" " # “URL”de bulunan dizin içeriğini standart çıktıya listeler\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -164,7 +164,17 @@ msgstr "" " # “URL” bir URL’ler listesi olabilir.\n" " # Kısa sürüm ’kioclient rm’ ayrıca vardır.\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 “URL”\n" +" # “URL” konumunda bir dizin oluşturur\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -176,7 +186,7 @@ msgstr "" " # “URL” için tüm kullanılabilir bilgiyi gösterir\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -188,12 +198,12 @@ msgstr "" " # Yalın bir uygulama başlatıcısı açar.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Örnekler:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -206,7 +216,7 @@ msgstr "" " // uygulama ile açar\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -217,7 +227,7 @@ msgstr "" " // URL’yi, ftp:// scheme için öntanımlı işleyiciyle açar\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -228,7 +238,7 @@ msgstr "" " // emacs uygulamasını başlatır\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -241,22 +251,22 @@ msgstr "" " // Çok kullanışlıdır.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO İstemcisi" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Ağ geçişli işlemler için komut satırı aracı" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "İleti kutularını ve diğer yerel bildirimleri kullan" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -265,80 +275,80 @@ msgstr "" "Etkileşimli olmayan kullanım: İleti kutusu yok. Eğer grafiksel bir bağlantı " "istemiyorsanız “--platform offscreen” kullanın" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Hedef varsa üzerine yaz (kopyala ve taşı işlemi için)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "dosya veya URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "URL’ler…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Kaynak URL veya URL’ler" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Hedef URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "URL" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Kullanılabilir komutları göster" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Komut (bkz. --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "komut" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Komut için argümanlar" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Sözdizim hatası, yeterli argüman yok\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Sözdizim hatası, pek çok argüman\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Dosyaların indirileceği hedef" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Sözdizim hatası, bilinmeyen komut “%2”\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/tr/kmimetypefinder.po index 71125aaf8a..c4de4c8e55 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/kmimetypefinder.po @@ -4,13 +4,13 @@ # # Serdar Soytetir , 2007, 2008, 2009. # Volkan Gezer , 2014, 2015. -# SPDX-FileCopyrightText: 2022, 2023, 2024 Emir SARI +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2026 Emir SARI msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" -"PO-Revision-Date: 2024-09-15 21:49+0300\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-05-02 19:50+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -18,12 +18,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Volkan Gezer" +msgstr "Volkan GEZER" #, kde-format msgctxt "EMAIL OF TRANSLATORS" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/tr/kstart.po index b7ec31ec61..d43b2ddeb8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/kstart.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-09-15 21:49+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" @@ -49,38 +49,38 @@ msgstr "Uygulamaları başlatmak için izlence" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997–2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Yürütülecek komut" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "’a alternatif: Başlatılacak masaüstü dosyası; örneğin, org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "--application kullanırken uygulamaya geçirilecek isteğe bağlı URL" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Belirtilen komut yok" diff --git a/local/recipes/kde/kde-cli-tools/source/po/tr/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/tr/plasma-open-settings.po index d038b4d390..a4007f8aed 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/tr/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/tr/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-09-15 21:50+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ug/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/ug/kcm_filetypes.po index 2817630eef..8c387a166f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ug/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ug/kcm_filetypes.po @@ -7,30 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" -"PO-Revision-Date: 2013-09-08 07:04+0900\n" -"Last-Translator: Gheyret Kenji \n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" +"PO-Revision-Date: 2026-04-01 08:50-0400\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur Computer Science Association \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "ئابدۇقادىر ئابلىز, غەيرەت كەنجى" +msgstr "ئابدۇقادىر ئابلىز، غەيرەت كەنجى" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "sahran.ug@gmail.com, gheyret@gmail.com" +msgstr "sahranbay@gmail.com, gheyret@gmail.com" #: filegroupdetails.cpp:22 #, kde-format msgid "Left Click Action (only for Konqueror file manager)" -msgstr "سول چېكىش مەشغۇلاتى(پەقەتلا Konqueror ھۆججەت باشقۇرغۇچىسى ئۈچۈن)" +msgstr "سول چېكىش مەشغۇلاتى(پەقەتلا Konqueror ھۆججەت باشقۇرغۇچىسى ئۈچۈن)" #: filegroupdetails.cpp:26 filetypedetails.cpp:134 #, kde-format @@ -54,9 +55,9 @@ msgstr "" "بۇ يەردە مەزكۇر گۇرۇپپىغا تەۋە بىرەر ھۆججەتنى چەككەندە Konqueror ھۆججەت " "باشقۇرغۇ قانداق ئىش قىلىدۇ بەلگىلەيسىز. Konqueror ھۆججەتنى سىڭدۈرمە كۆرگۈ " "ئىچىدە كۆرسىتەلەيدۇ ياكى ئۇنى ئايرىم ئىجرا قىلالايدۇ. بۇ خىل بىرەر " -"كۆرسىتىلگەن ھۆججەت تىپىغا مۇناسىۋەتلىك مەشغۇلاتنى ھۆججەت تىپى سەپلىمىسىنىڭ " +"كۆرسىتىلگەن ھۆججەت تۈرىغا مۇناسىۋەتلىك مەشغۇلاتنى ھۆججەت تۈرى سەپلىمىسىنىڭ " "‹سىڭدۈرۈش› بەتكۈچىدە تەوشىيەلەيسىز. Dolphin ھۆججەتلەرنى ھەمىشە ئايرىم " -"كۆرگۈدە كۆرسىتىدۇ." +"كۆرگۈدە كۆرسىتىدۇ" #: filetypedetails.cpp:61 #, kde-format @@ -64,7 +65,7 @@ msgid "" "This button displays the icon associated with the selected file type. Click " "on it to choose a different icon." msgstr "" -"بۇ توپچا تاللانغان ھۆججەتكە ماسلاشتۇرۇلغان سىنبەلگىنى كۆرسىتىدۇ.باشقىنى " +"بۇ توپچە تاللانغان ھۆججەتكە ماسلاشتۇرۇلغان سىنبەلگىنى كۆرسىتىدۇ. باشقىنى " "تاللاش ئۈچۈن ئۇنى چېكىڭ." #: filetypedetails.cpp:67 @@ -81,7 +82,7 @@ msgid "" "text files." msgstr "" "بۇ كۆزنەكچىدە تاللانغان تىپتىكى ھۆججەتلەرنى پەرق قىلىشقا ئىشلىتىدىغان " -"ئەندىزە تىزىمى بار. مەسىلەن: ئەندىزە *.txt بولسا ھۆججەت تىپى ‹text/plain› " +"ئەندىزە تىزىمى بار. مەسىلەن: ئەندىزە *.txt بولسا ھۆججەت تۈرى ‹text/plain› " "بولغان ھۆججەتلەرنى كۆرسىتىدۇ؛ ھۆججەت ئاتى ‹.txt› بولغان بارلىق ھۆججەتلەر " "ئادەتتە تېكىست ھۆججەتلىرى دەپ قارىلىدۇ." @@ -118,7 +119,7 @@ msgid "" "to display directory content." msgstr "" "تاللانغان ھۆججەت تىپنىڭ قىسقىچە چۈشەندۈرۈشى(‹HTML بېتى› دېگەندەك) . بۇ " -"چۈسەندۈرۈشى Konqueror دەك پروگراممىلار مۇندەرىجە مەزمۇنىنى كۆرسەتكەندە " +"چۈسەندۈرۈشى Konqueror دەك پىروگراممىلار مۇندەرىجە مەزمۇنىنى كۆرسەتكەندە " "ئىشلىتىلىدۇ." #: filetypedetails.cpp:129 @@ -129,7 +130,7 @@ msgstr "Konqueror دىكى سول چېكىش مەشغۇلاتى" #: filetypedetails.cpp:138 #, kde-format msgid "Ask whether to save to disk instead (only for Konqueror browser)" -msgstr "دىسكىغا ساقلامدۇ سورا(Konqueror توركۆرگۈسى ئۈچۈنلا)" +msgstr "دىسكىغا ساقلامدۇ يوق (Konqueror توركۆرگۈسى ئۈچۈنلا)" #: filetypedetails.cpp:154 #, kde-format @@ -146,7 +147,7 @@ msgstr "" "ئىچىدە كۆرسىتەلەيدۇ ياكى ئۇنى ئايرىم ئىجرا قىلالايدۇ. ئەگەر ‹گۇرۇپپا G ئۈچۈن " "تەڭشەكنى ئىشلىتىش› بەلگىلەنسە، ھۆججەت باشقۇرغۇ گۇرۇپپا G غا تەۋە بولغان " "ھۆججەتنىڭ تەڭشىكىگە ئاساسەن مەشغۇلات ئېلىپ بارىدۇ. مەسىلەن : نۆۋەتتىكى " -"ھۆججەت تىپى image/png بولسا، ‹سۈرەت› دەپ بىر تەرەپ قىلىدۇ. Dolphin " +"ھۆججەت تۈرى image/png بولسا، ‹سۈرەت› دەپ بىر تەرەپ قىلىدۇ. Dolphin " "ھۆججەتلەرنى ھەمىشە ئايرىم كۆرگۈدە كۆرسىتىدۇ." #: filetypedetails.cpp:167 @@ -169,21 +170,20 @@ msgstr "يېڭى كېڭەيتىلمە قوش" msgid "Extension:" msgstr "كېڭەيتىلمە:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" -msgstr "ھۆججەت تىپى %1" +msgstr "ھۆججەت تۈرى %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "تەڭشەكلەرنى «%1» گۇرۇپپىسىغا ئىشلەت" #: filetypesview.cpp:57 -#, fuzzy, kde-format -#| msgid "Find file type or filename pattern" +#, kde-format msgid "Search for file type or filename pattern..." -msgstr "ھۆججەت تىپى ياكى ھۆججەت ئاتى ئەندىزىسىنى ئىزدە" +msgstr "ھۆججەت تۈرى ۋە ھۆججەت ئاتىنىڭ ئەندىزىسىنى ئىزدە…" #: filetypesview.cpp:63 #, kde-format @@ -193,7 +193,7 @@ msgid "" "name as it appears in the list." msgstr "" "ھۆججەت ئەندىزىسىنىڭ بىر بۆلىكىنى كىرگۈزۈڭ، شۇنىڭ بىلەن مۇشۇ ئەندىزىگە ماس " -"كېلىدىغان ھۆججەتلەرلا تىزىمدا كۆرسىتىلىدۇ. يەنە ھۆججەت تىپىنىڭ بىر بۆلىكىنى " +"كېلىدىغان ھۆججەتلەرلا تىزىمدا كۆرسىتىلىدۇ. يەنە ھۆججەت تۈرىنىڭ بىر بۆلىكىنى " "كىرگۈزسىمۇ بولۇۋېرىدۇ." #: filetypesview.cpp:71 multiapplydialog.cpp:27 @@ -209,16 +209,16 @@ msgid "" "collapse it. Select a file type (e.g. text/html for HTML files) to view/edit " "the information for that file type using the controls on the right." msgstr "" -"بۇ يەردە سىستېمىڭىزدىكى مەلۇملۇق ھۆججەت تىپىنىڭ تىزىمى كۆرسىتىلىدۇ. ‹+› " +"بۇ يەردە سىستېمىڭىزدىكى مەلۇملۇق ھۆججەت تۈرىنىڭ تىزىمى كۆرسىتىلىدۇ. ‹+› " "بەلگىسىنى چەكسىڭىز شۇ گۇرۇپپىغا تەۋە ھەممىسى يېيىلىپ كۆرسىتىلىدۇ، ‹-› نى " -"چەكسە يىغىلىدۇ. بىرەر ھۆججەت تىپىنى(مەسىلەن: HTML ھۆججەتلىرى ئۈچۈن text/" +"چەكسە يىغىلىدۇ. بىرەر ھۆججەت تۈرىنى(مەسىلەن: HTML ھۆججەتلىرى ئۈچۈن text/" "html) تاللاپ ، ئوڭ تەرەپتىكى تاختىدىكى كۆرۈش/تەھرىرلەشنى بېسىپ مەشغۇلات " "قىلسىڭىزمۇ بولىدۇ." #: filetypesview.cpp:91 #, kde-format msgid "Click here to add a new file type." -msgstr "يېڭى ھۆججەت تىپى قوشۇش ئۈچۈن بۇ يېرىنى چېكىڭ." +msgstr "يېڭى ھۆججەت تۈرى قوشۇش ئۈچۈن بۇ جاي چېكىلىدۇ." #: filetypesview.cpp:93 filetypesview.cpp:389 #, kde-format @@ -228,7 +228,7 @@ msgstr "چىقىرىۋەت(&R)" #: filetypesview.cpp:119 #, kde-format msgid "Select a file type by name or by extension" -msgstr "ھۆججەت ئاتى ياكى ھۆججەت كېڭەيتىلمە ئاتى ھۆججەت تىپىنى تاللايدۇ" +msgstr "ھۆججەت ئاتى ياكى ھۆججەت كېڭەيتىلمە ئاتى ھۆججەت تۈرىنى تاللايدۇ" #: filetypesview.cpp:382 #, kde-format @@ -238,7 +238,7 @@ msgstr "ئەسلىگە قايتۇر(&R)" #: filetypesview.cpp:383 #, kde-format msgid "Revert this file type to its initial system-wide definition" -msgstr "ھۆججەت تىپىنى ئۇنىڭ دەسلەپكى سىستېما مىقياسىدىكى قىممىتىگە قايتۇرىدۇ." +msgstr "ھۆججەت تۈرىنى ئۇنىڭ دەسلەپكى سىستېما مىقياسىدىكى قىممىتىگە قايتۇرىدۇ" #: filetypesview.cpp:385 #, kde-format @@ -257,7 +257,7 @@ msgstr "" #: filetypesview.cpp:390 #, kde-format msgid "Delete this file type definition completely" -msgstr "بۇ ھۆججەت تىپىنى تەلتۆكۈس ئۆچۈر" +msgstr "بۇ ھۆججەت تۈرىنى تەلتۆكۈس ئۆچۈر" #: filetypesview.cpp:392 #, kde-format @@ -268,24 +268,23 @@ msgid "" "of them being used (but the file type determination from file contents can " "still end up using them)." msgstr "" -"بۇ يەرنى چېكىپ بۇ ھۆججەت تىپىنىڭ ئېنىقلىمىسىنى ئۆچۈرەلەيسىز. بۇ پەقەتلا " -"ئىشلەتكۈچى بەلگىلىگەن ھۆججەت تىپىغىلا ئىشلەيدۇ(ئۆچۈرگىلى بولىدۇ). سىستېما " -"مىقياسىدىكى ھۆججەت تىپىنىڭ ئېنىقلىمىسىنى ئۆچۈرگىلى بولمايدۇ. ئۇنى قۇرۇق " +"بۇ يەرنى چېكىپ بۇ ھۆججەت تۈرىنىڭ ئېنىقلىمىسىنى ئۆچۈرەلەيسىز. بۇ پەقەتلا " +"ئىشلەتكۈچى بەلگىلىگەن ھۆججەت تۈرىغىلا ئىشلەيدۇ(ئۆچۈرگىلى بولىدۇ). سىستېما " +"مىقياسىدىكى ھۆججەت تۈرىنىڭ ئېنىقلىمىسىنى ئۆچۈرگىلى بولمايدۇ. ئۇنى قۇرۇق " "قالدۇرسىمۇ بولىدۇ(ئەگەر ھۆججەت مەزمۇنىغا ئاساسەن ھۆججەتنىڭ تىپىنى " "بەلگىلىيەلىسە شۇنى ئىشلىتىدۇ)" #: keditfiletype.cpp:114 -#, fuzzy, kde-format -#| msgid "File type %1" +#, kde-format msgid "File Type Editor" -msgstr "ھۆججەت تىپى %1" +msgstr "ھۆججەت تۈرى تەھرىرلىگۈچ" #: keditfiletype.cpp:116 #, kde-format msgid "" "KDE file type editor - simplified version for editing a single file type" msgstr "" -"ك د ئې(KDE) ھۆججەت تىپى تەھرىرلىگۈچىسى - بىرلا ھۆججەت تىپىنى تەھرىرلەيدىغان " +"KDE ھۆججەت تۈرى تەھرىرلىگۈچىسى - بىرلا ھۆججەت تۈرىنى تەھرىرلەيدىغان " "ئاددىيلاشتۇرۇلغان نەشرى" #: keditfiletype.cpp:118 @@ -306,12 +305,12 @@ msgstr "David Faure" #: keditfiletype.cpp:126 #, kde-format msgid "Makes the dialog transient for the window specified by winid" -msgstr "winid دا بەلگىلەنگەن كۆزنەكنىڭ سۆزلەشكۈسىنى سۈزۈك قىلىدۇ." +msgstr "winid دا بەلگىلەنگەن كۆزنەكنىڭ سۆزلەشكۈسىنى سۈزۈك قىلىدۇ" #: keditfiletype.cpp:128 #, kde-format msgid "File type to edit (e.g. text/html)" -msgstr "تەھرىرلەيدىغان ھۆججەت تىپى(مەسىلەن text/html)" +msgstr "تەھرىرلەيدىغان ھۆججەت تۈرى(مەسىلەن text/html)" #: keditfiletype.cpp:159 #, kde-format @@ -321,12 +320,12 @@ msgstr "%1 ھۆججەت" #: keditfiletype.cpp:182 #, kde-format msgid "Edit File Type %1" -msgstr "ھۆججەت تىپى %1 نى تەھرىرلەش" +msgstr "ھۆججەت تۈرى %1 نى تەھرىرلەش" #: keditfiletype.cpp:184 #, kde-format msgid "Create New File Type %1" -msgstr "يېڭى ھۆججەت تىپى %1 نى قۇرۇش" +msgstr "يېڭى ھۆججەت تۈرى %1 نى قۇرۇش" #: kservicelistwidget.cpp:46 #, kde-format @@ -336,7 +335,7 @@ msgstr "%1 (%2)" #: kservicelistwidget.cpp:51 #, kde-format msgid "Application Preference Order" -msgstr "پروگرامما مەرتىۋە تەرتىپى" +msgstr "پىروگرامما مەرتىۋە تەرتىپى" #: kservicelistwidget.cpp:51 #, kde-format @@ -352,9 +351,9 @@ msgid "" "then the list is ordered by priority with the uppermost item taking " "precedence over the others." msgstr "" -"بۇ تاللانغان ھۆججەت تىپى بىلەن مۇناسىۋەتلەشتۈرۈلگەن پروگراممىلارنىڭ " +"بۇ تاللانغان ھۆججەت تۈرى بىلەن مۇناسىۋەتلەشتۈرۈلگەن پىروگراممىلارنىڭ " "تىزىمىدۇر. بۇ تىزىم Konqueror نىڭ «بۇنىڭدا ئېچىش…» دېگەن تىزىملىكى " -"تاللانغاندا كۆرسىتىلىدۇ. ئەگەر بۇ ھۆججەت تىپىغا بىردىن كۆپ پروگرامما " +"تاللانغاندا كۆرسىتىلىدۇ. ئەگەر بۇ ھۆججەت تۈرىغا بىردىن كۆپ پىروگرامما " "مۇناسىۋەتلەشتۈرۈلگەن بولسا مەرتىۋىسى بويىچە تىزىلىپ كۆرسىتىلىدۇ." #: kservicelistwidget.cpp:68 @@ -366,9 +365,9 @@ msgid "" "type, then the list is ordered by priority with the uppermost item taking " "precedence over the others." msgstr "" -"بۇ تاللانغان ھۆججەت تىپى بىلەن مۇناسىۋەتلەشتۈرۈلگەن پروگراممىلارنىڭ " +"بۇ تاللانغان ھۆججەت تۈرى بىلەن مۇناسىۋەتلەشتۈرۈلگەن پىروگراممىلارنىڭ " "تىزىمىدۇر. بۇ تىزىم Konqueror نىڭ «بۇنىڭدا ئالدىن كۆرۈش…» دېگەن تىزىملىكى " -"تاللانغاندا كۆرسىتىلىدۇ. ئەگەر بۇ ھۆججەت تىپىغا بىردىن كۆپ پروگرامما " +"تاللانغاندا كۆرسىتىلىدۇ. ئەگەر بۇ ھۆججەت تۈرىغا بىردىن كۆپ پىروگرامما " "مۇناسىۋەتلەشتۈرۈلگەن بولسا مەرتىۋىسى بويىچە تىزىلىپ كۆرسىتىلىدۇ." #: kservicelistwidget.cpp:80 @@ -384,10 +383,10 @@ msgid "" "only affects the selected application if the file type is\n" "associated with more than one application." msgstr "" -"تاللانغان پروگراممىغا يۇقكىرى مەرتىۋە بېرىپ، \n" +"تاللانغان پىروگرامما ئالدىنلىقىنى ئۆستۈرۈپ، \n" "ئۇنى تىزىمنىڭ ئۈستىگە يۆتكەيدۇ. دىققەت: ئەگەر ھۆججەت \n" -"تىپىغا بىرنەچچە پروگرامما ماسلاشتۇرۇلغان بولسا، بۇ پەقەت \n" -"تاللانغان پروگراممىغىلا تەسىر قىلىدۇ." +"تۈرىگە بىرنەچچە پىروگرامما ماسلاشتۇرۇلغان بولسا، بۇ پەقەت \n" +"تاللانغان پىروگراممىغىلا تەسىر قىلىدۇ." #: kservicelistwidget.cpp:90 #, kde-format @@ -395,7 +394,7 @@ msgid "" "Assigns a higher priority to the selected\n" "service, moving it up in the list." msgstr "" -"تاللانغان مۇلازىمەتكە يۇقكىرى مەرتىۋە بېرىپ، \n" +"تاللانغان مۇلازىمەت ئالدىنلىقىنى ئۆستۈرۈپ، \n" "ئۇنى تىزىمنىڭ ئۈستىگە يۆتكەيدۇ." #: kservicelistwidget.cpp:93 @@ -411,10 +410,10 @@ msgid "" "only affects the selected application if the file type is\n" "associated with more than one application." msgstr "" -"تاللانغان پروگراممىغا تۆۋەن مەرتىۋە بېرىپ، \n" +"تاللانغان پىروگرامما ئالدىنلىقىنى تۆۋەنلىتىپ، \n" "ئۇنى تىزىمنىڭ ئاستىغا يۆتكەيدۇ. دىققەت: ئەگەر ھۆججەت \n" -"تىپىغا بىرنەچچە پروگرامما ماسلاشتۇرۇلغان بولسا، بۇ پەقەت \n" -"تاللانغان پروگراممىغىلا تەسىر قىلىدۇ." +"تىپىغا بىرنەچچە پىروگرامما ماسلاشتۇرۇلغان بولسا، بۇ پەقەت \n" +"تاللانغان پىروگراممىغىلا تەسىر قىلىدۇ." #: kservicelistwidget.cpp:102 #, kde-format @@ -422,13 +421,13 @@ msgid "" "Assigns a lower priority to the selected\n" "service, moving it down in the list." msgstr "" -"تاللانغان مۇلازىمەتكە تۆۋەن مەرتىۋە بېرىپ، \n" +"تاللانغان مۇلازىمەت ئالدىنلىقىنى تۆۋەنلىتىپ، \n" "ئۇنى تىزىمنىڭ ئاستىغا يۆتكەيدۇ." #: kservicelistwidget.cpp:110 #, kde-format msgid "Add a new application for this file type." -msgstr "بۇ تىپتىكى ھۆججەتكە يېڭى پروگرامما قوشىدۇ." +msgstr "بۇ تىپتىكى ھۆججەتكە يېڭى پىروگرامما قوشىدۇ." #: kservicelistwidget.cpp:112 #, kde-format @@ -438,22 +437,22 @@ msgstr "تەھرىر…" #: kservicelistwidget.cpp:117 #, kde-format msgid "Edit command line of the selected application." -msgstr "تاللانغان پروگراممىنىڭ بۇيرۇق قۇرىنى تەھرىرلەيدۇ." +msgstr "تاللانغان پىروگراممىنىڭ بۇيرۇق قۇرىنى تەھرىرلەيدۇ." #: kservicelistwidget.cpp:124 #, kde-format msgid "Remove the selected application from the list." -msgstr "تىزىمدىن تاللانغان پروگراممىنى چىقىرىۋېتىدۇ." +msgstr "تىزىمدىن تاللانغان پىروگراممىنى چىقىرىۋېتىدۇ." #: kservicelistwidget.cpp:126 multiapplydialog.cpp:19 #, kde-format msgid "Apply To..." -msgstr "" +msgstr "قوللان…" #: kservicelistwidget.cpp:131 #, kde-format msgid "Apply the current preference order to other file types." -msgstr "" +msgstr "نۆۋەتتىكى مايىللىق تەرتىپىنى باشقا ھۆججەت تۈرىگە قوللىنىدۇ." #: kservicelistwidget.cpp:154 #, kde-format @@ -480,7 +479,7 @@ msgstr "مۇلازىمەت تاللا:" #: newtypedlg.cpp:25 #, kde-format msgid "Create New File Type" -msgstr "يېڭى ھۆججەت تىپى قۇر" +msgstr "يېڭى ھۆججەت تۈرى قۇر" #: newtypedlg.cpp:30 #, kde-format @@ -490,7 +489,7 @@ msgstr "گۇرۇپپا:" #: newtypedlg.cpp:39 #, kde-format msgid "Select the category under which the new file type should be added." -msgstr "يېڭى ھۆججەت تىپى قوشۇلىدىغان كاتېگورىيىنى تاللايدۇ." +msgstr "يېڭى ھۆججەت تۈرى قوشۇلىدىغان كاتېگورىيىنى تاللايدۇ." #: newtypedlg.cpp:44 #, kde-format @@ -504,7 +503,7 @@ msgid "" "category and you type 'custom' here, the file type 'image/custom' will be " "created." msgstr "" -"ھۆججەت تىپىنىڭ ئاتىنى كىرگۈزۈڭ. مەسىلەن: ‹image› دېگەن تۈرنى تاللاپ، " +"ھۆججەت تۈرىنىڭ ئاتىنى كىرگۈزۈڭ. مەسىلەن: ‹image› دېگەن تۈرنى تاللاپ، " "‹custom› نى كىرگۈزسىڭىز ‹image/custom› قۇرۇلىدۇ." #~ msgid "KEditFileType" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ug/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/ug/kdesu.po index f86f0106e5..62b4b860f3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ug/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ug/kdesu.po @@ -7,25 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" -"PO-Revision-Date: 2013-09-08 07:05+0900\n" -"Last-Translator: Gheyret Kenji \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-04-01 08:51-0400\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur Computer Science Association \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "ئابدۇقادىر ئابلىز, غەيرەت كەنجى" +msgstr "ئابدۇقادىر ئابلىز، غەيرەت كەنجى" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "sahran.ug@gmail.com, gheyret@gmail.com" +msgstr "sahranbay@gmail.com, gheyret@gmail.com" #: kdesu.cpp:92 #, kde-format @@ -35,12 +36,12 @@ msgstr "KDE su" #: kdesu.cpp:94 #, kde-format msgid "Runs a program with elevated privileges." -msgstr "پروگراممىنى ئاشۇرۇلغان ئىمتىياز بويىچە ئىجرا قىلىدۇ." +msgstr "پىروگراممىنى ئۆستۈرۈلگەن ئىجازەت بويىچە ئىجرا قىلىدۇ." #: kdesu.cpp:96 #, kde-format msgid "Copyright (c) 1998-2000 Geert Jansen, Pietro Iglio" -msgstr "Copyright (c) 1998-2000 Geert Jansen، Pietro Iglio" +msgstr "نەشر ھوقۇقى (c) 1998-2000 Geert Jansen، Pietro Iglio" #: kdesu.cpp:97 #, kde-format @@ -50,7 +51,7 @@ msgstr "Geert Jansen" #: kdesu.cpp:97 #, kde-format msgid "Maintainer" -msgstr "مەسئۇل كىشى" +msgstr "ئاسرىغۇچى" #: kdesu.cpp:98 #, kde-format @@ -60,22 +61,24 @@ msgstr "Pietro Iglio" #: kdesu.cpp:98 #, kde-format msgid "Original author" -msgstr "ئەسلى ئاپتور" +msgstr "ئەسلى يازغۇچى" #: kdesu.cpp:107 #, kde-format msgid "Specifies the command to run as separate arguments" -msgstr "" +msgstr "ئايرىم ئۆزگەرگۈچى بىلەن ئىجرا قىلماقچى بولغان بۇيرۇقنى بەلگىلەيدۇ" #: kdesu.cpp:108 #, kde-format msgid "Specifies the command to run as one string" -msgstr "" +msgstr "ھەرپ تىزىقى سۈپىتىدە ئىجرا قىلماقچى بولغان بۇيرۇقنى بەلگىلەيدۇ" #: kdesu.cpp:109 #, kde-format msgid "Run command under target uid if is not writable" msgstr "" +"ئەگەر غا يازغىلى بولمىسا، نىشان ئىشلەتكۈچى كىملىكى (UID) دە بۇيرۇق " +"ئىجرا قىلىنىدۇ" #: kdesu.cpp:110 #, kde-format @@ -90,37 +93,37 @@ msgstr "ئىمنى ساقلىما" #: kdesu.cpp:112 #, kde-format msgid "Stop the daemon (forgets all passwords)" -msgstr "مۇئەككەلنى توختىتىش(بارلىق ئىملارنى ئۇنتۇيدۇ)" +msgstr "نازارەتچىنى توختىتىش(بارلىق ئىملارنى ئۇنتۇيدۇ)" #: kdesu.cpp:113 #, kde-format msgid "Enable terminal output (no password keeping)" -msgstr "تېرمىنالدا چىقىرىشىنى ئىناۋەتلىك قىلىش(ئىم ساقلانمايدۇ)" +msgstr "تېرمىنالدا چىقىرىشىنى قوزغات(ئىم ساقلانمايدۇ)" #: kdesu.cpp:115 #, kde-format msgid "Set priority value: 0 <= prio <= 100, 0 is lowest" -msgstr "مەرتىۋە قىممىتىنى بەلگىلەش: 0 <= prio <= 100، 0 ئەڭ توۋەن" +msgstr "ئالدىنلىق قىممىتىنى بەلگىلەش: 0 <= prio <= 100، 0 ئەڭ توۋەن" #: kdesu.cpp:116 #, kde-format msgid "Use realtime scheduling" -msgstr "" +msgstr "شۇئان كۈنتەرتىپ ئىشلىتىدۇ" #: kdesu.cpp:117 #, kde-format msgid "Do not display ignore button" -msgstr "‹پەرۋا قىلما› توپچىسىنى كۆرسەتمىسۇن" +msgstr "‹پەرۋا قىلما› توپچىنى كۆرسەتمەيدۇ" #: kdesu.cpp:118 #, kde-format msgid "Specify icon to use in the password dialog" -msgstr "ئىم سۆزلەشكۈسىدە ئىشلىتىلىدىغان سىنبەلگىنى بەلگىلەڭ" +msgstr "ئىم سۆزلەشكۈسىدە ئىشلىتىلىدىغان سىنبەلگىنى بەلگىلەيدۇ" #: kdesu.cpp:119 #, kde-format msgid "Do not show the command to be run in the dialog" -msgstr "سۆزلەشكۈ ئىچىدە ئىجرا بولىدىغان بۇيرۇقنى كۆرسەتمىسۇن" +msgstr "سۆزلەشكۈ ئىچىدە ئىجرا بولىدىغان بۇيرۇقنى كۆرسەتمەيدۇ" #: kdesu.cpp:126 #, kde-format @@ -129,13 +132,13 @@ msgctxt "" "the winid so that it is like a dialog box rather than some separate program" msgid "Makes the dialog transient for an X app specified by winid" msgstr "" -"winid كۆرسەتكەن X پروگراممىلىرىنىڭ سۆزلەشكۈسى تېز سۈرئەتتە قىممىتىنى " +"winid كۆرسەتكەن X پىروگراممىسىنىڭ سۆزلەشكۈسى تېز ئۆزگىرىش قىممىتىنى " "ئۆزگەرتىدۇ" #: kdesu.cpp:128 #, kde-format msgid "Embed into a window" -msgstr "" +msgstr "كۆزنەككە سىڭدۈرىدۇ" #: kdesu.cpp:155 #, kde-format @@ -143,15 +146,14 @@ msgid "Cannot execute command '%1'." msgstr "بۇيرۇق «%1» نى ئىجرا قىلغىلى بولمىدى." #: kdesu.cpp:158 -#, fuzzy, kde-format -#| msgid "Cannot execute command '%1'." +#, kde-format msgid "Cannot execute command '%1'. It contains invalid characters." -msgstr "بۇيرۇق «%1» نى ئىجرا قىلغىلى بولمىدى." +msgstr "بۇيرۇق «%1» نى ئىجرا قىلغىلى بولمىدى. ئۇنىڭدا ئىناۋەتسىز ھەرپ بار." #: kdesu.cpp:232 #, kde-format msgid "Illegal priority: %1" -msgstr "خاتا مەرتىۋە: %1" +msgstr "خاتا ئالدىنلىق: %1" #: kdesu.cpp:253 #, kde-format @@ -176,7 +178,7 @@ msgstr "ئەمەلىي ۋاقىت: " #: kdesu.cpp:397 #, kde-format msgid "Priority:" -msgstr "مەرتىۋىسى:" +msgstr "ئالدىنلىق:" #: sudlg.cpp:27 #, kde-format @@ -186,7 +188,7 @@ msgstr "«%1» سۈپىتىدە ئىجرا قىل" #: sudlg.cpp:31 #, kde-format msgid "Please enter your password below." -msgstr "تۆۋەندىكى يەرگە ئىمنى كىرگۈزۈڭ." +msgstr "تۆۋەندە ئىم كىرگۈزۈڭ." #: sudlg.cpp:36 #, kde-format @@ -195,9 +197,9 @@ msgid "" "root's password below or click Ignore to continue with your current " "privileges." msgstr "" -"مەزكۇر مەشغۇلات ئۈچۈن ئالىي ئىشلەتكۈچى ئىمتىيازى كېرەك. شۇڭا ئالىي " -"ئىشلەتكۈچى نىڭ ئىمىنى كىرگۈزۈڭ ياكى ‹پەرۋا قىلما› نى چېكىپ نۆۋەتتىكى " -"ئىمتىيازدا داۋاملاشتۇرۇڭ." +"مەزكۇر مەشغۇلات ئۈچۈن ئالىي ئىشلەتكۈچى ئالدىنلىقى كېرەك. شۇڭا " +"ئالىي ئىشلەتكۈچى نىڭ ئىمىنى كىرگۈزۈڭ ياكى ‹پەرۋا قىلما› نى چېكىپ " +"نۆۋەتتىكى ئىمتىيازدا داۋاملاشتۇرۇڭ." #: sudlg.cpp:42 #, kde-format @@ -205,8 +207,8 @@ msgid "" "The action you requested needs root privileges. Please enter " "root's password below." msgstr "" -"مەزكۇر مەشغۇلات ئۈچۈن ئالىي ئىشلەتكۈچى ئىمتىيازى كېرەك. شۇڭا ئالىي " -"ئىشلەتكۈچى نىڭ ئىمىنى كىرگۈزۈڭ." +"مەزكۇر مەشغۇلات ئۈچۈن ئالىي ئىشلەتكۈچى ئالدىنلىقى كېرەك. شۇڭا " +"ئالىي ئىشلەتكۈچى نىڭ ئىمىنى كىرگۈزۈڭ." #: sudlg.cpp:49 #, kde-format @@ -236,7 +238,7 @@ msgstr "su بىلەن بولغان ئالاقە مەغلۇپ بولدى." #, kde-format msgid "" "The program 'su' could not be found.
Ensure your PATH is set correctly." -msgstr "پروگرامما ‹su› تېپىلمىدى.
PATH توغرا بەلگىلەندىمۇ تەكشۈرۈڭ." +msgstr "پىروگرامما ‹su› تېپىلمىدى.
PATH توغرا بەلگىلەندىمۇ تەكشۈرۈڭ." #: sudlg.cpp:97 #, kde-format @@ -245,6 +247,9 @@ msgid "" ">On some systems, you need to be in a special group (often: wheel) to use " "this program." msgstr "" +"ئىجازەت رەت قىلىندى.
بەلكىم ئىم خاتا، قايتا سىناڭ.
بەزى سىستېمىدا، " +"سىز ئالاھىدە بىر گۇرۇپپا (ئادەتتە: wheel) غا قوشۇلۇپ ئاندىن بۇ پىروگراممىنى " +"ئىشلىتەلەيسىز." #: sudlg.cpp:105 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/ug/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/ug/kioclient.po index 9bd12dcd1a..1f7bf1d39a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ug/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ug/kioclient.po @@ -7,52 +7,49 @@ msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2013-09-08 07:05+0900\n" -"Last-Translator: Gheyret Kenji \n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2026-04-01 08:52-0400\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur Computer Science Association \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "" +msgstr "ئابدۇقادىر ئابلىز، غەيرەت كەنجى" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "" +msgstr "sahranbay@gmail.com, gheyret@gmail.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" "Syntax:\n" msgstr "" "\n" -"گرامماتىكا:\n" +"گىرامماتىكا:\n" -#: kioclient.cpp:57 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:58 +#, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" " %1 'url'\n" " # Opens a properties dialog of 'url'\n" "\n" msgstr "" -" kioclient openProperties 'url'\n" -" # خاسلىق تىزىملىكىنى ئاچىدۇ\n" +" %1 'url'\n" +" # «url» خاسلىق سۆزلەشكۈنى ئاچىدۇ\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -64,8 +61,16 @@ msgid "" " # 'url' can be the URL of a document, a *.desktop file,\n" " # or an executable.\n" msgstr "" +" %1 'url' ['mimetype']\n" +" # KDE غا مۇناسىۋەتلىك پىروگرامما ئارقىلىق «url» يەنى تور ئادرېسى " +"كۆرسەتكەن پۈتۈكنى ئېچىشنى سىنايدۇ\n" +" # «mime تۈرى» ئۆزگەرگۈچىسىنى قىسقارتىشقا بولىدۇ، بۇ تۈرىنى " +"ئۆزلۈكىدىن بايقايدۇ.\n" +" # «url» يەنى تور ئادرېسى پۈتۈك بولسىمۇ ياكى *.desktop ھۆججەتنىڭ " +"تور ئادرېسى بولسىمۇ بولىدۇ.\n" +" # ئىجراچان پىروگرامما ھۆججىتى بولسىمۇ بولىدۇ.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -76,8 +81,16 @@ msgid "" " # The short version 'kioclient mv' is also available.\n" "\n" msgstr "" +" %1 'src' 'dest'\n" +" # URL يەنى تور ئادرېسىنى «src» يەنى مەنبەدىن «dest» يەنى نىشانغا " +"يۆتكەيدۇ.\n" +" # «src» يەنى مەنبە تور ئادرېسى تىزىمى بولۇشى مۇمكىن.\n" +" # «dest» يەنى نىشان بەلكىم «trash:/» بولغاندا ھۆججەتنى " +"ئەخلەتخانىغا يۆتكەيدۇ.\n" +" # يەنە قىسقا نەشرىدىكى «kioclient mv» نى ئىشلىتىشكىمۇ بولىدۇ.\n" +"\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -87,8 +100,14 @@ msgid "" " # a URL will be requested.\n" "\n" msgstr "" +" %1 ['src']\n" +" # تور ئادرېسى «src» يەنى مەنبەسىنى ئىشلەتكۈچى بەلگىلىگەن ئورۇنغا " +"كۆچۈرىدۇ.\n" +" # «src» يەنى مەنبە تور ئادرېسى تىزىمى بولۇشى مۇمكىن.\n" +" # ئەگەر تەمىنلەنمىسە تور ئادرېسىنى تەلەپ قىلىدۇ.\n" +"\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -98,40 +117,40 @@ msgid "" " # The short version 'kioclient cp' is also available.\n" "\n" msgstr "" +" %1 'src' 'dest'\n" +" # URL يەنى تور ئادرېسى «src» يەنى مەنبەسىنى «dest» يەنى نىشانغا " +"كۆچۈرىدۇ.\n" +" # «src» يەنى مەنبە تور ئادرېسى تىزىمى بولۇشى مۇمكىن.\n" +" # يەنە قىسقا نەشرىدىكى «kioclient cp» نى ئىشلىتىشكىمۇ بولىدۇ.\n" +"\n" -#: kioclient.cpp:103 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:104 +#, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" " %1 'url'\n" " # Prints the contents of the file 'url' to the standard output\n" "\n" msgstr "" -" kioclient openProperties 'url'\n" -" # خاسلىق تىزىملىكىنى ئاچىدۇ\n" +" %1 'url'\n" +" # ھۆججەت «url» يەنى تور ئادرېسىنىڭ مەزمۇنىنى ئۆلچەملىك چىقىرىشقا " +"باسىدۇ\n" "\n" -#: kioclient.cpp:110 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:111 +#, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" " %1 'url'\n" " # Lists the contents of the directory 'url' to stdout\n" "\n" msgstr "" -" kioclient openProperties 'url'\n" -" # خاسلىق تىزىملىكىنى ئاچىدۇ\n" +" %1 'url'\n" +" # قىسقۇچ تور ئادرېسى يەنى «url» نىڭ مەزمۇنىنى ئۆلچەملىك " +"چىقىرىشقا باسىدۇ\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -141,45 +160,54 @@ msgid "" " # The short version 'kioclient rm' is also available.\n" "\n" msgstr "" +" %1 'url'\n" +" # URL يەنى تور ئادرېسىنى چىقىرىۋېتىدۇ.\n" +" # «src» يەنى مەنبە تور ئادرېسى يەنى «URL» تىزىمى بولۇشى " +"مۇمكىن.\n" +" # يەنە قىسقا نەشرىدىكى «kioclient rm» نى ئىشلىتىشكىمۇ بولىدۇ.\n" +"\n" -#: kioclient.cpp:126 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # تور ئادرېسى يەنى «url» ئورنىدا بىر مۇندەرىجە قۇرىدۇ\n" + +#: kioclient.cpp:134 +#, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" " %1 'url'\n" " # Shows all of the available information for 'url'\n" "\n" msgstr "" -" kioclient openProperties 'url'\n" -" # خاسلىق تىزىملىكىنى ئاچىدۇ\n" +" %1 'url'\n" +" # تور ئادرېسى يەنى «» نىڭ ئىشلەتكىلى بولىدىغان بارلىق ئۇچۇرىنى " +"كۆرسىتىدۇ\n" "\n" -#: kioclient.cpp:133 -#, fuzzy, kde-format -#| msgid "" -#| " kioclient openProperties 'url'\n" -#| " # Opens a properties menu\n" -#| "\n" +#: kioclient.cpp:141 +#, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" " %1\n" " # Opens a basic application launcher\n" "\n" msgstr "" -" kioclient openProperties 'url'\n" -" # خاسلىق تىزىملىكىنى ئاچىدۇ\n" +" %1\n" +" # ئاساسىي پىروگرامما قوزغاتقۇچنى ئاچىدۇ\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" -msgstr "" +msgstr "*** مىسال:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -187,24 +215,35 @@ msgid "" " // with this MimeType\n" "\n" msgstr "" +" kioclient exec file:/home/weis/data/test.html\n" +" // بۇ Mime تۈرىگە باغلانغان كۆڭۈلدىكى پىروگراممىدا ھۆججەتنى " +"ئاچىدۇ\n" +"\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" " // Opens URL with the default handler for ftp:// scheme\n" "\n" msgstr "" +" kioclient exec ftp://localhost/\n" +" // «ftp://» كېلىشىمىنى ئىشلىتىدىغان كۆڭۈلدىكى بىر تەرەپ قىلىش " +"ئۇسۇلىدا تور ئادرېسىنى ئاچىدۇ \n" +"\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" " // Starts emacs\n" "\n" msgstr "" +" kioclient exec file:/root/Desktop/emacs.desktop\n" +" // emacs پىروگراممىسىنى قوزغىتىدۇ\n" +"\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -212,109 +251,114 @@ msgid "" " // file manager. Very convenient.\n" "\n" msgstr "" +" kioclient exec .\n" +" // كۆڭۈلدىكى ھۆججەت باشقۇرغۇچتا نۆۋەتتىكى مۇندەرىجىنى ئاچىدۇ\n" +" // ئىنتايىن قولايلىق.\n" +"\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO خېرىدارى" -#: kioclient.cpp:173 -#, kde-format -msgid "Command-line tool for network-transparent operations" -msgstr "" - #: kioclient.cpp:180 #, kde-format -msgid "Use message boxes and other native notifications" -msgstr "" +msgid "Command-line tool for network-transparent operations" +msgstr "تور مەشغۇلاتىنىڭ بۇيرۇق قۇرى قورالى" -#: kioclient.cpp:183 +#: kioclient.cpp:188 +#, kde-format +msgid "Use message boxes and other native notifications" +msgstr "ئۇچۇر قۇتىسى ۋە باشقا ئەسلى ئۇقتۇرۇشنى ئىشلىتىدۇ" + +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" +"غەيرى تەسىرلىشىشچان ئىشلىتىش: ئۇچۇر قۇتىسى يوق. ئەگەر گىرافىكىلىق باغلىنىشنى " +"ئىشلەتمەيدىغان بولسىڭىز، ‪«--platform offscreen»‬ نى ئىشلىتىڭ" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "نىشاندا ھۆججەت مەۋجۇت بولسا قاپلىۋېتىش (كۆچۈرۈش ۋە يۆتكەش مەشغۇلاتىدا)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "ھۆججەت ياكى URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." -msgstr "" +msgstr "URL…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" -msgstr "مەنبە URL ياكى URLs" +msgstr "مەنبە URL ياكى URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "نىشان URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" -msgstr "" +msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "ئىشلەتكىلى بولىدىغان بۇيرۇقلارنى كۆرسەت" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "بۇيرۇق (--commands غا قاراڭ)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" -msgstr "" +msgstr "بۇيرۇق" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "بۇيرۇقنىڭ پارامېتىرلىرى" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" -msgstr "%1: گرامماتىكىلىق خاتالىق، پارامېتىرلار يېتەرلىك ئەمەس\n" +msgstr "%1: گىرامماتىكىلىق خاتالىق، پارامېتىرلار يېتەرلىك ئەمەس\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" -msgstr "%1: گرامماتىكىلىق خاتالىق، پارامېتىرلار بەك كوپ\n" +msgstr "%1: گىرامماتىكىلىق خاتالىق، پارامېتىرلار بەك كۆپ\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" -msgstr "" +msgstr "ھۆججەت چۈشۈرىدىغان نىشان ئورۇن" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" -msgstr "%1: گرامماتىكىلىق خاتالىق، بۇيرۇق ‹%2› تونۇش بۇيرۇق ئەمەس\n" +msgstr "%1: گىرامماتىكىلىق خاتالىق، بۇيرۇق ‹%2› تونۇش بۇيرۇق ئەمەس\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" -msgstr "" +msgstr "%1: %2\n" -#, fuzzy #~| msgid "" #~| " kioclient openProperties 'url'\n" #~| " # Opens a properties menu\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/ug/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/ug/kmimetypefinder.po index e120e9dcdc..5fdb736bd3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ug/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ug/kmimetypefinder.po @@ -7,55 +7,50 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" -"PO-Revision-Date: 2013-09-08 07:05+0900\n" -"Last-Translator: Gheyret Kenji \n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" +"PO-Revision-Date: 2026-04-01 08:52-0400\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur Computer Science Association \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "" +msgstr "ئابدۇقادىر ئابلىز، غەيرەت كەنجى" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "" +msgstr "sahranbay@gmail.com, gheyret@gmail.com" #: kmimetypefinder.cpp:26 -#, fuzzy, kde-format -#| msgid "MimeType Finder" +#, kde-format msgid "MIME Type Finder" -msgstr "Mime تىپى ئىزدىگۈچ" +msgstr "MIME تۈرىنى ئىزدىگۈچ" #: kmimetypefinder.cpp:27 -#, fuzzy, kde-format -#| msgid "Gives the mimetype for a given file" +#, kde-format msgid "Gives the MIME type for a given file" -msgstr "بېرىلگەن ھۆججەتنىڭ MIME تىپىنى بېرىش" +msgstr "بەلگىلەنگەن ھۆججەتكە MIME تۈرىنى كۆرسىتىدۇ" #: kmimetypefinder.cpp:33 -#, fuzzy, kde-format -#| msgid "Use only the file content for determining the mimetype." +#, kde-format msgid "Use only the file content for determining the MIME type." -msgstr "ھۆججەت مەزمۇنىغىلا ئاساسەن Mime تىپىنى بەلگىلەش." +msgstr "پەقەت ھۆججەت مەزمۇنى ئارقىلىق MIME تۈرىنى جەزملەيدۇ." #: kmimetypefinder.cpp:35 -#, fuzzy, kde-format -#| msgid "" -#| "Whether use the file name only for determining the mimetype. Not used if -" -#| "c is specified." +#, kde-format msgid "" "Whether use the file name only for determining the MIME type. Not used if -c " "is specified." msgstr "" -"ھۆججەت ئاتىغىلا ئاساسەن Mime تىپىنى بەلگىلەمدۇ. -c كۆرسىتىلگەن بولسا " -"ئىشلىتىلمەيدۇ." +"ھۆججەت ئاتى ئارقىلىق MIME تۈرىنى جەزملەمدۇ يوق. ئەگەر ‪«-c»‬ بەلگىلەنگەن بولسا " +"ياق." #: kmimetypefinder.cpp:36 #, kde-format diff --git a/local/recipes/kde/kde-cli-tools/source/po/ug/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/ug/kstart.po index dda2c2a8ad..f48421b45b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/ug/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/ug/kstart.po @@ -7,25 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" -"PO-Revision-Date: 2013-09-08 07:05+0900\n" -"Last-Translator: Gheyret Kenji \n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" +"PO-Revision-Date: 2026-04-01 08:52-0400\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur Computer Science Association \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "ئابدۇقادىر ئابلىز, غەيرەت كەنجى" +msgstr "ئابدۇقادىر ئابلىز، غەيرەت كەنجى" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "sahran.ug@gmail.com, gheyret@gmail.com" +msgstr "sahranbay@gmail.com, gheyret@gmail.com" #: kstart.cpp:77 #, kde-format @@ -35,44 +36,48 @@ msgstr "KStart" #: kstart.cpp:79 #, kde-format msgid "Utility to launch applications" -msgstr "" +msgstr "پىروگرامما قوزغىتىش قورالى" #: kstart.cpp:81 #, kde-format msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "ئىجرا قىلىدىغان بۇيرۇق" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" +" ئۆزگەرگۈچىسىنىڭ ئالماشتۇرىدىغىنىنى بەلگىلەيدۇ: قوزغىتىدىغان " +"desktop ھۆججەت ئاتى، مەسىلەن، org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" +"‪«--application»‬ تاللانمىسى ئىشلىتىلگەندە، پىروگراممىغا يوللايدىغان تور " +"ئادرېس يەنى «URL» ئادرېسى" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "بۇيرۇق بەلگىلەنمىگەن" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/uk/kbroadcastnotification.po index a5a0c62751..60f48a403f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/kbroadcastnotification.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kbroadcastnotification\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-05 08:56+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/uk/kcm_filetypes.po index 280678fc88..2edaa4fed2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/kcm_filetypes.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kcm5_filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-16 09:34+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -177,12 +177,12 @@ msgstr "Додати новий суфікс" msgid "Extension:" msgstr "Суфікс:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Тип файла %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Використовувати параметри для групи «%1»" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/uk/kde-inhibit.po index 7a596075cb..4fac6b00d2 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-13 16:45+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/uk/kdesu.po index e401ee4aa0..234788b674 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/kdesu.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-09-10 12:51+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/uk/kioclient.po index b1f4b561df..b8b0af4e69 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/kioclient.po @@ -4,20 +4,20 @@ # version 3 or later versions approved by the membership of KDE e.V. # # Ivan Petrouchtchak , 2007, 2008. -# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2020, 2021, 2022. +# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2020, 2021, 2022, 2025. msgid "" msgstr "" "Project-Id-Version: kioclient5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2022-04-06 09:38+0300\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-07-09 09:37+0300\n" "Last-Translator: Yuri Chornoivan \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.12.0\n" +"X-Generator: Lokalize 23.04.3\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" @@ -31,7 +31,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "yurchor@ukr.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -40,7 +40,7 @@ msgstr "" "\n" "Синтаксис:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -52,7 +52,7 @@ msgstr "" " # Відкриває вікно властивостей для «адреси»\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -72,7 +72,7 @@ msgstr "" " # «Адресою» може бути або адресою URL документа, файл\n" " # *.desktop або виконуваний файл.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +91,7 @@ msgstr "" " # Також доступна скорочена версія, «kioclient mv».\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -107,7 +107,7 @@ msgstr "" " # буде дано запит про адресу URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -123,7 +123,7 @@ msgstr "" " # Також можна скористатися короткою версією, «kioclient cp».\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -135,7 +135,7 @@ msgstr "" " # Виводить список вмісту файла «адреса» до стандартного виводу\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -148,7 +148,7 @@ msgstr "" "виводу\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -165,7 +165,18 @@ msgstr "" "rm».\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'адреса'\n" +" # Створює каталог за адресою «адреса»\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -177,7 +188,7 @@ msgstr "" " # Показує усі доступні дані щодо адреси «адреса»\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -189,12 +200,12 @@ msgstr "" " # Відкриває базовий засіб запуску програм.\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Приклади:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -207,7 +218,7 @@ msgstr "" " // відповідним типом MIME\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -218,7 +229,7 @@ msgstr "" " // Відкриває адресу у типовому обробнику адрес ftp://\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -229,7 +240,7 @@ msgstr "" " // Запускає emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -242,22 +253,22 @@ msgstr "" " // програмі для керування файлами. Дуже зручно.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Клієнт KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Інструмент командного рядка для прозорих для мережі дій" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Використовувати панелі повідомлень та інші природні сповіщення" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -266,82 +277,82 @@ msgstr "" "Неінтерактивне використання: без вікон з повідомленнями. Якщо вам не " "потрібне графічне з’єднання, скористайтеся --platform offscreen." -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" "Перезаписувати призначення, якщо воно вже існує (під час копіювання і " "пересування)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "файл або адреса" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "адреси…" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Адреса або адреси джерела" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "Адреса призначення" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "адреса" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Показати наявні команди" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Команда (див. --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "команда" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Аргументи для команди" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: синтаксична помилка, недостатньо аргументів\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: синтаксична помилка, забагато аргументів\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Місце, куди слід записати отримані файли" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: синтаксична помилка, невідома команда «%2»\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/uk/kmimetypefinder.po index 4fb6edc7df..de6115ab45 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/kmimetypefinder.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-05-01 09:28+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/uk/kstart.po index 7625226075..89785fb443 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/kstart.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-09-19 09:05+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -49,40 +49,40 @@ msgstr "Допоміжна програма для запуску програм msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© Matthias Ettrich (ettrich@kde.org), 1997–2000" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Виконати команду" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" "Альтернатива : файл .desktop, який слід виконати, приклад: org.kde." "kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" "Додаткова адреса, яку слід передати програмі при використанні --application" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Команду не вказано" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uk/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/uk/plasma-open-settings.po index 8e72b0fda3..3ed201e218 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uk/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uk/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2021-07-22 08:21+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uz/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/uz/kcm_filetypes.po index da33ee4a47..23c15cb58e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uz/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uz/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2005-10-09 00:00+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -150,13 +150,13 @@ msgstr "Yangi kengaytmani qoʻshish" msgid "Extension:" msgstr "Kengaytma:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "%1 fayl turini tahrirlash" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uz/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/uz/kdesu.po index 6d3a65c069..aee11232a3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uz/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uz/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2006-12-16 21:20+0000\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uz/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/uz/kstart.po index 7ad4922891..c8f535cf38 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uz/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uz/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2006-12-17 12:26+0000\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -42,37 +42,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Bajarish uchun buyruq" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Hech qanday buyruq koʻrsatilmagan" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kcm_filetypes.po index bfa3b5015a..6b9704db2f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kcm_filetypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2005-10-09 00:00+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -150,13 +150,13 @@ msgstr "Янги кенгайтмани қўшиш" msgid "Extension:" msgstr "Кенгайтма:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "%1 файл турини таҳрирлаш" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kdesu.po index 81d35fc304..f779a0cc4a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kdesu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2006-12-16 21:20+0000\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kstart.po index 2d796f3966..aa52fa1fee 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/uz@cyrillic/kstart.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2006-12-17 12:26+0000\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -42,37 +42,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Бажариш учун буйруқ" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Ҳеч қандай буйруқ кўрсатилмаган" diff --git a/local/recipes/kde/kde-cli-tools/source/po/vi/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/vi/kbroadcastnotification.po index d25ee6ce9e..2165343b0d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/vi/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/vi/kbroadcastnotification.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-05-12 16:56+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/vi/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/vi/kcm_filetypes.po index 6bfa02d24b..4252f10630 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/vi/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/vi/kcm_filetypes.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2022-05-05 12:27+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" @@ -169,12 +169,12 @@ msgstr "Thêm phần mở rộng mới" msgid "Extension:" msgstr "Phần mở rộng:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Kiểu tệp %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Dùng thiết lập cho nhóm '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/vi/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/vi/kdesu.po index 85e5cf553c..d4265141a3 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/vi/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/vi/kdesu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-04-20 23:28+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/vi/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/vi/kioclient.po index c8cd62a91a..ce5d793728 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/vi/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/vi/kioclient.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2022-05-05 13:30+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" @@ -28,7 +28,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "phu.nguyen@kdemail.net" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -37,7 +37,7 @@ msgstr "" "\n" "Cú pháp:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -49,7 +49,7 @@ msgstr "" " # Mở một hộp thoại thuộc tính của 'url'\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -68,7 +68,7 @@ msgstr "" " # 'url' có thể là URL của một tài liệu, một tệp *.desktop,\n" " # hoặc một tệp thực thi.\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -87,7 +87,7 @@ msgstr "" " # Cách viết ngắn 'kioclient mv' cũng khả dụng.\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -103,7 +103,7 @@ msgstr "" " # truyền vào thì sẽ hỏi một URL.\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -119,7 +119,7 @@ msgstr "" " # Cách viết ngắn 'kioclient cp' cũng khả dụng.\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -131,7 +131,7 @@ msgstr "" " # In nội dung tệp 'url' ra đầu ra chuẩn\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -143,7 +143,7 @@ msgstr "" " # Liệt kê nội dung thư mục 'url' ra đầu ra chuẩn\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -159,7 +159,23 @@ msgstr "" " # Cách viết ngắn 'kioclient rm' cũng khả dụng.\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, fuzzy, kde-format +#| msgctxt "The argument is the command \"kioclient openProperties\"" +#| msgid "" +#| " %1 'url'\n" +#| " # Opens a properties dialog of 'url'\n" +#| "\n" +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # Mở một hộp thoại thuộc tính của 'url'\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -171,7 +187,7 @@ msgstr "" " # Hiển thị tất cả thông tin hiện có cho 'url'\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -183,12 +199,12 @@ msgstr "" " # Mở một trình khởi chạy ứng dụng cơ bản\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** Ví dụ:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -201,7 +217,7 @@ msgstr "" " // với kiểu MIME này\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -212,7 +228,7 @@ msgstr "" " // Mở URL bằng trình xử lí mặc định cho quy hoạch ftp://\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -223,7 +239,7 @@ msgstr "" " // Khởi động emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -236,22 +252,22 @@ msgstr "" " // mặc định. Rất tiện lợi.\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Trình khách KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "Công cụ dòng lệnh cho các thao tác mạng trong suốt" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "Dùng hộp thông điệp và các thông báo bản địa khác" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -260,80 +276,80 @@ msgstr "" "Cách dùng không tương tác: không có các hộp thông điệp. Nếu bạn không muốn " "kết nối với giao diện đồ hoạ, hãy dùng --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "Ghi đè đích nếu nó tồn tại (cho sao chép và di chuyển)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "tệp hoặc URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "các_url..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "Một hoặc nhiều URL nguồn" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL đích" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Hiện các lệnh khả dụng" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Lệnh (xem --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "lệnh" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Đối số cho lệnh" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: Lỗi cú pháp, không đủ đối số\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: Lỗi cú pháp, quá nhiều đối số\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "Đích, nơi để tải tệp về" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1: Lỗi cú pháp, lệnh không rõ '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/vi/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/vi/kmimetypefinder.po index d38f33a43c..29fc90a789 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/vi/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/vi/kmimetypefinder.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-05-05 14:41+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/vi/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/vi/kstart.po index 39bf1cf039..b2cc5c0f51 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/vi/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/vi/kstart.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-02-20 10:58+0100\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" @@ -45,39 +45,39 @@ msgstr "Tiện ích để khởi chạy các ứng dụng" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Lệnh để thực thi" -#: kstart.cpp:92 +#: kstart.cpp:94 #, fuzzy, kde-format #| msgid "Alternative to : desktop file to start." msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "Thay thế cho : tệp desktop để khởi động." -#: kstart.cpp:95 +#: kstart.cpp:97 #, fuzzy, kde-format #| msgid "Optional URL to pass , when using --service" msgid "Optional URL to pass to the application when using --application" msgstr "URL tuỳ chọn để truyền , khi dùng --service" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Không có lệnh nào được chỉ định" diff --git a/local/recipes/kde/kde-cli-tools/source/po/vi/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/vi/plasma-open-settings.po index bf964e443a..1d1cbd5a08 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/vi/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/vi/plasma-open-settings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2022-05-05 14:23+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/wa/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/wa/kcm_filetypes.po index 8056222a9e..a00aab303f 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/wa/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/wa/kcm_filetypes.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2012-01-01 14:43+0100\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" @@ -173,12 +173,12 @@ msgstr "Radjouter ene nouve cawete" msgid "Extension:" msgstr "Cawete:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "Sôre di fitchî %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Eployî les apontiaedjes do groupe «%1»" diff --git a/local/recipes/kde/kde-cli-tools/source/po/wa/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/wa/kdesu.po index 5cc535d26f..8cadb474be 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/wa/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/wa/kdesu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2011-12-18 17:28+0100\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/wa/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/wa/kioclient.po index 7b0bb8bf08..b4343c0008 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/wa/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/wa/kioclient.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2012-12-21 22:58+0100\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "Sintake :\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -45,7 +45,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -58,7 +58,7 @@ msgid "" " # or an executable.\n" msgstr "" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -70,7 +70,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -81,7 +81,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -92,7 +92,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -101,7 +101,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -110,7 +110,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -121,7 +121,15 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -130,7 +138,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -139,12 +147,12 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -153,7 +161,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -161,7 +169,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -169,7 +177,7 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -178,106 +186,106 @@ msgid "" "\n" msgstr "" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "Cliyint KIO" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " "connection, use --platform offscreen" msgstr "" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, fuzzy, kde-format #| msgid "URL or URLs" msgid "file or URL" msgstr "URL (ene ou sacwantes)" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "" -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "URL do sourdant (ene ou sacwantes)" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "URL del såme" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "Mostrer les comandes k' i gn a" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "Comande (vey --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "Årgumints del comande" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, fuzzy, kde-format #| msgid "Syntax Error: Not enough arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "Aroke di sintake : i gn a pont d' årgumints assez\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, fuzzy, kde-format #| msgid "Syntax Error: Too many arguments\n" msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "Aroke di sintake : i gn a trop d' årgumints\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, fuzzy, kde-format #| msgid "Syntax Error: Unknown command '%1'\n" msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "Aroke di sintake : Comande « %1 » nén cnoxhowe\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/wa/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/wa/kmimetypefinder.po index 955607cc80..cfeb159cd5 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/wa/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/wa/kmimetypefinder.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2009-03-14 16:30+0100\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/wa/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/wa/kstart.po index ec801d6dad..f5a32d38f1 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/wa/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/wa/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2004-01-17 11:23+0100\n" "Last-Translator: Pablo Saratxaga \n" "Language-Team: Walloon \n" @@ -44,37 +44,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "© 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "Comande a-z enonder" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Nole comande di dnêye" diff --git a/local/recipes/kde/kde-cli-tools/source/po/xh/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/xh/kcm_filetypes.po index 13215c3a25..1754b56ef0 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/xh/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/xh/kcm_filetypes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2002-11-01 10:25SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" @@ -184,13 +184,13 @@ msgstr "Yongeza Ulwandiso Olutsha" msgid "Extension:" msgstr "Ulwandiso:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, fuzzy, kde-format #| msgid "Edit File Type %1" msgid "File type %1" msgstr "Hlela Udidi Lwefayile %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "Sebenzisa izicwangciso zeqela le '%1'" diff --git a/local/recipes/kde/kde-cli-tools/source/po/xh/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/xh/kdesu.po index 5095816c2b..892652ae29 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/xh/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/xh/kdesu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2002-10-24 16:14SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/xh/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/xh/kstart.po index 7983a62092..879796b2fe 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/xh/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/xh/kstart.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2002-10-26 10:48SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" @@ -44,37 +44,37 @@ msgstr "" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "" -#: kstart.cpp:90 +#: kstart.cpp:92 #, fuzzy, kde-format msgid "Command to execute" msgstr "Umyalelo ozakuphunyezwa." -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "Akukho myalelo ukhankanywayo" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kbroadcastnotification.po index a96b977a59..2156904406 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kbroadcastnotification.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kcm_filetypes.po index ae3fad99b6..b94a72e00a 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kcm_filetypes.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -77,7 +77,7 @@ msgid "" "text files." msgstr "" "这个菜单中包含可以确定文件类型的模式列表。例如,模式 *.txt 和文件类型“text/" -"plain”相关联;所有“.txt”结尾的文件会被当作普通文本文件。" +"plain”相关联;所有“.txt”结尾的文件会被当作纯文本文件。" #: filetypedetails.cpp:87 filetypesview.cpp:86 kservicelistwidget.cpp:105 #, kde-format @@ -159,12 +159,12 @@ msgstr "添加新的扩展名" msgid "Extension:" msgstr "扩展名:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "文件类型 %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "使用“%1”组的设置" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kde-inhibit.po index 2fa12ba4d3..f2f62c386e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kde-inhibit.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kdesu.po index 6d8d37fc66..c9ae3d9e5b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kdesu.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kioclient.po index 05705dd6d6..24d05973ba 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kioclient.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -27,7 +27,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "kde-china@kde.org, i@guoyunhe.me, tds00@qq.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -36,7 +36,7 @@ msgstr "" "\n" "语法:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -48,7 +48,7 @@ msgstr "" " # 打开 'URL' 的属性对话框\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -66,7 +66,7 @@ msgstr "" " # 'URL' 可以是文档或者 *.desktop 文件的 URL,\n" " # 也可以是可执行程序文件。\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -84,7 +84,7 @@ msgstr "" " # 也可以使用缩短命令 'kioclient mv'。\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -100,7 +100,7 @@ msgstr "" " # 如果没有提供 URL,程序将要求提供。\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -116,7 +116,7 @@ msgstr "" " # 也可以使用缩短命令 'kioclient cp' 。\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -128,7 +128,7 @@ msgstr "" " # 将文件 'URL' 的内容打印到标准输出\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -140,7 +140,7 @@ msgstr "" " # 将目录 'URL' 的内容列出到标准输出\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -156,7 +156,17 @@ msgstr "" " # 也可以使用缩短命令 'kioclient rm'。\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'URL'\n" +" # 在 'URL' 位置创建一个目录\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -168,7 +178,7 @@ msgstr "" " # 显示 'URL' 的所有可用信息\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -180,12 +190,12 @@ msgstr "" " # 打开一个基本应用程序启动器。\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** 示例:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -197,7 +207,7 @@ msgstr "" " // 使用关联此 MIME 类型的默认程序打开文件\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -208,7 +218,7 @@ msgstr "" " // 使用 ftp:// 协议的默认处理方式打开 URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -219,7 +229,7 @@ msgstr "" " // 启动 Emacs 程序\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -232,22 +242,22 @@ msgstr "" " // 非常方便。\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO 客户端" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "网络透明操作的命令行工具" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "使用消息框和其他原生通知" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -255,80 +265,80 @@ msgid "" msgstr "" "非交互式使用:没有信息框。如果您想要使用图形化连接,使用 --platform offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "如果目标已经存在则覆盖(针对复制和移动操作)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "文件或 URL" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "urls..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "源位置 URL 或 URL 列表" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "目标位置 URL" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "url" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "显示可用的命令" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "命令(参见 --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "命令" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "命令参数" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1: 语法错误,参数不足\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1: 语法错误,参数太多\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "下载文件的目的地" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1:语法错误,未知命令“%2”\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kmimetypefinder.po index ca8a139abd..64993b272b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kmimetypefinder.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kstart.po index 0f920a0f9d..7ed618706e 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/kstart.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -42,37 +42,37 @@ msgstr "启动应用程序的工具" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "要执行的命令" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr "指定参数的替换项:要启动的 desktop 文件名,如 org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "当使用 --application 选项时,传递给应用程序的可选 URL 地址 " -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "没有指定命令" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/plasma-open-settings.po index d0f4431723..de2411db80 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_CN/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_CN/plasma-open-settings.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kbroadcastnotification.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kbroadcastnotification.po index aad58fe75a..7739aac4f6 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kbroadcastnotification.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kbroadcastnotification.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-09-28 00:51+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-01-30 21:56+0800\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kcm_filetypes.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kcm_filetypes.po index c825d0bc73..798100ad7d 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kcm_filetypes.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kcm_filetypes.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: filetypes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-11-26 00:41+0000\n" +"POT-Creation-Date: 2026-06-04 02:57+0000\n" "PO-Revision-Date: 2023-05-28 16:36+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Chinese \n" @@ -167,12 +167,12 @@ msgstr "新增副檔名" msgid "Extension:" msgstr "副檔名:" -#: filetypedetails.cpp:327 +#: filetypedetails.cpp:328 #, kde-format msgid "File type %1" msgstr "檔案型態 %1" -#: filetypedetails.cpp:335 +#: filetypedetails.cpp:336 #, kde-format msgid "Use settings for '%1' group" msgstr "使用'%1'群組設定" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kde-inhibit.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kde-inhibit.po index 901fab0765..8170b3bcba 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kde-inhibit.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kde-inhibit.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-13 00:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-12-12 18:58+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kdesu.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kdesu.po index 035854d7ae..33b0e9daab 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kdesu.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kdesu.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdesu\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-09-21 00:41+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2016-11-03 16:33+0800\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kioclient.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kioclient.po index 8239091e7e..7a7ce09982 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kioclient.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kioclient.po @@ -8,20 +8,20 @@ # Franklin Weng , 2011, 2012, 2013, 2014. # Jeff Huang , 2016. # pan93412 , 2018, 2020. -# Kisaragi Hiu , 2023. +# SPDX-FileCopyrightText: 2023, 2025 Kisaragi Hiu msgid "" msgstr "" "Project-Id-Version: kioclient\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-31 00:41+0000\n" -"PO-Revision-Date: 2023-10-21 18:39+0900\n" +"POT-Creation-Date: 2026-01-24 00:44+0000\n" +"PO-Revision-Date: 2025-08-16 13:27+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.11.70\n" +"X-Generator: Lokalize 25.07.70\n" "Plural-Forms: nplurals=1; plural=0;\n" #, kde-format @@ -35,7 +35,7 @@ msgid "Your emails" msgstr "" "franklin@nospam.goodhorse.idv.tw, s8321414@gmail.com, mail@kisaragi-hiu.com" -#: kioclient.cpp:55 +#: kioclient.cpp:56 #, kde-format msgid "" "\n" @@ -44,7 +44,7 @@ msgstr "" "\n" "語法:\n" -#: kioclient.cpp:57 +#: kioclient.cpp:58 #, kde-format msgctxt "The argument is the command \"kioclient openProperties\"" msgid "" @@ -56,7 +56,7 @@ msgstr "" " # 開啟 'url' 的內容對話框\n" "\n" -#: kioclient.cpp:64 +#: kioclient.cpp:65 #, kde-format msgctxt "The argument is the command \"kioclient exec\"" msgid "" @@ -73,7 +73,7 @@ msgstr "" " # 您可以省略 mimetype 參數,而它將被自動偵測。\n" " # 'url' 可以是一個文件、.desktop 檔或執行檔的 URL。\n" -#: kioclient.cpp:75 +#: kioclient.cpp:76 #, kde-format msgctxt "The argument is the command \"kioclient move\"" msgid "" @@ -91,7 +91,7 @@ msgstr "" " # 也可以使用簡短版本 'kioclient mv'。\n" "\n" -#: kioclient.cpp:85 +#: kioclient.cpp:86 #, kde-format msgctxt "The argument is the command \"kioclient download\"" msgid "" @@ -106,7 +106,7 @@ msgstr "" " # 'src' 可以是許多檔案或網址的清單,未提供時將會詢問。\n" "\n" -#: kioclient.cpp:94 +#: kioclient.cpp:95 #, kde-format msgctxt "The argument is the command \"kioclient copy\"" msgid "" @@ -122,7 +122,7 @@ msgstr "" " # 也可以使用簡短版本 'kioclient cp'。\n" "\n" -#: kioclient.cpp:103 +#: kioclient.cpp:104 #, kde-format msgctxt "The argument is the command \"kioclient cat\"" msgid "" @@ -134,7 +134,7 @@ msgstr "" " # 將 'url' 指向的檔案的內容寫到標準輸出\n" "\n" -#: kioclient.cpp:110 +#: kioclient.cpp:111 #, kde-format msgctxt "The argument is the command \"kioclient ls\"" msgid "" @@ -146,7 +146,7 @@ msgstr "" " # 將 'url' 指向的目錄的內容寫到標準輸出\n" "\n" -#: kioclient.cpp:117 +#: kioclient.cpp:118 #, kde-format msgctxt "The argument is the command \"kioclient remove\"" msgid "" @@ -162,7 +162,18 @@ msgstr "" " # 也可以使用簡短版本 'kioclient rm'。\n" "\n" -#: kioclient.cpp:126 +#: kioclient.cpp:127 +#, kde-format +msgctxt "The argument is the command \"kioclient mkdir\"" +msgid "" +" %1 'url'\n" +" # Creates a directory at 'url'\n" +msgstr "" +" %1 'url'\n" +" # 在 'url' 建立目錄\n" +"\n" + +#: kioclient.cpp:134 #, kde-format msgctxt "The argument is the command \"kioclient stat\"" msgid "" @@ -174,7 +185,7 @@ msgstr "" " # 顯示關於 'url' 所有可用的資訊\n" "\n" -#: kioclient.cpp:133 +#: kioclient.cpp:141 #, kde-format msgctxt "The argument is the command \"kioclient appmenu\"" msgid "" @@ -186,12 +197,12 @@ msgstr "" " # 開啟一個簡易的應用程式啟動器\n" "\n" -#: kioclient.cpp:139 +#: kioclient.cpp:147 #, kde-format msgid "*** Examples:\n" msgstr "*** 範例:\n" -#: kioclient.cpp:140 +#: kioclient.cpp:148 #, kde-format msgid "" " kioclient exec file:/home/weis/data/test.html\n" @@ -203,7 +214,7 @@ msgstr "" " // 使用預設應用程式開啟該檔案\n" "\n" -#: kioclient.cpp:145 +#: kioclient.cpp:153 #, kde-format msgid "" " kioclient exec ftp://localhost/\n" @@ -214,7 +225,7 @@ msgstr "" " // 使用 ftp:// 的預設處理器開啟該 URL\n" "\n" -#: kioclient.cpp:149 +#: kioclient.cpp:157 #, kde-format msgid "" " kioclient exec file:/root/Desktop/emacs.desktop\n" @@ -225,7 +236,7 @@ msgstr "" " // 開啟 emacs\n" "\n" -#: kioclient.cpp:153 +#: kioclient.cpp:161 #, kde-format msgid "" " kioclient exec .\n" @@ -237,22 +248,22 @@ msgstr "" " // 在預設檔案管理員開啟目前的目錄。非常方便。\n" "\n" -#: kioclient.cpp:172 +#: kioclient.cpp:179 #, kde-format msgid "KIO Client" msgstr "KIO Client" -#: kioclient.cpp:173 +#: kioclient.cpp:180 #, kde-format msgid "Command-line tool for network-transparent operations" msgstr "網路操作的命令列工具" -#: kioclient.cpp:180 +#: kioclient.cpp:188 #, kde-format msgid "Use message boxes and other native notifications" msgstr "使用訊息框和其他原生通知" -#: kioclient.cpp:183 +#: kioclient.cpp:191 #, kde-format msgid "" "Non-interactive use: no message boxes. If you don't want a graphical " @@ -261,80 +272,80 @@ msgstr "" "非互動式使用:沒有訊息盒。如果您不打算使用圖形式連線,請使用 --platform " "offscreen" -#: kioclient.cpp:187 +#: kioclient.cpp:195 #, kde-format msgid "Overwrite destination if it exists (for copy and move)" msgstr "若目標已存在則覆寫(複製或移動時)" -#: kioclient.cpp:191 +#: kioclient.cpp:199 #, kde-format msgid "file or URL" msgstr "檔案或網址" -#: kioclient.cpp:191 kioclient.cpp:193 kioclient.cpp:196 kioclient.cpp:201 +#: kioclient.cpp:199 kioclient.cpp:201 kioclient.cpp:204 kioclient.cpp:209 #, kde-format msgid "urls..." msgstr "網址..." -#: kioclient.cpp:193 kioclient.cpp:196 +#: kioclient.cpp:201 kioclient.cpp:204 #, kde-format msgid "Source URL or URLs" msgstr "來源網址" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "Destination URL" msgstr "目的網址" -#: kioclient.cpp:194 kioclient.cpp:197 +#: kioclient.cpp:202 kioclient.cpp:205 #, kde-format msgid "url" msgstr "網址" -#: kioclient.cpp:199 +#: kioclient.cpp:207 #, kde-format msgid "Show available commands" msgstr "顯示可用的指令" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "Command (see --commands)" msgstr "指令(請參考 --commands)" -#: kioclient.cpp:200 +#: kioclient.cpp:208 #, kde-format msgid "command" msgstr "指令" -#: kioclient.cpp:201 +#: kioclient.cpp:209 #, kde-format msgid "Arguments for command" msgstr "指令的參數" -#: kioclient.cpp:225 +#: kioclient.cpp:233 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, not enough arguments\n" msgstr "%1:語法錯誤,沒有足夠的參數\n" -#: kioclient.cpp:229 +#: kioclient.cpp:237 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, too many arguments\n" msgstr "%1:語法錯誤,參數過多\n" -#: kioclient.cpp:443 +#: kioclient.cpp:465 #, kde-format msgid "Destination where to download the files" msgstr "要下載檔案的位置" -#: kioclient.cpp:485 +#: kioclient.cpp:512 #, kde-format msgctxt "@info:shell" msgid "%1: Syntax error, unknown command '%2'\n" msgstr "%1:語法錯誤,未知的指令 '%2'\n" -#: kioclient.cpp:501 +#: kioclient.cpp:528 #, kde-format msgctxt "@info:shell" msgid "%1: %2\n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kmimetypefinder.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kmimetypefinder.po index 63be4b381c..bc937aed5b 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kmimetypefinder.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kmimetypefinder.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kmimetypefinder\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-03-18 02:47+0100\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2017-06-29 21:06+0800\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \n" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kstart.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kstart.po index c871c9f06b..65827753e8 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kstart.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/kstart.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kstart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-17 00:38+0000\n" +"POT-Creation-Date: 2026-06-26 02:42+0000\n" "PO-Revision-Date: 2023-10-21 17:26+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" @@ -50,37 +50,37 @@ msgstr "啟動應用程式的工具" msgid "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" msgstr "(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)" -#: kstart.cpp:83 +#: kstart.cpp:85 #, kde-format msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: kstart.cpp:84 +#: kstart.cpp:86 #, kde-format msgid "David Faure" msgstr "David Faure" -#: kstart.cpp:85 +#: kstart.cpp:87 #, kde-format msgid "Richard J. Moore" msgstr "Richard J. Moore" -#: kstart.cpp:90 +#: kstart.cpp:92 #, kde-format msgid "Command to execute" msgstr "要執行的指令" -#: kstart.cpp:92 +#: kstart.cpp:94 #, kde-format msgid "Alternative to : desktop file name to start, e.g. org.kde.kate" msgstr " 的替代:要啟動的桌面檔名稱,例如 org.kde.kate" -#: kstart.cpp:95 +#: kstart.cpp:97 #, kde-format msgid "Optional URL to pass to the application when using --application" msgstr "使用 --application 選項時,要傳遞給應用程式的 URL,選擇性的" -#: kstart.cpp:107 +#: kstart.cpp:109 #, kde-format msgid "No command specified" msgstr "沒有指定指令" diff --git a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/plasma-open-settings.po b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/plasma-open-settings.po index 4484ab008a..c03de8c650 100644 --- a/local/recipes/kde/kde-cli-tools/source/po/zh_TW/plasma-open-settings.po +++ b/local/recipes/kde/kde-cli-tools/source/po/zh_TW/plasma-open-settings.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kde-cli-tools\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2022-10-21 00:48+0000\n" +"POT-Creation-Date: 2025-11-17 11:53+0000\n" "PO-Revision-Date: 2023-05-28 16:50+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Chinese \n" diff --git a/local/recipes/kde/kf6-kded6/source.tar b/local/recipes/kde/kf6-kded6/source.tar index 58d6690867..e68ff4000c 100644 Binary files a/local/recipes/kde/kf6-kded6/source.tar and b/local/recipes/kde/kf6-kded6/source.tar differ diff --git a/local/recipes/kde/kf6-kded6/source/.gitlab-ci.yml b/local/recipes/kde/kf6-kded6/source/.gitlab-ci.yml index 2f6b359820..d69da05821 100644 --- a/local/recipes/kde/kf6-kded6/source/.gitlab-ci.yml +++ b/local/recipes/kde/kf6-kded6/source/.gitlab-ci.yml @@ -5,5 +5,8 @@ include: - project: sysadmin/ci-utilities file: - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/linux-qt6-next.yml - /gitlab-templates/alpine-qt6.yml - /gitlab-templates/freebsd-qt6.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml diff --git a/local/recipes/kde/kf6-kded6/source/.kde-ci.yml b/local/recipes/kde/kf6-kded6/source/.kde-ci.yml index 146bc33b64..f3f67f2257 100644 --- a/local/recipes/kde/kf6-kded6/source/.kde-ci.yml +++ b/local/recipes/kde/kf6-kded6/source/.kde-ci.yml @@ -1,14 +1,15 @@ Dependencies: -- 'on': ['Linux', 'FreeBSD', 'Windows'] - 'require': + - 'on': ['Linux', 'FreeBSD', 'Windows'] + 'require': 'frameworks/extra-cmake-modules': '@same' - 'frameworks/ki18n' : '@same' - 'frameworks/kcoreaddons' : '@same' - 'frameworks/kdbusaddons' : '@same' - 'frameworks/kservice' : '@same' - 'frameworks/kcrash' : '@same' - 'frameworks/kdoctools' : '@same' + 'frameworks/ki18n': '@same' + 'frameworks/kcoreaddons': '@same' + 'frameworks/kdbusaddons': '@same' + 'frameworks/kservice': '@same' + 'frameworks/kcrash': '@same' + 'frameworks/kdoctools': '@same' Options: - test-before-installing: True - require-passing-tests-on: [ 'Linux', 'FreeBSD' ] + test-before-installing: True + require-passing-tests-on: ['Linux', 'FreeBSD'] + enable-lsan: True diff --git a/local/recipes/kde/kf6-kded6/source/.redbear-src-version b/local/recipes/kde/kf6-kded6/source/.redbear-src-version new file mode 100644 index 0000000000..2ece8e17b5 --- /dev/null +++ b/local/recipes/kde/kf6-kded6/source/.redbear-src-version @@ -0,0 +1 @@ +6.28.0 diff --git a/local/recipes/kde/kf6-kded6/source/CMakeLists.txt b/local/recipes/kde/kf6-kded6/source/CMakeLists.txt index 76fd8aa1ac..e2ad2f27f8 100644 --- a/local/recipes/kde/kf6-kded6/source/CMakeLists.txt +++ b/local/recipes/kde/kf6-kded6/source/CMakeLists.txt @@ -1,17 +1,17 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.29) -set(KF_VERSION "6.10.0") # handled by release scripts -set(KF_DEP_VERSION "6.10.0") # handled by release scripts +set(KF_VERSION "6.28.0") # handled by release scripts +set(KF_DEP_VERSION "6.28.0") # handled by release scripts project(KDED VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 6.10.0 NO_MODULE) +find_package(ECM 6.28.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) -set(REQUIRED_QT_VERSION 6.6.0) +set(REQUIRED_QT_VERSION 6.9.0) include(KDEInstallDirs) include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) @@ -44,8 +44,8 @@ ecm_setup_version( # (given that this framework produces no library) ecm_set_disabled_deprecation_versions( - QT 6.8.0 - KF 6.8.0 + QT 6.11.0 + KF 6.27.0 ) if (KF6DocTools_FOUND) diff --git a/local/recipes/kde/kf6-kded6/source/README.md b/local/recipes/kde/kf6-kded6/source/README.md index f48825b285..f7a344f9e1 100644 --- a/local/recipes/kde/kf6-kded6/source/README.md +++ b/local/recipes/kde/kf6-kded6/source/README.md @@ -32,10 +32,6 @@ editing the kdedrc configuration file. Changes need to be made with a text editor, there is no GUI available. All options are listed under the [General] group: -**HostnamePollInterval**: This can be used to adjust the time interval at which -the hostname is checked for changes. The time is specified in milliseconds -and has a default of 5000 (5 seconds). - **CheckSycoca**: This option can be used to disable checking for new software. ksycoca will still be built when kded starts up and when applications explicitly request a rebuild of the ksycoca database. The user can @@ -48,45 +44,13 @@ kconf\_update will still be run when kded starts up. The default value of this option is "true". Checking can be disabled by setting this option to "false". -**CheckHostname**: This option can be used to disable checking for hostname -changes. The default value of this option is "true". Checking can be -disabled by setting this option to "false". - Example kdedrc file with default values: [General] - HostnamePollInterval=5000 CheckSycoca=true CheckUpdates=true - CheckHostname=true - CheckFileStamps=true DelayedCheck=false -If FAM or DNOTIFY is not available, the filesystem will be polled at regular interval for any changes. Under the [DirWatch] group in the kdeglobals file -the following options are available to adjust the polling frequency: - -**PollInterval**: This can be used to adjust the time interval at which the local -filesystem is checked for new software or update files. The time is specified -in milliseconds and has a default of 500 (0.5 seconds). - -**NFSPollInterval**: This can be used to adjust the time interval at which remote -filesystems, such as NFS or Samba, are ebing checked for new software or -update files. The time is specified in milliseconds and has a default of 5000 -(5 seconds). - -The above options are not used when FAM is used to watch for changes in the -filesystem, or when DNOTIFY is used. Specifying larger intervals may reduce -the CPU load and/or network traffic. Shorter intervals are not recommended. - -Please note that in previous versions of KDE these options where listed in -the kderc file. - -Example kdeglobals fragment: - - [DirWatch] - PollInterval=500 - NFSPollInterval=5000 - ### KDED modules Some things can be greatly simplified if they can be coordinated from a diff --git a/local/recipes/kde/kf6-kded6/source/docs/HOWTO b/local/recipes/kde/kf6-kded6/source/docs/HOWTO index 53e8c311a9..487de6f39a 100644 --- a/local/recipes/kde/kf6-kded6/source/docs/HOWTO +++ b/local/recipes/kde/kf6-kded6/source/docs/HOWTO @@ -22,15 +22,6 @@ A KDED module will be loaded on KDE startup if it has a line Note that this flag doesn't cause the module to be loaded if the KDE desktop is not running (i.e. when running a KDE application in another environment). -[The following paragraph was copied from kdebase/workspace/ksmserver/README] -The exact way autoloading works is controlled by X-KDE-Kded-phase=, -which may be 0, 1 or 2 (the default). Kded phase 0 means the module is -always loaded by kded, even outside of KDE session. It should used only -by kded modules which must be always running. Kded phase 1 modules are -loaded right after kded startup, but only during KDE startup, i.e. it is -for modules that are always needed by the KDE session. Phase 2 modules -will be loaded later. - Normally KDED modules are loaded whenever they are accessed, so you don't need autoloading enabled. On demand loading can be disabled by putting the following line in the .desktop file: diff --git a/local/recipes/kde/kf6-kded6/source/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/docs/kded6/man-kded6.8.docbook index 9fe3db1eb5..a162e2c9b0 100644 --- a/local/recipes/kde/kf6-kded6/source/docs/kded6/man-kded6.8.docbook +++ b/local/recipes/kde/kf6-kded6/source/docs/kded6/man-kded6.8.docbook @@ -86,7 +86,7 @@ Configuration -kded6 can be configured with the kded6rc ini-style configuration file. On &UNIX; systems, this can be found at $XDG_CONFIG_HOME/kded6rc; if $XDG_CONFIG_HOME is not set, this defaults to ~/.config/kded6rc. +kded6 can be configured with the kded5rc ini-style configuration file. On &UNIX; systems, this can be found at $XDG_CONFIG_HOME/kded5rc; if $XDG_CONFIG_HOME is not set, this defaults to ~/.config/kded5rc. Configuration file entries are read on-demand, so changes can be made while kded6 is running. However, all the current configuration options only really affect the startup behaviour of kded6. @@ -103,11 +103,6 @@ - -Whether to check file timestamps when performing the initial sycoca update (default: true). See the documentation for kbuildsycoca6 for more details. - - - Whether to delay the initial sycoca update until about a minute after starting (default: false). @@ -115,7 +110,7 @@
-Each module also has a section in kded6rc, where name is the name of the module's desktop file without the .desktop extension. This contains an option that specifies whether the module should be automatically loaded when kded6 is started (default: false). Note that this setting can also be changed via kded6's &DBus; interface. +Each module also has a section in kded5rc, where name is the name of the module's desktop file without the .desktop extension. This contains an option that specifies whether the module should be automatically loaded when kded6 is started (default: false). Note that this setting can also be changed via kded6's &DBus; interface. @@ -124,7 +119,6 @@ See Also kbuildsycoca68, -kdeinit68 diff --git a/local/recipes/kde/kf6-kded6/source/kded6-wrapper.sh b/local/recipes/kde/kf6-kded6/source/kded6-wrapper.sh deleted file mode 100644 index 405df63409..0000000000 --- a/local/recipes/kde/kf6-kded6/source/kded6-wrapper.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# kded6 wrapper — prevents Qt6 Wayland QPA crash on Redox -# Qt6 Wayland page-faults at null+8 during wl_proxy_add_listener. -# QT_QPA_PLATFORM=offscreen is NOT sufficient — Qt6 still tries wayland. -# Rename the wayland plugin so Qt can't find it, forcing offscreen fallback. -if [ -f /usr/plugins/platforms/libqwayland.so ]; then - mv /usr/plugins/platforms/libqwayland.so /usr/plugins/platforms/libqwayland.so.disabled -fi -export QT_QPA_PLATFORM=offscreen -exec /usr/bin/kded6.real "$@" diff --git a/local/recipes/kde/kf6-kded6/source/org.kde.kded6.desktop b/local/recipes/kde/kf6-kded6/source/org.kde.kded6.desktop index 0ca5eb83f9..c1d269a31a 100644 --- a/local/recipes/kde/kf6-kded6/source/org.kde.kded6.desktop +++ b/local/recipes/kde/kf6-kded6/source/org.kde.kded6.desktop @@ -20,6 +20,7 @@ Name[et]=KDED Name[eu]=KDED Name[fi]=KDED Name[fr]=KDED +Name[ga]=KDED Name[gl]=KDED Name[he]=KDED Name[hi]=केडीईडी @@ -27,6 +28,7 @@ Name[hu]=KDED Name[ia]=KDED Name[is]=KDED Name[it]=KDED +Name[ja]=KDED Name[ka]=KDED Name[ko]=KDED Name[lt]=KDED @@ -46,11 +48,12 @@ Name[sq]=KDED Name[sv]=KDED Name[ta]=KDED Name[tr]=KDED +Name[ug]=KDED Name[uk]=KDED Name[vi]=KDED -Name[x-test]=xxKDEDxx Name[zh_CN]=KDED Name[zh_TW]=KDED Type=Service Icon=kde-frameworks NoDisplay=true +StartupNotify=false diff --git a/local/recipes/kde/kf6-kded6/source/po/ca/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/po/ca/docs/kded6/man-kded6.8.docbook index 4645211922..b2b0101a34 100644 --- a/local/recipes/kde/kf6-kded6/source/po/ca/docs/kded6/man-kded6.8.docbook +++ b/local/recipes/kde/kf6-kded6/source/po/ca/docs/kded6/man-kded6.8.docbook @@ -139,15 +139,15 @@ >El kded6 es pot configurar amb el fitxer de configuració a l'estil ini kded6rckded5rc. Sobre els sistemes &UNIX;, el trobareu a $XDG_CONFIG_HOME/kded6rc/kded5rc. Si no s'ha establert $XDG_CONFIG_HOME, de manera predeterminada estarà a ~/.config/kded6rc~/.config/kded5rc. -Per a comprovar les marques de temps dels fitxers en realitzar l'actualització inicial de «sycoca» (predeterminat: true). Per a més detalls, vegeu la documentació per a kbuildsycoca6. - - - - nom] al kded6rckded5rc, on el nom és el nom del fitxer d'escriptori del mòdul sense l'extensió 8, kdeinit68 +>, diff --git a/local/recipes/kde/kf6-kded6/source/po/ca@valencia/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/po/ca@valencia/docs/kded6/man-kded6.8.docbook new file mode 100644 index 0000000000..3ab8ec793d --- /dev/null +++ b/local/recipes/kde/kf6-kded6/source/po/ca@valencia/docs/kded6/man-kded6.8.docbook @@ -0,0 +1,271 @@ + + +]> + + + + +Manual d'usuari de kded6 +David Faure Mantenidor + +
faure@kde.org
+
+
+ +Waldo Bastian Autor original + +
bastian@kde.org
+
+
+ +22 de juny de 2023 +Frameworks 6 +Frameworks de KDE + +
+ + +kded6 +8 + + + +kded6 +Dimoni de &kde;: provoca l'actualització de la base de dades Sycoca quan cal. + + + +Sinopsi + +kded6 --check + + + +Descripció + +kded6 consolida una sèrie de serveis petits en un sol procés. Es tracta principalment de serveis de &DBus; proporcionats pels mòduls de KDED, però també gestiona «sycoca» (un cau binari dels tipus de servei, els tipus &MIME; i els serveis utilitzats per KService) i els scripts d'actualització de KConfig, segons siga necessari. + +Per a «sycoca», efectuarà un seguiment dels directoris que contenen fitxers .desktop. Quan s'afig o elimina un fitxer, espera 5 segons (en el cas d'una sèrie d'actualitzacions) i, a continuació, inicia kbuildsycoca6 per a actualitzar el «sycoca». + +Per a KConfig, comprova els fitxers d'actualització instal·lats recentment, &pex;, els fitxers *.upd utilitzats per a actualitzar els fitxers de configuració quan es canvia el format d'estos, i executa la utilitat d'actualització KConfig per a realitzar les actualitzacions. + +Estes tasques també s'executen quan s'inicia kded6 per a assegurar que la configuració d'usuari està actualitzada. + +Normalment no necessitareu executar kded6 directament. Les sessions d'escriptori &plasma; ho fan automàticament, i s'inicia sota demanda quan una aplicació intenta utilitzar una interfície de &DBus; que el proveïx o un dels seus mòduls. + + + + + + +Opcions + + + + + +Comprova la base de dades de «sycoca», actualitzant-la si cal, i ix. + + + + + + + + +Configurar + +kded6 es pot configurar amb el fitxer de configuració a l'estil ini kded6rc. Sobre els sistemes &UNIX;, el trobareu a $XDG_CONFIG_HOME/kded6rc. Si no s'ha establit $XDG_CONFIG_HOME, de manera predeterminada estarà a ~/.config/kded6rc. + +Les entrades en el fitxer de configuració es lligen sota demanda, de manera que es poden fer canvis mentre s'està executant kded6. No obstant açò, totes les opcions de configuració actuals, en realitat només afectaran el comportament durant l'arrancada de kded6. + +La secció disposa de les opcions següents: + + +Per a actualitzar «sycoca» durant l'arrancada (predeterminat: true). + + + + +Per a realitzar les actualitzacions pendents de KConfig durant l'arrancada (predeterminat: true). + + + + +Per a comprovar les marques de temps dels fitxers en realitzar l'actualització inicial de «sycoca» (predeterminat: true). Per a més detalls, vegeu la documentació per a kbuildsycoca6. + + + + +Per a retardar l'actualització inicial de «sycoca» prop d'un minut després de començar (predeterminat: false). + + + + + +Cada mòdul també compta amb una secció en kded6rc, on el nom és el nom del fitxer d'escriptori del mòdul sense l'extensió .desktop. Este conté una opció que especifica si el mòdul s'haurà de carregar automàticament quan s'inicia kded6 (predeterminat: false). Cal tindre en compte que este valor també es pot canviar a través de la interfície de &DBus; de kded6. + + + + + +Vegeu també +kbuildsycoca68, kdeinit68 + + + + + +Errors +Utilitzeu el Seguidor d'errors de &kde; (escriviu-hi en anglés) per a informar dels errors. + + +
diff --git a/local/recipes/kde/kf6-kded6/source/po/es/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/po/es/docs/kded6/man-kded6.8.docbook index 527538f2cf..83c1031b4d 100644 --- a/local/recipes/kde/kf6-kded6/source/po/es/docs/kded6/man-kded6.8.docbook +++ b/local/recipes/kde/kf6-kded6/source/po/es/docs/kded6/man-kded6.8.docbook @@ -137,15 +137,15 @@ >kded6 se puede configurar con el archivo de configuración de kded6rckded5rc ini-style. En los sistemas &UNIX;, se puede encontrar en $XDG_CONFIG_HOME/kded6rc/kded5rc; si no se le ha dado valor a $XDG_CONFIG_HOME su valor predeterminado es~/.config/kded6rc~/.config/kded5rc. -Indica si se debe comprobar las marcas de tiempo del archivo cuando se realiza la actualización inicial de sycoca (de manera predeterminada: true). Consulte la documentación de kbuildsycoca6 para obtener más información. - - - - name]en kded6rckded5rc, donde name es el nombre del archivo de escritorio sin la extensión 8, kdeinit68 +>, diff --git a/local/recipes/kde/kf6-kded6/source/po/fr/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/po/fr/docs/kded6/man-kded6.8.docbook index 321964212e..6782688a3b 100644 --- a/local/recipes/kde/kf6-kded6/source/po/fr/docs/kded6/man-kded6.8.docbook +++ b/local/recipes/kde/kf6-kded6/source/po/fr/docs/kded6/man-kded6.8.docbook @@ -138,14 +138,14 @@ >kded6
peut être configurée avec le fichier de configuration kded6rc ini-style. Sur les systèmes &UNIX; ceci peut être trouvé dans dans le style « ini-style ». Sur les systèmes « UNIX », ce dernier peut être trouvé dans $XDG_CONFIG_HOME/kded6rc; si la variable /kded5rc. Si la variable $XDG_CONFIG_HOME n'est pas définie, la valeur par défaut est ~/.config/kded6rc~/.config/kded5rc. [Module-nom] dans dans le fichier kded6rc, où le paramètre nom est le nom du fichier de module de bureau sans l'extension .desktop. Ceci contient une option spécifiant si le module doit être automatiquement chargé quand la commande kded6 est démarrée (Par défaut : est lancée (Par défaut : False). Veuillez noter que ce paramètre peut aussi être modifié par l'interface &DBus; par la commande kded6kded6 può essere configurato con il file di configurazione in stile ini kded6rckded5rc. Sui sistemi &UNIX;, questo si può trovare sotto $XDG_CONFIG_HOME/kded6rc/kded5rc; se $XDG_CONFIG_HOME non è impostata, il suo valore predefinito è ~/.config/kded6rc~/.config/kded5rc. nome] in kded6rckded5rc, dove nome è il nome del file desktop del modulo senza l'estensione kded6 kan geconfigureerd worden met het configuratiebestand kded6rckded5rc in ini-stijl. Onder &UNIX;-systemen, is het te vinden in $XDG_CONFIG_HOME; als $XDG_CONFIG_HOME niet is ingesteld, dan krijgt dit de standaard waarde ~/.config/kded6rc~/.config/kded5rc. -Of datum-tijd van bestanden gecontroleerd moeten worden bij het uitvoeren van het initiële bijwerken van sycoca (standaard: true). Zie de documentatie voor kbuildsycoca6 voor meer details. - - - - naam] in kded6rckded5rc, waar naam de naam is van het desktop-bestand van de module zonder de extensie 8, kdeinit68 +>, diff --git a/local/recipes/kde/kf6-kded6/source/po/pt_BR/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/po/pt_BR/docs/kded6/man-kded6.8.docbook new file mode 100644 index 0000000000..018bdf4450 --- /dev/null +++ b/local/recipes/kde/kf6-kded6/source/po/pt_BR/docs/kded6/man-kded6.8.docbook @@ -0,0 +1,269 @@ + + +]> + + + + +Manual do Usuário do kded6 +David Faure Mantenedor + +
faure@kde.org
+
+
+ +Waldo Bastian Autor original + +
bastian@kde.org
+
+
+ +22/06/2023 +Frameworks 6 +KDE Frameworks + +
+ + +kded6 +8 + + + +kded6 +Servidor do &kde; - dispara as atualizações do banco de dados Sycoca quando for necessário. + + + +Sintaxe + +kded6 --check + + + +Descrição + +O kded6 consolida diversos pequenos serviços em um único processo. Normalmente, são serviços &DBus; fornecidos por módulos do KDED, mas também gerencia o sycoca (um cache binário dos tipos de serviços, tipos &MIME; e serviços usados pelo KService), assim como os scripts de atualização do KConfig que forem necessários. + +No caso do sycoca, ele monitora as pastas que contêm arquivos '.desktop'. Quando for adicionado/removido um arquivo, ele espera cerca de 5 segundos (para o caso de ser uma série de atualizações) e depois executa o kbuildsycoca6 para atualizar o sycoca. + +No caso do KConfig, ele verifica os arquivos de atualização recém instalados, &ie;, os arquivos *.upd usados para atualizar os arquivos de configuração dos usuários quando os formatos dos arquivos de configuração mudarem e executa o utilitário KConfig para efetuar as alterações. + +Essas tarefas também são executadas quando o kded6 for iniciado para garantir que a configuração do usuário esteja atualizada. + +Você normalmente não precisará executar o kded6 diretamente. As sessões do ambiente de trabalho &plasma; executam-no automaticamente e também por solicitação, quando um aplicativo tentar usar uma interface de &DBus; oferecida por ele ou um dos seus módulos. + + + + + + +Opções + + + + + +Verifica o banco de dados sycoca, atualizando-o se necessário, e depois finaliza. + + + + + + + + +Configuração + +O kded6 pode ser configurado com o arquivo de configuração kded6rc, no estilo 'ini'. Em sistemas &UNIX;, este pode ser encontrado em $XDG_CONFIG_HOME/kded6rc; se $XDG_CONFIG_HOME não estiver definido, o valor será por padrão ~/.config/kded5rc. + +Os itens do arquivo de configuração são lidos por solicitação e só poderá efetuar as alterações enquanto o kded6 estiver em execução. No entanto, todas as opções de configuração atuais só afetam realmente o comportamento inicial do kded6. + +A seção tem as seguintes opções: + + +Se deve atualizar o sycoca na inicialização (padrão: true). + + + + +Se deve efetuar as atualizações restantes do KConfig na inicialização (padrão: true). + + + + +Se deve verificar a data/hora dos arquivos ao efetuar a atualização inicial do sycoca (padrão: true). Consulte a documentação do kbuildsycoca6 para obter mais detalhes. + + + + +Se deve atrasar a atualização inicial do sycoca por até um minuto após a inicialização (padrão: false). + + + + + +Cada módulo terá também uma seção no arquivo kded5rc, onde nome é o nome do arquivo 'desktop' do módulo, sem a extensão .desktop. Esta contém uma opção que define se o módulo deverá ser carregado automaticamente quando o kded6 for iniciado (padrão: false). Lembre-se de que esta definição também pode ser alterada através da interface &DBus; do kded6. + + + + + +Veja também +kbuildsycoca68, kdeinit68 + + + + + +Problemas +Use o sistema de gerenciamento de erros do &kde; para relatar erros. + + +
diff --git a/local/recipes/kde/kf6-kded6/source/po/tr/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/po/tr/docs/kded6/man-kded6.8.docbook index f98f737060..d063018a6c 100644 --- a/local/recipes/kde/kf6-kded6/source/po/tr/docs/kded6/man-kded6.8.docbook +++ b/local/recipes/kde/kf6-kded6/source/po/tr/docs/kded6/man-kded6.8.docbook @@ -40,7 +40,7 @@ 2023-06-22 +>2023‒06‒22 Frameworks 6 kded6
&kde; ardalan süreci, gerektiğinde Sycoca veritabanını günceller. +>&kde; ardalan süreci, gerektiğinde Sycoca veri tabanını günceller. @@ -88,7 +88,7 @@ >, tek süreçte birden çok küçük hizmeti birleştirir. Bunlar çoğunlukla KDED modülleri tarafından sağlanan &DBus; hizmetleridir; ancak gerekirse sycoca (hizmet türleri, &MIME; türleri ve KService tarafından kullanılan hizmetlerin ikili önbelleği) ve KConfig güncelleme betiklerini de yönetir. Sycoca için, .desktop dosyalarını içeren dizinleri izler. Bir dosya eklendiğinde veya kaldırıldığında 5 saniye kadar bekler (bir güncelleme serisi durumunda), ardından sycoca’yı güncellemek için Sycoca için .desktop dosyalarını içeren dizinleri izler. Bir dosya eklendiğinde veya kaldırıldığında 5 saniye kadar bekler (bir güncelleme serisi durumunda), ardından sycoca’yı güncellemek için kbuildsycoca6 komutunu başlatır. @@ -121,7 +121,7 @@ > sycoca veritabanını denetleyin, gerekliyse güncelleyin ve çıkın. +>sycoca veri tabanını denetleyin, gerekliyse güncelleyin ve çıkın. @@ -141,11 +141,11 @@ > ini-biçemli yapılandırma dosyasıyla yapılandırılabilir. &UNIX; sistemlerde, bu $XDG_CONFIG_HOME/kded6rc/kded5rc konumunda bulunabilir; $XDG_CONFIG_HOME ayarlanmamışsa öntanımlı değer ~/.config/kded6rc~/.config/kded5rc olur. -İlk sycoca güncellemesini yaparken dosya zaman damgalarının denetlenip denetlenmeyeceği (öntanımlı: true). Ayrıntılar için kbuildsycoca6 belgelendirmesine göz atın. - - - - Her modül ayrıca kded6rckded5rc içinde bir +>, @@ -262,7 +242,7 @@ >Hatalar Hataları bildirmek için lütfen &kde;'nin hata izleyicisini&kde;’nin hata izleyicisini kullanın. diff --git a/local/recipes/kde/kf6-kded6/source/po/uk/docs/kded6/man-kded6.8.docbook b/local/recipes/kde/kf6-kded6/source/po/uk/docs/kded6/man-kded6.8.docbook index 36948269a6..aa45831312 100644 --- a/local/recipes/kde/kf6-kded6/source/po/uk/docs/kded6/man-kded6.8.docbook +++ b/local/recipes/kde/kf6-kded6/source/po/uk/docs/kded6/man-kded6.8.docbook @@ -186,20 +186,6 @@ -Визначає, чи слід виконувати перевірку часових позначок під час початкового оновлення sycoca (типове значення: true). Щоб дізнатися більше, зверніться до документації з kbuildsycoca6. - - - - 8, kdeinit68 +>, diff --git a/local/recipes/kde/kf6-kded6/source/src/CMakeLists.txt b/local/recipes/kde/kf6-kded6/source/src/CMakeLists.txt index 8010268b69..f345235f86 100644 --- a/local/recipes/kde/kf6-kded6/source/src/CMakeLists.txt +++ b/local/recipes/kde/kf6-kded6/source/src/CMakeLists.txt @@ -3,7 +3,7 @@ add_executable(kded6) target_sources(kded6 PRIVATE kded.cpp kdedadaptor.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/org.kde.kded6.xml + ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kded6.xml # just so that it gets generated ) ecm_qt_declare_logging_category( @@ -12,7 +12,6 @@ ecm_qt_declare_logging_category( IDENTIFIER KDED CATEGORY_NAME kf.kded OLD_CATEGORY_NAMES kf5.kded - DEFAULT_SEVERITY Warning DESCRIPTION "KDED" EXPORT KDED ) @@ -29,7 +28,7 @@ target_link_libraries(kded6 ) target_compile_definitions(kded6 PRIVATE - KCONF_UPDATE_EXE="/usr/bin/kconf_update" + KCONF_UPDATE_EXE="$" ) install(TARGETS kded6 ${KF_INSTALL_TARGETS_DEFAULT_ARGS} ) @@ -39,7 +38,8 @@ configure_file(plasma-kded6.service.in install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasma-kded6.service DESTINATION ${KDE_INSTALL_SYSTEMDUSERUNITDIR}) -install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/org.kde.kded6.xml DESTINATION ${KDE_INSTALL_DBUSINTERFACEDIR}) +qt_generate_dbus_interface( kdedadaptor.h org.kde.kded6.xml ) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kded6.xml DESTINATION ${KDE_INSTALL_DBUSINTERFACEDIR}) kdbusaddons_generate_dbus_service_file(kded6 org.kde.kded6 ${KDE_INSTALL_FULL_BINDIR}) diff --git a/local/recipes/kde/kf6-kded6/source/src/kded.cpp b/local/recipes/kde/kf6-kded6/source/src/kded.cpp index 9d5d051a71..a5482c1e2e 100644 --- a/local/recipes/kde/kf6-kded6/source/src/kded.cpp +++ b/local/recipes/kde/kf6-kded6/source/src/kded.cpp @@ -110,11 +110,6 @@ void Kded::messageFilter(const QDBusMessage &message) self()->loadModule(obj, true); } -static int phaseForModule(const KPluginMetaData &module) -{ - return module.value(QStringLiteral("X-KDE-Kded-phase"), 2); -} - QList Kded::availableModules() const { QList plugins = KPluginMetaData::findPlugins(QStringLiteral("kf6/kded")); @@ -139,20 +134,6 @@ void Kded::initModules() { m_dontLoad.clear(); - bool kde_running = !qEnvironmentVariableIsEmpty("KDE_FULL_SESSION"); - if (kde_running) { - // not the same user like the one running the session (most likely we're run via sudo or something) - const QByteArray sessionUID = qgetenv("KDE_SESSION_UID"); - if (!sessionUID.isEmpty() && uid_t(sessionUID.toInt()) != getuid()) { - kde_running = false; - } - // not the same kde version as the current desktop - const QByteArray kdeSession = qgetenv("KDE_SESSION_VERSION"); - if (kdeSession.toInt() != 6) { - kde_running = false; - } - } - // Preload kded modules. const QList kdedModules = availableModules(); for (const KPluginMetaData &module : kdedModules) { @@ -162,26 +143,8 @@ void Kded::initModules() continue; } - // see ksmserver's README for description of the phases - bool prevent_autoload = false; - switch (phaseForModule(module)) { - case 0: // always autoload - break; - case 1: // autoload only in KDE - if (!kde_running) { - prevent_autoload = true; - } - break; - case 2: // autoload delayed, only in KDE - default: - if (!kde_running) { - prevent_autoload = true; - } - break; - } - // Load the module if necessary and allowed - if (autoload && !prevent_autoload) { + if (autoload) { if (!loadModule(module, false)) { continue; } @@ -556,58 +519,12 @@ void KUpdateD::slotNewUpdateFile(const QString &dirty) m_pTimer->start(500); } -static bool detectPlatform(int argc, char **argv) -{ - if (qEnvironmentVariableIsSet("QT_QPA_PLATFORM")) { - return false; - } - for (int i = 0; i < argc; i++) { - /* clang-format off */ - if (qstrcmp(argv[i], "-platform") == 0 - || qstrcmp(argv[i], "--platform") == 0 - || QByteArrayView(argv[i]).startsWith("-platform=") - || QByteArrayView(argv[i]).startsWith("--platform=")) { /* clang-format on */ - return false; - } - } - const QByteArray sessionType = qgetenv("XDG_SESSION_TYPE"); - if (sessionType.isEmpty()) { - return false; - } - if (qstrcmp(sessionType.data(), "wayland") == 0) { -#ifdef Q_OS_REDOX - // Qt6 Wayland QPA crashes at null+8 during wl_registry init on Redox. - // kded6 is a headless D-Bus daemon — use offscreen platform instead. - qputenv("QT_QPA_PLATFORM", "offscreen"); -#else - qputenv("QT_QPA_PLATFORM", "wayland"); -#endif - return true; - } else if (qstrcmp(sessionType.data(), "x11") == 0) { - qputenv("QT_QPA_PLATFORM", "xcb"); - return true; - } - return false; -} - int main(int argc, char *argv[]) { // options.add("check", qi18n("Check Sycoca database only once")); - // WABA: Make sure not to enable session management. - qunsetenv("SESSION_MANAGER"); - - const bool unsetQpa = detectPlatform(argc, argv); - - // In older versions, QApplication creation was postponed until after - // testing for --check, in which case, only a QCoreApplication was created. - // Since that option is no longer used at startup, we removed that speed - // optimization for code clarity and easier support of standard parameters. - + QCoreApplication::setAttribute(Qt::AA_DisableSessionManager); QApplication app(argc, argv); - if (unsetQpa) { - qunsetenv("QT_QPA_PLATFORM"); - } app.setQuitOnLastWindowClosed(false); app.setQuitLockEnabled(false); diff --git a/local/recipes/kde/kf6-kded6/source/src/kded.h b/local/recipes/kde/kf6-kded6/source/src/kded.h index 11b3e01230..76e6fc5e30 100644 --- a/local/recipes/kde/kf6-kded6/source/src/kded.h +++ b/local/recipes/kde/kf6-kded6/source/src/kded.h @@ -92,8 +92,7 @@ public: * Configure whether a module should be loaded on startup * * If a module is set to be auto-loaded, it will be loaded at the start of a KDE - * session. Depending on the phase it is set to load in, it may also be loaded - * when the first KDE application is run outside of a KDE session. + * session. * * @param module the name of the desktop file for the module, without the .desktop extension * @param autoload if @c true, the module will be loaded at startup, diff --git a/local/recipes/kde/kf6-kded6/source/src/org.kde.kded6.xml b/local/recipes/kde/kf6-kded6/source/src/org.kde.kded6.xml deleted file mode 100644 index dcfe8e13a4..0000000000 --- a/local/recipes/kde/kf6-kded6/source/src/org.kde.kded6.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/local/recipes/kde/kf6-kded6/source/src/plasma-kded6.service.in b/local/recipes/kde/kf6-kded6/source/src/plasma-kded6.service.in index fba5e8fdfc..0e9af50df4 100644 --- a/local/recipes/kde/kf6-kded6/source/src/plasma-kded6.service.in +++ b/local/recipes/kde/kf6-kded6/source/src/plasma-kded6.service.in @@ -8,3 +8,4 @@ ExecStart=@KDE_INSTALL_FULL_BINDIR@/kded6 BusName=org.kde.kded6 Slice=session.slice TimeoutStopSec=5sec +Restart=on-failure diff --git a/local/recipes/kde/kf6-kiconthemes/source.tar b/local/recipes/kde/kf6-kiconthemes/source.tar index 7ec7922400..2872abdad6 100644 Binary files a/local/recipes/kde/kf6-kiconthemes/source.tar and b/local/recipes/kde/kf6-kiconthemes/source.tar differ diff --git a/local/recipes/kde/kf6-kiconthemes/source/.gitlab-ci.yml b/local/recipes/kde/kf6-kiconthemes/source/.gitlab-ci.yml index 3b5ec8da9c..41f93a4dc5 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/.gitlab-ci.yml +++ b/local/recipes/kde/kf6-kiconthemes/source/.gitlab-ci.yml @@ -5,7 +5,11 @@ include: - project: sysadmin/ci-utilities file: - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/linux-qt6-next.yml - /gitlab-templates/linux-qt6-static.yml - /gitlab-templates/android-qt6.yml - /gitlab-templates/freebsd-qt6.yml - /gitlab-templates/windows-qt6.yml + - /gitlab-templates/alpine-qt6.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml diff --git a/local/recipes/kde/kf6-kiconthemes/source/.kde-ci.yml b/local/recipes/kde/kf6-kiconthemes/source/.kde-ci.yml index 341daeaf58..c37b13ccf3 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/.kde-ci.yml +++ b/local/recipes/kde/kf6-kiconthemes/source/.kde-ci.yml @@ -1,17 +1,18 @@ Dependencies: -- 'on': ['@all'] - 'require': + - 'on': ['@all'] + 'require': 'frameworks/extra-cmake-modules': '@same' - 'frameworks/ki18n' : '@same' - 'frameworks/kconfig' : '@same' - 'frameworks/kwidgetsaddons' : '@same' - 'frameworks/karchive' : '@same' - 'frameworks/kcolorscheme' : '@same' + 'frameworks/ki18n': '@same' + 'frameworks/kconfig': '@same' + 'frameworks/kwidgetsaddons': '@same' + 'frameworks/karchive': '@same' + 'frameworks/kcolorscheme': '@same' -- 'on': [ 'Linux', 'FreeBSD', 'Windows' ] - 'require': + - 'on': ['Linux', 'FreeBSD', 'Windows'] + 'require': 'frameworks/breeze-icons': '@same' Options: - test-before-installing: True - require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows', 'Android' ] + test-before-installing: True + require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows', 'Android'] + enable-lsan: True diff --git a/local/recipes/kde/kf6-kiconthemes/source/.redbear-src-version b/local/recipes/kde/kf6-kiconthemes/source/.redbear-src-version new file mode 100644 index 0000000000..2ece8e17b5 --- /dev/null +++ b/local/recipes/kde/kf6-kiconthemes/source/.redbear-src-version @@ -0,0 +1 @@ +6.28.0 diff --git a/local/recipes/kde/kf6-kiconthemes/source/CMakeLists.txt b/local/recipes/kde/kf6-kiconthemes/source/CMakeLists.txt index 56acc842b5..8a817d2fe9 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/CMakeLists.txt +++ b/local/recipes/kde/kf6-kiconthemes/source/CMakeLists.txt @@ -1,12 +1,12 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.29) -set(KF_VERSION "6.10.0") # handled by release scripts -set(KF_DEP_VERSION "6.10.0") # handled by release scripts +set(KF_VERSION "6.28.0") # handled by release scripts +set(KF_DEP_VERSION "6.28.0") # handled by release scripts project(KIconThemes VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 6.10.0 NO_MODULE) +find_package(ECM 6.28.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -23,14 +23,13 @@ include(ECMGenerateHeaders) include(ECMMarkNonGuiExecutable) include(ECMQtDeclareLoggingCategory) include(ECMDeprecationSettings) -include(ECMAddQch) include(CMakeDependentOption) +include(ECMQmlModule) +include(ECMGenerateQDoc) set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of deprecated API excluded from the build [default=0].") option(KICONTHEMES_USE_QTQUICK "Build QML plugin using Qt6Qml" ON) -option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) -add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") cmake_dependent_option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON "NOT CMAKE_CROSSCOMPILING" OFF) add_feature_info(DESIGNERPLUGIN ${BUILD_DESIGNERPLUGIN} "Build plugin for Qt Designer") @@ -43,74 +42,18 @@ ecm_setup_version(PROJECT SOVERSION 6) # Dependencies -set(REQUIRED_QT_VERSION 6.6.0) +set(REQUIRED_QT_VERSION 6.9.0) find_package(Qt6Widgets ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) -find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED) find_package(Qt6Svg ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) +if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0") + find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) +endif() + +if (KICONTHEMES_USE_QTQUICK) + find_package(Qt6 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Qml Quick) +endif() + # shall we use DBus? # enabled per default on Linux & BSD systems set(USE_DBUS_DEFAULT OFF) @@ -129,7 +72,7 @@ find_package(KF6WidgetsAddons ${KF_DEP_VERSION} REQUIRED) find_package(KF6ColorScheme ${KF_DEP_VERSION} REQUIRED) # ensure we have our icons around on all platforms that require it -set(USE_BreezeIcons_DEFAULT OFF) +set(USE_BreezeIcons_DEFAULT ON) if(ANDROID) set(USE_BreezeIcons_DEFAULT OFF) endif() @@ -142,12 +85,12 @@ remove_definitions(-DQT_NO_CAST_FROM_ASCII) remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY) ecm_set_disabled_deprecation_versions( - QT 6.8.0 - KF 6.8.0 + QT 6.11.0 + KF 6.27.0 ) add_definitions(-DTRANSLATION_DOMAIN=\"kiconthemes6\") -#ki18n_install(po) +ki18n_install(po) add_subdirectory(src) if (BUILD_TESTING) add_subdirectory(tests) @@ -157,16 +100,6 @@ endif() # create a Config.cmake and a ConfigVersion.cmake file and install them set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF6IconThemes") -if (BUILD_QCH) - ecm_install_qch_export( - TARGETS KF6IconThemes_QCH - FILE KF6IconThemesQchTargets.cmake - DESTINATION "${CMAKECONFIG_INSTALL_DIR}" - COMPONENT Devel - ) - set(PACKAGE_INCLUDE_QCHTARGETS "include(\"\${CMAKE_CURRENT_LIST_DIR}/KF6IconThemesQchTargets.cmake\")") -endif() - include(CMakePackageConfigHelpers) configure_package_config_file( diff --git a/local/recipes/kde/kf6-kiconthemes/source/KF6IconThemesConfig.cmake.in b/local/recipes/kde/kf6-kiconthemes/source/KF6IconThemesConfig.cmake.in index f38dfc5fba..79b20043fc 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/KF6IconThemesConfig.cmake.in +++ b/local/recipes/kde/kf6-kiconthemes/source/KF6IconThemesConfig.cmake.in @@ -22,4 +22,3 @@ if (NOT @BUILD_SHARED_LIBS@) endif() include("${CMAKE_CURRENT_LIST_DIR}/KF6IconThemesTargets.cmake") -@PACKAGE_INCLUDE_QCHTARGETS@ diff --git a/local/recipes/kde/kf6-kiconthemes/source/autotests/CMakeLists.txt b/local/recipes/kde/kf6-kiconthemes/source/autotests/CMakeLists.txt index 1c2a8beb29..e4153a8c4e 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/autotests/CMakeLists.txt +++ b/local/recipes/kde/kf6-kiconthemes/source/autotests/CMakeLists.txt @@ -17,6 +17,7 @@ kiconthemes_tests( kicontheme_unittest kiconengine_unittest kiconengine_scaled_unittest + kiconbutton_unittest kicondialog_unittest kpixmapsequenceloadertest ) diff --git a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_scaled_unittest.cpp b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_scaled_unittest.cpp index 051bef06f7..3975439203 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_scaled_unittest.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_scaled_unittest.cpp @@ -47,9 +47,9 @@ private Q_SLOTS: QCOMPARE(image, unscaled); // center vertically - QVERIFY(icon.pixmap(QSize(22, 26), w.devicePixelRatio()).toImage().copy(0, 4, 44, 44) == image); + QCOMPARE(icon.pixmap(QSize(22, 26), w.devicePixelRatio()).toImage().copy(0, 4, 44, 44), image); // center horizontally - QVERIFY(icon.pixmap(QSize(26, 22), w.devicePixelRatio()).toImage().copy(4, 0, 44, 44) == image); + QCOMPARE(icon.pixmap(QSize(26, 22), w.devicePixelRatio()).toImage().copy(4, 0, 44, 44), image); } }; diff --git a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_unittest.cpp b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_unittest.cpp index 751f5febee..47598a15df 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_unittest.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconengine_unittest.cpp @@ -23,10 +23,6 @@ private Q_SLOTS: { QStandardPaths::setTestModeEnabled(true); - // Remove icon cache - const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QStringLiteral("/icon-cache.kcache"); - QFile::remove(cacheFile); - // we have Breeze via it's library and it inherits hicolor KConfigGroup cg(KSharedConfig::openConfig(), "Icons"); cg.writeEntry("Theme", "breeze"); @@ -129,10 +125,10 @@ private Q_SLOTS: const QImage image = icon.pixmap(22, 22).toImage(); // center vertically - QVERIFY(icon.pixmap(22, 26).toImage().copy(0, 2, 22, 22) == image); + QCOMPARE(icon.pixmap(22, 26).toImage().copy(0, 2, 22, 22), image); // center horizontally - QVERIFY(icon.pixmap(26, 22).toImage().copy(2, 0, 22, 22) == image); + QCOMPARE(icon.pixmap(26, 22).toImage().copy(2, 0, 22, 22), image); } void testNonSquareSvg() diff --git a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_benchmark.cpp b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_benchmark.cpp index 5ad08108d1..8671a5145f 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_benchmark.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_benchmark.cpp @@ -16,19 +16,6 @@ class KIconLoader_Benchmark : public QObject Q_OBJECT private Q_SLOTS: - void init() - { -#if 0 // Enable this code to benchmark very first startup. - // Starting the application again uses the on-disk cache, so actually benchmarking -with- a cache is more relevant. - // Remove icon cache - const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/icon-cache.kcache"; - QFile::remove(cacheFile); - - // Clear SHM cache - KIconLoader::global()->reconfigure(QString()); -#endif - } - void benchmarkExistingIcons() { // icon list I get to load kwrite @@ -92,9 +79,6 @@ private Q_SLOTS: void benchmarkNonExistingIcon_notCached() { QBENCHMARK { - // Remove icon cache - const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QStringLiteral("/icon-cache.kcache"); - QFile::remove(cacheFile); // Clear SHM cache KIconLoader::global()->reconfigure(QString()); diff --git a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_resourcethemetest.cpp b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_resourcethemetest.cpp index 5af48e4599..7c219580fb 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_resourcethemetest.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_resourcethemetest.cpp @@ -31,10 +31,6 @@ private Q_SLOTS: // ensure we don't use the breeze icon set from our lib for these tests but the fake we set up below KIconTheme::forceThemeForTests(QString()); - // Remove icon cache - const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QStringLiteral("/icon-cache.kcache"); - QFile::remove(cacheFile); - // Clear SHM cache KIconLoader::global()->reconfigure(QString()); } diff --git a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_unittest.cpp b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_unittest.cpp index f4a5fd816c..e34063d216 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_unittest.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/autotests/kiconloader_unittest.cpp @@ -158,10 +158,6 @@ private Q_SLOTS: void init() { - // Remove icon cache - const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QStringLiteral("/icon-cache.kcache"); - QFile::remove(cacheFile); - // Clear SHM cache KIconLoader::global()->reconfigure(QString()); } @@ -484,7 +480,7 @@ private Q_SLOTS: break; } } - QVERIFY(ts == foundSize); + QCOMPARE(ts, foundSize); } } diff --git a/local/recipes/kde/kf6-kiconthemes/source/autotests/kpixmapsequenceloadertest.cpp b/local/recipes/kde/kf6-kiconthemes/source/autotests/kpixmapsequenceloadertest.cpp index d586d6ce1a..95afc57678 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/autotests/kpixmapsequenceloadertest.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/autotests/kpixmapsequenceloadertest.cpp @@ -64,10 +64,6 @@ private Q_SLOTS: void init() { - // Remove icon cache - const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QStringLiteral("/icon-cache.kcache"); - QFile::remove(cacheFile); - // Clear SHM cache KIconLoader::global()->reconfigure(QString()); } diff --git a/local/recipes/kde/kf6-kiconthemes/source/docs/Doxyfile.local b/local/recipes/kde/kf6-kiconthemes/source/docs/Doxyfile.local deleted file mode 100644 index bcc8b1f137..0000000000 --- a/local/recipes/kde/kf6-kiconthemes/source/docs/Doxyfile.local +++ /dev/null @@ -1,10 +0,0 @@ -### KApiDox Project-specific Overrides File - -# define so that deprecated API is not skipped -PREDEFINED += \ - "KICONTHEMES_ENABLE_DEPRECATED_SINCE(x, y)=1" \ - "KICONTHEMES_BUILD_DEPRECATED_SINCE(x, y)=1" \ - "KICONTHEMES_DEPRECATED_VERSION(x, y, t)=" \ - "KICONTHEMES_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)=" \ - "KICONTHEMES_ENUMERATOR_DEPRECATED_VERSION(x, y, t)=" \ - "KICONTHEMES_ENUMERATOR_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)=" diff --git a/local/recipes/kde/kf6-kiconthemes/source/metainfo.yaml b/local/recipes/kde/kf6-kiconthemes/source/metainfo.yaml index e19bc67c4f..1ffe9d937d 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/metainfo.yaml +++ b/local/recipes/kde/kf6-kiconthemes/source/metainfo.yaml @@ -13,7 +13,7 @@ portingAid: false deprecated: false release: true libraries: - - cmake: "KF6::IconThemes" + - cmake: "KF6::IconThemes" cmakename: KF6IconThemes public_lib: true diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/af/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/af/kiconthemes6.po index 664e4555ea..7b438ecea9 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/af/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/af/kiconthemes6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4 stable\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2005-11-25 05:33+0200\n" "Last-Translator: Juanita Franz \n" "Language-Team: AFRIKAANS \n" @@ -16,102 +16,102 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Kies Ikoon" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aksies" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programme" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Toestelle" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime-tipes" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 #, fuzzy msgid "Status" msgstr "Opstart" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Andere" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "Blaai..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Kies Ikoon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ar/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ar/kiconthemes6.po index 616299437e..58a59ad0ae 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ar/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ar/kiconthemes6.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-31 12:07+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" @@ -27,100 +27,100 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "اختر الأيقونة…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "الكل" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "الرموز فقط" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "دون الرموز" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "الكل" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "الإجراءات" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "التطبيقات" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "الفئات" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "الأجهزة" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "الرموز" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "رموز المشاعر" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "أنواع MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "الأماكن" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "الحالة" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "أخرى" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "تصفّح…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "لا توجد أيقونات مطابقة لبحثك" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "لا يوجد أيقونات في هذه الفئة" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "اختر الأيقونة" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ast/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ast/kiconthemes6.po index e1d1578cab..4c045116de 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ast/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ast/kiconthemes6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2023-11-07 21:27+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" @@ -17,98 +17,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 23.08.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aiciones" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicaciones" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categoríes" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Preseos" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemes" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Llugares" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estáu" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/az/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/az/kiconthemes6.po index b5034d0c5d..89f506617a 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/az/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/az/kiconthemes6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2023-02-19 15:58+0400\n" "Last-Translator: Kheyyam \n" "Language-Team: Azerbaijani \n" @@ -17,99 +17,99 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 22.12.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Nişan seç..." -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "Bütün" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Bütün" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Əməllər" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Tətbiqlər" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kateqoriyalar" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Qurğular" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Yarlıqlar" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Smayllar" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime növləri" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Yerlər" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Digər" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Gözdən keçirin..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Axtarışa uyğun nişanlar yoxdur" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Kateqoriyada nişnlar yoxdur" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "İkonu Seç" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/be/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/be/kiconthemes6.po index 9aaddcd8b5..445515b204 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/be/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/be/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-05-19 21:12\n" "Last-Translator: Siarhei Liantsevich \n" "Language-Team: Belarusian\n" @@ -26,98 +26,98 @@ msgstr "" "kiconthemes6.po\n" "X-Crowdin-File-ID: 10092\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Абраць значок…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Усе" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Толькі сімвальныя" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Несімвальныя" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Усе" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Дзеянні" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Праграмы" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Катэгорыі" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Прылады" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Эмблемы" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Эмоцыі" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Тыпы MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Размяшчэнні" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Стан" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Іншыя" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Агляд…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Няма значкоў, якія адпавядаюць пошуку" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "У гэтай катэгорыі няма значкоў" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Абраць значок" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/be@latin/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/be@latin/kiconthemes6.po index d15406c462..d9e06ad018 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/be@latin/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/be@latin/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2008-09-05 20:23+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" @@ -20,72 +20,72 @@ msgstr "" "%100>=11 && n%100<=14 ? 2 : 3);\n" "X-Generator: KBabel 1.11.4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Abiary ikonu" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aperacyi" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikacyi" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Katehoryi" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Pryłady" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Znaki" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Smajliki" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Typy MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Miescy" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stanovišča" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -93,29 +93,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Inšaje" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Prahladaj..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Abiary ikonu" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/bg/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/bg/kiconthemes6.po index abd86af18a..cb134dc604 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/bg/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/bg/kiconthemes6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-05-13 22:47+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" @@ -19,98 +19,98 @@ msgstr "" "X-Generator: Lokalize 24.02.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Избор на икона…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Всички" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Само символни" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Без символни" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Всички" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Действия" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Програми" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Категории" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Устройства" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Емблеми" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Емоции" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Типове MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Места" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Състояние" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Други" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Преглед…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Няма икони, съответстващи на търсенето" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Няма икони в тази категория" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Избор на икона" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/bn/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/bn/kiconthemes6.po index 4679acda74..bb59ebbc06 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/bn/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/bn/kiconthemes6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kio\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2006-01-06 23:37-0600\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: Bengali \n" @@ -17,102 +17,102 @@ msgstr "" "X-Generator: KBabel 1.9.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "আইকন বেছে নাও" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "কাজ" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "অ্যাপলিকেশন" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "ডিভাইস" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "মাইম-টাইপ" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 #, fuzzy msgid "Status" msgstr "আরম্ভ" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "অন্যান্য" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "ব্রাউ&জ..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "আইকন বেছে নাও" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/br/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/br/kiconthemes6.po index c325f20e93..846eb28e83 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/br/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/br/kiconthemes6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2004-09-28 03:02+0200\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" @@ -18,103 +18,103 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Diuzit un arlun" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Oberoù" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Arloadoù" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Rummoù" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Trobarzhelloù" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 #, fuzzy msgid "Emblems" msgstr "Lemel" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 #, fuzzy msgid "Emotes" msgstr "&Lemel" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "RizhioùMime" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Lec'hiadurioù" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stad" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Ar re all" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Furchañ ..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Diuzit un arlun" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/bs/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/bs/kiconthemes6.po index 899b19b0c7..263502dcf4 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/bs/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/bs/kiconthemes6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2013-12-30 16:55+0000\n" "Last-Translator: memsud \n" "Language-Team: bosanski \n" @@ -26,74 +26,74 @@ msgstr "" "X-Text-Markup: kde4\n" "X-Environment: kde\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Odaberi Ikonu" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Akcije" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programi" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "kategorije" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Uređaji" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Amblemi" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotikoni" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME tipovi" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Mjesta" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -101,29 +101,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Drugo" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Pregledaj..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Odaberi Ikonu" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ca/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ca/kiconthemes6.po index 8916714163..fb9a9ce014 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ca/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ca/kiconthemes6.po @@ -3,16 +3,16 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006. -# Josep M. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2022, 2024. -# Albert Astals Cid , 2007. -# Robert Millan , 2009. -# Antoni Bella Pérez , 2011, 2013, 2014, 2021. +# SPDX-FileCopyrightText: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Sebastià Pla i Sanz +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2022, 2024 Josep M. Ferrer +# SPDX-FileCopyrightText: 2007 Albert Astals Cid +# SPDX-FileCopyrightText: 2009 Robert Millan +# SPDX-FileCopyrightText: 2011, 2013, 2014, 2021 Antoni Bella Pérez msgid "" msgstr "" "Project-Id-Version: kiconthemes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 11:44+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" @@ -24,98 +24,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Seleccioneu una icona…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Totes" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Només les simbòliques" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Les no simbòliques" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Tot" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Accions" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicacions" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categories" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositius" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemes" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emoticones" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipus MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Llocs" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estat" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Altres" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Navega…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "No hi ha cap icona que coincideixi amb la cerca" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "No hi ha cap icona en aquesta categoria" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Trieu una icona" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ca@valencia/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ca@valencia/kiconthemes6.po index e6f2168ff6..976b8d36b0 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ca@valencia/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ca@valencia/kiconthemes6.po @@ -3,16 +3,16 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006. -# Josep M. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2022, 2024. -# Albert Astals Cid , 2007. -# Robert Millan , 2009. -# Antoni Bella Pérez , 2011, 2013, 2014, 2021. +# SPDX-FileCopyrightText: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Sebastià Pla i Sanz +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2018, 2022, 2024 Josep M. Ferrer +# SPDX-FileCopyrightText: 2007 Albert Astals Cid +# SPDX-FileCopyrightText: 2009 Robert Millan +# SPDX-FileCopyrightText: 2011, 2013, 2014, 2021 Antoni Bella Pérez msgid "" msgstr "" "Project-Id-Version: kiconthemes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 11:44+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" @@ -24,98 +24,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" -msgstr "Seleccioneu una icona…" +msgstr "Tria una icona…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Totes" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Només les simbòliques" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Les no simbòliques" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Tot" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Accions" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicacions" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categories" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositius" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemes" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emoticones" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipus MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Llocs" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estat" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Altres" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Navega…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "No hi ha cap icona que coincidisca amb la busca" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "No hi ha cap icona en esta categoria" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" -msgstr "Seleccioneu una icona" +msgstr "Trieu una icona" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/cs/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/cs/kiconthemes6.po index 261a4324a6..d954522d4d 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/cs/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/cs/kiconthemes6.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-04-17 09:35+0200\n" -"Last-Translator: Vit Pelcak \n" +"Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -20,98 +20,98 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Lokalize 24.02.1\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Vybrat ikonu…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Vše" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Pouze symbolika" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Žádná symbolika" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Vše" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Činnosti" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikace" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorie" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Zařízení" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblémy" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotikony" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Typy MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Místa" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stav" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Jiné" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Procházet…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Vašemu hledání neodpovídá žádná ikona" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Žádné ikony v této kategorii" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Vybrat ikonu" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/csb/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/csb/kiconthemes6.po index f19538f700..9504507ffc 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/csb/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/csb/kiconthemes6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2009-06-29 20:35+0200\n" "Last-Translator: Michôł Òstrowsczi \n" "Language-Team: Kashubian \n" @@ -20,98 +20,98 @@ msgstr "" "|| n%100>=20) ? 1 : 2)\n" "X-Generator: Lokalize 0.3\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/cy/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/cy/kiconthemes6.po index e7ae4531b1..42b48abb56 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/cy/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/cy/kiconthemes6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2004-01-16 09:20+0000\n" "Last-Translator: KD at KGyfieithu \n" "Language-Team: Cymraeg \n" @@ -27,105 +27,105 @@ msgstr "" "\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Dewis Eicon" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Gweithrediadau" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Cymhwysiannau" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categoriau" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dyfeisiau" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 #, fuzzy msgid "Emblems" msgstr "symudol" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 #, fuzzy msgid "Emotes" msgstr "Cynnwys Gwag" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mathau MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 #, fuzzy msgid "Places" msgstr "Tudalennau" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 #, fuzzy msgid "Status" msgstr "Ymgychwyn" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Eraill" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Pori..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Dewis Eicon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/da/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/da/kiconthemes6.po index 09caf7b304..86b8a9dd16 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/da/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/da/kiconthemes6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2021-09-05 20:32+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -23,100 +23,100 @@ msgstr "" "X-Generator: Lokalize 20.04.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Vælg ikon" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "Alle" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Alle" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Handlinger" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programmer" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorier" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Enheder" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemer" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Smiletegn" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mimetyper" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Steder" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Andet" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Gennemse…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Ingen ikoner matcher søgningen" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Ingen ikoner i denne kategori" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Vælg ikon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/de/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/de/kiconthemes6.po index e4cd2449bf..29795148da 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/de/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/de/kiconthemes6.po @@ -1,17 +1,17 @@ # SPDX-FileCopyrightText: 2010, 2024 Johannes Obermayr -# Thomas Diehl , 2002, 2003, 2004, 2005. -# Stephan Johach , 2004, 2005, 2006, 2007. -# Thomas Reitelbach , 2005, 2006, 2007, 2008, 2009. -# Frederik Schwarzer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2016, 2022. -# Burkhard Lück , 2008, 2009, 2011, 2012, 2013, 2014, 2018, 2021. -# Rolf Eike Beer , 2009, 2010. -# Panagiotis Papadopoulos , 2010, 2011. -# Torbjörn Klatt , 2011. +# SPDX-FileCopyrightText: 2002, 2003, 2004, 2005 Thomas Diehl +# SPDX-FileCopyrightText: 2004, 2005, 2006, 2007 Stephan Johach +# SPDX-FileCopyrightText: 2005, 2006, 2007, 2008, 2009 Thomas Reitelbach +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2016, 2022 Frederik Schwarzer +# SPDX-FileCopyrightText: 2008, 2009, 2011, 2012, 2013, 2014, 2018, 2021 Burkhard Lück +# SPDX-FileCopyrightText: 2009, 2010 Rolf Eike Beer +# SPDX-FileCopyrightText: 2010, 2011 Panagiotis Papadopoulos +# SPDX-FileCopyrightText: 2011 Torbjörn Klatt msgid "" msgstr "" "Project-Id-Version: kiconthemes6\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-26 19:08+0100\n" "Last-Translator: Johannes Obermayr \n" "Language-Team: German \n" @@ -22,98 +22,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 24.02.0\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Symbol auswählen ..." -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Alle" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Nur Symbole" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Keine Symbole" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Alle" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aktionen" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programme" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorien" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Geräte" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Logos" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emoticons" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-Typen" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Orte" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Andere" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Durchsuchen ..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Keine passendes Symbole für die Suche" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Keine Symbole in dieser Kategorie" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Symbol auswählen" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/el/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/el/kiconthemes6.po index 4932fd0489..e0f083ee59 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/el/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/el/kiconthemes6.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2021-07-07 11:01+0300\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" @@ -31,98 +31,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 20.04.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Επιλογή εικονιδίου…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Όλα" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Όλα" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Ενέργειες" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Εφαρμογές" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Κατηγορίες" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Συσκευές" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Εμβλήματα" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotes" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Τύποι mime" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Τοποθεσίες" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Κατάσταση" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Άλλα" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Εξερεύνηση…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Δεν βρέθηκε εικονίδιο στην αναζήτηση" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Κανένα εικονίδιο σε αυτήν την κατηγορία" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Επιλογή εικονιδίου" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/en_GB/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/en_GB/kiconthemes6.po index be9d8e2db8..06df3fcebe 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/en_GB/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/en_GB/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-05-20 19:26+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English\n" @@ -18,98 +18,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 24.02.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Select Icon…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "All" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Only Symbolic" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "No Symbolic" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "All" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Actions" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Applications" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categories" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Devices" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblems" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotes" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mimetypes" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Places" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Other" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Browse…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "No icons matching the search" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "No icons in this category" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Select Icon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/eo/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/eo/kiconthemes6.po index 8822d45b14..dde2c5ffbb 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/eo/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/eo/kiconthemes6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-17 05:34+0100\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: Esperanto \n" @@ -20,98 +20,98 @@ msgstr "" "X-Generator: KAider 0.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Elekti Piktogramon…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Ĉiujn" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Nur Simbolajn" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Nesimbolajn" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Ĉiuj" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Agoj" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikaĵoj" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorioj" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Aparatoj" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemoj" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Miensimboloj" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-tipoj" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Ejoj" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stato" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Aliaj piktogramoj" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Foliumi…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Neniuj piktogramoj kongruj al serĉo" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Neniuj piktogramoj en ĉi kategorio" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Elekti piktogramon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/es/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/es/kiconthemes6.po index 69e2840ec2..9082a69baa 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/es/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/es/kiconthemes6.po @@ -1,22 +1,21 @@ -# Translation of kio4 to Spanish -# translation of kio4.po to Spanish -# Copyright (C) 2000-2003 +# Spanish translations for kiconthemes6.po package. +# Copyright (C) 2000-2025 This file is copyright: +# This file is distributed under the same license as the kiconthemes package. # -# Pablo de Vicente , 2000-2002,2003. -# Pablo de Vicente , 2003. -# Pablo de Vicente , 2004. -# Pablo de Vicente , 2004, 2005. -# Pablo de Vicente , 2005, 2006, 2007. -# Enrique Matias Sanchez (aka Quique) , 2007. -# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2016, 2018, 2021, 2022, 2024 Eloy Cuadra -# Jaime Robles , 2007. -# Javier Viñal , 2013. +# SPDX-FileCopyrightText: 2000-2003 Pablo de Vicente +# SPDX-FileCopyrightText: 2004 Pablo de Vicente +# SPDX-FileCopyrightText: 2004, 2005 Pablo de Vicente +# SPDX-FileCopyrightText: 2005, 2006, 2007 Pablo de Vicente +# SPDX-FileCopyrightText: 2007 Enrique Matias Sanchez (aka Quique) +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2016, 2018, 2021, 2022, 2024, 2025 Eloy Cuadra +# SPDX-FileCopyrightText: 2007 Jaime Robles +# SPDX-FileCopyrightText: 2013 Javier Viñal msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kiconthemes6\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" -"PO-Revision-Date: 2024-03-12 22:24+0100\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" +"PO-Revision-Date: 2025-05-17 13:08+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -27,98 +26,98 @@ msgstr "" "X-Generator: Lokalize 23.08.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" -msgstr "Seleccionar icono..." +msgstr "Seleccionar icono…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Todos" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Solo simbólicos" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Sin simbólicos" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Todo" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Acciones" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicaciones" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorías" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositivos" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemas" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotextos" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipos MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Lugares" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estado" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Otros" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" -msgstr "Examinar..." +msgstr "Examinar…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Ningún icono coincide con la búsqueda" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Ningún icono en esta categoría" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Seleccionar icono" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" @@ -136,5274 +135,4 @@ msgstr "Categoría de iconos" #: widgets/kicondialog.ui:44 #, kde-format msgid "Search Icons..." -msgstr "Buscar iconos..." - -#~ msgid "Icon Source" -#~ msgstr "Origen de los iconos" - -#~ msgid "S&ystem icons:" -#~ msgstr "Iconos del &sistema:" - -#~ msgid "O&ther icons:" -#~ msgstr "O&tros iconos:" - -#~ msgid "&Search:" -#~ msgstr "Bu&scar:" - -#~ msgid "Search interactively for icon names (e.g. folder)." -#~ msgstr "Buscar interactivamente nombres de iconos (p. ej. carpeta)." - -#~ msgid "Animations" -#~ msgstr "Animaciones" - -#~ msgid "Filesystems" -#~ msgstr "Sistemas de archivos" - -#~ msgid "International" -#~ msgstr "Internacional" - -#~ msgctxt "NAME OF TRANSLATORS" -#~ msgid "Your names" -#~ msgstr "Eloy Cuadra,Pablo de Vicente" - -#~ msgctxt "EMAIL OF TRANSLATORS" -#~ msgid "Your emails" -#~ msgstr "ecuadra@eloihr.net,p.devicente@wanadoo.es" - -#~ msgid "A file or folder named %1 already exists." -#~ msgstr "Ya existe un archivo o carpeta denominado %1." - -#~ msgid "You do not have permission to create that folder." -#~ msgstr "No tiene permisos para crear esa carpeta." - -#~ msgid "You did not select a file to delete." -#~ msgstr "No ha seleccionado ningún archivo a borrar." - -#~ msgid "Nothing to Delete" -#~ msgstr "Nada que borrar" - -#~ msgid "" -#~ "Do you really want to delete\n" -#~ " '%1'?" -#~ msgstr "" -#~ "¿Desea realmente borrar\n" -#~ "«%1»?" - -#~ msgid "Delete File" -#~ msgstr "Borrar el archivo" - -#~ msgid "Do you really want to delete this item?" -#~ msgid_plural "Do you really want to delete these %1 items?" -#~ msgstr[0] "¿Desea realmente borrar este elemento?" -#~ msgstr[1] "¿Desea realmente borrar estos %1 elementos?" - -#~ msgid "Delete Files" -#~ msgstr "Borrar archivos" - -#~ msgid "You did not select a file to trash." -#~ msgstr "No ha seleccionado ningún archivo para enviar a la papelera." - -#~ msgid "Nothing to Trash" -#~ msgstr "Nada que borrar" - -#~ msgid "" -#~ "Do you really want to trash\n" -#~ " '%1'?" -#~ msgstr "" -#~ "¿Desea realmente eliminar\n" -#~ "«%1»?" - -#~ msgid "Trash File" -#~ msgstr "Borrar archivo" - -#~ msgctxt "to trash" -#~ msgid "&Trash" -#~ msgstr "&Borrar" - -#~ msgid "translators: not called for n == 1" -#~ msgid_plural "Do you really want to trash these %1 items?" -#~ msgstr[0] "¿Desea realmente borrar el elemento?" -#~ msgstr[1] "¿Desea realmente borrar estos %1 elementos? " - -#~ msgid "Trash Files" -#~ msgstr "Borrar archivos" - -#~ msgid "The specified folder does not exist or was not readable." -#~ msgstr "La carpeta especificada no existe o no pudo ser leída." - -#~ msgid "Menu" -#~ msgstr "Menú" - -#~ msgid "Parent Folder" -#~ msgstr "Carpeta superior" - -#~ msgid "Home Folder" -#~ msgstr "Carpeta personal" - -#~ msgid "Reload" -#~ msgstr "Recargar" - -#~ msgid "New Folder..." -#~ msgstr "Nueva carpeta..." - -#~ msgid "Move to Trash" -#~ msgstr "Mover a la papelera" - -#~ msgid "Delete" -#~ msgstr "Borrar" - -#~ msgid "Sorting" -#~ msgstr "Orden" - -#~ msgid "By Name" -#~ msgstr "Por nombre" - -#~ msgid "By Size" -#~ msgstr "Por tamaño" - -#~ msgid "By Date" -#~ msgstr "Por fecha" - -#~ msgid "By Type" -#~ msgstr "Por tipo" - -#~ msgid "Descending" -#~ msgstr "Descendente" - -#~ msgid "Folders First" -#~ msgstr "Carpetas primero" - -#~ msgid "Icon Position" -#~ msgstr "Posición del icono" - -#~ msgid "Next to File Name" -#~ msgstr "Junto al nombre de archivo" - -#~ msgid "Above File Name" -#~ msgstr "Sobre el nombre de archivo" - -#~ msgid "Short View" -#~ msgstr "Vista breve" - -#~ msgid "Detailed View" -#~ msgstr "Vista detallada" - -#~ msgid "Tree View" -#~ msgstr "Vista de árbol" - -#~ msgid "Detailed Tree View" -#~ msgstr "Vista de árbol detallada" - -#~ msgid "Show Hidden Files" -#~ msgstr "Mostrar archivos ocultos" - -#~ msgid "Show Aside Preview" -#~ msgstr "Mostrar vista previa al lado" - -#~ msgid "Show Preview" -#~ msgstr "Mostrar vista previa" - -#~ msgid "Open File Manager" -#~ msgstr "Abrir el gestor de archivos" - -#~ msgid "Properties" -#~ msgstr "Propiedades" - -#~ msgid "&View" -#~ msgstr "&Ver" - -#~ msgctxt "folder name" -#~ msgid "New Folder" -#~ msgstr "Nueva carpeta" - -#~ msgctxt "@title:window" -#~ msgid "New Folder" -#~ msgstr "Nueva carpeta" - -#~ msgctxt "@label:textbox" -#~ msgid "" -#~ "Create new folder in:\n" -#~ "%1" -#~ msgstr "" -#~ "Crear nueva carpeta en:\n" -#~ "%1" - -#~ msgctxt "@title:window" -#~ msgid "Select Folder" -#~ msgstr "Seleccionar carpeta" - -#~ msgctxt "@action:button" -#~ msgid "New Folder..." -#~ msgstr "Nueva carpeta..." - -#~ msgctxt "@action:inmenu" -#~ msgid "New Folder..." -#~ msgstr "Nueva carpeta..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Move to Trash" -#~ msgstr "Mover a la papelera" - -#~ msgctxt "@action:inmenu" -#~ msgid "Delete" -#~ msgstr "Borrar" - -#~ msgctxt "@option:check" -#~ msgid "Show Hidden Folders" -#~ msgstr "Mostrar carpetas ocultas" - -#~ msgctxt "@action:inmenu" -#~ msgid "Properties" -#~ msgstr "Propiedades" - -#~ msgid "*|All Files" -#~ msgstr "*|Todos los archivos" - -#~ msgid "All Supported Files" -#~ msgstr "Todos los archivos permitidos" - -#~ msgid "All Files" -#~ msgstr "Todos los archivos" - -#~ msgid "Add Places Entry" -#~ msgstr "Añadir entrada a «Lugares»" - -#~ msgid "Edit Places Entry" -#~ msgstr "Editar entrada de lugares" - -#~ msgid "" -#~ "This is the text that will appear in the Places panel.

The " -#~ "label should consist of one or two words that will help you remember what " -#~ "this entry refers to. If you do not enter a label, it will be derived " -#~ "from the location's URL.
" -#~ msgstr "" -#~ "Este es el texto que aparecerá en el panel «Lugares».

La " -#~ "etiqueta debería consistir en una o dos palabras que le ayuden a recordar " -#~ "a qué se refiere esta entrada. Si no introduce una etiqueta, se obtendrá " -#~ "una a partir de la URL de la ubicación.
" - -#~ msgid "L&abel:" -#~ msgstr "Etiquet&a:" - -#~ msgid "Enter descriptive label here" -#~ msgstr "Introduzca aquí una etiqueta descriptiva" - -#~ msgid "" -#~ "This is the location associated with the entry. Any valid URL may be " -#~ "used. For example:

%1
http://www.kde.org
ftp://ftp." -#~ "kde.org/pub/kde/stable

By clicking on the button next to the " -#~ "text edit box you can browse to an appropriate URL.
" -#~ msgstr "" -#~ "Esta es la ubicación asociada con la entrada. Se puede utilizar " -#~ "cualquier URL válida. Por ejemplo:

%1
http://www.kde." -#~ "org
ftp://ftp.kde.org/pub/kde/stable

Si pulsa sobre el " -#~ "botón que hay al lado del cuadro de texto, podrá navegar hasta una URL " -#~ "apropiada.
" - -#~ msgid "&Location:" -#~ msgstr "&Ubicación:" - -#~ msgid "" -#~ "This is the icon that will appear in the Places panel.

Click on the button to select a different icon.
" -#~ msgstr "" -#~ "Este es el icono que aparecerá en el panel de «Lugares».

Pulse sobre el botón para seleccionar un icono diferente.
" - -#~ msgid "Choose an &icon:" -#~ msgstr "Seleccione un &icono:" - -#~ msgid "&Only show when using this application (%1)" -#~ msgstr "Mostrar sol&o al usar esta aplicación (%1)" - -#~ msgid "" -#~ "Select this setting if you want this entry to show only when using " -#~ "the current application (%1).

If this setting is not selected, " -#~ "the entry will be available in all applications.
" -#~ msgstr "" -#~ "Seleccione esta opción si desea que esta entrada se muestre solo al " -#~ "usar la aplicación actual (%1).

Si esta opción no está " -#~ "seleccionada, la entrada estará disponible en todas las aplicaciones.
" - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Home" -#~ msgstr "Carpeta personal" - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Network" -#~ msgstr "Red" - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Root" -#~ msgstr "Raíz" - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Trash" -#~ msgstr "Papelera" - -#~ msgid "&Release '%1'" -#~ msgstr "Libe&rar «%1»" - -#~ msgid "&Safely Remove '%1'" -#~ msgstr "Extraer con &seguridad «%1»" - -#~ msgid "&Unmount '%1'" -#~ msgstr "&Desmontar «%1»" - -#~ msgid "&Eject '%1'" -#~ msgstr "&Expulsar «%1»" - -#~ msgid "The device '%1' is not a disk and cannot be ejected." -#~ msgstr "El dispositivo «%1» no es un disco y no puede ser expulsado." - -#~ msgid "An error occurred while accessing '%1', the system responded: %2" -#~ msgstr "" -#~ "Se produjo un error mientras se accedía a «%1», el sistema respondió: %2" - -#~ msgid "An error occurred while accessing '%1'" -#~ msgstr "Se produjo un error mientras se accedía a «%1»" - -#~ msgctxt "@action:inmenu" -#~ msgid "Empty Trash" -#~ msgstr "Vaciar papelera" - -#~ msgid "Add Entry..." -#~ msgstr "Añadir entrada..." - -#~ msgid "&Edit Entry '%1'..." -#~ msgstr "&Editar la entrada «%1»..." - -#~ msgid "&Hide Entry '%1'" -#~ msgstr "&Ocultar la entrada «%1»" - -#~ msgid "&Show All Entries" -#~ msgstr "Mo&strar todas las entradas" - -#~ msgid "&Remove Entry '%1'" -#~ msgstr "Elimina&r la entrada «%1»" - -#~ msgctxt "@info" -#~ msgid "Do you really want to empty the Trash? All items will be deleted." -#~ msgstr "" -#~ "¿Realmente desea vaciar la papelera? Todos los elementos serán eliminados." - -#~ msgctxt "@action:button" -#~ msgid "Empty Trash" -#~ msgstr "Vaciar papelera" - -#~ msgid "Show Hidden Folders" -#~ msgstr "Mostrar carpetas ocultas" - -#~ msgid "" -#~ "While typing in the text area, you may be presented with possible " -#~ "matches. This feature can be controlled by clicking with the right mouse " -#~ "button and selecting a preferred mode from the Text Completion " -#~ "menu." -#~ msgstr "" -#~ "Al escribir en el área de texto, puede que se le presenten diferentes " -#~ "posibilidades. Esta función se puede controlar pulsando con el botón " -#~ "derecho del ratón y seleccionando un modo preferido del menú " -#~ "Completado de texto." - -#~ msgid "Drive: %1" -#~ msgstr "Unidad: %1" - -#~ msgid "" -#~ "Click this button to enter the parent folder.

For " -#~ "instance, if the current location is file:/home/%1 clicking this button " -#~ "will take you to file:/home.
" -#~ msgstr "" -#~ "Pulse este botón para ir a la carpeta superior.

Por " -#~ "ejemplo, si la ubicación actual es «file:/home/%1», al pulsar este botón " -#~ "irá a «file:/home».
" - -#~ msgid "" -#~ "Click this button to move backwards one step in the browsing history." -#~ msgstr "" -#~ "Pulse este botón para retroceder un paso en el historial de navegación." - -#~ msgid "Click this button to move forward one step in the browsing history." -#~ msgstr "" -#~ "Pulse este botón para avanzar un paso en el historial de navegación." - -#~ msgid "Click this button to reload the contents of the current location." -#~ msgstr "" -#~ "Pulse este botón para recargar los contenidos de la ubicación actual." - -#~ msgid "Click this button to create a new folder." -#~ msgstr "Pulse este botón para crear una nueva carpeta." - -#~ msgid "Show Places Navigation Panel" -#~ msgstr "Mostrar panel de navegación de lugares" - -#~ msgid "Show Bookmarks" -#~ msgstr "Mostrar marcadores" - -#~ msgid "Options" -#~ msgstr "Opciones" - -#~ msgid "" -#~ "This is the preferences menu for the file dialog. Various options can " -#~ "be accessed from this menu including:
  • how files are sorted in the " -#~ "list
  • types of view, including icon and list
  • showing of " -#~ "hidden files
  • the Places navigation panel
  • file previews
  • separating folders from files
" -#~ msgstr "" -#~ "Este el menú de preferencias para el diálogo de archivos. Se puede " -#~ "acceder a varias opciones desde este menú, incluyendo:
  • cómo se " -#~ "ordenan los archivos en la lista
  • tipos de vista, incluyendo icono " -#~ "y lista
  • visualización de archivos ocultos
  • el panel de " -#~ "navegación «Lugares»
  • vistas previas de archivos
  • separación de carpetas y archivos
" - -#~ msgid "Zoom out" -#~ msgstr "Reducir" - -#~ msgid "Zoom in" -#~ msgstr "Ampliar" - -#~ msgid "&Name:" -#~ msgstr "&Nombre:" - -#~ msgid "" -#~ "This is the filter to apply to the file list. File names that do not " -#~ "match the filter will not be shown.

You may select from one of the " -#~ "preset filters in the drop down menu, or you may enter a custom filter " -#~ "directly into the text area.

Wildcards such as * and ? are allowed." -#~ "

" -#~ msgstr "" -#~ "Este es el filtro a aplicar a la lista de archivos. Los nombres de " -#~ "archivos que no coincidan con el filtro no se mostrarán.

Puede " -#~ "seleccionar uno de los filtros predefinidos en el menú desplegable, o " -#~ "puede introducir un filtro personalizado directamente en el área de " -#~ "texto

Los comodines, como * y ?, están permitidos.

" - -#~ msgid "&Filter:" -#~ msgstr "&Filtro:" - -#~ msgid "You can only select one file" -#~ msgstr "Solo puede seleccionar un archivo" - -#~ msgid "More than one file provided" -#~ msgstr "Se ha proporcionado más de un archivo" - -#~ msgid "You can only select local files" -#~ msgstr "Solo puede seleccionar archivos locales" - -#~ msgid "Remote files not accepted" -#~ msgstr "No se aceptan archivos remotos" - -#~ msgid "" -#~ "More than one folder has been selected and this dialog does not accept " -#~ "folders, so it is not possible to decide which one to enter. Please " -#~ "select only one folder to list it." -#~ msgstr "" -#~ "Se ha seleccionado más de una carpeta y este diálogo no permite carpetas, " -#~ "de modo que no es posible decidir en cuál de ellas se debe entrar. " -#~ "Seleccione una única carpeta para listar su contenido." - -#~ msgid "More than one folder provided" -#~ msgstr "Se ha proporcionado más de un proveedor" - -#~ msgid "" -#~ "At least one folder and one file has been selected. Selected files will " -#~ "be ignored and the selected folder will be listed" -#~ msgstr "" -#~ "Se ha seleccionado al menos una carpeta y un archivo. Los archivos " -#~ "seleccionados serán ignorados y se listará el contenido de la carpeta " -#~ "seleccionada" - -#~ msgid "Files and folders selected" -#~ msgstr "Archivos y carpetas seleccionados" - -#~ msgid "The file \"%1\" could not be found" -#~ msgstr "No se puede encontrar el archivo «%1»" - -#~ msgid "Cannot open file" -#~ msgstr "No se puede abrir el archivo" - -#~ msgid "This is the name to save the file as." -#~ msgstr "Este es el nombre con el que se guarda el archivo." - -#~ msgid "" -#~ "This is the list of files to open. More than one file can be specified by " -#~ "listing several files, separated by spaces." -#~ msgstr "" -#~ "Esta es la lista de archivos a abrir. Se puede especificar más de un " -#~ "archivo listando varios archivos, separados por espacios." - -#~ msgid "This is the name of the file to open." -#~ msgstr "Este es el nombre del archivo a abrir." - -#~ msgctxt "@title:window" -#~ msgid "Places" -#~ msgstr "Lugares" - -#~ msgid "The file \"%1\" already exists. Do you wish to overwrite it?" -#~ msgstr "El archivo «%1» ya existe. ¿Seguro que desea sobrescribirlo?" - -#~ msgid "Overwrite File?" -#~ msgstr "¿Sobrescribir archivo?" - -#~ msgid "" -#~ "The chosen filenames do not\n" -#~ "appear to be valid." -#~ msgstr "" -#~ "Parece que los nombres de archivo\n" -#~ "elegidos no son válidos." - -#~ msgid "Invalid Filenames" -#~ msgstr "Nombres de archivos no válidos" - -#~ msgid "You can only select local files." -#~ msgstr "Solo puede seleccionar archivos locales." - -#~ msgid "Remote Files Not Accepted" -#~ msgstr "No se aceptan archivos remotos" - -#~ msgid "*|All Folders" -#~ msgstr "*|Todas las carpetas" - -#~ msgid "&Open" -#~ msgstr "&Abrir" - -#~ msgid "Icon size: %1 pixels (standard size)" -#~ msgstr "Tamaño del icono: %1 píxeles (tamaño estándar)" - -#~ msgid "Icon size: %1 pixels" -#~ msgstr "Tamaño del icono: %1 píxeles" - -#~ msgid "Automatically select filename e&xtension (%1)" -#~ msgstr "Seleccionar automáticamente la e&xtensión del archivo (%1)" - -#~ msgid "the extension %1" -#~ msgstr "la extensión %1" - -#~ msgid "Automatically select filename e&xtension" -#~ msgstr "Seleccionar automáticamente la e&xtensión del archivo" - -#~ msgid "a suitable extension" -#~ msgstr "una extensión adecuada" - -#~ msgid "" -#~ "This option enables some convenient features for saving files with " -#~ "extensions:
  1. Any extension specified in the %1 text " -#~ "area will be updated if you change the file type to save in.

  2. If no extension is specified in the %2 text area when you " -#~ "click Save, %3 will be added to the end of the filename (if the " -#~ "filename does not already exist). This extension is based on the file " -#~ "type that you have chosen to save in.

    If you do not want KDE " -#~ "to supply an extension for the filename, you can either turn this option " -#~ "off or you can suppress it by adding a period (.) to the end of the " -#~ "filename (the period will be automatically removed).
If unsure, " -#~ "keep this option enabled as it makes your files more manageable." -#~ msgstr "" -#~ "Esta opción activa algunas propiedades adecuadas para guardar archivos " -#~ "con extensiones:
  1. Cualquier extensión especificada en el área " -#~ "de texto %1 se actualizará si cambia el tipo de archivo a guardar." -#~ "

  2. Si no se especifica una extensión en el área de " -#~ "texto %2 cuando pulse Guardar, se añadirá %3 al final del " -#~ "nombre del archivo (si el nombre no existe ya). Esta extensión está " -#~ "basada en el tipo de archivo que usted haya elegido para guardar.

    Si no desea que KDE proporcione una extensión de nombre de " -#~ "archivo, puede desactivar esta opción o puede suprimirla añadiendo un " -#~ "punto (.) al final del nombre del archivo (el punto será borrado " -#~ "automáticamente).
Si no está seguro de cómo usar esta opción, " -#~ "manténgala habilitada para gestionar los archivos más fácilmente." - -#~ msgid "Bookmarks" -#~ msgstr "Marcadores" - -#~ msgid "" -#~ "This button allows you to bookmark specific locations. Click on this " -#~ "button to open the bookmark menu where you may add, edit or select a " -#~ "bookmark.

These bookmarks are specific to the file dialog, but " -#~ "otherwise operate like bookmarks elsewhere in KDE.
" -#~ msgstr "" -#~ "Este botón le permite marcar ubicaciones específicas. Pulse sobre él " -#~ "para abrir el menú de marcadores donde puede añadir, editar o seleccionar " -#~ "un marcador.

Estos marcadores son específicos del diálogo de " -#~ "archivos, pero operan como marcadores en cualquier otro lugar de KDE.
" - -#~ msgid "Sorry" -#~ msgstr "Disculpe" - -#~ msgid "The template file %1 does not exist." -#~ msgstr "El archivo de plantilla %1 no existe." - -#~ msgctxt "@action:button" -#~ msgid "Create directory" -#~ msgstr "Crear directorio" - -#~ msgctxt "@action:button" -#~ msgid "Enter a different name" -#~ msgstr "Introduzca un nombre diferente" - -#~ msgid "Create hidden directory?" -#~ msgstr "¿Crear directorio oculto?" - -#~ msgid "" -#~ "The name \"%1\" starts with a dot, so the directory will be hidden by " -#~ "default." -#~ msgstr "" -#~ "El nombre «%1» comienza con un punto, por lo que el directorio estará " -#~ "oculto por omisión." - -#~ msgid "Do not ask again" -#~ msgstr "No volver a preguntar" - -#~ msgid "File name:" -#~ msgstr "Nombre de archivo:" - -#~ msgid "Create Symlink" -#~ msgstr "Crear enlace simbólico" - -#~ msgid "Create link to URL" -#~ msgstr "Crear enlace a URL" - -#~ msgctxt "@item:inmenu Create New" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "" -#~ "Basic links can only point to local files or directories.\n" -#~ "Please use \"Link to Location\" for remote URLs." -#~ msgstr "" -#~ "Los enlaces básicos solo pueden apuntar a archivos o directorios " -#~ "locales.\n" -#~ "Utilice «Enlazar ubicación» para URL remotas." - -#~ msgid "Create New" -#~ msgstr "Crear nuevo" - -#~ msgid "Link to Device" -#~ msgstr "Enlazar un dispositivo" - -#~ msgctxt "Default name for a new folder" -#~ msgid "New Folder" -#~ msgstr "Nueva carpeta" - -#~ msgid "" -#~ "Create new folder in:\n" -#~ "%1" -#~ msgstr "" -#~ "Crear nueva carpeta en:\n" -#~ "%1" - -#~ msgid "Copy" -#~ msgstr "Copiar" - -#~ msgid "Paste" -#~ msgstr "Pegar" - -#~ msgid "Edit" -#~ msgstr "Editar" - -#~ msgid "Navigate" -#~ msgstr "Navegar" - -#~ msgid "Show Full Path" -#~ msgstr "Mostrar la ruta completa" - -#~ msgid "Custom Path" -#~ msgstr "Ruta personalizada" - -#~ msgctxt "@action:inmenu" -#~ msgid "More" -#~ msgstr "Más" - -#~ msgctxt "@item:inmenu" -#~ msgid "Devices" -#~ msgstr "Dispositivos" - -#~ msgctxt "@item:inmenu" -#~ msgid "Subversion" -#~ msgstr "Subversion" - -#~ msgid "Click for Location Navigation" -#~ msgstr "Pulse para navegar a la ubicación" - -#~ msgid "Click to Edit Location" -#~ msgstr "Pulse para editar la ubicación" - -#~ msgid "Setting ACL for %1" -#~ msgstr "Estableciendo ACL para %1" - -#~ msgid "" -#~ "Could not change permissions for\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudieron cambiar los permisos de\n" -#~ "%1" - -#~ msgid "No Media inserted or Media not recognized." -#~ msgstr "No hay ningún medio insertado o reconocido." - -#~ msgid "\"vold\" is not running." -#~ msgstr "«vold» no está ejecutándose." - -#~ msgid "Could not find program \"mount\"" -#~ msgstr "No fue posible encontrar el programa «mount»" - -#~ msgid "mounting is not supported by wince." -#~ msgstr "Wince no permite montar." - -#~ msgid "Could not find program \"umount\"" -#~ msgstr "No fue posible encontrar el programa «umount»" - -#~ msgid "unmounting is not supported by wince." -#~ msgstr "Wince no permite desmontar." - -#~ msgid "Cannot copy file from %1 to %2. (Errno: %3)" -#~ msgstr "No se puede copiar el archivo de %1 a %2. (Errno: %3)" - -#~ msgid "No media in device for %1" -#~ msgstr "No hay medios en el dispositivo para %1" - -#~ msgid "Could not get user id for given user name %1" -#~ msgstr "Imposible obtener el id del usuario para el usuario %1" - -#~ msgid "Could not get group id for given group name %1" -#~ msgstr "Imposible obtener el id del grupo para el grupo %1" - -#~ msgid "Opening connection to host %1" -#~ msgstr "Abriendo conexión con la máquina %1" - -#~ msgid "Connected to host %1" -#~ msgstr "Conectado a la máquina %1" - -#~ msgid "" -#~ "%1.\n" -#~ "\n" -#~ "Reason: %2" -#~ msgstr "" -#~ "%1.\n" -#~ "\n" -#~ "Razón: %2" - -#~ msgid "Sending login information" -#~ msgstr "Enviando información de inicio de sesión" - -#~ msgid "" -#~ "Message sent:\n" -#~ "Login using username=%1 and password=[hidden]\n" -#~ "\n" -#~ "Server replied:\n" -#~ "%2\n" -#~ "\n" -#~ msgstr "" -#~ "Mensaje enviado:\n" -#~ "Iniciar sesión usando el nombre de usuario: %1 y contraseña: [oculta]\n" -#~ "\n" -#~ "Respuesta del servidor:\n" -#~ "%2\n" -#~ "\n" - -#~ msgid "You need to supply a username and a password to access this site." -#~ msgstr "" -#~ "Debe suministrar un nombre de usuario y una contraseña para acceder a " -#~ "este sitio." - -#~ msgid "Site:" -#~ msgstr "Sitio:" - -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Login OK" -#~ msgstr "Sesión iniciada con éxito" - -#~ msgid "Could not login to %1." -#~ msgstr "No se pudo iniciar sesión en %1." - -#~ msgid "" -#~ "You need to supply a username and a password for the proxy server listed " -#~ "below before you are allowed to access any sites." -#~ msgstr "" -#~ "Debe suministrar un nombre de usuario y una contraseña para el servidor " -#~ "proxy listado abajo, antes de que se le permita acceder a cualquier sitio." - -#~ msgid "Proxy:" -#~ msgstr "Proxy:" - -#~ msgid "%1 at %2" -#~ msgstr "%1 en %2" - -#~ msgid "Proxy Authentication Failed." -#~ msgstr "La autenticación del proxy ha fallado." - -#~ msgid "No host specified." -#~ msgstr "No se especificó ninguna máquina." - -#~ msgid "Otherwise, the request would have succeeded." -#~ msgstr "De otro modo, la petición habría tenido éxito." - -#~ msgctxt "request type" -#~ msgid "retrieve property values" -#~ msgstr "recuperar valores de propiedades" - -#~ msgctxt "request type" -#~ msgid "set property values" -#~ msgstr "establecer valores de propiedades" - -#~ msgctxt "request type" -#~ msgid "create the requested folder" -#~ msgstr "crear la carpeta solicitada" - -#~ msgctxt "request type" -#~ msgid "copy the specified file or folder" -#~ msgstr "copiar el archivo o carpeta especificada" - -#~ msgctxt "request type" -#~ msgid "move the specified file or folder" -#~ msgstr "mover el archivo o carpeta especificada" - -#~ msgctxt "request type" -#~ msgid "search in the specified folder" -#~ msgstr "buscar en la carpeta especificada" - -#~ msgctxt "request type" -#~ msgid "lock the specified file or folder" -#~ msgstr "bloquear el archivo o carpeta especificado" - -#~ msgctxt "request type" -#~ msgid "unlock the specified file or folder" -#~ msgstr "desbloquear el archivo o carpeta especificado" - -#~ msgctxt "request type" -#~ msgid "delete the specified file or folder" -#~ msgstr "borrar el archivo o carpeta especificado" - -#~ msgctxt "request type" -#~ msgid "query the server's capabilities" -#~ msgstr "solicitar las posibilidades del servidor" - -#~ msgctxt "request type" -#~ msgid "retrieve the contents of the specified file or folder" -#~ msgstr "recuperar el contenido del archivo o carpeta especificado" - -#~ msgctxt "request type" -#~ msgid "run a report in the specified folder" -#~ msgstr "ejecutar un informe en la carpeta especificada" - -#~ msgctxt "%1: code, %2: request type" -#~ msgid "An unexpected error (%1) occurred while attempting to %2." -#~ msgstr "Ha ocurrido un error inesperado (%1) al intentar %2." - -#~ msgid "The server does not support the WebDAV protocol." -#~ msgstr "El servidor no admite el protocolo WebDAV." - -#~ msgctxt "%1: request type, %2: url" -#~ msgid "" -#~ "An error occurred while attempting to %1, %2. A summary of the reasons is " -#~ "below." -#~ msgstr "" -#~ "Se produjo un error al intentar %1, %2. Se presenta una lista de motivos " -#~ "abajo." - -#~ msgctxt "%1: request type" -#~ msgid "Access was denied while attempting to %1." -#~ msgstr "Acceso denegado al intentar %1." - -#~ msgid "" -#~ "A resource cannot be created at the destination until one or more " -#~ "intermediate collections (folders) have been created." -#~ msgstr "" -#~ "No se pudo crear un recurso en el destino hasta que una o más colecciones " -#~ "intermedias (carpetas) se hayan creado." - -#~ msgid "" -#~ "The server was unable to maintain the liveness of the properties listed " -#~ "in the propertybehavior XML element or you attempted to overwrite a file " -#~ "while requesting that files are not overwritten. %1" -#~ msgstr "" -#~ "El servidor fue incapaz de mantener asignadas las propiedades listadas en " -#~ "el elemento «propertybehavior» de XML o usted intentó sobrescribir un " -#~ "archivo mientras solicitaba que los archivos no se sobrescribieran. %1" - -#~ msgid "The requested lock could not be granted. %1" -#~ msgstr "El bloqueo solicitado no se pudo garantizar. %1" - -#~ msgid "The server does not support the request type of the body." -#~ msgstr "El servidor no admite el tipo de cuerpo requerido." - -#~ msgctxt "%1: request type" -#~ msgid "Unable to %1 because the resource is locked." -#~ msgstr "Imposible %1 porque el recurso está bloqueado." - -#~ msgid "This action was prevented by another error." -#~ msgstr "La acción fue impedida por otro error." - -#~ msgctxt "%1: request type" -#~ msgid "" -#~ "Unable to %1 because the destination server refuses to accept the file or " -#~ "folder." -#~ msgstr "" -#~ "Imposible %1 porque el servidor de destino rehúsa aceptar el archivo o " -#~ "carpeta." - -#~ msgid "" -#~ "The destination resource does not have sufficient space to record the " -#~ "state of the resource after the execution of this method." -#~ msgstr "" -#~ "El recurso de destino no tiene suficiente espacio para registrar el " -#~ "estado del recurso después de la ejecución de este método." - -#~ msgid "The resource cannot be deleted." -#~ msgstr "No se puede eliminar el recurso." - -#~ msgctxt "request type" -#~ msgid "upload %1" -#~ msgstr "enviar %1" - -#~ msgctxt "%1: response code, %2: request type" -#~ msgid "An unexpected error (%1) occurred while attempting to %2." -#~ msgstr "Se produjo un error inesperado (%1) al intentar %2." - -#~ msgid "%1 contacted. Waiting for reply..." -#~ msgstr "%1 contactado. Esperando respuesta..." - -#~ msgctxt "@info Security check on url being accessed" -#~ msgid "" -#~ "

You are about to log in to the site \"%1\" with the username \"%2\", " -#~ "but the website does not require authentication. This may be an attempt " -#~ "to trick you.

Is \"%1\" the site you want to visit?

" -#~ msgstr "" -#~ "

Está a punto de iniciar sesión en el sitio «%1» con el nombre de " -#~ "usuario «%2», pero este sitio web no necesita autenticación. Es posible " -#~ "que se trate de un intento de engaño.

¿Es «%1» el sitio que quiere " -#~ "visitar?

" - -#~ msgctxt "@title:window" -#~ msgid "Confirm Website Access" -#~ msgstr "Confirmar acceso a sitio web" - -#~ msgid "Server processing request, please wait..." -#~ msgstr "Servidor procesando petición, espere..." - -#~ msgid "Sending data to %1" -#~ msgstr "Enviando datos a %1" - -#~ msgid "Retrieving %1 from %2..." -#~ msgstr "Recibiendo información de %1 desde %2..." - -#~ msgid "Authentication Failed." -#~ msgstr "La autenticación ha fallado." - -#~ msgid "Authorization failed." -#~ msgstr "La autorización ha fallado." - -#~ msgid "Unknown Authorization method." -#~ msgstr "Método de autorización desconocido." - -#~ msgid "KDE HTTP cache maintenance tool" -#~ msgstr "Herramienta de KDE para el mantenimiento de la caché de HTTP" - -#~ msgid "Empty the cache" -#~ msgstr "Vaciar la caché" - -#~ msgid "Display information about cache file" -#~ msgstr "Mostrar información sobre el archivo de caché" - -#~ msgid "Cookie Alert" -#~ msgstr "Alerta de cookie" - -#~ msgctxt "%2 hostname, %3 optional cross domain suffix (translated below)" -#~ msgid "" -#~ "

You received a cookie from
%2%3
Do you want to accept " -#~ "or reject this cookie?

" -#~ msgid_plural "" -#~ "

You received %1 cookies from
%2%3
Do you want to accept " -#~ "or reject these cookies?

" -#~ msgstr[0] "" -#~ "

Ha recibido una cookie de
%2%3
¿Desea aceptar o " -#~ "rechazar esta cookie?

" -#~ msgstr[1] "" -#~ "

Ha recibido %1 cookies de
%2%3
¿Desea aceptar o " -#~ "rechazar estas cookies?

" - -#~ msgctxt "@item:intext cross domain cookie" -#~ msgid " [Cross Domain]" -#~ msgstr " [Dominio cruzado]" - -#~ msgid "Apply Choice To" -#~ msgstr "Aplicar elección a" - -#~ msgid "&Only this cookie" -#~ msgstr "&Solo esta cookie" - -#~ msgid "&Only these cookies" -#~ msgstr "&Solo estas cookies" - -#~ msgid "" -#~ "Select this option to only accept or reject this cookie. You will be " -#~ "prompted again if you receive another cookie." -#~ msgstr "" -#~ "Seleccione esta opción para aceptar o rechazar solo esta cookie. Se le " -#~ "preguntará de nuevo cuando reciba otra cookie." - -#~ msgid "All cookies from this do&main" -#~ msgstr "Todas las cookies de este &dominio" - -#~ msgid "" -#~ "Select this option to accept or reject all cookies from this site. " -#~ "Choosing this option will add a new policy for the site this cookie " -#~ "originated from. This policy will be permanent until you manually change " -#~ "it from the System Settings." -#~ msgstr "" -#~ "Seleccione esta opción para aceptar o rechazar todas las cookies de este " -#~ "sitio. Al elegir esta opción, se añadirá una nueva política para el sitio " -#~ "al cual pertenece esta cookie. Esta política permanecerá vigente hasta " -#~ "que la cambie manualmente en las preferencias del sistema." - -#~ msgid "All &cookies" -#~ msgstr "Todas las &cookies" - -#~ msgid "" -#~ "Select this option to accept/reject all cookies from anywhere. Choosing " -#~ "this option will change the global cookie policy for all cookies until " -#~ "you manually change it from the System Settings." -#~ msgstr "" -#~ "Seleccione esta opción para aceptar o rechazar todas las cookies de " -#~ "cualquier sitio. Al elegir esta opción, se cambiará la política global de " -#~ "cookies hasta que vuelva a cambiarla en las preferencias del sistema." - -#~ msgid "&Accept" -#~ msgstr "&Aceptar" - -#~ msgid "Accept for this &session" -#~ msgstr "Aceptar para esta &sesión" - -#~ msgid "Accept cookie(s) until the end of the current session" -#~ msgstr "Aceptar cookies hasta el final de la sesión actual" - -#~ msgid "&Reject" -#~ msgstr "&Rechazar" - -#~ msgid "See or modify the cookie information" -#~ msgstr "Ver o modificar la información de la cookie" - -#~ msgid "Cookie Details" -#~ msgstr "Detalles de la cookie" - -#~ msgid "Name:" -#~ msgstr "Nombre:" - -#~ msgid "Value:" -#~ msgstr "Valor:" - -#~ msgid "Expires:" -#~ msgstr "Caduca:" - -#~ msgid "Path:" -#~ msgstr "Ruta:" - -#~ msgid "Domain:" -#~ msgstr "Dominio:" - -#~ msgid "Exposure:" -#~ msgstr "Exposición:" - -#~ msgctxt "Next cookie" -#~ msgid "&Next >>" -#~ msgstr "&Siguiente >>" - -#~ msgid "Show details of the next cookie" -#~ msgstr "Mostrar detalles de la siguiente cookie" - -#~ msgid "Not specified" -#~ msgstr "No especificado" - -#~ msgid "End of Session" -#~ msgstr "Fin de la sesión" - -#~ msgid "Secure servers only" -#~ msgstr "Solo servidores seguros" - -#~ msgid "Secure servers, page scripts" -#~ msgstr "Servidores seguros, scripts de la página" - -#~ msgid "Servers" -#~ msgstr "Servidores" - -#~ msgid "Servers, page scripts" -#~ msgstr "Servidores, scripts de la página" - -#~ msgid "HTTP Cookie Daemon" -#~ msgstr "Servicio de cookies de HTTP" - -#~ msgid "HTTP cookie daemon" -#~ msgstr "Servicio de cookies de HTTP" - -#~ msgid "Shut down cookie jar" -#~ msgstr "Cerrar jar de cookies" - -#~ msgid "Remove cookies for domain" -#~ msgstr "Eliminar las cookies para el dominio" - -#~ msgid "Remove all cookies" -#~ msgstr "Eliminar todas las cookies" - -#~ msgid "Reload configuration file" -#~ msgstr "Recargar el archivo de configuración" - -#~ msgid "kio_metainfo" -#~ msgstr "kio_metainfo" - -#~ msgid "No metainfo for %1" -#~ msgstr "No hay metainformación sobre %1" - -#~ msgid "--- separator ---" -#~ msgstr "--- separador ---" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Actualizar" - -#~ msgctxt "@title:window" -#~ msgid "Bookmark Properties" -#~ msgstr "Propiedades de marcadores" - -#~ msgctxt "@action:button" -#~ msgid "Add" -#~ msgstr "Añadir" - -#~ msgctxt "@title:window" -#~ msgid "Add Bookmark" -#~ msgstr "Añadir marcador" - -#~ msgctxt "@action:button" -#~ msgid "&New Folder..." -#~ msgstr "&Nueva carpeta..." - -#~ msgctxt "@title:window" -#~ msgid "Add Bookmarks" -#~ msgstr "Añadir marcadores" - -#~ msgctxt "@label:textbox" -#~ msgid "Name:" -#~ msgstr "Nombre:" - -#~ msgctxt "@label:textbox" -#~ msgid "Location:" -#~ msgstr "Ubicación:" - -#~ msgctxt "@label:textbox" -#~ msgid "Comment:" -#~ msgstr "Comentario:" - -#~ msgctxt "@title:window" -#~ msgid "Create New Bookmark Folder" -#~ msgstr "Crear nueva carpeta de marcadores" - -#~ msgctxt "@title:window" -#~ msgid "Create New Bookmark Folder in %1" -#~ msgstr "Crear nueva carpeta de marcadores en %1" - -#~ msgctxt "@label:textbox" -#~ msgid "New folder:" -#~ msgstr "Nueva carpeta:" - -#~ msgctxt "name of the container of all browser bookmarks" -#~ msgid "Bookmarks" -#~ msgstr "Marcadores" - -#~ msgid "*.html|HTML Files (*.html)" -#~ msgstr "*.html|Archivos HTML (*.html)" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "*.adr|Opera Bookmark Files (*.adr)" -#~ msgstr "*.adr|Archivos marcadores de Opera (*.adr)" - -#~ msgid "" -#~ "Unable to save bookmarks in %1. Reported error was: %2. This error " -#~ "message will only be shown once. The cause of the error needs to be fixed " -#~ "as quickly as possible, which is most likely a full hard drive." -#~ msgstr "" -#~ "Imposible guardar marcadores en %1. El error informado fue: %2. Este " -#~ "mensaje de error solo se mostrará una vez. La causa del error, " -#~ "posiblemente un fallo del disco duro, necesita ser arreglada cuanto antes." - -#~ msgid "Add Bookmark Here" -#~ msgstr "Añadir marcador aquí" - -#~ msgid "Open Folder in Bookmark Editor" -#~ msgstr "Abrir carpeta en editor de marcadores" - -#~ msgid "Delete Folder" -#~ msgstr "Borrar carpeta" - -#~ msgid "Copy Link Address" -#~ msgstr "Copiar dirección de enlace" - -#~ msgid "Delete Bookmark" -#~ msgstr "Borrar marcador" - -#~ msgid "Open Folder in Tabs" -#~ msgstr "Abrir la carpeta en pestañas" - -#~ msgid "Cannot add bookmark with empty URL." -#~ msgstr "No se puede añadir un marcador con una URL vacía." - -#~ msgid "" -#~ "Are you sure you wish to remove the bookmark folder\n" -#~ "\"%1\"?" -#~ msgstr "" -#~ "¿Está seguro de que desea eliminar la carpeta de marcadores\n" -#~ "«%1»?" - -#~ msgid "" -#~ "Are you sure you wish to remove the bookmark\n" -#~ "\"%1\"?" -#~ msgstr "" -#~ "¿Está seguro de que desea eliminar el marcador\n" -#~ "«%1»?" - -#~ msgid "Bookmark Folder Deletion" -#~ msgstr "Eliminación de carpeta de marcadores" - -#~ msgid "Bookmark Deletion" -#~ msgstr "Eliminación de marcadores" - -#~ msgid "Open all bookmarks in this folder as a new tab." -#~ msgstr "Abrir todos los marcadores de esta carpeta como una nueva pestaña." - -#~ msgid "Bookmark Tabs as Folder..." -#~ msgstr "Guardar las pestañas como carpeta de marcadores..." - -#~ msgid "Add a folder of bookmarks for all open tabs." -#~ msgstr "Añadir una carpeta de marcadores para todas las pestañas abiertas." - -#~ msgid "Edit your bookmark collection in a separate window" -#~ msgstr "Editar su colección de marcadores en una ventana separada" - -#~ msgid "New Bookmark Folder..." -#~ msgstr "Nueva carpeta de marcadores..." - -#~ msgid "Create a new bookmark folder in this menu" -#~ msgstr "Crear una nueva carpeta de marcadores en este menú" - -#~ msgid "Hide in toolbar" -#~ msgstr "Ocultar en la barra de herramientas" - -#~ msgid "Show in toolbar" -#~ msgstr "Mostrar en la barra de herramientas" - -#~ msgid "Open in New Window" -#~ msgstr "Abrir en una nueva ventana" - -#~ msgid "Open in New Tab" -#~ msgstr "Abrir en una nueva pestaña" - -#~ msgid "Receiving corrupt data." -#~ msgstr "Recibiendo datos estropeados." - -#~ msgid "Owner" -#~ msgstr "Propietario" - -#~ msgid "Owning Group" -#~ msgstr "Grupo propietario" - -#~ msgid "Others" -#~ msgstr "Otros" - -#~ msgid "Mask" -#~ msgstr "Máscara" - -#~ msgid "Named User" -#~ msgstr "Usuario denominado" - -#~ msgid "Named Group" -#~ msgstr "Grupo denominado" - -#~ msgid "Edit Entry..." -#~ msgstr "Editar entrada..." - -#~ msgid "Delete Entry" -#~ msgstr "Borrar entrada" - -#~ msgid " (Default)" -#~ msgstr " (predeterminado)" - -#~ msgid "Edit ACL Entry" -#~ msgstr "Editar entrada ACL" - -#~ msgid "Entry Type" -#~ msgstr "Tipo de entrada" - -#~ msgid "Default for new files in this folder" -#~ msgstr "Por omisión para nuevos archivos en esta carpeta" - -#~ msgid "Named user" -#~ msgstr "Usuario denominado" - -#~ msgid "Named group" -#~ msgstr "Grupo denominado" - -#~ msgid "User: " -#~ msgstr "Usuario: " - -#~ msgid "Group: " -#~ msgstr "Grupo: " - -#~ msgid "Type" -#~ msgstr "Tipo" - -#~ msgid "Name" -#~ msgstr "Nombre" - -#~ msgctxt "read permission" -#~ msgid "r" -#~ msgstr "r" - -#~ msgctxt "write permission" -#~ msgid "w" -#~ msgstr "w" - -#~ msgctxt "execute permission" -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Effective" -#~ msgstr "Efectivo" - -#~ msgctxt "@label" -#~ msgid "Add Comment..." -#~ msgstr "Añadir comentario..." - -#~ msgctxt "@label" -#~ msgid "Change..." -#~ msgstr "Cambiar..." - -#~ msgctxt "@title:window" -#~ msgid "Change Comment" -#~ msgstr "Cambiar comentario" - -#~ msgctxt "@title:window" -#~ msgid "Add Comment" -#~ msgstr "Añadir comentario" - -#~ msgid "Device name" -#~ msgstr "Nombre del dispositivo" - -#~ msgid "Encoding:" -#~ msgstr "Codificación:" - -#~ msgid "Open" -#~ msgstr "Abrir" - -#~ msgid "Save As" -#~ msgstr "Guardar como" - -#~ msgid "*|All files" -#~ msgstr "*|Todos los archivos" - -#~ msgctxt "@item:intable" -#~ msgid "%1 item" -#~ msgid_plural "%1 items" -#~ msgstr[0] "%1 elemento" -#~ msgstr[1] "%1 elementos" - -#~ msgctxt "@label" -#~ msgid "Comment" -#~ msgstr "Comentario" - -#~ msgctxt "@label" -#~ msgid "Modified" -#~ msgstr "Modificado" - -#~ msgctxt "@label" -#~ msgid "Owner" -#~ msgstr "Propietario" - -#~ msgctxt "@label" -#~ msgid "Permissions" -#~ msgstr "Permisos" - -#~ msgctxt "@label" -#~ msgid "Rating" -#~ msgstr "Puntuación" - -#~ msgctxt "@label" -#~ msgid "Size" -#~ msgstr "Tamaño" - -#~ msgctxt "@label" -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgctxt "@label" -#~ msgid "Total Size" -#~ msgstr "Tamaño total" - -#~ msgctxt "@label" -#~ msgid "Type" -#~ msgstr "Tipo" - -#~ msgid "KFileMetaDataReader" -#~ msgstr "KFileMetaDataReader" - -#~ msgid "KFileMetaDataReader can be used to read metadata from a file" -#~ msgstr "" -#~ "KFileMetaDataReader se puede usar para leer los metadatos de un archivo" - -#~ msgid "(C) 2011, Peter Penz" -#~ msgstr "© 2011, Peter Penz" - -#~ msgid "Peter Penz" -#~ msgstr "Peter Penz" - -#~ msgid "Current maintainer" -#~ msgstr "Encargado actual" - -#~ msgid "Only the meta data that is part of the file is read" -#~ msgstr "Solo se leen los metadatos que son parte del archivo" - -#~ msgid "List of URLs where the meta-data should be read from" -#~ msgstr "Lista de URL de donde se deben leer los metadatos" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "&Share" -#~ msgstr "&Compartir" - -#~ msgid "Only folders in your home folder can be shared." -#~ msgstr "Solo se pueden compartir las carpetas de su carpeta personal." - -#~ msgid "Not shared" -#~ msgstr "No compartido" - -#~ msgid "Shared" -#~ msgstr "Compartido" - -#~ msgid "" -#~ "Sharing this folder makes it available under Linux/UNIX (NFS) and Windows " -#~ "(Samba)." -#~ msgstr "" -#~ "Si comparte esta carpeta estará disponible a través de Linux/UNIX (NFS) y " -#~ "Windows (Samba)." - -#~ msgid "You can also reconfigure file sharing authorization." -#~ msgstr "" -#~ "También puede reconfigurar la autorización de compartición de archivos." - -#~ msgid "Configure File Sharing..." -#~ msgstr "Configurar compartición de archivos..." - -#~ msgid "" -#~ "Error running 'filesharelist'. Check if installed and in $PATH or /usr/" -#~ "sbin." -#~ msgstr "" -#~ "Error ejecutando «filesharelist». Compruebe si está instalado y en el " -#~ "$PATH o en /usr/sbin." - -#~ msgid "You need to be authorized to share folders." -#~ msgstr "Necesita tener autorización para compartir carpetas." - -#~ msgid "File sharing is disabled." -#~ msgstr "La compartición de archivos está inhabilitada." - -#~ msgid "Sharing folder '%1' failed." -#~ msgstr "La compartición de la carpeta «%1» falló." - -#~ msgid "" -#~ "An error occurred while trying to share folder '%1'. Make sure that the " -#~ "Perl script 'fileshareset' is set suid root." -#~ msgstr "" -#~ "Se produjo un error al tratar de compartir la carpeta «%1». Asegúrese de " -#~ "que el script de Perl «fileshareset» tiene el suid a root." - -#~ msgid "Unsharing folder '%1' failed." -#~ msgstr "Fallo al intentar dejar de compartir la carpeta «%1»." - -#~ msgid "" -#~ "An error occurred while trying to unshare folder '%1'. Make sure that the " -#~ "Perl script 'fileshareset' is set suid root." -#~ msgstr "" -#~ "Se produjo un error al tratar de dejar de compartir la carpeta «%1». " -#~ "Asegúrese de que el script de Perl «fileshareset» tiene el suid a root." - -#~ msgctxt "@title:window" -#~ msgid "Configure Shown Data" -#~ msgstr "Configurar los datos mostrados" - -#~ msgctxt "@label::textbox" -#~ msgid "Select which data should be shown:" -#~ msgstr "Seleccione qué datos se deben mostrar:" - -#~ msgctxt "@action:button" -#~ msgid "Configure..." -#~ msgstr "Configurar..." - -#~ msgctxt "@title:tab" -#~ msgid "Information" -#~ msgstr "Información" - -#~ msgctxt "@label creation date" -#~ msgid "Created" -#~ msgstr "Creado" - -#~ msgctxt "@label file content size" -#~ msgid "Size" -#~ msgstr "Tamaño" - -#~ msgctxt "@label file depends from" -#~ msgid "Depends" -#~ msgstr "Depende de" - -#~ msgctxt "@label" -#~ msgid "Description" -#~ msgstr "Descripción" - -#~ msgctxt "@label Software used to generate content" -#~ msgid "Generator" -#~ msgstr "Generador" - -#~ msgctxt "" -#~ "@label see http://www.semanticdesktop.org/ontologies/2007/01/19/" -#~ "nie#hasPart" -#~ msgid "Has Part" -#~ msgstr "Tiene parte" - -#~ msgctxt "" -#~ "@label see http://www.semanticdesktop.org/ontologies/2007/01/19/" -#~ "nie#hasLogicalPart" -#~ msgid "Has Logical Part" -#~ msgstr "Tiene partes lógicas" - -#~ msgctxt "@label parent directory" -#~ msgid "Part of" -#~ msgstr "Es parte de" - -#~ msgctxt "@label" -#~ msgid "Keyword" -#~ msgstr "Palabra clave" - -#~ msgctxt "@label modified date of file" -#~ msgid "Modified" -#~ msgstr "Modificado" - -#~ msgctxt "@label" -#~ msgid "MIME Type" -#~ msgstr "Tipo MIME" - -#~ msgctxt "@label" -#~ msgid "Content" -#~ msgstr "Contenido" - -#~ msgctxt "@label" -#~ msgid "Related To" -#~ msgstr "Relacionado con" - -#~ msgctxt "@label" -#~ msgid "Subject" -#~ msgstr "Asunto" - -#~ msgctxt "@label music title" -#~ msgid "Title" -#~ msgstr "Título" - -#~ msgctxt "@label file URL" -#~ msgid "Location" -#~ msgstr "Ubicación" - -#~ msgctxt "@label" -#~ msgid "Creator" -#~ msgstr "Creador" - -#~ msgctxt "@label" -#~ msgid "Average Bitrate" -#~ msgstr "Tasa de bits media" - -#~ msgctxt "@label" -#~ msgid "Channels" -#~ msgstr "Canales" - -#~ msgctxt "@label number of characters" -#~ msgid "Characters" -#~ msgstr "Caracteres" - -#~ msgctxt "@label" -#~ msgid "Codec" -#~ msgstr "Códec" - -#~ msgctxt "@label" -#~ msgid "Color Depth" -#~ msgstr "Profundidad de color" - -#~ msgctxt "@label" -#~ msgid "Duration" -#~ msgstr "Duración" - -#~ msgctxt "@label" -#~ msgid "Filename" -#~ msgstr "Nombre de archivo" - -#~ msgctxt "@label" -#~ msgid "Hash" -#~ msgstr "Hash" - -#~ msgctxt "@label" -#~ msgid "Height" -#~ msgstr "Altura" - -#~ msgctxt "@label" -#~ msgid "Interlace Mode" -#~ msgstr "Modo entrelazado" - -#~ msgctxt "@label number of lines" -#~ msgid "Lines" -#~ msgstr "Líneas" - -#~ msgctxt "@label" -#~ msgid "Programming Language" -#~ msgstr "Lenguaje de programación" - -#~ msgctxt "@label" -#~ msgid "Sample Rate" -#~ msgstr "Frecuencia de muestreo" - -#~ msgctxt "@label" -#~ msgid "Width" -#~ msgstr "Ancho" - -#~ msgctxt "@label number of words" -#~ msgid "Words" -#~ msgstr "Palabras" - -#~ msgctxt "@label EXIF aperture value" -#~ msgid "Aperture" -#~ msgstr "Apertura" - -#~ msgctxt "@label EXIF" -#~ msgid "Exposure Bias Value" -#~ msgstr "Valor de la compensación de exposición" - -#~ msgctxt "@label EXIF" -#~ msgid "Exposure Time" -#~ msgstr "Tiempo de exposición" - -#~ msgctxt "@label EXIF" -#~ msgid "Flash" -#~ msgstr "Flash" - -#~ msgctxt "@label EXIF" -#~ msgid "Focal Length" -#~ msgstr "Longitud focal" - -#~ msgctxt "@label EXIF" -#~ msgid "Focal Length 35 mm" -#~ msgstr "Longitud focal de 35 mm" - -#~ msgctxt "@label EXIF" -#~ msgid "ISO Speed Ratings" -#~ msgstr "Índice de velocidad ISO" - -#~ msgctxt "@label EXIF" -#~ msgid "Make" -#~ msgstr "Marca" - -#~ msgctxt "@label EXIF" -#~ msgid "Metering Mode" -#~ msgstr "Modo de medición" - -#~ msgctxt "@label EXIF" -#~ msgid "Model" -#~ msgstr "Modelo" - -#~ msgctxt "@label EXIF" -#~ msgid "Orientation" -#~ msgstr "Orientación" - -#~ msgctxt "@label EXIF" -#~ msgid "White Balance" -#~ msgstr "Balance de blancos" - -#~ msgctxt "@label video director" -#~ msgid "Director" -#~ msgstr "Director" - -#~ msgctxt "@label music genre" -#~ msgid "Genre" -#~ msgstr "Género" - -#~ msgctxt "@label music album" -#~ msgid "Album" -#~ msgstr "Álbum" - -#~ msgctxt "@label" -#~ msgid "Performer" -#~ msgstr "Intérprete" - -#~ msgctxt "@label" -#~ msgid "Release Date" -#~ msgstr "Fecha de lanzamiento" - -#~ msgctxt "@label music track number" -#~ msgid "Track" -#~ msgstr "Pista" - -#~ msgctxt "@label resource created time" -#~ msgid "Resource Created" -#~ msgstr "Creación del recurso" - -#~ msgctxt "@label" -#~ msgid "Sub Resource" -#~ msgstr "Subrecurso" - -#~ msgctxt "@label resource last modified" -#~ msgid "Resource Modified" -#~ msgstr "Modificación del recurso" - -#~ msgctxt "@label" -#~ msgid "Numeric Rating" -#~ msgstr "Puntuación numérica" - -#~ msgctxt "@label" -#~ msgid "Copied From" -#~ msgstr "Copiado de" - -#~ msgctxt "@label" -#~ msgid "First Usage" -#~ msgstr "Primer uso" - -#~ msgctxt "@label" -#~ msgid "Last Usage" -#~ msgstr "Último uso" - -#~ msgctxt "@label" -#~ msgid "Usage Count" -#~ msgstr "Contador de usos" - -#~ msgctxt "@label" -#~ msgid "Unix File Group" -#~ msgstr "Grupo de archivo Unix" - -#~ msgctxt "@label" -#~ msgid "Unix File Mode" -#~ msgstr "Modo de archivo Unix" - -#~ msgctxt "@label" -#~ msgid "Unix File Owner" -#~ msgstr "Propietario de archivo Unix" - -#~ msgctxt "@label file type" -#~ msgid "Type" -#~ msgstr "Tipo" - -#~ msgctxt "@label Number of fuzzy translations" -#~ msgid "Fuzzy Translations" -#~ msgstr "Traducciones dudosas" - -#~ msgctxt "@label Name of last translator" -#~ msgid "Last Translator" -#~ msgstr "Último traductor" - -#~ msgctxt "@label Number of obsolete translations" -#~ msgid "Obsolete Translations" -#~ msgstr "Traducciones obsoletas" - -#~ msgctxt "@label" -#~ msgid "Translation Source Date" -#~ msgstr "Fecha de origen de la traducción" - -#~ msgctxt "@label Number of total translations" -#~ msgid "Total Translations" -#~ msgstr "Total de traducciones" - -#~ msgctxt "@label Number of translated strings" -#~ msgid "Translated" -#~ msgstr "Traducido" - -#~ msgctxt "@label" -#~ msgid "Translation Date" -#~ msgstr "Fecha de la traducción" - -#~ msgctxt "@label Number of untranslated strings" -#~ msgid "Untranslated" -#~ msgstr "Sin traducir" - -#~ msgid "Known Applications" -#~ msgstr "Aplicaciones conocidas" - -#~ msgid "Open With" -#~ msgstr "Abrir con" - -#~ msgid "" -#~ "Select the program that should be used to open %1. If the " -#~ "program is not listed, enter the name or click the browse button." -#~ msgstr "" -#~ "Seleccione el programa que debería usarse para abrir %1. Si el " -#~ "programa no está listado, introduzca el nombre o pulse el botón de " -#~ "examinar." - -#~ msgid "" -#~ "Choose the name of the program with which to open the selected files." -#~ msgstr "" -#~ "Elija el nombre del programa con el que abrir los archivos seleccionados." - -#~ msgid "Choose Application for %1" -#~ msgstr "Elija el programa para abrir %1" - -#~ msgid "" -#~ "Select the program for the file type: %1. If the program is " -#~ "not listed, enter the name or click the browse button." -#~ msgstr "" -#~ "Seleccione el programa a añadir para abrir el tipo de archivo %1. Si el programa no está listado, introduzca el nombre o pulse el botón " -#~ "de examinar." - -#~ msgid "Choose Application" -#~ msgstr "Elegir aplicación" - -#~ msgid "" -#~ "Select a program. If the program is not listed, enter the name or " -#~ "click the browse button." -#~ msgstr "" -#~ "Seleccione un programa. Si el programa no está listado, introduzca el " -#~ "nombre o pulse el botón de examinar." - -#~ msgid "" -#~ "Following the command, you can have several place holders which will be " -#~ "replaced with the actual values when the actual program is run:\n" -#~ "%f - a single file name\n" -#~ "%F - a list of files; use for applications that can open several local " -#~ "files at once\n" -#~ "%u - a single URL\n" -#~ "%U - a list of URLs\n" -#~ "%d - the directory of the file to open\n" -#~ "%D - a list of directories\n" -#~ "%i - the icon\n" -#~ "%m - the mini-icon\n" -#~ "%c - the comment" -#~ msgstr "" -#~ "A continuación de la orden, usted puede añadir varias variables que serán " -#~ "reemplazadas por sus valores reales cuando se ejecute la orden:\n" -#~ "%f - un nombre único de archivo\n" -#~ "%F - una lista de archivos, a usar por aquellas aplicaciones que pueden " -#~ "abrir varios archivos locales simultáneamente\n" -#~ "%u - una URL única\n" -#~ "%U - una lista de URL\n" -#~ "%d - el directorio del archivo a abrir\n" -#~ "%D - una lista de directorios\n" -#~ "%i - el icono\n" -#~ "%m - el miniicono\n" -#~ "%c - el comentario" - -#~ msgid "Run in &terminal" -#~ msgstr "Ejecutar en &terminal" - -#~ msgid "&Do not close when command exits" -#~ msgstr "No cerrar al cuan&do la orden finalice" - -#~ msgid "&Remember application association for this type of file" -#~ msgstr "&Recordar asociación de programa para este tipo de archivo" - -#~ msgid "" -#~ "Could not extract executable name from '%1', please type a valid program " -#~ "name." -#~ msgstr "" -#~ "No se puede extraer el nombre de ejecutable de «%1». Escriba un nombre de " -#~ "programa válido." - -#~ msgid "'%1' not found, please type a valid program name." -#~ msgstr "No se encuentra «%1». Escriba un nombre de programa válido." - -#~ msgid "P&review" -#~ msgstr "Vista p&revia" - -#~ msgctxt "" -#~ "@title:group Title of a group that lets the user choose options about the " -#~ "terminal when launching a program" -#~ msgid "Terminal" -#~ msgstr "Terminal" - -#~ msgid "" -#~ "Check this option if the application you want to run is a text mode " -#~ "application or if you want the information that is provided by the " -#~ "terminal emulator window." -#~ msgstr "" -#~ "Marque esta opción si la aplicación que desea ejecutar es una aplicación " -#~ "en modo texto o si desea la información que se proporciona a través de la " -#~ "ventana de emulación de terminal." - -#~ msgid "&Run in terminal" -#~ msgstr "Ejecutar en te&rminal" - -#~ msgid "&Terminal options:" -#~ msgstr "Opciones del &terminal:" - -#~ msgid "" -#~ "Check this option if the text mode application offers relevant " -#~ "information on exit. Keeping the terminal emulator open allows you to " -#~ "retrieve this information." -#~ msgstr "" -#~ "Marque esta opción si la aplicación de modo texto ofrece información " -#~ "pertinente al salir. Si mantiene el emulador de terminal abierto podrá " -#~ "recuperar esta información." - -#~ msgid "Do not &close when command exits" -#~ msgstr "No &cerrar cuando finalice la orden" - -#~ msgctxt "" -#~ "@title:group Title of a group that lets the user choose which user to use " -#~ "when launching a program" -#~ msgid "User" -#~ msgstr "Usuario" - -#~ msgid "" -#~ "Check this option if you want to run this application with a different " -#~ "user id. Every process has a different user id associated with it. This " -#~ "id code determines file access and other permissions. The password of the " -#~ "user is required to use this option." -#~ msgstr "" -#~ "Marque esta opción si desea ejecutar esta aplicación con un identificador " -#~ "de usuario diferente. Todos los procesos tienen un identificador de " -#~ "usuario diferente asociado. Este código de identificación determina el " -#~ "acceso a archivos y otros permisos. La contraseña del usuario es " -#~ "necesaria para utilizar esta opción." - -#~ msgid "Ru&n as a different user" -#~ msgstr "Ejecutar co&mo otro usuario" - -#~ msgid "Enter the user name you want to run the application as." -#~ msgstr "" -#~ "Introduzca el nombre del usuario desde el que desea ejecutar la " -#~ "aplicación." - -#~ msgid "&Username:" -#~ msgstr "Nombre de &usuario:" - -#~ msgid "Enter the user name you want to run the application as here." -#~ msgstr "" -#~ "Introduzca el nombre del usuario desde el que desea ejecutar la " -#~ "aplicación." - -#~ msgctxt "" -#~ "@title:group Title of a group that lets the user choose options regargin " -#~ "program startup" -#~ msgid "Startup" -#~ msgstr "Inicio" - -#~ msgid "" -#~ "Check this option if you want to make clear that your application has " -#~ "started. This visual feedback may appear as a busy cursor or in the " -#~ "taskbar." -#~ msgstr "" -#~ "Marque esta opción si desea que se le notifique que su aplicación se ha " -#~ "iniciado. Esta notificación visual puede aparecer como un cursor ocupado " -#~ "o en la barra de tareas." - -#~ msgid "Enable &launch feedback" -#~ msgstr "Habilitar notificación de &lanzamiento" - -#~ msgid "" -#~ "Check this option if you want to have a system tray handle for your " -#~ "application." -#~ msgstr "" -#~ "Marque esta opción si desea tener un bandeja del sistema que maneje su " -#~ "aplicación." - -#~ msgid "&Place in system tray" -#~ msgstr "&Colocar en la bandeja del sistema" - -#~ msgid "&D-Bus registration:" -#~ msgstr "Registro &D-Bus:" - -#~ msgid "None" -#~ msgstr "Ninguno" - -#~ msgid "Multiple Instances" -#~ msgstr "Múltiples instancias" - -#~ msgid "Single Instance" -#~ msgstr "Única instancia" - -#~ msgid "Run Until Finished" -#~ msgstr "Ejecutar hasta finalizar" - -#~ msgid "" -#~ "Type the name you want to give to this application here. This application " -#~ "will appear under this name in the applications menu and in the panel." -#~ msgstr "" -#~ "Introduzca aquí el nombre que desea dar a esta aplicación. Esta " -#~ "aplicación aparecerá bajo este nombre en el menú de aplicaciones y en el " -#~ "panel." - -#~ msgid "" -#~ "Type the description of this application, based on its use, here. " -#~ "Examples: a dial up application (KPPP) would be \"Dial up tool\"." -#~ msgstr "" -#~ "Introduzca aquí la descripción de esta aplicación, basándose en su uso. " -#~ "Por ejemplo: una aplicación de marcado telefónico (KPPP) podría " -#~ "describirse con «Herramienta de marcado telefónico»." - -#~ msgid "&Description:" -#~ msgstr "&Descripción:" - -#~ msgid "Type any comment you think is useful here." -#~ msgstr "Introduzca aquí los comentarios que considere pertinentes." - -#~ msgid "Comm&ent:" -#~ msgstr "Come&ntario:" - -#~ msgid "" -#~ "Type the command to start this application here.\n" -#~ "\n" -#~ "Following the command, you can have several place holders which will be " -#~ "replaced with the actual values when the actual program is run:\n" -#~ "%f - a single file name\n" -#~ "%F - a list of files; use for applications that can open several local " -#~ "files at once\n" -#~ "%u - a single URL\n" -#~ "%U - a list of URLs\n" -#~ "%d - the directory of the file to open\n" -#~ "%D - a list of directories\n" -#~ "%i - the icon\n" -#~ "%m - the mini-icon\n" -#~ "%c - the caption" -#~ msgstr "" -#~ "Introduzca aquí la orden para lanzar esta aplicación.\n" -#~ "\n" -#~ "A continuación de la orden, usted puede añadir varias variables que serán " -#~ "reemplazadas por sus valores reales cuando se ejecute la orden:\n" -#~ "%f - un nombre único de archivo\n" -#~ "%F - una lista de archivos, a usar por aquellas aplicaciones que pueden " -#~ "abrir varios archivos locales simultáneamente\n" -#~ "%u - una URL única\n" -#~ "%U - una lista de URL\n" -#~ "%d - el directorio del archivo a abrir\n" -#~ "%D - una lista de carpetas\n" -#~ "%i - el icono\n" -#~ "%m - el miniicono\n" -#~ "%c - el título" - -#~ msgid "Co&mmand:" -#~ msgstr "&Orden:" - -#~ msgid "" -#~ "Click here to browse your file system in order to find the desired " -#~ "executable." -#~ msgstr "" -#~ "Pulse aquí para navegar por su sistema de archivos para poder encontrar " -#~ "el ejecutable deseado." - -#~ msgid "Sets the working directory for your application." -#~ msgstr "Establece el directorio de trabajo de su aplicación." - -#~ msgid "&Work path:" -#~ msgstr "Ruta de traba&jo:" - -#~ msgid "" -#~ "

This list should show the types of file that your application can " -#~ "handle. This list is organized by mimetypes.

\n" -#~ "

MIME, Multipurpose Internet (e)Mail Extension, is a standard protocol " -#~ "for identifying the type of data based on filename extensions and " -#~ "correspondent mimetypes. Example: the \"bmp\" part that comes " -#~ "after the dot in flower.bmp indicates that it is a specific kind of " -#~ "image, image/x-bmp. To know which application should open each " -#~ "type of file, the system should be informed about the abilities of each " -#~ "application to handle these extensions and mimetypes.

\n" -#~ "

If you want to associate this application with one or more mimetypes " -#~ "that are not in this list, click on the button Add below. If there " -#~ "are one or more filetypes that this application cannot handle, you may " -#~ "want to remove them from the list clicking on the button Remove " -#~ "below.

" -#~ msgstr "" -#~ "

Esta lista debería mostrar los tipos de archivos que su aplicación " -#~ "puede manejar. Esta lista está organizada por tipos MIME.

\n" -#~ "

MIME, Multipurpose Internet (e)Mail Extension, es un protocolo " -#~ "estándar para identificar el tipo de datos basado en las extensiones de " -#~ "archivos y en sus tipos MIME correspondientes. Por ejemplo: el " -#~ "sufijo «bmp» que sigue al punto en flor.bmp indica que se trata de un " -#~ "tipo específico de imagen, image/x-bmp. Para saber qué aplicación " -#~ "debería abrir qué tipos de archivo, se debería informar al sistema de las " -#~ "capacidades de cada aplicación para manejar esas extensiones y tipos MIME." -#~ "

\n" -#~ "

Si desea asociar esta aplicación con uno o más tipos MIME que no están " -#~ "en la lista, pulse sobre el botón Añadir de debajo. Si hay uno o " -#~ "más tipos MIME que esta aplicación no puede manejar, puede que desee " -#~ "eliminarlos desde la lista pulsando sobre el botón Eliminar de " -#~ "debajo.

" - -#~ msgid "&Supported file types:" -#~ msgstr "Tipo&s de archivos permitidos:" - -#~ msgid "Mimetype" -#~ msgstr "Tipos MIME" - -#~ msgid "Description" -#~ msgstr "Descripción" - -#~ msgid "" -#~ "Click on this button if you want to add a type of file (mimetype) that " -#~ "your application can handle." -#~ msgstr "" -#~ "Pulse sobre este botón si desea añadir un tipo de archivo (tipo MIME) que " -#~ "su aplicación puede manejar." - -#~ msgid "Add..." -#~ msgstr "Añadir..." - -#~ msgid "" -#~ "If you want to remove a type of file (mimetype) that your application " -#~ "cannot handle, select the mimetype in the list above and click on this " -#~ "button." -#~ msgstr "" -#~ "Si desea eliminar un tipo de archivo (tipo MIME) que su aplicación no " -#~ "puede manejar, seleccione el tipo MIME de la lista de encima y pulse " -#~ "sobre este botón." - -#~ msgid "Remove" -#~ msgstr "Eliminar" - -#~ msgid "" -#~ "Click here to modify the way this application will run, launch feedback, " -#~ "D-Bus options or to run it as a different user." -#~ msgstr "" -#~ "Pulse aquí para modificar el modo de funcionamiento de esta aplicación, " -#~ "la notificación de lanzamiento, las opciones de D-Bus, o para ejecutarla " -#~ "como un usuario diferente." - -#~ msgid "Ad&vanced Options" -#~ msgstr "Opciones a&vanzadas" - -#~ msgid "Properties for %1" -#~ msgstr "Propiedades de %1" - -#~ msgid "Properties for 1 item" -#~ msgid_plural "Properties for %1 Selected Items" -#~ msgstr[0] "Propiedades de un elemento" -#~ msgstr[1] "Propiedades de %1 elementos seleccionados" - -#~ msgctxt "@title:tab File properties" -#~ msgid "&General" -#~ msgstr "&General" - -#~ msgid "Type:" -#~ msgstr "Tipo:" - -#~ msgid "Create New File Type" -#~ msgstr "Crear nuevo tipo de archivo" - -#~ msgid "File Type Options" -#~ msgstr "Opciones de tipo de archivo" - -#~ msgid "Contents:" -#~ msgstr "Contenidos:" - -#~ msgid "Location:" -#~ msgstr "Ubicación:" - -#~ msgid "Size:" -#~ msgstr "Tamaño:" - -#~ msgid "Calculate" -#~ msgstr "Calcular" - -#~ msgid "Stop" -#~ msgstr "Detener" - -#~ msgid "Refresh" -#~ msgstr "Actualizar" - -#~ msgid "Points to:" -#~ msgstr "Apunta a:" - -#~ msgid "Created:" -#~ msgstr "Creado:" - -#~ msgid "Modified:" -#~ msgstr "Modificado:" - -#~ msgid "Accessed:" -#~ msgstr "Accedido:" - -#~ msgid "Mounted on:" -#~ msgstr "Montado en:" - -#~ msgid "Device usage:" -#~ msgstr "Uso del dispositivo:" - -#~ msgctxt "Available space out of total partition size (percent used)" -#~ msgid "%1 free of %2 (%3% used)" -#~ msgstr "%1 libre de %2 (%3% usado)" - -#~ msgid "" -#~ "Calculating... %1 (%2)\n" -#~ "%3, %4" -#~ msgstr "" -#~ "Calculando...%1 (%2)\n" -#~ "%3, %4" - -#~ msgid "1 file" -#~ msgid_plural "%1 files" -#~ msgstr[0] "1 archivo" -#~ msgstr[1] "%1 archivos" - -#~ msgid "1 sub-folder" -#~ msgid_plural "%1 sub-folders" -#~ msgstr[0] "1 subcarpeta" -#~ msgstr[1] "%1 subcarpetas" - -#~ msgid "Calculating..." -#~ msgstr "Calculando..." - -#~ msgid "At least %1" -#~ msgstr "Al menos %1" - -#~ msgid "The new file name is empty." -#~ msgstr "El nuevo nombre de archivo está vacío." - -#~ msgid "" -#~ "Could not save properties. You do not have sufficient access to write " -#~ "to %1." -#~ msgstr "" -#~ "No se pudieron guardar las propiedades. No tiene permisos para " -#~ "escribir en %1." - -#~ msgid "Forbidden" -#~ msgstr "Prohibido" - -#~ msgid "Can Read" -#~ msgstr "Lectura posible" - -#~ msgid "Can Read & Write" -#~ msgstr "Lectura y escritura posibles" - -#~ msgid "Can View Content" -#~ msgstr "Se puede visualizar el contenido" - -#~ msgid "Can View & Modify Content" -#~ msgstr "Se puede visualizar y modificar el contenido" - -#~ msgid "Can View Content & Read" -#~ msgstr "Se puede visualizar y leer el contenido" - -#~ msgid "Can View/Read & Modify/Write" -#~ msgstr "Se puede visualizar/leer y modificar/escribir" - -#~ msgid "&Permissions" -#~ msgstr "&Permisos" - -#~ msgid "Access Permissions" -#~ msgstr "Permisos de acceso" - -#~ msgid "This file is a link and does not have permissions." -#~ msgid_plural "All files are links and do not have permissions." -#~ msgstr[0] "Este archivo es un enlace y no tiene permisos." -#~ msgstr[1] "Todos los archivos son enlaces y no tienen permisos." - -#~ msgid "Only the owner can change permissions." -#~ msgstr "Solo el propietario puede cambiar los permisos." - -#~ msgid "O&wner:" -#~ msgstr "P&ropietario:" - -#~ msgid "Specifies the actions that the owner is allowed to do." -#~ msgstr "Especifica las operaciones permitidas al propietario." - -#~ msgid "Gro&up:" -#~ msgstr "Gr&upo:" - -#~ msgid "" -#~ "Specifies the actions that the members of the group are allowed to do." -#~ msgstr "Especifica las operaciones permitidas a los miembros del grupo." - -#~ msgid "O&thers:" -#~ msgstr "O&tros:" - -#~ msgid "" -#~ "Specifies the actions that all users, who are neither owner nor in the " -#~ "group, are allowed to do." -#~ msgstr "" -#~ "Especifica las operaciones permitidas a todos los usuarios, que no son ni " -#~ "el propietario ni pertenecen al grupo." - -#~ msgid "Only own&er can rename and delete folder content" -#~ msgstr "" -#~ "Solo el propi&etario puede cambiar de nombre y borrar el contenido de la " -#~ "carpeta" - -#~ msgid "Is &executable" -#~ msgstr "es e&jecutable" - -#~ msgid "" -#~ "Enable this option to allow only the folder's owner to delete or rename " -#~ "the contained files and folders. Other users can only add new files, " -#~ "which requires the 'Modify Content' permission." -#~ msgstr "" -#~ "Habilite esta opción para permitir que solo el propietario de la carpeta " -#~ "borre o cambie el nombre de los archivos y carpetas contenidas. Otros " -#~ "usuarios solo podrán añadir archivos nuevos, lo que requiere el permiso " -#~ "de «Modificar contenido»." - -#~ msgid "" -#~ "Enable this option to mark the file as executable. This only makes sense " -#~ "for programs and scripts. It is required when you want to execute them." -#~ msgstr "" -#~ "Habilite esta opción para marcar el archivo como ejecutable. Esto solo " -#~ "tiene sentido para programas y scripts. Se necesita cuando desee " -#~ "ejecutarlos." - -#~ msgid "A&dvanced Permissions" -#~ msgstr "Permisos avanza&dos" - -#~ msgid "Ownership" -#~ msgstr "Propietario" - -#~ msgid "User:" -#~ msgstr "Usuario:" - -#~ msgid "Group:" -#~ msgstr "Grupo:" - -#~ msgid "Apply changes to all subfolders and their contents" -#~ msgstr "Aplicar cambios a todas las subcarpetas y a sus contenidos" - -#~ msgid "Advanced Permissions" -#~ msgstr "Permisos avanzados" - -#~ msgid "Class" -#~ msgstr "Clase" - -#~ msgid "" -#~ "Show\n" -#~ "Entries" -#~ msgstr "" -#~ "Mostrar\n" -#~ "entradas" - -#~ msgid "Read" -#~ msgstr "Leer" - -#~ msgid "This flag allows viewing the content of the folder." -#~ msgstr "Este indicador permite visualizar el contenido de la carpeta." - -#~ msgid "The Read flag allows viewing the content of the file." -#~ msgstr "" -#~ "El indicador de lectura permite visualizar el contenido del archivo." - -#~ msgid "" -#~ "Write\n" -#~ "Entries" -#~ msgstr "" -#~ "Escribir\n" -#~ "entradas" - -#~ msgid "Write" -#~ msgstr "Escribir" - -#~ msgid "" -#~ "This flag allows adding, renaming and deleting of files. Note that " -#~ "deleting and renaming can be limited using the Sticky flag." -#~ msgstr "" -#~ "Este indicador permite añadir, cambiar de nombre y borrar archivos. " -#~ "Advierta que el borrado y cambio de nombre se puede limitar empleando el " -#~ "indicador «Pegajoso»." - -#~ msgid "The Write flag allows modifying the content of the file." -#~ msgstr "" -#~ "El indicador de escritura permite modificar el contenido del archivo." - -#~ msgctxt "Enter folder" -#~ msgid "Enter" -#~ msgstr "Entrar" - -#~ msgid "Enable this flag to allow entering the folder." -#~ msgstr "Habilite este indicador para permitir entrar en la carpeta." - -#~ msgid "Exec" -#~ msgstr "Ejecutar" - -#~ msgid "Enable this flag to allow executing the file as a program." -#~ msgstr "" -#~ "Habilite este indicador para permitir la ejecución del archivo como un " -#~ "programa." - -#~ msgid "Special" -#~ msgstr "Especial" - -#~ msgid "" -#~ "Special flag. Valid for the whole folder, the exact meaning of the flag " -#~ "can be seen in the right hand column." -#~ msgstr "" -#~ "Indicador especial. Válido para la carpeta completa, el significado " -#~ "exacto del indicador se puede ver en la columna de la derecha." - -#~ msgid "" -#~ "Special flag. The exact meaning of the flag can be seen in the right hand " -#~ "column." -#~ msgstr "" -#~ "Indicador especial. El significado exacto del indicador se puede ver en " -#~ "la columna de la derecha." - -#~ msgid "User" -#~ msgstr "Usuario" - -#~ msgid "Group" -#~ msgstr "Grupo" - -#~ msgid "Set UID" -#~ msgstr "Asignar UID" - -#~ msgid "" -#~ "If this flag is set, the owner of this folder will be the owner of all " -#~ "new files." -#~ msgstr "" -#~ "Si se activa este indicador, el propietario de la carpeta será el " -#~ "propietario de todos los archivos nuevos." - -#~ msgid "" -#~ "If this file is an executable and the flag is set, it will be executed " -#~ "with the permissions of the owner." -#~ msgstr "" -#~ "Si este archivo es un ejecutable y el indicador está activado, se " -#~ "ejecutará con los permisos del propietario." - -#~ msgid "Set GID" -#~ msgstr "Asignar GID" - -#~ msgid "" -#~ "If this flag is set, the group of this folder will be set for all new " -#~ "files." -#~ msgstr "" -#~ "Si se activa este indicador, el grupo de esta carpeta se asignará a todos " -#~ "los archivos nuevos." - -#~ msgid "" -#~ "If this file is an executable and the flag is set, it will be executed " -#~ "with the permissions of the group." -#~ msgstr "" -#~ "Si este archivo es un ejecutable y el indicador está activado, se " -#~ "ejecutará con los permisos del grupo." - -#~ msgctxt "File permission" -#~ msgid "Sticky" -#~ msgstr "Pegajoso" - -#~ msgid "" -#~ "If the Sticky flag is set on a folder, only the owner and root can delete " -#~ "or rename files. Otherwise everybody with write permissions can do this." -#~ msgstr "" -#~ "Si el indicador «Pegajoso» está activado en una carpeta, solo el " -#~ "propietario y root pueden borrar o cambiar el nombre de los archivos. De " -#~ "otro modo todo el mundo con permisos de escritura podrá hacerlo." - -#~ msgid "" -#~ "The Sticky flag on a file is ignored on Linux, but may be used on some " -#~ "systems" -#~ msgstr "" -#~ "El indicador «Pegajoso» en un archivo se ignora en Linux, pero se puede " -#~ "usar en algunos sistemas" - -#~ msgid "Link" -#~ msgstr "Enlace" - -#~ msgid "Varying (No Change)" -#~ msgstr "Variable (sin cambio)" - -#~ msgid "This file uses advanced permissions" -#~ msgid_plural "These files use advanced permissions." -#~ msgstr[0] "Este archivo usa permisos avanzados." -#~ msgstr[1] "Estos archivos usan permisos avanzados." - -#~ msgid "This folder uses advanced permissions." -#~ msgid_plural "These folders use advanced permissions." -#~ msgstr[0] "Esta carpeta usa permisos avanzados." -#~ msgstr[1] "Estas carpetas usan permisos avanzados." - -#~ msgid "These files use advanced permissions." -#~ msgstr "Estos archivos usan permisos avanzados." - -#~ msgid "U&RL" -#~ msgstr "U&RL" - -#~ msgid "URL:" -#~ msgstr "URL:" - -#~ msgid "De&vice" -#~ msgstr "Dispositi&vo" - -#~ msgid "Device (/dev/fd0):" -#~ msgstr "Dispositivo (/dev/fd0):" - -#~ msgid "Device:" -#~ msgstr "Dispositivo:" - -#~ msgid "Read only" -#~ msgstr "Solo lectura" - -#~ msgid "File system:" -#~ msgstr "Sistema de archivos:" - -#~ msgid "Mount point (/mnt/floppy):" -#~ msgstr "Punto de montaje (/mnt/floppy):" - -#~ msgid "Mount point:" -#~ msgstr "Punto de montaje:" - -#~ msgid "&Application" -#~ msgstr "&Aplicación" - -#~ msgid "Add File Type for %1" -#~ msgstr "Añadir tipo de archivo para %1" - -#~ msgid "Select one or more file types to add:" -#~ msgstr "Seleccionar uno o más tipos de archivo a añadir:" - -#~ msgid "Only executables on local file systems are supported." -#~ msgstr "Solo se permiten ejecutables de sistemas de archivos locales." - -#~ msgid "Advanced Options for %1" -#~ msgstr "Opciones avanzadas para %1" - -#~ msgid "Open file dialog" -#~ msgstr "Abrir diálogo de archivos" - -#~ msgid "Blocked request." -#~ msgstr "Petición bloqueada." - -#~ msgid "Unknown HTTP verb." -#~ msgstr "Verbo HTTP desconocido." - -#~ msgid "" -#~ "Could not modify the ownership of file %1. You have " -#~ "insufficient access to the file to perform the change." -#~ msgstr "" -#~ "No se pudo cambiar el propietario del archivo %1. No tiene " -#~ "permisos suficientes para realizar el cambio." - -#~ msgid "&Skip File" -#~ msgstr "O&mitir el archivo" - -#~ msgid "Unable to create io-slave: %1" -#~ msgstr "Imposible crear esclavo de E/S: %1" - -#~ msgid "Folder Already Exists" -#~ msgstr "La carpeta ya existe" - -#~ msgid "File Already Exists" -#~ msgstr "El archivo ya existe" - -#~ msgid "Already Exists as Folder" -#~ msgstr "Ya existe como carpeta" - -#~ msgid "Creating directory" -#~ msgstr "Creando carpeta" - -#~ msgid "Directory" -#~ msgstr "Directorio" - -#~ msgid "Moving" -#~ msgstr "Moviendo" - -#~ msgctxt "The source of a file operation" -#~ msgid "Source" -#~ msgstr "Origen" - -#~ msgctxt "The destination of a file operation" -#~ msgid "Destination" -#~ msgstr "Destino" - -#~ msgid "Deleting" -#~ msgstr "Borrando" - -#~ msgid "File" -#~ msgstr "Archivo" - -#~ msgid "Und&o" -#~ msgstr "&Deshacer" - -#~ msgid "Und&o: Copy" -#~ msgstr "&Deshacer: Copiar" - -#~ msgid "Und&o: Link" -#~ msgstr "&Deshacer: Enlazar" - -#~ msgid "Und&o: Move" -#~ msgstr "&Deshacer: Mover" - -#~ msgid "Und&o: Rename" -#~ msgstr "&Deshacer: Cambiar de nombre" - -#~ msgid "Und&o: Trash" -#~ msgstr "&Deshacer: Tirar a la papelera" - -#~ msgid "Und&o: Create Folder" -#~ msgstr "&Deshacer: Crear carpeta" - -#~ msgid "Und&o: Create File" -#~ msgstr "&Deshacer: Crear archivo" - -#~ msgid "" -#~ "The file %1 was copied from %2, but since then it has apparently been " -#~ "modified at %3.\n" -#~ "Undoing the copy will delete the file, and all modifications will be " -#~ "lost.\n" -#~ "Are you sure you want to delete %4?" -#~ msgstr "" -#~ "El archivo %1 fue copiado desde %2, pero desde entonces ha sido " -#~ "aparentemente modificado en %3.\n" -#~ "Si deshace la copia se eliminará el archivo, y se perderán todas las " -#~ "modificaciones.\n" -#~ "¿Realmente desea eliminar %4?" - -#~ msgid "Undo File Copy Confirmation" -#~ msgstr "Confirmación para deshacer la copia de archivo" - -#~ msgid "1 day %2" -#~ msgid_plural "%1 days %2" -#~ msgstr[0] "1 día %2" -#~ msgstr[1] "%1 días %2" - -#~ msgid "%1 Item" -#~ msgid_plural "%1 Items" -#~ msgstr[0] "%1 elemento" -#~ msgstr[1] "%1 elementos" - -#~ msgid "1 Folder" -#~ msgid_plural "%1 Folders" -#~ msgstr[0] "1 carpeta" -#~ msgstr[1] "%1 carpetas" - -#~ msgid "1 File" -#~ msgid_plural "%1 Files" -#~ msgstr[0] "1 archivo" -#~ msgstr[1] "%1 archivos" - -#~ msgctxt "folders, files (size)" -#~ msgid "%1, %2 (%3)" -#~ msgstr "%1, %2 (%3)" - -#~ msgctxt "folders, files" -#~ msgid "%1, %2" -#~ msgstr "%1, %2" - -#~ msgctxt "files (size)" -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgctxt "items: folders, files (size)" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgid "Could not read %1." -#~ msgstr "No se pudo leer %1." - -#~ msgid "Could not write to %1." -#~ msgstr "No se pudo escribir en %1." - -#~ msgid "Could not start process %1." -#~ msgstr "No se pudo iniciar el proceso %1." - -#~ msgid "" -#~ "Internal Error\n" -#~ "Please send a full bug report at http://bugs.kde.org\n" -#~ "%1" -#~ msgstr "" -#~ "Error interno\n" -#~ "Por favor, envíe un informe de fallos completo en http://bugs.kde.org\n" -#~ "%1" - -#~ msgid "Malformed URL %1." -#~ msgstr "Formato de URL erróneo %1." - -#~ msgid "The protocol %1 is not supported." -#~ msgstr "El protocolo %1 no está permitido." - -#~ msgid "The protocol %1 is only a filter protocol." -#~ msgstr "El protocolo %1 solo es un protocolo de filtrado." - -#~ msgid "%1 is a folder, but a file was expected." -#~ msgstr "%1 es una carpeta, pero se esperaba un archivo." - -#~ msgid "%1 is a file, but a folder was expected." -#~ msgstr "%1 es un archivo, pero se esperaba una carpeta." - -#~ msgid "The file or folder %1 does not exist." -#~ msgstr "El archivo o carpeta %1 no existe." - -#~ msgid "A file named %1 already exists." -#~ msgstr "Ya existe un archivo llamado %1." - -#~ msgid "A folder named %1 already exists." -#~ msgstr "Ya existe una carpeta llamada %1." - -#~ msgid "No hostname specified." -#~ msgstr "No se indicó ningún nombre de máquina." - -#~ msgid "Unknown host %1" -#~ msgstr "Máquina desconocida %1" - -#~ msgid "Access denied to %1." -#~ msgstr "Acceso denegado a %1." - -#~ msgid "" -#~ "Access denied.\n" -#~ "Could not write to %1." -#~ msgstr "" -#~ "Acceso denegado\n" -#~ "No se pudo escribir en %1." - -#~ msgid "Could not enter folder %1." -#~ msgstr "No se pudo entrar a la carpeta %1." - -#~ msgid "The protocol %1 does not implement a folder service." -#~ msgstr "El protocolo %1 no implementa un servicio de carpeta." - -#~ msgid "Found a cyclic link in %1." -#~ msgstr "Se encontró un enlace cíclico en %1." - -#~ msgid "Found a cyclic link while copying %1." -#~ msgstr "Se encontró un enlace cíclico al copiar %1." - -#~ msgid "Could not create socket for accessing %1." -#~ msgstr "No se pudo crear un socket para acceder a %1." - -#~ msgid "Could not connect to host %1." -#~ msgstr "No se pudo conectar a la máquina %1." - -#~ msgid "Connection to host %1 is broken." -#~ msgstr "La conexión con la máquina %1 está interrumpida." - -#~ msgid "The protocol %1 is not a filter protocol." -#~ msgstr "El protocolo %1 no es un protocolo de filtrado." - -#~ msgid "" -#~ "Could not mount device.\n" -#~ "The reported error was:\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudo montar el dispositivo.\n" -#~ "El mensaje de error fue:\n" -#~ "%1" - -#~ msgid "" -#~ "Could not unmount device.\n" -#~ "The reported error was:\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudo desmontar el dispositivo.\n" -#~ "El mensaje de error fue:\n" -#~ "%1" - -#~ msgid "Could not read file %1." -#~ msgstr "No se pudo leer el archivo %1." - -#~ msgid "Could not write to file %1." -#~ msgstr "No se pudo escribir en el archivo %1." - -#~ msgid "Could not bind %1." -#~ msgstr "No se pudo enlazar %1." - -#~ msgid "Could not listen %1." -#~ msgstr "No se pudo escuchar a %1." - -#~ msgid "Could not accept %1." -#~ msgstr "No se pudo aceptar %1." - -#~ msgid "Could not access %1." -#~ msgstr "No se pudo acceder a %1." - -#~ msgid "Could not terminate listing %1." -#~ msgstr "No se pudo terminar el listado %1." - -#~ msgid "Could not make folder %1." -#~ msgstr "No se pudo crear la carpeta %1." - -#~ msgid "Could not remove folder %1." -#~ msgstr "No se pudo eliminar la carpeta %1." - -#~ msgid "Could not resume file %1." -#~ msgstr "No se pudo reanudar el archivo %1." - -#~ msgid "Could not rename file %1." -#~ msgstr "No se pudo cambiar el nombre del archivo %1." - -#~ msgid "Could not change permissions for %1." -#~ msgstr "No se pudieron cambiar los permisos de %1." - -#~ msgid "Could not change ownership for %1." -#~ msgstr "No fue posible cambiar el propietario de %1." - -#~ msgid "Could not delete file %1." -#~ msgstr "No se pudo borrar el archivo %1." - -#~ msgid "The process for the %1 protocol died unexpectedly." -#~ msgstr "El proceso para el protocolo %1 terminó inesperadamente." - -#~ msgid "" -#~ "Error. Out of memory.\n" -#~ "%1" -#~ msgstr "" -#~ "Error. No queda memoria.\n" -#~ "%1" - -#~ msgid "" -#~ "Unknown proxy host\n" -#~ "%1" -#~ msgstr "" -#~ "Máquina proxy desconocida\n" -#~ "%1" - -#~ msgid "Authorization failed, %1 authentication not supported" -#~ msgstr "Falló la autorización, autenticación %1 no permitida" - -#~ msgid "" -#~ "User canceled action\n" -#~ "%1" -#~ msgstr "" -#~ "El usuario canceló la acción\n" -#~ "%1" - -#~ msgid "" -#~ "Internal error in server\n" -#~ "%1" -#~ msgstr "" -#~ "Error interno en el servidor\n" -#~ "%1" - -#~ msgid "" -#~ "Timeout on server\n" -#~ "%1" -#~ msgstr "" -#~ "Tiempo de espera agotado en el servidor\n" -#~ "%1" - -#~ msgid "" -#~ "Unknown error\n" -#~ "%1" -#~ msgstr "" -#~ "Error desconocido\n" -#~ "%1" - -#~ msgid "" -#~ "Unknown interrupt\n" -#~ "%1" -#~ msgstr "" -#~ "Interrupción desconocida\n" -#~ "%1" - -#~ msgid "" -#~ "Could not delete original file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "No fue posible borrar el archivo original %1.\n" -#~ "Compruebe los permisos." - -#~ msgid "" -#~ "Could not delete partial file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "No fue posible borrar el archivo parcial %1.\n" -#~ "Compruebe los permisos." - -#~ msgid "" -#~ "Could not rename original file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "No se pudo cambiar el nombre del archivo original %1.\n" -#~ "Compruebe los permisos." - -#~ msgid "" -#~ "Could not rename partial file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "No se pudo cambiar el nombre del archivo parcial %1.\n" -#~ "Compruebe los permisos." - -#~ msgid "" -#~ "Could not create symlink %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "No se pudo crear el enlace simbólico %1.\n" -#~ "Compruebe los permisos." - -#~ msgid "" -#~ "Could not write file %1.\n" -#~ "Disk full." -#~ msgstr "" -#~ "No se pudo escribir al archivo %1.\n" -#~ "Disco lleno." - -#~ msgid "" -#~ "The source and destination are the same file.\n" -#~ "%1" -#~ msgstr "" -#~ "El origen y el destino son el mismo archivo.\n" -#~ "%1" - -#~ msgid "%1 is required by the server, but is not available." -#~ msgstr "%1 es requerido por el servidor, pero no está disponible." - -#~ msgid "Access to restricted port in POST denied." -#~ msgstr "Acceso denegado a puerto restringido en POST." - -#~ msgid "" -#~ "The required content size information was not provided for a POST " -#~ "operation." -#~ msgstr "" -#~ "No se ha proporcionado la información necesaria sobre el tamaño del " -#~ "contenido para una operación POST." - -#~ msgid "" -#~ "Unknown error code %1\n" -#~ "%2\n" -#~ "Please send a full bug report at http://bugs.kde.org." -#~ msgstr "" -#~ "Código de error %1 desconocido\n" -#~ "%2\n" -#~ "Por favor, envíe un informe de fallos completo en http://bugs.kde.org." - -#~ msgid "Opening connections is not supported with the protocol %1." -#~ msgstr "La apertura de conexiones con el protocolo %1 no está permitida." - -#~ msgid "Closing connections is not supported with the protocol %1." -#~ msgstr "El cierre de conexiones con el protocolo %1 no está permitido." - -#~ msgid "Accessing files is not supported with the protocol %1." -#~ msgstr "El acceso de archivos con el protocolo %1 no está permitido." - -#~ msgid "Writing to %1 is not supported." -#~ msgstr "La escritura en %1 no está permitida." - -#~ msgid "There are no special actions available for protocol %1." -#~ msgstr "No hay acciones especiales disponibles para el protocolo %1." - -#~ msgid "Listing folders is not supported for protocol %1." -#~ msgstr "El listado de carpetas con el protocolo %1 no está permitido." - -#~ msgid "Retrieving data from %1 is not supported." -#~ msgstr "La descarga de datos desde %1 no está permitida." - -#~ msgid "Retrieving mime type information from %1 is not supported." -#~ msgstr "" -#~ "La recuperación de información de tipos MIME desde %1 no está permitida." - -#~ msgid "Renaming or moving files within %1 is not supported." -#~ msgstr "El cambio de nombres de archivos dentro de %1 no está permitido." - -#~ msgid "Creating symlinks is not supported with protocol %1." -#~ msgstr "" -#~ "La creación de enlaces simbólicos con el protocolo %1 no está permitida." - -#~ msgid "Copying files within %1 is not supported." -#~ msgstr "La copia de archivos en %1 no está permitida." - -#~ msgid "Deleting files from %1 is not supported." -#~ msgstr "La eliminación de archivos de %1 no está permitida." - -#~ msgid "Creating folders is not supported with protocol %1." -#~ msgstr "La creación de carpetas con el protocolo %1 no está permitida." - -#~ msgid "Changing the attributes of files is not supported with protocol %1." -#~ msgstr "" -#~ "La modificación de los atributos de archivos con el protocolo %1 no está " -#~ "permitida." - -#~ msgid "Changing the ownership of files is not supported with protocol %1." -#~ msgstr "" -#~ "La modificación del propietario de archivos con el protocolo %1 no está " -#~ "permitida." - -#~ msgid "Using sub-URLs with %1 is not supported." -#~ msgstr "El uso de subURL con %1 no está permitido." - -#~ msgid "Multiple get is not supported with protocol %1." -#~ msgstr "La descarga múltiple con el protocolo %1 no está permitida." - -#~ msgid "Opening files is not supported with protocol %1." -#~ msgstr "No se permite la apertura de archivos con el protocolo %1." - -#~ msgid "Protocol %1 does not support action %2." -#~ msgstr "El protocolo %1 no admite la acción %2." - -#~ msgctxt "@info url" -#~ msgid "(unknown)" -#~ msgstr "(desconocido)" - -#~ msgctxt "@info %1 error name, %2 description" -#~ msgid "

%1

%2

" -#~ msgstr "

%1

%2

" - -#~ msgid "Technical reason: " -#~ msgstr "Razón técnica: " - -#~ msgid "Details of the request:" -#~ msgstr "Detalles de la solicitud:" - -#~ msgid "
  • URL: %1
  • " -#~ msgstr "
  • URL: %1
  • " - -#~ msgid "
  • Protocol: %1
  • " -#~ msgstr "
  • Protocolo: %1
  • " - -#~ msgid "
  • Date and time: %1
  • " -#~ msgstr "
  • Fecha y hora: %1
  • " - -#~ msgid "
  • Additional information: %1
  • " -#~ msgstr "
  • Información adicional: %1
  • " - -#~ msgid "Possible causes:" -#~ msgstr "Causas posibles:" - -#~ msgid "Possible solutions:" -#~ msgstr "Soluciones posibles:" - -#~ msgctxt "@info protocol" -#~ msgid "(unknown)" -#~ msgstr "(desconocido)" - -#~ msgid "" -#~ "Contact your appropriate computer support system, whether the system " -#~ "administrator, or technical support group for further assistance." -#~ msgstr "" -#~ "Contacte con el responsable del soporte de su equipo, bien sea el " -#~ "administrador del sistema, o el grupo de apoyo técnico, para obtener más " -#~ "ayuda." - -#~ msgid "Contact the administrator of the server for further assistance." -#~ msgstr "Contacte al administrador del servidor para obtener más ayuda." - -#~ msgid "Check your access permissions on this resource." -#~ msgstr "Compruebe sus permisos de acceso a este recurso." - -#~ msgid "" -#~ "Your access permissions may be inadequate to perform the requested " -#~ "operation on this resource." -#~ msgstr "" -#~ "Sus permisos de acceso pueden ser inadecuados para realizar la operación " -#~ "solicitada en este recurso." - -#~ msgid "" -#~ "The file may be in use (and thus locked) by another user or application." -#~ msgstr "" -#~ "El archivo puede que esté siendo usado (y por tanto esté bloqueado) por " -#~ "otro usuario o aplicación." - -#~ msgid "" -#~ "Check to make sure that no other application or user is using the file or " -#~ "has locked the file." -#~ msgstr "" -#~ "Marque para asegurarse de que ninguna otra aplicación o usuario está " -#~ "utilizando el archivo o lo ha bloqueado." - -#~ msgid "Although unlikely, a hardware error may have occurred." -#~ msgstr "Aunque improbable, se ha podido producir un error de hardware." - -#~ msgid "You may have encountered a bug in the program." -#~ msgstr "Puede que haya encontrado un error del programa." - -#~ msgid "" -#~ "This is most likely to be caused by a bug in the program. Please consider " -#~ "submitting a full bug report as detailed below." -#~ msgstr "" -#~ "Lo más probable es que haya sido ocasionado por un error en el programa. " -#~ "Por favor, considere enviar un informe de fallos como se detalla más " -#~ "abajo." - -#~ msgid "" -#~ "Update your software to the latest version. Your distribution should " -#~ "provide tools to update your software." -#~ msgstr "" -#~ "Actualice su software a la última versión. Su distribución debería " -#~ "proporcionarle herramientas para actualizar su software." - -#~ msgid "" -#~ "When all else fails, please consider helping the KDE team or the third " -#~ "party maintainer of this software by submitting a high quality bug " -#~ "report. If the software is provided by a third party, please contact them " -#~ "directly. Otherwise, first look to see if the same bug has been submitted " -#~ "by someone else by searching at the KDE " -#~ "bug reporting website. If not, take note of the details given above, " -#~ "and include them in your bug report, along with as many other details as " -#~ "you think might help." -#~ msgstr "" -#~ "Considere la posibilidad de ayudar al equipo de KDE o al encargado " -#~ "externo de este programa enviando un buen informe de fallos. Si el " -#~ "software es suministrado por un tercero, contacte con él directamente. De " -#~ "lo contrario, empiece comprobando si este mismo fallo ha sido ya " -#~ "informado por alguna otra persona, buscando en el sitio web de informes de fallos de KDE. Si no, tome nota " -#~ "de los detalles nombrados anteriormente, e inclúyalos en su informe de " -#~ "fallos, junto con todos los detalles que piense que podrían ser de ayuda." - -#~ msgid "There may have been a problem with your network connection." -#~ msgstr "Puede que se haya producido un error con su conexión de red." - -#~ msgid "" -#~ "There may have been a problem with your network configuration. If you " -#~ "have been accessing the Internet with no problems recently, this is " -#~ "unlikely." -#~ msgstr "" -#~ "Puede que se haya producido un error con su configuración de red. Si ha " -#~ "estado accediendo a Internet sin problemas recientemente, esto es " -#~ "improbable." - -#~ msgid "" -#~ "There may have been a problem at some point along the network path " -#~ "between the server and this computer." -#~ msgstr "" -#~ "Puede que se haya producido un error en algún punto de la ruta de " -#~ "conexión entre el servidor y su equipo." - -#~ msgid "Try again, either now or at a later time." -#~ msgstr "Inténtelo de nuevo, bien ahora o más tarde." - -#~ msgid "A protocol error or incompatibility may have occurred." -#~ msgstr "Se ha podido producir un error de protocolo o una incompatibilidad." - -#~ msgid "Ensure that the resource exists, and try again." -#~ msgstr "Asegúrese de que existe el recurso, e inténtelo de nuevo." - -#~ msgid "The specified resource may not exist." -#~ msgstr "El recurso especificado puede no existir." - -#~ msgid "You may have incorrectly typed the location." -#~ msgstr "Puede que haya introducido incorrectamente la ubicación." - -#~ msgid "" -#~ "Double-check that you have entered the correct location and try again." -#~ msgstr "" -#~ "Compruebe minuciosamente que ha introducido la ubicación correcta, e " -#~ "inténtelo de nuevo." - -#~ msgid "Check your network connection status." -#~ msgstr "Compruebe el estado de su conexión de red." - -#~ msgid "Cannot Open Resource For Reading" -#~ msgstr "No se puede abrir el recurso para lectura" - -#~ msgid "" -#~ "This means that the contents of the requested file or folder %1 could not be retrieved, as read access could not be obtained." -#~ msgstr "" -#~ "Esto significa que los contenidos del archivo o carpeta solicitada " -#~ "%1 no se pudieron recuperar, porque no se obtuvo acceso " -#~ "de lectura." - -#~ msgid "You may not have permissions to read the file or open the folder." -#~ msgstr "Puede que no tenga permiso para leer el archivo o abrir la carpeta." - -#~ msgid "Cannot Open Resource For Writing" -#~ msgstr "No se puede abrir el recurso para escritura" - -#~ msgid "" -#~ "This means that the file, %1, could not be written to as " -#~ "requested, because access with permission to write could not be obtained." -#~ msgstr "" -#~ "Esto significa que el archivo, %1, no se pudo escribir " -#~ "como se solicitó, porque no se obtuvo acceso con permiso de escritura." - -#~ msgid "Cannot Initiate the %1 Protocol" -#~ msgstr "No se puede iniciar el protocolo %1" - -#~ msgid "Unable to Launch Process" -#~ msgstr "No se puede lanzar el proceso" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol could not be started. This is usually due to technical " -#~ "reasons." -#~ msgstr "" -#~ "No fue posible iniciar el programa en su equipo que proporciona acceso al " -#~ "protocolo %1. Esto se debe normalmente a razones " -#~ "técnicas." - -#~ msgid "" -#~ "The program which provides compatibility with this protocol may not have " -#~ "been updated with your last update of KDE. This can cause the program to " -#~ "be incompatible with the current version and thus not start." -#~ msgstr "" -#~ "El programa que proporciona compatibilidad con este protocolo puede que " -#~ "no haya sido actualizado con su última actualización de KDE. Esto puede " -#~ "que cause que el programa sea incompatible con la versión actual y por " -#~ "tanto que no se inicie." - -#~ msgid "Internal Error" -#~ msgstr "Error interno" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has reported an internal error." -#~ msgstr "" -#~ "El programa de su equipo que proporciona acceso al protocolo %1 ha informado de un error interno." - -#~ msgid "Improperly Formatted URL" -#~ msgstr "Formato incorrecto de URL" - -#~ msgid "" -#~ "The Uniform Resource Locator (URL) that you entered was not properly formatted. The " -#~ "format of a URL is generally as follows:
    protocol://" -#~ "user:password@www.example.org:port/folder/filename.extension?query=value
    " -#~ msgstr "" -#~ "El Uniform Resource Locator (URL) que introdujo no estaba correctamente formado. El " -#~ "formato de un URL es normalmente como sigue:" -#~ "
    protocolo://usuario:contraseña@www.ejemplo.org:puerto/" -#~ "carpeta/archivo.extensión?query=valor
    " - -#~ msgid "Unsupported Protocol %1" -#~ msgstr "Protocolo no permitido %1" - -#~ msgid "" -#~ "The protocol %1 is not supported by the KDE programs " -#~ "currently installed on this computer." -#~ msgstr "" -#~ "El protocolo %1 no está permitido por los programas KDE " -#~ "instalados actualmente en este equipo." - -#~ msgid "The requested protocol may not be supported." -#~ msgstr "Es posible que el protocolo solicitado no esté permitido." - -#~ msgid "" -#~ "The versions of the %1 protocol supported by this computer and the server " -#~ "may be incompatible." -#~ msgstr "" -#~ "Las versiones del protocolo %1 permitidas por este equipo y el servidor " -#~ "pueden ser incompatibles." - -#~ msgid "" -#~ "You may perform a search on the Internet for a KDE program (called a " -#~ "kioslave or ioslave) which supports this protocol. Places to search " -#~ "include http://kde-apps.org/ and http://freshmeat.net/." -#~ msgstr "" -#~ "Puede realizar una búsqueda en Internet de un programa KDE (denominado un " -#~ "kioslave o ioslave) que permita usar este protocolo. Los lugares a buscar " -#~ "incluyen http://kde-apps.org/ y http://freshmeat.net/." - -#~ msgid "URL Does Not Refer to a Resource." -#~ msgstr "La URL no hace referencia a un recurso." - -#~ msgid "Protocol is a Filter Protocol" -#~ msgstr "El protocolo es un protocolo de filtrado" - -#~ msgid "" -#~ "The Uniform Resource Locator (URL) that you entered did not refer to a specific resource." -#~ msgstr "" -#~ "La Uniform Resource Locator (URL) que introdujo no se refería a ningún recurso " -#~ "específico." - -#~ msgid "" -#~ "KDE is able to communicate through a protocol within a protocol; the " -#~ "protocol specified is only for use in such situations, however this is " -#~ "not one of these situations. This is a rare event, and is likely to " -#~ "indicate a programming error." -#~ msgstr "" -#~ "KDE es capaz de comunicarse a través de un protocolo dentro de un " -#~ "protocolo; el protocolo especificado es solo para su uso en esas " -#~ "situaciones, sin embargo, esta no es una de esas situaciones. Esto es un " -#~ "suceso extraño, y es probable que proceda de un error de programación." - -#~ msgid "Unsupported Action: %1" -#~ msgstr "Acción no permitida: %1" - -#~ msgid "" -#~ "The requested action is not supported by the KDE program which is " -#~ "implementing the %1 protocol." -#~ msgstr "" -#~ "La acción solicitada no está permitida por el programa de KDE que " -#~ "implementa el protocolo %1." - -#~ msgid "" -#~ "This error is very much dependent on the KDE program. The additional " -#~ "information should give you more information than is available to the KDE " -#~ "input/output architecture." -#~ msgstr "" -#~ "Este error es muy dependiente del programa de KDE. La información " -#~ "adicional debería darle más datos de los que están disponibles para la " -#~ "arquitectura de entrada/salida de KDE." - -#~ msgid "Attempt to find another way to accomplish the same outcome." -#~ msgstr "Intento de encontrar otro modo de conseguir el mismo resultado." - -#~ msgid "File Expected" -#~ msgstr "Se esperaba un archivo" - -#~ msgid "" -#~ "The request expected a file, however the folder %1 was " -#~ "found instead." -#~ msgstr "" -#~ "La solicitud esperaba un archivo, sin embargo, en su lugar, se encontró " -#~ "la carpeta %1." - -#~ msgid "This may be an error on the server side." -#~ msgstr "Esto puede que sea un error del servidor." - -#~ msgid "Folder Expected" -#~ msgstr "Se esperaba una carpeta" - -#~ msgid "" -#~ "The request expected a folder, however the file %1 was " -#~ "found instead." -#~ msgstr "" -#~ "La solicitud esperaba una carpeta, sin embargo, en su lugar se encontró " -#~ "el archivo %1." - -#~ msgid "File or Folder Does Not Exist" -#~ msgstr "El archivo o carpeta no existe" - -#~ msgid "The specified file or folder %1 does not exist." -#~ msgstr "El archivo o carpeta especificada %1 no existe." - -#~ msgid "" -#~ "The requested file could not be created because a file with the same name " -#~ "already exists." -#~ msgstr "" -#~ "El archivo solicitado no se pudo crear porque ya existe un archivo con el " -#~ "mismo nombre." - -#~ msgid "" -#~ "Try moving the current file out of the way first, and then try again." -#~ msgstr "" -#~ "Intente mover el archivo actual fuera de este sitio, e inténtelo de nuevo." - -#~ msgid "Delete the current file and try again." -#~ msgstr "Borre el archivo actual e inténtelo de nuevo." - -#~ msgid "Choose an alternate filename for the new file." -#~ msgstr "Elija otro nombre para el nuevo archivo." - -#~ msgid "" -#~ "The requested folder could not be created because a folder with the same " -#~ "name already exists." -#~ msgstr "" -#~ "La carpeta solicitada no se pudo crear porque ya existe una carpeta con " -#~ "el mismo nombre." - -#~ msgid "" -#~ "Try moving the current folder out of the way first, and then try again." -#~ msgstr "" -#~ "Intente mover la carpeta actual fuera de este sitio, e inténtelo de nuevo." - -#~ msgid "Delete the current folder and try again." -#~ msgstr "Borre la carpeta actual e inténtelo de nuevo." - -#~ msgid "Choose an alternate name for the new folder." -#~ msgstr "Elija otro nombre para la nueva carpeta." - -#~ msgid "Unknown Host" -#~ msgstr "Máquina desconocida" - -#~ msgid "" -#~ "An unknown host error indicates that the server with the requested name, " -#~ "%1, could not be located on the Internet." -#~ msgstr "" -#~ "Un error desconocido de máquina indica que no se pudo encontrar en " -#~ "Internet el servidor con el nombre solicitado, %1." - -#~ msgid "" -#~ "The name that you typed, %1, may not exist: it may be incorrectly typed." -#~ msgstr "" -#~ "El nombre que usted introdujo, %1, puede que no exista: puede que haya " -#~ "sido incorrectamente escrito." - -#~ msgid "Access Denied" -#~ msgstr "Acceso denegado" - -#~ msgid "Access was denied to the specified resource, %1." -#~ msgstr "Acceso denegado para el recurso %1 especificado." - -#~ msgid "" -#~ "You may have supplied incorrect authentication details or none at all." -#~ msgstr "" -#~ "Puede que haya suministrado detalles de autenticación incorrectos o " -#~ "ningún detalle." - -#~ msgid "" -#~ "Your account may not have permission to access the specified resource." -#~ msgstr "" -#~ "Su cuenta puede que no tenga permiso de escritura para acceder al recurso " -#~ "especificado." - -#~ msgid "" -#~ "Retry the request and ensure your authentication details are entered " -#~ "correctly." -#~ msgstr "" -#~ "Reintente la solicitud y asegúrese que los detalles de su autenticación " -#~ "se introducen correctamente." - -#~ msgid "Write Access Denied" -#~ msgstr "Acceso de escritura denegado" - -#~ msgid "" -#~ "This means that an attempt to write to the file %1 was " -#~ "rejected." -#~ msgstr "" -#~ "Esto significa que un intento de escribir en el archivo %1 fue rechazado." - -#~ msgid "Unable to Enter Folder" -#~ msgstr "No se puede acceder a la carpeta" - -#~ msgid "" -#~ "This means that an attempt to enter (in other words, to open) the " -#~ "requested folder %1 was rejected." -#~ msgstr "" -#~ "Esto significa que un intento de acceder a la carpeta solicitada (en " -#~ "otras palabras, de abrirla) %1 fue rechazado." - -#~ msgid "Folder Listing Unavailable" -#~ msgstr "Listado de la carpeta no disponible" - -#~ msgid "Protocol %1 is not a Filesystem" -#~ msgstr "El protocolo %1 no es un sistema de archivos" - -#~ msgid "" -#~ "This means that a request was made which requires determining the " -#~ "contents of the folder, and the KDE program supporting this protocol is " -#~ "unable to do so." -#~ msgstr "" -#~ "Esto significa que se hizo una solicitud que requiere determinar el " -#~ "contenido de la carpeta, y que el programa de KDE que usa este protocolo " -#~ "es incapaz de hacerlo." - -#~ msgid "Cyclic Link Detected" -#~ msgstr "Enlace cíclico detectado" - -#~ msgid "" -#~ "UNIX environments are commonly able to link a file or folder to a " -#~ "separate name and/or location. KDE detected a link or series of links " -#~ "that results in an infinite loop - i.e. the file was (perhaps in a " -#~ "roundabout way) linked to itself." -#~ msgstr "" -#~ "Los entornos UNIX normalmente son capaces de enlazar un archivo o una " -#~ "carpeta a un nombre diferente o a una ubicación. KDE ha detectado un " -#~ "enlace o una serie de enlaces que da lugar a un bucle infinito - es decir " -#~ "el archivo estaba (de modo rebuscado quizá) enlazado consigo mismo." - -#~ msgid "" -#~ "Delete one part of the loop in order that it does not cause an infinite " -#~ "loop, and try again." -#~ msgstr "" -#~ "Borre una parte del bucle para que no se produzca un bucle infinito e " -#~ "inténtelo de nuevo." - -#~ msgid "Request Aborted By User" -#~ msgstr "Solicitud interrumpida por el usuario" - -#~ msgid "The request was not completed because it was aborted." -#~ msgstr "La solicitud no se completó porque fue interrumpida." - -#~ msgid "Retry the request." -#~ msgstr "Reintentar la solicitud." - -#~ msgid "Cyclic Link Detected During Copy" -#~ msgstr "Enlace cíclico detectado durante la copia" - -#~ msgid "" -#~ "UNIX environments are commonly able to link a file or folder to a " -#~ "separate name and/or location. During the requested copy operation, KDE " -#~ "detected a link or series of links that results in an infinite loop - i." -#~ "e. the file was (perhaps in a roundabout way) linked to itself." -#~ msgstr "" -#~ "Los entornos UNIX normalmente son capaces de enlazar un archivo o una " -#~ "carpeta a un nombre diferente o a una ubicación. Durante la operación de " -#~ "copia solicitada, KDE ha detectado un enlace o una serie de enlaces que " -#~ "da lugar a un bucle infinito - es decir el archivo estaba (de modo " -#~ "rebuscado quizá) enlazado consigo mismo." - -#~ msgid "Could Not Create Network Connection" -#~ msgstr "No se puede crear una conexión de red" - -#~ msgid "Could Not Create Socket" -#~ msgstr "Imposible crear socket" - -#~ msgid "" -#~ "This is a fairly technical error in which a required device for network " -#~ "communications (a socket) could not be created." -#~ msgstr "" -#~ "Este es un error técnico en el que no se pudo crear un dispositivo " -#~ "solicitado para comunicaciones de red (un socket)." - -#~ msgid "" -#~ "The network connection may be incorrectly configured, or the network " -#~ "interface may not be enabled." -#~ msgstr "" -#~ "La conexión de red puede que esté incorrectamente configurada, o que la " -#~ "interfaz de red no esté habilitada." - -#~ msgid "Connection to Server Refused" -#~ msgstr "Conexión al servidor rechazada" - -#~ msgid "" -#~ "The server %1 refused to allow this computer to make a " -#~ "connection." -#~ msgstr "" -#~ "El servidor %1 rechazó permitir que este equipo " -#~ "realizará una conexión." - -#~ msgid "" -#~ "The server, while currently connected to the Internet, may not be " -#~ "configured to allow requests." -#~ msgstr "" -#~ "El servidor, mientras estaba conectado a Internet, puede que no esté " -#~ "configurado para permitir solicitudes." - -#~ msgid "" -#~ "The server, while currently connected to the Internet, may not be running " -#~ "the requested service (%1)." -#~ msgstr "" -#~ "El servidor, aunque está conectado a Internet, puede que no esté " -#~ "ejecutando el servicio solicitado (%1)." - -#~ msgid "" -#~ "A network firewall (a device which restricts Internet requests), either " -#~ "protecting your network or the network of the server, may have " -#~ "intervened, preventing this request." -#~ msgstr "" -#~ "Un cortafuegos de red (un dispositivo que restringe las solicitudes de " -#~ "Internet), bien protegiendo su red o la red del servidor, puede haber " -#~ "intervenido impidiendo esta solicitud." - -#~ msgid "Connection to Server Closed Unexpectedly" -#~ msgstr "Conexión al servidor cerrada inesperadamente" - -#~ msgid "" -#~ "Although a connection was established to %1, the " -#~ "connection was closed at an unexpected point in the communication." -#~ msgstr "" -#~ "Aunque se estableció una conexión a %1, la conexión se " -#~ "cerró en un punto inesperado de la comunicación." - -#~ msgid "" -#~ "A protocol error may have occurred, causing the server to close the " -#~ "connection as a response to the error." -#~ msgstr "" -#~ "Se puede haber producido un error de protocolo, originando que el " -#~ "servidor haya cerrado la conexión como respuesta al error." - -#~ msgid "URL Resource Invalid" -#~ msgstr "Recurso URL no válido" - -#~ msgid "Protocol %1 is not a Filter Protocol" -#~ msgstr "El protocolo %1 no es un protocolo de filtrado" - -#~ msgid "" -#~ "The Uniform Resource Locator (URL) that you entered did not refer to a valid mechanism " -#~ "of accessing the specific resource, %1%2." -#~ msgstr "" -#~ "La Uniform Resource Locator (URL) que introdujo no se refería a ningún mecanismo válido " -#~ "para acceder al recurso %1%2 específico." - -#~ msgid "" -#~ "KDE is able to communicate through a protocol within a protocol. This " -#~ "request specified a protocol be used as such, however this protocol is " -#~ "not capable of such an action. This is a rare event, and is likely to " -#~ "indicate a programming error." -#~ msgstr "" -#~ "KDE es capaz de comunicarse a través de un protocolo dentro de un " -#~ "protocolo. Esta solicitud especificó un protocolo tal, sin embargo, este " -#~ "protocolo no es capaz de realizar dicha acción. Esto es un suceso " -#~ "extraño, y es probable que proceda de un error de programación." - -#~ msgid "Unable to Initialize Input/Output Device" -#~ msgstr "Imposible inicializar dispositivo de entrada/salida" - -#~ msgid "Could Not Mount Device" -#~ msgstr "Imposible montar el dispositivo" - -#~ msgid "" -#~ "The requested device could not be initialized (\"mounted\"). The reported " -#~ "error was: %1" -#~ msgstr "" -#~ "El dispositivo solicitado no se pudo inicializar («montar»). El error " -#~ "emitido fue: %1" - -#~ msgid "" -#~ "The device may not be ready, for example there may be no media in a " -#~ "removable media device (i.e. no CD-ROM in a CD drive), or in the case of " -#~ "a peripheral/portable device, the device may not be correctly connected." -#~ msgstr "" -#~ "El dispositivo puede que no esté listo, por ejemplo que no haya disco en " -#~ "la unidad (p. ej., ningún CD-ROM en una unidad de CD), o en caso de un " -#~ "periférico o dispositivo portátil, el dispositivo puede que no esté " -#~ "conectado correctamente." - -#~ msgid "" -#~ "You may not have permissions to initialize (\"mount\") the device. On " -#~ "UNIX systems, often system administrator privileges are required to " -#~ "initialize a device." -#~ msgstr "" -#~ "Puede que no tenga permisos para inicializar («montar») el dispositivo. " -#~ "En sistemas UNIX es frecuente que se requieran privilegios de " -#~ "administrador del sistema para inicializar un dispositivo." - -#~ msgid "" -#~ "Check that the device is ready; removable drives must contain media, and " -#~ "portable devices must be connected and powered on.; and try again." -#~ msgstr "" -#~ "Compruebe que el dispositivo está listo. Las unidades deben contener el " -#~ "medio correspondiente y los dispositivos portátiles deben estar " -#~ "conectados y encendidos. Inténtelo de nuevo." - -#~ msgid "Unable to Uninitialize Input/Output Device" -#~ msgstr "Imposible desinicializar el dispositivo de entrada/salida" - -#~ msgid "Could Not Unmount Device" -#~ msgstr "Imposible desmontar el dispositivo" - -#~ msgid "" -#~ "The requested device could not be uninitialized (\"unmounted\"). The " -#~ "reported error was: %1" -#~ msgstr "" -#~ "El dispositivo solicitado no se pudo desinicializar («desmontar»). El " -#~ "error emitido fue: %1" - -#~ msgid "" -#~ "The device may be busy, that is, still in use by another application or " -#~ "user. Even such things as having an open browser window on a location on " -#~ "this device may cause the device to remain in use." -#~ msgstr "" -#~ "El dispositivo puede que esté ocupado, es decir, en uso por otra " -#~ "aplicación o usuario. Incluso operaciones como tener un navegador abierto " -#~ "en una ubicación en este dispositivo puede originar que el dispositivo " -#~ "continúe en uso." - -#~ msgid "" -#~ "You may not have permissions to uninitialize (\"unmount\") the device. On " -#~ "UNIX systems, system administrator privileges are often required to " -#~ "uninitialize a device." -#~ msgstr "" -#~ "Puede que no tenga permisos para desinicializar («desmontar») el " -#~ "dispositivo. En sistemas UNIX es frecuente que se requieran privilegios " -#~ "de administrador del sistema para desinicializar un dispositivo." - -#~ msgid "Check that no applications are accessing the device, and try again." -#~ msgstr "" -#~ "Compruebe que ninguna aplicación está accediendo al dispositivo e " -#~ "inténtelo de nuevo." - -#~ msgid "Cannot Read From Resource" -#~ msgstr "Imposible leer desde el recurso" - -#~ msgid "" -#~ "This means that although the resource, %1, was able to " -#~ "be opened, an error occurred while reading the contents of the resource." -#~ msgstr "" -#~ "Esto significa que aunque el recurso %1, fue abierto, se " -#~ "produjo un error al leer los contenidos de él." - -#~ msgid "You may not have permissions to read from the resource." -#~ msgstr "Puede que no tenga permiso de escritura para este recurso." - -#~ msgid "Cannot Write to Resource" -#~ msgstr "Imposible escribir en el recurso" - -#~ msgid "" -#~ "This means that although the resource, %1, was able to " -#~ "be opened, an error occurred while writing to the resource." -#~ msgstr "" -#~ "Esto significa que aunque el recurso %1, fue abierto, se " -#~ "produjo un error al escribir sobre él." - -#~ msgid "You may not have permissions to write to the resource." -#~ msgstr "Puede que no tenga permiso de escritura para este recurso." - -#~ msgid "Could Not Listen for Network Connections" -#~ msgstr "Imposible escuchar conexiones de red" - -#~ msgid "Could Not Bind" -#~ msgstr "No se pudo enlazar" - -#~ msgid "" -#~ "This is a fairly technical error in which a required device for network " -#~ "communications (a socket) could not be established to listen for incoming " -#~ "network connections." -#~ msgstr "" -#~ "Este es un error técnico en el que un dispositivo necesario para la " -#~ "comunicación de red (un socket) no se pudo establecer para escuchar las " -#~ "conexiones de red entrantes." - -#~ msgid "Could Not Listen" -#~ msgstr "No se pudo escuchar" - -#~ msgid "Could Not Accept Network Connection" -#~ msgstr "Imposible aceptar conexión de red" - -#~ msgid "" -#~ "This is a fairly technical error in which an error occurred while " -#~ "attempting to accept an incoming network connection." -#~ msgstr "" -#~ "Este es un error técnico en el que se produjo un error al intentar " -#~ "aceptar una conexión entrante de red." - -#~ msgid "You may not have permissions to accept the connection." -#~ msgstr "Puede que no tenga permiso para aceptar esta conexión." - -#~ msgid "Could Not Login: %1" -#~ msgstr "No se pudo iniciar la sesión: %1" - -#~ msgid "" -#~ "An attempt to login to perform the requested operation was unsuccessful." -#~ msgstr "" -#~ "Un intento de iniciar sesión para realizar la operación solicitada fue " -#~ "infructuoso." - -#~ msgid "Could Not Determine Resource Status" -#~ msgstr "No se pudo determinar el estado del recurso" - -#~ msgid "Could Not Stat Resource" -#~ msgstr "No se pudo determinar el recurso" - -#~ msgid "" -#~ "An attempt to determine information about the status of the resource " -#~ "%1, such as the resource name, type, size, etc., was " -#~ "unsuccessful." -#~ msgstr "" -#~ "Un intento de determinar información acerca del estado del recurso " -#~ "%1, tal como el nombre, tipo, tamaño, etc. fue " -#~ "infructuoso." - -#~ msgid "" -#~ "The specified resource may not have existed or may not be accessible." -#~ msgstr "El recurso especificado puede que no exista o que no sea accesible." - -#~ msgid "Could Not Cancel Listing" -#~ msgstr "No se pudo cancelar el listado" - -#~ msgid "FIXME: Document this" -#~ msgstr "FIXME: Documentar esto" - -#~ msgid "Could Not Create Folder" -#~ msgstr "Imposible crear carpeta" - -#~ msgid "An attempt to create the requested folder failed." -#~ msgstr "Un intento de crear la carpeta solicitada falló." - -#~ msgid "The location where the folder was to be created may not exist." -#~ msgstr "Puede que la ubicación donde se iba a crear la carpeta no exista." - -#~ msgid "Could Not Remove Folder" -#~ msgstr "No se pudo eliminar la carpeta" - -#~ msgid "" -#~ "An attempt to remove the specified folder, %1, failed." -#~ msgstr "" -#~ "Falló el intento de eliminar la carpeta especificada, %1." - -#~ msgid "The specified folder may not exist." -#~ msgstr "La carpeta especificada puede que no exista." - -#~ msgid "The specified folder may not be empty." -#~ msgstr "La carpeta especificada puede que no esté vacía." - -#~ msgid "Ensure that the folder exists and is empty, and try again." -#~ msgstr "" -#~ "Asegúrese de que la carpeta existe y que está vacía, e inténtelo de nuevo." - -#~ msgid "Could Not Resume File Transfer" -#~ msgstr "No se pudo reanudar la transferencia del archivo" - -#~ msgid "" -#~ "The specified request asked that the transfer of file %1 " -#~ "be resumed at a certain point of the transfer. This was not possible." -#~ msgstr "" -#~ "La solicitud especificada requirió que la transferencia del archivo " -#~ "%1 se reanudase en un cierto punto. Esto no fue posible." - -#~ msgid "The protocol, or the server, may not support file resuming." -#~ msgstr "" -#~ "Es posible que el protocolo o el servidor no permitan la reanudación de " -#~ "transferencias de archivos." - -#~ msgid "Retry the request without attempting to resume transfer." -#~ msgstr "Reintentar la solicitud sin intentar reanudar la transferencia." - -#~ msgid "Could Not Rename Resource" -#~ msgstr "Imposible cambiar el nombre del recurso" - -#~ msgid "" -#~ "An attempt to rename the specified resource %1 failed." -#~ msgstr "" -#~ "Falló un intento de cambiar el nombre del recurso %1 " -#~ "especificado." - -#~ msgid "Could Not Alter Permissions of Resource" -#~ msgstr "Imposible cambiar los permisos del recurso" - -#~ msgid "" -#~ "An attempt to alter the permissions on the specified resource %1 failed." -#~ msgstr "" -#~ "Un intento de modificar los permisos del recurso %1 " -#~ "especificado falló." - -#~ msgid "Could Not Change Ownership of Resource" -#~ msgstr "Imposible cambiar el propietario del recurso" - -#~ msgid "" -#~ "An attempt to change the ownership of the specified resource %1 failed." -#~ msgstr "" -#~ "Falló el intento de modificar el propietario del recurso %1 especificado." - -#~ msgid "Could Not Delete Resource" -#~ msgstr "No fue posible borrar el recurso" - -#~ msgid "" -#~ "An attempt to delete the specified resource %1 failed." -#~ msgstr "" -#~ "Un intento de borrar el recurso %1 especificado falló." - -#~ msgid "Unexpected Program Termination" -#~ msgstr "Terminación inesperada del programa" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has unexpectedly terminated." -#~ msgstr "" -#~ "El programa de su equipo que proporciona acceso al protocolo %1 ha terminado inesperadamente." - -#~ msgid "Out of Memory" -#~ msgstr "No queda memoria" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol could not obtain the memory required to continue." -#~ msgstr "" -#~ "El programa en su equipo que proporciona acceso al protocolo %1 no pudo obtener la memoria necesaria para continuar." - -#~ msgid "Unknown Proxy Host" -#~ msgstr "Máquina proxy desconocida" - -#~ msgid "" -#~ "While retrieving information about the specified proxy host, %1, an Unknown Host error was encountered. An unknown host error " -#~ "indicates that the requested name could not be located on the Internet." -#~ msgstr "" -#~ "Mientras se recuperaba información de la máquina proxy especificada, " -#~ "%1, se encontró un error desconocido de máquina. Un " -#~ "error desconocido de máquina indica que el nombre solicitado no se pudo " -#~ "encontrar en Internet." - -#~ msgid "" -#~ "There may have been a problem with your network configuration, " -#~ "specifically your proxy's hostname. If you have been accessing the " -#~ "Internet with no problems recently, this is unlikely." -#~ msgstr "" -#~ "Puede que se haya producido un error con su configuración de red, " -#~ "específicamente con el nombre del proxy. Si ha estado accediendo a " -#~ "Internet sin problemas recientemente, esto es improbable." - -#~ msgid "Double-check your proxy settings and try again." -#~ msgstr "" -#~ "Compruebe minuciosamente las preferencias del proxy e inténtelo de nuevo." - -#~ msgid "Authentication Failed: Method %1 Not Supported" -#~ msgstr "Falló la autenticación: el método %1 no está permitido" - -#~ msgid "" -#~ "Although you may have supplied the correct authentication details, the " -#~ "authentication failed because the method that the server is using is not " -#~ "supported by the KDE program implementing the protocol %1." -#~ msgstr "" -#~ "Aunque puede que haya proporcionado correctamente los detalles de la " -#~ "autenticación, la autenticación falló porque el método que utiliza el " -#~ "servidor no está permitido por el programa de KDE que implementa el " -#~ "protocolo %1." - -#~ msgid "" -#~ "Please file a bug at http://bugs.kde.org/" -#~ " to inform the KDE team of the unsupported authentication method." -#~ msgstr "" -#~ "Por favor, envíe un error a http://bugs." -#~ "kde.org/ para informar al equipo de KDE del método de autenticación " -#~ "no permitido." - -#~ msgid "Request Aborted" -#~ msgstr "Solicitud interrumpida" - -#~ msgid "Internal Error in Server" -#~ msgstr "Error interno en el servidor" - -#~ msgid "" -#~ "The program on the server which provides access to the %1 protocol has reported an internal error: %2." -#~ msgstr "" -#~ "El programa del servidor que proporciona acceso al protocolo %1 ha informado de un error interno: %2." - -#~ msgid "" -#~ "This is most likely to be caused by a bug in the server program. Please " -#~ "consider submitting a full bug report as detailed below." -#~ msgstr "" -#~ "Esto es probable que haya sido ocasionado por un error en el programa del " -#~ "servidor. Por favor, considere enviar un informe de fallos como se " -#~ "detalla más abajo." - -#~ msgid "" -#~ "Contact the administrator of the server to advise them of the problem." -#~ msgstr "" -#~ "Contacte con el administrador del servidor para advertirles del problema." - -#~ msgid "" -#~ "If you know who the authors of the server software are, submit the bug " -#~ "report directly to them." -#~ msgstr "" -#~ "Si conoce a los autores del software del servidor, envíeles un informe de " -#~ "fallos directamente." - -#~ msgid "Timeout Error" -#~ msgstr "Error de tiempo límite" - -#~ msgid "" -#~ "Although contact was made with the server, a response was not received " -#~ "within the amount of time allocated for the request as follows:" -#~ "
    • Timeout for establishing a connection: %1 seconds
    • Timeout " -#~ "for receiving a response: %2 seconds
    • Timeout for accessing proxy " -#~ "servers: %3 seconds
    Please note that you can alter these timeout " -#~ "settings in the KDE System Settings, by selecting Network Settings -> " -#~ "Connection Preferences." -#~ msgstr "" -#~ "Aunque se contactó con el servidor, no se recibió respuesta en el " -#~ "intervalo de tiempo asignado para la solicitud:
    • Tiempo límite " -#~ "para establecer una conexión: %1 segundos
    • Límite para recibir una " -#~ "respuesta: %2 segundos
    • Tiempo límite para acceder a servidores " -#~ "proxy: %3 segundos
    Tenga en cuenta que puede modificar estos " -#~ "valores en las «Preferencias del sistema» de KDE, seleccionando " -#~ "Preferencias de red -> Preferencias de conexión." - -#~ msgid "The server was too busy responding to other requests to respond." -#~ msgstr "" -#~ "El servidor estaba demasiado ocupado atendiendo otras peticiones para " -#~ "responder." - -#~ msgid "Unknown Error" -#~ msgstr "Error desconocido" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has reported an unknown error: %2." -#~ msgstr "" -#~ "El programa de su equipo que proporciona acceso al protocolo %1 ha informado de un error interno: %2." - -#~ msgid "Unknown Interruption" -#~ msgstr "Interrupción desconocida" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has reported an interruption of an unknown type: %2." -#~ msgstr "" -#~ "El programa de su equipo que proporciona acceso al protocolo %1 ha informado de una interrupción de tipo desconocido: %2." - -#~ msgid "Could Not Delete Original File" -#~ msgstr "No fue posible borrar el archivo original" - -#~ msgid "" -#~ "The requested operation required the deleting of the original file, most " -#~ "likely at the end of a file move operation. The original file %1 could not be deleted." -#~ msgstr "" -#~ "La operación solicitada requirió la eliminación del archivo original, " -#~ "probablemente al final de una operación de cambio de nombre del archivo. " -#~ "El archivo original %1 no se pudo borrar." - -#~ msgid "Could Not Delete Temporary File" -#~ msgstr "No fue posible borrar el archivo temporal" - -#~ msgid "" -#~ "The requested operation required the creation of a temporary file in " -#~ "which to save the new file while being downloaded. This temporary file " -#~ "%1 could not be deleted." -#~ msgstr "" -#~ "La operación solicitada requirió la creación de un archivo temporal donde " -#~ "guardar el nuevo archivo durante la descarga. Este archivo temporal " -#~ "%1 no se pudo borrar." - -#~ msgid "Could Not Rename Original File" -#~ msgstr "No se pudo cambiar el nombre del archivo original" - -#~ msgid "" -#~ "The requested operation required the renaming of the original file " -#~ "%1, however it could not be renamed." -#~ msgstr "" -#~ "La operación solicitada requirió el cambio de nombre del archivo original " -#~ "%1, sin embargo, no se pudo cambiar de nombre." - -#~ msgid "Could Not Rename Temporary File" -#~ msgstr "No se pudo cambiar el nombre del archivo temporal" - -#~ msgid "" -#~ "The requested operation required the creation of a temporary file " -#~ "%1, however it could not be created." -#~ msgstr "" -#~ "La operación solicitada requería la creación de un archivo temporal " -#~ "%1, sin embargo, no se pudo crear." - -#~ msgid "Could Not Create Link" -#~ msgstr "No se pudo crear el enlace" - -#~ msgid "Could Not Create Symbolic Link" -#~ msgstr "No se pudo crear el enlace simbólico" - -#~ msgid "The requested symbolic link %1 could not be created." -#~ msgstr "El enlace simbólico solicitado %1 no se pudo crear." - -#~ msgid "No Content" -#~ msgstr "Sin contenido" - -#~ msgid "Disk Full" -#~ msgstr "Disco lleno" - -#~ msgid "" -#~ "The requested file %1 could not be written to as there " -#~ "is inadequate disk space." -#~ msgstr "" -#~ "No se pudo escribir sobre el archivo solicitado %1 por " -#~ "falta de espacio en el disco." - -#~ msgid "" -#~ "Free up enough disk space by 1) deleting unwanted and temporary files; 2) " -#~ "archiving files to removable media storage such as CD-Recordable discs; " -#~ "or 3) obtain more storage capacity." -#~ msgstr "" -#~ "Libere suficiente espacio en el disco 1) eliminando archivos temporales o " -#~ "no deseados; 2) archivando los archivos en medios de almacenamiento como " -#~ "discos CD-regrabables o 3) consiga más capacidad de almacenamiento." - -#~ msgid "Source and Destination Files Identical" -#~ msgstr "Los archivos de origen y destino son idénticos" - -#~ msgid "" -#~ "The operation could not be completed because the source and destination " -#~ "files are the same file." -#~ msgstr "" -#~ "La operación no se completó porque el origen y el destino son el mismo " -#~ "archivo." - -#~ msgid "Choose a different filename for the destination file." -#~ msgstr "Elija otro nombre para el archivo de destino." - -#~ msgid "Undocumented Error" -#~ msgstr "Error sin documentar" - -#~ msgctxt "@title job" -#~ msgid "Moving" -#~ msgstr "Moviendo" - -#~ msgctxt "@title job" -#~ msgid "Copying" -#~ msgstr "Copiando" - -#~ msgctxt "@title job" -#~ msgid "Creating directory" -#~ msgstr "Creando carpeta" - -#~ msgctxt "@title job" -#~ msgid "Deleting" -#~ msgstr "Borrando" - -#~ msgctxt "@title job" -#~ msgid "Examining" -#~ msgstr "Examinando" - -#~ msgctxt "@title job" -#~ msgid "Transferring" -#~ msgstr "Transfiriendo" - -#~ msgctxt "@title job" -#~ msgid "Mounting" -#~ msgstr "Montando" - -#~ msgid "Device" -#~ msgstr "Dispositivo" - -#~ msgid "Mountpoint" -#~ msgstr "Punto de montaje" - -#~ msgctxt "@title job" -#~ msgid "Unmounting" -#~ msgstr "Desmontando" - -#~ msgctxt "@info" -#~ msgid "" -#~ "Do you want to permanently delete all items from Trash? This action " -#~ "cannot be undone." -#~ msgstr "" -#~ "¿Desea borrar permanentemente todos los elementos de la Papelera? Esta " -#~ "acción no se puede deshacer." - -#~ msgid "Do you really want to move this item to the trash?" -#~ msgid_plural "Do you really want to move these %1 items to the trash?" -#~ msgstr[0] "¿Desea realmente mover este elemento a la papelera?" -#~ msgstr[1] "¿Desea realmente mover estos %1 elementos a la papelera?" - -#~ msgctxt "Verb" -#~ msgid "&Trash" -#~ msgstr "&Tirar a la papelera" - -#~ msgid "The peer SSL certificate chain appears to be corrupt." -#~ msgstr "Parece que la cadena de certificados SSL del par está dañada." - -#~ msgid "SSL" -#~ msgstr "SSL" - -#~ msgid "Updating System Configuration" -#~ msgstr "Actualizando la configuración del sistema" - -#~ msgid "Updating system configuration." -#~ msgstr "Actualizando la configuración del sistema." - -#~ msgid "No service implementing %1" -#~ msgstr "Ningún servicio implementa %1" - -#~ msgid "The desktop entry file %1 has no Type=... entry." -#~ msgstr "El archivo de entradas del escritorio %1 no tiene entrada Type=..." - -#~ msgid "" -#~ "The desktop entry of type\n" -#~ "%1\n" -#~ "is unknown." -#~ msgstr "" -#~ "La entrada del escritorio de tipo\n" -#~ "%1\n" -#~ "es desconocida." - -#~ msgid "" -#~ "The desktop entry file\n" -#~ "%1\n" -#~ "is of type FSDevice but has no Dev=... entry." -#~ msgstr "" -#~ "El archivo de entradas del escritorio\n" -#~ "%1\n" -#~ "es del tipo «FSDevice», pero no tiene entrada Dev=..." - -#~ msgid "" -#~ "The desktop entry file\n" -#~ "%1\n" -#~ "is of type Link but has no URL=... entry." -#~ msgstr "" -#~ "El archivo de entradas del escritorio\n" -#~ "%1\n" -#~ "es del tipo «Link», pero no tiene entrada URL=..." - -#~ msgid "Mount" -#~ msgstr "Montar" - -#~ msgid "Eject" -#~ msgstr "Expulsar" - -#~ msgid "Unmount" -#~ msgstr "Desmontar" - -#~ msgid "" -#~ "Malformed URL\n" -#~ "%1" -#~ msgstr "" -#~ "Formato de URL erróneo\n" -#~ "%1" - -#~ msgid "" -#~ "URL cannot be listed\n" -#~ "%1" -#~ msgstr "" -#~ "No se puede listar la URL\n" -#~ "%1" - -#~ msgctxt "@title:column" -#~ msgid "Name" -#~ msgstr "Nombre" - -#~ msgctxt "@title:column" -#~ msgid "Size" -#~ msgstr "Tamaño" - -#~ msgctxt "@title:column" -#~ msgid "Date" -#~ msgstr "Fecha" - -#~ msgctxt "@title:column" -#~ msgid "Permissions" -#~ msgstr "Permisos" - -#~ msgctxt "@title:column" -#~ msgid "Owner" -#~ msgstr "Propietario" - -#~ msgctxt "@title:column" -#~ msgid "Group" -#~ msgstr "Grupo" - -#~ msgctxt "@title:column" -#~ msgid "Type" -#~ msgstr "Tipo" - -#~ msgid "Default" -#~ msgstr "Predeterminado" - -#~ msgid "(Symbolic Link to %1)" -#~ msgstr "(Enlace simbólico a %1)" - -#~ msgid "(%1, Link to %2)" -#~ msgstr "(%1, enlace a %2)" - -#~ msgid " (Points to %1)" -#~ msgstr " (Apunta a %1)" - -#~ msgid "Link to %1 (%2)" -#~ msgstr "Enlace a %1 (%2)" - -#~ msgid "Owner:" -#~ msgstr "Propietario:" - -#~ msgid "Permissions:" -#~ msgstr "Permisos:" - -#~ msgctxt "@title:menu" -#~ msgid "&Actions" -#~ msgstr "&Acciones" - -#~ msgid "&Open with %1" -#~ msgstr "&Abrir con %1" - -#~ msgctxt "@title:menu" -#~ msgid "&Open With" -#~ msgstr "&Abrir con" - -#~ msgctxt "@action:inmenu Open With" -#~ msgid "&Other..." -#~ msgstr "&Otros..." - -#~ msgctxt "@title:menu" -#~ msgid "&Open With..." -#~ msgstr "&Abrir con..." - -#~ msgid "Open &with %1" -#~ msgstr "A&brir con %1" - -#~ msgctxt "@item:inmenu Open With, %1 is application name" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "Items in a folder" -#~ msgid "1 item" -#~ msgid_plural "%1 items" -#~ msgstr[0] "1 elemento" -#~ msgstr[1] "%1 elementos" - -#~ msgctxt "@info mimetype" -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgid "All Pictures" -#~ msgstr "Todas las imágenes" - -#~ msgid "Mime Type" -#~ msgstr "Tipo MIME" - -#~ msgid "Comment" -#~ msgstr "Comentario" - -#~ msgid "Patterns" -#~ msgstr "Patrones" - -#~ msgid "&Edit..." -#~ msgstr "&Editar..." - -#~ msgid "Click this button to display the familiar KDE mime type editor." -#~ msgstr "Pulse este botón para mostrar el editor de tipos MIME de KDE." - -#~ msgid "" -#~ "Unable to enter %1.\n" -#~ "You do not have access rights to this location." -#~ msgstr "" -#~ "Imposible acceder a %1.\n" -#~ "No tiene permisos de acceso a esta ubicación." - -#~ msgid "" -#~ "The file %1 is an executable program. For safety it will not " -#~ "be started." -#~ msgstr "" -#~ "El archivo %1 es un programa ejecutable. Por razones de " -#~ "seguridad no será iniciado." - -#~ msgid "You do not have permission to run %1." -#~ msgstr "No tiene permiso para ejecutar %1." - -#~ msgid "You are not authorized to select an application to open this file." -#~ msgstr "" -#~ "No está autorizado a seleccionar una aplicación para abrir este archivo." - -#~ msgid "Open with:" -#~ msgstr "Abrir con:" - -#~ msgid "You are not authorized to execute this file." -#~ msgstr "No dispone de autorización para ejecutar este archivo." - -#~ msgid "Launching %1" -#~ msgstr "Lanzando %1" - -#~ msgid "Error processing Exec field in %1" -#~ msgstr "Error al procesar el campo «Exec» en %1" - -#~ msgid "You are not authorized to execute this service." -#~ msgstr "No dispone de autorización para ejecutar este servicio." - -#~ msgctxt "Warning about executing unknown .desktop file" -#~ msgid "Warning" -#~ msgstr "Advertencia" - -#~ msgctxt "program name follows in a line edit below" -#~ msgid "This will start the program:" -#~ msgstr "Esto iniciará el programa:" - -#~ msgid "If you do not trust this program, click Cancel" -#~ msgstr "Si no confía en este programa, pulse «Cancelar»" - -#~ msgid "Unable to make the service %1 executable, aborting execution" -#~ msgstr "El servicio %1 no se puede hacer ejecutable; cancelando ejecución" - -#~ msgid "" -#~ "Unable to run the command specified. The file or folder %1 " -#~ "does not exist." -#~ msgstr "" -#~ "No se puede ejecutar la orden indicada. El archivo o carpeta %1 no existe." - -#~ msgid "Could not find the program '%1'" -#~ msgstr "No se pudo encontrar el programa «%1»" - -#~ msgid "Acquire Image" -#~ msgstr "Adquirir imagen" - -#~ msgid "OCR Image" -#~ msgstr "Imagen OCR" - -#~ msgid "The desktop is offline" -#~ msgstr "El escritorio está desconectado" - -#~ msgid "File '%1' is not readable" -#~ msgstr "El archivo «%1» no es legible" - -#~ msgid "ERROR: Unknown protocol '%1'" -#~ msgstr "ERROR: Protocolo desconocido «%1»" - -#~ msgid "Authorization Dialog" -#~ msgstr "Diálogo de autorización" - -#~ msgid "Filename for clipboard content:" -#~ msgstr "Nombre de archivo para el contenido del portapapeles:" - -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgid "" -#~ "The clipboard has changed since you used 'paste': the chosen data format " -#~ "is no longer applicable. Please copy again what you wanted to paste." -#~ msgstr "" -#~ "El portapapeles ha cambiado desde que usó «pegar»: el formato de datos " -#~ "elegido ya no es aplicable. Copie de nuevo lo que deseaba pegar." - -#~ msgid "The clipboard is empty" -#~ msgstr "El portapapeles está vacío" - -#~ msgid "&Paste File" -#~ msgid_plural "&Paste %1 Files" -#~ msgstr[0] "&Pegar archivo" -#~ msgstr[1] "&Pegar %1 archivos" - -#~ msgid "&Paste URL" -#~ msgid_plural "&Paste %1 URLs" -#~ msgstr[0] "&Pegar URL" -#~ msgstr[1] "&Pegar %1 URL" - -#~ msgid "&Paste Clipboard Contents" -#~ msgstr "&Pegar el contenido del portapapeles" - -#~ msgid "Data format:" -#~ msgstr "Formato de los datos:" - -#~ msgid "Appl&y to All" -#~ msgstr "A&plicar a todo" - -#~ msgid "" -#~ "When this is checked the button pressed will be applied to all subsequent " -#~ "folder conflicts for the remainder of the current job.\n" -#~ "Unless you press Skip you will still be prompted in case of a conflict " -#~ "with an existing file in the directory." -#~ msgstr "" -#~ "Cuando está marcado, el botón pulsado se aplicará a todos los conflictos " -#~ "de carpetas posteriores para el resto de la tarea actual.\n" -#~ "Si no pulsa «Omitir» se le seguirá preguntando en caso de conflicto con " -#~ "algún archivo existente en el directorio." - -#~ msgid "" -#~ "When this is checked the button pressed will be applied to all subsequent " -#~ "conflicts for the remainder of the current job." -#~ msgstr "" -#~ "Cuando está marcado, el botón pulsado se aplicará a todos los conflictos " -#~ "posteriores para el resto de la tarea actual." - -#~ msgid "&Rename" -#~ msgstr "Cambia&r de nombre" - -#~ msgid "Suggest New &Name" -#~ msgstr "Sugerir nuevo &nombre" - -#~ msgid "&Skip" -#~ msgstr "O&mitir" - -#~ msgid "Do not copy or move this folder, skip to the next item instead" -#~ msgstr "No copiar ni mover esta carpeta, saltar al elemento siguiente" - -#~ msgid "Do not copy or move this file, skip to the next item instead" -#~ msgstr "No copiar ni mover este archivo, saltar al elemento siguiente" - -#~ msgctxt "Write files into an existing folder" -#~ msgid "&Write Into" -#~ msgstr "&Escribir en" - -#~ msgid "&Overwrite" -#~ msgstr "S&obrescribir" - -#~ msgid "" -#~ "Files and folders will be copied into the existing directory, alongside " -#~ "its existing contents.\n" -#~ "You will be prompted again in case of a conflict with an existing file in " -#~ "the directory." -#~ msgstr "" -#~ "Los archivos y las carpetas se copiarán en el directorio existente, así " -#~ "como sus contenidos.\n" -#~ "Se le preguntará de nuevo si hay algún conflicto con algún archivo " -#~ "existente 
en el directorio." - -#~ msgid "&Resume" -#~ msgstr "&Reanudar" - -#~ msgid "" -#~ "This action would overwrite '%1' with itself.\n" -#~ "Please enter a new file name:" -#~ msgstr "" -#~ "Esta acción sobrescribiría «%1» consigo mismo.\n" -#~ "Introduzca un nuevo nombre de archivo:" - -#~ msgid "C&ontinue" -#~ msgstr "C&ontinuar" - -#~ msgid "This action will overwrite the destination." -#~ msgstr "Esta acción sobrescribiría el destino." - -#~ msgid "Source" -#~ msgstr "Origen" - -#~ msgid "Destination" -#~ msgstr "Destino" - -#~ msgid "Warning, the destination is more recent." -#~ msgstr "Advertencia: el destino es más reciente." - -#~ msgid "An older item named '%1' already exists." -#~ msgstr "Ya existe un elemento más antiguo llamado «%1»." - -#~ msgid "A similar file named '%1' already exists." -#~ msgstr "Ya existe un archivo similar llamado «%1»." - -#~ msgid "A more recent item named '%1' already exists." -#~ msgstr "Ya existe un elemento más reciente llamado «%1»." - -#~ msgid "Rename:" -#~ msgstr "Cambiar el nombre:" - -#~ msgid "Information" -#~ msgstr "Información" - -#~ msgid "Skip" -#~ msgstr "Omitir" - -#~ msgid "AutoSkip" -#~ msgstr "Omitir automáticamente" - -#~ msgid "Unknown protocol '%1'." -#~ msgstr "Protocolo desconocido «%1»." - -#~ msgid "Can not find io-slave for protocol '%1'." -#~ msgstr "No se pudo encontrar esclavo de E/S para el protocolo «%1»." - -#~ msgid "Cannot talk to klauncher: %1" -#~ msgstr "No se puede dialogar con klauncher: %1" - -#~ msgid "" -#~ "Unable to create io-slave:\n" -#~ "klauncher said: %1" -#~ msgstr "" -#~ "Imposible crear esclavo de E/S:\n" -#~ "Klauncher devolvió: %1" - -#~ msgid "&Yes" -#~ msgstr "&Sí" - -#~ msgid "&No" -#~ msgstr "&No" - -#~ msgid "&Details" -#~ msgstr "&Detalles" - -#~ msgid "&Forever" -#~ msgstr "&Para siempre" - -#~ msgid "Co&ntinue" -#~ msgstr "Co&ntinuar" - -#~ msgid "&Current Session only" -#~ msgstr "Solo en la sesión a&ctual" - -#~ msgid "" -#~ "You are about to leave secure mode. Transmissions will no longer be " -#~ "encrypted.\n" -#~ "This means that a third party could observe your data in transit." -#~ msgstr "" -#~ "Está a punto de abandonar el modo seguro. Las transmisiones dejarán de " -#~ "estar cifradas.\n" -#~ "Esto significa que una tercera persona podría observar sus datos durante " -#~ "la transferencia." - -#~ msgid "Security Information" -#~ msgstr "Información de seguridad" - -#~ msgid "C&ontinue Loading" -#~ msgstr "C&ontinuar la carga" - -#~ msgctxt "%1 is a host name" -#~ msgid "%1: SSL negotiation failed" -#~ msgstr "%1: Falló la negociación SSL" - -#~ msgid "" -#~ "You are about to enter secure mode. All transmissions will be encrypted " -#~ "unless otherwise noted.\n" -#~ "This means that no third party will be able to easily observe your data " -#~ "in transit." -#~ msgstr "" -#~ "Usted está a punto de entrar en modo seguro. Todas las transmisiones " -#~ "serán cifradas a menos que se indique lo contrario.\n" -#~ "Esto significa que una tercera persona no podrá observar fácilmente sus " -#~ "datos durante la transferencia." - -#~ msgid "Display SSL &Information" -#~ msgstr "Mostrar la &información SSL" - -#~ msgid "C&onnect" -#~ msgstr "C&onectar" - -#~ msgid "Enter the certificate password:" -#~ msgstr "Introduzca la contraseña del certificado:" - -#~ msgid "SSL Certificate Password" -#~ msgstr "Contraseña del certificado SSL" - -#~ msgid "Unable to open the certificate. Try a new password?" -#~ msgstr "" -#~ "No se pudo abrir el certificado. ¿Desea intentar una nueva contraseña?" - -#~ msgid "The procedure to set the client certificate for the session failed." -#~ msgstr "" -#~ "El procedimiento para establecer el certificado del cliente para la " -#~ "sesión falló." - -#~ msgid "" -#~ "The server failed the authenticity check (%1).\n" -#~ "\n" -#~ msgstr "" -#~ "El servidor no ha pasado la prueba de autenticación (%1).\n" -#~ "\n" - -#~ msgid "Server Authentication" -#~ msgstr "Autenticación del servidor" - -#~ msgid "" -#~ "Would you like to accept this certificate forever without being prompted?" -#~ msgstr "¿Desea aceptar este certificado para siempre sin ser preguntado?" - -#~ msgid "" -#~ "You have indicated that you wish to accept this certificate, but it is " -#~ "not issued to the server who is presenting it. Do you wish to continue " -#~ "loading?" -#~ msgstr "" -#~ "Ha indicado que desea aceptar este certificado, pero no está expedido al " -#~ "servidor que lo presenta. ¿Desea continuar la carga?" - -#~ msgid "" -#~ "SSL certificate is being rejected as requested. You can disable this in " -#~ "the KDE System Settings." -#~ msgstr "" -#~ "El certificado SSL ha sido rechazado tal y como se solicitó. Puede " -#~ "inhabilitar esto en las «Preferencias del sistema» de KDE." - -#~ msgid "Common name:" -#~ msgstr "Nombre común:" - -#~ msgid "Acme Co." -#~ msgstr "Acme Co." - -#~ msgid "Organization:" -#~ msgstr "Organización:" - -#~ msgid "Acme Sundry Products Company" -#~ msgstr "Compañía de productos varios Acme" - -#~ msgid "Organizational unit:" -#~ msgstr "Unidad organizativa:" - -#~ msgid "Fraud Department" -#~ msgstr "Departamento de fraudes" - -#~ msgid "Country:" -#~ msgstr "País:" - -#~ msgid "Canada" -#~ msgstr "Canadá" - -#~ msgid "State:" -#~ msgstr "Estado:" - -#~ msgid "Quebec" -#~ msgstr "Quebec" - -#~ msgid "City:" -#~ msgstr "Ciudad:" - -#~ msgid "Lakeridge Meadows" -#~ msgstr "Lakeridge Meadows" - -#~ msgid "Organization / Common Name" -#~ msgstr "Organización / nombre común" - -#~ msgid "Organizational Unit" -#~ msgstr "Unidad organizativa" - -#~ msgid "Display..." -#~ msgstr "Mostrar..." - -#~ msgid "Disable" -#~ msgstr "Desactivar" - -#~ msgid "Enable" -#~ msgstr "Activar" - -#~ msgid "System certificates" -#~ msgstr "Certificados del sistema" - -#~ msgid "User-added certificates" -#~ msgstr "Certificados añadidos por el usuario" - -#~ msgid "Pick Certificates" -#~ msgstr "Elegir certificados" - -#~ msgid "Subject Information" -#~ msgstr "Información del asunto" - -#~ msgid "Issuer Information" -#~ msgstr "Información del emisor" - -#~ msgid "Other" -#~ msgstr "Otros" - -#~ msgid "Validity period" -#~ msgstr "Período de validez" - -#~ msgid "Serial number" -#~ msgstr "Número de serie" - -#~ msgid "MD5 digest" -#~ msgstr "Compendio MD5" - -#~ msgid "SHA1 digest" -#~ msgstr "Compendio SHA1" - -#~ msgctxt "%1 is the effective date of the certificate, %2 is the expiry date" -#~ msgid "%1 to %2" -#~ msgstr "%1 hasta %2" - -#~ msgid "SSL Configuration Module" -#~ msgstr "Módulo de configuración SSL" - -#~ msgid "Copyright 2010 Andreas Hartmetz" -#~ msgstr "Copyright 2010 Andreas Hartmetz" - -#~ msgid "Andreas Hartmetz" -#~ msgstr "Andreas Hartmetz" - -#~ msgid "SSL Signers" -#~ msgstr "Firmantes SSL" - -#~ msgid "" -#~ "You have indicated that you wish to obtain or purchase a secure " -#~ "certificate. This wizard is intended to guide you through the procedure. " -#~ "You may cancel at any time, and this will abort the transaction." -#~ msgstr "" -#~ "Ha indicado que desea obtener o comprar un certificado de seguridad. Este " -#~ "asistente intentará guiarle a lo largo del proceso. Puede cancelar la " -#~ "operación en cualquier momento, y se interrumpirá la transacción." - -#~ msgid "" -#~ "You must now provide a password for the certificate request. Please " -#~ "choose a very secure password as this will be used to encrypt your " -#~ "private key." -#~ msgstr "" -#~ "Debe proporcionar una contraseña para la petición del certificado. Elija " -#~ "una contraseña muy segura, ya que se empleará para cifrar su clave " -#~ "privada." - -#~ msgid "&Repeat password:" -#~ msgstr "&Repita la contraseña:" - -#~ msgid "&Choose password:" -#~ msgstr "&Elija la contraseña:" - -#~ msgid "Certificate" -#~ msgstr "Certificado" - -#~ msgid "Save selection for this host." -#~ msgstr "Guardar selección para esta máquina." - -#~ msgid "Send certificate" -#~ msgstr "Enviar certificado" - -#~ msgid "Do not send a certificate" -#~ msgstr "No enviar un certificado" - -#~ msgid "KDE SSL Certificate Dialog" -#~ msgstr "Diálogo de certificado SSL de KDE" - -#~ msgid "" -#~ "The server %1 requests a certificate.

    Select a " -#~ "certificate to use from the list below:" -#~ msgstr "" -#~ "El servidor %1 solicita un certificado.

    Seleccione un " -#~ "certificado a usar de la lista inferior:" - -#~ msgid "Signature Algorithm: " -#~ msgstr "Algoritmo de firma: " - -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgid "Signature Contents:" -#~ msgstr "Contenidos de la firma:" - -#~ msgctxt "Unknown" -#~ msgid "Unknown key algorithm" -#~ msgstr "Algoritmo clave desconocido" - -#~ msgid "Key type: RSA (%1 bit)" -#~ msgstr "Tipo de clave: RSA (%1 bit)" - -#~ msgid "Modulus: " -#~ msgstr "Módulo: " - -#~ msgid "Exponent: 0x" -#~ msgstr "Exponente: 0x" - -#~ msgid "Key type: DSA (%1 bit)" -#~ msgstr "Tipo de clave: DSA (%1 bit)" - -#~ msgid "Prime: " -#~ msgstr "Primo: " - -#~ msgid "160 bit prime factor: " -#~ msgstr "factor primo de 160 bits: " - -#~ msgid "Public key: " -#~ msgstr "Clave pública: " - -#~ msgid "The certificate is valid." -#~ msgstr "El certificado es válido." - -#~ msgid "" -#~ "Retrieval of the issuer certificate failed. This means the CA's " -#~ "(Certificate Authority) certificate can not be found." -#~ msgstr "" -#~ "Ha fallado la recuperación del certificado del emisor. Esto significa que " -#~ "no se puede encontrar el certificado de la AC (Autoridad de " -#~ "Certificación)." - -#~ msgid "" -#~ "Retrieval of the CRL (Certificate Revocation List) failed. This means the " -#~ "CA's (Certificate Authority) CRL can not be found." -#~ msgstr "" -#~ "Ha fallado la recuperación de la CRL (Lista de Certificados Revocados). " -#~ "Esto significa que no se puede encontrar la CRL de la AC (Autoridad de " -#~ "Certificación)." - -#~ msgid "" -#~ "The decryption of the certificate's signature failed. This means it could " -#~ "not even be calculated as opposed to just not matching the expected " -#~ "result." -#~ msgstr "" -#~ "El descifrado de la firma de los certificados ha fallado. Esto significa " -#~ "que ni siquiera se puede calcular en contraposición a que no coincida con " -#~ "el resultado esperado." - -#~ msgid "" -#~ "The decryption of the CRL's (Certificate Revocation List) signature " -#~ "failed. This means it could not even be calculated as opposed to just not " -#~ "matching the expected result." -#~ msgstr "" -#~ "El descifrado de la firma del CRL (Lista de Certificados Revocados) ha " -#~ "fallado. Esto significa que ni siquiera se puede calcular en " -#~ "contraposición a que no coincida con el resultado esperado." - -#~ msgid "" -#~ "The decoding of the public key of the issuer failed. This means that the " -#~ "CA's (Certificate Authority) certificate can not be used to verify the " -#~ "certificate you wanted to use." -#~ msgstr "" -#~ "Ha fallado la descodificación de la clave pública del emisor. Esto " -#~ "significa que el certificado de la AC (Autoridad de Certificación) no se " -#~ "puede usar para verificar el certificado que quiere utilizar." - -#~ msgid "" -#~ "The certificate's signature is invalid. This means that the certificate " -#~ "can not be verified." -#~ msgstr "" -#~ "La firma del certificado no es válida. Esto significa que no se puede " -#~ "verificar el certificado." - -#~ msgid "" -#~ "The CRL's (Certificate Revocation List) signature is invalid. This means " -#~ "that the CRL can not be verified." -#~ msgstr "" -#~ "La firma de la CRL (Lista de Certificados Revocados) no es válida. Esto " -#~ "significa que no se puede verificar la CRL." - -#~ msgid "The certificate is not valid, yet." -#~ msgstr "El certificado no es válido (todavía)." - -#~ msgid "The certificate is not valid, any more." -#~ msgstr "El certificado no es válido (nunca más)." - -#~ msgid "The CRL (Certificate Revocation List) is not valid, yet." -#~ msgstr "La CRL (Lista de Certificados Revocados) no es válida (todavía)." - -#~ msgid "The time format of the certificate's 'notBefore' field is invalid." -#~ msgstr "" -#~ "El formato de hora del campo «notBefore» del certificado no es válido." - -#~ msgid "The time format of the certificate's 'notAfter' field is invalid." -#~ msgstr "" -#~ "El formato de hora del campo «notAfter» del certificado no es válido." - -#~ msgid "" -#~ "The time format of the CRL's (Certificate Revocation List) 'lastUpdate' " -#~ "field is invalid." -#~ msgstr "" -#~ "El formato de hora del campo «lastUpdate» de la CRL (Lista de " -#~ "Certificados Revocados) no es válido." - -#~ msgid "" -#~ "The time format of the CRL's (Certificate Revocation List) 'nextUpdate' " -#~ "field is invalid." -#~ msgstr "" -#~ "El formato de hora del campo «nextUpdate» de la CRL (Lista de " -#~ "Certificados Revocados) no es válido." - -#~ msgid "The OpenSSL process ran out of memory." -#~ msgstr "El proceso OpenSSL se ha quedado sin memoria." - -#~ msgid "" -#~ "The certificate is self-signed and not in the list of trusted " -#~ "certificates. If you want to accept this certificate, import it into the " -#~ "list of trusted certificates." -#~ msgstr "" -#~ "El certificado está firmado por sí mismo y no está en la lista de " -#~ "certificados fiables. Si desea aceptar este certificado, impórtelo en la " -#~ "lista de certificados de confianza." - -#~ msgid "" -#~ "The certificate is self-signed. While the trust chain could be built up, " -#~ "the root CA's (Certificate Authority) certificate can not be found." -#~ msgstr "" -#~ "El certificado está firmado por sí mismo. Aunque se puede construir la " -#~ "cadena de confianza, no se puede encontrar el certificado raíz de la AC " -#~ "(Autoridad de Certificación)." - -#~ msgid "" -#~ "The CA's (Certificate Authority) certificate can not be found. Most " -#~ "likely, your trust chain is broken." -#~ msgstr "" -#~ "No se puede encontrar el certificado de la AC (Autoridad de " -#~ "Certificación). Lo más probable es que se haya roto su cadena de " -#~ "confianza." - -#~ msgid "" -#~ "The certificate can not be verified as it is the only certificate in the " -#~ "trust chain and not self-signed. If you self-sign the certificate, make " -#~ "sure to import it into the list of trusted certificates." -#~ msgstr "" -#~ "No se puede verificar el certificado, ya que es el único certificado que " -#~ "contiene la cadena de confianza y no está firmado por sí mismo. Si firma " -#~ "el certificado consigo mismo, asegúrese de importarlo a la lista de " -#~ "certificados de confianza." - -#~ msgid "The certificate chain is longer than the maximum depth specified." -#~ msgstr "" -#~ "La cadena de certificados es mayor que la máxima profundidad permitida." - -#~ msgid "The certificate has been revoked." -#~ msgstr "El certificado ha sido revocado." - -#~ msgid "The certificate's CA (Certificate Authority) is invalid." -#~ msgstr "La AC (Autoridad de Certificación) del certificado no es válida." - -#~ msgid "" -#~ "The length of the trust chain exceeded one of the CA's (Certificate " -#~ "Authority) 'pathlength' parameters, making all subsequent signatures " -#~ "invalid." -#~ msgstr "" -#~ "La longitud de la cadena de confianza ha excedido uno de los parámetros " -#~ "de longitud de ruta de la AC (Autoridad de Certificación), haciendo que " -#~ "el resto de firmas no sean válidas." - -#~ msgid "" -#~ "The certificate has not been signed for the purpose you tried to use it " -#~ "for. This means the CA (Certificate Authority) does not allow this usage." -#~ msgstr "" -#~ "El certificado no ha sido firmado para el propósito por el que pretendía " -#~ "usarlo. Esto significa que la AC (Autoridad de Certificación) no permite " -#~ "este uso." - -#~ msgid "" -#~ "The root CA (Certificate Authority) is not trusted for the purpose you " -#~ "tried to use this certificate for." -#~ msgstr "" -#~ "La AC (Autoridad de Certificación) raíz no es de confianza para el " -#~ "propósito por el que ha intentado usar este certificado." - -#~ msgid "" -#~ "The root CA (Certificate Authority) has been marked to be rejected for " -#~ "the purpose you tried to use it for." -#~ msgstr "" -#~ "La AC (Autoridad de Certificación) raíz ha sido marcada para ser " -#~ "rechazada para el propósito por el que ha intentado usarla." - -#~ msgid "" -#~ "The certificate's CA (Certificate Authority) does not match the CA name " -#~ "of the certificate." -#~ msgstr "" -#~ "La AC (Autoridad de Certificación) del certificado no coincide con el " -#~ "nombre de la AC del certificado." - -#~ msgid "" -#~ "The CA (Certificate Authority) certificate's key ID does not match the " -#~ "key ID in the 'Issuer' section of the certificate you are trying to use." -#~ msgstr "" -#~ "La ID de la clave del certificado de la AC (Autoridad de Certificación) " -#~ "no coincide con la ID de la clave en la sección «Emisor» del certificado " -#~ "que está intentando usar." - -#~ msgid "" -#~ "The CA (Certificate Authority) certificate's key ID and name do not match " -#~ "the key ID and name in the 'Issuer' section of the certificate you are " -#~ "trying to use." -#~ msgstr "" -#~ "La ID de la clave y el nombre del certificado de la AC (Autoridad de " -#~ "Certificación) no coinciden con la ID de la clave y el nombre de la " -#~ "sección «Emisor» del certificado que está intentando usar." - -#~ msgid "" -#~ "The certificate's CA (Certificate Authority) is not allowed to sign " -#~ "certificates." -#~ msgstr "" -#~ "A la AC (Autoridad de Certificación) del certificado no se le permite " -#~ "firmar certificados." - -#~ msgid "OpenSSL could not be verified." -#~ msgstr "No se puede verificar OpenSSL." - -#~ msgid "" -#~ "The signature test for this certificate failed. This could mean that the " -#~ "signature of this certificate or any in its trust path are invalid, could " -#~ "not be decoded or that the CRL (Certificate Revocation List) could not be " -#~ "verified. If you see this message, please let the author of the software " -#~ "you are using know that he or she should use the new, more specific error " -#~ "messages." -#~ msgstr "" -#~ "La prueba de firma para este certificado ha fallado. Esto puede " -#~ "significar que la firma de este certificado o de cualquier otro en su " -#~ "ruta de confianza no es válida, que no se puede descodificar, o que la " -#~ "CRL (Lista de Certificados Revocados) no se puede verificar. Si ve este " -#~ "mensaje, deje que el autor del software que está usando sepa que debe " -#~ "usar los nuevos y más específicos mensajes de error." - -#~ msgid "" -#~ "This certificate, any in its trust path or its CA's (Certificate " -#~ "Authority) CRL (Certificate Revocation List) is not valid. Any of them " -#~ "could not be valid yet or not valid any more. If you see this message, " -#~ "please let the author of the software you are using know that he or she " -#~ "should use the new, more specific error messages." -#~ msgstr "" -#~ "Este certificado, cualquier otro en su ruta de confianza, o la CRL (Lista " -#~ "de Certificados Revocados) de su AC (Autoridad de Certificación), no es " -#~ "válido. Alguno de ellos puede no ser válido todavía o no ser válido nunca " -#~ "más. Si ve este mensaje, deje que el autor del software que está usando " -#~ "sepa que debe usar los nuevos y más específicos mensajes de error." - -#~ msgid "" -#~ "Certificate signing authority root files could not be found so the " -#~ "certificate is not verified." -#~ msgstr "" -#~ "No se pudieron encontrar archivos raíces de autoridad que firmen el " -#~ "certificado, por lo tanto, el certificado no está verificado." - -#~ msgid "SSL support was not found." -#~ msgstr "Implementación de SSL no encontrada." - -#~ msgid "Private key test failed." -#~ msgstr "Prueba de clave privada fallida." - -#~ msgid "The certificate has not been issued for this host." -#~ msgstr "El certificado no se ha emitido para esta máquina." - -#~ msgid "This certificate is not relevant." -#~ msgstr "Este certificado no es pertinente." - -#~ msgid "The certificate is invalid." -#~ msgstr "El certificado no es válido." - -#~ msgid "KDE SSL Information" -#~ msgstr "Información SSL de KDE" - -#~ msgctxt "The receiver of the SSL certificate" -#~ msgid "Subject" -#~ msgstr "Sujeto" - -#~ msgctxt "The authority that issued the SSL certificate" -#~ msgid "Issuer" -#~ msgstr "Emisor" - -#~ msgid "Current connection is secured with SSL." -#~ msgstr "La conexión actual está asegurada con SSL." - -#~ msgid "Current connection is not secured with SSL." -#~ msgstr "La conexión actual no está asegurada con SSL." - -#~ msgid "SSL support is not available in this build of KDE." -#~ msgstr "El uso SSL no está disponible en esta compilación de KDE." - -#~ msgid "" -#~ "The main part of this document is secured with SSL, but some parts are " -#~ "not." -#~ msgstr "" -#~ "La mayor parte de este documento está cifrada con SSL, pero algunas " -#~ "partes no lo están." - -#~ msgid "Some of this document is secured with SSL, but the main part is not." -#~ msgstr "" -#~ "Parte de este documento está asegurado con SSL, pero su parte principal " -#~ "no lo está." - -#~ msgctxt "%1, using %2 bits of a %3 bit key" -#~ msgid "%1, %2 %3" -#~ msgstr "%1, %2 %3" - -#~ msgctxt "Part of: %1, using %2 bits of a %3 bit key" -#~ msgid "using %1 bit" -#~ msgid_plural "using %1 bits" -#~ msgstr[0] "usando %1 bit" -#~ msgstr[1] "usando %1 bits" - -#~ msgctxt "Part of: %1, using %2 bits of a %3 bit key" -#~ msgid "of a %1 bit key" -#~ msgid_plural "of a %1 bit key" -#~ msgstr[0] "de una clave de %1 bit" -#~ msgstr[1] "de una clave de %1 bits" - -#~ msgctxt "The certificate is not trusted" -#~ msgid "NO, there were errors:" -#~ msgstr "NO, hay errores:" - -#~ msgctxt "The certificate is trusted" -#~ msgid "Yes" -#~ msgstr "Sí" - -#~ msgid "KDE Certificate Request" -#~ msgstr "Solicitud de certificado de KDE" - -#~ msgid "KDE Certificate Request - Password" -#~ msgstr "Solicitud de certificado de KDE - Contraseña" - -#~ msgid "Unsupported key size." -#~ msgstr "Tamaño de clave no permitido." - -#~ msgid "KDE" -#~ msgstr "KDE" - -#~ msgid "Please wait while the encryption keys are generated..." -#~ msgstr "Espere mientras se generan las claves de cifrado..." - -#~ msgid "Do you wish to store the passphrase in your wallet file?" -#~ msgstr "¿Desea almacenar la frase contraseña en su archivo de cartera?" - -#~ msgid "Store" -#~ msgstr "Almacenar" - -#~ msgid "Do Not Store" -#~ msgstr "No almacenar" - -#~ msgid "2048 (High Grade)" -#~ msgstr "2048 (grado alto)" - -#~ msgid "1024 (Medium Grade)" -#~ msgstr "1024 (grado medio)" - -#~ msgid "768 (Low Grade)" -#~ msgstr "768 (grado bajo)" - -#~ msgid "512 (Low Grade)" -#~ msgstr "512 (grado bajo)" - -#~ msgid "No SSL support." -#~ msgstr "No se usa SSL." - -#~ msgid "Certificate password" -#~ msgstr "Contraseña del certificado" - -#~ msgid "GMT" -#~ msgstr "GMT" - -#~ msgid "[padlock]" -#~ msgstr "[candado]" - -#~ msgctxt "Web page address" -#~ msgid "Address:" -#~ msgstr "Dirección:" - -#~ msgid "IP address:" -#~ msgstr "Dirección IP:" - -#~ msgid "Encryption:" -#~ msgstr "Cifrado:" - -#~ msgid "Details:" -#~ msgstr "Detalles:" - -#~ msgid "SSL version:" -#~ msgstr "Versión de SSL:" - -#~ msgid "Certificate chain:" -#~ msgstr "Cadena de certificados:" - -#~ msgid "Trusted:" -#~ msgstr "De confianza:" - -#~ msgid "Validity period:" -#~ msgstr "Período de validez:" - -#~ msgid "Serial number:" -#~ msgstr "Número de serie:" - -#~ msgid "MD5 digest:" -#~ msgstr "Compendio MD5:" - -#~ msgid "SHA1 digest:" -#~ msgstr "Compendio SHA1:" - -#~ msgid "" -#~ "The remote host did not send any SSL certificates.\n" -#~ "Aborting because the identity of the host cannot be established." -#~ msgstr "" -#~ "El servidor remoto no ha enviado ningún certificado SSL.\n" -#~ "Cancelando porque no se puede determinar la identidad del servidor." - -#~ msgid "KMailService" -#~ msgstr "KMailService" - -#~ msgid "Mail service" -#~ msgstr "Servicio de correo" - -#~ msgid "Could not find a usable proxy configuration script" -#~ msgstr "" -#~ "No se pudo encontrar un script utilizable de configuración del proxy" - -#~ msgid "" -#~ "Could not download the proxy configuration script:\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudo descargar el script de configuración del proxy:\n" -#~ "%1" - -#~ msgid "Could not download the proxy configuration script" -#~ msgstr "No se pudo descargar el script de configuración del proxy" - -#~ msgid "" -#~ "The proxy configuration script is invalid:\n" -#~ "%1" -#~ msgstr "" -#~ "El script de configuración del proxy no es válido:\n" -#~ "%1" - -#~ msgid "" -#~ "The proxy configuration script returned an error:\n" -#~ "%1" -#~ msgstr "" -#~ "El script de configuración del proxy produjo un error:\n" -#~ "%1" - -#~ msgid "Could not find 'FindProxyForURL' or 'FindProxyForURLEx'" -#~ msgstr "No se puede encontrar «FindProxyForURL» ni «FindProxyForURLEx»" - -#~ msgid "Got an invalid reply when calling %1" -#~ msgstr "Se ha obtenido una respuesta no válida al llamar a %1" - -#~ msgid "Error connecting to server." -#~ msgstr "Error al conectar con el servidor." - -#~ msgid "Not connected." -#~ msgstr "No conectado." - -#~ msgid "Connection timed out." -#~ msgstr "Tiempo de conexión agotado." - -#~ msgid "Time out waiting for server interaction." -#~ msgstr "Se agotó el tiempo mientras se esperaba interacción del servidor." - -#~ msgid "Server said: \"%1\"" -#~ msgstr "El servidor devolvió: «%1»" - -#~ msgid "KSendBugMail" -#~ msgstr "KSendBugMail" - -#~ msgid "Sends a bug report by email" -#~ msgstr "Envía un informe de error por correo" - -#~ msgid "(c) 2000 Stephan Kulow" -#~ msgstr "© 2000 Stephan Kulow" - -#~ msgid "Stephan Kulow" -#~ msgstr "Stephan Kulow" - -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgid "Subject line" -#~ msgstr "Línea de asunto" - -#~ msgid "Recipient" -#~ msgstr "Destinatario" - -#~ msgid "telnet service" -#~ msgstr "servicio telnet" - -#~ msgid "telnet protocol handler" -#~ msgstr "Manejador de protocolo telnet" - -#~ msgid "You do not have permission to access the %1 protocol." -#~ msgstr "No tiene permiso para acceder al protocolo %1." +msgstr "Buscar iconos…" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/et/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/et/kiconthemes6.po index 01b9c79dba..e578659945 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/et/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/et/kiconthemes6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2019-10-31 12:39+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -23,73 +23,73 @@ msgstr "" "X-Generator: Lokalize 19.08.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Ikooni valimine" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "Kõik" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Kõik" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Tegevused" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Rakendused" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategooriad" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Seadmed" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Embleemid" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotikonid" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME tüübid" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Kohad" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Staatus" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -97,29 +97,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Muu" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Lehitse..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Ikooni valimine" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/eu/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/eu/kiconthemes6.po index 49feb11475..62d1b48170 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/eu/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/eu/kiconthemes6.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-24 11:29+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -24,98 +24,98 @@ msgstr "" "X-Generator: Lokalize 24.02.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Hautatu ikonoa..." -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Guztiak" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Sinbolikoak bakarrik" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Ez sinbolikoak" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Guztiak" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Ekintzak" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikazioak" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategoriak" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Gailuak" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Ikurrak" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Aurpegierak" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime-motak" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Lekuak" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Egoera" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Bestelakoak" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Arakatu..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Ez dago bilaketarekin bat datorren ikonorik" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Kategoria honetan ikonorik ez" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Hautatu ikonoa" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/fa/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/fa/kiconthemes6.po index f099d33085..895ce12641 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/fa/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/fa/kiconthemes6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2013-01-10 22:50+0330\n" "Last-Translator: Mohammad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) \n" @@ -21,101 +21,101 @@ msgstr "" "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "برگزیدن شمایل" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "کنشها" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "کاربردها" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "دسته‌ها" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "دستگاهها" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "نشانها" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "احساسات" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "انواع مایم" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "جاها" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "وضعیت" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "غیره" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&مرور...‌" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "برگزیدن شمایل" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/fi/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/fi/kiconthemes6.po index 81a672b146..6b22ff90e3 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/fi/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/fi/kiconthemes6.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-10-20 14:21+0300\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" @@ -29,98 +29,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 23.08.5\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Valitse kuvake…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Kaikki" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Vain symboliset" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Ei symbolisia" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Kaikki" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Toiminnot" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Sovellukset" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Luokat" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Laitteet" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Tunnuskuva" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Hymiöt" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-tyypit" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Sijainnit" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Tila" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Muu" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Selaa…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Ei hakua vastaavia kuvakkeita" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Ei kuvakkeita tässä luokassa" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Valitse kuvake" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/fr/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/fr/kiconthemes6.po index 1b3cdbdd38..3f6aa54ac5 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/fr/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/fr/kiconthemes6.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-13 14:04+0100\n" "Last-Translator: xavier \n" "Language-Team: French >\n" @@ -34,98 +34,98 @@ msgstr "" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Sélectionner une icône..." -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Tout" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Uniquement les symboles" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Aucun symbole" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Tous" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Actions" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Applications" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Catégories" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Périphériques" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblèmes" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Émoticônes" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Types MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Emplacements" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "État" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Autre" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Naviguer…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Aucune icône correspondant à la recherche" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Aucune icône dans cette catégorie" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Choisir une icône" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/fy/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/fy/kiconthemes6.po index 1b2df96dba..24e2ffe27b 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/fy/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/fy/kiconthemes6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2009-05-19 10:52+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: \n" @@ -17,72 +17,72 @@ msgstr "" "X-Generator: KBabel 1.11.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Byldkaike selektearje" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aksjes" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Applikaasjes" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategoriën" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Apparaten" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblems" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotes" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime triemtypen" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Places" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Tastân" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -91,29 +91,29 @@ msgid "Other" msgstr "Oaren" # i18n: file ./kfile/kpropertiesdesktopbase.ui line 213 -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "S&neupe..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Byldkaike selektearje" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ga/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ga/kiconthemes6.po index 54713405f8..9e95c99f68 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ga/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ga/kiconthemes6.po @@ -1,13 +1,13 @@ # translation of kio4.po to Irish # Copyright (C) 1999,2002,2003,2004 Free Software Foundation, Inc. # Sean V. Kelley , 1999. -# Séamus Ó Ciardhuáin , 2003,2004 # Kevin Scannell , 2009 +# Séamus Ó Ciardhuáin , 2003,2004 msgid "" msgstr "" "Project-Id-Version: kdelibs/kio4.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -15,111 +15,105 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 0.9.6\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" -#: widgets/kiconbutton.cpp:75 -#, fuzzy, kde-format -#| msgid "Select Icon" +#: widgets/kiconbutton.cpp:83 +#, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" -msgstr "Roghnaigh Deilbhín" +msgstr "" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Gníomhartha" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Feidhmchláir" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Catagóirí" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Gléasanna" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Feathail" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Straoiseoga" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Cineálacha MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Áiteanna" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stádas" -#: widgets/kicondialog.cpp:392 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Other" +#: widgets/kicondialog.cpp:406 +#, kde-format msgctxt "Other icons" msgid "Other" -msgstr "Eile" +msgstr "" -#: widgets/kicondialog.cpp:439 -#, fuzzy, kde-format -#| msgid "&Browse..." +#: widgets/kicondialog.cpp:455 +#, kde-format msgid "Browse…" -msgstr "&Brabhsáil..." +msgstr "" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Roghnaigh Deilbhín" -#: widgets/kicondialog.cpp:730 -#, fuzzy, kde-format -#| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" +#: widgets/kicondialog.cpp:746 +#, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" -msgstr "*.png *.xpm *.svg *.svgz|Comhaid Deilbhíní (*.png *.xpm *.svg *.svgz)" +msgstr "" #. i18n: ectx: property (accessibleName), widget (QComboBox, contextCombo) #: widgets/kicondialog.ui:24 @@ -129,5026 +123,6 @@ msgstr "" #. i18n: ectx: property (placeholderText), widget (QLineEdit, searchLine) #: widgets/kicondialog.ui:44 -#, fuzzy, kde-format -#| msgid "Small Icons" +#, kde-format msgid "Search Icons..." -msgstr "Deilbhíní Beaga" - -#~ msgid "Icon Source" -#~ msgstr "Foinse Deilbhíní" - -#~ msgid "S&ystem icons:" -#~ msgstr "D&eilbhíní an chórais:" - -#~ msgid "O&ther icons:" -#~ msgstr "Deilbhíní &eile:" - -#~ msgid "&Search:" -#~ msgstr "&Cuardach:" - -#~ msgid "Search interactively for icon names (e.g. folder)." -#~ msgstr "Cuardach idirghníomhach ar ainmneacha deilbhíní (m.sh. fillteán)." - -#~ msgid "Animations" -#~ msgstr "Íomhánna Beo" - -#~ msgid "Filesystems" -#~ msgstr "Comhadchórais" - -#~ msgid "International" -#~ msgstr "Idirnáisiúnta" - -#~ msgctxt "NAME OF TRANSLATORS" -#~ msgid "Your names" -#~ msgstr "Séamus Ó Ciardhuáin,Kevin Scannell,Sean V. Kelley" - -#~ msgctxt "EMAIL OF TRANSLATORS" -#~ msgid "Your emails" -#~ msgstr "seoc@iolfree.ie,kscanne@gmail.com,s_oceallaigh@yahoo.com" - -#~ msgid "A file or folder named %1 already exists." -#~ msgstr "Tá comhad nó fillteán darb ainm %1 ann cheana." - -#~ msgid "You do not have permission to create that folder." -#~ msgstr "Níl cead agat an fillteán sin a chruthú." - -#~ msgid "You did not select a file to delete." -#~ msgstr "Níor roghnaigh tú comhad le scriosadh." - -#~ msgid "Nothing to Delete" -#~ msgstr "Faic le Scriosadh" - -#~ msgid "" -#~ "Do you really want to delete\n" -#~ " '%1'?" -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mian leat\n" -#~ " '%1' a scriosadh?" - -#~ msgid "Delete File" -#~ msgstr "Scrios Comhad" - -#~ msgid "Do you really want to delete this item?" -#~ msgid_plural "Do you really want to delete these %1 items?" -#~ msgstr[0] "An bhfuil tú cinnte gur mian leat an mhír seo a scriosadh?" -#~ msgstr[1] "An bhfuil tú cinnte gur mian leat an dá mhír seo a scriosadh?" -#~ msgstr[2] "An bhfuil tú cinnte gur mian leat na %1 mhír seo a scriosadh?" -#~ msgstr[3] "An bhfuil tú cinnte gur mian leat na %1 mír seo a scriosadh?" -#~ msgstr[4] "An bhfuil tú cinnte gur mian leat an %1 mír seo a scriosadh?" - -#~ msgid "Delete Files" -#~ msgstr "Scrios Comhaid" - -#~ msgid "You did not select a file to trash." -#~ msgstr "Níor roghnaigh tú comhad le cur sa bhruscar." - -#~ msgid "Nothing to Trash" -#~ msgstr "Faic le Cur sa Bhruscar" - -#~ msgid "" -#~ "Do you really want to trash\n" -#~ " '%1'?" -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mian leat\n" -#~ " '%1' a chur sa bhruscar?" - -#~ msgid "Trash File" -#~ msgstr "Cuir Comhad Sa Bhruscar" - -#~ msgctxt "to trash" -#~ msgid "&Trash" -#~ msgstr "&Bruscar" - -#~ msgid "translators: not called for n == 1" -#~ msgid_plural "Do you really want to trash these %1 items?" -#~ msgstr[0] "" -#~ "An bhfuil tú cinnte gur mian leat an mhír seo a chur sa bhruscar?" -#~ msgstr[1] "" -#~ "An bhfuil tú cinnte gur mian leat an dá mhír seo a chur sa bhruscar?" -#~ msgstr[2] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mhír seo a chur sa bhruscar?" -#~ msgstr[3] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mír seo a chur sa bhruscar?" -#~ msgstr[4] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mír seo a chur sa bhruscar?" - -#~ msgid "Trash Files" -#~ msgstr "Cuir Comhaid Sa Bhruscar" - -#~ msgid "The specified folder does not exist or was not readable." -#~ msgstr "Níl an fillteán sonraithe ann, nó ní féidir é a léamh." - -#~ msgid "Menu" -#~ msgstr "Roghchlár" - -#~ msgid "Parent Folder" -#~ msgstr "Máthairfhillteán" - -#~ msgid "Home Folder" -#~ msgstr "Fillteán Baile" - -#~ msgid "Reload" -#~ msgstr "Athluchtaigh" - -#~ msgid "New Folder..." -#~ msgstr "Fillteán Nua..." - -#~ msgid "Move to Trash" -#~ msgstr "Cuir sa Bhruscar" - -#~ msgid "Delete" -#~ msgstr "Scrios" - -#~ msgid "Sorting" -#~ msgstr "Sórtáil" - -#~ msgid "By Name" -#~ msgstr "De Réir Ainm" - -#~ msgid "By Size" -#~ msgstr "De Réir Méide" - -#~ msgid "By Date" -#~ msgstr "De Réir Dáta" - -#~ msgid "By Type" -#~ msgstr "De Réir Cineáil" - -#~ msgid "Descending" -#~ msgstr "Ag dul síos" - -#~ msgid "Folders First" -#~ msgstr "Fillteáin ar dTús" - -#~ msgid "Short View" -#~ msgstr "Amharc Gairid" - -#~ msgid "Detailed View" -#~ msgstr "Amharc Mionsonraithe" - -#~ msgid "Tree View" -#~ msgstr "Amharc Crainn" - -#~ msgid "Detailed Tree View" -#~ msgstr "Amharc Mionsonraithe Crainn" - -#~ msgid "Show Hidden Files" -#~ msgstr "Taispeáin Comhaid Fholaithe" - -#~ msgid "Show Preview" -#~ msgstr "Taispeáin Réamhamharc" - -#~ msgid "Open File Manager" -#~ msgstr "Oscail Bainisteoir Comhad" - -#~ msgid "Properties" -#~ msgstr "Airíonna" - -#~ msgid "&View" -#~ msgstr "&Amharc" - -#~ msgctxt "folder name" -#~ msgid "New Folder" -#~ msgstr "Fillteán Nua" - -#~ msgctxt "@title:window" -#~ msgid "New Folder" -#~ msgstr "Fillteán Nua" - -#~ msgctxt "@label:textbox" -#~ msgid "" -#~ "Create new folder in:\n" -#~ "%1" -#~ msgstr "" -#~ "Cruthaigh fillteán nua i:\n" -#~ "%1" - -#~ msgctxt "@title:window" -#~ msgid "Select Folder" -#~ msgstr "Roghnaigh Fillteán" - -#~ msgctxt "@action:button" -#~ msgid "New Folder..." -#~ msgstr "Fillteán Nua..." - -#~ msgctxt "@action:inmenu" -#~ msgid "New Folder..." -#~ msgstr "Fillteán Nua..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Move to Trash" -#~ msgstr "Cuir sa Bhruscar" - -#~ msgctxt "@action:inmenu" -#~ msgid "Delete" -#~ msgstr "Scrios" - -#~ msgctxt "@option:check" -#~ msgid "Show Hidden Folders" -#~ msgstr "Taispeáin Fillteáin Fholaithe" - -#~ msgctxt "@action:inmenu" -#~ msgid "Properties" -#~ msgstr "Airíonna" - -#~ msgid "*|All Files" -#~ msgstr "*|Gach Comhad" - -#~ msgid "All Supported Files" -#~ msgstr "Gach Comhad a dTacaítear Leis" - -#~ msgid "All Files" -#~ msgstr "Gach Comhad" - -#~ msgid "Add Places Entry" -#~ msgstr "Cuir Iontráil Áiteanna Leis" - -#~ msgid "Edit Places Entry" -#~ msgstr "Cuir Iontráil Áiteanna in Eagar" - -#~ msgid "" -#~ "This is the text that will appear in the Places panel.

    The " -#~ "label should consist of one or two words that will help you remember what " -#~ "this entry refers to. If you do not enter a label, it will be derived " -#~ "from the location's URL.
    " -#~ msgstr "" -#~ "Seo é an téacs a thaispeánfar sa phainéal Áiteanna.

    Ba " -#~ "chóir duit cur síos a dhéanamh air le focal nó dhó sa chaoi gur féidir " -#~ "leat cuimhniú cad é atá i gceist go díreach. Mura gcuireann tú lipéad " -#~ "air, cruthófar é ó URL na háite.
    " - -#~ msgid "L&abel:" -#~ msgstr "Lipé&ad:" - -#~ msgid "Enter descriptive label here" -#~ msgstr "Déan cur síos air anseo" - -#~ msgid "" -#~ "This is the location associated with the entry. Any valid URL may be " -#~ "used. For example:

    %1
    http://www.kde.org
    ftp://ftp." -#~ "kde.org/pub/kde/stable

    By clicking on the button next to the " -#~ "text edit box you can browse to an appropriate URL.
    " -#~ msgstr "" -#~ "Seo á an suíomh a bhaineann leis an iontráil. Is féidir aon URL bailí " -#~ "a úsáid. Mar shampla:

    %1
    http://www.kde.org
    ftp://" -#~ "ftp.kde.org/pub/kde/stable

    Is féidir leat dul go dtí URL tríd " -#~ "an cnaipe in aice leis an mbosca eagarthóireachta a chliceáil.
    " - -#~ msgid "&Location:" -#~ msgstr "&Suíomh:" - -#~ msgid "" -#~ "This is the icon that will appear in the Places panel.

    Click on the button to select a different icon.
    " -#~ msgstr "" -#~ "Seo é an deilbhín a thaispeánfar sa phainéal Áiteanna.

    Cliceáil an cnaipe chun deilbhín difriúil a roghnú.
    " - -#~ msgid "Choose an &icon:" -#~ msgstr "Roghnaigh de&ilbhín:" - -#~ msgid "&Only show when using this application (%1)" -#~ msgstr "&Ná taispeáin ach nuair atá an feidhmchlár seo in úsáid (%1)" - -#~ msgid "" -#~ "Select this setting if you want this entry to show only when using " -#~ "the current application (%1).

    If this setting is not selected, " -#~ "the entry will be available in all applications.
    " -#~ msgstr "" -#~ "Roghnaigh é seo más mian leat an iontráil seo a thaispeáint nuair a " -#~ "úsáidtear an feidhmchlár reatha amháin (%1).

    Mura roghnaíonn " -#~ "tú é seo, beidh an iontráil ar fáil i ngach feidhmchlár.
    " - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Home" -#~ msgstr "Baile" - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Network" -#~ msgstr "Líonra" - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Root" -#~ msgstr "Fréamh" - -#~ msgctxt "KFile System Bookmarks" -#~ msgid "Trash" -#~ msgstr "Bruscar" - -#~ msgid "&Safely Remove '%1'" -#~ msgstr "Bain '%1' go &sábháilte" - -#~ msgid "&Unmount '%1'" -#~ msgstr "Dí&fheistigh '%1'" - -#~ msgid "&Eject '%1'" -#~ msgstr "&Díchuir '%1'" - -#~ msgid "The device '%1' is not a disk and cannot be ejected." -#~ msgstr "Ní diosca é an gléas '%1' agus ní féidir é a dhíchur." - -#~ msgid "An error occurred while accessing '%1', the system responded: %2" -#~ msgstr "Tharla earráid agus '%1' á rochtain; dúirt an córas: %2" - -#~ msgid "An error occurred while accessing '%1'" -#~ msgstr "Tharla earráid agus '%1' á rochtain" - -#~ msgctxt "@action:inmenu" -#~ msgid "Empty Trash" -#~ msgstr "Folmhaigh an Bruscar" - -#~ msgid "Add Entry..." -#~ msgstr "Cuir Iontráil Leis..." - -#~ msgid "&Edit Entry '%1'..." -#~ msgstr "Cuir Iontráil '%1' in &Eagar..." - -#~ msgid "&Hide Entry '%1'" -#~ msgstr "&Folaigh Iontráil '%1'" - -#~ msgid "&Show All Entries" -#~ msgstr "&Taispeáin Gach Iontráil" - -#~ msgid "&Remove Entry '%1'" -#~ msgstr "&Bain Iontráil '%1'" - -#~ msgctxt "@info" -#~ msgid "Do you really want to empty the Trash? All items will be deleted." -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mian leat an Bruscar a fholmhú? Scriosfar gach " -#~ "rud atá ann." - -#~ msgctxt "@action:button" -#~ msgid "Empty Trash" -#~ msgstr "Folmhaigh an Bruscar" - -#~ msgid "Show Hidden Folders" -#~ msgstr "Taispeáin Fillteáin Fholaithe" - -#~ msgid "Drive: %1" -#~ msgstr "Tiomántán: %1" - -#~ msgid "" -#~ "Click this button to enter the parent folder.

    For " -#~ "instance, if the current location is file:/home/%1 clicking this button " -#~ "will take you to file:/home.
    " -#~ msgstr "" -#~ "Cliceáil an cnaipe seo chun dul isteach sa mháthairfhillteán.

    Mar shampla, más é file:/home/%1 an suíomh reatha, rachaidh tú go " -#~ "file:/home nuair a chliceálann tú an cnaipe seo.
    " - -#~ msgid "" -#~ "Click this button to move backwards one step in the browsing history." -#~ msgstr "Cliceáil an cnaipe seo chun dul siar sa stair brabhsála." - -#~ msgid "Click this button to move forward one step in the browsing history." -#~ msgstr "Cliceáil an cnaipe seo chun dul ar aghaidh sa stair brabhsála." - -#~ msgid "Click this button to reload the contents of the current location." -#~ msgstr "Cliceáil an cnaipe seo chun inneachar an tsuímh reatha a athluchtú." - -#~ msgid "Click this button to create a new folder." -#~ msgstr "Brúigh an cnaipe seo chun fillteán nua a chruthú." - -#~ msgid "Show Places Navigation Panel" -#~ msgstr "Taispeáin an Painéal Nascleanúna Áiteanna" - -#~ msgid "Show Bookmarks" -#~ msgstr "Taispeáin Leabharmharcanna" - -#~ msgid "Options" -#~ msgstr "Roghanna" - -#~ msgid "" -#~ "This is the preferences menu for the file dialog. Various options can " -#~ "be accessed from this menu including:
    • how files are sorted in the " -#~ "list
    • types of view, including icon and list
    • showing of " -#~ "hidden files
    • the Places navigation panel
    • file previews
    • separating folders from files
    " -#~ msgstr "" -#~ "Seo é an roghchlár sainroghanna don dialóg comhad. Is féidir cuid " -#~ "mhaith roghanna a shocrú ón roghchlár seo, mar shampla:
    • conas a " -#~ "shórtáiltear na comhaid sa liosta
    • cineál an amhairc, deilbhíní nó " -#~ "liosta san áireamh
    • taispeáint comhaid fholaithe
    • an " -#~ "painéal nascleanúna Áiteanna
    • réamhamhairc
    • dealú fillteáin " -#~ "agus comhaid
    " - -#~ msgid "Zoom out" -#~ msgstr "Súmáil amach" - -#~ msgid "Zoom in" -#~ msgstr "Súmáil isteach" - -#~ msgid "&Name:" -#~ msgstr "Ai&nm:" - -#~ msgid "" -#~ "This is the filter to apply to the file list. File names that do not " -#~ "match the filter will not be shown.

    You may select from one of the " -#~ "preset filters in the drop down menu, or you may enter a custom filter " -#~ "directly into the text area.

    Wildcards such as * and ? are allowed." -#~ "

    " -#~ msgstr "" -#~ "Seo é an scagaire le cur i bhfeidhm ar an liosta comhad. Ní " -#~ "thaispeánfar comhaid nach bhfuil comhoiriúnach don scagaire.

    Is féidir " -#~ "leat ceann de na scagairí réamhshocraithe a roghnú ón roghchlár anuas, nó " -#~ "scagaire saincheapta a iontráil go díreach sa réimse téacs.

    Ceadaítear saoróga cosúil le * agus ?.

    " - -#~ msgid "&Filter:" -#~ msgstr "&Scagaire:" - -#~ msgid "You can only select one file" -#~ msgstr "Ní féidir leat ach comhad amháin a roghnú" - -#~ msgid "You can only select local files" -#~ msgstr "Ní féidir leat ach comhaid logánta a roghnú" - -#~ msgid "Remote files not accepted" -#~ msgstr "Ní ghlactar le cianchomhaid" - -#~ msgid "The file \"%1\" could not be found" -#~ msgstr "Níorbh fhéidir comhad \"%1\" a aimsiú" - -#~ msgid "Cannot open file" -#~ msgstr "Ní féidir an comhad a oscailt" - -#~ msgid "This is the name to save the file as." -#~ msgstr "Seo é ainm an chomhaid ina sábhálfar é." - -#~ msgid "" -#~ "This is the list of files to open. More than one file can be specified by " -#~ "listing several files, separated by spaces." -#~ msgstr "" -#~ "Seo é liosta na gcomhad le hoscailt. Is féidir níos mó ná comhad amháin a " -#~ "shonrú, i liosta dealaithe ag camóga." - -#~ msgid "This is the name of the file to open." -#~ msgstr "Seo ainm an chomhaid atá le hoscailt." - -#~ msgctxt "@title:window" -#~ msgid "Places" -#~ msgstr "Áiteanna" - -#~ msgid "The file \"%1\" already exists. Do you wish to overwrite it?" -#~ msgstr "Tá comhad \"%1\" ann cheana. An bhfuil fonn ort scríobh air?" - -#~ msgid "Overwrite File?" -#~ msgstr "Forscríobh an Comhad?" - -#~ msgid "" -#~ "The chosen filenames do not\n" -#~ "appear to be valid." -#~ msgstr "" -#~ "Dealraíonn nach bhfuil na comhaid\n" -#~ "roghnaithe bailí." - -#~ msgid "Invalid Filenames" -#~ msgstr "Ainm(neacha) comhaid neamhbhailí" - -#~ msgid "You can only select local files." -#~ msgstr "Ní féidir ach comhaid logánta a roghnú." - -#~ msgid "Remote Files Not Accepted" -#~ msgstr "Ní Ghlactar Le Cianchomhaid" - -#~ msgid "*|All Folders" -#~ msgstr "*|Gach Fillteán" - -#~ msgid "&Open" -#~ msgstr "&Oscail" - -#~ msgid "Automatically select filename e&xtension (%1)" -#~ msgstr "Roghnaigh iar&mhír an ainm comhaid go huathoibríoch (%1)" - -#~ msgid "the extension %1" -#~ msgstr "an iarmhír: %1" - -#~ msgid "Automatically select filename e&xtension" -#~ msgstr "Roghnaigh iar&mhír an ainm comhaid go huathoibríoch" - -#~ msgid "a suitable extension" -#~ msgstr "iarmhír oiriúnach" - -#~ msgid "Bookmarks" -#~ msgstr "Leabharmharcanna" - -#~ msgid "Sorry" -#~ msgstr "Tá brón orm" - -#~ msgid "The template file %1 does not exist." -#~ msgstr "Níl creatchomhad %1 ann." - -#~ msgctxt "@action:button" -#~ msgid "Create directory" -#~ msgstr "Cruthaigh comhadlann" - -#~ msgctxt "@action:button" -#~ msgid "Enter a different name" -#~ msgstr "Iontráil ainm difriúil" - -#~ msgid "Create hidden directory?" -#~ msgstr "Cruthaigh comhadlann fholaithe?" - -#~ msgid "" -#~ "The name \"%1\" starts with a dot, so the directory will be hidden by " -#~ "default." -#~ msgstr "" -#~ "Tosaíonn an t-ainm \"%1\" le ponc, agus mar sin beidh an chomhadlann i " -#~ "bhfolach de réir réamhshocraithe." - -#~ msgid "Do not ask again" -#~ msgstr "Ná fiafraigh díom arís" - -#~ msgid "File name:" -#~ msgstr "Ainm comhaid:" - -#~ msgid "Create Symlink" -#~ msgstr "Cruthaigh Nasc Siombalach" - -#~ msgid "Create link to URL" -#~ msgstr "Cruthaigh nasc le URL" - -#~ msgctxt "@item:inmenu Create New" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "" -#~ "Basic links can only point to local files or directories.\n" -#~ "Please use \"Link to Location\" for remote URLs." -#~ msgstr "" -#~ "Caithfidh naisc bhunúsacha a bheith ceangailte le comhaid nó comhadlanna " -#~ "logánta amháin.\n" -#~ "Bain úsáid as \"Nasc le Suíomh\" chun nasc a chruthú le URL cianda." - -#~ msgid "Create New" -#~ msgstr "Cruthaigh Ceann Nua" - -#~ msgid "Link to Device" -#~ msgstr "Nasc le Gléas" - -#~ msgctxt "Default name for a new folder" -#~ msgid "New Folder" -#~ msgstr "Fillteán Nua" - -#~ msgid "" -#~ "Create new folder in:\n" -#~ "%1" -#~ msgstr "" -#~ "Cruthaigh fillteán nua i:\n" -#~ "%1" - -#~ msgid "Copy" -#~ msgstr "Cóipeáil" - -#~ msgid "Paste" -#~ msgstr "Greamaigh" - -#~ msgid "Edit" -#~ msgstr "Eagar" - -#~ msgid "Navigate" -#~ msgstr "Nascleanúint" - -#~ msgid "Show Full Path" -#~ msgstr "Taispeáin an Chonair Iomlán" - -#~ msgid "Custom Path" -#~ msgstr "Conair Shaincheaptha" - -#~ msgctxt "@action:inmenu" -#~ msgid "More" -#~ msgstr "Tuilleadh" - -#~ msgctxt "@item:inmenu" -#~ msgid "Devices" -#~ msgstr "Gléasanna" - -#~ msgctxt "@item:inmenu" -#~ msgid "Subversion" -#~ msgstr "Subversion" - -#~ msgid "Click to Edit Location" -#~ msgstr "Cliceáil chun an Suíomh a chur in eagar" - -#~ msgid "" -#~ "Could not change permissions for\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir ceadanna a athrú le haghaidh\n" -#~ "%1" - -#~ msgid "\"vold\" is not running." -#~ msgstr "Níl \"vold\" ag rith." - -#~ msgid "Could not find program \"mount\"" -#~ msgstr "Níorbh fhéidir clár \"mount\" a aimsiú" - -#~ msgid "mounting is not supported by wince." -#~ msgstr "ní thacaíonn wince le feistiú." - -#~ msgid "Could not find program \"umount\"" -#~ msgstr "Níorbh fhéidir clár \"umount\" a aimsiú" - -#~ msgid "unmounting is not supported by wince." -#~ msgstr "ní thacaíonn wince le dífheistiú." - -#~ msgid "Cannot copy file from %1 to %2. (Errno: %3)" -#~ msgstr "Ní féidir comhad a chóipeáil ó %1 go %2. (Earráid: %3)" - -#~ msgid "No media in device for %1" -#~ msgstr "Níl meáin sa ghléas le haghaidh %1" - -#~ msgid "Opening connection to host %1" -#~ msgstr "Ag dul i dteagmháil le hóstríomhaire %1" - -#~ msgid "Connected to host %1" -#~ msgstr "Ceangailte le hóstríomhaire %1" - -#~ msgid "" -#~ "%1.\n" -#~ "\n" -#~ "Reason: %2" -#~ msgstr "" -#~ "%1.\n" -#~ "\n" -#~ "Fáth: %2" - -#~ msgid "Sending login information" -#~ msgstr "Eolas logála isteach á sheoladh" - -#~ msgid "You need to supply a username and a password to access this site." -#~ msgstr "" -#~ "Is gá ainm úsáideora agus focal faire a sholáthar chun an suíomh seo a " -#~ "rochtain." - -#~ msgid "Site:" -#~ msgstr "Suíomh:" - -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Login OK" -#~ msgstr "Logáil Isteach OK" - -#~ msgid "Could not login to %1." -#~ msgstr "Níorbh fhéidir logáil ann go %1" - -#~ msgid "Proxy:" -#~ msgstr "Seachfhreastalaí:" - -#~ msgid "%1 at %2" -#~ msgstr "%1 ag %2" - -# SEE BELOW - all "attempting to...", or "unable to..." -#~ msgctxt "request type" -#~ msgid "retrieve property values" -#~ msgstr "" -#~ "luachanna airíonna a fháil|/|$[properties attempting-to 'luachanna " -#~ "airíonna á bhfáil'\n" -#~ " unable-to 'luachanna airíonna a fháil'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "set property values" -#~ msgstr "" -#~ "luachanna airíonna a shocrú|/|$[properties attempting-to 'luachanna " -#~ "airíonna á socrú'\n" -#~ " unable-to 'luachanna airíonna a shocrú'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "create the requested folder" -#~ msgstr "" -#~ "an fillteán iarrtha a chruthú|/|$[properties attempting-to 'an fillteán " -#~ "iarrtha á chruthú'\n" -#~ " unable-to 'an fillteán iarrtha a chruthú'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "copy the specified file or folder" -#~ msgstr "" -#~ "an comhad nó fillteán sonraithe a chóipeáil|/|$[properties attempting-to " -#~ "'an comhad nó fillteán sonraithe á chóipeáil'\n" -#~ " unable-to 'an comhad nó fillteán sonraithe a chóipeáil'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "move the specified file or folder" -#~ msgstr "" -#~ "an comhad nó fillteán sonraithe a bhogadh|/|$[properties attempting-to " -#~ "'an comhad nó fillteán sonraithe á bhogadh'\n" -#~ " unable-to 'an comhad nó fillteán sonraithe a bhogadh'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "search in the specified folder" -#~ msgstr "" -#~ "an fillteán sonraithe a chuardach|/|$[properties attempting-to 'an " -#~ "fillteán sonraithe á chuardach'\n" -#~ " unable-to 'an fillteán sonraithe a chuardach'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "lock the specified file or folder" -#~ msgstr "" -#~ "an comhad nó fillteán sonraithe a chur faoi ghlas|/|$[properties " -#~ "attempting-to 'an comhad nó fillteán sonraithe á chur faoi ghlas'\n" -#~ " unable-to 'an comhad nó fillteán sonraithe a chur faoi " -#~ "ghlas'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "unlock the specified file or folder" -#~ msgstr "" -#~ "an glas ar an gcomhad nó bhfillteán sonraithe a oscailt|/|$[properties " -#~ "attempting-to 'an glas ar an gcomhad nó bhfillteán sonraithe á oscailt'\n" -#~ " unable-to 'an glas ar an gcomhad nó bhfillteán sonraithe a " -#~ "oscailt'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "delete the specified file or folder" -#~ msgstr "" -#~ "an comhad nó an fillteán sonraithe a scriosadh|/|$[properties attempting-" -#~ "to 'an comhad nó an fillteán sonraithe á scriosadh'\n" -#~ " unable-to 'an comhad nó an fillteán sonraithe a scriosadh'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "query the server's capabilities" -#~ msgstr "" -#~ "cumas an fhreastalaí a fháil amach|/|$[properties attempting-to 'cumas an " -#~ "fhreastalaí á fháil amach'\n" -#~ " unable-to 'cumas an fhreastalaí a fháil amach'\n" -#~ "]" - -#~ msgctxt "request type" -#~ msgid "retrieve the contents of the specified file or folder" -#~ msgstr "" -#~ "inneachar an comhad nó fillteán sonraithe a fháil|/|$[properties " -#~ "attempting-to 'inneachar an comhad nó fillteán sonraithe á fháil'\n" -#~ " unable-to 'inneachar an comhad nó fillteán sonraithe a " -#~ "fháil'\n" -#~ "]" - -#~ msgctxt "%1: code, %2: request type" -#~ msgid "An unexpected error (%1) occurred while attempting to %2." -#~ msgstr "" -#~ "Tharla earráid gan súil léi (%1) nuair a bhíothas ag iarraidh %2.|/|" -#~ "Tharla earráid gan súil léi (%1) agus $[attempting-to %2]." - -#~ msgid "The server does not support the WebDAV protocol." -#~ msgstr "Ní thacaíonn an freastalaí leis an bprótacal WebDAV." - -#~ msgctxt "%1: request type, %2: url" -#~ msgid "" -#~ "An error occurred while attempting to %1, %2. A summary of the reasons is " -#~ "below." -#~ msgstr "" -#~ "Tharla earráid nuair a bhíothas ag iarraidh %1, %2. Achoimre thíos.|/|" -#~ "Tharla earráid agus $[attempting-to %1], %2. Achoimre thíos." - -#~ msgctxt "%1: request type" -#~ msgid "Access was denied while attempting to %1." -#~ msgstr "" -#~ "Rochtain diúltaithe nuair a bhíothas ag iarraidh %1.|/|Rochtain " -#~ "diúltaithe agus $[attempting-to %1]." - -#~ msgctxt "%1: request type" -#~ msgid "Unable to %1 because the resource is locked." -#~ msgstr "" -#~ "Ní féidir %1 toisc go bhfuil an acmhainn faoi ghlas.|/|Ní féidir $[unable-" -#~ "to %1] toisc go bhfuil an acmhainn faoi ghlas." - -#~ msgctxt "%1: request type" -#~ msgid "" -#~ "Unable to %1 because the destination server refuses to accept the file or " -#~ "folder." -#~ msgstr "" -#~ "Ní féidir %1 toisc nach nglacann an freastalaí sprice leis an gcomhad nó " -#~ "leis an bhfillteán.|/|Ní féidir $[unable-to %1] toisc nach nglacann an " -#~ "freastalaí sprice leis an gcomhad nó leis an bhfillteán." - -#~ msgid "The resource cannot be deleted." -#~ msgstr "Ní féidir an acmhainn a scriosadh." - -#~ msgctxt "request type" -#~ msgid "upload %1" -#~ msgstr "" -#~ "%1 a uasluchtú|/|$[properties attempting-to %1' á uasluchtú'\n" -#~ " unable-to %1' a uasluchtú'\n" -#~ "]" - -#~ msgctxt "%1: response code, %2: request type" -#~ msgid "An unexpected error (%1) occurred while attempting to %2." -#~ msgstr "" -#~ "Tharla earráid gan súil léi (%1) nuair a bhíothas ag iarraidh %2.|/|" -#~ "Tharla earráid gan súil léi (%1) agus $[attempting-to %2]." - -#~ msgid "Sending data to %1" -#~ msgstr "Sonraí á seoladh chuig %1" - -#~ msgid "Retrieving %1 from %2..." -#~ msgstr "%1 á fháil ó %2..." - -#~ msgid "Authentication Failed." -#~ msgstr "Theip ar Fhíordheimhniú." - -#~ msgid "Authorization failed." -#~ msgstr "Theip ar údarú." - -#~ msgid "Unknown Authorization method." -#~ msgstr "Modh anaithnid údaraithe." - -#~ msgid "Empty the cache" -#~ msgstr "Folmhaigh an taisce" - -#~ msgid "Display information about cache file" -#~ msgstr "Taispeáin eolas faoin chomhad taisce" - -#~ msgctxt "%2 hostname, %3 optional cross domain suffix (translated below)" -#~ msgid "" -#~ "

    You received a cookie from
    %2%3
    Do you want to accept " -#~ "or reject this cookie?

    " -#~ msgid_plural "" -#~ "

    You received %1 cookies from
    %2%3
    Do you want to accept " -#~ "or reject these cookies?

    " -#~ msgstr[0] "" -#~ "

    Fuair tú fianán amháin ó
    %2%3
    An bhfuil fonn ort " -#~ "glacadh leis an bhfianán seo nó á a dhiúltú?

    " -#~ msgstr[1] "" -#~ "

    Fuair tú %1 fhianán ó
    %2%3
    An bhfuil fonn ort glacadh " -#~ "leis na fianáin seo nó iad a dhiúltú?

    " -#~ msgstr[2] "" -#~ "

    Fuair tú %1 fhianán ó
    %2%3
    An bhfuil fonn ort glacadh " -#~ "leis na fianáin seo nó iad a dhiúltú?

    " -#~ msgstr[3] "" -#~ "

    Fuair tú %1 fhianán ó
    %2%3
    An bhfuil fonn ort glacadh " -#~ "leis na fianáin seo nó iad a dhiúltú?

    " -#~ msgstr[4] "" -#~ "

    Fuair tú %1 fhianán ó
    %2%3
    An bhfuil fonn ort glacadh " -#~ "leis na fianáin seo nó iad a dhiúltú?

    " - -#~ msgctxt "@item:intext cross domain cookie" -#~ msgid " [Cross Domain]" -#~ msgstr " [Trasfhearann]" - -#~ msgid "Apply Choice To" -#~ msgstr "Cuir Rogha i bhFeidhm Ar" - -#~ msgid "&Only this cookie" -#~ msgstr "An fianán seo &amháin" - -#~ msgid "&Only these cookies" -#~ msgstr "Na fianáin seo &amháin" - -#~ msgid "All cookies from this do&main" -#~ msgstr "Gach fia&nán ón fhearann seo" - -#~ msgid "All &cookies" -#~ msgstr "Ga&ch Fianán" - -#~ msgid "&Accept" -#~ msgstr "G&lac Leis" - -#~ msgid "&Reject" -#~ msgstr "&Diúltaigh" - -#~ msgid "See or modify the cookie information" -#~ msgstr "Iniúch nó athraigh faisnéis an fhianáin" - -#~ msgid "Cookie Details" -#~ msgstr "Mionsonraí an Fhianáin" - -#~ msgid "Name:" -#~ msgstr "Ainm:" - -#~ msgid "Value:" -#~ msgstr "Luach:" - -#~ msgid "Expires:" -#~ msgstr "Le síothlú:" - -#~ msgid "Path:" -#~ msgstr "Conair:" - -#~ msgid "Domain:" -#~ msgstr "Fearann:" - -#~ msgid "Exposure:" -#~ msgstr "Nochtadh:" - -#~ msgctxt "Next cookie" -#~ msgid "&Next >>" -#~ msgstr "&Ar Aghaidh >>" - -#~ msgid "Show details of the next cookie" -#~ msgstr "Taispeáin mionsonraí an chéad fhianáin eile" - -#~ msgid "Not specified" -#~ msgstr "Gan sonrú" - -#~ msgid "End of Session" -#~ msgstr "Deireadh an tSeisiúin" - -#~ msgid "Secure servers only" -#~ msgstr "Freastalaithe slána amháin" - -#~ msgid "Secure servers, page scripts" -#~ msgstr "Freastalaithe slána, scripteanna leathanaigh" - -#~ msgid "Servers" -#~ msgstr "Freastalaithe" - -#~ msgid "Servers, page scripts" -#~ msgstr "Freastalaithe, scripteanna leathanaigh" - -#~ msgid "HTTP Cookie Daemon" -#~ msgstr "Deamhan Fianán HTTP" - -#~ msgid "HTTP cookie daemon" -#~ msgstr "Deamhan fianán HTTP" - -#~ msgid "Remove all cookies" -#~ msgstr "Bain gach fianán" - -#~ msgid "Reload configuration file" -#~ msgstr "Athluchtaigh an comhad cumraíochta" - -#~ msgid "kio_metainfo" -#~ msgstr "kio_metainfo" - -#~ msgid "No metainfo for %1" -#~ msgstr "Gan mheiteafhaisnéis le haghaidh %1" - -#~ msgid "--- separator ---" -#~ msgstr "--- deighilteoir ---" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Nuashonraigh" - -#~ msgctxt "@title:window" -#~ msgid "Bookmark Properties" -#~ msgstr "Airíonna an Leabharmhairc" - -#~ msgctxt "@action:button" -#~ msgid "Add" -#~ msgstr "Cuir Leis" - -#~ msgctxt "@title:window" -#~ msgid "Add Bookmark" -#~ msgstr "Cuir Leabharmharc Leis" - -#~ msgctxt "@action:button" -#~ msgid "&New Folder..." -#~ msgstr "Fillteán &Nua..." - -#~ msgctxt "@title:window" -#~ msgid "Add Bookmarks" -#~ msgstr "Cuir Leabharmharcanna Leis" - -#~ msgctxt "@label:textbox" -#~ msgid "Name:" -#~ msgstr "Ainm:" - -#~ msgctxt "@label:textbox" -#~ msgid "Location:" -#~ msgstr "Suíomh:" - -#~ msgctxt "@label:textbox" -#~ msgid "Comment:" -#~ msgstr "Nóta:" - -#~ msgctxt "@title:window" -#~ msgid "Create New Bookmark Folder" -#~ msgstr "Cruthaigh Fillteán Nua Leabharmharcanna" - -#~ msgctxt "@title:window" -#~ msgid "Create New Bookmark Folder in %1" -#~ msgstr "Cruthaigh Fillteán Nua Leabharmharcanna i %1" - -#~ msgctxt "@label:textbox" -#~ msgid "New folder:" -#~ msgstr "Fillteán nua:" - -#~ msgctxt "name of the container of all browser bookmarks" -#~ msgid "Bookmarks" -#~ msgstr "Leabharmharcanna" - -#~ msgid "*.html|HTML Files (*.html)" -#~ msgstr "*.html|Comhaid HTML (*.html)" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "*.adr|Opera Bookmark Files (*.adr)" -#~ msgstr "*.adr|Leabharmharcanna Opera (*.adr)" - -#~ msgid "" -#~ "Unable to save bookmarks in %1. Reported error was: %2. This error " -#~ "message will only be shown once. The cause of the error needs to be fixed " -#~ "as quickly as possible, which is most likely a full hard drive." -#~ msgstr "" -#~ "Ní féidir leabharmharcanna a shábháil i %1. Seo é an earráid: %2. Ní " -#~ "thaispeánfar an teachtaireacht earráide seo ach uair amháin. Ní mór duit " -#~ "bunchúis na hearráid (diosca lán is dócha) a réiteach chomh luath agus is " -#~ "féidir." - -#~ msgid "Add Bookmark Here" -#~ msgstr "Cruthaigh Leabharmharc Anseo" - -#~ msgid "Open Folder in Bookmark Editor" -#~ msgstr "Oscail Fillteán san Eagarthóir Leabharmharcanna" - -#~ msgid "Delete Folder" -#~ msgstr "Scrios Fillteán" - -#~ msgid "Copy Link Address" -#~ msgstr "Cóipeáil Seoladh an Naisc" - -#~ msgid "Delete Bookmark" -#~ msgstr "Scrios Leabharmharc" - -#~ msgid "Open Folder in Tabs" -#~ msgstr "Oscail Fillteán i gCluaisíní" - -#~ msgid "Cannot add bookmark with empty URL." -#~ msgstr "Ní cheadaítear leabharmharc le URL folamh." - -#~ msgid "" -#~ "Are you sure you wish to remove the bookmark folder\n" -#~ "\"%1\"?" -#~ msgstr "" -#~ "An bhfuil tú cinnte go dteastaíonn uait an fillteán leabharmharcanna\n" -#~ "\"%1\" a bhaint?" - -#~ msgid "" -#~ "Are you sure you wish to remove the bookmark\n" -#~ "\"%1\"?" -#~ msgstr "" -#~ "An bhfuil tú cinnte go dteastaíonn uait an leabharmharc\n" -#~ "\"%1\" a bhaint?" - -#~ msgid "Bookmark Folder Deletion" -#~ msgstr "Scriosadh Fillteán Leabharmharcanna" - -#~ msgid "Bookmark Deletion" -#~ msgstr "Scriosadh Leabharmharcanna" - -#~ msgid "Open all bookmarks in this folder as a new tab." -#~ msgstr "Oscail na leabharmharcanna san fhillteán seo mar chluaisín nua." - -#~ msgid "Bookmark Tabs as Folder..." -#~ msgstr "Cruthaigh fillteán leabharmharcanna do na cluaisíní..." - -#~ msgid "Add a folder of bookmarks for all open tabs." -#~ msgstr "Cruthaigh fillteán le leabharmharc ann do gach cluaisín oscailte." - -#~ msgid "Edit your bookmark collection in a separate window" -#~ msgstr "Cuir do leabharmharcanna in eagar i bhfuinneog ar leith" - -#~ msgid "New Bookmark Folder..." -#~ msgstr "Fillteán Nua Leabharmharcanna..." - -#~ msgid "Create a new bookmark folder in this menu" -#~ msgstr "Cruthaigh fillteán nua leabharmharcanna sa roghchlár seo" - -#~ msgid "Hide in toolbar" -#~ msgstr "Folaigh sa bharra uirlisí" - -#~ msgid "Show in toolbar" -#~ msgstr "Taispeáin sa bharra uirlisí" - -#~ msgid "Open in New Window" -#~ msgstr "Oscail i bhFuinneog Nua" - -#~ msgid "Open in New Tab" -#~ msgstr "Oscail i gCluaisín Nua" - -#~ msgid "Receiving corrupt data." -#~ msgstr "Sonraí truaillithe á bhfáil." - -#~ msgid "Owner" -#~ msgstr "Úinéir" - -#~ msgid "Owning Group" -#~ msgstr "Grúpa an Chomhaid" - -#~ msgid "Others" -#~ msgstr "Eile" - -#~ msgid "Mask" -#~ msgstr "Masc" - -#~ msgid "Named User" -#~ msgstr "Úsáideoir Ainmnithe" - -#~ msgid "Named Group" -#~ msgstr "Grúpa Ainmnithe" - -#~ msgid "Edit Entry..." -#~ msgstr "Cuir Iontráil in Eagar..." - -#~ msgid "Delete Entry" -#~ msgstr "Bain Iontráil" - -#~ msgid " (Default)" -#~ msgstr " (Réamhshocrú)" - -#~ msgid "Edit ACL Entry" -#~ msgstr "Cuir Iontráil ACL in Eagar" - -#~ msgid "Entry Type" -#~ msgstr "Cineál na hIontrála" - -#~ msgid "Default for new files in this folder" -#~ msgstr "Réamhshocrú do chomhaid nua san fhillteán seo" - -#~ msgid "Named user" -#~ msgstr "Úsáideoir ainmnithe" - -#~ msgid "Named group" -#~ msgstr "Grúpa ainmnithe" - -#~ msgid "User: " -#~ msgstr "Úsáideoir: " - -#~ msgid "Group: " -#~ msgstr "Grúpa: " - -#~ msgid "Type" -#~ msgstr "Cineál" - -#~ msgid "Name" -#~ msgstr "Ainm" - -#~ msgctxt "read permission" -#~ msgid "r" -#~ msgstr "l" - -#~ msgctxt "write permission" -#~ msgid "w" -#~ msgstr "s" - -#~ msgctxt "execute permission" -#~ msgid "x" -#~ msgstr "r" - -#~ msgid "Effective" -#~ msgstr "Éifeachtach" - -#~ msgctxt "@label" -#~ msgid "Add Comment..." -#~ msgstr "Cuir Nóta Leis..." - -#~ msgctxt "@label" -#~ msgid "Change..." -#~ msgstr "Athraigh..." - -#~ msgctxt "@title:window" -#~ msgid "Change Comment" -#~ msgstr "Athraigh Nóta" - -#~ msgctxt "@title:window" -#~ msgid "Add Comment" -#~ msgstr "Cuir Nóta Leis" - -#~ msgid "Device name" -#~ msgstr "Ainm an ghléis" - -#~ msgid "Encoding:" -#~ msgstr "Ionchódú:" - -#~ msgid "Open" -#~ msgstr "Oscail" - -#~ msgid "Save As" -#~ msgstr "Sábháil Mar" - -#~ msgid "*|All files" -#~ msgstr "*|Gach comhad" - -# need not all be files, so use "mír" vs. "comhad" -#~ msgctxt "@item:intable" -#~ msgid "%1 item" -#~ msgid_plural "%1 items" -#~ msgstr[0] "%1 mhír" -#~ msgstr[1] "%1 mhír" -#~ msgstr[2] "%1 mhír" -#~ msgstr[3] "%1 mír" -#~ msgstr[4] "%1 mír" - -#~ msgctxt "@label" -#~ msgid "Comment" -#~ msgstr "Nóta" - -#~ msgctxt "@label" -#~ msgid "Modified" -#~ msgstr "Athraithe" - -#~ msgctxt "@label" -#~ msgid "Owner" -#~ msgstr "Úinéir" - -#~ msgctxt "@label" -#~ msgid "Permissions" -#~ msgstr "Ceadanna" - -#~ msgctxt "@label" -#~ msgid "Rating" -#~ msgstr "Rátáil" - -#~ msgctxt "@label" -#~ msgid "Size" -#~ msgstr "Méid" - -#~ msgctxt "@label" -#~ msgid "Tags" -#~ msgstr "Clibeanna" - -#~ msgctxt "@label" -#~ msgid "Total Size" -#~ msgstr "Méid Iomlán" - -#~ msgctxt "@label" -#~ msgid "Type" -#~ msgstr "Cineál" - -#~ msgid "KFileMetaDataReader" -#~ msgstr "KFileMetaDataReader" - -#~ msgid "KFileMetaDataReader can be used to read metadata from a file" -#~ msgstr "" -#~ "Is féidir KFileMetaDataReader a úsáid chun meiteashonraí a léamh ó chomhad" - -#~ msgid "(C) 2011, Peter Penz" -#~ msgstr "© 2011, Peter Penz" - -#~ msgid "Peter Penz" -#~ msgstr "Peter Penz" - -#~ msgid "Current maintainer" -#~ msgstr "Suíomh reatha" - -#~ msgid "Only the meta data that is part of the file is read" -#~ msgstr "Ní léitear ach na meiteashonraí atá cuid den chomhad" - -#~ msgid "List of URLs where the meta-data should be read from" -#~ msgstr "Liosta URLanna ar chóir meiteashonraí a léamh uathu" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "&Share" -#~ msgstr "&Comhroinn" - -#~ msgid "Only folders in your home folder can be shared." -#~ msgstr "Ní féidir ach fillteáin i d'fhillteán baile a chomhroinnt." - -#~ msgid "Not shared" -#~ msgstr "Gan chomhroinnt" - -#~ msgid "Shared" -#~ msgstr "Comhroinnte" - -#~ msgid "" -#~ "Sharing this folder makes it available under Linux/UNIX (NFS) and Windows " -#~ "(Samba)." -#~ msgstr "" -#~ "Comhroinn an fillteán seo chun é a chur ar fáil faoi Linux/UNIX (NFS) " -#~ "agus Windows (Samba)." - -#~ msgid "You can also reconfigure file sharing authorization." -#~ msgstr "Is féidir rialacha údaraithe do chomhroinnt comhad a athrú freisin." - -#~ msgid "Configure File Sharing..." -#~ msgstr "Cumraigh Comhroinnt na gComhad..." - -#~ msgid "" -#~ "Error running 'filesharelist'. Check if installed and in $PATH or /usr/" -#~ "sbin." -#~ msgstr "" -#~ "Earráid agus 'filesharelist' á thosú. Bí cinnte go bhfuil sé suiteáilte " -#~ "agus i do $PATH nó i /usr/sbin." - -#~ msgid "You need to be authorized to share folders." -#~ msgstr "Tá ceadanna de dhíth ort chun fillteáin a chomhroinnt." - -#~ msgid "File sharing is disabled." -#~ msgstr "Tá comhroinnt na gcomhad díchumasaithe." - -#~ msgid "Sharing folder '%1' failed." -#~ msgstr "Níorbh fhéidir fillteán '%1' a chomhroinnt." - -#~ msgid "" -#~ "An error occurred while trying to share folder '%1'. Make sure that the " -#~ "Perl script 'fileshareset' is set suid root." -#~ msgstr "" -#~ "Tharla earráid agus fillteán '%1' á chomhroinnt. Bí cinnte gur 'suid " -#~ "root' é an script Perl 'fileshareset'." - -#~ msgid "Unsharing folder '%1' failed." -#~ msgstr "Níorbh fhéidir fillteán '%1' a dhí-chomhroinnt." - -#~ msgid "" -#~ "An error occurred while trying to unshare folder '%1'. Make sure that the " -#~ "Perl script 'fileshareset' is set suid root." -#~ msgstr "" -#~ "Tharla earráid agus fillteán '%1' á dhí-chomhroinnt. Bí cinnte gur 'suid " -#~ "root' é an script Perl 'fileshareset'." - -#~ msgctxt "@title:window" -#~ msgid "Configure Shown Data" -#~ msgstr "Cumraigh na Sonraí le Taispeáint" - -#~ msgctxt "@label::textbox" -#~ msgid "Select which data should be shown:" -#~ msgstr "Roghnigh na sonraí ba mhaith leat taispeáint:" - -#~ msgctxt "@action:button" -#~ msgid "Configure..." -#~ msgstr "Cumraigh..." - -#~ msgctxt "@title:tab" -#~ msgid "Information" -#~ msgstr "Eolas" - -#~ msgctxt "@label creation date" -#~ msgid "Created" -#~ msgstr "Cruthaithe" - -#~ msgctxt "@label file content size" -#~ msgid "Size" -#~ msgstr "Méid" - -#~ msgctxt "@label file depends from" -#~ msgid "Depends" -#~ msgstr "Braitheann" - -#~ msgctxt "@label" -#~ msgid "Description" -#~ msgstr "Cur Síos" - -#~ msgctxt "@label Software used to generate content" -#~ msgid "Generator" -#~ msgstr "Gineadóir" - -#~ msgctxt "" -#~ "@label see http://www.semanticdesktop.org/ontologies/2007/01/19/" -#~ "nie#hasPart" -#~ msgid "Has Part" -#~ msgstr "Comhpháirt Aige" - -#~ msgctxt "" -#~ "@label see http://www.semanticdesktop.org/ontologies/2007/01/19/" -#~ "nie#hasLogicalPart" -#~ msgid "Has Logical Part" -#~ msgstr "Comhpháirt Loighciúil Aige" - -#~ msgctxt "@label parent directory" -#~ msgid "Part of" -#~ msgstr "Cuid de" - -#~ msgctxt "@label" -#~ msgid "Keyword" -#~ msgstr "Lorgfhocal" - -#~ msgctxt "@label modified date of file" -#~ msgid "Modified" -#~ msgstr "Athraithe" - -#~ msgctxt "@label" -#~ msgid "MIME Type" -#~ msgstr "Cineál MIME" - -#~ msgctxt "@label" -#~ msgid "Content" -#~ msgstr "Inneachar" - -#~ msgctxt "@label" -#~ msgid "Related To" -#~ msgstr "Baint Le" - -#~ msgctxt "@label" -#~ msgid "Subject" -#~ msgstr "Ábhar" - -#~ msgctxt "@label music title" -#~ msgid "Title" -#~ msgstr "Teideal" - -#~ msgctxt "@label file URL" -#~ msgid "Location" -#~ msgstr "Suíomh" - -#~ msgctxt "@label" -#~ msgid "Creator" -#~ msgstr "Cruthaitheoir" - -#~ msgctxt "@label" -#~ msgid "Average Bitrate" -#~ msgstr "Meánráta Giotán" - -#~ msgctxt "@label" -#~ msgid "Channels" -#~ msgstr "Cainéil" - -#~ msgctxt "@label number of characters" -#~ msgid "Characters" -#~ msgstr "Carachtair" - -#~ msgctxt "@label" -#~ msgid "Codec" -#~ msgstr "Codec" - -#~ msgctxt "@label" -#~ msgid "Color Depth" -#~ msgstr "Doimhneacht Datha" - -#~ msgctxt "@label" -#~ msgid "Duration" -#~ msgstr "Aga" - -#~ msgctxt "@label" -#~ msgid "Filename" -#~ msgstr "Ainm Comhaid" - -#~ msgctxt "@label" -#~ msgid "Hash" -#~ msgstr "Hais" - -#~ msgctxt "@label" -#~ msgid "Height" -#~ msgstr "Airde" - -#~ msgctxt "@label" -#~ msgid "Interlace Mode" -#~ msgstr "Mód Crosfhite" - -#~ msgctxt "@label number of lines" -#~ msgid "Lines" -#~ msgstr "Línte" - -#~ msgctxt "@label" -#~ msgid "Programming Language" -#~ msgstr "Teanga Ríomhchlárúcháin" - -#~ msgctxt "@label" -#~ msgid "Sample Rate" -#~ msgstr "Ráta Samplála" - -#~ msgctxt "@label" -#~ msgid "Width" -#~ msgstr "Leithead" - -#~ msgctxt "@label number of words" -#~ msgid "Words" -#~ msgstr "Focail" - -#~ msgctxt "@label EXIF aperture value" -#~ msgid "Aperture" -#~ msgstr "Cró" - -#~ msgctxt "@label EXIF" -#~ msgid "Exposure Bias Value" -#~ msgstr "Laofacht Nochta" - -#~ msgctxt "@label EXIF" -#~ msgid "Exposure Time" -#~ msgstr "Am Nochta" - -#~ msgctxt "@label EXIF" -#~ msgid "Flash" -#~ msgstr "Splanc" - -#~ msgctxt "@label EXIF" -#~ msgid "Focal Length" -#~ msgstr "Fad Fócasach" - -#~ msgctxt "@label EXIF" -#~ msgid "Focal Length 35 mm" -#~ msgstr "Fad Fócasach 35mm" - -#~ msgctxt "@label EXIF" -#~ msgid "ISO Speed Ratings" -#~ msgstr "Rátálacha Luais ISO" - -#~ msgctxt "@label EXIF" -#~ msgid "Make" -#~ msgstr "Déanamh" - -#~ msgctxt "@label EXIF" -#~ msgid "Metering Mode" -#~ msgstr "Mód Méadraithe" - -#~ msgctxt "@label EXIF" -#~ msgid "Model" -#~ msgstr "Samhail" - -#~ msgctxt "@label EXIF" -#~ msgid "Orientation" -#~ msgstr "Treoshuíomh" - -#~ msgctxt "@label EXIF" -#~ msgid "White Balance" -#~ msgstr "Cothromaíocht Bhán" - -#~ msgctxt "@label video director" -#~ msgid "Director" -#~ msgstr "Stiúrthóir" - -#~ msgctxt "@label music genre" -#~ msgid "Genre" -#~ msgstr "Seánra" - -#~ msgctxt "@label music album" -#~ msgid "Album" -#~ msgstr "Albam" - -#~ msgctxt "@label" -#~ msgid "Performer" -#~ msgstr "Ealaíontóir" - -#~ msgctxt "@label" -#~ msgid "Release Date" -#~ msgstr "Dáta Foilsithe" - -#~ msgctxt "@label music track number" -#~ msgid "Track" -#~ msgstr "Amhrán" - -#~ msgctxt "@label resource created time" -#~ msgid "Resource Created" -#~ msgstr "Acmhainn Cruthaithe" - -#~ msgctxt "@label" -#~ msgid "Sub Resource" -#~ msgstr "Fo-acmhainn" - -#~ msgctxt "@label resource last modified" -#~ msgid "Resource Modified" -#~ msgstr "Athraíodh an Acmhainn" - -#~ msgctxt "@label" -#~ msgid "Numeric Rating" -#~ msgstr "Rátáil Uimhriúil" - -#~ msgctxt "@label" -#~ msgid "Copied From" -#~ msgstr "Cóipeáilte Ó" - -#~ msgctxt "@label" -#~ msgid "First Usage" -#~ msgstr "An Chéad Úsáid" - -#~ msgctxt "@label" -#~ msgid "Last Usage" -#~ msgstr "An Úsáid Deiridh" - -#~ msgctxt "@label" -#~ msgid "Usage Count" -#~ msgstr "Líon Úsáidte" - -#~ msgctxt "@label" -#~ msgid "Unix File Group" -#~ msgstr "Grúpa Comhaid Unix" - -#~ msgctxt "@label" -#~ msgid "Unix File Mode" -#~ msgstr "Mód Comhaid Unix" - -#~ msgctxt "@label" -#~ msgid "Unix File Owner" -#~ msgstr "Úinéir Comhaid Unix" - -#~ msgctxt "@label file type" -#~ msgid "Type" -#~ msgstr "Cineál" - -#~ msgctxt "@label Number of fuzzy translations" -#~ msgid "Fuzzy Translations" -#~ msgstr "Aistriúcháin Doiléire" - -#~ msgctxt "@label Name of last translator" -#~ msgid "Last Translator" -#~ msgstr "Aistritheoir Is Déanaí" - -#~ msgctxt "@label Number of obsolete translations" -#~ msgid "Obsolete Translations" -#~ msgstr "Aistriúcháin I Léig" - -#~ msgctxt "@label" -#~ msgid "Translation Source Date" -#~ msgstr "Dáta Fhoinse an Aistriúcháin" - -#~ msgctxt "@label Number of total translations" -#~ msgid "Total Translations" -#~ msgstr "Líon na nAistriúchán" - -#~ msgctxt "@label Number of translated strings" -#~ msgid "Translated" -#~ msgstr "Aistrithe" - -#~ msgctxt "@label" -#~ msgid "Translation Date" -#~ msgstr "Dáta an Aistriúcháin" - -#~ msgctxt "@label Number of untranslated strings" -#~ msgid "Untranslated" -#~ msgstr "Gan aistriú" - -#~ msgid "Known Applications" -#~ msgstr "Feidhmchláir Aitheanta" - -#~ msgid "Open With" -#~ msgstr "Oscail Le" - -#~ msgid "" -#~ "Select the program that should be used to open %1. If the " -#~ "program is not listed, enter the name or click the browse button." -#~ msgstr "" -#~ "Roghnaigh an ríomhchlár is mian leat a úsáid chun %1 a " -#~ "oscailt. Mura bhfuil an ríomhchlár sa liosta, cuir an t-ainm isteach nó " -#~ "cliceáil an cnaipe 'Brabhsáil'." - -#~ msgid "" -#~ "Choose the name of the program with which to open the selected files." -#~ msgstr "Roghnaigh ainm an chláir lena n-osclófar na comhaid roghnaithe." - -#~ msgid "Choose Application for %1" -#~ msgstr "Roghnaigh Feidhmchlár le haghaidh %1" - -#~ msgid "" -#~ "Select the program for the file type: %1. If the program is " -#~ "not listed, enter the name or click the browse button." -#~ msgstr "" -#~ "Roghnaigh an ríomhchlár is mian leat a úsáid chun comhaid den chineál " -#~ "seo a oscailt: %1. Mura bhfuil sé sa liosta, cuir an t-ainm " -#~ "isteach nó cliceáil an cnaipe 'Brabhsáil'." - -#~ msgid "Choose Application" -#~ msgstr "Roghnaigh Feidhmchlár" - -#~ msgid "" -#~ "Select a program. If the program is not listed, enter the name or " -#~ "click the browse button." -#~ msgstr "" -#~ "Roghnaigh ríomhchlár. Mura bhfuil an ceann atá uait sa liosta, cuir " -#~ "an t-ainm isteach nó cliceáil an cnaipe 'Brabhsáil'." - -#~ msgid "" -#~ "Following the command, you can have several place holders which will be " -#~ "replaced with the actual values when the actual program is run:\n" -#~ "%f - a single file name\n" -#~ "%F - a list of files; use for applications that can open several local " -#~ "files at once\n" -#~ "%u - a single URL\n" -#~ "%U - a list of URLs\n" -#~ "%d - the directory of the file to open\n" -#~ "%D - a list of directories\n" -#~ "%i - the icon\n" -#~ "%m - the mini-icon\n" -#~ "%c - the comment" -#~ msgstr "" -#~ "Tar éis an ordaithe, tig leat athróga áirithe a úsáid, agus cuirfear na " -#~ "luachanna oiriúnacha ina n-ionad nuair a chuirfidh tú an ríomhchlár i " -#~ "bhfeidhm:\n" -#~ "%f - ainm comhaid amháin\n" -#~ "%F - liosta comhad; le feidhmchláir ar féidir leo níos mó ná comhad " -#~ "amháin a oscailt\n" -#~ "%u - URL amháin\n" -#~ "%U - liosta URLanna\n" -#~ "%d - comhadlann ina bhfuil an comhad le hoscailt\n" -#~ "%D - liosta comhadlann\n" -#~ "%i - deilbhín\n" -#~ "%m - deilbhín beag\n" -#~ "%c - nóta" - -#~ msgid "Run in &terminal" -#~ msgstr "Rith i d&teirminéal" - -#~ msgid "&Do not close when command exits" -#~ msgstr "Ná &dún nuair a stopann an t-ordú" - -#~ msgid "&Remember application association for this type of file" -#~ msgstr "" -#~ "&Meabhraigh go bhfuil an feidhmchlár seo comhcheangailte leis an gcineál " -#~ "comhaid seo" - -#~ msgid "" -#~ "Could not extract executable name from '%1', please type a valid program " -#~ "name." -#~ msgstr "" -#~ "Níorbh fhéidir ainm an chláir inrite a fháil ó '%1'. Cuir ainm bailí " -#~ "isteach." - -#~ msgid "'%1' not found, please type a valid program name." -#~ msgstr "'%1' gan aimsiú. Cuir ainm bailí isteach." - -#~ msgid "P&review" -#~ msgstr "&Réamhamharc" - -#~ msgctxt "" -#~ "@title:group Title of a group that lets the user choose options about the " -#~ "terminal when launching a program" -#~ msgid "Terminal" -#~ msgstr "Teirminéal" - -#~ msgid "&Run in terminal" -#~ msgstr "&Rith i dteirminéal" - -#~ msgid "&Terminal options:" -#~ msgstr "&Roghanna an teirminéil:" - -#~ msgid "Do not &close when command exits" -#~ msgstr "Ná &dún nuair a stopann an t-ordú" - -#~ msgctxt "" -#~ "@title:group Title of a group that lets the user choose which user to use " -#~ "when launching a program" -#~ msgid "User" -#~ msgstr "Úsáideoir" - -#~ msgid "Ru&n as a different user" -#~ msgstr "Rith &mar úsáideoir eile" - -#~ msgid "&Username:" -#~ msgstr "&Ainm Úsáideora:" - -#~ msgctxt "" -#~ "@title:group Title of a group that lets the user choose options regargin " -#~ "program startup" -#~ msgid "Startup" -#~ msgstr "Tosú" - -#~ msgid "Enable &launch feedback" -#~ msgstr "Cumasaigh &aiseolas tosaithe" - -#~ msgid "&Place in system tray" -#~ msgstr "&Cuir i dtráidire an chórais" - -#~ msgid "&D-Bus registration:" -#~ msgstr "Clárú &D-Bus:" - -#~ msgid "None" -#~ msgstr "Neamhní" - -#~ msgid "&Description:" -#~ msgstr "&Cur Síos:" - -#~ msgid "Comm&ent:" -#~ msgstr "Nóta:" - -#~ msgid "Co&mmand:" -#~ msgstr "O&rdú:" - -#~ msgid "&Work path:" -#~ msgstr "&Conair oibre:" - -#~ msgid "&Supported file types:" -#~ msgstr "&Cineálacha comhaid a dtacaítear leo:" - -#~ msgid "Mimetype" -#~ msgstr "Cineál MIME" - -#~ msgid "Description" -#~ msgstr "Cur Síos" - -#~ msgid "Add..." -#~ msgstr "Cuir Leis..." - -#~ msgid "Remove" -#~ msgstr "Bain" - -#~ msgid "" -#~ "Click here to modify the way this application will run, launch feedback, " -#~ "D-Bus options or to run it as a different user." -#~ msgstr "" -#~ "Cliceáil anseo chun an tslí a ritheann an feidhmchlár seo a athrú, chun " -#~ "aiseolas a thosú, chun roghanna D-Bus a athrú, nó chun an feidhmchlár a " -#~ "rith mar úsáideoir eile." - -#~ msgid "Ad&vanced Options" -#~ msgstr "Ro&ghanna Casta" - -#~ msgid "Properties for %1" -#~ msgstr "Airíonna do %1" - -#~ msgid "Properties for 1 item" -#~ msgid_plural "Properties for %1 Selected Items" -#~ msgstr[0] "Airíonna do mhír amháin" -#~ msgstr[1] "Airíonna do %1 mhír roghnaithe" -#~ msgstr[2] "Airíonna do %1 mhír roghnaithe" -#~ msgstr[3] "Airíonna do %1 mír roghnaithe" -#~ msgstr[4] "Airíonna do %1 mír roghnaithe" - -#~ msgctxt "@title:tab File properties" -#~ msgid "&General" -#~ msgstr "&Ginearálta" - -#~ msgid "Type:" -#~ msgstr "Cineál:" - -#~ msgid "Create New File Type" -#~ msgstr "Cruthaigh Cineál Nua Comhaid" - -#~ msgid "Contents:" -#~ msgstr "Inneachar:" - -#~ msgid "Location:" -#~ msgstr "Suíomh:" - -#~ msgid "Size:" -#~ msgstr "Méid:" - -#~ msgid "Calculate" -#~ msgstr "Ríomh" - -#~ msgid "Stop" -#~ msgstr "Stad" - -#~ msgid "Refresh" -#~ msgstr "Athnuaigh" - -#~ msgid "Points to:" -#~ msgstr "Dírithe ar:" - -#~ msgid "Created:" -#~ msgstr "Cruthaithe:" - -#~ msgid "Modified:" -#~ msgstr "Athraithe:" - -#~ msgid "Accessed:" -#~ msgstr "Rochtain:" - -#~ msgid "Mounted on:" -#~ msgstr "Feistithe ar:" - -#~ msgid "Device usage:" -#~ msgstr "Úsáid an ghléis:" - -#~ msgctxt "Available space out of total partition size (percent used)" -#~ msgid "%1 free of %2 (%3% used)" -#~ msgstr "%1 saor as %2 (%3% in úsáid)" - -#~ msgid "" -#~ "Calculating... %1 (%2)\n" -#~ "%3, %4" -#~ msgstr "" -#~ "Á Ríomh... %1 (%2)\n" -#~ "%3, %4" - -#~ msgid "1 file" -#~ msgid_plural "%1 files" -#~ msgstr[0] "1 chomhad" -#~ msgstr[1] "2 chomhad" -#~ msgstr[2] "%1 chomhad" -#~ msgstr[3] "%1 gcomhad" -#~ msgstr[4] "%1 comhad" - -#~ msgid "1 sub-folder" -#~ msgid_plural "%1 sub-folders" -#~ msgstr[0] "1 fhofhillteán" -#~ msgstr[1] "2 fhofhillteán" -#~ msgstr[2] "%1 fhofhillteán" -#~ msgstr[3] "%1 bhfofhillteán" -#~ msgstr[4] "%1 fofhillteán" - -#~ msgid "Calculating..." -#~ msgstr "Á Áireamh..." - -#~ msgid "At least %1" -#~ msgstr "%1 ar a laghad" - -#~ msgid "The new file name is empty." -#~ msgstr "Is folamh é an t-ainm comhaid nua." - -#~ msgid "" -#~ "Could not save properties. You do not have sufficient access to write " -#~ "to %1." -#~ msgstr "" -#~ "Níorbh fhéidir na hairíonna a shábháil. Níl cead agat scríobh ar " -#~ "%1." - -# applies to files, folders, and "mixed" -#~ msgid "Forbidden" -#~ msgstr "Toirmiscthe" - -# applies to files -#~ msgid "Can Read" -#~ msgstr "Inléite" - -# applies to files -#~ msgid "Can Read & Write" -#~ msgstr "Inléite agus Inscríofa" - -# applies to folders -#~ msgid "Can View Content" -#~ msgstr "Ábhar Infheicthe" - -# applies to folders -#~ msgid "Can View & Modify Content" -#~ msgstr "Ábhar Infheicthe agus Inathraithe" - -# applies to "mixed" -#~ msgid "Can View Content & Read" -#~ msgstr "Ábhar Infheicthe agus Inléite" - -# applies to "mixed" -#~ msgid "Can View/Read & Modify/Write" -#~ msgstr "Infheicthe/Inléite agus Inathraithe/Inscríofa" - -#~ msgid "&Permissions" -#~ msgstr "&Ceadanna" - -#~ msgid "Access Permissions" -#~ msgstr "Ceadanna Rochtana" - -#~ msgid "This file is a link and does not have permissions." -#~ msgid_plural "All files are links and do not have permissions." -#~ msgstr[0] "Is nasc é an comhad seo agus níl ceadanna aige." -#~ msgstr[1] "Tá gach comhad ina nasc agus nach bhfuil ceadanna acu." -#~ msgstr[2] "Tá gach comhad ina nasc agus nach bhfuil ceadanna acu." -#~ msgstr[3] "Tá gach comhad ina nasc agus nach bhfuil ceadanna acu." -#~ msgstr[4] "Tá gach comhad ina nasc agus nach bhfuil ceadanna acu." - -#~ msgid "Only the owner can change permissions." -#~ msgstr "Is féidir leis an úinéir amháin ceadanna a athrú." - -#~ msgid "O&wner:" -#~ msgstr "Úi&néir:" - -#~ msgid "Specifies the actions that the owner is allowed to do." -#~ msgstr "Sonraigh na gníomhartha atá ceadaithe don úinéir." - -#~ msgid "Gro&up:" -#~ msgstr "&Grúpa:" - -#~ msgid "" -#~ "Specifies the actions that the members of the group are allowed to do." -#~ msgstr "Sonraigh na gníomhartha atá ceadaithe do bhaill an ghrúpa." - -#~ msgid "O&thers:" -#~ msgstr "&Eile:" - -#~ msgid "" -#~ "Specifies the actions that all users, who are neither owner nor in the " -#~ "group, are allowed to do." -#~ msgstr "Sonraigh na gníomhartha atá ceadaithe do gach duine eile." - -#~ msgid "Only own&er can rename and delete folder content" -#~ msgstr "" -#~ "Is féidi&r leis an úinéir amháin fillteán a athainmniú nó a inneachar a " -#~ "scriosadh" - -#~ msgid "Is &executable" -#~ msgstr "&Inrite" - -#~ msgid "" -#~ "Enable this option to mark the file as executable. This only makes sense " -#~ "for programs and scripts. It is required when you want to execute them." -#~ msgstr "" -#~ "Cumasaigh an rogha seo chun an comhad a mharcáil mar inrite. Ní dhéantar " -#~ "é seo ach ar ríomhchláir agus ar scripteanna. Tá gá leis más mian leat " -#~ "iad a rith." - -#~ msgid "A&dvanced Permissions" -#~ msgstr "C&eadanna Casta" - -#~ msgid "Ownership" -#~ msgstr "Úinéireacht" - -#~ msgid "User:" -#~ msgstr "Úsáideoir:" - -#~ msgid "Group:" -#~ msgstr "Grúpa:" - -#~ msgid "Apply changes to all subfolders and their contents" -#~ msgstr "" -#~ "Cuir na hathruithe i bhfeidhm ar gach fofhillteán agus ar a n-inneachar" - -#~ msgid "Advanced Permissions" -#~ msgstr "Ceadanna Casta" - -#~ msgid "Class" -#~ msgstr "Aicme" - -#~ msgid "" -#~ "Show\n" -#~ "Entries" -#~ msgstr "" -#~ "Taispeáin\n" -#~ "Iontrálacha" - -#~ msgid "Read" -#~ msgstr "Léigh" - -#~ msgid "This flag allows viewing the content of the folder." -#~ msgstr "Ceadaíonn an bratach seo inneachar an fhillteáin a bheith léite." - -#~ msgid "The Read flag allows viewing the content of the file." -#~ msgstr "Ceadaíonn an bratach Inléite inneachar an chomhaid a bheith léite." - -#~ msgid "" -#~ "Write\n" -#~ "Entries" -#~ msgstr "" -#~ "Scríobh\n" -#~ "Iontrálacha" - -#~ msgid "Write" -#~ msgstr "Scríobh" - -#~ msgid "The Write flag allows modifying the content of the file." -#~ msgstr "" -#~ "Ceadaíonn an bhratach 'Inscríofa' inneachar an chomhaid a bheith " -#~ "athraithe." - -#~ msgctxt "Enter folder" -#~ msgid "Enter" -#~ msgstr "Téigh Isteach" - -#~ msgid "Enable this flag to allow entering the folder." -#~ msgstr "Ceadaíonn an bhratach seo dul isteach san fhillteán." - -#~ msgid "Exec" -#~ msgstr "Rith" - -#~ msgid "Enable this flag to allow executing the file as a program." -#~ msgstr "Ceadaíonn an bhratach seo an comhad a rith mar ríomhchlár." - -#~ msgid "Special" -#~ msgstr "Speisialta" - -#~ msgid "" -#~ "Special flag. Valid for the whole folder, the exact meaning of the flag " -#~ "can be seen in the right hand column." -#~ msgstr "" -#~ "Bratach speisialta. Bailí don fhillteán iomlán. Tig leat brí bheacht na " -#~ "brataí a fheiceáil sa cholún ar thaobh na láimhe dheise." - -#~ msgid "" -#~ "Special flag. The exact meaning of the flag can be seen in the right hand " -#~ "column." -#~ msgstr "" -#~ "Bratach speisialta. Tig leat brí bheacht na brataí a fheiceáil sa cholún " -#~ "ar thaobh na láimhe dheise." - -#~ msgid "User" -#~ msgstr "Úsáideoir" - -#~ msgid "Group" -#~ msgstr "Grúpa" - -#~ msgid "Set UID" -#~ msgstr "Socraigh Aitheantas an Úsáideora" - -#~ msgid "" -#~ "If this flag is set, the owner of this folder will be the owner of all " -#~ "new files." -#~ msgstr "" -#~ "Leis an mbratach seo, beidh úinéir an fhillteáin ina (h)úinéir ar gach " -#~ "comhad nua." - -#~ msgid "" -#~ "If this file is an executable and the flag is set, it will be executed " -#~ "with the permissions of the owner." -#~ msgstr "" -#~ "Má tá an comhad seo inrite agus má tá an bhratach socraithe, beidh sé " -#~ "rite le ceadanna an úinéara." - -#~ msgid "Set GID" -#~ msgstr "Socraigh Aitheantas an Ghrúpa" - -#~ msgid "" -#~ "If this flag is set, the group of this folder will be set for all new " -#~ "files." -#~ msgstr "" -#~ "Leis an mbratach seo, úsáidfear grúpa an fhillteáin mar ghrúpa gach " -#~ "comhaid nua." - -#~ msgid "" -#~ "If this file is an executable and the flag is set, it will be executed " -#~ "with the permissions of the group." -#~ msgstr "" -#~ "Má tá an comhad seo inrite agus má tá an bhratach socraithe, beidh sé " -#~ "rite le ceadanna an ghrúpa." - -#~ msgctxt "File permission" -#~ msgid "Sticky" -#~ msgstr "Greamaitheach" - -#~ msgid "" -#~ "If the Sticky flag is set on a folder, only the owner and root can delete " -#~ "or rename files. Otherwise everybody with write permissions can do this." -#~ msgstr "" -#~ "Má tá an bhratach 'Greamaitheach' socraithe ar fhillteán, is é an t-" -#~ "úinéir agus an forúsáideoir amháin atá ábalta comhaid a scriosadh nó a " -#~ "athainmniú. Gan an bhratach seo, tá gach duine a bhfuil cead scríofa ar " -#~ "an bhfillteán aige in ann na rudaí seo a dhéanamh." - -#~ msgid "" -#~ "The Sticky flag on a file is ignored on Linux, but may be used on some " -#~ "systems" -#~ msgstr "" -#~ "Déantar neamhaird den bhratach 'Greamaitheach' ar Linux, ach baintear " -#~ "úsáid aisti ar chórais áirithe" - -#~ msgid "Link" -#~ msgstr "Nasc" - -#~ msgid "Varying (No Change)" -#~ msgstr "Athraitheach (Gan Athrú)" - -#~ msgid "This file uses advanced permissions" -#~ msgid_plural "These files use advanced permissions." -#~ msgstr[0] "Úsáideann an comhad seo ardcheadanna." -#~ msgstr[1] "Úsáideann na comhaid seo ardcheadanna." -#~ msgstr[2] "Úsáideann na comhaid seo ardcheadanna." -#~ msgstr[3] "Úsáideann na comhaid seo ardcheadanna." -#~ msgstr[4] "Úsáideann na comhaid seo ardcheadanna." - -#~ msgid "This folder uses advanced permissions." -#~ msgid_plural "These folders use advanced permissions." -#~ msgstr[0] "Úsáideann an fillteán seo ardcheadanna." -#~ msgstr[1] "Úsáideann na fillteáin seo ardcheadanna." -#~ msgstr[2] "Úsáideann na fillteáin seo ardcheadanna." -#~ msgstr[3] "Úsáideann na fillteáin seo ardcheadanna." -#~ msgstr[4] "Úsáideann na fillteáin seo ardcheadanna." - -#~ msgid "These files use advanced permissions." -#~ msgstr "Úsáideann na comhaid seo ardcheadanna." - -#~ msgid "U&RL" -#~ msgstr "U&RL" - -#~ msgid "URL:" -#~ msgstr "URL:" - -#~ msgid "De&vice" -#~ msgstr "&Gléas" - -#~ msgid "Device (/dev/fd0):" -#~ msgstr "Gléas (/dev/fd0):" - -#~ msgid "Device:" -#~ msgstr "Gléas:" - -#~ msgid "Read only" -#~ msgstr "Inléite amháin" - -#~ msgid "File system:" -#~ msgstr "Córas comhaid:" - -#~ msgid "Mount point (/mnt/floppy):" -#~ msgstr "Pointe feistithe (/mnt/floppy):" - -#~ msgid "Mount point:" -#~ msgstr "Pointe feistithe:" - -#~ msgid "&Application" -#~ msgstr "&Feidhmchlár" - -#~ msgid "Select one or more file types to add:" -#~ msgstr "Roghnaigh cineál nó cineálacha comhaid le cur leis:" - -#~ msgid "Only executables on local file systems are supported." -#~ msgstr "Tacaítear le comhaid inrite ar chórais comhad logánta amháin." - -#~ msgid "Advanced Options for %1" -#~ msgstr "Ardroghanna le haghaidh %1" - -#~ msgid "Open file dialog" -#~ msgstr "Oscail dialóg chomhaid" - -#~ msgid "Blocked request." -#~ msgstr "Iarratas a gcuireadh cosc air." - -#~ msgid "Unknown HTTP verb." -#~ msgstr "Briathar anaithnid HTTP." - -#~ msgid "" -#~ "Could not modify the ownership of file %1. You have " -#~ "insufficient access to the file to perform the change." -#~ msgstr "" -#~ "Níorbh fhéidir úinéir comhaid %1 a athrú. Níl cead agat an t-" -#~ "athrú seo a chur i bhfeidhm." - -#~ msgid "&Skip File" -#~ msgstr "&Gabh Thar Chomhad" - -#~ msgid "Unable to create io-slave: %1" -#~ msgstr "Ní féidir sclábhaí I/A a chruthú: %1" - -#~ msgid "Folder Already Exists" -#~ msgstr "Tá an chomhadlann ann cheana" - -#~ msgid "File Already Exists" -#~ msgstr "Tá an comhad ann cheana" - -#~ msgid "Already Exists as Folder" -#~ msgstr "Ann cheana mar chomhadlann" - -#~ msgid "Creating directory" -#~ msgstr "Comhadlann á cruthú" - -#~ msgid "Directory" -#~ msgstr "Comhadlann" - -# not "Á" here -#~ msgid "Moving" -#~ msgstr "Bogadh" - -#~ msgctxt "The source of a file operation" -#~ msgid "Source" -#~ msgstr "Comhad Foinse" - -#~ msgctxt "The destination of a file operation" -#~ msgid "Destination" -#~ msgstr "Comhad Sprice" - -# not "Á" here -#~ msgid "Deleting" -#~ msgstr "Scriosadh" - -#~ msgid "File" -#~ msgstr "Comhad" - -#~ msgid "Und&o" -#~ msgstr "&Cealaigh" - -#~ msgid "Und&o: Copy" -#~ msgstr "&Cealaigh: Cóipeáil" - -#~ msgid "Und&o: Link" -#~ msgstr "&Cealaigh: Nasc" - -#~ msgid "Und&o: Move" -#~ msgstr "&Cealaigh: Bogadh" - -#~ msgid "Und&o: Rename" -#~ msgstr "&Cealaigh: Athainmniú" - -#~ msgid "Und&o: Trash" -#~ msgstr "&Cealaigh: Cur sa Bhruscar" - -#~ msgid "Und&o: Create Folder" -#~ msgstr "&Cealaigh: Fillteán a Chruthú" - -#~ msgid "Und&o: Create File" -#~ msgstr "&Cealaigh: Comhad a Chruthú" - -#~ msgid "" -#~ "The file %1 was copied from %2, but since then it has apparently been " -#~ "modified at %3.\n" -#~ "Undoing the copy will delete the file, and all modifications will be " -#~ "lost.\n" -#~ "Are you sure you want to delete %4?" -#~ msgstr "" -#~ "Cóipeáladh comhad %1 ó %2, ach de réir cosúlachta mionathraíodh é ó shin " -#~ "ag %3.\n" -#~ "Má chealaíonn tú an chóipeáil, scriosfar an comhad agus caillfidh tú gach " -#~ "mionathrú.\n" -#~ "An bhfuil tú cinnte gur mhaith leat %4 a scriosadh?" - -#~ msgid "Undo File Copy Confirmation" -#~ msgstr "Deimhniú: Cealaigh Cóipeáil an Chomhaid" - -#~ msgid "1 day %2" -#~ msgid_plural "%1 days %2" -#~ msgstr[0] "%1 lá %2" -#~ msgstr[1] "%1 lá %2" -#~ msgstr[2] "%1 lá %2" -#~ msgstr[3] "%1 lá %2" -#~ msgstr[4] "%1 lá %2" - -#~ msgid "%1 Item" -#~ msgid_plural "%1 Items" -#~ msgstr[0] "%1 Mhír" -#~ msgstr[1] "%1 Mhír" -#~ msgstr[2] "%1 Mhír" -#~ msgstr[3] "%1 Mír" -#~ msgstr[4] "%1 Mír" - -#~ msgid "1 Folder" -#~ msgid_plural "%1 Folders" -#~ msgstr[0] "1 Fhillteán" -#~ msgstr[1] "%1 Fhillteán" -#~ msgstr[2] "%1 Fhillteán" -#~ msgstr[3] "%1 bhFillteán" -#~ msgstr[4] "%1 Fillteán" - -#~ msgid "1 File" -#~ msgid_plural "%1 Files" -#~ msgstr[0] "1 Chomhad" -#~ msgstr[1] "%1 Chomhad" -#~ msgstr[2] "%1 Chomhad" -#~ msgstr[3] "%1 gComhad" -#~ msgstr[4] "%1 Comhad" - -#~ msgctxt "folders, files (size)" -#~ msgid "%1, %2 (%3)" -#~ msgstr "%1, %2 (%3)" - -#~ msgctxt "folders, files" -#~ msgid "%1, %2" -#~ msgstr "%1, %2" - -#~ msgctxt "files (size)" -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgctxt "items: folders, files (size)" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgid "Could not read %1." -#~ msgstr "Níorbh fhéidir %1 a léamh." - -#~ msgid "Could not write to %1." -#~ msgstr "Níorbh fhéidir scríobh ar %1." - -#~ msgid "Could not start process %1." -#~ msgstr "Níorbh fhéidir tús a chur le próiseas %1." - -#~ msgid "" -#~ "Internal Error\n" -#~ "Please send a full bug report at http://bugs.kde.org\n" -#~ "%1" -#~ msgstr "" -#~ "Earráid inmheánach\n" -#~ "Seol tuairisc iomlán ag http://bugs.kde.org, le do thoil\n" -#~ "%1" - -#~ msgid "Malformed URL %1." -#~ msgstr "URL míchumtha %1." - -#~ msgid "The protocol %1 is not supported." -#~ msgstr "Ní ghlactar le prótacal %1." - -#~ msgid "The protocol %1 is only a filter protocol." -#~ msgstr "Is prótacal scagaire amháin é %1." - -#~ msgid "%1 is a folder, but a file was expected." -#~ msgstr "Is fillteán é %1, ach bhíothas ag súil le comhad." - -#~ msgid "%1 is a file, but a folder was expected." -#~ msgstr "Is comhad é %1, ach bhíothas ag súil le fillteán." - -#~ msgid "The file or folder %1 does not exist." -#~ msgstr "Níl comhad nó comhadlann %1 ann." - -#~ msgid "A file named %1 already exists." -#~ msgstr "Tá comhad darb ainm %1 ann cheana." - -#~ msgid "A folder named %1 already exists." -#~ msgstr "Tá comhadlann darb ainm %1 ann cheana." - -#~ msgid "No hostname specified." -#~ msgstr "Níor sonraíodh ainm óstríomhaire." - -#~ msgid "Unknown host %1" -#~ msgstr "Óstríomhaire anaithnid %1" - -#~ msgid "Access denied to %1." -#~ msgstr "Diúltaíodh cead rochtana %1." - -#~ msgid "" -#~ "Access denied.\n" -#~ "Could not write to %1." -#~ msgstr "" -#~ "Cead rochtana diúltaithe.\n" -#~ "Níorbh fhéidir scríobh %1." - -#~ msgid "Could not enter folder %1." -#~ msgstr "Níorbh fhéidir dul isteach i bhfillteán %1." - -#~ msgid "The protocol %1 does not implement a folder service." -#~ msgstr "Ní chuireann prótacal %1 seirbhís fillteáin i ngníomh." - -#~ msgid "Found a cyclic link in %1." -#~ msgstr "Aimsíodh nasc ciorclach i %1." - -#~ msgid "Found a cyclic link while copying %1." -#~ msgstr "Aimsíodh nasc ciorclach agus %1 á chóipeáil." - -#~ msgid "Could not create socket for accessing %1." -#~ msgstr "Níorbh fhéidir soicéad a chruthú chun %1 a rochtain." - -#~ msgid "Could not connect to host %1." -#~ msgstr "Níorbh fhéidir dul i dteagmháil le hóstríomhaire %1." - -#~ msgid "Connection to host %1 is broken." -#~ msgstr "Briseadh an ceangal le hóstríomhaire %1." - -#~ msgid "The protocol %1 is not a filter protocol." -#~ msgstr "Ní prótacal scagaire é %1." - -#~ msgid "" -#~ "Could not mount device.\n" -#~ "The reported error was:\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir an gléas a fheistiú.\n" -#~ "Fuarthas an earráid seo:\n" -#~ "%1" - -#~ msgid "" -#~ "Could not unmount device.\n" -#~ "The reported error was:\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir an gléas a dhífheistiú.\n" -#~ "Fuarthas an earráid seo:\n" -#~ "%1" - -#~ msgid "Could not read file %1." -#~ msgstr "Níorbh fhéidir comhad %1 a léamh." - -#~ msgid "Could not write to file %1." -#~ msgstr "Níorbh fhéidir scríobh sa chomhad %1." - -#~ msgid "Could not bind %1." -#~ msgstr "Níorbh fhéidir %1 a cheangal." - -#~ msgid "Could not listen %1." -#~ msgstr "Níorbh fhéidir éisteacht le %1." - -#~ msgid "Could not accept %1." -#~ msgstr "Níorbh fhéidir glacadh le %1." - -#~ msgid "Could not access %1." -#~ msgstr "Níorbh fhéidir %1 a rochtain." - -#~ msgid "Could not terminate listing %1." -#~ msgstr "Níorbh fhéidir éisteacht le %1 a stopadh." - -#~ msgid "Could not make folder %1." -#~ msgstr "Níorbh fhéidir fillteán %1 a dhéanamh." - -#~ msgid "Could not remove folder %1." -#~ msgstr "Níorbh fhéidir fillteán %1 a bhaint." - -#~ msgid "Could not resume file %1." -#~ msgstr "Níorbh fhéidir comhad %1 a atosú." - -#~ msgid "Could not rename file %1." -#~ msgstr "Níorbh fhéidir comhad %1 a athainmniú." - -#~ msgid "Could not change permissions for %1." -#~ msgstr "Níorbh fhéidir na ceadanna ar %1 a athrú." - -#~ msgid "Could not change ownership for %1." -#~ msgstr "Níorbh fhéidir úinéir %1 a athrú." - -#~ msgid "Could not delete file %1." -#~ msgstr "Níorbh fhéidir comhad %1 a scriosadh." - -#~ msgid "The process for the %1 protocol died unexpectedly." -#~ msgstr "Fuair próiseas an phrótacail %1 bás go tobann." - -#~ msgid "" -#~ "Error. Out of memory.\n" -#~ "%1" -#~ msgstr "" -#~ "Earráid. Cuimhne Ídithe.\n" -#~ "%1\"\"" - -#~ msgid "" -#~ "Unknown proxy host\n" -#~ "%1" -#~ msgstr "" -#~ "Seach-fhreastalaí anaithnid\n" -#~ "%1" - -#~ msgid "Authorization failed, %1 authentication not supported" -#~ msgstr "Theip ar fíordheimhniú, ní thacaítear le fíordheimhniú %1" - -#~ msgid "" -#~ "User canceled action\n" -#~ "%1" -#~ msgstr "" -#~ "Gníomh cealaithe ag an úsáideoir\n" -#~ "%1" - -#~ msgid "" -#~ "Internal error in server\n" -#~ "%1" -#~ msgstr "" -#~ "Earráid inmheánach sa bhfreastalaí\n" -#~ "%1" - -#~ msgid "" -#~ "Timeout on server\n" -#~ "%1" -#~ msgstr "" -#~ "Freastalaí thar am\n" -#~ "%1" - -#~ msgid "" -#~ "Unknown error\n" -#~ "%1" -#~ msgstr "" -#~ "Earráid anaithnid\n" -#~ "%1" - -#~ msgid "" -#~ "Unknown interrupt\n" -#~ "%1" -#~ msgstr "" -#~ "Idirbhriseadh anaithnid\n" -#~ "%1\"\"" - -#~ msgid "" -#~ "Could not delete original file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "Níorbh fhéidir an bunchomhad %1 a scriosadh.\n" -#~ "Féach an bhfuil an cead cuí agat.\"\"" - -#~ msgid "" -#~ "Could not delete partial file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "Níorbh fhéidir páirtchomhad %1 a scriosadh.\n" -#~ "Seiceáil na ceadanna." - -#~ msgid "" -#~ "Could not rename original file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "Níorbh fhéidir bunchomhad %1 a athainmniú.\n" -#~ "Seiceáil na ceadanna." - -#~ msgid "" -#~ "Could not rename partial file %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "Níorbh fhéidir páirtchomhad %1 a athainmniú.\n" -#~ "Seiceáil na ceadanna." - -#~ msgid "" -#~ "Could not create symlink %1.\n" -#~ "Please check permissions." -#~ msgstr "" -#~ "Níorbh fhéidir nasc siombalach %1 a chruthú.\n" -#~ "Seiceáil na ceadanna." - -#~ msgid "" -#~ "Could not write file %1.\n" -#~ "Disk full." -#~ msgstr "" -#~ "Níorbh fhéidir comhad %1 a scríobh.\n" -#~ "Tá an diosca lán." - -#~ msgid "" -#~ "The source and destination are the same file.\n" -#~ "%1" -#~ msgstr "" -#~ "Is ionann an comhad foinse agus an comhad sprice.\n" -#~ "%1" - -#~ msgid "%1 is required by the server, but is not available." -#~ msgstr "Tá %1 de dhíth ar an bhfreastalaí, ach níl sé ar fáil." - -#~ msgid "Access to restricted port in POST denied." -#~ msgstr "Cead rochtana diúltaithe ar phort srianta i POST." - -#~ msgid "" -#~ "Unknown error code %1\n" -#~ "%2\n" -#~ "Please send a full bug report at http://bugs.kde.org." -#~ msgstr "" -#~ "Cód anaithnid earráide %1\n" -#~ "%2\n" -#~ "Seol tuairisc fhabht iomlán chugainn le do thoil; féach http://bugs.kde." -#~ "org.\"\"" - -#~ msgid "Opening connections is not supported with the protocol %1." -#~ msgstr "Ní thacaítear le hoscailt ceangal le prótacal %1." - -#~ msgid "Closing connections is not supported with the protocol %1." -#~ msgstr "Ní thacaítear le dúnadh ceangal le prótacal %1." - -#~ msgid "Accessing files is not supported with the protocol %1." -#~ msgstr "Ní thacaítear le rochtain comhad le prótacal %1." - -#~ msgid "Writing to %1 is not supported." -#~ msgstr "Ní thacaítear le scríobh chuig %1." - -#~ msgid "There are no special actions available for protocol %1." -#~ msgstr "Níl aon ghníomhartha speisialta ar fáil le haghaidh phrótacal %1." - -#~ msgid "Listing folders is not supported for protocol %1." -#~ msgstr "Ní thacaítear le taispeáint fillteán le prótacal %1." - -#~ msgid "Retrieving data from %1 is not supported." -#~ msgstr "Ní féidir sonraí a fháil ó %1." - -#~ msgid "Retrieving mime type information from %1 is not supported." -#~ msgstr "Ní féidir faisnéis faoi chineálacha MIME a fháil ó %1." - -#~ msgid "Renaming or moving files within %1 is not supported." -#~ msgstr "Ní thacaítear le hathainmniú nó bogadh comhad i %1." - -#~ msgid "Creating symlinks is not supported with protocol %1." -#~ msgstr "Ní féidir naisc shiombalacha a chruthú le prótacal %1." - -#~ msgid "Copying files within %1 is not supported." -#~ msgstr "Ní féidir comhaid a oscailt i %1." - -#~ msgid "Deleting files from %1 is not supported." -#~ msgstr "Ní féidir comhaid a scriosadh ó %1." - -#~ msgid "Creating folders is not supported with protocol %1." -#~ msgstr "Ní féidir fillteáin a chruthú le prótacal %1." - -#~ msgid "Changing the attributes of files is not supported with protocol %1." -#~ msgstr "Ní féidir tréithe comhad a athrú le prótacal %1." - -#~ msgid "Changing the ownership of files is not supported with protocol %1." -#~ msgstr "Ní féidir úinéir comhaid a athrú le prótacal %1." - -#~ msgid "Using sub-URLs with %1 is not supported." -#~ msgstr "Ní thacaítear le fo-URLanna le %1." - -#~ msgid "Opening files is not supported with protocol %1." -#~ msgstr "Ní féidir comhaid a oscailt le prótacal %1." - -#~ msgid "Protocol %1 does not support action %2." -#~ msgstr "Ní thacaíonn prótacal %1 le gníomh %2." - -#~ msgctxt "@info url" -#~ msgid "(unknown)" -#~ msgstr "(anaithnid)" - -#~ msgctxt "@info %1 error name, %2 description" -#~ msgid "

    %1

    %2

    " -#~ msgstr "

    %1

    %2

    " - -#~ msgid "Technical reason: " -#~ msgstr "Fáth Teicniúil: " - -#~ msgid "Details of the request:" -#~ msgstr "Mionsonraí an iarratais:" - -#~ msgid "
  • URL: %1
  • " -#~ msgstr "
  • URL: %1
  • " - -#~ msgid "
  • Protocol: %1
  • " -#~ msgstr "
  • Prótacal: %1
  • " - -#~ msgid "
  • Date and time: %1
  • " -#~ msgstr "
  • Dáta agus Am: %1
  • " - -#~ msgid "
  • Additional information: %1
  • " -#~ msgstr "
  • Eolas breise: %1
  • " - -#~ msgid "Possible causes:" -#~ msgstr "Cúiseanna incheaptha:" - -#~ msgid "Possible solutions:" -#~ msgstr "Réitigh incheaptha:" - -#~ msgctxt "@info protocol" -#~ msgid "(unknown)" -#~ msgstr "(anaithnid)" - -#~ msgid "" -#~ "Contact your appropriate computer support system, whether the system " -#~ "administrator, or technical support group for further assistance." -#~ msgstr "" -#~ "Téigh i dteagmháil le do chóras tacaíochta, .i. riarthóir an chórais nó " -#~ "lucht tacaíochta teicniúla chun tuilleadh cabhrach a fháil." - -#~ msgid "Contact the administrator of the server for further assistance." -#~ msgstr "" -#~ "Téigh i dteagmháil le riarthóir an fhreastalaí chun tuilleadh cabhrach a " -#~ "fháil." - -#~ msgid "Check your access permissions on this resource." -#~ msgstr "An bhfuil cead agat an acmhainn seo a rochtain?" - -#~ msgid "" -#~ "Your access permissions may be inadequate to perform the requested " -#~ "operation on this resource." -#~ msgstr "" -#~ "Seans nach bhfuil cead agat an oibríocht iarrtha a dhéanamh ar an " -#~ "acmhainn seo." - -#~ msgid "" -#~ "The file may be in use (and thus locked) by another user or application." -#~ msgstr "" -#~ "Seans go bhfuil an comhad seo in úsáid (agus, mar sin, faoi ghlas) ag " -#~ "úsáideoir eile nó feidhmchlár eile." - -#~ msgid "" -#~ "Check to make sure that no other application or user is using the file or " -#~ "has locked the file." -#~ msgstr "" -#~ "Bí cinnte nach bhfuil aon úsáideoir ná feidhmchlár eile ag baint úsáid as " -#~ "an gcomhad agus nach bhfuil sé faoi ghlas." - -#~ msgid "Although unlikely, a hardware error may have occurred." -#~ msgstr "Ní dócha é, ach seans gur tharla earráid chrua-earraí." - -#~ msgid "You may have encountered a bug in the program." -#~ msgstr "Seans go bhfuil fabht sa ríomhchlár." - -#~ msgid "" -#~ "This is most likely to be caused by a bug in the program. Please consider " -#~ "submitting a full bug report as detailed below." -#~ msgstr "" -#~ "Is dócha go bhfuil fabht sa ríomhchlár. Seol tuairisc ar an bhfabht seo " -#~ "mar atá mionsonraithe thíos." - -#~ msgid "" -#~ "Update your software to the latest version. Your distribution should " -#~ "provide tools to update your software." -#~ msgstr "" -#~ "Bí cinnte go bhfuil an leagan is déanaí den bhogearraí agat. Is dócha go " -#~ "bhfuil uirlisí nuashonraithe ag dáileoir do chórais." - -#~ msgid "There may have been a problem with your network connection." -#~ msgstr "Seans go raibh fadhb le do cheangal líonra." - -#~ msgid "" -#~ "There may have been a problem with your network configuration. If you " -#~ "have been accessing the Internet with no problems recently, this is " -#~ "unlikely." -#~ msgstr "" -#~ "Seans go raibh fadhb le cumraíocht do líonra, cé nach dócha é má bhí " -#~ "rochtain ar an Idirlíon agat le déanaí." - -#~ msgid "" -#~ "There may have been a problem at some point along the network path " -#~ "between the server and this computer." -#~ msgstr "" -#~ "Seans go raibh fadhb ag pointe éigin ar an gconair líonra idir an " -#~ "freastalaí agus an ríomhaire seo." - -#~ msgid "Try again, either now or at a later time." -#~ msgstr "Bain triail eile as, anois nó amach anseo." - -#~ msgid "A protocol error or incompatibility may have occurred." -#~ msgstr "Tharla earráid phrótacail nó bhí neamh-chomhoiriúnacht ann." - -#~ msgid "Ensure that the resource exists, and try again." -#~ msgstr "Bí cinnte go bhfuil an acmhainn ann, agus bain triail eile as." - -#~ msgid "The specified resource may not exist." -#~ msgstr "Seans nach bhfuil an acmhainn sonraithe ann." - -#~ msgid "You may have incorrectly typed the location." -#~ msgstr "An ndearna tú botún nuair a chlóscríobh tú ainm an tsuímh?" - -#~ msgid "" -#~ "Double-check that you have entered the correct location and try again." -#~ msgstr "" -#~ "Bí cinnte gur chuir tú an suíomh ceart isteach ann agus bain triail eile " -#~ "as." - -#~ msgid "Check your network connection status." -#~ msgstr "Seiceáil stádas do cheangail líonra." - -#~ msgid "Cannot Open Resource For Reading" -#~ msgstr "Ní féidir an acmhainn a oscailt chun é a léamh" - -#~ msgid "" -#~ "This means that the contents of the requested file or folder %1 could not be retrieved, as read access could not be obtained." -#~ msgstr "" -#~ "Ciallaíonn sé seo nárbh fhéidir inneachar chomhad/chomadlann %1 a fháil." - -#~ msgid "You may not have permissions to read the file or open the folder." -#~ msgstr "" -#~ "B'fhéidir nach bhfuil cead agat an comhad a léamh nó an chomhadlann a " -#~ "oscailt." - -#~ msgid "Cannot Open Resource For Writing" -#~ msgstr "Ní féidir an acmhainn a oscailt chun scríobh ann" - -#~ msgid "Cannot Initiate the %1 Protocol" -#~ msgstr "Ní féidir tús a chur le prótacal %1" - -#~ msgid "Unable to Launch Process" -#~ msgstr "Ní féidir an próiséas a thosú." - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol could not be started. This is usually due to technical " -#~ "reasons." -#~ msgstr "" -#~ "Níorbh fhéidir an ríomhchlár a thugann rochtain ar an bprótacal " -#~ "%1 a thosú, de bharr cúrsaí teicniúla." - -#~ msgid "Internal Error" -#~ msgstr "Earráid Inmheánach" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has reported an internal error." -#~ msgstr "" -#~ "Tharla earráid inmheánach leis an ríomhchlár a thugann rochtain ar an " -#~ "bprótacal %1." - -#~ msgid "Improperly Formatted URL" -#~ msgstr "URL míchumtha" - -#~ msgid "" -#~ "The Uniform Resource Locator (URL) that you entered was not properly formatted. The " -#~ "format of a URL is generally as follows:
    protocol://" -#~ "user:password@www.example.org:port/folder/filename.extension?query=value
    " -#~ msgstr "" -#~ "Bhí an URL (Uniform Resource Locator) a chuir tú isteach míchumtha. Seo é an fhormáid cheart:" -#~ "
    prótacal://úsáideoir:focalfaire@www.sampla.org:port/" -#~ "fillteán/comhad.iarmhír?iarratas=luach
    " - -#~ msgid "Unsupported Protocol %1" -#~ msgstr "Prótacal %1 Gan Tacaíocht" - -#~ msgid "" -#~ "The protocol %1 is not supported by the KDE programs " -#~ "currently installed on this computer." -#~ msgstr "" -#~ "Ní thacaíonn na ríomhchláir KDE suiteáilte ar an ríomhaire seo le " -#~ "prótacal %1." - -#~ msgid "The requested protocol may not be supported." -#~ msgstr "B'fhéidir nach nglactar leis an bprótacal iarrtha." - -#~ msgid "" -#~ "You may perform a search on the Internet for a KDE program (called a " -#~ "kioslave or ioslave) which supports this protocol. Places to search " -#~ "include http://kde-apps.org/ and http://freshmeat.net/." -#~ msgstr "" -#~ "Is féidir leat an tIdirlíon a chuardach ar ríomhchlár KDE (a dtugtar " -#~ "\"sclábhaí KIO\" (kioslave) nó \"sclábhaí I/A\" (ioslave) air) a " -#~ "thacaíonn leis an bprótacal seo. Ba chóir na háiteanna seo a chuardach: " -#~ "http://kde-apps.org/ agus http://freshmeat.net/." - -#~ msgid "URL Does Not Refer to a Resource." -#~ msgstr "Ní dhéanann an URL tagairt d'Acmhainn." - -#~ msgid "Protocol is a Filter Protocol" -#~ msgstr "Is Prótacal Scagaire é an Prótacal" - -#~ msgid "" -#~ "The Uniform Resource Locator (URL) that you entered did not refer to a specific resource." -#~ msgstr "" -#~ "Ní dhéanann an URL (Uniform Resource " -#~ "Locator) a chuir tú isteach tagairt d'acmhainn ar leith." - -#~ msgid "Unsupported Action: %1" -#~ msgstr "Gníomh Gan Tacaíocht: %1" - -#~ msgid "" -#~ "The requested action is not supported by the KDE program which is " -#~ "implementing the %1 protocol." -#~ msgstr "" -#~ "Ní thacaíonn an ríomhchlár KDE a chuireann an prótacal %1 i bhfeidhm leis an ngníomh seo." - -#~ msgid "" -#~ "This error is very much dependent on the KDE program. The additional " -#~ "information should give you more information than is available to the KDE " -#~ "input/output architecture." -#~ msgstr "" -#~ "Braitheann an earráid seo ar an ríomhchlár KDE. Gheobhaidh tú tuilleadh " -#~ "eolais ná a bhfuil ag an ailtireacht ionchurtha/aschurtha KDE." - -#~ msgid "Attempt to find another way to accomplish the same outcome." -#~ msgstr "Déan iarracht ar an rud céanna a dhéanamh ar bhealach éigin eile." - -#~ msgid "File Expected" -#~ msgstr "Ag Súil le Comhad" - -#~ msgid "" -#~ "The request expected a file, however the folder %1 was " -#~ "found instead." -#~ msgstr "" -#~ "Bhí an t-iarratas ag súil le comhad, ach fuair sé fillteán %1." - -#~ msgid "This may be an error on the server side." -#~ msgstr "Seans gur earráid ar thaobh an fhreastalaí é seo." - -#~ msgid "Folder Expected" -#~ msgstr "Ag Súil le Fillteán" - -#~ msgid "" -#~ "The request expected a folder, however the file %1 was " -#~ "found instead." -#~ msgstr "" -#~ "Bhí an t-iarratas ag súil le fillteán, ach fuair sé an comhad %1." - -#~ msgid "File or Folder Does Not Exist" -#~ msgstr "Níl an Comhad nó an Fillteán ann." - -#~ msgid "The specified file or folder %1 does not exist." -#~ msgstr "Níl an comhad nó an fillteán %1 ann." - -#~ msgid "" -#~ "The requested file could not be created because a file with the same name " -#~ "already exists." -#~ msgstr "" -#~ "Níorbh fhéidir an comhad iarrtha a chruthú toisc bhfuil comhad leis an " -#~ "ainm céanna ann cheana." - -#~ msgid "" -#~ "Try moving the current file out of the way first, and then try again." -#~ msgstr "Bog an comhad as an mbealach ansin bain triail eile as." - -#~ msgid "Delete the current file and try again." -#~ msgstr "Scrios an comhad reatha agus bain triail eile as." - -#~ msgid "Choose an alternate filename for the new file." -#~ msgstr "Roghnaigh ainm eile don chomhad nua." - -#~ msgid "" -#~ "The requested folder could not be created because a folder with the same " -#~ "name already exists." -#~ msgstr "" -#~ "Níorbh fhéidir an fillteán iarrtha a chruthú toisc go bhfuil fillteán " -#~ "leis an ainm céanna ann cheana." - -#~ msgid "" -#~ "Try moving the current folder out of the way first, and then try again." -#~ msgstr "Bog an fillteán as an mbealach ansin bain triail eile as." - -#~ msgid "Delete the current folder and try again." -#~ msgstr "Scrios an fillteán reatha agus bain triail eile as." - -#~ msgid "Choose an alternate name for the new folder." -#~ msgstr "Roghnaigh ainm eile don fhillteán nua." - -#~ msgid "Unknown Host" -#~ msgstr "Óstríomhaire anaithnid" - -#~ msgid "" -#~ "The name that you typed, %1, may not exist: it may be incorrectly typed." -#~ msgstr "" -#~ "An t-ainm a chuir tú isteach, %1, seans nach bhfuil sé ann; an ndearna tú " -#~ "botún nuair a chlóscríobh tú é?" - -#~ msgid "Access Denied" -#~ msgstr "Cead Rochtana Diúltaithe" - -#~ msgid "Access was denied to the specified resource, %1." -#~ msgstr "Diúltaíodh rochtain ar an acmhainn sonraithe, %1." - -#~ msgid "" -#~ "You may have supplied incorrect authentication details or none at all." -#~ msgstr "" -#~ "Seans go raibh na mionsonraí fíordheimhnithe mícheart, nó níor " -#~ "soláthraíodh iad ar chor ar bith." - -#~ msgid "" -#~ "Your account may not have permission to access the specified resource." -#~ msgstr "Seans nach bhfuil cead agat an acmhainn seo a rochtain." - -#~ msgid "" -#~ "Retry the request and ensure your authentication details are entered " -#~ "correctly." -#~ msgstr "" -#~ "Bain triail eile as agus bí cinnte gur chuir tú na mionsonraí " -#~ "fíordheimhnithe isteach go ceart." - -#~ msgid "Write Access Denied" -#~ msgstr "Cead Scríofa Diúltaithe" - -#~ msgid "" -#~ "This means that an attempt to write to the file %1 was " -#~ "rejected." -#~ msgstr "" -#~ "Ciallaíonn sé seo gur diúltaíodh iarracht ar chomhad %1 " -#~ "a scríobh." - -#~ msgid "Unable to Enter Folder" -#~ msgstr "Ní féidir dul isteach sa chomhadlann" - -#~ msgid "Folder Listing Unavailable" -#~ msgstr "Níl Liosta Fillteáin ar fáil" - -#~ msgid "Protocol %1 is not a Filesystem" -#~ msgstr "Ní comhadchóras é prótacal %1" - -#~ msgid "Cyclic Link Detected" -#~ msgstr "Braitheadh Nasc Cioglach" - -#~ msgid "Request Aborted By User" -#~ msgstr "Iarratas Tobscortha ag an Úsáideoir" - -#~ msgid "The request was not completed because it was aborted." -#~ msgstr "Níor cuireadh an t-iarratas i gcrích toisc gur tobscoireadh é." - -#~ msgid "Retry the request." -#~ msgstr "Bain triail eile as an iarratas." - -#~ msgid "Cyclic Link Detected During Copy" -#~ msgstr "Braitheadh Nasc Cioglach Le Linn Cóipeála" - -#~ msgid "Could Not Create Network Connection" -#~ msgstr "Níorbh fhéidir ceangal líonra nua a chruthú" - -#~ msgid "Could Not Create Socket" -#~ msgstr "Níorbh fhéidir soicéad a chruthú" - -#~ msgid "" -#~ "This is a fairly technical error in which a required device for network " -#~ "communications (a socket) could not be created." -#~ msgstr "" -#~ "Is earráid measartha teicniúil é seo: níorbh fhéidir gléas atá " -#~ "riachtanach do chumarsáid ar an líonra (soicéad) a chruthú." - -#~ msgid "" -#~ "The network connection may be incorrectly configured, or the network " -#~ "interface may not be enabled." -#~ msgstr "" -#~ "B'fhéidir nach bhfuil an ceangal líonra cumraithe mar is ceart, nó níl an " -#~ "comhéadan líonra cumasaithe." - -#~ msgid "Connection to Server Refused" -#~ msgstr "Diúltaíodh Ceangal leis an bhFreastalaí" - -#~ msgid "" -#~ "The server, while currently connected to the Internet, may not be running " -#~ "the requested service (%1)." -#~ msgstr "" -#~ "B'fhéidir nach bhfuil an tseirbhís iarrtha (%1) ag rith ar an " -#~ "bhfreastalaí, cé go bhfuil sé ceangailte leis an Idirlíon." - -#~ msgid "Connection to Server Closed Unexpectedly" -#~ msgstr "Dúnadh ceangal leis an bhfreastalaí gan súil leis" - -#~ msgid "URL Resource Invalid" -#~ msgstr "Acmhainn Neamhbhailí URL" - -#~ msgid "Protocol %1 is not a Filter Protocol" -#~ msgstr "Ní Prótacal Scagaire é Prótacal %1" - -#~ msgid "Unable to Initialize Input/Output Device" -#~ msgstr "Ní féidir an Gléas Ionchurtha/Aschurtha a Thúsú" - -#~ msgid "Could Not Mount Device" -#~ msgstr "Níorbh fhéidir an gléas a fheistiú" - -# "túsú" no clearer than "feistiú" anseo -#~ msgid "" -#~ "The requested device could not be initialized (\"mounted\"). The reported " -#~ "error was: %1" -#~ msgstr "" -#~ "Níorbh fhéidir an gléas a fheistiú. Seo é an earráid: %1" - -#~ msgid "" -#~ "Check that the device is ready; removable drives must contain media, and " -#~ "portable devices must be connected and powered on.; and try again." -#~ msgstr "" -#~ "Bí cinnte go bhfuil an gléas réidh; ní mór meáin a bheith i dtiomántán " -#~ "inbhainte, agus ní mór do ghléasanna soghluaiste a bheith ceangailte agus " -#~ "ar siúl; agus bain triail eile as." - -# "túsú" no clearer than "feistiú" anseo -#~ msgid "Unable to Uninitialize Input/Output Device" -#~ msgstr "Ní Féidir Gléas Ionchurtha/Aschurtha a Dhífheistiú" - -#~ msgid "Could Not Unmount Device" -#~ msgstr "Níorbh Fhéidir an Gléas a Dhífheistiú" - -# "túsú" no clearer than "feistiú" anseo -#~ msgid "" -#~ "The requested device could not be uninitialized (\"unmounted\"). The " -#~ "reported error was: %1" -#~ msgstr "" -#~ "Níorbh fhéidir an gléas a dhífheistiú. Seo é an earráid: %1" - -#~ msgid "" -#~ "You may not have permissions to uninitialize (\"unmount\") the device. On " -#~ "UNIX systems, system administrator privileges are often required to " -#~ "uninitialize a device." -#~ msgstr "" -#~ "Seans nach bhfuil cead agat an gléas a dhífheistiú. Ar chórais UNIX, tá " -#~ "ceadanna an fhorúsáideora de dhíth go hiondúil chun gléas a dhífheistiú." - -#~ msgid "Check that no applications are accessing the device, and try again." -#~ msgstr "" -#~ "Bí cinnte nach bhfuil aon fheidhmchlár ag rochtain an ghléis agus bain " -#~ "triail eile as." - -#~ msgid "Cannot Read From Resource" -#~ msgstr "Ní Féidir an Acmhainn a Léamh" - -#~ msgid "You may not have permissions to read from the resource." -#~ msgstr "B'fhéidir nach bhfuil cead agat léamh ón acmhainn." - -#~ msgid "Cannot Write to Resource" -#~ msgstr "Ní Féidir an Acmhainn a Scríobh" - -#~ msgid "You may not have permissions to write to the resource." -#~ msgstr "B'fhéidir nach bhfuil cead agat scríobh ar an acmhainn." - -#~ msgid "Could Not Listen for Network Connections" -#~ msgstr "Níorbh Fhéidir Éisteacht le Ceangail Líonra" - -#~ msgid "Could Not Bind" -#~ msgstr "Níorbh Fhéidir Ceangal" - -#~ msgid "Could Not Listen" -#~ msgstr "Níorbh Fhéidir Éisteacht" - -#~ msgid "Could Not Accept Network Connection" -#~ msgstr "Níorbh Fhéidir Ceangal Líonra a Ghlacadh" - -#~ msgid "You may not have permissions to accept the connection." -#~ msgstr "Seans nach bhfuil cead agat glacadh leis an gceangal." - -#~ msgid "Could Not Login: %1" -#~ msgstr "Níorbh fhéidir logáil isteach: %1" - -#~ msgid "" -#~ "An attempt to login to perform the requested operation was unsuccessful." -#~ msgstr "" -#~ "Níor éirigh leis an logáil isteach chun an oibríocht iarrtha a dhéanamh." - -#~ msgid "Could Not Determine Resource Status" -#~ msgstr "Níorbh Fhéidir Stádas na hAcmhainne a Dhéanamh Amach" - -#~ msgid "" -#~ "The specified resource may not have existed or may not be accessible." -#~ msgstr "" -#~ "Seans nach raibh an acmhainn ann ar chor ar bith, nó níl sé inrochtana." - -#~ msgid "Could Not Cancel Listing" -#~ msgstr "Níorbh fhéidir an liostú a chealú" - -#~ msgid "FIXME: Document this" -#~ msgstr "FIXME: Doiciméadaigh é seo" - -#~ msgid "Could Not Create Folder" -#~ msgstr "Níorbh Fhéidir an Fillteán a Chruthú" - -#~ msgid "An attempt to create the requested folder failed." -#~ msgstr "Theip ar iarracht an fillteán iarrtha a chruthú." - -#~ msgid "Could Not Remove Folder" -#~ msgstr "Níorbh fhéidir an fillteán a bhaint" - -#~ msgid "The specified folder may not exist." -#~ msgstr "B'fhéidir nach bhfuil an fillteán sonraithe ann." - -#~ msgid "The specified folder may not be empty." -#~ msgstr "B'fhéidir nach bhfuil an fillteán sonraithe folamh." - -#~ msgid "Ensure that the folder exists and is empty, and try again." -#~ msgstr "" -#~ "Dearbhaigh go bhfuil an fillteán ann agus go bhfuil sé folamh, agus bain " -#~ "triail eile as." - -#~ msgid "Could Not Resume File Transfer" -#~ msgstr "Níorbh Fhéidir Aistriú an Chomhaid a Atosú" - -#~ msgid "The protocol, or the server, may not support file resuming." -#~ msgstr "Ní thacaíonn an prótacal, nó an freastalaí, le hatosú comhaid." - -#~ msgid "Retry the request without attempting to resume transfer." -#~ msgstr "" -#~ "Seol an t-iarratas arís gan iarracht a dhéanamh an t-aistriú a atosú." - -#~ msgid "Could Not Rename Resource" -#~ msgstr "Níorbh fhéidir an acmhainn a athainmniú" - -#~ msgid "" -#~ "An attempt to rename the specified resource %1 failed." -#~ msgstr "" -#~ "Níorbh fhéidir an acmhainn sonraithe %1 a athainmniú." - -#~ msgid "Could Not Alter Permissions of Resource" -#~ msgstr "Níorbh Fhéidir Ceadanna na hAcmhainne a Athrú" - -#~ msgid "" -#~ "An attempt to alter the permissions on the specified resource %1 failed." -#~ msgstr "" -#~ "Níorbh fhéidir ceadanna na hacmhainne sonraithe %1 a " -#~ "athrú." - -#~ msgid "Could Not Change Ownership of Resource" -#~ msgstr "Níorbh fhéidir úinéir na hacmhainne a athrú" - -#~ msgid "" -#~ "An attempt to change the ownership of the specified resource %1 failed." -#~ msgstr "" -#~ "Níorbh fhéidir úinéir na hacmhainne sonraithe %1 a athrú." - -#~ msgid "Could Not Delete Resource" -#~ msgstr "Níorbh fhéidir an acmhainn a scriosadh" - -#~ msgid "" -#~ "An attempt to delete the specified resource %1 failed." -#~ msgstr "" -#~ "Níorbh fhéidir an acmhainn sonraithe %1 a scriosadh." - -#~ msgid "Unexpected Program Termination" -#~ msgstr "Stop an Ríomhchlár gan súil leis" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has unexpectedly terminated." -#~ msgstr "" -#~ "Stop an ríomhchlár a sholáthraíonn rochtain ar an bprótacal %1 gan súil leis." - -#~ msgid "Out of Memory" -#~ msgstr "Cuimhne Ídithe" - -#~ msgid "Unknown Proxy Host" -#~ msgstr "Seachfhreastalaí Anaithnid" - -#~ msgid "" -#~ "There may have been a problem with your network configuration, " -#~ "specifically your proxy's hostname. If you have been accessing the " -#~ "Internet with no problems recently, this is unlikely." -#~ msgstr "" -#~ "Seans go raibh fadhb le cumraíocht do líonra, go sonrach le hóstainm do " -#~ "sheachfhreastalaí. Ach ní dócha é seo má bhí rochtain ar an Idirlíon agat " -#~ "le déanaí." - -#~ msgid "Double-check your proxy settings and try again." -#~ msgstr "Dearbhaigh socruithe do sheachfhreastalaí agus bain triail eile as." - -#~ msgid "Authentication Failed: Method %1 Not Supported" -#~ msgstr "Theip ar Fhíordheimhniú: Ní thacaítear le %1" - -#~ msgid "Request Aborted" -#~ msgstr "Tobscoireadh an tIarratas" - -#~ msgid "Internal Error in Server" -#~ msgstr "Earráid inmheánach sa bhfreastalaí" - -#~ msgid "" -#~ "The program on the server which provides access to the %1 protocol has reported an internal error: %2." -#~ msgstr "" -#~ "Bhí earráid inmheánach sa ríomhchlár a sholáthraíonn rochtain ar an " -#~ "bprótacal %1: %2." - -#~ msgid "" -#~ "Contact the administrator of the server to advise them of the problem." -#~ msgstr "" -#~ "Ba chóir duit an fhadhb seo a chur in iúl do riarthóir an fhreastalaí." - -#~ msgid "Timeout Error" -#~ msgstr "Earráid: Thar Am" - -#~ msgid "The server was too busy responding to other requests to respond." -#~ msgstr "" -#~ "Bhí an freastalaí gafa le hiarratais eile agus ní raibh sé in ann freagra " -#~ "a thabhairt." - -#~ msgid "Unknown Error" -#~ msgstr "Earráid Anaithnid" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has reported an unknown error: %2." -#~ msgstr "" -#~ "Bhí earráid anaithnid sa ríomhchlár a sholáthraíonn rochtain ar an " -#~ "bprótacal %1: %2." - -#~ msgid "Unknown Interruption" -#~ msgstr "Briseadh Anaithnid" - -#~ msgid "" -#~ "The program on your computer which provides access to the %1 protocol has reported an interruption of an unknown type: %2." -#~ msgstr "" -#~ "Tharla idirbhriseadh anaithnid sa ríomhchlár a sholáthraíonn rochtain ar " -#~ "an bprótacal %1: %2." - -#~ msgid "Could Not Delete Original File" -#~ msgstr "Níorbh fhéidir an bunchomhad a scriosadh" - -#~ msgid "Could Not Delete Temporary File" -#~ msgstr "Níorbh fhéidir comhad sealadach a scriosadh" - -#~ msgid "Could Not Rename Original File" -#~ msgstr "Níorbh fhéidir an bunchomhad a athainmniú" - -#~ msgid "Could Not Rename Temporary File" -#~ msgstr "Níorbh fhéidir an comhad neamhbhuan a athainmniú" - -#~ msgid "Could Not Create Link" -#~ msgstr "Níorbh fhéidir an nasc a chruthú" - -#~ msgid "Could Not Create Symbolic Link" -#~ msgstr "Níorbh fhéidir an nasc siombalach a chruthú" - -#~ msgid "The requested symbolic link %1 could not be created." -#~ msgstr "Níorbh fhéidir an nasc siombalach iarrtha %1 a chruthú." - -#~ msgid "No Content" -#~ msgstr "Gan Ábhar" - -#~ msgid "Disk Full" -#~ msgstr "Diosca Lán" - -#~ msgid "Source and Destination Files Identical" -#~ msgstr "Is ionann iad an comhad foinse agus an comhad sprice" - -#~ msgid "Choose a different filename for the destination file." -#~ msgstr "Caithfidh tú ainm difriúil a chur ar an sprioc-chomhad." - -#~ msgid "Undocumented Error" -#~ msgstr "Earráid Gan Doiciméadú" - -#~ msgctxt "@title job" -#~ msgid "Moving" -#~ msgstr "Bogadh" - -#~ msgctxt "@title job" -#~ msgid "Copying" -#~ msgstr "Á Chóipeáil" - -#~ msgctxt "@title job" -#~ msgid "Creating directory" -#~ msgstr "Comhadlann á cruthú" - -#~ msgctxt "@title job" -#~ msgid "Deleting" -#~ msgstr "Scriosadh" - -#~ msgctxt "@title job" -#~ msgid "Examining" -#~ msgstr "Scrúdú" - -#~ msgctxt "@title job" -#~ msgid "Transferring" -#~ msgstr "Aistriú" - -#~ msgctxt "@title job" -#~ msgid "Mounting" -#~ msgstr "Feistiú" - -#~ msgid "Device" -#~ msgstr "Gléas" - -#~ msgid "Mountpoint" -#~ msgstr "Pointe feistithe" - -#~ msgctxt "@title job" -#~ msgid "Unmounting" -#~ msgstr "Dífheistiú" - -#~ msgid "Do you really want to move this item to the trash?" -#~ msgid_plural "Do you really want to move these %1 items to the trash?" -#~ msgstr[0] "" -#~ "An bhfuil tú cinnte gur mian leat an mhír seo a chur sa bhruscar?" -#~ msgstr[1] "" -#~ "An bhfuil tú cinnte gur mian leat an dá mhír seo a chur sa bhruscar?" -#~ msgstr[2] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mhír seo a chur sa bhruscar?" -#~ msgstr[3] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mír seo a chur sa bhruscar?" -#~ msgstr[4] "" -#~ "An bhfuil tú cinnte gur mian leat an %1 mír seo a chur sa bhruscar?" - -#~ msgctxt "Verb" -#~ msgid "&Trash" -#~ msgstr "&Cuir sa Bhruscar" - -#~ msgid "The peer SSL certificate chain appears to be corrupt." -#~ msgstr "Tá teastas SSL an chomhghleacaí truaillithe." - -#~ msgid "SSL" -#~ msgstr "SSL" - -#~ msgid "Updating System Configuration" -#~ msgstr "Cumraíocht an chórais á nuashonrú" - -#~ msgid "Updating system configuration." -#~ msgstr "Cumraíocht an chórais á nuashonrú." - -#~ msgid "No service implementing %1" -#~ msgstr "Níl seirbhís ann a chuireann %1 i bhfeidhm" - -#~ msgid "The desktop entry file %1 has no Type=... entry." -#~ msgstr "Níl iontráil `Type=...' i gcomhad na hiontrála deisce %1." - -#~ msgid "Mount" -#~ msgstr "Feistigh" - -#~ msgid "Eject" -#~ msgstr "Díchuir" - -#~ msgid "Unmount" -#~ msgstr "Dífheistigh" - -#~ msgid "" -#~ "Malformed URL\n" -#~ "%1" -#~ msgstr "" -#~ "URL míchumtha\n" -#~ "%1" - -#~ msgid "" -#~ "URL cannot be listed\n" -#~ "%1" -#~ msgstr "" -#~ "Ní féidir an URL a liostú\n" -#~ "%1" - -#~ msgctxt "@title:column" -#~ msgid "Name" -#~ msgstr "Ainm" - -#~ msgctxt "@title:column" -#~ msgid "Size" -#~ msgstr "Méid" - -#~ msgctxt "@title:column" -#~ msgid "Date" -#~ msgstr "Dáta" - -#~ msgctxt "@title:column" -#~ msgid "Permissions" -#~ msgstr "Ceadanna" - -#~ msgctxt "@title:column" -#~ msgid "Owner" -#~ msgstr "Úinéir" - -#~ msgctxt "@title:column" -#~ msgid "Group" -#~ msgstr "Grúpa" - -#~ msgctxt "@title:column" -#~ msgid "Type" -#~ msgstr "Cineál" - -#~ msgid "Default" -#~ msgstr "Réamhshocrú" - -#~ msgid "(Symbolic Link to %1)" -#~ msgstr "(Nasc Siombalach le %1)" - -#~ msgid "(%1, Link to %2)" -#~ msgstr "(%1, Nasc le %2)" - -#~ msgid " (Points to %1)" -#~ msgstr " (Dírithe ar %1)" - -#~ msgid "Link to %1 (%2)" -#~ msgstr "Nasc le %1 (%2)" - -#~ msgid "Owner:" -#~ msgstr "Úinéir:" - -#~ msgid "Permissions:" -#~ msgstr "Ceadanna:" - -#~ msgctxt "@title:menu" -#~ msgid "&Actions" -#~ msgstr "Gníomh&artha" - -#~ msgid "&Open with %1" -#~ msgstr "&Oscail le %1" - -#~ msgctxt "@title:menu" -#~ msgid "&Open With" -#~ msgstr "&Oscail Le" - -#~ msgctxt "@action:inmenu Open With" -#~ msgid "&Other..." -#~ msgstr "&Eile..." - -#~ msgctxt "@title:menu" -#~ msgid "&Open With..." -#~ msgstr "&Oscail Le..." - -#~ msgid "Open &with %1" -#~ msgstr "Oscail &le %1" - -#~ msgctxt "@item:inmenu Open With, %1 is application name" -#~ msgid "%1" -#~ msgstr "%1" - -# need not all be files, so use "mír" vs. "comhad" -#~ msgctxt "Items in a folder" -#~ msgid "1 item" -#~ msgid_plural "%1 items" -#~ msgstr[0] "1 mhír" -#~ msgstr[1] "%1 mhír" -#~ msgstr[2] "%1 mhír" -#~ msgstr[3] "%1 mír" -#~ msgstr[4] "%1 mír" - -#~ msgctxt "@info mimetype" -#~ msgid "Unknown" -#~ msgstr "Anaithnid" - -#~ msgid "All Pictures" -#~ msgstr "Gach Pictiúr" - -#~ msgid "Mime Type" -#~ msgstr "Cineál MIME" - -#~ msgid "Comment" -#~ msgstr "Nóta" - -#~ msgid "Patterns" -#~ msgstr "Patrúin" - -#~ msgid "&Edit..." -#~ msgstr "&Eagar..." - -#~ msgid "" -#~ "Unable to enter %1.\n" -#~ "You do not have access rights to this location." -#~ msgstr "" -#~ "Ní féidir dul isteach i %1.\n" -#~ "Níl cead agat an suíomh seo a rochtain." - -#~ msgid "You do not have permission to run %1." -#~ msgstr "Níl cead agat %1 a rith." - -#~ msgid "You are not authorized to select an application to open this file." -#~ msgstr "Níl cead agat feidhmchlár a roghnú chun an comhad seo a oscailt." - -#~ msgid "Open with:" -#~ msgstr "Oscail le:" - -#~ msgid "You are not authorized to execute this file." -#~ msgstr "Níl cead agat an comhad seo a rith." - -#~ msgid "Launching %1" -#~ msgstr "%1 á thosú" - -#~ msgid "You are not authorized to execute this service." -#~ msgstr "Níl cead agat an tseirbhís seo a rith." - -#~ msgctxt "Warning about executing unknown .desktop file" -#~ msgid "Warning" -#~ msgstr "Rabhadh" - -#~ msgctxt "program name follows in a line edit below" -#~ msgid "This will start the program:" -#~ msgstr "Tosóidh sé seo an ríomhchlár:" - -#~ msgid "If you do not trust this program, click Cancel" -#~ msgstr "Mura bhfuil muinín agat as an ríomhchlár seo, cliceáil 'Cealaigh'" - -#~ msgid "" -#~ "Unable to run the command specified. The file or folder %1 " -#~ "does not exist." -#~ msgstr "" -#~ "Ní féidir an t-ordú roghnaithe a rith. Níl comhad nó fillteán %1 ann." - -#~ msgid "Could not find the program '%1'" -#~ msgstr "Níorbh fhéidir clár '%1' a aimsiú" - -#~ msgid "Acquire Image" -#~ msgstr "Faigh Íomhá" - -#~ msgid "OCR Image" -#~ msgstr "Íomhá OCR" - -#~ msgid "The desktop is offline" -#~ msgstr "Tá an deasc as líne" - -#~ msgid "File '%1' is not readable" -#~ msgstr "Ní féidir comhad '%1' a léamh" - -#~ msgid "ERROR: Unknown protocol '%1'" -#~ msgstr "EARRÁID: Prótacal anaithnid '%1'" - -#~ msgid "Authorization Dialog" -#~ msgstr "Dialóg Údaraithe" - -#~ msgid "Filename for clipboard content:" -#~ msgstr "Ainm comhaid d'inneachar na gearrthaisce:" - -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgid "" -#~ "The clipboard has changed since you used 'paste': the chosen data format " -#~ "is no longer applicable. Please copy again what you wanted to paste." -#~ msgstr "" -#~ "Athraíodh an ghearrthaisce ó rinne tú greamú: níl an fhormáid roghnaithe " -#~ "sonraí oiriúnach a thuilleadh. Déan cóip eile den rud ba mhian leat a " -#~ "ghreamú." - -#~ msgid "The clipboard is empty" -#~ msgstr "Tá an ghearrthaisce folamh" - -#~ msgid "&Paste File" -#~ msgid_plural "&Paste %1 Files" -#~ msgstr[0] "&Greamaigh Comhad" -#~ msgstr[1] "&Greamaigh 2 Chomhad" -#~ msgstr[2] "&Greamaigh %1 Chomhad" -#~ msgstr[3] "&Greamaigh %1 gComhad" -#~ msgstr[4] "&Greamaigh %1 Comhad" - -#~ msgid "&Paste URL" -#~ msgid_plural "&Paste %1 URLs" -#~ msgstr[0] "&Greamaigh URL" -#~ msgstr[1] "&Greamaigh 2 URL" -#~ msgstr[2] "&Greamaigh %1 URL" -#~ msgstr[3] "&Greamaigh %1 URL" -#~ msgstr[4] "&Greamaigh %1 URL" - -#~ msgid "&Paste Clipboard Contents" -#~ msgstr "&Greamaigh Inneachar na Gearrthaisce" - -#~ msgid "Data format:" -#~ msgstr "Formáid na sonraí:" - -#~ msgid "Appl&y to All" -#~ msgstr "Cuir i bhfeidhm &ar gach rud" - -#~ msgid "&Rename" -#~ msgstr "&Athainmnigh" - -#~ msgid "Suggest New &Name" -#~ msgstr "Mol Ainm &Nua" - -#~ msgid "&Skip" -#~ msgstr "&Ná bac leis" - -#~ msgid "Do not copy or move this folder, skip to the next item instead" -#~ msgstr "" -#~ "Ná déan cóip de agus ná bog an fillteán seo; téigh ar aghaidh go dtí an " -#~ "chéad mhír eile" - -#~ msgid "Do not copy or move this file, skip to the next item instead" -#~ msgstr "" -#~ "Ná déan cóip de agus ná bog an comhad seo; téigh ar aghaidh go dtí an " -#~ "chéad mhír eile" - -#~ msgctxt "Write files into an existing folder" -#~ msgid "&Write Into" -#~ msgstr "&Scríobh I" - -#~ msgid "&Overwrite" -#~ msgstr "F&orscríobh" - -#~ msgid "&Resume" -#~ msgstr "&Lean ar aghaidh" - -#~ msgid "" -#~ "This action would overwrite '%1' with itself.\n" -#~ "Please enter a new file name:" -#~ msgstr "" -#~ "Scríobhfadh an gníomh seo '%1' air féin.\n" -#~ "Iontráil ainm nua ar an gcomhad:" - -#~ msgid "C&ontinue" -#~ msgstr "&Lean ar aghaidh" - -#~ msgid "This action will overwrite the destination." -#~ msgstr "Forscríobhfaidh an gníomh seo an comhad sprice." - -#~ msgid "Source" -#~ msgstr "Comhad Foinse" - -#~ msgid "Destination" -#~ msgstr "Comhad Sprice" - -#~ msgid "Warning, the destination is more recent." -#~ msgstr "Rabhadh: tá an comhad sprice níos nuaí." - -#~ msgid "An older item named '%1' already exists." -#~ msgstr "Tá mír níos sine darb ainm '%1' ann cheana." - -#~ msgid "A similar file named '%1' already exists." -#~ msgstr "Tá comhad cosúil leis seo darb ainm %1 ann cheana." - -#~ msgid "A more recent item named '%1' already exists." -#~ msgstr "Tá mír níos nuaí darb ainm '%1' ann cheana." - -#~ msgid "Rename:" -#~ msgstr "Athainmnigh:" - -#~ msgid "Information" -#~ msgstr "Eolas" - -#~ msgid "Skip" -#~ msgstr "Ná bac leis" - -#~ msgid "AutoSkip" -#~ msgstr "Léim Uathoibríoch" - -#~ msgid "Unknown protocol '%1'." -#~ msgstr "Prótacal anaithnid '%1'." - -#~ msgid "Can not find io-slave for protocol '%1'." -#~ msgstr "Ní féidir sclábhaí I/A a aimsiú le haghaidh prótacal '%1'." - -#~ msgid "Cannot talk to klauncher: %1" -#~ msgstr "Níorbh fhéidir cumarsáid a dhéanamh le klauncher: %1" - -#~ msgid "" -#~ "Unable to create io-slave:\n" -#~ "klauncher said: %1" -#~ msgstr "" -#~ "Níorbh fhéidir sclábhaí I/A a chruthú:\n" -#~ "Dúirt klauncher: %1" - -# default button in generic message box; hopefully no one uses this default -#~ msgid "&Yes" -#~ msgstr "&Tá" - -# default button in generic message box; hopefully no one uses this default -#~ msgid "&No" -#~ msgstr "&Níl" - -#~ msgid "&Details" -#~ msgstr "&Mionsonraí" - -#~ msgid "&Forever" -#~ msgstr "&Go Deo" - -#~ msgid "Co&ntinue" -#~ msgstr "Lea&n ar Aghaidh" - -#~ msgid "&Current Session only" -#~ msgstr "Seisiúin &Reatha Amháin" - -#~ msgid "" -#~ "You are about to leave secure mode. Transmissions will no longer be " -#~ "encrypted.\n" -#~ "This means that a third party could observe your data in transit." -#~ msgstr "" -#~ "Tá tú ar tí an mód slán a fhágáil. Ní chripteofar cumarsáid a " -#~ "thuilleadh.\n" -#~ "Dá bharr seo, b'fhéidir le daoine eile do chuid sonraí a fheiceáil." - -#~ msgid "Security Information" -#~ msgstr "Eolas Slándála" - -#~ msgid "C&ontinue Loading" -#~ msgstr "&Lean ag Luchtú" - -#~ msgctxt "%1 is a host name" -#~ msgid "%1: SSL negotiation failed" -#~ msgstr "%1: Theip ar chaibidlíocht SSL" - -#~ msgid "" -#~ "You are about to enter secure mode. All transmissions will be encrypted " -#~ "unless otherwise noted.\n" -#~ "This means that no third party will be able to easily observe your data " -#~ "in transit." -#~ msgstr "" -#~ "Tá tú ar tí an mód slán a thosú. Cripteofar gach cumarsáid mura léirítear " -#~ "a mhalairt.\n" -#~ "Dá bharr seo, ní bheidh daoine eile in ann do chuid sonraí a fheiceáil go " -#~ "héasca." - -#~ msgid "Display SSL &Information" -#~ msgstr "Ta&ispeáin Eolas faoi SSL" - -#~ msgid "C&onnect" -#~ msgstr "&Ceangail" - -#~ msgid "Enter the certificate password:" -#~ msgstr "Tabhair focal faire an teastais:" - -#~ msgid "SSL Certificate Password" -#~ msgstr "Focail Fhaire an Teastais SSL" - -#~ msgid "Unable to open the certificate. Try a new password?" -#~ msgstr "Ní féidir an teastas a oscailt. Bain triail as focal faire nua?" - -#~ msgid "The procedure to set the client certificate for the session failed." -#~ msgstr "" -#~ "Níor éirigh leis an bpróiseas a shocraíonn teastas an chliaint don " -#~ "seisiún." - -#~ msgid "" -#~ "The server failed the authenticity check (%1).\n" -#~ "\n" -#~ msgstr "" -#~ "Chlis an scrúdú fírinne ar theastas an fhreastalaí (%1).\n" -#~ "\n" - -#~ msgid "Server Authentication" -#~ msgstr "Fíordheimhniú den Fhreastalaí" - -#~ msgid "" -#~ "Would you like to accept this certificate forever without being prompted?" -#~ msgstr "An bhfuil fonn ort glacadh leis an teastas seo go buan gan fiafraí?" - -#~ msgid "" -#~ "You have indicated that you wish to accept this certificate, but it is " -#~ "not issued to the server who is presenting it. Do you wish to continue " -#~ "loading?" -#~ msgstr "" -#~ "Dúirt tú gur mhaith leat glacadh leis an teastas seo, ach ní raibh sé " -#~ "eisithe don bhfreastalaí atá á thaispeáint. An bhfuil fonn ort luchtú mar " -#~ "sin féin?" - -#~ msgid "" -#~ "SSL certificate is being rejected as requested. You can disable this in " -#~ "the KDE System Settings." -#~ msgstr "" -#~ "Teastas SSL á dhiúltú mar a iarradh. Is féidir leat é seo a dhíchumasú i " -#~ "Socruithe an Chórais KDE." - -#~ msgid "Common name:" -#~ msgstr "Gnáthainm:" - -#~ msgid "Acme Co." -#~ msgstr "Acme Tta." - -#~ msgid "Organization:" -#~ msgstr "Eagras:" - -#~ msgid "Organizational unit:" -#~ msgstr "Rannóg:" - -#~ msgid "Country:" -#~ msgstr "Tír:" - -#~ msgid "Canada" -#~ msgstr "Ceanada" - -#~ msgid "State:" -#~ msgstr "Stát:" - -#~ msgid "Quebec" -#~ msgstr "Québec" - -#~ msgid "City:" -#~ msgstr "Cathair:" - -#~ msgid "Lakeridge Meadows" -#~ msgstr "Lakeridge Meadows" - -#~ msgid "Organization / Common Name" -#~ msgstr "Eagras / Gnáthainm" - -#~ msgid "Organizational Unit" -#~ msgstr "Rannóg" - -#~ msgid "Display..." -#~ msgstr "Taispeáin..." - -#~ msgid "Disable" -#~ msgstr "Díchumasaigh" - -#~ msgid "Enable" -#~ msgstr "Cumasaigh" - -#~ msgid "System certificates" -#~ msgstr "Teastais an chórais" - -#~ msgid "User-added certificates" -#~ msgstr "Teastais glactha ag an úsáideoir" - -#~ msgid "Pick Certificates" -#~ msgstr "Roghnaigh Teastais" - -#~ msgid "Other" -#~ msgstr "Eile" - -#~ msgid "Serial number" -#~ msgstr "Sraithuimhir" - -#~ msgid "MD5 digest" -#~ msgstr "Achoimre MD5" - -#~ msgid "SHA1 digest" -#~ msgstr "Achoimre SHA1" - -#~ msgctxt "%1 is the effective date of the certificate, %2 is the expiry date" -#~ msgid "%1 to %2" -#~ msgstr "%1 go %2" - -#~ msgid "SSL Configuration Module" -#~ msgstr "Modúl Cumraíochta SSL" - -#~ msgid "Copyright 2010 Andreas Hartmetz" -#~ msgstr "© 2010 Andreas Hartmetz" - -#~ msgid "Andreas Hartmetz" -#~ msgstr "Andreas Hartmetz" - -#~ msgid "SSL Signers" -#~ msgstr "Sínitheoirí SSL" - -#~ msgid "&Repeat password:" -#~ msgstr "Focal faire a&rís:" - -#~ msgid "&Choose password:" -#~ msgstr "&Roghnaigh focal faire:" - -#~ msgid "Certificate" -#~ msgstr "Teastas" - -#~ msgid "Save selection for this host." -#~ msgstr "Sábháil an roghnúchán don óstríomhaire seo." - -#~ msgid "Send certificate" -#~ msgstr "Seol teastas" - -#~ msgid "Do not send a certificate" -#~ msgstr "Ná seol teastas" - -#~ msgid "KDE SSL Certificate Dialog" -#~ msgstr "Dialóg Theastas SSL KDE" - -#~ msgid "" -#~ "The server %1 requests a certificate.

    Select a " -#~ "certificate to use from the list below:" -#~ msgstr "" -#~ "D'iarr freastalaí %1 teastas ort.

    Roghnaigh teastas ón " -#~ "liosta thíos:" - -#~ msgid "Signature Algorithm: " -#~ msgstr "Algartam Sínithe: " - -#~ msgid "Unknown" -#~ msgstr "Anaithnid" - -#~ msgid "Signature Contents:" -#~ msgstr "Inneachar Sínithe:" - -#~ msgctxt "Unknown" -#~ msgid "Unknown key algorithm" -#~ msgstr "Algartam anaithnid eochrach" - -#~ msgid "Key type: RSA (%1 bit)" -#~ msgstr "Cineál na heochrach: RSA (%1 giotán)" - -#~ msgid "Modulus: " -#~ msgstr "Modal: " - -#~ msgid "Exponent: 0x" -#~ msgstr "Easpónant: 0x" - -#~ msgid "Key type: DSA (%1 bit)" -#~ msgstr "Cineál na heochrach: DSA (%1 giotán)" - -#~ msgid "Prime: " -#~ msgstr "Uimhir Phríomha:" - -#~ msgid "160 bit prime factor: " -#~ msgstr "Fachtóir príomha 160-giotán: " - -#~ msgid "Public key: " -#~ msgstr "Eochair phoiblí: " - -#~ msgid "The certificate is valid." -#~ msgstr "Tá an teastas bailí." - -#~ msgid "The certificate is not valid, yet." -#~ msgstr "Níl an teastas bailí, fós." - -#~ msgid "The certificate is not valid, any more." -#~ msgstr "Níl an teastas bailí a thuilleadh." - -#~ msgid "SSL support was not found." -#~ msgstr "Ní bhfuarthas tacaíocht do SSL." - -#~ msgid "Private key test failed." -#~ msgstr "Theip ar thástáil na heochrach príobháidí." - -#~ msgid "This certificate is not relevant." -#~ msgstr "Níl an teastas seo ábhartha." - -#~ msgid "The certificate is invalid." -#~ msgstr "Tá an teastas neamhbhailí." - -#~ msgid "KDE SSL Information" -#~ msgstr "Eolas faoi SSL KDE" - -#~ msgctxt "The receiver of the SSL certificate" -#~ msgid "Subject" -#~ msgstr "Faighteoir" - -#~ msgctxt "The authority that issued the SSL certificate" -#~ msgid "Issuer" -#~ msgstr "Eisitheoir" - -#~ msgid "SSL support is not available in this build of KDE." -#~ msgstr "Níl tacaíocht SSL ar fáil sa leagan seo de KDE." - -#~ msgctxt "%1, using %2 bits of a %3 bit key" -#~ msgid "%1, %2 %3" -#~ msgstr "%1, %2 %3" - -#~ msgctxt "Part of: %1, using %2 bits of a %3 bit key" -#~ msgid "using %1 bit" -#~ msgid_plural "using %1 bits" -#~ msgstr[0] "ag úsáid %1 ghiotán" -#~ msgstr[1] "ag úsáid %1 ghiotán" -#~ msgstr[2] "ag úsáid %1 ghiotán" -#~ msgstr[3] "ag úsáid %1 ngiotán" -#~ msgstr[4] "ag úsáid %1 giotán" - -#~ msgctxt "Part of: %1, using %2 bits of a %3 bit key" -#~ msgid "of a %1 bit key" -#~ msgid_plural "of a %1 bit key" -#~ msgstr[0] "as eochair %1 ghiotán" -#~ msgstr[1] "as eochair %1 ghiotán" -#~ msgstr[2] "as eochair %1 ghiotán" -#~ msgstr[3] "as eochair %1 ngiotán" -#~ msgstr[4] "as eochair %1 giotán" - -#~ msgctxt "The certificate is not trusted" -#~ msgid "NO, there were errors:" -#~ msgstr "Níl, bhí earráidí ann:" - -#~ msgctxt "The certificate is trusted" -#~ msgid "Yes" -#~ msgstr "Tá, Iontaofa" - -#~ msgid "KDE Certificate Request" -#~ msgstr "Iarratas Teastais KDE" - -#~ msgid "KDE Certificate Request - Password" -#~ msgstr "Iarratas Teastais KDE - Focal Faire" - -#~ msgid "Unsupported key size." -#~ msgstr "Méid eochrach nach dtacaítear leis." - -#~ msgid "KDE" -#~ msgstr "KDE" - -#~ msgid "Please wait while the encryption keys are generated..." -#~ msgstr "Fan go fóill; eochracha criptithe á nginiúint..." - -#~ msgid "Do you wish to store the passphrase in your wallet file?" -#~ msgstr "An bhfuil fonn ort an frása faire a shábháil i do sparán?" - -#~ msgid "Store" -#~ msgstr "Stóráil" - -#~ msgid "Do Not Store" -#~ msgstr "Ná Stóráil" - -#~ msgid "2048 (High Grade)" -#~ msgstr "2048 (Láidir)" - -#~ msgid "1024 (Medium Grade)" -#~ msgstr "1024 (Meánach)" - -#~ msgid "768 (Low Grade)" -#~ msgstr "768 (Lag)" - -#~ msgid "512 (Low Grade)" -#~ msgstr "512 (Lag)" - -#~ msgid "No SSL support." -#~ msgstr "Gan tacaíocht SSL." - -#~ msgid "Certificate password" -#~ msgstr "Focal faire an teastais" - -#~ msgid "GMT" -#~ msgstr "GMT" - -#~ msgid "[padlock]" -#~ msgstr "[glas fraincín]" - -#~ msgctxt "Web page address" -#~ msgid "Address:" -#~ msgstr "Seoladh:" - -#~ msgid "IP address:" -#~ msgstr "Seoladh IP:" - -#~ msgid "Encryption:" -#~ msgstr "Criptiú:" - -#~ msgid "Details:" -#~ msgstr "Mionsonraí:" - -#~ msgid "SSL version:" -#~ msgstr "Leagan SSL:" - -#~ msgid "Certificate chain:" -#~ msgstr "Slabhra teastas:" - -#~ msgid "Trusted:" -#~ msgstr "Iontaofa:" - -#~ msgid "Validity period:" -#~ msgstr "Bailí ó:" - -#~ msgid "Serial number:" -#~ msgstr "Sraithuimhir:" - -#~ msgid "MD5 digest:" -#~ msgstr "Achoimre MD5:" - -#~ msgid "SHA1 digest:" -#~ msgstr "Achoimre SHA1:" - -#~ msgid "" -#~ "The remote host did not send any SSL certificates.\n" -#~ "Aborting because the identity of the host cannot be established." -#~ msgstr "" -#~ "Níor sheol an cianfhreastalaí aon teastais SSL.\n" -#~ "Ní féidir aitheantas an óstríomhaire a fhíorú. Á thobscor." - -#~ msgid "KMailService" -#~ msgstr "KMailService" - -#~ msgid "Mail service" -#~ msgstr "Seirbhís ríomhphoist" - -#~ msgid "Could not find a usable proxy configuration script" -#~ msgstr "" -#~ "Níorbh fhéidir script chumraíochta an tseachfhreastalaí atá inúsáidte a " -#~ "aimsiú" - -#~ msgid "" -#~ "Could not download the proxy configuration script:\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir script chumraíochta an tseachfhreastalaí a íosluchtú:\n" -#~ "%1" - -#~ msgid "Could not download the proxy configuration script" -#~ msgstr "Níorbh fhéidir script chumraíochta an tseachfhreastalaí a íosluchtú" - -#~ msgid "Could not find 'FindProxyForURL' or 'FindProxyForURLEx'" -#~ msgstr "Níorbh fhéidir 'FindProxyForURL' nó 'FindProxyForURLEx' a aimsiú" - -#~ msgid "Error connecting to server." -#~ msgstr "Earráid ag ceangal leis an bhfreastalaí." - -#~ msgid "Not connected." -#~ msgstr "Gan cheangal." - -#~ msgid "Connection timed out." -#~ msgstr "Ceangal imithe thar am." - -#~ msgid "Server said: \"%1\"" -#~ msgstr "Dúirt an freastalaí: \"%1\"" - -#~ msgid "KSendBugMail" -#~ msgstr "KSendBugMail" - -#~ msgid "Sends a bug report by email" -#~ msgstr "Déan tuairisc ar fhabht trí ríomhphost" - -#~ msgid "(c) 2000 Stephan Kulow" -#~ msgstr "© 2000 Stephan Kulow" - -#~ msgid "Stephan Kulow" -#~ msgstr "Stephan Kulow" - -#~ msgid "Author" -#~ msgstr "Údar" - -#~ msgid "Subject line" -#~ msgstr "Líne an ábhair" - -#~ msgid "Recipient" -#~ msgstr "Faighteoir" - -#~ msgid "telnet service" -#~ msgstr "seirbhís telnet" - -#~ msgid "telnet protocol handler" -#~ msgstr "láimhseálaí prótacal telnet" - -#~ msgid "You do not have permission to access the %1 protocol." -#~ msgstr "Níl cead agat prótacal %1 a rochtain." - -#~ msgid "Could not read %1" -#~ msgstr "Níorbh fhéidir %1 a léamh" - -#~ msgid "Edit file type" -#~ msgstr "Cuir cineál comhaid in eagar" - -#~ msgid "The specified folder already exists." -#~ msgstr "Tá an fillteán sonraithe ann cheana." - -#~ msgid "Retrieving from %1..." -#~ msgstr "Á fháil ó %1..." - -#~ msgid "A newer item named '%1' already exists." -#~ msgstr "Tá mír níos nuaí darb ainm '%1' ann cheana." - -#~ msgid "Requesting data to send" -#~ msgstr "Ag iarraidh sonraí le seoladh" - -#~ msgid "Unmounted Icon" -#~ msgstr "Deilbhín \"Neamhfheistithe\"" - -#~ msgctxt "Available space out of total partition size (percent used)" -#~ msgid "%1 out of %2 (%3% used)" -#~ msgstr "%1 as %2 (%3% in úsáid)" - -#~ msgid "size %1 (%2)" -#~ msgstr "méid %1 (%2)" - -#~ msgid "modified on %1" -#~ msgstr "athraithe ar %1" - -#~ msgid "The source file is '%1'" -#~ msgstr "Is é '%1' an comhad foinseach" - -#~ msgctxt "@action:inmenu" -#~ msgid "Move to trash" -#~ msgstr "Bog go dtí an bruscar" - -#~ msgid "&Meta Info" -#~ msgstr "&Meiteafháisnéis" - -#~ msgid "&Auto Skip" -#~ msgstr "&Léim Uathoibríoch" - -#~ msgid "&Overwrite All" -#~ msgstr "F&orscríobh Uile" - -#~ msgid "R&esume All" -#~ msgstr "Lean ar aghaidh le &Gach Rud" - -#~ msgid "Sends a short bug report to submit@bugs.kde.org" -#~ msgstr "Seol tuairisc ghearr faoi fhabht chuig submit@bugs.kde.org" - -#~ msgid "&Edit '%1'..." -#~ msgstr "Cuir '%1' in &Eagar..." - -#~ msgid "&Remove '%1'" -#~ msgstr "&Bain '%1'" - -#~ msgid "size %1" -#~ msgstr "méid %1" - -#~ msgid "0 Items" -#~ msgstr "0 Mír" - -#~ msgid "Add Bookmark" -#~ msgstr "Cuir Leabharmharc Leis" - -#~ msgid " Do you want to retry?" -#~ msgstr " An bhfuil fonn ort é a thriail arís?" - -#~ msgid "Authentication" -#~ msgstr "Fíordheimhniú" - -#~ msgid "One Item" -#~ msgid_plural "%1 Items" -#~ msgstr[0] "%1 Mhír " -#~ msgstr[1] "%1 Mhír" -#~ msgstr[2] "%1 Mhír" -#~ msgstr[3] "%1 Mír" -#~ msgstr[4] "%1 Mír" - -#~ msgid "No Files" -#~ msgstr "Gan Chomhad" - -#~ msgid "One File" -#~ msgid_plural "%1 Files" -#~ msgstr[0] "Comhad Amháin" -#~ msgstr[1] "%1 Chomhad" -#~ msgstr[2] "%1 Chomhad" -#~ msgstr[3] "%1 gComhad" -#~ msgstr[4] "%1 Chomhad" - -#~ msgid "No Folders" -#~ msgstr "Gan Fhillteán" - -#~ msgid "One Folder" -#~ msgid_plural "%1 Folders" -#~ msgstr[0] "Fillteán Amháin" -#~ msgstr[1] "Dhá Fhillteán" -#~ msgstr[2] "%1 Fhillteán" -#~ msgstr[3] "%1 bhFillteán" -#~ msgstr[4] "%1 Fillteán" - -#~ msgid "(%1 Total)" -#~ msgstr "(%1 Iomlán)" - -#~ msgctxt "Items (Folders, Files), Size" -#~ msgid "%1 (%2, %3), %4" -#~ msgstr "%1 (%2, %3), %4" - -#~ msgid "" -#~ "%1\n" -#~ "does not appear to be a valid URL.\n" -#~ msgstr "" -#~ "Is cosúil nach URL bailí é\n" -#~ "'%1'.\n" - -#~ msgid "Invalid URL" -#~ msgstr "URL neamhbhailí" - -#~ msgid "" -#~ "The requested filenames\n" -#~ "%1\n" -#~ "do not appear to be valid;\n" -#~ "make sure every filename is enclosed in double quotes." -#~ msgstr "" -#~ "Dealraíonn sé nach bhfuil na hainmneacha iarrtha bailí\n" -#~ "%1\n" -#~ "Bí cinnte go bhfuil ainm gach comhaid idir comharthaí athfhriotail." - -#~ msgid "Filename Error" -#~ msgstr "Earráid in ainm an chomhaid" - -#~ msgid "KDE Wallet Service" -#~ msgstr "Seirbhís Sparáin KDE" - -#~ msgid "(C) 2002-2008 George Staikos, Michael Leupold, Thiago Maceira" -#~ msgstr "© 2002-2008 George Staikos, Michael Leupold, Thiago Maceira" - -#~ msgid "" -#~ "Error opening the wallet '%1'. Please try again.
    (Error " -#~ "code %2: %3)
    " -#~ msgstr "" -#~ "Earráid agus sparán '%1' á oscailt. Bain triail eile as.
    (Cód earráide %2: %3)
    " - -#~ msgid "Password is empty. (WARNING: Insecure)" -#~ msgstr "Focal faire folamh. (RABHADH: Éadaingean)" - -#~ msgid "Passwords match." -#~ msgstr "Is ionann na focail fhaire." - -#~ msgid "Passwords do not match." -#~ msgstr "Ní ionann na focail fhaire." - -#~ msgid "&Basic setup (recommended)" -#~ msgstr "Cumraíocht &bhunúsach (molta)" - -#~ msgid "&Advanced setup" -#~ msgstr "&Ardsocrú" - -#~ msgid "Yes, I wish to use the KDE wallet to store my personal information." -#~ msgstr "Is mian liom mo chuid faisnéise pearsanta a stóráil sa sparán KDE." - -#~ msgid "Enter a new password:" -#~ msgstr "Tabhair focal faire nua:" - -#~ msgid "Verify password:" -#~ msgstr "Deimhnigh an focal faire:" - -#~ msgid "Allow &Once" -#~ msgstr "Ceadaigh &uair amháin" - -#~ msgid "Allow &Always" -#~ msgstr "Ceadaigh i &gcónaí" - -#~ msgid "&Deny" -#~ msgstr "&Diúltaigh" - -#~ msgid "Deny &Forever" -#~ msgstr "Diúltaigh i g&Cónaí" - -#~ msgid "Locality:" -#~ msgstr "Áit:" - -#~ msgctxt "Federal State" -#~ msgid "State:" -#~ msgstr "Stát:" - -#~ msgid "Email:" -#~ msgstr "Ríomhphost:" - -#~ msgctxt "@info:tooltip" -#~ msgid "Parent Folder" -#~ msgstr "Máthairfhillteán" - -#~ msgid "Free disk space:" -#~ msgstr "Spás diosca saor:" - -#~ msgctxt "Items in a folder" -#~ msgid "? items" -#~ msgstr "? mír" - -#~ msgid "https://localhost/" -#~ msgstr "https://localhost/" - -#~ msgid "127.0.0.1" -#~ msgstr "127.0.0.1" - -#~ msgid "Kx = DH, Auth = RSA, MAC = SHA1" -#~ msgstr "Kx = DH, Auth = RSA, MAC = SHA1" - -#~ msgid "TLS v0.2.93pre5" -#~ msgstr "TLS v0.2.93pre5" - -#~ msgid "23" -#~ msgstr "23" - -#~ msgid "B4:DB:00:2E" -#~ msgstr "B4:DB:00:2E" - -#~ msgid "Please specify the filename to save to." -#~ msgstr "Tabhair ainm an chomhaid le sábháil." - -#~ msgid "Please select the file to open." -#~ msgstr "Roghnaigh an comhad le hoscailt." - -#~ msgid "Certificate has expired." -#~ msgstr "Tá an teastas as dáta." - -#~ msgid "Signature is untrusted." -#~ msgstr "Síniú neamhiontaofa." - -#~ msgid "Signature test failed." -#~ msgstr "Theip ar thástáil na sínithe." - -#~ msgid "Rejected, possibly due to an invalid purpose." -#~ msgstr "Diúltaithe, is féidir de bharr fáth neamhbhailí." - -#~ msgid "Common Name:" -#~ msgstr "Gnáthainm:" - -#~ msgid "Form" -#~ msgstr "Foirm" - -#~ msgid "A&ssociation" -#~ msgstr "C&omhcheangal" - -#~ msgid "Pattern ( example: *.html;*.htm )" -#~ msgstr "Patrún ( mar shampla: *.html;*.htm )" - -#~ msgid "Co&nnect" -#~ msgstr "Na&sc" - -#~ msgid "C&ryptography Configuration..." -#~ msgstr "Cum&raíocht Chriptithe..." - -#~ msgid "Chain:" -#~ msgstr "Slabhra:" - -#~ msgid "0 - Site Certificate" -#~ msgstr "0 - Teastas Suímh" - -#~ msgid "Peer certificate:" -#~ msgstr "Teastas an chomhghleacaí:" - -#~ msgid "Certificate state:" -#~ msgstr "Staid an teastais:" - -#~ msgid "Valid until:" -#~ msgstr "Bailí go dtí:" - -#~ msgid "Cipher in use:" -#~ msgstr "Sifear in úsáid:" - -#~ msgid "Cipher strength:" -#~ msgstr "Neart an tsifir:" - -#~ msgid "Connecting to %1..." -#~ msgstr "Ag ceangal le %1..." - -#~ msgid "Proxy %1 at port %2" -#~ msgstr "Seachfhreastalaí %1 ag port %2" - -#~ msgid "%1 (port %2)" -#~ msgstr "%1 (port %2)" - -#~ msgid "Ok" -#~ msgstr "OK" - -#~ msgid "Unknown View" -#~ msgstr "Amharc Anaithnid" - -#~ msgid "Root Folder: %1" -#~ msgstr "Fréamhfhillteán: %1" - -#~ msgid "Home Folder: %1" -#~ msgstr "Fillteán Baile: %1" - -#~ msgid "Documents: %1" -#~ msgstr "Cáipéisí: %1" - -#~ msgid "Desktop: %1" -#~ msgstr "Deasc: %1" - -#~ msgid "Large Icons" -#~ msgstr "Deilbhíní Móra" - -#~ msgid "Thumbnail Previews" -#~ msgstr "Réamhamhairc Bheaga" - -#~ msgid "Preview" -#~ msgstr "Réamhamharc" - -#~ msgid "No preview available." -#~ msgstr "Níl réamhamharc ar fáil." - -#~ msgid "Stopped" -#~ msgstr "Stoptha" - -#~ msgid "&Automatic preview" -#~ msgstr "Ré&amhamharc Uathoibríoch" - -#~ msgid "&Preview" -#~ msgstr "&Réamhamharc" - -#~ msgid "&URL:" -#~ msgstr "&URL:" - -#~ msgid "Reverse" -#~ msgstr "Aisiompaithe" - -#~ msgid "Case Insensitive" -#~ msgstr "Ná bac le cás na litreacha" - -#~ msgid "Netscape Bookmarks" -#~ msgstr "Leabharmharcanna Netscape" - -#~ msgid "kopenwithdialogtest" -#~ msgstr "kopenwithdialogtest" - -#~ msgid "kurlrequestertest" -#~ msgstr "kurlrequestertest" - -#~ msgid "kfstest" -#~ msgstr "kfstest" - -#~ msgid "1 day 23:59:00" -#~ msgstr "1 lá 23:59:00" - -#~ msgid "00:00:50" -#~ msgstr "00:00:50" - -#~ msgid "Select Mime Types" -#~ msgstr "Roghnaigh Cineálacha MIME" - -#~ msgid "KProtocolinfo Test" -#~ msgstr "Tástáil KProtocolinfo" - -#~ msgid "KDirModelTest" -#~ msgstr "KDirModelTest" - -#~ msgid "Test for KDirModel" -#~ msgstr "Tástáil KDirModel" - -#~ msgid "Source URL" -#~ msgstr "URL Foinseach" - -#~ msgid "" -#~ "Operation (list,listrecursive,stat,get,put,copy,move,del,shred,mkdir)" -#~ msgstr "" -#~ "Oibríocht (list,listrecursive,stat,get,put,copy,move,del,shred,mkdir)" - -#~ msgid "KDirWatchTest" -#~ msgstr "KDirWatchTest" - -#~ msgid "getalltest" -#~ msgstr "getalltest" - -#~ msgid "kscantest" -#~ msgstr "kscantest" - -#~ msgid "(C) 2006 Dirk Stoecker" -#~ msgstr "© 2006 Dirk Stoecker" - -#~ msgid "Dirk Stoecker" -#~ msgstr "Dirk Stoecker" - -#~ msgid "kdirlistertest" -#~ msgstr "kdirlistertest" - -#~ msgid "kurlcompletiontest" -#~ msgstr "kurlcompletiontest" - -#~ msgid "safesitetest" -#~ msgstr "safesitetest" - -#~ msgid "kacltest" -#~ msgstr "kacltest" - -#~ msgid "netaccesstest" -#~ msgstr "netaccesstest" - -#~ msgid "[url1,url2 ,...]" -#~ msgstr "[url1,url2 ,...]" - -#~ msgid "KIO-netrc-test" -#~ msgstr "KIO-netrc-test" - -#~ msgid "ksycocatest" -#~ msgstr "ksycocatest" - -#~ msgid "kcookietest" -#~ msgstr "kcookietest" - -#~ msgid "(C) 2004 Waldo Bastian" -#~ msgstr "© 2004 Waldo Bastian" - -#~ msgid "&Add Entry..." -#~ msgstr "&Cuir Iontráil leis..." - -#~ msgid "%1 (Link)" -#~ msgstr "%1 (Nasc)" - -#~ msgid "Hide Preview" -#~ msgstr "Folaigh Réamhamharc" - -#~ msgid "Desktop" -#~ msgstr "Deasc" - -#~ msgid "Documents" -#~ msgstr "Cáipéisí" - -#~ msgid "Storage Media" -#~ msgstr "Meáin Stórála" - -#~ msgid "Network Folders" -#~ msgstr "Fillteáin Líonra" - -#~ msgid "&Large Icons" -#~ msgstr "Deilbhíní &Mhóra" - -#~ msgid "&Small Icons" -#~ msgstr "Deilbhíní &Bheaga" - -#~ msgid "kfile" -#~ msgstr "kfile" - -#~ msgid "No files specified" -#~ msgstr "Níor ainmníodh comhaid" - -#~ msgid "Menu Editor" -#~ msgstr "Eagarthóir Roghchláir" - -#~ msgid "New..." -#~ msgstr "Nua..." - -#~ msgid "Move Up" -#~ msgstr "Bog Suas" - -#~ msgid "Move Down" -#~ msgstr "Bog Síos" - -#~ msgid "" -#~ "Could not find mime type\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir an cineál MIME a aimsiú:\n" -#~ "%1\"\"" - -#~ msgid "No mime types installed." -#~ msgstr "Níl aon chineál MIME suiteáilte." - -#~ msgid "Source:" -#~ msgstr "Foinse:" - -#~ msgid "&Keep this window open after transfer is complete" -#~ msgstr "&Fág an fhuinneog seo ar oscailt tar éis críoch an aistrithe" - -#~ msgid "Open &File" -#~ msgstr "Oscail &Comhad" - -#~ msgid "%1 % of %2 " -#~ msgstr "%1 % as %2 " - -#~ msgid " (Copying)" -#~ msgstr " (ag cóipeáil)" - -#~ msgid " (Moving)" -#~ msgstr " (ag bogadh)" - -#~ msgid " (Deleting)" -#~ msgstr " (ag scriosadh)" - -#~ msgid " (Creating)" -#~ msgstr " (ag cruthú)" - -#~ msgid " (Done)" -#~ msgstr " (Críochnaithe)" - -#~ msgid "%1 of %2 complete" -#~ msgstr "%1 as %2 déanta" - -#~ msgid "%2 / %1 file" -#~ msgid_plural "%2 / %1 files" -#~ msgstr[0] "%2 / %1 chomhad" -#~ msgstr[1] "%2 / %1 chomhad" -#~ msgstr[2] "%2 / %1 chomhad" -#~ msgstr[3] "%2 / %1 gcomhad" -#~ msgstr[4] "%2 / %1 comhad" - -#~ msgid "Stalled" -#~ msgstr "Ag fanacht" - -#~ msgid "%1/s ( %2 remaining )" -#~ msgstr "%1/s ( %2 fós le déanamh )" - -#~ msgid "Loading Progress" -#~ msgstr "Dul chun cinn luchtaithe" - -#~ msgid "Resuming from %1" -#~ msgstr "Ag leanadh ar aghaidh ó %1" - -#~ msgid "Not resumable" -#~ msgstr "Ní féidir leanadh ar aghaidh" - -#~ msgid "%1/s (done)" -#~ msgstr "%1/s (déanta)" - -#~ msgid " %1/s " -#~ msgstr " %1/s " - -#~ msgid "Command to execute" -#~ msgstr "Ordú le rith" - -#~ msgid "" -#~ "The URL %1\n" -#~ "is malformed" -#~ msgstr "" -#~ "Tá URL %1\n" -#~ "míchumtha" - -#~ msgid "" -#~ "Remote URL %1\n" -#~ "not allowed with --tempfiles switch" -#~ msgstr "" -#~ "Ní cheadaítear URL %1\n" -#~ "cianda in éineacht leis an rogha --tempfiles" - -#~ msgid "" -#~ "The supposedly temporary file\n" -#~ "%1\n" -#~ "has been modified.\n" -#~ "Do you still want to delete it?" -#~ msgstr "" -#~ "Athraíodh an comhad sealadach\n" -#~ "(mar dhea) %1.\n" -#~ "An bhfuil fonn ort é a scriosadh fós?" - -#~ msgid "File Changed" -#~ msgstr "Comhad Athraithe" - -#~ msgid "Do Not Delete" -#~ msgstr "Ná Scrios" - -#~ msgid "" -#~ "The file\n" -#~ "%1\n" -#~ "has been modified.\n" -#~ "Do you want to upload the changes?" -#~ msgstr "" -#~ "Athraíodh an comhad\n" -#~ "%1.\n" -#~ "An bhfuil fonn ort na hathruithe a uasluchtú?" - -#~ msgid "Upload" -#~ msgstr "Uasluchtaigh" - -#~ msgid "Do Not Upload" -#~ msgstr "Ná hUasluchtaigh" - -#~ msgid "KIOExec" -#~ msgstr "KIOExec" - -#~ msgid "Retry" -#~ msgstr "Atriail" - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# Ctrl+"s" for "Sábháil Mar" under Main -> Comhad; "Seol/Send" has no accel -#~ msgid "s" -#~ msgstr "s" - -#~ msgid "ms" -#~ msgstr "ms" - -#~ msgid "pixels" -#~ msgstr "picteilín" - -#~ msgid "in" -#~ msgstr "orlach" - -#~ msgid "cm" -#~ msgstr "cm" - -#~ msgid "B" -#~ msgstr "B" - -#~ msgid "fps" -#~ msgstr "fss" - -#~ msgid "dpi" -#~ msgstr "pso" - -#~ msgid "Hz" -#~ msgstr "Hz" - -#~ msgid "mm" -#~ msgstr "mm" - -#~ msgid "%1 TB" -#~ msgstr "%1 TB" - -#~ msgid "%1 GB" -#~ msgstr "%1 GB" - -#~ msgid "%1 MB" -#~ msgstr "%1 MB" - -#~ msgid "%1 KB" -#~ msgstr "%1 kB" - -#~ msgid "0 B" -#~ msgstr "0 B" - -#~ msgid "Password" -#~ msgstr "Focal Faire" - -#~ msgid "You need to supply a username and a password" -#~ msgstr "Is gá ainm úsáideora agus focal faire a sholáthar" - -#~ msgid "&Password:" -#~ msgstr "&Focal Faire:" - -#~ msgid "&Keep password" -#~ msgstr "&Coimeád an focal faire" - -#~ msgid "Shredding: pass %1 of 35" -#~ msgstr "Léirscriosadh: céim %1 as 35" - -#~ msgid "Settings..." -#~ msgstr "Socruithe..." - -#~ msgid "Show column headers" -#~ msgstr "Taispeáin teidil na gcolún" - -#~ msgid "Show statusbar" -#~ msgstr "Taispeáin an barra stádais" - -#~ msgid "Show information:" -#~ msgstr "Taispeáin eolas:" - -#~ msgid "URL" -#~ msgstr "URL" - -#~ msgctxt "Remaining Time" -#~ msgid "Rem. Time" -#~ msgstr "Am Fágtha" - -#~ msgid "%" -#~ msgstr "%" - -#~ msgid "Count" -#~ msgstr "Líon" - -#~ msgctxt "Resume" -#~ msgid "Res." -#~ msgstr "Lean" - -#~ msgid "%1/s" -#~ msgstr "%1/s" - -#~ msgid "Creating" -#~ msgstr "Á Chruthú" - -#~ msgctxt "Remaining Size" -#~ msgid " Rem. Size: %1 kB " -#~ msgstr " Méid fágtha: %1 kB " - -#~ msgctxt "Remaining Time" -#~ msgid " Rem. Time: 00:00:00 " -#~ msgstr " Am fágtha: 00:00:00 " - -#~ msgid " %1 kB/s " -#~ msgstr " %1 kB/s " - -#~ msgid "Developer" -#~ msgstr "Forbróir" - -#~ msgid "Clear input field" -#~ msgstr "Glan an réimse ionchurtha" - -#~ msgid "Clear Search" -#~ msgstr "Glan an Cuardach" - -#~ msgid "Sounds" -#~ msgstr "Fuaimeanna" - -#~ msgid "Logging" -#~ msgstr "Logáil" - -#~ msgid "Program Execution" -#~ msgstr "Rith an Chláir" - -#~ msgid "Message Windows" -#~ msgstr "Fuinneoga Teachtaireachta" - -#~ msgid "Passive Windows" -#~ msgstr "Fuinneoga Éigníomhacha" - -#~ msgid "Taskbar" -#~ msgstr "Tascbharra" - -#~ msgid "Execute a program" -#~ msgstr "Rith clár" - -#~ msgid "Display a messagebox" -#~ msgstr "Taispeáin bosca teachtaireachta" - -#~ msgid "Log to a file" -#~ msgstr "Logáil go comhad" - -#~ msgid "Play a sound" -#~ msgstr "Seinn fuaim" - -#~ msgid "Notification Settings" -#~ msgstr "Socruithe Fograíochta" - -#~ msgid "Advanced <<" -#~ msgstr "Casta <<" - -#~ msgid "Hide advanced options" -#~ msgstr "Ná taispeáin ardroghanna" - -#~ msgid "Advanced >>" -#~ msgstr "Casta >>" - -#~ msgid "Show advanced options" -#~ msgstr "Taispeáin Ardroghanna" - -#~ msgid "Are You Sure?" -#~ msgstr "An bhfuil tú cinnte?" - -#~ msgid "Select Sound File" -#~ msgstr "Roghnaigh Comhad Fuaime" - -#~ msgid "Select Log File" -#~ msgstr "Roghnaigh Logchomhad" - -#~ msgid "Select File to Execute" -#~ msgstr "Roghnaigh Comhad le Rith" - -#~ msgid "The specified file does not exist." -#~ msgstr "Níl an comhad sonraithe ann." - -#~ msgid "No description available" -#~ msgstr "Níl cur síos ar fáil" - -#~ msgid "E&xecute" -#~ msgstr "&Rith" - -#~ msgid "Comman&d:" -#~ msgstr "Or&dú:" - -#~ msgid "&Window title:" -#~ msgstr "&Teideal na fuinneoga:" - -#~ msgid "KDE Wallet Wizard" -#~ msgstr "Treoraí Sparán KDE" - -#~ msgid "Password Selection" -#~ msgstr "Roghnú na bhFocal Faire" - -#~ msgid "Security Level" -#~ msgstr "Leibhéal Slándála" - -#~ msgid "Events" -#~ msgstr "Imeachtaí" - -#~ msgid "Apply to &all applications" -#~ msgstr "Cuir i bhfeidhm i ng&ach fheidhmchlár" - -#~ msgid "Show a &message in a pop-up window" -#~ msgstr "Taispeáin &teachtaireacht i bpreabfhuinneog" - -#~ msgid "E&xecute a program:" -#~ msgstr "Rith &clár:" - -#~ msgid "Play a &sound:" -#~ msgstr "Seinn &fuaim:" - -#~ msgid "Test the Sound" -#~ msgstr "Tástáil an Fhuaim" - -#~ msgid "&Use a passive window that does not interrupt other work" -#~ msgstr "Úsáid f&uinneog éighníomhach nach gcuirfidh isteach nó obair eile" - -#~ msgid "Player Settings" -#~ msgstr "Socruithe an tSeinnteora" - -#~ msgid "&Details <<" -#~ msgstr "&Mionsonraí <<" - -#~ msgid "&Details >>" -#~ msgstr "&Mionsonraí >>" - -#~ msgid "Connection was to %1 at port %2" -#~ msgstr "Bhí an ceangal le %1 ag port %2" +msgstr "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/gd/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/gd/kiconthemes6.po index dd46d26c81..59d450e7e0 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/gd/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/gd/kiconthemes6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2015-11-04 15:14+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Fòram na Gàidhlig\n" @@ -19,100 +19,100 @@ msgstr "" "X-Generator: Poedit 1.8.4\n" "X-Project-Style: kde\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Tagh ìomhaigheag" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Gnìomhan" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplacaidean" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Roinnean-seòrsa" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Uidheaman" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Suaicheantasan" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Samhlaidhean-gnùis" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Seòrsaichean MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Àiteachan" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Staid" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Rùraich..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Tagh ìomhaigheag" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/gl/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/gl/kiconthemes6.po index 0a9b18a6e9..7abf747ff5 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/gl/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/gl/kiconthemes6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-16 23:24+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" @@ -26,98 +26,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 24.02.0\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Seleccionar a icona…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Todas" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "So as simbólicas" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Non as simbólicas" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Todas" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Accións" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicacións" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorías" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositivos" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemas" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emocións" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipos mime" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Lugares" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estado" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Outras" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Examinar…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Ningunha icona coincide coa busca." -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Non hai iconas nesta categoría." #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Seleccionar a icona" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/gu/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/gu/kiconthemes6.po index c0e535a7f6..5c5cbf12c3 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/gu/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/gu/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2009-05-13 18:57+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -17,72 +17,72 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "ચિહ્ન પસંદ કરો" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "ક્રિયાઓ" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "કાર્યક્રમો" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "વર્ગો" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "ઉપકરણો" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "નિશાનીઓ" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "લાગણીચિહ્નો" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "માઇમપ્રકારો" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "જગ્યાઓ" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "સ્થિતિ" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -90,29 +90,29 @@ msgctxt "Other icons" msgid "Other" msgstr "બીજું" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "શોધખોળ (&B)..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "ચિહ્ન પસંદ કરો" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/he/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/he/kiconthemes6.po index 204e6bc558..bd2c1a8647 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/he/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/he/kiconthemes6.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 06:10+0200\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" @@ -35,98 +35,98 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "בחירת סמל…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "הכול" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "רק סמליים" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "בלי סמליים" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "הכול" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "פעולות" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "תוכניות" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "קטגוריות" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "התקנים" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "סמלים" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "סימוני רגש" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "סוגי קבצים" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "מקומות" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "מצב" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "אחר" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "עיון…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "אין סמלים שעונים לחיפוש" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "אין סמלים בקטגוריה הזאת" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "בחירת סמל" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/hi/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/hi/kiconthemes6.po index 96e4fa8297..33083a7272 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/hi/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/hi/kiconthemes6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-12-15 19:32+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" @@ -21,100 +21,100 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 24.08.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "प्रतीक चुनें" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "सभी" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "सभी" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "क्रियाएं" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "अनुप्रयोग" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "श्रेणियाँ" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "उपकरण" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "एम्ब्लेम" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "इमोट्स" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "माइमटाइप्स" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "स्थान" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "स्थिति" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "अन्य" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "ब्राउज करें…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "खोज से मेल खाने वाला कोई प्रतीक नहीं हैं" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "इस श्रेणी में कोई प्रतीक नहीं हैं" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "प्रतीक चुनें" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/hr/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/hr/kiconthemes6.po index be5df3c6e7..c1a117c92f 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/hr/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/hr/kiconthemes6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2011-07-22 16:13+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -25,72 +25,72 @@ msgstr "" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Odaberi ikonu" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Akcije" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikacije" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorije" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Uređaji" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Ikonica" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Smajlići" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mimetipovi" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Mjesta" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stanje" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -98,29 +98,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Ostalo" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "Po&traži…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Odaberi ikonu" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/hsb/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/hsb/kiconthemes6.po index 339728c5bc..6c6e11e7e8 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/hsb/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/hsb/kiconthemes6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2008-11-17 23:54+0100\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" @@ -20,101 +20,101 @@ msgstr "" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Wubjerće piktogram" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Akcije" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programy" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorije" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Graty" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemy" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotikony" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime-družiny" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Městna" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Druzy" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Přelistuj..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Wubjerće piktogram" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/hu/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/hu/kiconthemes6.po index af181256e3..8dc6241381 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/hu/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/hu/kiconthemes6.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: KDE 4.4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-05-22 10:43+0200\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" @@ -16,98 +16,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 24.07.70\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Ikonválasztás…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Összes" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Csak jelképes" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Nem jelképes" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Összes" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Események" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Alkalmazások" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategóriák" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Eszközök" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblémák" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Hangulatjelek" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-típusok" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Helyek" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Állapot" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Egyéb" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Böngészés…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Nincsenek a keresésre illeszkedő ikonok" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Nincsenek ikonok ebben a kategóriában" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Ikonválasztás" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ia/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ia/kiconthemes6.po index b11cf2d21f..62b5204793 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ia/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ia/kiconthemes6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 10:47+0100\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" @@ -17,98 +17,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 22.12.3\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Selige icone…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Toto" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Solmente Symbolic" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Nulle Symbolic" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Omne" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Actiones" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Applicationes" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorias" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositivos" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemas" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotes" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Typos mime" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Placias" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stato" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Altere" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Naviga…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Nulle icones correspondente al cerca" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Nulle icones in iste categoria" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Selige icone" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" @@ -3313,7 +3313,7 @@ msgstr "Cerca icones ..." #~ "protocollo ha reportate un error interne." #~ msgid "Improperly Formatted URL" -#~ msgstr "URL Formattate de modo Improprie" +#~ msgstr "URL Fnormatate de modo Improprie" #~ msgid "" #~ "The Uniform Resource L\n" "Language-Team: https://t.me/Localizations_KDE_Indonesia\n" @@ -17,101 +17,101 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 21.12.3\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Pilih Ikon" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "Semua" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Semua" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aksi" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikasi" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategori" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Peranti" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblem" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emos" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mimetypes" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Tempat" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Telusuri..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Pilih Ikon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/is/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/is/kiconthemes6.po index 9353e8d14c..99ae8fdbb4 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/is/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/is/kiconthemes6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-04-15 09:29+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic\n" @@ -32,98 +32,98 @@ msgstr "" "\n" "\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Velja tákn…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Allt" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Einungis táknræn" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Engin táknræn" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Allt" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aðgerðir" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Forrit" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Flokkar" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Tæki" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Merki" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Tjákn" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-gerðir" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Staðir" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Staða" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Annað" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Fletta…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Engin tákn passa við leitina" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Engin tákn í þessum flokki" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Velja tákn" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/it/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/it/kiconthemes6.po index 6f7c7ab8be..47139159ad 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/it/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/it/kiconthemes6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-13 11:49+0100\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" @@ -23,98 +23,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 24.02.0\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Seleziona icona…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Tutte" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Solo simboliche" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Non simboliche" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Tutte" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Azioni" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Applicazioni" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorie" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositivi" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemi" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Faccine" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipi MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Risorse" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stato" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Altro" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Sfoglia..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Nessuna icona corrispondente alla ricerca " -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Non ci sono icone in questa categoria" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Scegli l'icona" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ja/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ja/kiconthemes6.po index 4c0cd3b9cf..17dbc1f6e9 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ja/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ja/kiconthemes6.po @@ -1,4 +1,5 @@ # Translation of kio4 into Japanese. +# SPDX-FileCopyrightText: 2026 Mint <5602mint@gmail.com> # This file is distributed under the same license as the kdelibs package. # Taiki Komoda , 2002, 2010. # Noriko Mizumoto , 2004. @@ -12,10 +13,10 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" -"PO-Revision-Date: 2019-05-25 16:26+0900\n" -"Last-Translator: Fumiaki Okushi \n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" +"PO-Revision-Date: 2026-03-01 20:41+0900\n" +"Last-Translator: Mint <5602mint@gmail.com>\n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,118 +24,115 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -"X-Generator: Lokalize 19.04.1\n" +"X-Generator: Lokalize 25.12.2\n" -#: widgets/kiconbutton.cpp:75 -#, fuzzy, kde-format -#| msgid "Select Icon" +#: widgets/kiconbutton.cpp:83 +#, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" -msgstr "アイコンの選択" +msgstr "アイコンを選択…" -#: widgets/kicondialog.cpp:329 -#, fuzzy, kde-format -#| msgid "All" +#: widgets/kicondialog.cpp:343 +#, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "すべて" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" -msgstr "" +msgstr "シンボルのみ" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" -msgstr "" +msgstr "シンボル以外" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "すべて" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "アクション" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "アプリケーション" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "カテゴリ" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "デバイス" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "エンブレム" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "感情アイコン" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME タイプ" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "場所" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "状態" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" -msgstr "" +msgstr "その他" -#: widgets/kicondialog.cpp:439 -#, fuzzy, kde-format -#| msgid "&Browse..." +#: widgets/kicondialog.cpp:455 +#, kde-format msgid "Browse…" -msgstr "ブラウズ(&B)..." +msgstr "参照…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" -msgstr "" +msgstr "アイコンの検索結果なし" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" -msgstr "" +msgstr "このカテゴリのアイコンなし" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "アイコンの選択" -#: widgets/kicondialog.cpp:730 -#, fuzzy, kde-format -#| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" +#: widgets/kicondialog.cpp:746 +#, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" -msgstr "*.png *.xpm *.svg *.svgz|アイコンファイル (*.png *.xpm *.svg *.svgz)" +msgstr "" +"*.ico *.png *.xpm *.svg *.svgz|アイコンファイル (*.ico *.png *.xpm *.svg *." +"svgz)" #. i18n: ectx: property (accessibleName), widget (QComboBox, contextCombo) #: widgets/kicondialog.ui:24 #, kde-format msgid "Icon category" -msgstr "" +msgstr "アイコンのカテゴリ" #. i18n: ectx: property (placeholderText), widget (QLineEdit, searchLine) #: widgets/kicondialog.ui:44 -#, fuzzy, kde-format -#| msgid "Select Icon" +#, kde-format msgid "Search Icons..." -msgstr "アイコンの選択" +msgstr "アイコンを検索..." diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ka/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ka/kiconthemes6.po index 13b4f5c88b..c82b79c489 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ka/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ka/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 05:09+0100\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" @@ -18,98 +18,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.3.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "არჩიეთ ხატულა…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "ყველა" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "მხოლოდ, სიმბოლური" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "სიმბოლურების გარეშე" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "&ყველა" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "მოქმედებები" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "პროგრამები" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "კატეგორიები" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "მოწყობილობები" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "ემბლემები" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "ეგოები" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME ტიპები" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "ადგილები" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "სტატუსი" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "სხვა" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "არჩევა…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "თქვენს ძებნას პასუხები არ აქვს" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "კატეგორიაში ხატულები არაა" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "არჩიეთ ხატულა" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/kk/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/kk/kiconthemes6.po index e362967eff..160387a7c5 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/kk/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/kk/kiconthemes6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2013-04-19 06:26+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -22,72 +22,72 @@ msgstr "" "\n" "\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Таңбашаны таңдау" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Әрекеттер" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Қолданбалар" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Санаттар" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Құрлығылар" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Эмблемалар" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Көңіл-күй белгілері" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME түрлері" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Орындар" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Күй-жайлар" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -95,29 +95,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Өзге" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Шолу..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Таңбашаны таңдау" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/km/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/km/kiconthemes6.po index fae9838d31..961235ffa0 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/km/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/km/kiconthemes6.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2012-06-27 10:04+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" @@ -17,72 +17,72 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "X-Language: km-KH\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "ជ្រើស​រូបតំណាង" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "អំពើ" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "កម្មវិធី" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "ប្រភេទ" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "ឧបករណ៍" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "បដិរូប" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "សញ្ញា​អារម្មណ៍" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "ប្រភេទ Mime" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "ទីកន្លែង" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "ស្ថាន​ភាព" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -90,29 +90,29 @@ msgctxt "Other icons" msgid "Other" msgstr "ផ្សេងទៀត" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "រកមើល... " -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "ជ្រើស​រូបតំណាង" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ko/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ko/kiconthemes6.po index 37afff3abd..3f8b4c380d 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ko/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ko/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-08-19 23:12+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -18,98 +18,98 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 23.08.5\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "아이콘 선택…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "모두" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "기호 아이콘만" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "기호 아이콘 제회" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "모두" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "동작" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "앱" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "분류" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "장치" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "엠블렘" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "이모티콘" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME 형식" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "위치" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "상태" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "기타" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "찾아보기..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "검색과 일치하는 아이콘 없음" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "이 분류에 아이콘 없음" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "아이콘 선택" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ku/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ku/kiconthemes6.po index 93632fbe3d..b6224c7500 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ku/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ku/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2007-12-21 21:45+0100\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" @@ -20,98 +20,98 @@ msgstr "" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" "X-Generator: Poedit 3.4.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Pasirinkti piktogramą…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Visos" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Tik simbolinės" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Be simbolinių" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Visos" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Veiksmai" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programos" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorijos" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Įrenginiai" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemos" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emocijų piktogramos" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME tipai" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Vietos" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Būsena" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Kita" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Naršyti…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Nerasta jokių paieškos atitikmenų" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Šioje kategorijoje nėra piktogramų" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Pasirinkti piktogramą" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/lv/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/lv/kiconthemes6.po index d1557c0307..92b619fe57 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/lv/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/lv/kiconthemes6.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-04-02 12:40+0300\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" @@ -25,98 +25,98 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Atlasiet ikonu..." -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Visas" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Tikai simboliskās" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Bez simboliskajām" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Visas" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Darbības" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programmas" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorijas" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Ierīces" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblēmas" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emocijas" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME tipi" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Vietas" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Statuss" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Citas" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Pārlūkot..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Meklēšanai neatbilst neviena ikona" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Šajā kategorijā ikonu nav" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Atlasiet ikonu" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/mai/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/mai/kiconthemes6.po index 20ea5e6957..0d161da428 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/mai/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/mai/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2008-12-03 15:07+0530\n" "Last-Translator: Sangeeta Kumari \n" "Language-Team: Maithili \n" @@ -18,101 +18,101 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: KBabel 1.11.4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "प्रतीक चुनू" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "क्रियासभ" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "अनुप्रयोग" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "श्रेणीसभ" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "डिवाइस" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "प्रतीक" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "इमोट्स" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "माइमटाइप्स" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "स्थान" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "स्थिति" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "आन " -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "ब्राउज... (&B)" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "प्रतीक चुनू" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/mk/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/mk/kiconthemes6.po index c56d77ae99..1b06aa4f29 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/mk/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/mk/kiconthemes6.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2010-01-21 13:58+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -26,72 +26,72 @@ msgstr "" "Plural-Forms: Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : " "2;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Изберете икона" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Дејства" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Апликации" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Категории" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Уреди" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Амблеми" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Емотикони" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-типови" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Места" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Статус" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -99,29 +99,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Други" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Разгледај..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Изберете икона" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ml/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ml/kiconthemes6.po index c9d97fd9c3..c0d4e7b0f7 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ml/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ml/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2010-06-25 20:40+0530\n" "Last-Translator: Divya.k \n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" "Language-Team: American English \n" @@ -17,72 +17,72 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 1.5\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "चिन्ह निवडा" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "क्रिया" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "अनुप्रयोग" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "विभाग" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "साधने" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "एम्ब्लेम्स" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "एमोटस" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime प्रकार" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "जागा" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "स्थिती" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -90,29 +90,29 @@ msgctxt "Other icons" msgid "Other" msgstr "इतर" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "संचार करा (&B)..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "चिन्ह निवडा" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ms/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ms/kiconthemes6.po index b5434e9638..eac7cafbe3 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ms/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ms/kiconthemes6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2009-03-09 22:58+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -20,103 +20,103 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Pilih Ikon" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Aksi" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikasi" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 #, fuzzy msgid "Categories" msgstr "Kategori" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Peranti" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Jenis Mime" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 #, fuzzy msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Lain-lain" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "Lun&gsur." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Pilih Ikon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/nb/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/nb/kiconthemes6.po index 426452b1c0..812757e7c6 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/nb/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/nb/kiconthemes6.po @@ -15,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2012-12-30 20:55+0100\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,98 +29,98 @@ msgstr "" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Handlinger" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programmer" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorier" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Enheter" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemer" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotikoner" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime-typer" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Steder" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Velg ikon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/nds/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/nds/kiconthemes6.po index 5816cdd6bb..34d7bb59c1 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/nds/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/nds/kiconthemes6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2014-02-09 03:39+0100\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -20,72 +20,72 @@ msgstr "" "X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Lüttbild utsöken" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Akschonen" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programmen" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorien" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Reedschappen" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Symbolen" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Snuten" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-Typen" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Öörd" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -93,29 +93,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Anner" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Utsöken..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Lüttbild utsöken" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ne/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ne/kiconthemes6.po index fc45a134cd..2569f0838c 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ne/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ne/kiconthemes6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2007-08-22 16:04+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" @@ -22,101 +22,101 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=n !=1\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "प्रतिमा चयन गर्नुहोस्" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "कार्य" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "अनुप्रयोग" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "कोटि" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "यन्त्र" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "चिन्ह लगाउँछ" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "व्यक्त गर्दछ" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "माइम प्रकार" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "राख्दछ" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "वस्तुस्थिति" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "अन्य" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "ब्राउज गर्नुहोस्..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "प्रतिमा चयन गर्नुहोस्" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/nl/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/nl/kiconthemes6.po index df45333069..4014828531 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/nl/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/nl/kiconthemes6.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 09:00+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" @@ -32,98 +32,98 @@ msgstr "" "X-Generator: Lokalize 23.08.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Pictogram selecteren…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Alles" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Alleen symbolische" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Geen symbolische" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Alles" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Acties" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Toepassingen" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorieën" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Apparaten" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemen" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emoticons" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime-bestandstypen" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Locaties" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Overig" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Bladeren…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Geen pictogrammen die overeenkomen met de zoekopdracht" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Geen pictogrammen in deze categorie" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Pictogram selecteren" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/nn/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/nn/kiconthemes6.po index 5f0581716a..57feb3ac9a 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/nn/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/nn/kiconthemes6.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-07-26 15:11+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,98 +22,98 @@ msgstr "" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Vel ikon …" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Alle" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Berre symbol" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Ikkje symbol" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Alle" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Handlingar" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Program" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategoriar" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Einingar" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblem" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Fjesingar" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-typar" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Stadar" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Anna" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Bla gjennom …" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Ingen ikon i samsvar med søket" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Ingen ikon i denne kategorien" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Vel ikon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/oc/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/oc/kiconthemes6.po index 542b088d8b..4412055ca4 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/oc/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/oc/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2008-08-06 00:08+0200\n" "Last-Translator: \n" "Language-Team: Occitan \n" @@ -18,101 +18,101 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: KBabel 1.11.4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Seleccionatz una icòna" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Accions" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicacions" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorias" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Periferics" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblèmas" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Acorchis" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estatut" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Autres" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Examinar..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Seleccionatz una icòna" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/pa/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/pa/kiconthemes6.po index 0a0ededc67..51b3cc73c9 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/pa/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/pa/kiconthemes6.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-01-03 14:26-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -26,99 +26,99 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "ਆਈਕਾਨ ਚੁਣੋ…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "ਸਭ" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "ਸਭ" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "ਐਕਸ਼ਨ" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "ਐਪਲੀਕੇਸ਼ਨ" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "ਕੈਟਾਗਰੀਆਂ" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "ਜੰਤਰ" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "ਨਿਸ਼ਾਨ" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "ਈਮੋਟਿਸ" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "ਮਾਈਮ-ਕਿਸਮ" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "ਥਾਵਾਂ" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "ਹਾਲਤ" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "ਹੋਰ" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "ਝਲਕ…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "ਖੋਜ ਨਾਲ ਕੋਈ ਆਈਕਾਨ ਨਹੀਂ ਮਿਲਦੇ ਹਨ" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "ਇਸ ਕੈਟਾਗਰੀ ਲਈ ਕੋਈ ਆਈਕਾਨ ਨਹੀਂ ਹਨ" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "ਆਈਕਾਨ ਚੁਣੋ" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/pl/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/pl/kiconthemes6.po index 5f61f9cc9f..1433e2ec40 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/pl/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/pl/kiconthemes6.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-17 11:10+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -31,98 +31,98 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Wybór ikony…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Wszystkie" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Tylko symboliczne" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Bez symbolicznych" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Wszystkie" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Działania" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programy" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorie" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Urządzenia" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Symbole" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotikony" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Rodzaje MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Miejsca" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stany" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Inne" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Przeglądaj..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Żadna z ikon nie odpowiada tej szukanej" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Nie ma żadnej ikony w tej kategorii" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Wybór ikony" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/pt/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/pt/kiconthemes6.po index 2b7e3e0e31..5d931ddf6d 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/pt/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/pt/kiconthemes6.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2022-08-14 12:14+0100\n" "Last-Translator: José Nuno Pires \n" "Language-Team: pt \n" @@ -39,99 +39,99 @@ msgstr "" "X-POFile-SpellExtra: FindProxyForURLEx canResume Co ico\n" "X-POFile-IgnoreConsistency: Status\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Escolher o Ícone…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "Tudo" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Tudo" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Acções" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicações" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorias" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositivos" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemas" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emoções" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipos MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Locais" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estado" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Outros" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Escolher…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Sem ícones correspondentes à pesquisa" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Sem ícones nesta categoria" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Escolha o Ícone" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/pt_BR/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/pt_BR/kiconthemes6.po index a881358401..0ae8716e16 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/pt_BR/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/pt_BR/kiconthemes6.po @@ -11,114 +11,114 @@ # Diniz Bortolotto , 2007, 2008. # André Marcelo Alvarenga , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2018. # Luiz Fernando Ranghetti , 2009, 2010, 2012, 2017, 2021, 2022. +# SPDX-FileCopyrightText: 2025 Guilherme Marçal Silva msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" -"PO-Revision-Date: 2022-08-19 14:54-0300\n" -"Last-Translator: Luiz Fernando Ranghetti \n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" +"PO-Revision-Date: 2025-11-08 21:10-0300\n" +"Last-Translator: Guilherme Marçal Silva \n" +"Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 25.08.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" -msgstr "Selecionar ícone..." +msgstr "Selecionar ícone…" -#: widgets/kicondialog.cpp:329 -#, fuzzy, kde-format -#| msgid "All" +#: widgets/kicondialog.cpp:343 +#, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Todos" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" -msgstr "" +msgstr "Apenas simbólicos" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" -msgstr "" +msgstr "Sem simbólicos" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Todos" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Ações" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicativos" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorias" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispositivos" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemas" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emoções" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipos MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Locais" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estado" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Outro" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" -msgstr "Navegar..." +msgstr "Navegar…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Nenhum ícone correspondente à pesquisa" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Nenhum ícone nesta categoria" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Selecionar ícone" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ro/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ro/kiconthemes6.po index 781e1ce0c7..760a8cc4ec 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ro/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ro/kiconthemes6.po @@ -1,3 +1,4 @@ +# translation of kio4.po to Romanian # Claudiu Costin , 2002, 2003, 2004, 2005, 2006. # Sergiu Bivol , 2008, 2009, 2010, 2012, 2013, 2020, 2022, 2024. # Cristian Oneț , 2010, 2011, 2012, 2013. @@ -5,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-06-09 11:30+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -17,98 +18,98 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Lokalize 21.12.3\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Alege pictograma…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Toate" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Doar simbolice" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Fără simbolice" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Toate" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Acțiuni" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplicații" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categorii" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Dispozitive" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Embleme" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emoticoni" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Tipuri MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Locuri" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stare" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Altele" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Răsfoiește…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Nicio pictogramă care să se potrivească căutării" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Nicio pictogramă în această categorie" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Alege pictograma" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ru/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ru/kiconthemes6.po index e4008293ca..0beb47e4c3 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ru/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ru/kiconthemes6.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-05-12 11:27+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -35,98 +35,98 @@ msgstr "" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Выбрать значок…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Все" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Только пиктограммы" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Исключая пиктограммы" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Все" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Действия" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Приложения" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Категории" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Устройства" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Эмблемы" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Смайлики" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Типы MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Точки входа" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Состояние" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Все остальные" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Просмотр…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Не найдено ни одного значка, соответствующего критерию поиска." -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Не найдено ни одного значка этой категории" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Выбор значка" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sa/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sa/kiconthemes6.po index fbeee3322c..355750b9b1 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sa/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sa/kiconthemes6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-12-14 01:48+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" @@ -19,98 +19,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n>2);\n" "X-Generator: Lokalize 24.08.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "चिह्नं चिनोतु…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "सर्वे" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "केवलं प्रतीकात्मकम्" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "न प्रतीकात्मकम्" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "सर्वे" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "कर्माणि" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "अनुप्रयोगाः" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "श्रेणियाँ" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "यन्त्राणि" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "प्रतीकाः" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "इमोट्स" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "अनुकरणप्रकाराः" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "स्थानाः" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "स्थितिः" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "इतर" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "ब्राउज़ करें…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "अन्वेषणस्य सङ्गतिं न चिह्नानि" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "अस्मिन् वर्गे चिह्नानि नास्ति" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "चिह्नं चिनोतु" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/se/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/se/kiconthemes6.po index fbbb81990a..603da085f7 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/se/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/se/kiconthemes6.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2012-06-03 01:00+0200\n" "Last-Translator: Børre Gaup \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,98 +19,98 @@ msgstr "" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Buot" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Buot" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Doaimmat" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Prográmmat" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Lágit" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Ovttadagat" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblemat" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Mojánat" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME-šlájat" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Báikkit" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stáhtus" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Vállje govaža" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sk/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sk/kiconthemes6.po index e5ac4422d2..4acf5983ca 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sk/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sk/kiconthemes6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2022-02-14 19:52+0100\n" "Last-Translator: Matej Mrenica \n" "Language-Team: Slovak \n" @@ -23,103 +23,101 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 21.12.2\n" -#: widgets/kiconbutton.cpp:75 -#, fuzzy, kde-format -#| msgid "Select Icon" +#: widgets/kiconbutton.cpp:83 +#, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Vyberte ikonu" -#: widgets/kicondialog.cpp:329 -#, fuzzy, kde-format -#| msgid "All" +#: widgets/kicondialog.cpp:343 +#, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Všetko" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" -msgstr "" +msgstr "Only Symbolic" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" -msgstr "" +msgstr "No Symbolic" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Všetko" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Akcie" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Aplikácie" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategórie" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Zariadenia" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblémy" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Emotikony" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Typy MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Miesta" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stav" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Iný" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "&Prechádzať..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Vyhľadávaniu nezodpovedajú žiadne ikony" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "V tejto kategórii nie sú žiadne ikony" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Vyberte ikonu" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sl/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sl/kiconthemes6.po index a8828e9d64..d3705e74d0 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sl/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sl/kiconthemes6.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 07:39+0100\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" @@ -30,98 +30,98 @@ msgstr "" "Translator: Andrej Mernik \n" "X-Generator: Poedit 3.4.2\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Izberi ikono…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Vse" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Samo simbolično" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Niti simbolično" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Vse" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Dejanja" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programi" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorije" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Naprave" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Simboli" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Čustva" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Vrste MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Mesta" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Stanje" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Ostalo" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Prebrskaj…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Ni ikon, ki bi ustrezale iskanju" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Ni ikon v tej kategoriji" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Izberite ikono" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sq/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sq/kiconthemes6.po index 94dd1b5725..1dcfa24084 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sq/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sq/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kde4libs\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2009-04-29 17:53+0000\n" "Last-Translator: Vilson Gjeci \n" "Language-Team: Albanian \n" @@ -19,99 +19,99 @@ msgstr "" "X-Launchpad-Export-Date: 2011-04-22 16:31+0000\n" "X-Generator: Launchpad (build 12883)\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Shfleto..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sr/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sr/kiconthemes6.po index b376d3e914..adebeb3f26 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sr/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sr/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -25,7 +25,7 @@ msgstr "" "X-Wrapping: fine\n" # >> @title:window -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" @@ -33,105 +33,105 @@ msgid "Select Icon…" msgstr "Избор иконице" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "све" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "све" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "радње" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "програми" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "категорије" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "уређаји" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "амблеми" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "емотикони" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "МИМЕ типови" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "места" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "стање" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Прегледај..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" # >> @title:window #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Избор иконице" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavian/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavian/kiconthemes6.po index b72f7af989..f96d85b678 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavian/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavian/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -24,7 +24,7 @@ msgstr "" "X-Environment: kde\n" # >> @title:window -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" @@ -32,105 +32,105 @@ msgid "Select Icon…" msgstr "Избор иконице" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "све" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "све" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "радње" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "програми" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "категорије" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "уређаји" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "амблеми" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "емотикони" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "МИМЕ типови" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "мјеста" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "стање" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Прегледај..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" # >> @title:window #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Избор иконице" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavianlatin/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavianlatin/kiconthemes6.po index 2faa362808..bef354be81 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavianlatin/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sr@ijekavianlatin/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -24,7 +24,7 @@ msgstr "" "X-Environment: kde\n" # >> @title:window -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" @@ -32,105 +32,105 @@ msgid "Select Icon…" msgstr "Izbor ikonice" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "sve" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "sve" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "radnje" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "programi" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "kategorije" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "uređaji" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "amblemi" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "emotikoni" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME tipovi" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "mjesta" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "stanje" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Pregledaj..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" # >> @title:window #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Izbor ikonice" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sr@latin/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sr@latin/kiconthemes6.po index 5b7efc4246..0caaf4da0d 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sr@latin/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sr@latin/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -24,7 +24,7 @@ msgstr "" "X-Environment: kde\n" # >> @title:window -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" @@ -32,105 +32,105 @@ msgid "Select Icon…" msgstr "Izbor ikonice" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "sve" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "sve" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "radnje" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "programi" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "kategorije" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "uređaji" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "amblemi" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "emotikoni" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME tipovi" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "mesta" # >> @item:inlistbox System icons -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "stanje" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Pregledaj..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" # >> @title:window #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Izbor ikonice" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/sv/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/sv/kiconthemes6.po index 6246f3b8f2..8acbbeea3d 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/sv/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/sv/kiconthemes6.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-06-18 00:27+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -25,98 +25,98 @@ msgstr "" "X-Generator: Lokalize 23.08.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Välj ikon…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Alla" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Bara symbolisk" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Inte symbolisk" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Alla" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Åtgärder" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Program" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategorier" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Enheter" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Emblem" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Smilisar" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime-typer" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Platser" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Status" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Övriga" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Bläddra..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Inga ikoner matchar sökningen" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Inga ikoner i kategorin" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Välj ikon" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ta/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ta/kiconthemes6.po index c156eba5da..3f9c661aae 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ta/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ta/kiconthemes6.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-17 17:51+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" @@ -28,98 +28,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 24.02.0\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "சின்னத்தைத் தேர்வு செய்…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "அனைத்தும்" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "கோட்டுருவம் மட்டும்" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "கோட்டுருவம் இல்லாமல்" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "அனைத்தும்" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "செயல்கள்" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "செயலிகள்" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "வகைகள்" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "சாதனங்கள்" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "சின்னங்கள்" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "முகவடிகள்" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "மைம்வகைகள்" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "இடங்கள்" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "நிலை" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "மற்றவை" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "உலாவு..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "தேடலுக்கு பொருந்தும் எந்த சின்னமும் இல்லை" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "இவ்வகையான சின்னம் ஏதுமில்லை" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "சின்னத்தை தேர்வு செய்வது" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/tg/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/tg/kiconthemes6.po index 642b6d9dba..73735d899b 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/tg/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/tg/kiconthemes6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2020-08-27 23:13+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" @@ -21,102 +21,102 @@ msgstr "" "X-Generator: Lokalize 20.04.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Нишонаеро интихоб кунед" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "Ҳама" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Ҳама" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Амалиётҳо" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Барномаҳо" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Намунаҳо" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Дастгоҳҳо" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Тамғаҳо" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Қиёфаҳо" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Навъи қиёфаҳо" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Ҷойҳо" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Вазъият" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Дигарон" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Намоиш..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Нишонаеро интихоб кунед" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/th/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/th/kiconthemes6.po index a5f392ad6e..b81b66e0b1 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/th/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/th/kiconthemes6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2010-12-31 00:33+0700\n" "Last-Translator: Phuwanat Sakornsakolpat \n" "Language-Team: Thai \n" @@ -21,72 +21,72 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "เลือกไอคอน" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "การกระทำ" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "โปรแกรม" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "หมวดหมู่" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "อุปกรณ์" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "ป้ายสัญลักษณ์" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "ไอคอนสื่ออารมณ์" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "ประเภท Mime ของแฟ้ม" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "ที่หลัก ๆ" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "สถานะ" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -94,29 +94,29 @@ msgctxt "Other icons" msgid "Other" msgstr "อื่น ๆ" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "เลือ&ก..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "เลือกไอคอน" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/tr/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/tr/kiconthemes6.po index dc2ae7a2a6..fa818b907c 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/tr/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/tr/kiconthemes6.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 13:23+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" @@ -33,98 +33,98 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 24.02.0\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Simge Seç…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Tümü" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Yalnızca Sembolik" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Sembolik Olmayan" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Tümü" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Eylemler" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Uygulamalar" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Kategoriler" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Aygıtlar" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Amblemler" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Duygu Simgeleri" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME Türleri" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Yerler" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Durum" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Diğer" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "&Göz At…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Aramayla eşleşen simge yok" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Bu kategoride simge yok" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Simge Seç" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/ug/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/ug/kiconthemes6.po index bb949682bf..b2654065a4 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/ug/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/ug/kiconthemes6.po @@ -7,118 +7,113 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" -"PO-Revision-Date: 2013-09-08 07:05+0900\n" -"Last-Translator: Gheyret Kenji \n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" +"PO-Revision-Date: 2026-05-31 18:36-0400\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur Computer Science Association \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 3.9\n" -#: widgets/kiconbutton.cpp:75 -#, fuzzy, kde-format -#| msgid "Select Icon" +#: widgets/kiconbutton.cpp:83 +#, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" -msgstr "سىنبەلگە تاللا" +msgstr "" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" -msgstr "" +msgstr "ھەممىسى" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" -msgstr "" +msgstr "ھەممىسى" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" -msgstr "مەشغۇلاتلار" +msgstr "مەشغۇلات" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" -msgstr "پروگراممىلار" +msgstr "پىروگرامما" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" -msgstr "كاتېگورىيە" +msgstr "سەھىپە" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" -msgstr "ئۈسكۈنىلەر" +msgstr "ئۈسكۈنە" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" -msgstr "كاكارلار" +msgstr "كاكار" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "تۇيغۇلار" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mime تىپلىرى" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" -msgstr "ئورۇنلار" +msgstr "ئورۇن" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "ھالىتى" -#: widgets/kicondialog.cpp:392 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Other" +#: widgets/kicondialog.cpp:406 +#, kde-format msgctxt "Other icons" msgid "Other" msgstr "باشقا" -#: widgets/kicondialog.cpp:439 -#, fuzzy, kde-format -#| msgid "&Browse..." +#: widgets/kicondialog.cpp:455 +#, kde-format msgid "Browse…" -msgstr "كۆز يۈگۈرت(&B)…" +msgstr "كۆز يۈگۈرت…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "سىنبەلگە تاللا" -#: widgets/kicondialog.cpp:730 -#, fuzzy, kde-format -#| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" +#: widgets/kicondialog.cpp:746 +#, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" -msgstr "*.png *.xpm *.svg *.svgz|سىنبەلگە ھۆججەتلەر (*.png *.xpm *.svg *.svgz)" +msgstr "" #. i18n: ectx: property (accessibleName), widget (QComboBox, contextCombo) #: widgets/kicondialog.ui:24 @@ -128,10 +123,9 @@ msgstr "" #. i18n: ectx: property (placeholderText), widget (QLineEdit, searchLine) #: widgets/kicondialog.ui:44 -#, fuzzy, kde-format -#| msgid "Select Icon" +#, kde-format msgid "Search Icons..." -msgstr "سىنبەلگە تاللا" +msgstr "" #~ msgid "Icon Source" #~ msgstr "سىنبەلگە مەنبەسى" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/uk/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/uk/kiconthemes6.po index dc2a7d32c9..5aa208f957 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/uk/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/uk/kiconthemes6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-12 20:21+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -23,98 +23,98 @@ msgstr "" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Вибрати піктограму…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "Усі" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "Лише символьні" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "Несимвольні" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Усі" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Дії" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Програми" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Категорії" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Пристрої" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Емблеми" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Емоції" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Типи MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Місця" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Стан" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Інше" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Вибрати…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Не знайдено піктограм, які відповідають критерію пошуку" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "У цій категорії немає піктограм" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Виберіть піктограму" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/uz/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/uz/kiconthemes6.po index d3373d9341..6e5e8740bf 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/uz/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/uz/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2008-06-04 01:21+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -18,101 +18,101 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Nishonchani tanlash" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Amallar" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Dasturlar" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Turkumlar" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Uskunalar" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME turlari" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Joylar" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Holat" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Boshqalar" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Tanlash" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Nishonchani tanlash" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/uz@cyrillic/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/uz@cyrillic/kiconthemes6.po index 3588366853..3024200ae6 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/uz@cyrillic/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/uz@cyrillic/kiconthemes6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2009-10-14 00:15+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -18,101 +18,101 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Нишончани танлаш" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Амаллар" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Дастурлар" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Туркумлар" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Ускуналар" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME турлари" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Жойлар" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Ҳолат" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Бошқалар" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Танлаш" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Нишончани танлаш" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/vi/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/vi/kiconthemes6.po index 679f1b6845..dc0524b8a9 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/vi/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/vi/kiconthemes6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2022-08-09 21:48+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" @@ -20,99 +20,99 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 22.04.1\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Chọn biểu tượng…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, fuzzy, kde-format #| msgid "All" msgctxt "@item:inmenu All icons" msgid "All" msgstr "Tất cả" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "Tất cả" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Hành động" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Ứng dụng" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Các nhóm" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Thiết bị" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "Huy hiệu" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Hình biểu cảm" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Kiểu MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Địa điểm" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Trạng thái" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "Khác" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "Duyệt…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "Không có biểu tượng nào khớp với tìm kiếm" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "Không có biểu tượng nào trong nhóm này" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Chọn biểu tượng" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/wa/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/wa/kiconthemes6.po index 3b775bedd7..de9b30090d 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/wa/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/wa/kiconthemes6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2011-01-17 21:58+0100\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" @@ -19,72 +19,72 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Tchoezi ene imådjete" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Accions" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Programes" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Categoreyes" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Usteyes" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "Xhinåds" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Sôres MIME" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "Plaeces" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "Estat" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Other" @@ -92,29 +92,29 @@ msgctxt "Other icons" msgid "Other" msgstr "Ôte" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Foyter..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Tchoezi ene imådjete" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format #| msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgid "" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/xh/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/xh/kiconthemes6.po index 4972638262..60b8c758a9 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/xh/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/xh/kiconthemes6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2002-12-13 17:20SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" @@ -23,105 +23,105 @@ msgstr "" "X-Generator: KBabel 1.0beta2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, fuzzy, kde-format #| msgid "Select Icon" msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "Khetha Uphawu lomfanekiso" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "Iintshukumo" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "Izicelo" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "Iintlobo" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "Amacebo" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 #, fuzzy msgid "Emblems" msgstr "iyahamba" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 #, fuzzy msgid "Emotes" msgstr "Imixholo Engenanto" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "Mimetypes" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 #, fuzzy msgid "Places" msgstr "Iphepha" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 #, fuzzy msgid "Status" msgstr "&Qala" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, fuzzy, kde-format #| msgid "Others" msgctxt "Other icons" msgid "Other" msgstr "Abanye" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, fuzzy, kde-format #| msgid "&Browse..." msgid "Browse…" msgstr "&Khangela incwadi..." -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "Khetha Uphawu lomfanekiso" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, fuzzy, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/zh_CN/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/zh_CN/kiconthemes6.po index febd2f4863..4a23a91cef 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/zh_CN/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/zh_CN/kiconthemes6.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -17,98 +17,98 @@ msgstr "" "X-Crowdin-File: /kf6-trunk/messages/kiconthemes/kiconthemes6.pot\n" "X-Crowdin-File-ID: 42927\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "选择图标…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "全部" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "仅符号" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "无符号" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "全部" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "操作" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "程序" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "分类" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "设备" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "徽标" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "表情" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME 类型" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "位置" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "状态" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "其他" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "浏览…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "未找到匹配该搜索条件的图标" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "此类别中没有图标" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "选择图标" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/po/zh_TW/kiconthemes6.po b/local/recipes/kde/kf6-kiconthemes/source/po/zh_TW/kiconthemes6.po index 5b60db1f66..f4e92b334b 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/po/zh_TW/kiconthemes6.po +++ b/local/recipes/kde/kf6-kiconthemes/source/po/zh_TW/kiconthemes6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-03-12 00:35+0000\n" +"POT-Creation-Date: 2026-05-14 00:39+0000\n" "PO-Revision-Date: 2024-03-20 17:52+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" @@ -26,98 +26,98 @@ msgstr "" "X-Generator: Lokalize 24.04.70\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: widgets/kiconbutton.cpp:75 +#: widgets/kiconbutton.cpp:83 #, kde-format msgctxt "@info:tooltip" msgid "Select Icon…" msgstr "選擇圖示…" -#: widgets/kicondialog.cpp:329 +#: widgets/kicondialog.cpp:343 #, kde-format msgctxt "@item:inmenu All icons" msgid "All" msgstr "全部" -#: widgets/kicondialog.cpp:334 +#: widgets/kicondialog.cpp:348 #, kde-format msgctxt "@item:inmenu Show only symbolic icons" msgid "Only Symbolic" msgstr "僅符號圖示" -#: widgets/kicondialog.cpp:338 +#: widgets/kicondialog.cpp:352 #, kde-format msgctxt "@item:inmenu Hide symbolic icons" msgid "No Symbolic" msgstr "隱藏符號圖示" -#: widgets/kicondialog.cpp:359 +#: widgets/kicondialog.cpp:373 msgid "All" msgstr "全部" -#: widgets/kicondialog.cpp:360 +#: widgets/kicondialog.cpp:374 msgid "Actions" msgstr "動作" -#: widgets/kicondialog.cpp:361 +#: widgets/kicondialog.cpp:375 msgid "Applications" msgstr "應用程式" -#: widgets/kicondialog.cpp:362 +#: widgets/kicondialog.cpp:376 msgid "Categories" msgstr "類別" -#: widgets/kicondialog.cpp:363 +#: widgets/kicondialog.cpp:377 msgid "Devices" msgstr "裝置" -#: widgets/kicondialog.cpp:364 +#: widgets/kicondialog.cpp:378 msgid "Emblems" msgstr "符號" -#: widgets/kicondialog.cpp:365 +#: widgets/kicondialog.cpp:379 msgid "Emotes" msgstr "表情" -#: widgets/kicondialog.cpp:366 +#: widgets/kicondialog.cpp:380 msgid "Mimetypes" msgstr "MIME 類型" -#: widgets/kicondialog.cpp:367 +#: widgets/kicondialog.cpp:381 msgid "Places" msgstr "書籤" -#: widgets/kicondialog.cpp:368 +#: widgets/kicondialog.cpp:382 msgid "Status" msgstr "狀態" -#: widgets/kicondialog.cpp:392 +#: widgets/kicondialog.cpp:406 #, kde-format msgctxt "Other icons" msgid "Other" msgstr "其他" -#: widgets/kicondialog.cpp:439 +#: widgets/kicondialog.cpp:455 #, kde-format msgid "Browse…" msgstr "瀏覽…" -#: widgets/kicondialog.cpp:641 +#: widgets/kicondialog.cpp:657 #, kde-format msgid "No icons matching the search" msgstr "沒有符合搜尋的圖示" -#: widgets/kicondialog.cpp:643 +#: widgets/kicondialog.cpp:659 #, kde-format msgid "No icons in this category" msgstr "這個分類沒有圖示" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) -#: widgets/kicondialog.cpp:730 widgets/kicondialog.ui:14 +#: widgets/kicondialog.cpp:746 widgets/kicondialog.ui:14 #, kde-format msgid "Select Icon" msgstr "選擇圖示" -#: widgets/kicondialog.cpp:730 +#: widgets/kicondialog.cpp:746 #, kde-format msgid "" "*.ico *.png *.xpm *.svg *.svgz|Icon Files (*.ico *.png *.xpm *.svg *.svgz)" diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/CMakeLists.txt b/local/recipes/kde/kf6-kiconthemes/source/src/CMakeLists.txt index 291a16ef1f..99cbb97db7 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/CMakeLists.txt +++ b/local/recipes/kde/kf6-kiconthemes/source/src/CMakeLists.txt @@ -1,7 +1,12 @@ configure_file(config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) -add_subdirectory(tools/kiconfinder) -if (APPLE) +if(NOT IOS) + add_subdirectory(tools/kiconfinder) +endif() +if (KICONTHEMES_USE_QTQUICK) + add_subdirectory(qml) +endif() +if(APPLE AND NOT IOS) add_subdirectory(tools/ksvg2icns) endif() @@ -48,7 +53,7 @@ ecm_generate_export_header(KF6IconThemes VERSION ${KF_VERSION} USE_VERSION_HEADER DEPRECATED_BASE_VERSION 0 - DEPRECATION_VERSIONS 5.0 6.5 + DEPRECATION_VERSIONS 5.0 6.5 6.20 EXCLUDE_DEPRECATED_BEFORE_AND_AT ${EXCLUDE_DEPRECATED_BEFORE_AND_AT} ) @@ -96,49 +101,25 @@ install(FILES DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KIconThemes COMPONENT Devel ) -if(BUILD_QCH) - ecm_add_qch( - KF6IconThemes_QCH - NAME KIconThemes - BASE_NAME KF6IconThemes - VERSION ${KF_VERSION} - ORG_DOMAIN org.kde - SOURCES # using only public headers, to cover only public API - ${KIconThemes_HEADERS} - MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md" - IMAGE_DIRS "${CMAKE_SOURCE_DIR}/docs/pics" - LINK_QCHS - Qt6Widgets_QCH - INCLUDE_DIRS - ${CMAKE_CURRENT_BINARY_DIR} - BLANK_MACROS - KICONTHEMES_EXPORT - KICONTHEMES_DEPRECATED - KICONTHEMES_DEPRECATED_EXPORT - "KICONTHEMES_DEPRECATED_VERSION(x, y, t)" - "KICONTHEMES_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)" - "KICONTHEMES_ENUMERATOR_DEPRECATED_VERSION(x, y, t)" - "KICONTHEMES_ENUMERATOR_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)" - TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - COMPONENT Devel +if(NOT IOS) + add_library(KIconEnginePlugin MODULE kiconengineplugin.cpp) + target_link_libraries(KIconEnginePlugin + PRIVATE + Qt6::Gui + KF6::IconThemes ) endif() -add_library(KIconEnginePlugin MODULE kiconengineplugin.cpp) - -target_link_libraries(KIconEnginePlugin - PRIVATE - Qt6::Gui - KF6::IconThemes -) - # install in an extra directory we will add to the plugin path later just for this one engine # we can overwrite the system one with that trick -install(TARGETS KIconEnginePlugin DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/kiconthemes6/iconengines) +if(NOT IOS) + install(TARGETS KIconEnginePlugin DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/kiconthemes6/iconengines) +endif() ecm_qt_install_logging_categories( EXPORT KICONTHEMES FILE kiconthemes.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR} ) + +ecm_generate_qdoc(KF6IconThemes kiconthemes.qdocconf) diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.cpp index 8f552ad01f..8e8a05e1d7 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.cpp @@ -20,10 +20,7 @@ static QString STYLESHEET_TEMPLATE() .ColorScheme-PositiveText{ color:%5; }\ .ColorScheme-NeutralText{ color:%6; }\ .ColorScheme-NegativeText{ color:%7; }\ -.ColorScheme-ActiveText{ color:%8; }\ -.ColorScheme-Complement{ color:%9; }\ -.ColorScheme-Contrast{ color:%10; }\ -.ColorScheme-Accent{ color:%11; }\ +.ColorScheme-Accent{ color:%8; }\ "); /* clang-format on */ } @@ -34,21 +31,6 @@ public: KIconColorsPrivate() { } - KIconColorsPrivate(const KIconColorsPrivate &other) - : QSharedData(other) - , text(other.text) - , background(other.background) - , highlight(other.highlight) - , highlightedText(other.highlightedText) - , accent(other.accent) - , positiveText(other.positiveText) - , neutralText(other.neutralText) - , negativeText(other.negativeText) - { - } - ~KIconColorsPrivate() - { - } QColor text; QColor background; @@ -58,7 +40,6 @@ public: QColor positiveText; QColor neutralText; QColor negativeText; - QColor activeText; static std::optional lastPalette; static std::optional lastColorScheme; }; @@ -84,18 +65,18 @@ KIconColors KIconColors::operator=(const KIconColors &other) return *this; } -KIconColors::KIconColors(const QColor &colors) +KIconColors::KIconColors(const QColor &color) : d_ptr(new KIconColorsPrivate) { Q_D(KIconColors); - d->text = colors; - d->background = colors; - d->highlight = colors; - d->highlightedText = colors; - d->positiveText = colors; - d->neutralText = colors; - d->negativeText = colors; - d->accent = colors; + d->text = color; + d->background = color; + d->highlight = color; + d->highlightedText = color; + d->positiveText = color; + d->neutralText = color; + d->negativeText = color; + d->accent = color; } KIconColors::KIconColors(const QPalette &palette) @@ -116,27 +97,16 @@ KIconColors::KIconColors(const QPalette &palette) d->positiveText = d->lastColorScheme->foreground(KColorScheme::PositiveText).color().name(); d->neutralText = d->lastColorScheme->foreground(KColorScheme::NeutralText).color().name(); d->negativeText = d->lastColorScheme->foreground(KColorScheme::NegativeText).color().name(); - d->activeText = d->lastColorScheme->foreground(KColorScheme::ActiveText).color().name(); } KIconColors::~KIconColors() { } -qreal luma(const QColor &color) { - return (0.299 * color.red() + 0.587 * color.green() + 0.114 * color.blue()) / 255; -} - QString KIconColors::stylesheet(KIconLoader::States state) const { Q_D(const KIconColors); - const QColor complement = - luma(d->background) > 0.5 ? Qt::white : Qt::black; - - const QColor contrast = - luma(d->background) > 0.5 ? Qt::black : Qt::white; - QColor accentColor = d->accent; // When selected, tint the accent color with a small portion of highlighted text color, // because since the accent color used to be the same as the highlight color, it might cause @@ -157,9 +127,6 @@ QString KIconColors::stylesheet(KIconLoader::States state) const .arg(state == KIconLoader::SelectedState ? d->highlightedText.name() : d->positiveText.name()) .arg(state == KIconLoader::SelectedState ? d->highlightedText.name() : d->neutralText.name()) .arg(state == KIconLoader::SelectedState ? d->highlightedText.name() : d->negativeText.name()) - .arg(state == KIconLoader::SelectedState ? d->highlightedText.name() : d->activeText.name()) - .arg(complement.name()) - .arg(contrast.name()) .arg(accentColor.name()); } @@ -211,11 +178,13 @@ QColor KIconColors::neutralText() const return d->neutralText; } +#if KICONTHEMES_BUILD_DEPRECATED_SINCE(6, 20) QColor KIconColors::activeText() const { Q_D(const KIconColors); - return d->activeText; + return QColor(); } +#endif void KIconColors::setText(const QColor &color) { @@ -265,8 +234,8 @@ void KIconColors::setPositiveText(const QColor &color) d->positiveText = color; } -void KIconColors::setActiveText(const QColor &color) +#if KICONTHEMES_BUILD_DEPRECATED_SINCE(6, 20) +void KIconColors::setActiveText(const QColor & /*color*/) { - Q_D(KIconColors); - d->activeText = color; } +#endif diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.h b/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.h index e3a16922a3..ca3cb28fae 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconcolors.h @@ -16,32 +16,34 @@ class KIconColorsPrivate; -/** - * @class KIconColors +/*! + * \class KIconColors + * \inmodule KIconThemes * - * Sepecifies which colors will be used when recoloring icons as its stylesheet. + * \brief Sepecifies which colors will be used when recoloring icons as its stylesheet. * * KIconLoader supports re-coloring svg icons based on a set of colors. This * class will define them. * - * @see KIconEngine - * @see KDE::icon + * \sa KIconEngine + * \sa KDE::icon */ class KICONTHEMES_EXPORT KIconColors { public: - /** + /*! * Will fill the colors based on the default QPalette() constructor. */ KIconColors(); - /** - * Makes all the color property be @p colors + /*! + * Makes all the color properties be \a color. */ - explicit KIconColors(const QColor &colors); + explicit KIconColors(const QColor &color); - /** - * Uses @palette to define text, highlight, highlightedText, accent and background. + /*! + * Uses \a palette to define text, highlight, highlightedText, accent and background. + * * The rest being positiveText, negativeText and neutralText are filled from * KColorScheme(QPalette::Active, KColorScheme::Window); */ @@ -51,35 +53,110 @@ public: ~KIconColors(); KIconColors operator=(const KIconColors &other); + /*! + * + */ QColor text() const; - QColor highlight() const; - QColor highlightedText() const; - QColor accent() const; - QColor background() const; - QColor neutralText() const; - QColor positiveText() const; - QColor negativeText() const; - QColor activeText() const; + /*! + * + */ + QColor highlight() const; + + /*! + * + */ + QColor highlightedText() const; + + /*! + * + */ + QColor accent() const; + + /*! + * + */ + QColor background() const; + + /*! + * + */ + QColor neutralText() const; + + /*! + * + */ + QColor positiveText() const; + + /*! + * + */ + QColor negativeText() const; + +#if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 20) + /*! + * \deprecated[6.20] Unused + */ + KICONTHEMES_DEPRECATED_VERSION(6, 20, "Unused") + QColor activeText() const; +#endif + + /*! + * + */ void setText(const QColor &color); + + /*! + * + */ void setHighlight(const QColor &color); + + /*! + * + */ void setHighlightedText(const QColor &color); + + /*! + * + */ void setAccent(const QColor &color); + + /*! + * + */ void setBackground(const QColor &color); + + /*! + * + */ void setNeutralText(const QColor &color); + + /*! + * + */ void setPositiveText(const QColor &color); + + /*! + * + */ void setNegativeText(const QColor &color); - void setActiveText(const QColor& color); + +#if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 20) + /*! + * \deprecated[6.20] Unused + */ + KICONTHEMES_DEPRECATED_VERSION(6, 20, "Unused") + void setActiveText(const QColor &color); +#endif protected: - /** - * @returns a CSS stylesheet to be used SVG icon files. - * @param state defines the state we are rendering the stylesheet for + /*! + * Returns a CSS stylesheet to be used SVG icon files. + * \a state defines the state we are rendering the stylesheet for * - * Specifies: .ColorScheme-Text, .ColorScheme-Background, .ColorScheme-Highlight, - * .ColorScheme-HighlightedText, .ColorScheme-PositiveText, .ColorScheme-NeutralText - * .ColorScheme-NegativeText, .ColorScheme-ActiveText, .ColorScheme-Complement, - * .ColorScheme-Contrast, .ColorScheme-Accent, + * Specifies: \c .ColorScheme-Text, \c .ColorScheme-Background, \c .ColorScheme-Highlight, + * \c .ColorScheme-HighlightedText, \c .ColorScheme-PositiveText, \c .ColorScheme-NeutralText + * \c .ColorScheme-NegativeText, \c .ColorScheme-Accent */ QString stylesheet(KIconLoader::States state) const; diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconeffect.h b/local/recipes/kde/kf6-kiconthemes/source/src/kiconeffect.h index d9bdcb2f13..ed95732cf5 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconeffect.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconeffect.h @@ -23,32 +23,32 @@ class KIconEffectPrivate; -/** - * @class KIconEffect kiconeffect.h KIconEffect +/*! + * \class KIconEffect + * \inmodule KIconThemes * - * Applies effects to icons. + * \brief Applies effects to icons. * * This class applies effects to icons depending on their state and * group. For example, it can be used to make all disabled icons * in a toolbar gray. * - * \image html kiconeffect-apply.png "Various Effects applied to an image" + * \image kiconeffect-apply.png "Various Effects applied to an image" * - * @see QIcon::fromTheme + * \sa QIcon::fromTheme */ class KICONTHEMES_EXPORT KIconEffect { public: #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Create a new KIconEffect. * You will most likely never have to use this to create a new KIconEffect * yourself, as you can use the KIconEffect provided by the global KIconLoader * (which itself is accessible by KIconLoader::global()) through its * iconEffect() function. * - * @deprecated since 6.5, use the static API - * + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") KIconEffect(); @@ -59,19 +59,18 @@ public: KIconEffect &operator=(const KIconEffect &) = delete; #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * This is the enumeration of all possible icon effects. - * Note that 'LastEffect' is no valid icon effect but only - * used internally to check for invalid icon effects. * - * @li NoEffect: Do not apply any icon effect - * @li ToGray: Tints the icon gray - * @li Colorize: Tints the icon with a specific color - * @li ToGamma: Change the gamma value of the icon - * @li DeSaturate: Reduce the saturation of the icon - * @li ToMonochrome: Produces a monochrome icon + * \value NoEffect Do not apply any icon effect + * \value ToGray Tints the icon gray + * \value Colorize Tints the icon with a specific color + * \value ToGamma Change the gamma value of the icon + * \value DeSaturate Reduce the saturation of the icon + * \value ToMonochrome Produces a monochrome icon + * \omitvalue LastEffect * - * @deprecated since 6.5, use the static API + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") enum Effects { @@ -86,220 +85,294 @@ public: #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Rereads configuration. * - * @deprecated since 6.5, use the static API + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") void init(); #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Tests whether an effect has been configured for the given icon group. - * @param group the group to check, see KIconLoader::Group - * @param state the state to check, see KIconLoader::States - * @returns true if an effect is configured for the given @p group - * in @p state, otherwise false. - * @see KIconLoader::Group - * KIconLoader::States * - * @deprecated since 6.5, use the static API + * \a group the group to check, see KIconLoader::Group + * + * \a state the state to check, see KIconLoader::States + * + * Returns true if an effect is configured for the given \a group + * in \a state, otherwise false. + * + * \sa KIconLoader::Group, KIconLoader::States + * + * \deprecated [6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") bool hasEffect(int group, int state) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Returns a fingerprint for the effect by encoding - * the given @p group and @p state into a QString. This - * is useful for caching. - * @param group the group, see KIconLoader::Group - * @param state the state, see KIconLoader::States - * @return the fingerprint of the given @p group+@p state + * the given \a group and \a state into a QString. * - * @deprecated since 6.5, use the static API + * This is useful for caching. + * + * \a group the group, see KIconLoader::Group + * + * \a state the state, see KIconLoader::States + * + * Returns the fingerprint of the given \a group + \a state + * + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") QString fingerprint(int group, int state) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Applies an effect to an image. The effect to apply depends on the - * @p group and @p state parameters, and is configured by the user. - * @param src The image. - * @param group The group for the icon, see KIconLoader::Group - * @param state The icon's state, see KIconLoader::States - * @return An image with the effect applied. + * \a group and \a state parameters, and is configured by the user. * - * @deprecated since 6.5, use the static API + * \a src The image. + * + * \a group The group for the icon, see KIconLoader::Group + * + * \a state The icon's state, see KIconLoader::States + * + * Returns An image with the effect applied. + * + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") QImage apply(const QImage &src, int group, int state) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Applies an effect to an image. - * @param src The image. - * @param effect The effect to apply, one of KIconEffect::Effects. - * @param value Strength of the effect. 0 <= @p value <= 1. - * @param rgb Color parameter for effects that need one. - * @param trans Add Transparency if trans = true. - * @return An image with the effect applied. * - * @deprecated since 6.5, use the static API + * \a src The image. + * + * \a effect The effect to apply, one of KIconEffect::Effects. + * + * \a value Strength of the effect. 0 <= \a value <= 1. + * + * \a rgb Color parameter for effects that need one. + * + * \a trans Add Transparency if trans = true. + * + * Returns An image with the effect applied. + * + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") QImage apply(const QImage &src, int effect, float value, const QColor &rgb, bool trans) const; + + /*! + * Applies an effect to an image. + * + * \a src The image. + * + * \a effect The effect to apply, one of KIconEffect::Effects. + * + * \a value Strength of the effect. 0 <= \a value <= 1. + * + * \a rgb Color parameter for effects that need one. + * + * \a trans Add Transparency if trans = true. + * + * Returns An image with the effect applied. + * + * \deprecated[6.5] use the static API + */ QImage apply(const QImage &src, int effect, float value, const QColor &rgb, const QColor &rgb2, bool trans) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Applies an effect to a pixmap. - * @param src The pixmap. - * @param group The group for the icon, see KIconLoader::Group - * @param state The icon's state, see KIconLoader::States - * @return A pixmap with the effect applied. * - * @deprecated since 6.5, use the static API + * \a src The pixmap. + * + * \a group The group for the icon, see KIconLoader::Group + * + * \a state The icon's state, see KIconLoader::States + * + * Returns A pixmap with the effect applied. + * + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") QPixmap apply(const QPixmap &src, int group, int state) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Applies an effect to a pixmap. - * @param src The pixmap. - * @param effect The effect to apply, one of KIconEffect::Effects. - * @param value Strength of the effect. 0 <= @p value <= 1. - * @param rgb Color parameter for effects that need one. - * @param trans Add Transparency if trans = true. - * @return A pixmap with the effect applied. * - * @deprecated since 6.5, use the static API + * \a src The pixmap. + * + * \a effect The effect to apply, one of KIconEffect::Effects. + * + * \a value Strength of the effect. 0 <= \a value <= 1. + * + * \a rgb Color parameter for effects that need one. + * + * \a trans Add Transparency if trans = true. + * + * Returns A pixmap with the effect applied. + * + * \deprecated[6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") QPixmap apply(const QPixmap &src, int effect, float value, const QColor &rgb, bool trans) const; + + /*! + * Applies an effect to a pixmap. + * + * \a src The pixmap. + * + * \a effect The effect to apply, one of KIconEffect::Effects. + * + * \a value Strength of the effect. 0 <= \a value <= 1. + * + * \a rgb Color parameter for effects that need one. + * + * \a trans Add Transparency if trans = true. + * + * Returns A pixmap with the effect applied. + * + * \deprecated[6.5] use the static API + */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") QPixmap apply(const QPixmap &src, int effect, float value, const QColor &rgb, const QColor &rgb2, bool trans) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Returns an image twice as large, consisting of 2x2 pixels. - * @param src the image. - * @return the scaled image. * - * @deprecated since 6.5, use the static API + * \a src the image. + * + * Returns the scaled image. + * + * \deprecated [6.5] use the static API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static API") QImage doublePixels(const QImage &src) const; #endif - /** + /*! * Tints an image gray. * - * @param image The image - * @param value Strength of the effect. 0 <= @p value <= 1 + * \a image The image + * + * \a value Strength of the effect. 0 <= \a value <= 1 */ static void toGray(QImage &image, float value); - /** + /*! * Colorizes an image with a specific color. * - * @param image The image - * @param col The color with which the @p image is tinted - * @param value Strength of the effect. 0 <= @p value <= 1 + * \a image The image + * + * \a col The color with which the \a image is tinted + * + * \a value Strength of the effect. 0 <= \a value <= 1 */ static void colorize(QImage &image, const QColor &col, float value); - /** + /*! * Produces a monochrome icon with a given foreground and background color * - * @param image The image - * @param white The color with which the white parts of @p image are painted - * @param black The color with which the black parts of @p image are painted - * @param value Strength of the effect. 0 <= @p value <= 1 + * \a image The image + * + * \a white The color with which the white parts of \a image are painted + * + * \a black The color with which the black parts of \a image are painted + * + * \a value Strength of the effect. 0 <= \a value <= 1 */ static void toMonochrome(QImage &image, const QColor &black, const QColor &white, float value); - /** + /*! * Desaturates an image. * - * @param image The image - * @param value Strength of the effect. 0 <= @p value <= 1 + * \a image The image + * + * \a value Strength of the effect. 0 <= \a value <= 1 */ static void deSaturate(QImage &image, float value); - /** + /*! * Changes the gamma value of an image. * - * @param image The image - * @param value Strength of the effect. 0 <= @p value <= 1 + * \a image The image + * + * \a value Strength of the effect. 0 <= \a value <= 1 */ static void toGamma(QImage &image, float value); - /** + /*! * Renders an image semi-transparent. * - * @param image The image + * \a image The image */ static void semiTransparent(QImage &image); - /** + /*! * Renders a pixmap semi-transparent. * - * @param pixmap The pixmap + * \a pixmap The pixmap */ static void semiTransparent(QPixmap &pixmap); - /** + /*! * Overlays an image with an other image. * - * @param src The image - * @param overlay The image to overlay @p src with + * \a src The image + * + * \a overlay The image to overlay \a src with */ static void overlay(QImage &src, QImage &overlay); - /** + /*! * Applies a disabled effect * - * @param image The image + * \a image The image * - * @since 6.5 + * \since 6.5 */ static void toDisabled(QImage &image); - /** + /*! * Applies a disabled effect * - * @param pixmap The image + * \a pixmap The image * - * @since 6.5 + * \since 6.5 */ static void toDisabled(QPixmap &pixmap); - /** + /*! * Applies an effect for an icon that is in an 'active' state * - * @param image The image + * \a image The image * - * @since 6.5 + * \since 6.5 */ static void toActive(QImage &image); - /** + /*! * Applies an effect for an icon that is in an 'active' state * - * @param pixmap The image + * \a pixmap The image * - * @since 6.5 + * \since 6.5 */ static void toActive(QPixmap &pixmap); diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.cpp index 98b89d720d..10094def4c 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.cpp @@ -13,7 +13,6 @@ #include "kiconcolors.h" #include #include -#include #include #include @@ -150,12 +149,7 @@ QPixmap KIconEngine::pixmap(const QSize &size, QIcon::Mode mode, QIcon::State st QPixmap KIconEngine::scaledPixmap(const QSize &size, QIcon::Mode mode, QIcon::State state, qreal scale) { - // Since https://codereview.qt-project.org/c/qt/qtbase/+/563553 size is in logical pixels - if (QLibraryInfo::version() >= QVersionNumber(6, 8, 0)) { - return createPixmap(size, scale, mode, state); - } else { - return createPixmap(size / scale, scale, mode, state); - } + return createPixmap(size, scale, mode, state); } QString KIconEngine::iconName() diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.h b/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.h index c27962a837..af1ea34acb 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconengine.h @@ -16,10 +16,11 @@ class KIconColors; class KIconLoader; class KIconEnginePrivate; -/** - * @class KIconEngine kiconengine.h KIconEngine +/*! + * \class KIconEngine + * \inmodule KIconThemes * - * \short A class to provide rendering of KDE icons. + * \brief A class to provide rendering of KDE icons. * * This is mostly used to provide Qt's icon loading in plasma-integration * @@ -28,46 +29,50 @@ class KIconEnginePrivate; class KICONTHEMES_EXPORT KIconEngine : public QIconEngine // exported for plasma-integration { public: - /** + /*! * Constructs an icon engine for a named icon. * - * @param iconName the name of the icon to load - * @param iconLoader The icon loader that this engine is to use. - * @param overlays Add one or more overlays to the icon. See KIconLoader::Overlays. + * \a iconName the name of the icon to load * - * @sa KIconLoader + * \a iconLoader The icon loader that this engine is to use. + * + * \a overlays Add one or more overlays to the icon. See KIconLoader::Overlays. + * + * \sa KIconLoader */ KIconEngine(const QString &iconName, KIconLoader *iconLoader, const QStringList &overlays); - /** + /*! * \overload */ KIconEngine(const QString &iconName, KIconLoader *iconLoader); - /** + /*! * Constructs an icon engine for a KDE named icon with a specific palette. * - * @param iconName the name of the icon to load - * @param colors defines the colors we want to be applied on this icon - * @param iconLoader The KDE icon loader that this engine is to use. + * \a iconName the name of the icon to load + * + * \a colors defines the colors we want to be applied on this icon + * + * \a iconLoader The KDE icon loader that this engine is to use. */ KIconEngine(const QString &iconName, const KIconColors &colors, KIconLoader *iconLoader); - /** + /*! * Constructs an icon engine for a KDE named icon with a specific palette and overlays. * - * @param iconName the name of the icon to load - * @param colors defines the colors we want to be applied on this icon - * @param iconLoader The KDE icon loader that this engine is to use. - * @param overlays Add one or more overlays to the icon. See KIconLoader::Overlays. + * \a iconName the name of the icon to load * - * @since 6.1 + * \a colors defines the colors we want to be applied on this icon + * + * \a iconLoader The KDE icon loader that this engine is to use. + * + * \a overlays Add one or more overlays to the icon. See KIconLoader::Overlays. + * + * \since 6.1 */ KIconEngine(const QString &iconName, const KIconColors &colors, KIconLoader *iconLoader, const QStringList &overlays); - /** - * Destructor. - */ ~KIconEngine() override; /// Reimplementation diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.cpp index 7a27c63336..39ec432f3f 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.cpp @@ -52,7 +52,51 @@ #include //for readlink +namespace +{ + /** + * Checks if name ends in one of the supported icon formats (i.e. .png) + * and returns the name without the extension if it does. + */ +QString removeIconExtension(const QString &name) +{ + if (name.endsWith(QLatin1String(".png")) // + || name.endsWith(QLatin1String(".xpm")) // + || name.endsWith(QLatin1String(".svg"))) { + return name.left(name.length() - 4); + } else if (name.endsWith(QLatin1String(".svgz"))) { + return name.left(name.length() - 5); + } + + return name; +} + +QStringList deduplicateIconsByName(const QStringList &icons) +{ + // Eliminate duplicate entries (same icon in different directories) + QStringList result; + QStringList entries; + for (const auto &icon : icons) { + const int n = icon.lastIndexOf(QLatin1Char('/')); + QString name; + if (n == -1) { + name = icon; + } else { + name = icon.mid(n + 1); + } + name = removeIconExtension(name); + if (!entries.contains(name)) { + entries += name; + result += icon; + } + } + return result; +} + +} // namespace + +/* * Function to convert an uint32_t to AARRGGBB hex values. * * W A R N I N G ! @@ -84,7 +128,7 @@ static QString paletteId(const KIconColors &colors) return buffer; } -/*** KIconThemeNode: A node in the icon theme dependency tree. ***/ +/* KIconThemeNode: A node in the icon theme dependency tree. */ class KIconThemeNode { @@ -95,6 +139,7 @@ public: KIconThemeNode(const KIconThemeNode &) = delete; KIconThemeNode &operator=(const KIconThemeNode &) = delete; + [[nodiscard]] QStringList queryIcons() const; void queryIcons(QStringList *lst, int size, KIconLoader::Context context) const; void queryIconsByContext(QStringList *lst, int size, KIconLoader::Context context) const; QString findIcon(const QString &name, int size, KIconLoader::MatchType match) const; @@ -112,6 +157,11 @@ KIconThemeNode::~KIconThemeNode() delete theme; } +QStringList KIconThemeNode::queryIcons() const +{ + return theme->queryIcons(); +} + void KIconThemeNode::queryIcons(QStringList *result, int size, KIconLoader::Context context) const { // add the icons of this theme to it @@ -221,8 +271,7 @@ void KIconLoaderPrivate::clear() /* antlarr: There's no need to delete d->mpThemeRoot as it's already deleted when the elements of d->links are deleted */ qDeleteAll(links); - delete[] mpGroups; - mpGroups = nullptr; + mpGroups.clear(); mPixmapCache.clear(); m_appname.clear(); searchPaths.clear(); @@ -370,7 +419,7 @@ void KIconLoaderPrivate::init(const QString &_appname, const QStringList &extraS // load default sizes initIconThemes(); KIconTheme *defaultSizesTheme = links.empty() ? nullptr : links.first()->theme; - mpGroups = new KIconGroup[static_cast(KIconLoader::LastGroup)]; + mpGroups.resize(int(KIconLoader::LastGroup)); for (KIconLoader::Group i = KIconLoader::FirstGroup; i < KIconLoader::LastGroup; ++i) { if (groups[i] == nullptr) { break; @@ -466,7 +515,11 @@ void KIconLoaderPrivate::addBaseThemes(KIconThemeNode *node, const QString &appn // present in an inherited theme, and hicolor goes last. addInheritedThemes(node, appname); - addThemeByName(QIcon::fallbackThemeName(), appname); + + if (!QIcon::fallbackThemeName().isEmpty()) { + addThemeByName(QIcon::fallbackThemeName(), appname); + } + addThemeByName(QStringLiteral("hicolor"), appname); } @@ -545,19 +598,6 @@ void KIconLoader::drawOverlays(const QStringList &overlays, QPixmap &pixmap, KIc d->drawOverlays(this, group, state, pixmap, overlays); } -QString KIconLoaderPrivate::removeIconExtension(const QString &name) const -{ - if (name.endsWith(QLatin1String(".png")) // - || name.endsWith(QLatin1String(".xpm")) // - || name.endsWith(QLatin1String(".svg"))) { - return name.left(name.length() - 4); - } else if (name.endsWith(QLatin1String(".svgz"))) { - return name.left(name.length() - 5); - } - - return name; -} - void KIconLoaderPrivate::normalizeIconMetadata(KIconLoader::Group &group, QSize &size, int &state) const { if ((state < 0) || (state >= KIconLoader::LastState)) { @@ -646,8 +686,11 @@ QByteArray KIconLoaderPrivate::processSvg(const QString &path, KIconLoader::Stat QBuffer buffer(&processedContents); buffer.open(QIODevice::WriteOnly); QXmlStreamWriter writer(&buffer); + bool foundStyleSheet = false; while (!reader.atEnd()) { - if (reader.readNext() == QXmlStreamReader::StartElement // + reader.readNext(); + if (!foundStyleSheet // + && reader.tokenType() == QXmlStreamReader::StartElement // && reader.qualifiedName() == QLatin1String("style") // && reader.attributes().value(QLatin1String("id")) == QLatin1String("current-color-scheme")) { writer.writeStartElement(QStringLiteral("style")); @@ -657,7 +700,8 @@ QByteArray KIconLoaderPrivate::processSvg(const QString &path, KIconLoader::Stat while (reader.tokenType() != QXmlStreamReader::EndElement) { reader.readNext(); } - } else if (reader.tokenType() != QXmlStreamReader::Invalid) { + foundStyleSheet = true; + } else if (reader.tokenType() != QXmlStreamReader::Invalid && !reader.isWhitespace() && !reader.isComment()) { writer.writeCurrentToken(reader); } } @@ -775,7 +819,7 @@ QString KIconLoaderPrivate::findMatchingIcon(const QString &name, int size, qrea // The next block removes the last word including the -, "a-b-symbolic" will become "a-b" // We remove it beforehand, "a-b-symbolic" now is "a-symbolic" and we'll add it back later. if (isSymbolic) { - currentName.remove(QLatin1String("-symbolic")); + currentName.chop(strlen("-symbolic")); // Handle cases where the icon lacks a symbolic version. // For example, "knotes-symbolic" doesn't exist and has no fallback or generic version. @@ -910,16 +954,16 @@ QString KIconLoader::iconPath(const QString &_name, int group_or_size, bool canR return _name; } - QString name = d->removeIconExtension(_name); + QString name = removeIconExtension(_name); QString path; if (group_or_size == KIconLoader::User) { - path = d->locate(name + QLatin1String(".png")); + path = d->locate(name + QLatin1String(".svg")); if (path.isEmpty()) { path = d->locate(name + QLatin1String(".svgz")); } if (path.isEmpty()) { - path = d->locate(name + QLatin1String(".svg")); + path = d->locate(name + QLatin1String(".png")); } if (path.isEmpty()) { path = d->locate(name + QLatin1String(".xpm")); @@ -1059,7 +1103,7 @@ QPixmap KIconLoader::loadScaledIcon(const QString &_name, // we need to honor resource :/ paths and QDir::searchPaths => use QDir::isAbsolutePath, see bug 434451 const bool absolutePath = QDir::isAbsolutePath(name); if (!absolutePath) { - name = d->removeIconExtension(name); + name = removeIconExtension(name); } // Don't bother looking for an icon with no name. @@ -1197,7 +1241,7 @@ QMovie *KIconLoader::loadMovie(const QString &name, KIconLoader::Group group, in #if KICONTHEMES_BUILD_DEPRECATED_SINCE(6, 5) QString KIconLoader::moviePath(const QString &name, KIconLoader::Group group, int size) const { - if (!d->mpGroups) { + if (d->mpGroups.empty()) { return QString(); } @@ -1247,7 +1291,7 @@ QStringList KIconLoader::loadAnimated(const QString &name, KIconLoader::Group gr { QStringList lst; - if (!d->mpGroups) { + if (d->mpGroups.empty()) { return lst; } @@ -1305,7 +1349,7 @@ KIconTheme *KIconLoader::theme() const int KIconLoader::currentSize(KIconLoader::Group group) const { - if (!d->mpGroups) { + if (d->mpGroups.empty()) { return -1; } @@ -1346,24 +1390,19 @@ QStringList KIconLoader::queryIconsByContext(int group_or_size, KIconLoader::Con themeNode->queryIconsByContext(&result, size, context); } - // Eliminate duplicate entries (same icon in different directories) - QString name; - QStringList res2; - QStringList entries; - for (const auto &icon : std::as_const(result)) { - const int n = icon.lastIndexOf(QLatin1Char('/')); - if (n == -1) { - name = icon; - } else { - name = icon.mid(n + 1); - } - name = d->removeIconExtension(name); - if (!entries.contains(name)) { - entries += name; - res2 += icon; - } + return deduplicateIconsByName(result); +} + +QStringList KIconLoader::queryIcons() const +{ + d->initIconThemes(); + + QStringList result; + for (const auto &themeNode : std::as_const(d->links)) { + result.append(themeNode->queryIcons()); } - return res2; + + return deduplicateIconsByName(result); } QStringList KIconLoader::queryIcons(int group_or_size, KIconLoader::Context context) const @@ -1386,24 +1425,7 @@ QStringList KIconLoader::queryIcons(int group_or_size, KIconLoader::Context cont themeNode->queryIcons(&result, size, context); } - // Eliminate duplicate entries (same icon in different directories) - QString name; - QStringList res2; - QStringList entries; - for (const auto &icon : std::as_const(result)) { - const int n = icon.lastIndexOf(QLatin1Char('/')); - if (n == -1) { - name = icon; - } else { - name = icon.mid(n + 1); - } - name = d->removeIconExtension(name); - if (!entries.contains(name)) { - entries += name; - res2 += icon; - } - } - return res2; + return deduplicateIconsByName(result); } // used by KIconDialog to find out which contexts to offer in a combobox @@ -1469,12 +1491,10 @@ bool KIconLoader::hasCustomPalette() const return d->mCustomColors; } -/*** the global icon loader ***/ -Q_GLOBAL_STATIC(KIconLoader, globalIconLoader) - KIconLoader *KIconLoader::global() { - return globalIconLoader(); + thread_local KIconLoader loader; + return &loader; } void KIconLoader::newIconLoader() diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.h b/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.h index cc92c8d52f..078ca3eef4 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader.h @@ -31,12 +31,13 @@ class KIconLoaderPrivate; class KIconEffect; class KIconTheme; -/** - * @class KIconLoader kiconloader.h KIconLoader +/*! + * \class KIconLoader + * \inmodule KIconThemes * - * Iconloader for KDE. + * \brief Iconloader for KDE. * - * @note For most icon loading use cases perfer using QIcon::fromTheme + * \note For most icon loading use cases perfer using QIcon::fromTheme * * KIconLoader will load the current icon theme and all its base themes. * Icons will be searched in any of these themes. Additionally, it caches @@ -50,12 +51,14 @@ class KIconTheme; * * The standard groups are defined below. * - * @li KIconLoader::Desktop: Icons in the iconview of konqueror, kdesktop and similar apps. - * @li KIconLoader::Toolbar: Icons in toolbars. - * @li KIconLoader::MainToolbar: Icons in the main toolbars. - * @li KIconLoader::Small: Various small (typical 16x16) places: titlebars, listviews + * \list + * \li KIconLoader::Desktop: Icons in the iconview of konqueror, kdesktop and similar apps. + * \li KIconLoader::Toolbar: Icons in toolbars. + * \li KIconLoader::MainToolbar: Icons in the main toolbars. + * \li KIconLoader::Small: Various small (typical 16x16) places: titlebars, listviews * and menu entries. - * @li KIconLoader::Panel: Icons in kicker's panel + * \li KIconLoader::Panel: Icons in kicker's panel + * \endlist * * The icons are stored on disk in an icon theme or in a standalone * directory. The icon theme directories contain multiple sizes and/or @@ -67,117 +70,159 @@ class KIconTheme; * directories that are searched are: $appdir/pics and $appdir/toolbar. * Icons in these directories can be loaded by using the special group * "User". - * */ class KICONTHEMES_EXPORT KIconLoader : public QObject { Q_OBJECT public: - /** - * Defines the context of the icon. + /*! + * \enum KIconLoader::Context + * + * \brief Defines the context of the icon. + * + * \value Any Some icon with unknown purpose. + * \value Action An action icon (e.g. 'save', 'print'). + * \value Application An icon that represents an application. + * \value Device An icon that represents a device. + * \value MimeType An icon that represents a mime type (or file type). + * \value Animation An icon that is animated. + * \value Category An icon that represents a category. + * \value Emblem An icon that adds information to an existing icon. + * \value Emote An icon that expresses an emotion. + * \value International An icon that represents a country's flag. + * \value Place An icon that represents a location (e.g. 'home', 'trash'). + * \value StatusIcon An icon that represents an event. */ enum Context { - Any, ///< Some icon with unknown purpose. - Action, ///< An action icon (e.g. 'save', 'print'). - Application, ///< An icon that represents an application. - Device, ///< An icon that represents a device. - MimeType, ///< An icon that represents a mime type (or file type). - Animation, ///< An icon that is animated. - Category, ///< An icon that represents a category. - Emblem, ///< An icon that adds information to an existing icon. - Emote, ///< An icon that expresses an emotion. - International, ///< An icon that represents a country's flag. - Place, ///< An icon that represents a location (e.g. 'home', 'trash'). - StatusIcon, ///< An icon that represents an event. + Any, + Action, + Application, + Device, + MimeType, + Animation, + Category, + Emblem, + Emote, + International, + Place, + StatusIcon, }; Q_ENUM(Context) - /** - * The type of the icon. + /*! + * \enum KIconLoader::Type + * + * \brief The type of the icon. + * + * \value Fixed Fixed-size icon. + * \value Scalable Scalable-size icon. + * \value Threshold A threshold icon. */ enum Type { - Fixed, ///< Fixed-size icon. - Scalable, ///< Scalable-size icon. - Threshold, ///< A threshold icon. + Fixed, + Scalable, + Threshold, }; Q_ENUM(Type) - /** - * The type of a match. + /*! + * \enum KIconLoader::MatchType + * + * \brief The type of a match. + * + * \value MatchExact Only try to find an exact match. + * \value MatchBest Take the best match if there is no exact match. + * \value MatchBestOrGreaterSize Take the best match or the match with a greater size if there is no exact match. \since 6.0 */ enum MatchType { - MatchExact, ///< Only try to find an exact match. - MatchBest, ///< Take the best match if there is no exact match. - MatchBestOrGreaterSize, ///< Take the best match or the match with a greater size if there is no exact match. @since 6.0 + MatchExact, + MatchBest, + MatchBestOrGreaterSize, }; Q_ENUM(MatchType) - /** - * The group of the icon. + /*! + * \enum KIconLoader::Group + * + * \brief The group of the icon. + * + * \value NoGroup No group + * \value Desktop Desktop icons + * \value FirstGroup First group + * \value Toolbar Toolbar icons + * \value MainToolbar Main toolbar icons + * \value Small Small icons, e.g. for buttons + * \value Panel Panel (Plasma Taskbar) icons + * \value Dialog Icons for use in dialog titles, page lists, etc + * \value LastGroup Last group + * \value User User icons */ enum Group { - /// No group NoGroup = -1, - /// Desktop icons Desktop = 0, - /// First group FirstGroup = 0, - /// Toolbar icons Toolbar, - /// Main toolbar icons MainToolbar, - /// Small icons, e.g. for buttons Small, - /// Panel (Plasma Taskbar) icons // TODO KF6: remove this (See https://phabricator.kde.org/T14340) Panel, - /// Icons for use in dialog titles, page lists, etc Dialog, - /// Last group LastGroup, - /// User icons User, }; Q_ENUM(Group) - /** - * These are the standard sizes for icons. + /*! + * \enum KIconLoader::StdSizes + * + * \brief These are the standard sizes for icons. + * + * \value SizeSmall small icons for menu entries + * \value SizeSmallMedium slightly larger small icons for toolbars, panels, etc + * \value SizeMedium medium sized icons for the desktop + * \value SizeLarge large sized icons for the panel + * \value SizeHuge huge sized icons for iconviews + * \value SizeEnormous enormous sized icons for iconviews */ enum StdSizes { - /// small icons for menu entries SizeSmall = 16, - /// slightly larger small icons for toolbars, panels, etc SizeSmallMedium = 22, - /// medium sized icons for the desktop SizeMedium = 32, - /// large sized icons for the panel SizeLarge = 48, - /// huge sized icons for iconviews SizeHuge = 64, - /// enormous sized icons for iconviews SizeEnormous = 128, }; Q_ENUM(StdSizes) - /** - * Defines the possible states of an icon. + /*! + * \enum KIconLoader::States + * + * \brief Defines the possible states of an icon. + * + * \value DefaultState The default state. + * \value ActiveState Icon is active. + * \value DisabledState Icon is disabled. + * \value [since 5.22] SelectedState Icon is selected. + * \value LastState Last state (last constant) */ enum States { - DefaultState, ///< The default state. - ActiveState, ///< Icon is active. - DisabledState, ///< Icon is disabled. - SelectedState, ///< Icon is selected. @since 5.22 - LastState, ///< Last state (last constant) + DefaultState, + ActiveState, + DisabledState, + SelectedState, + LastState, }; Q_ENUM(States) - /** + /*! * Constructs an iconloader. - * @param appname Add the data directories of this application to the + * + * \a appname Add the data directories of this application to the * icon search path for the "User" group. The default argument adds the * directories of the current application. - * @param extraSearchPaths additional search paths, either absolute or relative to GenericDataLocation + * + * \a extraSearchPaths additional search paths, either absolute or relative to GenericDataLocation * * Usually, you use the default iconloader, which can be accessed via * KIconLoader::global(), so you hardly ever have to create an @@ -185,54 +230,61 @@ public: */ explicit KIconLoader(const QString &appname = QString(), const QStringList &extraSearchPaths = QStringList(), QObject *parent = nullptr); - /** - * Cleanup - */ ~KIconLoader() override; - /** + /*! * Returns the global icon loader initialized with the application name. - * @return global icon loader */ static KIconLoader *global(); - /** - * Adds @p appname to the list of application specific directories with @p themeBaseDir as its base directory. + /*! + * Adds \a appname to the list of application specific directories with \a themeBaseDir as its base directory. + * * Assume the icons are in /home/user/app/icons/hicolor/48x48/my_app.png, the base directory would be - * /home/user/app/icons; KIconLoader automatically searches @p themeBaseDir + "/hicolor" + * /home/user/app/icons; KIconLoader automatically searches \a themeBaseDir + "/hicolor" + * * This directory must contain a dir structure as defined by the XDG icons specification - * @param appname The application name. - * @param themeBaseDir The base directory of the application's theme (eg. "/home/user/app/icons") + * + * \a appname The application name. + * + * \a themeBaseDir The base directory of the application's theme (eg. "/home/user/app/icons") */ void addAppDir(const QString &appname, const QString &themeBaseDir = QString()); - /** + /*! * Loads an icon. It will try very hard to find an icon which is * suitable. If no exact match is found, a close match is searched. * If neither an exact nor a close match is found, a null pixmap or * the "unknown" pixmap is returned, depending on the value of the - * @p canReturnNull parameter. + * \a canReturnNull parameter. * - * @param name The name of the icon, without extension. - * @param group The icon group. This will specify the size of and effects to + * \a name The name of the icon, without extension. + * + * \a group The icon group. This will specify the size of and effects to * be applied to the icon. - * @param size If nonzero, this overrides the size specified by @p group. + * + * \a size If nonzero, this overrides the size specified by \a group. * See KIconLoader::StdSizes. - * @param state The icon state: @p DefaultState, @p ActiveState or - * @p DisabledState. Depending on the user's preferences, the iconloader + * + * \a state The icon state: \c DefaultState, \c ActiveState or + * \c DisabledState. Depending on the user's preferences, the iconloader * may apply a visual effect to hint about its state. - * @param overlays a list of emblem icons to overlay, by name - * @see drawOverlays - * @param path_store If not null, the path of the icon is stored here, - * if the icon was found. If the icon was not found @p path_store + * + * \a overlays a list of emblem icons to overlay, by name + * \sa drawOverlays + * + * \a path_store If not null, the path of the icon is stored here, + * if the icon was found. If the icon was not found \a path_store * is unaltered even if the "unknown" pixmap was returned. - * @param canReturnNull Can return a null pixmap? If false, the + * + * \a canReturnNull Can return a null pixmap? If false, the * "unknown" pixmap is returned when no appropriate icon has been - * found. Note: a null pixmap can still be returned in the + * found. Note: a null pixmap can still be returned in the * event of invalid parameters, such as empty names, negative sizes, * and etc. - * @return the QPixmap. Can be null when not found, depending on - * @p canReturnNull. + * + * Returns the QPixmap. Can be null when not found, depending on + * \a canReturnNull. */ QPixmap loadIcon(const QString &name, KIconLoader::Group group, @@ -242,39 +294,47 @@ public: QString *path_store = nullptr, bool canReturnNull = false) const; - /** + // TODO KF6 merge loadIcon() and loadScaledIcon() + /*! * Loads an icon. It will try very hard to find an icon which is * suitable. If no exact match is found, a close match is searched. * If neither an exact nor a close match is found, a null pixmap or * the "unknown" pixmap is returned, depending on the value of the - * @p canReturnNull parameter. + * \a canReturnNull parameter. * - * @param name The name of the icon, without extension. - * @param group The icon group. This will specify the size of and effects to + * \a name The name of the icon, without extension. + * + * \a group The icon group. This will specify the size of and effects to * be applied to the icon. - * @param scale The scale of the icon group to use. If no icon exists in the + * + * \a scale The scale of the icon group to use. If no icon exists in the * scaled group, a 1x icon with its size multiplied by the scale will be * loaded instead. - * @param size If nonzero, this overrides the size specified by @p group. + * + * \a size If nonzero, this overrides the size specified by \a group. * See KIconLoader::StdSizes. - * @param state The icon state: @p DefaultState, @p ActiveState or - * @p DisabledState. Depending on the user's preferences, the iconloader + * + * \a state The icon state: \c DefaultState, \c ActiveState or + * \c DisabledState. Depending on the user's preferences, the iconloader * may apply a visual effect to hint about its state. - * @param overlays a list of emblem icons to overlay, by name - * @see drawOverlays - * @param path_store If not null, the path of the icon is stored here, - * if the icon was found. If the icon was not found @p path_store + * + * \a overlays a list of emblem icons to overlay, by name + * \sa drawOverlays + * + * \a path_store If not null, the path of the icon is stored here, + * if the icon was found. If the icon was not found \a path_store * is unaltered even if the "unknown" pixmap was returned. - * @param canReturnNull Can return a null pixmap? If false, the + * + * \a canReturnNull Can return a null pixmap? If false, the * "unknown" pixmap is returned when no appropriate icon has been - * found. Note: a null pixmap can still be returned in the + * found. Note: a null pixmap can still be returned in the * event of invalid parameters, such as empty names, negative sizes, * and etc. - * @return the QPixmap. Can be null when not found, depending on - * @p canReturnNull. - * @since 5.48 + * + * Returns the QPixmap. Can be null when not found, depending on + * \a canReturnNull. + * \since 5.48 */ - // TODO KF6 merge loadIcon() and loadScaledIcon() QPixmap loadScaledIcon(const QString &name, KIconLoader::Group group, qreal scale, @@ -284,39 +344,46 @@ public: QString *path_store = nullptr, bool canReturnNull = false) const; - /** + /*! * Loads an icon. It will try very hard to find an icon which is * suitable. If no exact match is found, a close match is searched. * If neither an exact nor a close match is found, a null pixmap or * the "unknown" pixmap is returned, depending on the value of the - * @p canReturnNull parameter. + * \a canReturnNull parameter. * - * @param name The name of the icon, without extension. - * @param group The icon group. This will specify the size of and effects to + * \a name The name of the icon, without extension. + * + * \a group The icon group. This will specify the size of and effects to * be applied to the icon. - * @param scale The scale of the icon group to use. If no icon exists in the + * + * \a scale The scale of the icon group to use. If no icon exists in the * scaled group, a 1x icon with its size multiplied by the scale will be * loaded instead. - * @param size If nonzero, this overrides the size specified by @p group. - * See KIconLoader::StdSizes. The icon will be fit into @p size + * + * \a size If nonzero, this overrides the size specified by \a group. + * See KIconLoader::StdSizes. The icon will be fit into \a size * without changing the aspect ratio, which particularly matters * for non-square icons. - * @param state The icon state: @p DefaultState, @p ActiveState or - * @p DisabledState. Depending on the user's preferences, the iconloader - * may apply a visual effect to hint about its state. - * @param overlays a list of emblem icons to overlay, by name - * @see drawOverlays - * @param path_store If not null, the path of the icon is stored here, - * if the icon was found. If the icon was not found @p path_store + * + * \a state The icon state: \c DefaultState, \c ActiveState or \c DisabledState. Depending on the user's preferences, the iconloader may apply a visual + * effect to hint about its state. + * + * \a overlays a list of emblem icons to overlay, by name + * \sa drawOverlays + * + * \a path_store If not null, the path of the icon is stored here, + * if the icon was found. If the icon was not found \a path_store * is unaltered even if the "unknown" pixmap was returned. - * @param canReturnNull Can return a null pixmap? If false, the + * + * \a canReturnNull Can return a null pixmap? If false, the * "unknown" pixmap is returned when no appropriate icon has been - * found. Note: a null pixmap can still be returned in the + * found. Note: a null pixmap can still be returned in the * event of invalid parameters, such as empty names, negative sizes, * and etc. - * @return the QPixmap. Can be null when not found, depending on - * @p canReturnNull. - * @since 5.81 + * + * Returns the QPixmap. Can be null when not found, depending on + * \a canReturnNull. + * \since 5.81 */ QPixmap loadScaledIcon(const QString &name, KIconLoader::Group group, @@ -328,41 +395,49 @@ public: bool canReturnNull = false) const; #if __has_include() && __cplusplus >= 201703L - /** + /*! * Loads an icon. It will try very hard to find an icon which is * suitable. If no exact match is found, a close match is searched. * If neither an exact nor a close match is found, a null pixmap or * the "unknown" pixmap is returned, depending on the value of the - * @p canReturnNull parameter. + * \a canReturnNull parameter. * - * @param name The name of the icon, without extension. - * @param group The icon group. This will specify the size of and effects to + * \a name The name of the icon, without extension. + * + * \a group The icon group. This will specify the size of and effects to * be applied to the icon. - * @param scale The scale of the icon group to use. If no icon exists in the + * + * \a scale The scale of the icon group to use. If no icon exists in the * scaled group, a 1x icon with its size multiplied by the scale will be * loaded instead. - * @param size If nonzero, this overrides the size specified by @p group. - * See KIconLoader::StdSizes. The icon will be fit into @p size + * + * \a size If nonzero, this overrides the size specified by \a group. + * See KIconLoader::StdSizes. The icon will be fit into \a size * without changing the aspect ratio, which particularly matters * for non-square icons. - * @param state The icon state: @p DefaultState, @p ActiveState or - * @p DisabledState. Depending on the user's preferences, the iconloader + * + * \a state The icon state: \c DefaultState, \c ActiveState or + * \c DisabledState. Depending on the user's preferences, the iconloader * may apply a visual effect to hint about its state. - * @param overlays a list of emblem icons to overlay, by name - * @see drawOverlays - * @param path_store If not null, the path of the icon is stored here, - * if the icon was found. If the icon was not found @p path_store + * + * \a overlays a list of emblem icons to overlay, by name + * \sa drawOverlays() + * + * \a path_store If not null, the path of the icon is stored here, + * if the icon was found. If the icon was not found \a path_store * is unaltered even if the "unknown" pixmap was returned. - * @param canReturnNull Can return a null pixmap? If false, the + * \a canReturnNull Can return a null pixmap? If false, the * "unknown" pixmap is returned when no appropriate icon has been - * found. Note: a null pixmap can still be returned in the + * found. Note: a null pixmap can still be returned in the * event of invalid parameters, such as empty names, negative sizes, * and etc. - * @param colorScheme will define the stylesheet used to color this icon. - * Note this will only work if @p name is an svg file. - * @return the QPixmap. Can be null when not found, depending on - * @p canReturnNull. - * @since 5.88 + * + * \a colorScheme will define the stylesheet used to color this icon. + * Note this will only work if \a name is an svg file. + * + * Returns the QPixmap. Can be null when not found, depending on + * \a canReturnNull. + * \since 5.88 */ QPixmap loadScaledIcon(const QString &name, KIconLoader::Group group, @@ -375,24 +450,30 @@ public: const std::optional &colorScheme) const; #endif - /** + /*! * Loads an icon for a mimetype. * This is basically like loadIcon except that extra desktop themes are loaded if necessary. * * Consider using QIcon::fromTheme() with a fallback to "application-octet-stream" instead. * - * @param iconName The name of the icon, without extension, usually from KMimeType. - * @param group The icon group. This will specify the size of and effects to + * \a iconName The name of the icon, without extension, usually from KMimeType. + * + * \a group The icon group. This will specify the size of and effects to * be applied to the icon. - * @param size If nonzero, this overrides the size specified by @p group. + * + * \a size If nonzero, this overrides the size specified by \a group. * See KIconLoader::StdSizes. - * @param state The icon state: @p DefaultState, @p ActiveState or - * @p DisabledState. Depending on the user's preferences, the iconloader + * + * \a state The icon state: \c DefaultState, \c ActiveState or + * \c DisabledState. Depending on the user's preferences, the iconloader * may apply a visual effect to hint about its state. - * @param path_store If not null, the path of the icon is stored here. - * @param overlays a list of emblem icons to overlay, by name - * @see drawOverlays - * @return the QPixmap. Can not be null, the + * + * \a path_store If not null, the path of the icon is stored here. + * + * \a overlays a list of emblem icons to overlay, by name + * \sa drawOverlays + * + * Returns the QPixmap. Can not be null, the * "unknown" pixmap is returned when no appropriate icon has been found. */ QPixmap loadMimeTypeIcon(const QString &iconName, @@ -402,292 +483,356 @@ public: const QStringList &overlays = QStringList(), QString *path_store = nullptr) const; - /** + /*! * Returns the path of an icon. - * @param name The name of the icon, without extension. If an absolute + * + * \a name The name of the icon, without extension. If an absolute * path is supplied for this parameter, iconPath will return it * directly. - * @param group_or_size If positive, search icons whose size is - * specified by the icon group @p group_or_size. If negative, search - * icons whose size is - @p group_or_size. + * + * \a group_or_size If positive, search icons whose size is + * specified by the icon group \a group_or_size. If negative, search + * icons whose size is - \a group_or_size. * See KIconLoader::Group and KIconLoader::StdSizes - * @param canReturnNull Can return a null string? If not, a path to the + * + * \a canReturnNull Can return a null string? If not, a path to the * "unknown" icon will be returned. - * @return the path of an icon, can be null or the "unknown" icon when - * not found, depending on @p canReturnNull. + * + * Returns the path of an icon, can be null or the "unknown" icon when + * not found, depending on \a canReturnNull. */ QString iconPath(const QString &name, int group_or_size, bool canReturnNull = false) const; - /** + // TODO KF6 merge iconPath() with and without "scale" and move that argument after "group_or_size" + /*! * Returns the path of an icon. - * @param name The name of the icon, without extension. If an absolute + * + * \a name The name of the icon, without extension. If an absolute * path is supplied for this parameter, iconPath will return it * directly. - * @param group_or_size If positive, search icons whose size is - * specified by the icon group @p group_or_size. If negative, search - * icons whose size is - @p group_or_size. + * + * \a group_or_size If positive, search icons whose size is + * specified by the icon group \a group_or_size. If negative, search + * icons whose size is - \a group_or_size. * See KIconLoader::Group and KIconLoader::StdSizes - * @param canReturnNull Can return a null string? If not, a path to the + * + * \a canReturnNull Can return a null string? If not, a path to the * "unknown" icon will be returned. - * @param scale The scale of the icon group. - * @return the path of an icon, can be null or the "unknown" icon when - * not found, depending on @p canReturnNull. - * @since 5.48 + * + * \a scale The scale of the icon group. + * + * Returns the path of an icon, can be null or the "unknown" icon when + * not found, depending on \a canReturnNull. + * \since 5.48 */ - // TODO KF6 merge iconPath() with and without "scale" and move that argument after "group_or_size" QString iconPath(const QString &name, int group_or_size, bool canReturnNull, qreal scale) const; #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Loads an animated icon. - * @param name The name of the icon. - * @param group The icon group. See loadIcon(). - * @param size Override the default size for @p group. + * + * \a name The name of the icon. + * + * \a group The icon group. See loadIcon(). + * + * \a size Override the default size for \a group. * See KIconLoader::StdSizes. - * @param parent The parent object of the returned QMovie. - * @return A QMovie object. Can be null if not found or not valid. + * + * \a parent The parent object of the returned QMovie. + * + * Returns A QMovie object. Can be null if not found or not valid. * Ownership is passed to the caller. - * @deprecated since 6.5, use QMovie API + * \deprecated[6.5] use QMovie API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use QMovie API") QMovie *loadMovie(const QString &name, KIconLoader::Group group, int size = 0, QObject *parent = nullptr) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Returns the path to an animated icon. - * @param name The name of the icon. - * @param group The icon group. See loadIcon(). - * @param size Override the default size for @p group. + * + * \a name The name of the icon. + * + * \a group The icon group. See loadIcon(). + * + * \a size Override the default size for \a group. * See KIconLoader::StdSizes. - * @return the full path to the movie, ready to be passed to QMovie's constructor. + * + * Returns the full path to the movie, ready to be passed to QMovie's constructor. + * * Empty string if not found. - * @deprecated since 6.5, use QMovie API + * \deprecated [6.5] use QMovie API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use QMovie API") QString moviePath(const QString &name, KIconLoader::Group group, int size = 0) const; #endif #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Loads an animated icon as a series of still frames. If you want to load * a .mng animation as QMovie instead, please use loadMovie() instead. - * @param name The name of the icon. - * @param group The icon group. See loadIcon(). - * @param size Override the default size for @p group. + * + * \a name The name of the icon. + * + * \a group The icon group. See loadIcon(). + * + * \a size Override the default size for \a group. * See KIconLoader::StdSizes. - * @return A QStringList containing the absolute path of all the frames + * + * Returns a QStringList containing the absolute path of all the frames * making up the animation. * - * @deprecated since 6.5, use QMovie API + * \deprecated [6.5] use QMovie API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use QMovie API") QStringList loadAnimated(const QString &name, KIconLoader::Group group, int size = 0) const; #endif - /** + /*! + * Queries all available icons. + * \since 6.11 + */ + [[nodiscard]] QStringList queryIcons() const; + + /*! * Queries all available icons for a specific group, having a specific * context. - * @param group_or_size If positive, search icons whose size is - * specified by the icon group @p group_or_size. If negative, search - * icons whose size is - @p group_or_size. + * + * \a group_or_size If positive, search icons whose size is + * specified by the icon group \a group_or_size. If negative, search + * icons whose size is - \a group_or_size. * See KIconLoader::Group and KIconLoader::StdSizes - * @param context The icon context. - * @return a list of all icons + * + * \a context The icon context. + * Returns a list of all icons */ QStringList queryIcons(int group_or_size, KIconLoader::Context context = KIconLoader::Any) const; - /** + /*! * Queries all available icons for a specific context. - * @param group_or_size The icon preferred group or size. If available + * + * \a group_or_size The icon preferred group or size. If available * at this group or size, those icons will be returned, in other case, * icons of undefined size will be returned. Positive numbers are groups, * negative numbers are negated sizes. See KIconLoader::Group and * KIconLoader::StdSizes - * @param context The icon context. - * @return A QStringList containing the icon names + * + * \a context The icon context. + * + * Returns A QStringList containing the icon names * available for that context */ QStringList queryIconsByContext(int group_or_size, KIconLoader::Context context = KIconLoader::Any) const; - /** - * @internal + /*! + * \internal */ bool hasContext(KIconLoader::Context context) const; - /** + /*! * Returns a list of all icons (*.png or *.xpm extension) in the * given directory. - * @param iconsDir the directory to search in - * @return A QStringList containing the icon paths + * + * \a iconsDir the directory to search in + * Returns A QStringList containing the icon paths */ QStringList queryIconsByDir(const QString &iconsDir) const; - /** + /*! * Returns all the search paths for this icon loader, either absolute or * relative to GenericDataLocation. + * * Mostly internal (for KIconDialog). * \since 5.0 */ QStringList searchPaths() const; - /** + /*! * Returns the size of the specified icon group. + * * Using e.g. KIconLoader::SmallIcon will return 16. - * @param group the group to check. - * @return the current size for an icon group. + * + * \a group the group to check. + * + * Returns the current size for an icon group. */ int currentSize(KIconLoader::Group group) const; - /** - * Returns a pointer to the current theme. Can be used to query + /*! + * Returns a pointer to the current theme. + * Can be used to query * available and default sizes for groups. - * @note The KIconTheme will change if reconfigure() is called and + * + * \note The KIconTheme will change if reconfigure() is called and * therefore it's not recommended to store the pointer anywhere. - * @return a pointer to the current theme. 0 if no theme set. + * + * Returns a pointer to the current theme. 0 if no theme set. */ KIconTheme *theme() const; #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Returns a pointer to the KIconEffect object used by the icon loader. - * @return the KIconEffect. + * Returns the KIconEffect. * - * @deprecated since 6.5, use the static KIconEffect API + * \deprecated [6.5] use the static KIconEffect API */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use static KIconEffect API") KIconEffect *iconEffect() const; #endif - /** + /*! * Reconfigure the icon loader, for instance to change the associated app name or extra search paths. + * * This also clears the in-memory pixmap cache (even if the appname didn't change, which is useful for unittests) - * @param appname the application name (empty for the global iconloader) - * @param extraSearchPaths additional search paths, either absolute or relative to GenericDataLocation + * + * \a appname the application name (empty for the global iconloader) + * + * \a extraSearchPaths additional search paths, either absolute or relative to GenericDataLocation */ void reconfigure(const QString &appname, const QStringList &extraSearchPaths = QStringList()); - /** + /*! * Returns the unknown icon. An icon that is used when no other icon * can be found. - * @return the unknown pixmap */ static QPixmap unknown(); #if KICONTHEMES_ENABLE_DEPRECATED_SINCE(6, 5) - /** + /*! * Draws overlays on the specified pixmap, it takes the width and height * of the pixmap into consideration - * @param overlays List of up to 4 overlays to blend over the pixmap. The first overlay + * + * \a overlays List of up to 4 overlays to blend over the pixmap. The first overlay * will be in the bottom right corner, followed by bottom left, top left * and top right. An empty QString can be used to leave the specific position * blank. - * @param pixmap to draw on - * @since 4.7 - * @deprecated since 6.5, use KIconUtils::addOverlays from KGuiAddons + * + * \a pixmap to draw on + * \since 4.7 + * \deprecated [6.5] + * Use KIconUtils::addOverlays from KGuiAddons */ KICONTHEMES_DEPRECATED_VERSION(6, 5, "Use KIconUtils::addOverlays from KGuiAddons") void drawOverlays(const QStringList &overlays, QPixmap &pixmap, KIconLoader::Group group, int state = KIconLoader::DefaultState) const; #endif + /*! + * + */ bool hasIcon(const QString &iconName) const; - /** + /*! * Sets the colors for this KIconLoader. - * NOTE: if you set a custom palette, if you are using some colors from + * + * \note if you set a custom palette, if you are using some colors from * application's palette, you need to track the application palette changes by yourself. + * * If you no longer wish to use a custom palette, use resetPalette() - * @see resetPalette - * @since 5.39 + * \sa resetPalette() + * \since 5.39 */ void setCustomPalette(const QPalette &palette); - /** + /*! * The colors that will be used for the svg stylesheet in case the * loaded icons are svg-based, icons can be colored in different ways in * different areas of the application - * @return the palette, if any, an invalid one if the user didn't set it - * @since 5.39 + * + * Returns the palette, if any, an invalid one if the user didn't set it + * \since 5.39 */ QPalette customPalette() const; - /** + /*! * Resets the custom palette used by the KIconLoader to use the * QGuiApplication::palette() again (and to follow it in case the * application's palette changes) - * @since 5.39 + * \since 5.39 */ void resetPalette(); - /** - * @returns whether we have set a custom palette using @f setCustomPalette + /*! + * Returns whether we have set a custom palette using setCustomPalette * - * @since 5.85 - * @see resetPalette, setCustomPalette + * \since 5.85 + * \sa resetPalette, setCustomPalette */ bool hasCustomPalette() const; public Q_SLOTS: - // TODO: while marked as deprecated, newIconLoader() is still used: + // TODO KF7: while marked as deprecated, newIconLoader() is still used: // internally by KIconLoadeer as well as by Plasma's Icons kcm module (state: 5.17) // this needs some further cleanup work before removing it from the API with KICONTHEMES_ENABLE_DEPRECATED_SINCE - /** + /*! * Re-initialize the global icon loader * - * @todo Check deprecation, still used internally. - * @deprecated Since 5.0, use emitChange(Group) + * \deprecated[5.0] + * Use emitChange(Group) */ - KICONTHEMES_DEPRECATED_VERSION(5, 0, "Use KIconLoader::emitChange(Group)") // TODO KF6 remove + KICONTHEMES_DEPRECATED_VERSION(5, 0, "Use KIconLoader::emitChange(Group)") void newIconLoader(); - /** + /*! * Emits an iconChanged() signal on all the KIconLoader instances in the system * indicating that a system's icon group has changed in some way. It will also trigger * a reload in all of them to update to the new theme. * - * @p group indicates the group that has changed + * \a group indicates the group that has changed * - * @since 5.0 + * \since 5.0 */ static void emitChange(Group group); Q_SIGNALS: - /** + /*! * Emitted by newIconLoader once the new settings have been loaded */ void iconLoaderSettingsChanged(); - /** + /*! * Emitted when the system icon theme changes * - * @since 5.0 + * \since 5.0 */ void iconChanged(int group); private: friend class KIconLoaderPrivate; - // @internal the data object std::unique_ptr const d; Q_PRIVATE_SLOT(d, void _k_refreshIcons(int group)) }; +/*! + * \namespace KDE + * \inmodule KIconThemes + */ namespace KDE { -/** +/*! * \relates KIconLoader * Returns a QIcon with an appropriate * KIconEngine to perform loading and rendering. KIcons thus adhere to * KDE style and effect standards. - * @since 5.0 + * \since 5.0 */ KICONTHEMES_EXPORT QIcon icon(const QString &iconName, KIconLoader *iconLoader = nullptr); + +/*! + * \relates KIconLoader + * Returns a QIcon with an appropriate + * KIconEngine to perform loading and rendering. KIcons thus adhere to + * KDE style and effect standards. + * \since 5.0 + */ KICONTHEMES_EXPORT QIcon icon(const QString &iconName, const KIconColors &colors, KIconLoader *iconLoader = nullptr); -/** +/*! * \relates KIconLoader * Returns a QIcon for the given icon, with additional overlays. - * @since 5.0 + * \since 5.0 */ KICONTHEMES_EXPORT QIcon icon(const QString &iconName, const QStringList &overlays, KIconLoader *iconLoader = nullptr); diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader_p.h b/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader_p.h index 44aa0c81cc..b9dc924dcc 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader_p.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kiconloader_p.h @@ -22,13 +22,13 @@ class KIconThemeNode; -/*** KIconGroup: Icon type description. ***/ +/* KIconGroup: Icon type description. */ struct KIconGroup { int size; }; -/** +/* * Holds a QPixmap for this process, along with its associated path on disk. */ struct PixmapWithPath { @@ -36,7 +36,6 @@ struct PixmapWithPath { QString path; }; -/*** d pointer for KIconLoader. ***/ class KIconLoaderPrivate { public: @@ -47,95 +46,73 @@ public: void clear(); - /** - * @internal - */ void init(const QString &_appname, const QStringList &extraSearchPaths = QStringList()); - /** - * @internal - */ void initIconThemes(); - /** - * @internal + /* * tries to find an icon with the name. It tries some extension and * match strategies */ QString findMatchingIcon(const QString &name, int size, qreal scale) const; - /** - * @internal + /* * tries to find an icon with the name. * This is one layer above findMatchingIcon -- it also implements generic fallbacks * such as generic icons for mimetypes. */ QString findMatchingIconWithGenericFallbacks(const QString &name, int size, qreal scale) const; - /** - * @internal + /* * returns the preferred icon path for an icon with the name. * Can be used for a quick "hasIcon" check since it caches * that an icon was not found. */ QString preferredIconPath(const QString &name); - /** - * @internal + /* * Adds themes installed in the application's directory. **/ void addAppThemes(const QString &appname, const QString &themeBaseDir = QString()); - /** - * @internal + /* * Adds all themes that are part of this node and the themes * below (the fallbacks of the theme) into the tree. */ void addBaseThemes(KIconThemeNode *node, const QString &appname); - /** - * @internal + /* * Recursively adds all themes that are specified in the "Inherits" * property of the given theme into the tree. */ void addInheritedThemes(KIconThemeNode *node, const QString &appname); - /** - * @internal + /* * Creates a KIconThemeNode out of a theme name, and adds this theme * as well as all its inherited themes into the tree. Themes that already * exist in the tree will be ignored and not added twice. */ void addThemeByName(const QString &themename, const QString &appname); - /** + /* * Adds all the default themes from other desktops at the end of * the list of icon themes. */ void addExtraDesktopThemes(); - /** - * @internal + /* * return the path for the unknown icon in that size */ QString unknownIconPath(int size, qreal scale) const; - /** - * Checks if name ends in one of the supported icon formats (i.e. .png) - * and returns the name without the extension if it does. - */ - QString removeIconExtension(const QString &name) const; - - /** - * @internal + /* * Used with KIconLoader::loadIcon to convert the given name, size, group, * and icon state information to valid states. All parameters except the * name can be modified as well to be valid. */ void normalizeIconMetadata(KIconLoader::Group &group, QSize &size, int &state) const; - /** - * @internal + /* * Used with KIconLoader::loadIcon to get a base key name from the given * icon metadata. Ensure the metadata is normalized first. */ @@ -147,43 +124,38 @@ public: int state, const KIconColors &colors) const; - /** - * @internal + /* * If the icon is an SVG file, process it generating a stylesheet * following the current color scheme. in this case the icon can use named colors * as text color, background color, highlight color, positive/neutral/negative color - * @see KColorScheme + * \sa KColorScheme */ QByteArray processSvg(const QString &path, KIconLoader::States state, const KIconColors &colors) const; - /** - * @internal - * Creates the QImage for @p path, using SVG rendering as appropriate. - * @p size is only used for scalable images, but if non-zero non-scalable + /* + * Creates the QImage for \apath, using SVG rendering as appropriate. + * \a size is only used for scalable images, but if non-zero non-scalable * images will be resized anyways. */ QImage createIconImage(const QString &path, const QSize &size, qreal scale, KIconLoader::States state, const KIconColors &colors); - /** - * @internal + /* * Adds an QPixmap with its associated path to the shared icon cache. */ void insertCachedPixmapWithPath(const QString &key, const QPixmap &data, const QString &path); - /** - * @internal + /* * Retrieves the path and pixmap of the given key from the shared * icon cache. */ bool findCachedPixmapWithPath(const QString &key, QPixmap &data, QString &path); - /** + /* * Find the given file in the search paths. */ QString locate(const QString &fileName); - /** - * @internal + /* * React to a global icon theme change */ void _k_refreshIcons(int group); @@ -193,7 +165,7 @@ public: KIconLoader *const q; QStringList mThemesInTree; - KIconGroup *mpGroups = nullptr; + std::vector mpGroups; KIconThemeNode *mpThemeRoot = nullptr; QStringList searchPaths; #if KICONTHEMES_BUILD_DEPRECATED_SINCE(6, 5) diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.cpp index c28b2f2cef..31ed28fdcb 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.cpp @@ -104,15 +104,10 @@ static void initThemeHelper() // if not set, use Breeze const QString themeToUse = KConfigGroup(config, "Icons").readEntry("Theme", QStringLiteral("breeze")); -#if QT_VERSION < QT_VERSION_CHECK(6, 8, 0) - // set our theme, Qt internally will still not fully use our engine and lookup - QIcon::setThemeName(themeToUse); -#else // use Qt API to really fully override the engine, if we set KIconEngine the Key in our plugin will // enforce that our engine is used // https://codereview.qt-project.org/c/qt/qtbase/+/563241 QIcon::setThemeName(QStringLiteral("KIconEngine")); -#endif // Tell KIconTheme about the theme, in case KIconLoader is used directly *_themeOverride() = themeToUse; @@ -140,7 +135,7 @@ void KIconTheme::initTheme() } } - // initThemeHelper will do the remaining work via Q_COREAPP_STARTUP_FUNCTION(initThemeHelper) above + // initThemeHelper will do the remaining work via Q_COREAPP_STARTUP_FUNCTION(initThemeHelper) initThemeUsed = true; } @@ -185,7 +180,7 @@ public: Q_GLOBAL_STATIC(QString, _theme) Q_GLOBAL_STATIC(QStringList, _theme_list) -/** +/* * A subdirectory in an icon theme. */ class KIconThemeDir @@ -342,6 +337,11 @@ QString KIconThemePrivate::iconPath(const QList &dirs, const QS KIconTheme::KIconTheme(const QString &name, const QString &appName, const QString &basePathHint) : d(new KIconThemePrivate) { + if (name.isEmpty()) { + qCWarning(KICONTHEMES) << "KIconTheme created with empty theme name"; + return; + } + d->mInternalName = name; QStringList themeDirs; @@ -373,9 +373,6 @@ KIconTheme::KIconTheme(const QString &name, const QString &appName, const QStrin // Find the theme description file. These are either locally in the :/icons resource path or global. QStringList icnlibs; - // local embedded icons have preference - icnlibs << QStringLiteral(":/icons"); - #ifdef Q_OS_ANDROID // Android icon theme installed by Kirigami icnlibs << QStringLiteral("assets:/qml/org/kde/kirigami"); @@ -387,6 +384,9 @@ KIconTheme::KIconTheme(const QString &name, const QString &appName, const QStrin // These are not in the icon spec, but e.g. GNOME puts some icons there anyway. icnlibs += QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("pixmaps"), QStandardPaths::LocateDirectory); + // local embedded icons + icnlibs << QStringLiteral(":/icons"); + QString fileName; QString mainSection; const QString pathSuffix = QLatin1Char('/') + name + QLatin1Char('/'); @@ -415,7 +415,7 @@ KIconTheme::KIconTheme(const QString &name, const QString &appName, const QStrin } if (d->mDir.isEmpty()) { - qCDebug(KICONTHEMES) << "Icon theme" << name << "not found."; + qCWarning(KICONTHEMES) << "Icon theme" << name << "not found."; return; } @@ -440,6 +440,7 @@ KIconTheme::KIconTheme(const QString &name, const QString &appName, const QStrin d->followsColorScheme = cfg.readEntry("FollowsColorScheme", false); d->example = cfg.readPathEntry("Example", QString()); d->screenshot = cfg.readPathEntry("ScreenShot", QString()); + // Prefer png due to svg support being incomplete — QTBUG-115223 d->mExtensions = cfg.readEntry("KDE-Extensions", QStringList{QStringLiteral(".png"), QStringLiteral(".svgz"), QStringLiteral(".svg"), QStringLiteral(".xpm")}); @@ -551,6 +552,16 @@ static bool isAnyOrDirContext(const KIconThemeDir *dir, KIconLoader::Context con return context == KIconLoader::Any || context == dir->context(); } +QStringList KIconTheme::queryIcons() const +{ + QStringList result; + const auto listDirs = d->mDirs + d->mScaledDirs; + for (const auto &dir : listDirs) { + result.append(dir->iconList()); + } + return result; +} + QStringList KIconTheme::queryIcons(int size, KIconLoader::Context context) const { // Try to find exact match @@ -699,15 +710,15 @@ QStringList KIconTheme::list() // Find the theme description file. These are either locally in the :/icons resource path or global. QStringList icnlibs; - // local embedded icons have preference - icnlibs << QStringLiteral(":/icons"); - // global icons icnlibs += QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("icons"), QStandardPaths::LocateDirectory); // These are not in the icon spec, but e.g. GNOME puts some icons there anyway. icnlibs += QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("pixmaps"), QStandardPaths::LocateDirectory); + // local embedded icons + icnlibs << QStringLiteral(":/icons"); + for (const QString &iconDir : std::as_const(icnlibs)) { QDir dir(iconDir); const QStringList themeDirs = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot); @@ -747,8 +758,6 @@ QString KIconTheme::defaultThemeName() return QStringLiteral("hicolor"); } -/*** KIconThemeDir ***/ - KIconThemeDir::KIconThemeDir(const QString &basedir, const QString &themedir, const KConfigGroup &config) : mSize(config.readEntry("Size", 0)) , mScale(config.readEntry("Scale", 1)) diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.h b/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.h index 1fd50bfd8e..62597e72ef 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kicontheme.h @@ -22,23 +22,30 @@ class QAction; -/** - * @internal - * Class to use/access icon themes in KDE. This class is used by the +/*! + * \class KIconTheme + * \inmodule KIconThemes + * + * \brief Class to use/access icon themes in KDE. + * + * This class is used by the * iconloader but can be used by others too. - * @warning You should not use this class externally. This class is exported because + * \warning You should not use this class externally. This class is exported because * the KCM needs it. - * @see KIconLoader + * \sa KIconLoader */ class KICONTHEMES_EXPORT KIconTheme { public: - /** + /*! * Load an icon theme by name. - * @param name the name of the theme (e.g. "hicolor" or "keramik") - * @param appName the name of the application. Can be null. This argument + * + * \a name the name of the theme (e.g. "hicolor" or "keramik") + * + * \a appName the name of the application. Can be null. This argument * allows applications to have themed application icons. - * @param basePathHint optional hint where to search the app themes. + * + * \a basePathHint optional hint where to search the app themes. * This is appended at the end of the search paths */ explicit KIconTheme(const QString &name, const QString &appName = QString(), const QString &basePathHint = QString()); @@ -47,215 +54,262 @@ public: KIconTheme(const KIconTheme &) = delete; KIconTheme &operator=(const KIconTheme &) = delete; - /** + /*! * The stylized name of the icon theme. - * @return the (human-readable) name of the theme + * + * Returns the (human-readable) name of the theme */ QString name() const; - /** + /*! * The internal name of the icon theme (same as the name argument passed * to the constructor). - * @return the internal name of the theme + * + * Returns the internal name of the theme */ QString internalName() const; - /** + /*! * A description for the icon theme. - * @return a human-readable description of the theme, QString() + * + * Returns a human-readable description of the theme, QString() * if there is none */ QString description() const; - /** + /*! * Return the name of the "example" icon. This can be used to * present the theme to the user. - * @return the name of the example icon, QString() if there is none + * + * Returns the name of the example icon, QString() if there is none */ QString example() const; - /** - * Return the name of the screenshot. - * @return the name of the screenshot, QString() if there is none + /*! + * Returns the name of the screenshot, QString() if there is none */ QString screenshot() const; - /** + /*! * Returns the toplevel theme directory. - * @return the directory of the theme */ QString dir() const; - /** + /*! * The themes this icon theme falls back on. - * @return a list of icon themes that are used as fall-backs + * + * Returns a list of icon themes that are used as fall-backs */ QStringList inherits() const; - /** + /*! * The icon theme exists? - * @return true if the icon theme is valid + * + * Returns true if the icon theme is valid */ bool isValid() const; - /** + /*! * The icon theme should be hidden to the user? - * @return true if the icon theme is hidden + * + * Returns true if the icon theme is hidden */ bool isHidden() const; - /** + /*! * The minimum display depth required for this theme. This can either * be 8 or 32. - * @return the minimum bpp (8 or 32) + * + * Returns the minimum bpp (8 or 32) */ int depth() const; - /** + /*! * The default size of this theme for a certain icon group. - * @param group The icon group. See KIconLoader::Group. - * @return The default size in pixels for the given icon group. + * + * \a group The icon group. See KIconLoader::Group. + * + * Returns The default size in pixels for the given icon group. */ int defaultSize(KIconLoader::Group group) const; - /** + /*! * Query available sizes for a group. - * @param group The icon group. See KIconLoader::Group. - * @return a list of available sizes for the given group + * + * \a group The icon group. See KIconLoader::Group. + * + * Returns a list of available sizes for the given group */ QList querySizes(KIconLoader::Group group) const; - /** + /*! + * Query all available icons. + * + * Returns the list of icon names + * + * \since 6.11 + */ + [[nodiscard]] QStringList queryIcons() const; + + /*! * Query available icons for a size and context. - * @param size the size of the icons - * @param context the context of the icons - * @return the list of icon names + * + * \a size the size of the icons + * + * \a context the context of the icons + * + * Returns the list of icon names */ QStringList queryIcons(int size, KIconLoader::Context context = KIconLoader::Any) const; - /** + /*! * Query available icons for a context and preferred size. - * @param size the size of the icons - * @param context the context of the icons - * @return the list of icon names + * + * \a size the size of the icons + * + * \a context the context of the icons + * + * Returns the list of icon names */ QStringList queryIconsByContext(int size, KIconLoader::Context context = KIconLoader::Any) const; - /** + /*! * Lookup an icon in the theme. - * @param name The name of the icon, with extension. - * @param size The desired size of the icon. - * @param match The matching mode. KIconLoader::MatchExact returns an icon + * + * \a name The name of the icon, with extension. + * + * \a size The desired size of the icon. + * + * \a match The matching mode. KIconLoader::MatchExact returns an icon * only if matches exactly. KIconLoader::MatchBest returns the best matching * icon. - * @return An absolute path to the file of the icon if it's found, QString() otherwise. - * @see KIconLoader::isValid will return true, and false otherwise. + * + * Returns An absolute path to the file of the icon if it's found, QString() otherwise. + * + * KIconLoader::isValid will return true, and false otherwise. */ QString iconPath(const QString &name, int size, KIconLoader::MatchType match) const; - /** + // TODO KF6 merge iconPath() with and without "scale" and move that argument after "size" + /*! * Lookup an icon in the theme. - * @param name The name of the icon, with extension. - * @param size The desired size of the icon. - * @param match The matching mode. KIconLoader::MatchExact returns an icon + * + * \a name The name of the icon, with extension. + * + * \a size The desired size of the icon. + * + * \a match The matching mode. KIconLoader::MatchExact returns an icon * only if matches exactly. KIconLoader::MatchBest returns the best matching * icon. - * @param scale The scale of the icon group. - * @return An absolute path to the file of the icon if it's found, QString() otherwise. - * @see KIconLoader::isValid will return true, and false otherwise. - * @since 5.48 + * + * \a scale The scale of the icon group. + * + * Returns An absolute path to the file of the icon if it's found, QString() otherwise. + * + * KIconLoader::isValid will return true, and false otherwise. + * \since 5.48 */ - // TODO KF6 merge iconPath() with and without "scale" and move that argument after "size" QString iconPath(const QString &name, int size, KIconLoader::MatchType match, qreal scale) const; - /** + /*! * Lookup an icon in the theme. - * @param name The name of the icon, without extension. - * @param size The desired size of the icon. - * @param match The matching mode. KIconLoader::MatchExact returns an icon + * + * \a name The name of the icon, without extension. + * + * \a size The desired size of the icon. + * + * \a match The matching mode. KIconLoader::MatchExact returns an icon * only if matches exactly. KIconLoader::MatchBest returns the best matching * icon. - * @return An absolute path to the file of the icon if it's found, QString() otherwise. - * @see KIconLoader::isValid will return true, and false otherwise. * - * @since 5.22 + * Returns An absolute path to the file of the icon if it's found, QString() otherwise. + * + * KIconLoader::isValid will return true, and false otherwise. + * + * \since 5.22 */ QString iconPathByName(const QString &name, int size, KIconLoader::MatchType match) const; - /** + // TODO KF6 merge iconPathByName() with and without "scale" and move that argument after "size" + /*! * Lookup an icon in the theme. - * @param name The name of the icon, without extension. - * @param size The desired size of the icon. - * @param match The matching mode. KIconLoader::MatchExact returns an icon + * + * \a name The name of the icon, without extension. + * + * \a size The desired size of the icon. + * + * \a match The matching mode. KIconLoader::MatchExact returns an icon * only if matches exactly. KIconLoader::MatchBest returns the best matching * icon. - * @param scale The scale of the icon group. - * @return An absolute path to the file of the icon if it's found, QString() otherwise. - * @see KIconLoader::isValid will return true, and false otherwise. * - * @since 5.48 + * \a scale The scale of the icon group. + * + * Returns An absolute path to the file of the icon if it's found, QString() otherwise. + * + * KIconLoader::isValid will return true, and false otherwise. + * + * \since 5.48 */ - // TODO KF6 merge iconPathByName() with and without "scale" and move that argument after "size" QString iconPathByName(const QString &name, int size, KIconLoader::MatchType match, qreal scale) const; - /** + /*! * Returns true if the theme has any icons for the given context. */ bool hasContext(KIconLoader::Context context) const; - /** + /*! * If true, this theme is made of SVG icons that will be colorized following the system * color scheme. This is necessary for monochrome themes that should look visible on both * light and dark color schemes. - * @return true if the SVG will be colorized with a stylesheet. - * @since 5.22 + * + * Returns true if the SVG will be colorized with a stylesheet. + * \since 5.22 */ bool followsColorScheme() const; - /** + /*! * List all icon themes installed on the system, global and local. - * @return the list of all icon themes + * + * Returns the list of all icon themes */ static QStringList list(); - /** + /*! * Returns the current icon theme. - * @return the name of the current theme */ static QString current(); - /** + /*! * Force a current theme and disable automatic resolution of the current * theme in favor of the forced theme. * * To reset a forced theme, simply set an empty themeName. * - * @param themeName name of the theme to force as current theme, or an + * \a themeName name of the theme to force as current theme, or an * empty string to unset theme forcing. * - * @note This should only be used when a very precise expectation about + * \note This should only be used when a very precise expectation about * the current theme is present. Most notably in unit tests * this can be used to force a given theme. * - * @warning A forced theme persists across reconfigure() calls! + * \warning A forced theme persists across reconfigure() calls! * - * @see current - * @since 5.23 + * \sa current + * \since 5.23 */ static void forceThemeForTests(const QString &themeName); - /** + /*! * Reconfigure the theme. */ static void reconfigure(); - /** - * Returns the default icon theme. - * @return the name of the default theme name + /*! + * Returns the name of the default theme name */ static QString defaultThemeName(); - /** + /*! * Enforces the Breeze icon theme (including our KIconEngine for re-coloring). * * If the user has configured a different icon set, that one will be taken. @@ -271,7 +325,7 @@ public: * Does setup the needed KColorSchemeManager to follow the system color mode starting * with version 6.6. * - * @since 6.3 + * \since 6.3 */ static void initTheme(); diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/kquickiconprovider.h b/local/recipes/kde/kf6-kiconthemes/source/src/kquickiconprovider.h index 2a5fdd9d44..26ff01c7a7 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/kquickiconprovider.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/kquickiconprovider.h @@ -14,15 +14,20 @@ #include #include -/** - * Class which exposes the KIcon* functioality to QML. +/*! + * \class KQuickIconProvider + * \inmodule KIconThemes + * + * \brief Class which exposes the KIcon* functioality to QML. + * * For dependency reasons, this is a header-only class. * * This needs to be registered in the engine using the following code: - * @code + * \code * engine->addImageProvider(QStringLiteral("icon"), new KQuickIconProvider); - * @endcode - * @since 5.98 + * \endcode + * + * \since 5.98 */ class KQuickIconProvider : public QQuickImageProvider { diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog.cpp index 8e7851b860..140c08eaac 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog.cpp @@ -28,6 +28,8 @@ IconDialog::IconDialog(QObject *parent) Q_EMIT iconNameChanged(newIconName); } }); + connect(m_dialog.data(), &KIconDialog::accepted, this, &IconDialog::accepted); + connect(m_dialog.data(), &KIconDialog::rejected, this, &IconDialog::rejected); m_dialog->installEventFilter(this); } @@ -145,6 +147,10 @@ void IconDialog::open() m_dialog->setModal(true); } + // This avoids leftover values from previous selection + // by the same dialog. + m_iconName = QString(); + m_dialog->setWindowModality(m_modality); m_dialog->setup(KIconLoader::Desktop, KIconLoader::Application, false, m_iconSize, m_user); diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog_p.h b/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog_p.h index 49b86134ba..042f358818 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog_p.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/qml/icondialog_p.h @@ -13,36 +13,47 @@ class KIconDialog; +/*! + * \qmltype IconDialog + * \inqmlmodule org.kde.iconthemes + */ class IconDialog : public QObject { Q_OBJECT QML_ELEMENT - /** + /*! + * \qmlproperty string IconDialog::iconName * The name or path of the icon the user has selected */ Q_PROPERTY(QString iconName READ iconName NOTIFY iconNameChanged) - /** + /*! + * \qmlproperty int IconDialog::iconSize * The desired size of icons */ Q_PROPERTY(int iconSize READ iconSize WRITE setIconSize NOTIFY iconSizeChanged) - /** + /*! + * \qmlproperty string IconDialog::title * The title to use for the dialog */ Q_PROPERTY(QString title READ title WRITE setTitle NOTIFY titleChanged) - /** + /*! + * \qmlproperty bool IconDialog::user * Begin with the "user icons" instead of "system icons" */ Q_PROPERTY(bool user READ user WRITE setUser NOTIFY userChanged) - /** + /*! + * \qmlproperty string IconDialog::customLocation * Use a custom location, only local directory paths are allowed */ Q_PROPERTY(QString customLocation READ customLocation WRITE setCustomLocation NOTIFY customLocationChanged) - /** + /*! + * \qmlproperty enumeration IconDialog::modality * Window modality, default is Qt.NonModal */ Q_PROPERTY(Qt::WindowModality modality READ modality WRITE setModality NOTIFY modalityChanged) - /** + /*! + * \qmlproperty string IconDialog::visible * Whether the dialog is currently visible, setting this property to true * is the same as calling show() */ @@ -72,7 +83,14 @@ public: bool visible() const; void setVisible(bool visible); + /*! + * \qmlmethod void IconDialog::open + */ Q_INVOKABLE void open(); + + /*! + * \qmlmethod void IconDialog::close + */ Q_INVOKABLE void close(); Q_SIGNALS: @@ -83,6 +101,8 @@ Q_SIGNALS: void customLocationChanged(const QString &customLocation); void modalityChanged(Qt::WindowModality modality); void visibleChanged(); + void accepted(); + void rejected(); private: bool eventFilter(QObject *watched, QEvent *event) override; diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/tools/ksvg2icns/ksvg2icns.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/tools/ksvg2icns/ksvg2icns.cpp index ddd9042295..49381f42e5 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/tools/ksvg2icns/ksvg2icns.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/tools/ksvg2icns/ksvg2icns.cpp @@ -131,6 +131,7 @@ int main(int argc, char *argv[]) << "icns" << "-o" << outIcns << outPath; +#if !defined(Q_OS_IOS) QProcess iconUtil; iconUtil.start(iconutilExec, utilArgs, QIODevice::ReadOnly); @@ -139,6 +140,7 @@ int main(int argc, char *argv[]) EXIT_ON_ERROR(iconUtil.exitStatus() == QProcess::NormalExit, "iconutil crashed!\n"); EXIT_ON_ERROR(iconUtil.exitCode() == 0, "iconutil returned %d\n", iconUtil.exitCode()); +#endif return 0; } diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/CMakeLists.txt b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/CMakeLists.txt index a9d52fdbaf..55fc0ecdc0 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/CMakeLists.txt +++ b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/CMakeLists.txt @@ -38,7 +38,6 @@ target_link_libraries(KF6IconWidgets Qt6::Widgets KF6::IconThemes PRIVATE - Qt6::GuiPrivate Qt6::Svg KF6::I18n # for i18n in KIconDialog KF6::ConfigGui # for KStandardActions @@ -54,6 +53,8 @@ ecm_generate_headers(KIconWidgets_HEADERS REQUIRED_HEADERS KIconWidgets_HEADERS ) +ecm_generate_qdoc(KF6IconWidgets kiconwidgets.qdocconf) + install(TARGETS KF6IconWidgets EXPORT KF6IconThemesTargets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES @@ -65,33 +66,3 @@ install(FILES if(BUILD_DESIGNERPLUGIN) add_subdirectory(designer) endif() - -if(BUILD_QCH) - ecm_add_qch( - KF6IconWidgets_QCH - NAME KIconWidgets - BASE_NAME KF6IconWidgets - VERSION ${KF_VERSION} - ORG_DOMAIN org.kde - SOURCES # using only public headers, to cover only public API - ${KIconWidgets_HEADERS} - MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md" - IMAGE_DIRS "${CMAKE_SOURCE_DIR}/docs/pics" - LINK_QCHS - Qt6Widgets_QCH - INCLUDE_DIRS - ${CMAKE_CURRENT_BINARY_DIR} - BLANK_MACROS - KICONWIDGETS_EXPORT - KICONWIDGETS_DEPRECATED - KICONWIDGETS_DEPRECATED_EXPORT - "KICONWIDGETS_DEPRECATED_VERSION(x, y, t)" - "KICONWIDGETS_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)" - "KICONWIDGETS_ENUMERATOR_DEPRECATED_VERSION(x, y, t)" - "KICONWIDGETS_ENUMERATOR_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)" - TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - COMPONENT Devel - ) -endif() - diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.cpp index cb4474b7bb..5ad88ae0e7 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.cpp @@ -11,9 +11,13 @@ #include "kiconbutton.h" +#include #include +#include +#include #include +#include #include "kicondialog.h" @@ -42,6 +46,8 @@ public: QString mIcon; KIconDialog *mpDialog; KIconLoader *mpLoader; + + QStyle::ControlElement ce_iconButton = QStyle::ControlElement(0); }; /* @@ -72,6 +78,8 @@ KIconButtonPrivate::KIconButtonPrivate(KIconButton *qq, KIconLoader *loader) _k_slotChangeIcon(); }); + ce_iconButton = KStyleExtensions::customControlElement(QStringLiteral("CE_IconButton"), q); + q->setToolTip(i18nc("@info:tooltip", "Select Icon…")); } @@ -162,6 +170,29 @@ const QString &KIconButton::icon() const return d->mIcon; } +void KIconButton::paintEvent(QPaintEvent *event) +{ + if (d->ce_iconButton) { + QStylePainter painter(this); + + QStyleOptionButton opt; + initStyleOption(&opt); + + painter.drawControl(d->ce_iconButton, opt); + return; + } + + return QPushButton::paintEvent(event); +} + +void KIconButton::changeEvent(QEvent *event) +{ + QWidget::changeEvent(event); + if (event->type() == QEvent::StyleChange) { + d->ce_iconButton = KStyleExtensions::customControlElement(QStringLiteral("CE_IconButton"), this); + } +} + void KIconButtonPrivate::_k_slotChangeIcon() { dialog()->setup(mGroup, mContext, m_bStrictIconSize, iconSize, mbUser); diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.h b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.h index 6bf38e40bc..6e6cc5b706 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kiconbutton.h @@ -19,97 +19,116 @@ #include -/** - * @class KIconButton kiconbutton.h KIconButton +/*! + * \class KIconButton + * \inmodule KIconWidgets * - * A pushbutton for choosing an icon. Pressing on the button will open a + * \brief A pushbutton for choosing an icon. + * + * Pressing on the button will open a * KIconDialog for the user to select an icon. The current icon will be * displayed on the button. * - * @see KIconDialog - * @short A push button that allows selection of an icon. + * \sa KIconDialog */ class KICONWIDGETS_EXPORT KIconButton : public QPushButton { Q_OBJECT + + /*! + * \property KIconButton::icon + */ Q_PROPERTY(QString icon READ icon WRITE setIcon RESET resetIcon NOTIFY iconChanged USER true) + + /*! + * \property KIconButton::iconSize + */ Q_PROPERTY(int iconSize READ iconSize WRITE setIconSize) + + /*! + * \property KIconButton::strictIconSize + */ Q_PROPERTY(bool strictIconSize READ strictIconSize WRITE setStrictIconSize) public: - /** + /*! * Constructs a KIconButton using the global icon loader. * - * @param parent The parent widget. + * \a parent The parent widget. */ explicit KIconButton(QWidget *parent = nullptr); - /** - * Destructs the button. - */ ~KIconButton() override; - /** + /*! * Sets a strict icon size policy for allowed icons. When true, * only icons of the specified group's size in setIconType() are allowed, * and only icons of that size will be shown in the icon dialog. */ void setStrictIconSize(bool b); - /** + + /*! * Returns true if a strict icon size policy is set. */ bool strictIconSize() const; - /** + /*! * Sets the icon group and context. Use KIconLoader::NoGroup if you want to * allow icons for any group in the given context. */ void setIconType(KIconLoader::Group group, KIconLoader::Context context, bool user = false); - /** + /*! * Sets the button's initial icon. */ void setIcon(const QString &icon); + /*! + * Sets the button's initial icon. + */ void setIcon(const QIcon &icon); - /** + /*! * Resets the icon (reverts to an empty button). */ void resetIcon(); - /** + /*! * Returns the name of the selected icon. */ const QString &icon() const; - /** + /*! * Sets the size of the icon to be shown / selected. - * @see KIconLoader::StdSizes - * @see iconSize + * \sa KIconLoader::StdSizes + * \sa iconSize */ void setIconSize(int size); - /** + /*! * Returns the icon size set via setIconSize() or 0, if the default * icon size will be used. */ int iconSize() const; - /** + /*! * Sets the size of the icon to be shown on the button. - * @see KIconLoader::StdSizes - * @see buttonIconSize - * @since 4.1 + * \sa KIconLoader::StdSizes + * \sa buttonIconSize + * \since 4.1 */ void setButtonIconSize(int size); - /** + /*! * Returns the button's icon size. - * @since 4.1 + * \since 4.1 */ int buttonIconSize() const; + void paintEvent(QPaintEvent *event) override; + + void changeEvent(QEvent *event) override; + Q_SIGNALS: - /** + /*! * Emitted when the icon has changed. */ void iconChanged(const QString &icon); diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.cpp b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.cpp index d9cd1c9852..b654522f15 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.cpp +++ b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.cpp @@ -71,8 +71,15 @@ void KIconDialogSortFilterProxyModel::setSymbolicIcons(SymbolicIcons symbolicIco return; } +#if QT_VERSION >= QT_VERSION_CHECK(6, 10, 0) + beginFilterChange(); +#endif m_symbolicIcons = symbolicIcons; +#if QT_VERSION >= QT_VERSION_CHECK(6, 10, 0) + endFilterChange(QSortFilterProxyModel::Direction::Rows); +#else invalidateFilter(); +#endif } void KIconDialogSortFilterProxyModel::setHasSymbolicIcon(bool hasSymbolicIcon) @@ -81,8 +88,15 @@ void KIconDialogSortFilterProxyModel::setHasSymbolicIcon(bool hasSymbolicIcon) return; } +#if QT_VERSION >= QT_VERSION_CHECK(6, 10, 0) + beginFilterChange(); +#endif m_hasSymbolicIcon = hasSymbolicIcon; +#if QT_VERSION >= QT_VERSION_CHECK(6, 10, 0) + endFilterChange(QSortFilterProxyModel::Direction::Rows); +#else invalidateFilter(); +#endif } bool KIconDialogSortFilterProxyModel::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const @@ -216,7 +230,7 @@ void KIconDialogModel::loadPixmap(const QModelIndex &index) item.pixmap.setDevicePixelRatio(dpr); } -/** +/* * Qt allocates very little horizontal space for the icon name, * even if the gridSize width is large. This delegate allocates * the gridSize width (minus some padding) for the icon and icon name. @@ -408,10 +422,12 @@ void KIconDialogPrivate::init() ui.canvas->setModel(proxyModel); - QObject::connect(ui.canvas, &QAbstractItemView::activated, q, [this]() { + auto acceptSelected = [this]() { custom.clear(); q->slotOk(); - }); + }; + + QObject::connect(ui.canvas, &QAbstractItemView::activated, q, acceptSelected); // You can't just stack widgets on top of each other in Qt Designer auto *placeholderLayout = new QVBoxLayout(ui.canvas); @@ -443,7 +459,7 @@ void KIconDialogPrivate::init() browse(); }); - QObject::connect(ui.buttonBox, &QDialogButtonBox::accepted, q, &KIconDialog::slotOk); + QObject::connect(ui.buttonBox, &QDialogButtonBox::accepted, q, acceptSelected); QObject::connect(ui.buttonBox, &QDialogButtonBox::rejected, q, &QDialog::reject); q->adjustSize(); diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.h b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.h index 752c1f9a7b..ce8798885b 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kicondialog.h @@ -21,75 +21,76 @@ #include -/** - * @class KIconDialog kicondialog.h KIconDialog +/*! + * \class KIconDialog + * \inmodule KIconWidgets + * + * \brief An icon selection dialog. * * Dialog for interactive selection of icons. Use the function * getIcon() to let the user select an icon. - * - * @short An icon selection dialog. */ class KICONWIDGETS_EXPORT KIconDialog : public QDialog { Q_OBJECT public: - /** + /*! * Constructs an icon selection dialog using the global icon loader. * - * @param parent The parent widget. + * \a parent The parent widget. */ explicit KIconDialog(QWidget *parent = nullptr); - /** - * Destructs the dialog. - */ ~KIconDialog() override; - /** + /*! * Sets a strict icon size policy for allowed icons. * - * @param policy When true, only icons of the specified group's + * \a policy When true, only icons of the specified group's * size in getIcon() are shown. + * * When false, icons not available at the desired group's size will * also be selectable. */ void setStrictIconSize(bool policy); - /** + + /*! * Returns true if a strict icon size policy is set. */ bool strictIconSize() const; - /** + /*! * Sets the location of the custom icon directory. Only local directory * paths are allowed. */ void setCustomLocation(const QString &location); - /** + /*! * Sets the size of the icons to be shown / selected. - * @see KIconLoader::StdSizes - * @see iconSize + * \sa KIconLoader::StdSizes + * \sa iconSize */ void setIconSize(int size); - /** + /*! * Returns the icon size set via setIconSize() or 0, if the default * icon size will be used. */ int iconSize() const; - /** + /*! * Sets the icon that is initially selected in the dialog. * - * @note Changing this after the dialog has been shown has no effect. - * @note If the given icon cannot be found in the current context, + * \note Changing this after the dialog has been shown has no effect. + * \note If the given icon cannot be found in the current context, * no icon will be selected. - * @param iconName The name of the icon to select - * @since 5.89 + * + * \a iconName The name of the icon to select + * \since 5.89 */ void setSelectedIcon(const QString &iconName); - /** + /*! * Allows you to set the same parameters as in the class method * getIcon(), as well as two additional parameters to lock * the choice between system and user directories and to lock the @@ -103,37 +104,44 @@ public: bool lockUser = false, bool lockCustomDir = false); - /** + /*! * exec()utes this modal dialog and returns the name of the selected icon, * or QString() if the dialog was aborted. - * @returns the name of the icon, suitable for loading with KIconLoader. - * @see getIcon + * Returns the name of the icon, suitable for loading with KIconLoader. + * \sa getIcon */ QString openDialog(); - /** + /*! * show()s this dialog and emits a newIconName(const QString&) signal when * successful. QString() will be emitted if the dialog was aborted. */ void showDialog(); - /** + /*! * Pops up the dialog an lets the user select an icon. * - * @param group The icon group this icon is intended for. Providing the + * \a group The icon group this icon is intended for. Providing the * group shows the icons in the dialog with the same appearance as when * used outside the dialog. - * @param context The initial icon context. Initially, the icons having + * + * \a context The initial icon context. Initially, the icons having * this context are shown in the dialog. The user can change this. - * @param strictIconSize When true, only icons of the specified group's size + * + * \a strictIconSize When true, only icons of the specified group's size * are shown, otherwise icon not available in the desired group's size * will also be selectable. - * @param iconSize the size of the icons -- the default of the icon group + * + * \a iconSize the size of the icons -- the default of the icon group * if set to 0 - * @param user Begin with the "user icons" instead of "system icons". - * @param parent The parent widget of the dialog. - * @param title The title to use for the dialog. - * @return The name of the icon, suitable for loading with KIconLoader. + * + * \a user Begin with the "user icons" instead of "system icons". + * + * \a parent The parent widget of the dialog. + * + * \a title The title to use for the dialog. + * + * Returns The name of the icon, suitable for loading with KIconLoader. */ static QString getIcon(KIconLoader::Group group = KIconLoader::Desktop, KIconLoader::Context context = KIconLoader::Application, @@ -144,6 +152,9 @@ public: const QString &title = QString()); Q_SIGNALS: + /*! + * + */ void newIconName(const QString &iconName); protected: diff --git a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kpixmapsequenceloader.h b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kpixmapsequenceloader.h index 962f93a657..8bcbb442ff 100644 --- a/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kpixmapsequenceloader.h +++ b/local/recipes/kde/kf6-kiconthemes/source/src/widgets/kpixmapsequenceloader.h @@ -12,15 +12,20 @@ #include "kiconwidgets_export.h" +/*! + * \namespace KPixmapSequenceLoader + * \inmodule KIconWidgets + */ namespace KPixmapSequenceLoader { -/** +/*! * Loads a pixmapSequence given the xdg icon name * - * @param iconName The name of the icon, without extension. - * @param size the size to be used - * @since 6.0 + * \a iconName The name of the icon, without extension. + * + * \a size the size to be used + * \since 6.0 */ KICONWIDGETS_EXPORT KPixmapSequence load(const QString &iconName, int size); diff --git a/local/recipes/kde/kf6-kservice/source.tar b/local/recipes/kde/kf6-kservice/source.tar index 40096db1a3..808809cd33 100644 Binary files a/local/recipes/kde/kf6-kservice/source.tar and b/local/recipes/kde/kf6-kservice/source.tar differ diff --git a/local/recipes/kde/kf6-kservice/source/.gitlab-ci.yml b/local/recipes/kde/kf6-kservice/source/.gitlab-ci.yml index e8e8cd44b5..b9b61929d1 100644 --- a/local/recipes/kde/kf6-kservice/source/.gitlab-ci.yml +++ b/local/recipes/kde/kf6-kservice/source/.gitlab-ci.yml @@ -5,7 +5,10 @@ include: - project: sysadmin/ci-utilities file: - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/linux-qt6-next.yml - /gitlab-templates/alpine-qt6.yml - /gitlab-templates/android-qt6.yml - /gitlab-templates/freebsd-qt6.yml - /gitlab-templates/windows-qt6.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml diff --git a/local/recipes/kde/kf6-kservice/source/.kde-ci.yml b/local/recipes/kde/kf6-kservice/source/.kde-ci.yml index d758a501af..39f9a239a9 100644 --- a/local/recipes/kde/kf6-kservice/source/.kde-ci.yml +++ b/local/recipes/kde/kf6-kservice/source/.kde-ci.yml @@ -1,15 +1,16 @@ Dependencies: -- 'on': ['@all'] - 'require': + - 'on': ['@all'] + 'require': 'frameworks/extra-cmake-modules': '@same' - 'frameworks/kconfig' : '@same' - 'frameworks/kcoreaddons' : '@same' - 'frameworks/ki18n' : '@same' + 'frameworks/kconfig': '@same' + 'frameworks/kcoreaddons': '@same' + 'frameworks/ki18n': '@same' -- 'on': ['Linux', 'FreeBSD', 'Windows', 'macOS'] - 'require': - 'frameworks/kdoctools' : '@same' + - 'on': ['Linux', 'FreeBSD', 'Windows', 'macOS'] + 'require': + 'frameworks/kdoctools': '@same' Options: - test-before-installing: True - require-passing-tests-on: [ 'Linux', 'FreeBSD' ] + test-before-installing: True + require-passing-tests-on: ['@all'] + enable-lsan: True diff --git a/local/recipes/kde/kf6-kservice/source/.redbear-src-version b/local/recipes/kde/kf6-kservice/source/.redbear-src-version new file mode 100644 index 0000000000..2ece8e17b5 --- /dev/null +++ b/local/recipes/kde/kf6-kservice/source/.redbear-src-version @@ -0,0 +1 @@ +6.28.0 diff --git a/local/recipes/kde/kf6-kservice/source/CMakeLists.txt b/local/recipes/kde/kf6-kservice/source/CMakeLists.txt index 76c335185a..ca661182c8 100644 --- a/local/recipes/kde/kf6-kservice/source/CMakeLists.txt +++ b/local/recipes/kde/kf6-kservice/source/CMakeLists.txt @@ -1,7 +1,7 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.29) -set(KF_VERSION "6.10.0") # handled by release scripts -set(KF_DEP_VERSION "6.10.0") # handled by release scripts +set(KF_VERSION "6.28.0") # handled by release scripts +set(KF_DEP_VERSION "6.28.0") # handled by release scripts project(KService VERSION ${KF_VERSION}) # Disallow in-source build @@ -11,7 +11,7 @@ endif() # ECM setup include(FeatureSummary) -find_package(ECM 6.10.0 NO_MODULE) +find_package(ECM 6.28.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -23,16 +23,13 @@ include(KDECMakeSettings) include(KDEGitCommitHooks) include(ECMSetupVersion) include(ECMGenerateHeaders) -include(ECMAddQch) include(ECMQtDeclareLoggingCategory) include(ECMGenerateExportHeader) include(ECMDeprecationSettings) +include(ECMGenerateQDoc) set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of deprecated API excluded from the build [default=0].") -option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) -add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") - set(kservice_version_header "${CMAKE_CURRENT_BINARY_DIR}/src/kservice_version.h") ecm_setup_version(PROJECT VARIABLE_PREFIX KSERVICE @@ -41,7 +38,7 @@ ecm_setup_version(PROJECT SOVERSION 6) # Dependencies -set(REQUIRED_QT_VERSION 6.6.0) +set(REQUIRED_QT_VERSION 6.9.0) find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Xml) find_package(KF6Config ${KF_DEP_VERSION} CONFIG REQUIRED) @@ -52,11 +49,11 @@ find_package(KF6DocTools ${KF_DEP_VERSION} CONFIG) add_definitions(-DTRANSLATION_DOMAIN=\"kservice6\") ecm_set_disabled_deprecation_versions( - QT 6.8.0 - KF 6.8.0 + QT 6.11.0 + KF 6.27.0 ) -#ki18n_install(po) +ki18n_install(po) if (KF6DocTools_FOUND) kdoctools_install(po) @@ -75,16 +72,6 @@ endif() # create a Config.cmake and a ConfigVersion.cmake file and install them set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF6Service") -if (BUILD_QCH) - ecm_install_qch_export( - TARGETS KF6Service_QCH - FILE KF6ServiceQchTargets.cmake - DESTINATION "${CMAKECONFIG_INSTALL_DIR}" - COMPONENT Devel - ) - set(PACKAGE_INCLUDE_QCHTARGETS "include(\"\${CMAKE_CURRENT_LIST_DIR}/KF6ServiceQchTargets.cmake\")") -endif() - include(CMakePackageConfigHelpers) configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF6ServiceConfig.cmake.in" diff --git a/local/recipes/kde/kf6-kservice/source/KF6ServiceConfig.cmake.in b/local/recipes/kde/kf6-kservice/source/KF6ServiceConfig.cmake.in index 2f6e003704..6979506881 100644 --- a/local/recipes/kde/kf6-kservice/source/KF6ServiceConfig.cmake.in +++ b/local/recipes/kde/kf6-kservice/source/KF6ServiceConfig.cmake.in @@ -5,4 +5,3 @@ find_dependency(KF6Config "@KF_DEP_VERSION@") find_dependency(KF6CoreAddons "@KF_DEP_VERSION@") include("${CMAKE_CURRENT_LIST_DIR}/KF6ServiceTargets.cmake") -@PACKAGE_INCLUDE_QCHTARGETS@ diff --git a/local/recipes/kde/kf6-kservice/source/autotests/CMakeLists.txt b/local/recipes/kde/kf6-kservice/source/autotests/CMakeLists.txt index 0882210463..0f91727c06 100644 --- a/local/recipes/kde/kf6-kservice/source/autotests/CMakeLists.txt +++ b/local/recipes/kde/kf6-kservice/source/autotests/CMakeLists.txt @@ -15,25 +15,31 @@ endmacro(KSERVICE_UNIT_TESTS) kservice_unit_tests( ksycocatest ksycoca_xdgdirstest - ksycocathreadtest - kservicetest - kapplicationtradertest ) # the test plays with the timestamp of ~/.qttest/share/applications, and with the ksycoca file, other tests can collide set_tests_properties(ksycocatest PROPERTIES RUN_SERIAL TRUE) -# KServiceTest::testAllServices can fail if any service is deleted while the test runs -set_tests_properties(kservicetest PROPERTIES RUN_SERIAL TRUE) -######### kmimeassociationstest ######## +# disable some tests that fail on Windows ATM +if (NOT WIN32) + kservice_unit_tests( + ksycocathreadtest + kservicetest + kapplicationtradertest + ) -set(kmimeassociationstest_SRCS kmimeassociationstest.cpp ../src/sycoca/kmimeassociations.cpp) -ecm_qt_declare_logging_category(kmimeassociationstest_SRCS - HEADER sycocadebug.h - IDENTIFIER SYCOCA - CATEGORY_NAME kf.service.sycoca -) + # KServiceTest::testAllServices can fail if any service is deleted while the test runs + set_tests_properties(kservicetest PROPERTIES RUN_SERIAL TRUE) -ecm_add_test(${kmimeassociationstest_SRCS} TEST_NAME kmimeassociationstest - LINK_LIBRARIES KF6::Service Qt6::Test Qt6::Xml KF6::ConfigCore KF6::CoreAddons) + ######### kmimeassociationstest ######## + set(kmimeassociationstest_SRCS kmimeassociationstest.cpp ../src/sycoca/kmimeassociations.cpp) + ecm_qt_declare_logging_category(kmimeassociationstest_SRCS + HEADER sycocadebug.h + IDENTIFIER SYCOCA + CATEGORY_NAME kf.service.sycoca + ) + + ecm_add_test(${kmimeassociationstest_SRCS} TEST_NAME kmimeassociationstest + LINK_LIBRARIES KF6::Service Qt6::Test Qt6::Xml KF6::ConfigCore KF6::CoreAddons) +endif() diff --git a/local/recipes/kde/kf6-kservice/source/autotests/kmimeassociationstest.cpp b/local/recipes/kde/kf6-kservice/source/autotests/kmimeassociationstest.cpp index ef0d7c0f5e..7c52398e3a 100644 --- a/local/recipes/kde/kf6-kservice/source/autotests/kmimeassociationstest.cpp +++ b/local/recipes/kde/kf6-kservice/source/autotests/kmimeassociationstest.cpp @@ -115,7 +115,7 @@ static void writeNonKDEAppDesktopFile(const QString &path, const QStringList &mi group.writeXdgListEntry("MimeType", mimeTypes); } -/** +/*! * This unit test verifies the parsing of mimeapps.list files, both directly * and via kbuildsycoca (and making trader queries). */ diff --git a/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.cpp b/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.cpp index c4b19088e2..630a191bde 100644 --- a/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.cpp +++ b/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.cpp @@ -1,6 +1,6 @@ /* SPDX-FileCopyrightText: 2006 David Faure - SPDX-FileCopyrightText: 2022 Harald Sitter + SPDX-FileCopyrightText: 2022-2026 Harald Sitter SPDX-License-Identifier: LGPL-2.0-only */ @@ -25,6 +25,7 @@ #include #include +#include #include #include #include @@ -33,6 +34,9 @@ #include #include +using namespace std::chrono_literals; +using namespace Qt::StringLiterals; + QTEST_MAIN(KServiceTest) extern KSERVICE_EXPORT int ksycoca_ms_between_checks; @@ -572,4 +576,31 @@ void KServiceTest::testStartupNotify() } } +void KServiceTest::testRecursiveUpdate() +{ + if (!KSycoca::isAvailable()) { + QSKIP("ksycoca not available"); + } + + // Make sure updates trigger immediately. + QScopedValueRollback rollback(ksycoca_ms_between_checks, 0); + + const QString filePath = QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation) + "/org.kde.testRecursiveUpdate.desktop"_L1; + { + QFile f(filePath); + QVERIFY(f.open(QIODevice::WriteOnly | QIODevice::Truncate)); + } + QVERIFY(QFile::exists(filePath)); + + QSignalSpy spy(KSycoca::self(), &KSycoca::databaseChanged); + + auto service = KService::serviceByDesktopPath(filePath); + // The signal must not have fired already. If it had we'd be able to recursively update and break the singleton. + QCOMPARE(spy.count(), 0); + + // If we event loop it should fire though. + spy.wait(4s); + QCOMPARE(spy.count(), 1); +} + #include "moc_kservicetest.cpp" diff --git a/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.h b/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.h index 482ddd7721..bbee52fafe 100644 --- a/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.h +++ b/local/recipes/kde/kf6-kservice/source/autotests/kservicetest.h @@ -1,6 +1,6 @@ /* SPDX-FileCopyrightText: 2006 David Faure - SPDX-FileCopyrightText: 2022 Harald Sitter + SPDX-FileCopyrightText: 2022-2026 Harald Sitter SPDX-License-Identifier: LGPL-2.0-only */ @@ -46,6 +46,7 @@ private Q_SLOTS: void testAliasFor(); void testServiceActionService(); void testStartupNotify(); + void testRecursiveUpdate(); private: void runKBuildSycoca(bool noincremental = false); diff --git a/local/recipes/kde/kf6-kservice/source/autotests/ksycocathreadtest.cpp b/local/recipes/kde/kf6-kservice/source/autotests/ksycocathreadtest.cpp index 6882225baa..bfa3be51e9 100644 --- a/local/recipes/kde/kf6-kservice/source/autotests/ksycocathreadtest.cpp +++ b/local/recipes/kde/kf6-kservice/source/autotests/ksycocathreadtest.cpp @@ -131,7 +131,7 @@ private: QAtomicInt m_stop; // bool }; -/** +/*! * Threads with an event loop will be able to process "database changed" signals. * Threads without an event loop (like WorkerThread) cannot, so they will keep using * the old data. diff --git a/local/recipes/kde/kf6-kservice/source/docs/Doxyfile.local b/local/recipes/kde/kf6-kservice/source/docs/Doxyfile.local deleted file mode 100644 index f2f3e1101a..0000000000 --- a/local/recipes/kde/kf6-kservice/source/docs/Doxyfile.local +++ /dev/null @@ -1,8 +0,0 @@ -### KApiDox Project-specific Overrides File - -# define so that deprecated API is not skipped -PREDEFINED += \ - "KSERVICE_ENABLE_DEPRECATED_SINCE(x, y)=1" \ - "KSERVICE_BUILD_DEPRECATED_SINCE(x, y)=1" \ - "KSERVICE_DEPRECATED_VERSION(x, y, t)=" \ - "KSERVICE_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)=" diff --git a/local/recipes/kde/kf6-kservice/source/metainfo.yaml b/local/recipes/kde/kf6-kservice/source/metainfo.yaml index 24b38629a6..683f9ced51 100644 --- a/local/recipes/kde/kf6-kservice/source/metainfo.yaml +++ b/local/recipes/kde/kf6-kservice/source/metainfo.yaml @@ -12,7 +12,7 @@ portingAid: false deprecated: false release: true libraries: - - cmake: "KF6::Service" + - cmake: "KF6::Service" cmakename: KF6Service public_lib: true diff --git a/local/recipes/kde/kf6-kservice/source/po/af/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/af/kservice6.po index f833b82d4f..74300593e8 100644 --- a/local/recipes/kde/kf6-kservice/source/po/af/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/af/kservice6.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4 stable\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2006-01-12 16:33+0200\n" "Last-Translator: JUANITA FRANZ \n" "Language-Team: AFRIKAANS \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ar/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ar/kservice6.po index 856f9a4494..854aaa266d 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ar/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ar/kservice6.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2023-05-09 10:39+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" @@ -30,7 +30,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Lokalize 23.08.5\n" #, kde-format diff --git a/local/recipes/kde/kf6-kservice/source/po/as/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/as/kservice6.po index 6bff3beebd..c926a5c1ca 100644 --- a/local/recipes/kde/kf6-kservice/source/po/as/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/as/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4_as\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2008-12-26 15:19+0530\n" "Last-Translator: Amitakhya Phukan <অমিতাক্ষ ফুকন>\n" "Language-Team: Assamese \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ast/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ast/kservice6.po index c983fcd4d2..9f3bdd7410 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ast/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ast/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2023-11-01 12:41+0100\n" "Last-Translator: Enol P. \n" "Language-Team: \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/az/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/az/kservice6.po index 593cfaba94..0622f4470b 100644 --- a/local/recipes/kde/kf6-kservice/source/po/az/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/az/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-21 21:38+0400\n" "Last-Translator: Kheyyam Gojayev \n" "Language-Team: Azerbaijani \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/be/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/be/kservice6.po index 58c6e10df5..68dc90940b 100644 --- a/local/recipes/kde/kf6-kservice/source/po/be/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/be/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-02-11 18:54\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/be@latin/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/be@latin/kservice6.po index 5528c985bf..fb5b9debde 100644 --- a/local/recipes/kde/kf6-kservice/source/po/be@latin/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/be@latin/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2008-08-30 01:10+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/bg/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/bg/kservice6.po index 31c7436803..1360a4ccdb 100644 --- a/local/recipes/kde/kf6-kservice/source/po/bg/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/bg/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-06-28 09:53+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/bn/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/bn/kservice6.po index af644d9115..97b6aa8a58 100644 --- a/local/recipes/kde/kf6-kservice/source/po/bn/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/bn/kservice6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-07-16 14:27+0530\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: American English \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/bn_IN/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/bn_IN/kservice6.po index 24943952b7..da15c7457a 100644 --- a/local/recipes/kde/kf6-kservice/source/po/bn_IN/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/bn_IN/kservice6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-12-28 14:35+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/br/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/br/kservice6.po index 372c14340f..09322cb124 100644 --- a/local/recipes/kde/kf6-kservice/source/po/br/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/br/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4-1.1\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2007-10-15 22:19+0200\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/bs/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/bs/kservice6.po index a96cdc41ca..396b376753 100644 --- a/local/recipes/kde/kf6-kservice/source/po/bs/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/bs/kservice6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-12-21 17:26+0000\n" "Last-Translator: Ademovic Saudin \n" "Language-Team: bosanski \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ca/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ca/kservice6.po index 843ea3d839..89b0684319 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ca/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ca/kservice6.po @@ -3,18 +3,18 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007. -# Antoni Bella Pérez , 2003, 2006, 2011, 2012, 2013, 2014, 2015, 2020, 2022. -# Albert Astals Cid , 2004, 2005, 2007. -# Josep M. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2021. -# Robert Millan , 2009. -# Orestes Mas , 2010. -# Empar Montoro Martín , 2019. +# SPDX-FileCopyrightText: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Sebastià Pla i Sanz +# SPDX-FileCopyrightText: 2003, 2006, 2011, 2012, 2013, 2014, 2015, 2020, 2022 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2004, 2005, 2007 Albert Astals Cid +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2021 Josep M. Ferrer +# SPDX-FileCopyrightText: 2009 Robert Millan +# SPDX-FileCopyrightText: 2010 Orestes Mas +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín msgid "" msgstr "" "Project-Id-Version: kservice\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-03-26 13:26+0100\n" "Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ca@valencia/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ca@valencia/kservice6.po index dc12c099ad..6dfcf50dc6 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ca@valencia/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ca@valencia/kservice6.po @@ -3,18 +3,18 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007. -# Antoni Bella Pérez , 2003, 2006, 2011, 2012, 2013, 2014, 2015, 2020, 2022. -# Albert Astals Cid , 2004, 2005, 2007. -# Josep M. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2021. -# Robert Millan , 2009. -# Orestes Mas , 2010. -# Empar Montoro Martín , 2019. +# SPDX-FileCopyrightText: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Sebastià Pla i Sanz +# SPDX-FileCopyrightText: 2003, 2006, 2011, 2012, 2013, 2014, 2015, 2020, 2022 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2004, 2005, 2007 Albert Astals Cid +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2021 Josep M. Ferrer +# SPDX-FileCopyrightText: 2009 Robert Millan +# SPDX-FileCopyrightText: 2010 Orestes Mas +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín msgid "" msgstr "" "Project-Id-Version: kservice\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-03-26 13:26+0100\n" "Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/crh/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/crh/kservice6.po index c5503d825e..9856ff7eca 100644 --- a/local/recipes/kde/kf6-kservice/source/po/crh/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/crh/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-02-12 23:29-0600\n" "Last-Translator: Reşat SABIQ \n" "Language-Team: Qırımtatarca (Qırım Türkçesi)\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/cs/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/cs/kservice6.po index e903f33516..aa584d589f 100644 --- a/local/recipes/kde/kf6-kservice/source/po/cs/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/cs/kservice6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2023-02-24 11:07+0100\n" "Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/csb/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/csb/kservice6.po index 300dae9217..09e51fc0be 100644 --- a/local/recipes/kde/kf6-kservice/source/po/csb/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/csb/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-12-04 22:09+0100\n" "Last-Translator: Mark Kwidzińśczi \n" "Language-Team: Kaszëbsczi \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/cy/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/cy/kservice6.po index a6fd4c8c77..3d411b8a5d 100644 --- a/local/recipes/kde/kf6-kservice/source/po/cy/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/cy/kservice6.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2005-01-28 17:54+0000\n" "Last-Translator: Kevin Donnelly \n" "Language-Team: Cymraeg\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/da/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/da/kservice6.po index 5cb0e48e31..9c7f7031d7 100644 --- a/local/recipes/kde/kf6-kservice/source/po/da/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/da/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-09-09 21:27+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/de/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/de/kservice6.po index fd003bab1a..6c40da027f 100644 --- a/local/recipes/kde/kf6-kservice/source/po/de/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/de/kservice6.po @@ -1,19 +1,19 @@ -# Thomas Diehl , 2002, 2003, 2004, 2005. -# Stefan Winter , 2004. -# Thomas Fischer , 2004. -# Stephan Johach , 2004, 2005, 2006, 2007. -# Georg Schuster , 2005. -# Thomas Reitelbach , 2005, 2006, 2007, 2008, 2009. -# Burkhard Lück , 2006, 2007, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2021. -# Frederik Schwarzer , 2007, 2008, 2009, 2010, 2011, 2012, 2013. -# Johannes Obermayr , 2010. -# Panagiotis Papadopoulos , 2010. -# Rolf Eike Beer , 2012. +# SPDX-FileCopyrightText: 2002, 2003, 2004, 2005 Thomas Diehl +# SPDX-FileCopyrightText: 2004 Stefan Winter +# SPDX-FileCopyrightText: 2004 Thomas Fischer +# SPDX-FileCopyrightText: 2004, 2005, 2006, 2007 Stephan Johach +# SPDX-FileCopyrightText: 2005 Georg Schuster +# SPDX-FileCopyrightText: 2005, 2006, 2007, 2008, 2009 Thomas Reitelbach +# SPDX-FileCopyrightText: 2006, 2007, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2021 Burkhard Lück +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013 Frederik Schwarzer +# SPDX-FileCopyrightText: 2010 Johannes Obermayr +# SPDX-FileCopyrightText: 2010 Panagiotis Papadopoulos +# SPDX-FileCopyrightText: 2012 Rolf Eike Beer msgid "" msgstr "" "Project-Id-Version: kservice6\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-20 05:34+0200\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" @@ -26,12 +26,12 @@ msgstr "" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Thomas Reitelbach, Stephan Johach, Thomas Diehl" +msgstr "Deutsches KDE-Übersetzungsteam" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "tr@erdfunkstelle.de, hunsum@gmx.de, thd@kde.org" +msgstr "kde-i18n-de@kde.org" #: kbuildsycoca/kbuildsycoca_main.cpp:90 #, kde-format diff --git a/local/recipes/kde/kf6-kservice/source/po/el/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/el/kservice6.po index 0d5fdb054e..7553b775d7 100644 --- a/local/recipes/kde/kf6-kservice/source/po/el/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/el/kservice6.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-06-30 09:48+0300\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/en_GB/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/en_GB/kservice6.po index b83297bb0e..b1e4abdf4a 100644 --- a/local/recipes/kde/kf6-kservice/source/po/en_GB/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/en_GB/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-06-12 14:30+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/eo/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/eo/kservice6.po index 99511a3e14..db3f89547d 100644 --- a/local/recipes/kde/kf6-kservice/source/po/eo/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/eo/kservice6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2023-04-14 08:37+0100\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: Esperanto \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/es/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/es/kservice6.po index 93100a6e93..8c208cc7e7 100644 --- a/local/recipes/kde/kf6-kservice/source/po/es/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/es/kservice6.po @@ -1,21 +1,20 @@ -# translation of kdelibs4.po to Spanish -# Translation of kdelibs4 to Spanish -# Copyright (C) 2000-2007 +# Spanish translations for kservice6.po package. +# Copyright (C) 2000-2025 This file is copyright: +# This file is distributed under the same license as the kservice package. # -# Pablo de Vicente , 2000-2002,2003, 2004. -# Pablo de Vicente , 2003. -# Pablo de Vicente , 2004, 2005. -# Eloy Cuadra , 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2021. -# Pablo de Vicente , 2005, 2006, 2007. -# Enrique Matias Sanchez (aka Quique) , 2007. -# Jaime Robles , 2007. -# Javier Viñal , 2013. +# SPDX-FileCopyrightText: 2000-2004 Pablo de Vicente +# SPDX-FileCopyrightText: 2004, 2005 Pablo de Vicente +# SPDX-FileCopyrightText: 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2021, 2025 Eloy Cuadra +# SPDX-FileCopyrightText: 2005, 2006, 2007 Pablo de Vicente +# SPDX-FileCopyrightText: 2007 Enrique Matias Sanchez (aka Quique) +# SPDX-FileCopyrightText: 2007 Jaime Robles +# SPDX-FileCopyrightText: 2013 Javier Viñal msgid "" msgstr "" -"Project-Id-Version: kdelibs4\n" +"Project-Id-Version: kservice6\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" -"PO-Revision-Date: 2021-05-20 17:31+0200\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" +"PO-Revision-Date: 2025-05-18 14:22+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -95,9873 +94,3 @@ msgstr "Seguir el identificador de menú para depuración" msgctxt "@info:shell command-line option" msgid "Switch QStandardPaths to test mode, for unit tests only" msgstr "Cambiar QStandardPaths al modo de pruebas, solo para pruebas unitarias" - -#~ msgctxt "@info:shell command-line option" -#~ msgid "" -#~ "Do not signal applications to update (deprecated, no longer having any " -#~ "effect)" -#~ msgstr "" -#~ "No enviar señales a las aplicaciones a actualizar (desaconsejado, ya no " -#~ "tiene efecto)" - -#~ msgctxt "@info:shell command-line option" -#~ msgid "Check file timestamps (deprecated, no longer having any effect)" -#~ msgstr "" -#~ "Comprobar las marcas de tiempo de los archivos (desaconsejado, ya no " -#~ "tiene efecto)" - -#~ msgctxt "@info:shell command-line option" -#~ msgid "Disable checking files (deprecated, no longer having any effect)" -#~ msgstr "" -#~ "Desactivar la verificación de archivos (desaconsejado, ya no tiene efecto)" - -#~ msgid "Function must be called from the main thread." -#~ msgstr "La función se debe llamar desde el hilo principal." - -#~ msgid "" -#~ "Error launching %1. Either KLauncher is not running anymore, or it failed " -#~ "to start the application." -#~ msgstr "" -#~ "Error al ejecutar %1. Es probable que KLauncher no esté en ejecución, o " -#~ "que haya fallado al iniciar la aplicación." - -#~ msgid "" -#~ "KLauncher could not be reached via D-Bus. Error when calling %1:\n" -#~ "%2\n" -#~ msgstr "" -#~ "No se pudo llegar a KLauncher por medio de D-Bus. Error al llamar %1:\n" -#~ "%2\n" - -#~ msgid "" -#~ "Could not launch the mail client:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudo iniciar el cliente de correo:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not launch Mail Client" -#~ msgstr "No se ha podido iniciar el cliente de correo" - -#~ msgid "" -#~ "Could not launch the browser:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudo iniciar el navegador:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not launch Browser" -#~ msgstr "No se ha podido iniciar el navegador" - -#~ msgid "Unable to determine the default terminal" -#~ msgstr "No se ha podido determinar el terminal predeterminado" - -#~ msgid "" -#~ "Could not launch the terminal client:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudo iniciar el cliente de terminal:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not launch Terminal Client" -#~ msgstr "No se ha podido iniciar el cliente de terminal" - -#~ msgid "No service implementing %1" -#~ msgstr "Ningún servicio implementa %1" - -#~ msgid "The provided service is not valid" -#~ msgstr "El servicio proporcionado no es válido" - -#~ msgid "The service '%1' provides no library or the Library key is missing" -#~ msgstr "" -#~ "El servicio «%1» no proporciona ninguna biblioteca, o falta la entrada " -#~ "«Library»" - -#~ msgctxt "@info:shell command-line option" -#~ msgid "Create global database" -#~ msgstr "Crear base de datos global" - -#~ msgctxt "@info:shell command-line option" -#~ msgid "Do not signal applications to update" -#~ msgstr "No enviar señales a las aplicaciones para actualizarse" - -#~ msgctxt "@info:shell command-line option" -#~ msgid "Check file timestamps" -#~ msgstr "Comprobar marcas temporales del archivo" - -#~ msgid "Could not find plugin '%1' for application '%2'" -#~ msgstr "No se puede encontrar el complemento «%1» para la aplicación «%2»" - -#~ msgid "The library %1 does not offer a KPluginFactory." -#~ msgstr "La biblioteca %1 no ofrece ninguna KPluginFactory." - -#~ msgid "Name" -#~ msgstr "Nombre" - -#~ msgid "Host" -#~ msgstr "Servidor" - -#~ msgid "Port" -#~ msgstr "Puerto" - -#~ msgid "i18n() takes at least one argument" -#~ msgstr "i18n() debe tener al menos un argumento" - -#~ msgid "i18nc() takes at least two arguments" -#~ msgstr "i18nc() debe tener al menos dos argumentos" - -#~ msgid "i18np() takes at least two arguments" -#~ msgstr "i18np() debe tener al menos dos argumentos" - -#~ msgid "i18ncp() takes at least three arguments" -#~ msgstr "i18ncp() debe tener al menos tres argumentos" - -#~ msgid "System Default (currently: %1)" -#~ msgstr "Predeterminado del sistema (actualmente: %1)" - -#~ msgid "Editor Chooser" -#~ msgstr "Selector del editor" - -#~ msgid "" -#~ "Please choose the default text editing component that you wish to use in " -#~ "this application. If you choose System Default, the application " -#~ "will honor your changes in the System Settings. All other choices will " -#~ "override that setting." -#~ msgstr "" -#~ "Seleccione el componente de edición de texto que desee utilizar en esta " -#~ "aplicación. Si selecciona Predeterminado del sistema, la " -#~ "aplicación tendrá en cuenta su modificación en las Preferencias del " -#~ "sistema. Todas las demás elecciones harán caso omiso de esa preferencia." - -#~ msgid "" -#~ "The template needs information about you, which is stored in your address " -#~ "book.\n" -#~ "However, the required plugin could not be loaded.\n" -#~ "\n" -#~ "Please install the KDEPIM/Kontact package for your system." -#~ msgstr "" -#~ "La plantilla necesita información sobre usted, que se almacena en la " -#~ "libreta de direcciones.\n" -#~ "No fue posible cargar el complemento necesario.\n" -#~ "\n" -#~ "Instale en su sistema el paquete KDEPIM/Kontact." - -#~ msgid "TETest" -#~ msgstr "TETest" - -#~ msgid "Only local files are supported." -#~ msgstr "Solo se permiten archivos locales." - -#~ msgid "Keep output results from scripts" -#~ msgstr "Guardar los resultados de la salida de los scripts" - -#~ msgid "Check whether config file itself requires updating" -#~ msgstr "Comprobar si el archivo de configuración requiere actualización" - -#~ msgid "File to read update instructions from" -#~ msgstr "Archivo del que leer instrucciones de actualización" - -#~ msgid "KConf Update" -#~ msgstr "Actualización de KConf" - -#~ msgid "KDE Tool for updating user configuration files" -#~ msgstr "" -#~ "Herramienta de KDE para actualizar archivos de configuración del usuario" - -#~ msgid "(c) 2001, Waldo Bastian" -#~ msgstr "(c) 2001, Waldo Bastian" - -#~ msgid "??" -#~ msgstr "??" - -#~ msgid "&About" -#~ msgstr "&Acerca de" - -#~ msgid "" -#~ "No information available.\n" -#~ "The supplied KAboutData object does not exist." -#~ msgstr "" -#~ "No hay información disponible.\n" -#~ "El objeto suministrado KAboutData no existe." - -#~ msgid "A&uthor" -#~ msgstr "A&utor" - -#~ msgid "A&uthors" -#~ msgstr "A&utores" - -#~ msgid "" -#~ "Please use http://bugs.kde.org to " -#~ "report bugs.\n" -#~ msgstr "" -#~ "Utilice http://bugs.kde.org para " -#~ "informar de fallos.\n" - -#~ msgid "Please report bugs to %2.\n" -#~ msgstr "Utilice %2 para informar de fallos.\n" - -#~ msgid "&Thanks To" -#~ msgstr "&Gracias a" - -#~ msgid "T&ranslation" -#~ msgstr "T&raducción" - -#~ msgid "&License Agreement" -#~ msgstr "Acuerdo de &licencia" - -#~ msgid "Email" -#~ msgstr "Correo electrónico" - -#~ msgid "Homepage" -#~ msgstr "Página web" - -#~ msgid "Task" -#~ msgstr "Tarea" - -#~ msgid "" -#~ "%1
    version %2
    Using KDE %3" -#~ msgstr "" -#~ "%1
    versión %2
    Usando KDE %3" - -#~ msgid "%1 %2, %3" -#~ msgstr "%1 %2, %3" - -#~ msgid "Other Contributors:" -#~ msgstr "Otros colaboradores:" - -#~ msgid "(No logo available)" -#~ msgstr "(Logotipo no disponible)" - -#~ msgid "About %1" -#~ msgstr "Acerca de %1" - -#~ msgid "Undo: %1" -#~ msgstr "Deshacer: %1" - -#~ msgid "Redo: %1" -#~ msgstr "Rehacer: %1" - -#~ msgid "&Undo" -#~ msgstr "&Deshacer" - -#~ msgid "&Redo" -#~ msgstr "&Rehacer" - -#~ msgid "&Undo: %1" -#~ msgstr "&Deshacer: %1" - -#~ msgid "&Redo: %1" -#~ msgstr "&Rehacer: %1" - -#~ msgid "Close" -#~ msgstr "Cerrar" - -#~ msgctxt "Freeze the window geometry" -#~ msgid "Freeze" -#~ msgstr "Congelar" - -#~ msgctxt "Dock this window" -#~ msgid "Dock" -#~ msgstr "Anclar" - -#~ msgid "Detach" -#~ msgstr "Despegar" - -#~ msgid "Hide %1" -#~ msgstr "Ocultar: %1" - -#~ msgid "Show %1" -#~ msgstr "Mostrar %1" - -#~ msgid "Search Columns" -#~ msgstr "Buscar columnas" - -#~ msgid "All Visible Columns" -#~ msgstr "Todas las columnas visibles" - -#~ msgctxt "Column number %1" -#~ msgid "Column No. %1" -#~ msgstr "Columna número %1" - -#~ msgid "S&earch:" -#~ msgstr "&Buscar:" - -#~ msgid "&Password:" -#~ msgstr "&Contraseña:" - -#~ msgid "&Keep password" -#~ msgstr "&Recordar contraseña" - -#~ msgid "&Verify:" -#~ msgstr "&Verificar:" - -#~ msgid "Password strength meter:" -#~ msgstr "Medidor de la fortaleza de las contraseñas:" - -#~ msgid "" -#~ "The password strength meter gives an indication of the security of the " -#~ "password you have entered. To improve the strength of the password, " -#~ "try:\n" -#~ " - using a longer password;\n" -#~ " - using a mixture of upper- and lower-case letters;\n" -#~ " - using numbers or symbols, such as #, as well as letters." -#~ msgstr "" -#~ "El medidor de seguridad de contraseñas le ofrece una indicación de la " -#~ "seguridad de la contraseña que ha introducido. Para mejorar la contraseña " -#~ "intente:\n" -#~ " - usar una contraseña más larga;\n" -#~ " - usar una mezcla de letras mayúsculas y minúsculas;\n" -#~ " - usar números o símbolos, como #, junto con letras." - -#~ msgid "Passwords do not match" -#~ msgstr "Las contraseñas no coinciden" - -#~ msgid "You entered two different passwords. Please try again." -#~ msgstr "Introdujo dos contraseñas diferentes. Inténtelo de nuevo." - -#~ msgid "" -#~ "The password you have entered has a low strength. To improve the strength " -#~ "of the password, try:\n" -#~ " - using a longer password;\n" -#~ " - using a mixture of upper- and lower-case letters;\n" -#~ " - using numbers or symbols as well as letters.\n" -#~ "\n" -#~ "Would you like to use this password anyway?" -#~ msgstr "" -#~ "El medidor de seguridad de contraseñas le ofrece una indicación de la " -#~ "seguridad de la contraseña que ha introducido. Para mejorar la contraseña " -#~ "intente:\n" -#~ " - usar una contraseña más larga;\n" -#~ " - usar una mezcla de letras mayúsculas y minúsculas;\n" -#~ " - usar números o símbolos, como #, junto con letras.\n" -#~ "\n" -#~ "¿Desea usar esta contraseña a pesar de todo?" - -#~ msgid "Low Password Strength" -#~ msgstr "Seguridad baja de la contraseña" - -#~ msgid "Password Input" -#~ msgstr "Entrada de contraseña" - -#~ msgid "Password is empty" -#~ msgstr "La contraseña está vacía" - -#~ msgid "Password must be at least 1 character long" -#~ msgid_plural "Password must be at least %1 characters long" -#~ msgstr[0] "La contraseña debe tener al menos un carácter" -#~ msgstr[1] "La contraseña debe tener al menos %1 caracteres" - -#~ msgid "Passwords match" -#~ msgstr "Las contraseñas coinciden" - -#~ msgctxt "@option:check" -#~ msgid "Do Spellchecking" -#~ msgstr "Realizar la comprobación ortográfica" - -#~ msgctxt "@option:check" -#~ msgid "Create &root/affix combinations not in dictionary" -#~ msgstr "Crear combinaciones &raíz/afijo que no estén en el diccionario" - -#~ msgctxt "@option:check" -#~ msgid "Consider run-together &words as spelling errors" -#~ msgstr "Considerar las palabras &juntas como errores de ortografía" - -#~ msgctxt "@label:listbox" -#~ msgid "&Dictionary:" -#~ msgstr "&Diccionario:" - -#~ msgctxt "@label:listbox" -#~ msgid "&Encoding:" -#~ msgstr "&Codificación:" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "International Ispell" -#~ msgstr "Ispell internacional" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Aspell" -#~ msgstr "Aspell" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Hspell" -#~ msgstr "Hspell" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Zemberek" -#~ msgstr "Zemberek" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Hunspell" -#~ msgstr "Hunspell" - -#~ msgctxt "@label:listbox" -#~ msgid "&Client:" -#~ msgstr "&Cliente:" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Hebrew" -#~ msgstr "Hebreo" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Turkish" -#~ msgstr "Turco" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "English" -#~ msgstr "Inglés" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Spanish" -#~ msgstr "Español" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Danish" -#~ msgstr "Danés" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "German" -#~ msgstr "Alemán" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "German (new spelling)" -#~ msgstr "Alemán (nueva ortografía)" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Brazilian Portuguese" -#~ msgstr "Portugués de Brasil" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Portuguese" -#~ msgstr "Portugués" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Esperanto" -#~ msgstr "Esperanto" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Norwegian" -#~ msgstr "Noruego" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Polish" -#~ msgstr "Polaco" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Russian" -#~ msgstr "Ruso" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Slovenian" -#~ msgstr "Esloveno" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Slovak" -#~ msgstr "Eslovaco" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Czech" -#~ msgstr "Checo" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Swedish" -#~ msgstr "Sueco" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Swiss German" -#~ msgstr "Alemán de Suiza" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Ukrainian" -#~ msgstr "Ucraniano" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Lithuanian" -#~ msgstr "Lituano" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "French" -#~ msgstr "Francés" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Belarusian" -#~ msgstr "Bielorruso" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Hungarian" -#~ msgstr "Húngaro" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "ISpell Default" -#~ msgstr "ISpell por omisión" - -#~ msgctxt "@item Spelling dictionary: %1 dictionary name, %2 file name" -#~ msgid "Default - %1 [%2]" -#~ msgstr "Predeterminado - %1 [%2]" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "ASpell Default" -#~ msgstr "ASpell por omisión" - -#~ msgctxt "@item Spelling dictionary: %1 dictionary name" -#~ msgid "Default - %1" -#~ msgstr "Predeterminado - %1" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Hunspell Default" -#~ msgstr "Hunspell por omisión" - -#~ msgid "You have to restart the dialog for changes to take effect" -#~ msgstr "Debe reiniciar el diálogo para que los cambios surtan efecto" - -#~ msgid "Spell Checker" -#~ msgstr "Corrector ortográfico" - -#~ msgid "Check Spelling" -#~ msgstr "Comprobar ortografía" - -#~ msgid "&Finished" -#~ msgstr "&Finalizado" - -#~ msgid "" -#~ "

    This word was considered to be an \"unknown word\" because it does " -#~ "not match any entry in the dictionary currently in use. It may also be a " -#~ "word in a foreign language.

    \n" -#~ "

    If the word is not misspelled, you may add it to the dictionary by " -#~ "clicking Add to Dictionary. If you do not want to add the unknown " -#~ "word to the dictionary, but you want to leave it unchanged, click " -#~ "Ignore or Ignore All.

    \n" -#~ "

    However, if the word is misspelled, you can try to find the correct " -#~ "replacement in the list below. If you cannot find a replacement there, " -#~ "you may type it in the text box below, and click Replace or " -#~ "Replace All.

    \n" -#~ "
    " -#~ msgstr "" -#~ "

    Esta palabra se considera una «palabra desconocida» porque no " -#~ "coincide con ninguna entrada del diccionario que está usando. Puede que " -#~ "se trate de una palabra extranjera.

    \n" -#~ "

    Si la palabra está correctamente escrita, puede añadirla al " -#~ "diccionario pulsando Añadir al diccionario. Si no desea añadir la " -#~ "palabra al diccionario, pero desea dejarla tal cual, pulse Ignorar " -#~ "o Ignorar todas.

    \n" -#~ "

    Sin embargo, si la palabra es incorrecta puede intentar buscar la " -#~ "forma correcta en la lista de debajo. Si no encuentra un remplazo aquí, " -#~ "puede introducirlo en el área de texto inferior, y pulsar Remplazar o Remplazar todas.

    \n" -#~ "
    " - -#~ msgid "Unknown word:" -#~ msgstr "Palabra desconocida:" - -#~ msgid "Unknown word" -#~ msgstr "Palabra desconocida" - -#~ msgid "misspelled" -#~ msgstr "error ortográfico" - -#~ msgid "" -#~ "\n" -#~ "

    Select the language of the document you are proofing here.

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Seleccione aquí el idioma del documento que está verificando.

    \n" -#~ "
    " - -#~ msgid "&Language:" -#~ msgstr "&Idioma:" - -#~ msgid "Text excerpt showing the unknown word in its context." -#~ msgstr "" -#~ "Extracto del texto que muestra la palabra desconocida en su contexto." - -#~ msgid "" -#~ "\n" -#~ "

    Here you can see a text excerpt showing the unknown word in its " -#~ "context. If this information is not sufficient to choose the best " -#~ "replacement for the unknown word, you can click on the document you are " -#~ "proofing, read a larger part of the text and then return here to continue " -#~ "proofing.

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Aquí puede ver un extracto del texto en el que se muestra la palabra " -#~ "desconocida en su contexto. Si esta información no es suficiente para " -#~ "elegir el mejor remplazo para la palabra desconocida, puede pulsar en el " -#~ "documento que está revisando y leer un extracto mayor del texto y volver " -#~ "aquí para continuar la revisión.

    \n" -#~ "
    " - -#~ msgid "... the misspelled word shown in context ..." -#~ msgstr "" -#~ "... la palabra incorrectamente escrita mostrada en el contexto ..." - -#~ msgid "" -#~ "\n" -#~ "

    The unknown word was detected and considered unknown because it is not " -#~ "included in the dictionary.
    \n" -#~ "Click here if you consider the unknown word not to be misspelled, and you " -#~ "want to avoid wrongly detecting it again in the future. If you want to " -#~ "let it remain as is, but not add it to the dictionary, then click " -#~ "Ignore or Ignore All instead.

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    La palabra desconocida fue detectada y considerada como tal porque no " -#~ "está incluida en el diccionario.
    \n" -#~ "Pulse aquí si considera que la palabra desconocida está escrita " -#~ "correctamente y desea evitar su detección en el futuro. Si desea dejarla " -#~ "como está sin añadirla al diccionario, pulse Ignorar o Ignorar " -#~ "todas.

    \n" -#~ "
    " - -#~ msgid "<< Add to Dictionary" -#~ msgstr "<< Añadir al diccionario" - -#~ msgid "" -#~ "\n" -#~ "

    Click here to replace all occurrences of the unknown text with the " -#~ "text in the edit box above (to the left).

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Pulse aquí para remplazar todas las apariciones del texto desconocido " -#~ "con el texto del cuadro de texto de arriba (a la izquierda).

    \n" -#~ "
    " - -#~ msgid "R&eplace All" -#~ msgstr "R&eemplazar todas" - -#~ msgid "Suggestion List" -#~ msgstr "Lista de sugerencias" - -#~ msgid "" -#~ "\n" -#~ "

    If the unknown word is misspelled, you should check if the correction " -#~ "for it is available and if it is, click on it. If none of the words in " -#~ "this list is a good replacement you may type the correct word in the edit " -#~ "box above.

    \n" -#~ "

    To correct this word click Replace if you want to correct only " -#~ "this occurrence or Replace All if you want to correct all " -#~ "occurrences.

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Si la palabra desconocida está incorrectamente escrita, debería " -#~ "comprobar si la corrección está disponible y si lo está pulsar sobre " -#~ "ella. Si ninguna de las palabras en la lista es adecuada puede escribir " -#~ "la forma correcta en el cuadro de texto superior.

    \n" -#~ "

    Para corregir la palabra pulse Remplazar si desea corregir solo " -#~ "esta aparición de la palabra o Remplazar todas si desea corregir " -#~ "todas las apariciones.

    \n" -#~ "
    " - -#~ msgid "Suggested Words" -#~ msgstr "Palabras sugeridas" - -#~ msgid "" -#~ "\n" -#~ "

    Click here to replace this occurrence of the unknown text with the " -#~ "text in the edit box above (to the left).

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Pulse aquí para remplazar esta aparición del texto desconocido con el " -#~ "texto del área de edición superior (a la izquierda).

    \n" -#~ "
    " - -#~ msgid "&Replace" -#~ msgstr "&Remplazar" - -#~ msgid "" -#~ "\n" -#~ "

    If the unknown word is misspelled, you should type the correction for " -#~ "your misspelled word here or select it from the list below.

    \n" -#~ "

    You can then click Replace if you want to correct only this " -#~ "occurrence of the word or Replace All if you want to correct all " -#~ "occurrences.

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Si la palabra está incorrectamente escrita, debería escribirla " -#~ "correctamente o seleccionarla de la lista inferior.

    \n" -#~ "

    Entonces puede pulsar Remplazar si desea corregir solo esta " -#~ "aparición de la palabra o Remplazar todas si desea corregir todas " -#~ "las apariciones.

    \n" -#~ "
    " - -#~ msgid "Replace &with:" -#~ msgstr "Remplazar &por:" - -#~ msgid "" -#~ "\n" -#~ "

    Click here to let this occurrence of the unknown word remain as is.\n" -#~ "

    This action is useful when the word is a name, an acronym, a foreign " -#~ "word or any other unknown word that you want to use but not add to the " -#~ "dictionary.

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Pulse aquí para permitir que la aparición de esta palabra permanezca " -#~ "como está.

    \n" -#~ "

    Esta acción es útil cuando la palabra es un nombre propio, un acrónimo " -#~ "o cualquier otra palabra que desee usar, pero no añadir al diccionario.\n" -#~ "" - -#~ msgid "&Ignore" -#~ msgstr "&Ignorar" - -#~ msgid "" -#~ "\n" -#~ "

    Click here to let all occurrences of the unknown word remain as they " -#~ "are.

    \n" -#~ "

    This action is useful when the word is a name, an acronym, a foreign " -#~ "word or any other unknown word that you want to use but not add to the " -#~ "dictionary.

    \n" -#~ "
    " -#~ msgstr "" -#~ "\n" -#~ "

    Pulse aquí para permitir que todas las apariciones de la palabra " -#~ "desconocida permanezcan como están.

    \n" -#~ "

    Esta acción es útil cuando la palabra es un nombre propio, un " -#~ "acrónimo, una palabra extranjera o cualquier otra palabra que desee " -#~ "utilizar, pero no añadir al diccionario.

    \n" -#~ "
    " - -#~ msgid "I&gnore All" -#~ msgstr "I&gnorar todas" - -#~ msgid "S&uggest" -#~ msgstr "S&ugerir" - -#~ msgid "Language Selection" -#~ msgstr "Selección de idioma" - -#~ msgid "As-you-type spell checking enabled." -#~ msgstr "Corrección ortográfica sobre la marcha habilitada." - -#~ msgid "As-you-type spell checking disabled." -#~ msgstr "Corrección ortográfica sobre la marcha inhabilitada." - -#~ msgid "Incremental Spellcheck" -#~ msgstr "Corrector ortográfico incremental" - -#~ msgid "Too many misspelled words. As-you-type spell checking disabled." -#~ msgstr "" -#~ "Demasiadas palabras mal escritas. Corrección ortográfica sobre la marcha " -#~ "inhabilitada." - -#~ msgid "Check Spelling..." -#~ msgstr "Comprobar ortografía..." - -#~ msgid "Auto Spell Check" -#~ msgstr "Corrector ortográfico automático" - -#~ msgid "Allow Tabulations" -#~ msgstr "Permitir tabulaciones" - -#~ msgid "Spell Checking" -#~ msgstr "Corrección ortográfica" - -#~ msgid "&Back" -#~ msgstr "&Atrás" - -#~ msgctxt "Opposite to Back" -#~ msgid "&Next" -#~ msgstr "Siguie&nte" - -#~ msgid "Unknown View" -#~ msgstr "Vista desconocida" - -#~ msgid "" -#~ "A command-line application that can be used to run KUnitTest modules." -#~ msgstr "" -#~ "Una aplicación de línea de órdenes que se puede usar para ejecutar " -#~ "módulos KUnitTest." - -#~ msgid "Only run modules whose filenames match the regexp." -#~ msgstr "" -#~ "Ejecutar solo los módulos cuyos nombres coincidan con la expresión " -#~ "regular." - -#~ msgid "" -#~ "Only run tests modules which are found in the folder. Use the query " -#~ "option to select modules." -#~ msgstr "" -#~ "Ejecutar solo los módulos de prueba que se encuentren en la carpeta. Use " -#~ "la opción de consulta para seleccionar los módulos." - -#~ msgid "" -#~ "Disables debug capturing. You typically use this option when you use the " -#~ "GUI." -#~ msgstr "" -#~ "Inhabilita la captura de depuración. Usted usa habitualmente esta opción " -#~ "cuando usa el entorno gráfico." - -#~ msgid "KUnitTest ModRunner" -#~ msgstr "Prueba KUnit ModRunner" - -#~ msgid "(C) 2005 Jeroen Wijnhout" -#~ msgstr "© 2005 Jeroen Wijnhout" - -#~ msgid "DBus Backend error: connection to helper failed. %1" -#~ msgstr "Error del motor DBus: ha fallado la conexión con el asistente. %1" - -#~ msgid "" -#~ "DBus Backend error: could not contact the helper. Connection error: %1. " -#~ "Message error: %2" -#~ msgstr "" -#~ "Error del motor DBus: no se puede conectar con el asistente. Error de " -#~ "conexión: %1. Error de mensaje: %2" - -#~ msgid "DBus Backend error: received corrupt data from helper %1 %2" -#~ msgstr "" -#~ "Error del motor DBus: se han recibido datos dañados del asistente %1 %2" - -#~ msgid "Please contact your system administrator." -#~ msgstr "Contacte con el administrador de su sistema." - -#~ msgid "Configuration file \"%1\" not writable.\n" -#~ msgstr "No se puede escribir en el archivo de configuración «%1».\n" - -#~ msgid "am" -#~ msgstr "AM" - -#~ msgid "pm" -#~ msgstr "PM" - -#~ msgid "No target filename has been given." -#~ msgstr "No se ha proporcionado ningún nombre de archivo de destino." - -#~ msgid "Already opened." -#~ msgstr "Ya está abierto." - -#~ msgid "Insufficient permissions in target directory." -#~ msgstr "Permisos insuficientes en el directorio de destino." - -#~ msgid "Unable to open temporary file. Error was: %1." -#~ msgstr "No fue posible abrir el archivo temporal. El error ha sido: %1." - -#~ msgid "Synchronization to disk failed" -#~ msgstr "La sincronización con el disco ha fallado" - -#~ msgid "Error during rename." -#~ msgstr "Error durante el cambio de nombre." - -#~ msgid "kde4-config" -#~ msgstr "kde4-config" - -#~ msgid "A little program to output installation paths" -#~ msgstr "Un pequeño programa para extraer rutas de instalación" - -#~ msgid "(C) 2000 Stephan Kulow" -#~ msgstr "© 2000 Stephan Kulow" - -#~ msgid "Left for legacy support" -#~ msgstr "Dejado para implementación heredada" - -#~ msgid "Compiled in prefix for KDE libraries" -#~ msgstr "Compilado con el prefijo de las bibliotecas de KDE" - -#~ msgid "Compiled in exec_prefix for KDE libraries" -#~ msgstr "Compilado con el exec_prefix de las bibliotecas de KDE" - -#~ msgid "Compiled in library path suffix" -#~ msgstr "Compilado con el sufijo de la ruta de la biblioteca" - -#~ msgid "Prefix in $HOME used to write files" -#~ msgstr "Usado prefijo en $HOME para escribir archivos" - -#~ msgid "Compiled in version string for KDE libraries" -#~ msgstr "Compilado con la cadena de versión para las bibliotecas de KDE" - -#~ msgid "Available KDE resource types" -#~ msgstr "Disponibles tipos de recursos de KDE" - -#~ msgid "Search path for resource type" -#~ msgstr "Ruta de búsqueda para tipo de recurso" - -#~ msgid "Find filename inside the resource type given to --path" -#~ msgstr "" -#~ "Buscar el nombre de archivo dentro del tipo de recurso indicado en --path" - -#~ msgid "User path: desktop|autostart|document" -#~ msgstr "Ruta de usuario: escritorio|inicio automático|documento" - -#~ msgid "Prefix to install resource files to" -#~ msgstr "Prefijo a usar para instalar los archivos de recursos" - -#~ msgid "Installation prefix for Qt" -#~ msgstr "Prefijo de instalación para Qt" - -#~ msgid "Location of installed Qt binaries" -#~ msgstr "Ubicación de los binarios Qt instalados" - -#~ msgid "Location of installed Qt libraries" -#~ msgstr "Ubicación de las bibliotecas Qt instaladas" - -#~ msgid "Location of installed Qt plugins" -#~ msgstr "Ubicación de los complementos Qt instalados" - -#~ msgid "Applications menu (.desktop files)" -#~ msgstr "Menú de aplicaciones (archivos .desktop)" - -#~ msgid "Autostart directories" -#~ msgstr "Carpetas de inicio automático" - -#~ msgid "Cached information (e.g. favicons, web-pages)" -#~ msgstr "Información en caché (p. ej., favicons, páginas web)" - -#~ msgid "CGIs to run from kdehelp" -#~ msgstr "CGIs a ejecutar desde kdehelp" - -#~ msgid "Configuration files" -#~ msgstr "Archivos de configuración" - -#~ msgid "Where applications store data" -#~ msgstr "El lugar donde las aplicaciones almacenan datos" - -#~ msgid "Emoticons" -#~ msgstr "Emoticonos" - -#~ msgid "Executables in $prefix/bin" -#~ msgstr "Ejecutables en $prefix/bin" - -#~ msgid "HTML documentation" -#~ msgstr "Documentación HTML" - -#~ msgid "Icons" -#~ msgstr "Iconos" - -#~ msgid "Configuration description files" -#~ msgstr "Archivos descriptivos de configuración" - -#~ msgid "Libraries" -#~ msgstr "Bibliotecas" - -#~ msgid "Includes/Headers" -#~ msgstr "Includes/cabeceras" - -#~ msgid "Translation files for KLocale" -#~ msgstr "Archivos de traducción para KLocale" - -#~ msgid "Mime types" -#~ msgstr "Tipos MIME" - -#~ msgid "Loadable modules" -#~ msgstr "Módulos cargables" - -#~ msgid "Legacy pixmaps" -#~ msgstr "Mapas de bits heredados" - -#~ msgid "Qt plugins" -#~ msgstr "Complementos Qt" - -#~ msgid "Services" -#~ msgstr "Servicios" - -#~ msgid "Service types" -#~ msgstr "Tipos de servicios" - -#~ msgid "Application sounds" -#~ msgstr "Sonidos de aplicaciones" - -#~ msgid "Templates" -#~ msgstr "Plantillas" - -#~ msgid "Wallpapers" -#~ msgstr "Fondos de escritorio" - -#~ msgid "XDG Application menu (.desktop files)" -#~ msgstr "Menú de aplicación XDG (archivos .desktop)" - -#~ msgid "XDG Menu descriptions (.directory files)" -#~ msgstr "Descripciones de menú XDG (archivos .directory)" - -#~ msgid "XDG Icons" -#~ msgstr "Iconos XDG" - -#~ msgid "XDG Mime Types" -#~ msgstr "Tipos MIME XDG" - -#~ msgid "XDG Menu layout (.menu files)" -#~ msgstr "Disposición del menú XDG (archivos .menu)" - -#~ msgid "XDG autostart directory" -#~ msgstr "Carpeta XDG de inicio automático" - -#~ msgid "Temporary files (specific for both current host and current user)" -#~ msgstr "" -#~ "Archivos temporales (específicos para el usuario y máquina actuales)" - -#~ msgid "UNIX Sockets (specific for both current host and current user)" -#~ msgstr "Sockets UNIX (específicos para el usuario y máquina actuales)" - -#~ msgid "%1 - unknown type\n" -#~ msgstr "%1 - tipo desconocido\n" - -#~ msgid "%1 - unknown type of userpath\n" -#~ msgstr "%1 - tipo de ruta de usuario desconocido\n" - -#~ msgid "" -#~ "No licensing terms for this program have been specified.\n" -#~ "Please check the documentation or the source for any\n" -#~ "licensing terms.\n" -#~ msgstr "" -#~ "No se han indicado los términos de la licencia de este programa.\n" -#~ "Consulte la documentación o el código fuente para ver\n" -#~ "los términos de la licencia.\n" - -#~ msgid "This program is distributed under the terms of the %1." -#~ msgstr "Este programa se distribuye bajo los términos de la %1." - -#~ msgctxt "@item license (short name)" -#~ msgid "GPL v2" -#~ msgstr "GPL v2" - -#~ msgctxt "@item license" -#~ msgid "GNU General Public License Version 2" -#~ msgstr "Licencia Pública General de GNU, versión 2" - -#~ msgctxt "@item license (short name)" -#~ msgid "LGPL v2" -#~ msgstr "LGPL v2" - -#~ msgctxt "@item license" -#~ msgid "GNU Lesser General Public License Version 2" -#~ msgstr "Licencia Pública General Menor de GNU, versión 2" - -#~ msgctxt "@item license (short name)" -#~ msgid "BSD License" -#~ msgstr "Licencia BSD" - -#~ msgctxt "@item license" -#~ msgid "BSD License" -#~ msgstr "Licencia BSD" - -#~ msgctxt "@item license (short name)" -#~ msgid "Artistic License" -#~ msgstr "Licencia Artística" - -#~ msgctxt "@item license" -#~ msgid "Artistic License" -#~ msgstr "Licencia Artística" - -#~ msgctxt "@item license (short name)" -#~ msgid "QPL v1.0" -#~ msgstr "QPL v1.0" - -#~ msgctxt "@item license" -#~ msgid "Q Public License" -#~ msgstr "Licencia Pública Q" - -#~ msgctxt "@item license (short name)" -#~ msgid "GPL v3" -#~ msgstr "GPL v3" - -#~ msgctxt "@item license" -#~ msgid "GNU General Public License Version 3" -#~ msgstr "Licencia Pública General de GNU, versión 3" - -#~ msgctxt "@item license (short name)" -#~ msgid "LGPL v3" -#~ msgstr "LGPL v3" - -#~ msgctxt "@item license" -#~ msgid "GNU Lesser General Public License Version 3" -#~ msgstr "Licencia Pública General Menor de GNU, versión 3" - -#~ msgctxt "@item license" -#~ msgid "Custom" -#~ msgstr "Personalizada" - -#~ msgctxt "@item license" -#~ msgid "Not specified" -#~ msgstr "No especificada" - -#~ msgctxt "replace this with information about your translation team" -#~ msgid "" -#~ "

    KDE is translated into many languages thanks to the work of the " -#~ "translation teams all over the world.

    For more information on KDE " -#~ "internationalization visit http://l10n." -#~ "kde.org

    " -#~ msgstr "" -#~ "

    KDE se traduce a muchos idiomas gracias al trabajo de equipos de " -#~ "traducción de todo el mundo.

    Para más información sobre la " -#~ "internacionalización de KDE, visite http://l10n.kde.org

    " - -#~ msgid "Use the X-server display 'displayname'" -#~ msgstr "Usar la pantalla «displayname» del servidor X" - -#~ msgid "Use the QWS display 'displayname'" -#~ msgstr "Usar la pantalla QWS «displayname»" - -#~ msgid "Restore the application for the given 'sessionId'" -#~ msgstr "Restaurar la aplicación para el Id. «sessionId» dado" - -#~ msgid "" -#~ "Causes the application to install a private color\n" -#~ "map on an 8-bit display" -#~ msgstr "" -#~ "Provoca que la aplicación instale un mapa de color privado\n" -#~ "en una pantalla de 8 bits" - -#~ msgid "" -#~ "Limits the number of colors allocated in the color\n" -#~ "cube on an 8-bit display, if the application is\n" -#~ "using the QApplication::ManyColor color\n" -#~ "specification" -#~ msgstr "" -#~ "Limita el número de colores reservados en el cubo de color\n" -#~ "en una pantalla de 8 bits, si la aplicación usa\n" -#~ "la especificación QApplication::ManyColor" - -#~ msgid "tells Qt to never grab the mouse or the keyboard" -#~ msgstr "Impide que Qt capture el ratón o el teclado" - -#~ msgid "" -#~ "running under a debugger can cause an implicit\n" -#~ "-nograb, use -dograb to override" -#~ msgstr "" -#~ "ejecutarlo con un depurador puede provocar un -nograb\n" -#~ "implícito; use -dograb para evitarlo" - -#~ msgid "switches to synchronous mode for debugging" -#~ msgstr "cambia a modo síncrono para depurar" - -#~ msgid "defines the application font" -#~ msgstr "define el tipo de letra para la aplicación" - -#~ msgid "" -#~ "sets the default background color and an\n" -#~ "application palette (light and dark shades are\n" -#~ "calculated)" -#~ msgstr "" -#~ "establece el color predeterminado de fondo y una\n" -#~ "paleta de colores (sombreados claros y oscuros\n" -#~ "son calculados)" - -#~ msgid "sets the default foreground color" -#~ msgstr "especifica el color predeterminado de primer plano" - -#~ msgid "sets the default button color" -#~ msgstr "especifica el color predeterminado de los botones" - -#~ msgid "sets the application name" -#~ msgstr "especifica el nombre de la aplicación" - -#~ msgid "sets the application title (caption)" -#~ msgstr "especifica el título de la aplicación (pie)" - -#~ msgid "load the testability framework" -#~ msgstr "cargar la infraestructura para la realización de pruebas" - -#~ msgid "" -#~ "forces the application to use a TrueColor visual on\n" -#~ "an 8-bit display" -#~ msgstr "" -#~ "fuerza a la aplicación a usar una paleta de\n" -#~ "colores de color verdadero en una pantalla de 8 bits" - -#~ msgid "" -#~ "sets XIM (X Input Method) input style. Possible\n" -#~ "values are onthespot, overthespot, offthespot and\n" -#~ "root" -#~ msgstr "" -#~ "establece un estilo de entrada XIM (X Input Method).\n" -#~ "Los valores posibles son: «onthespot», «overthespot»,\n" -#~ "«offthespot» y «root»" - -#~ msgid "set XIM server" -#~ msgstr "especifica el servidor XIM" - -#~ msgid "disable XIM" -#~ msgstr "inhabilita XIM" - -#~ msgid "forces the application to run as QWS Server" -#~ msgstr "fuerza la aplicación a ejecutarse como servidor QWS" - -#~ msgid "mirrors the whole layout of widgets" -#~ msgstr "replica el diseño completo de elementos gráficos" - -#~ msgid "applies the Qt stylesheet to the application widgets" -#~ msgstr "" -#~ "aplica la hoja de estilo Qt a los elementos gráficos de la aplicación" - -#~ msgid "" -#~ "use a different graphics system instead of the default one, options are " -#~ "raster and opengl (experimental)" -#~ msgstr "" -#~ "usar un sistema gráfico distinto en lugar del predeterminado, las " -#~ "opciones son raster y opengl (experimental)" - -#~ msgid "" -#~ "QML JS debugger information. Application must be\n" -#~ "built with -DQT_DECLARATIVE_DEBUG for the debugger to be\n" -#~ "enabled" -#~ msgstr "" -#~ "Información del depurador JS de QML. La aplicación debe estar\n" -#~ "compilada con -DQT_DECLARATIVE_DEBUG para que el depurador\n" -#~ "esté activo" - -#~ msgid "Use 'caption' as name in the titlebar" -#~ msgstr "Usar «caption» como nombre en la barra de título" - -#~ msgid "Use 'icon' as the application icon" -#~ msgstr "Usar «icon» como icono de la aplicación" - -#~ msgid "Use alternative configuration file" -#~ msgstr "Utilizar archivo alternativo de configuración" - -#~ msgid "Disable crash handler, to get core dumps" -#~ msgstr "" -#~ "Inhabilitar el manejador de fallos, para obtener volcados de memoria" - -#~ msgid "Waits for a WM_NET compatible windowmanager" -#~ msgstr "Espera a un gestor de ventanas compatible con WM_NET" - -#~ msgid "sets the application GUI style" -#~ msgstr "establece el estilo de la interfaz gráfica de la aplicación" - -#~ msgid "" -#~ "sets the client geometry of the main widget - see man X for the argument " -#~ "format (usually WidthxHeight+XPos+YPos)" -#~ msgstr "" -#~ "establece la geometría cliente del elemento gráfico principal. Vea man X " -#~ "para conocer el formato del argumento (normalmente WidthxHeight+XPos+YPos)" - -#~ msgid "KDE Application" -#~ msgstr "Aplicación de KDE" - -#~ msgid "Qt" -#~ msgstr "Qt" - -#~ msgid "KDE" -#~ msgstr "KDE" - -#~ msgid "Unknown option '%1'." -#~ msgstr "Opción desconocida «%1»." - -#~ msgctxt "@info:shell %1 is cmdoption name" -#~ msgid "'%1' missing." -#~ msgstr "Falta «%1»." - -#~ msgctxt "" -#~ "@info:shell message on appcmd --version; do not translate 'Development " -#~ "Platform'%3 application name, other %n version strings" -#~ msgid "" -#~ "Qt: %1\n" -#~ "KDE Development Platform: %2\n" -#~ "%3: %4\n" -#~ msgstr "" -#~ "Qt: %1\n" -#~ "Plataforma de desarrollo de KDE: %2\n" -#~ "%3: %4\n" - -#~ msgctxt "the 2nd argument is a list of name+address, one on each line" -#~ msgid "" -#~ "%1 was written by\n" -#~ "%2" -#~ msgstr "" -#~ "%1 fue escrito por\n" -#~ "%2" - -#~ msgid "" -#~ "This application was written by somebody who wants to remain anonymous." -#~ msgstr "" -#~ "Esta aplicación fue escrita por alguien que quiere permanecer anónimo." - -#~ msgid "Please use http://bugs.kde.org to report bugs.\n" -#~ msgstr "Utilice http://bugs.kde.org para informar de fallos.\n" - -#~ msgid "Please report bugs to %1.\n" -#~ msgstr "Informe de fallos a %1.\n" - -#~ msgid "Unexpected argument '%1'." -#~ msgstr "Argumento inesperado «%1»." - -#~ msgid "Use --help to get a list of available command line options." -#~ msgstr "" -#~ "Use --help para obtener una lista de las opciones disponibles en la línea " -#~ "de órdenes." - -#~ msgid "[options] " -#~ msgstr "[opciones] " - -#~ msgid "[%1-options]" -#~ msgstr "[opciones-%1]" - -#~ msgid "Usage: %1 %2\n" -#~ msgstr "Modo de uso: %1 %2\n" - -#~ msgid "" -#~ "\n" -#~ "Generic options:\n" -#~ msgstr "" -#~ "\n" -#~ "Opciones genéricas:\n" - -#~ msgid "Show help about options" -#~ msgstr "Mostrar ayuda sobre las opciones" - -#~ msgid "Show %1 specific options" -#~ msgstr "Mostrar las opciones específicas de %1" - -#~ msgid "Show all options" -#~ msgstr "Mostrar todas las opciones" - -#~ msgid "Show author information" -#~ msgstr "Mostrar información sobre el autor" - -#~ msgid "Show version information" -#~ msgstr "Mostrar información de la versión" - -#~ msgid "Show license information" -#~ msgstr "Mostrar información de la licencia" - -#~ msgid "End of options" -#~ msgstr "Fin de las opciones" - -#~ msgid "" -#~ "\n" -#~ "%1 options:\n" -#~ msgstr "" -#~ "\n" -#~ "Opciones de %1:\n" - -#~ msgid "" -#~ "\n" -#~ "Options:\n" -#~ msgstr "" -#~ "\n" -#~ "Opciones:\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments:\n" -#~ msgstr "" -#~ "\n" -#~ "Argumentos:\n" - -#~ msgid "The files/URLs opened by the application will be deleted after use" -#~ msgstr "" -#~ "Los archivos/URL abiertos por la aplicación serán borrados después de ser " -#~ "usados" - -#~ msgid "KDE-tempfile" -#~ msgstr "KDE-tempfile" - -#~ msgid "" -#~ "Could not launch the KDE Help Center:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "No se pudo iniciar el Centro de ayuda de KDE:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not Launch Help Center" -#~ msgstr "No se pudo iniciar el Centro de ayuda" - -#~ msgctxt "@item Text character set" -#~ msgid "Western European" -#~ msgstr "Europeo occidental" - -#~ msgctxt "@item Text character set" -#~ msgid "Central European" -#~ msgstr "Centroeuropeo" - -#~ msgctxt "@item Text character set" -#~ msgid "Baltic" -#~ msgstr "Báltico" - -#~ msgctxt "@item Text character set" -#~ msgid "South-Eastern Europe" -#~ msgstr "Europeo suroriental" - -#~ msgctxt "@item Text character set" -#~ msgid "Turkish" -#~ msgstr "Turco" - -#~ msgctxt "@item Text character set" -#~ msgid "Cyrillic" -#~ msgstr "Cirílico" - -#~ msgctxt "@item Text character set" -#~ msgid "Chinese Traditional" -#~ msgstr "Chino tradicional" - -#~ msgctxt "@item Text character set" -#~ msgid "Chinese Simplified" -#~ msgstr "Chino simplificado" - -#~ msgctxt "@item Text character set" -#~ msgid "Korean" -#~ msgstr "Coreano" - -#~ msgctxt "@item Text character set" -#~ msgid "Japanese" -#~ msgstr "Japonés" - -#~ msgctxt "@item Text character set" -#~ msgid "Greek" -#~ msgstr "Griego" - -#~ msgctxt "@item Text character set" -#~ msgid "Arabic" -#~ msgstr "Árabe" - -#~ msgctxt "@item Text character set" -#~ msgid "Hebrew" -#~ msgstr "Hebreo" - -#~ msgctxt "@item Text character set" -#~ msgid "Thai" -#~ msgstr "Tailandés" - -#~ msgctxt "@item Text character set" -#~ msgid "Unicode" -#~ msgstr "Unicode" - -#~ msgctxt "@item Text character set" -#~ msgid "Northern Saami" -#~ msgstr "Saami del Norte" - -#~ msgctxt "@item Text character set" -#~ msgid "Other" -#~ msgstr "Otro" - -#~ msgctxt "@item %1 character set, %2 encoding" -#~ msgid "%1 ( %2 )" -#~ msgstr "%1 ( %2 )" - -#~ msgctxt "@item" -#~ msgid "Other encoding (%1)" -#~ msgstr "Otra codificación (%1)" - -#~ msgctxt "@item Text encoding: %1 character set, %2 encoding" -#~ msgid "%1 ( %2 )" -#~ msgstr "%1 ( %2 )" - -#~ msgctxt "@item Text character set" -#~ msgid "Disabled" -#~ msgstr "Inhabilitado" - -#~ msgctxt "@item Text character set" -#~ msgid "Universal" -#~ msgstr "Universal" - -#~ msgctxt "digit set" -#~ msgid "Arabic-Indic" -#~ msgstr "Árabe índico" - -#~ msgctxt "digit set" -#~ msgid "Bengali" -#~ msgstr "Bengalí" - -#~ msgctxt "digit set" -#~ msgid "Devanagari" -#~ msgstr "Devanagari" - -#~ msgctxt "digit set" -#~ msgid "Eastern Arabic-Indic" -#~ msgstr "Árabe índico oriental" - -#~ msgctxt "digit set" -#~ msgid "Gujarati" -#~ msgstr "Gujarati" - -#~ msgctxt "digit set" -#~ msgid "Gurmukhi" -#~ msgstr "Gurmukhi" - -#~ msgctxt "digit set" -#~ msgid "Kannada" -#~ msgstr "Canarés" - -#~ msgctxt "digit set" -#~ msgid "Khmer" -#~ msgstr "Jemer" - -#~ msgctxt "digit set" -#~ msgid "Malayalam" -#~ msgstr "Malayalam" - -#~ msgctxt "digit set" -#~ msgid "Oriya" -#~ msgstr "Oriya" - -#~ msgctxt "digit set" -#~ msgid "Tamil" -#~ msgstr "Tamil" - -#~ msgctxt "digit set" -#~ msgid "Telugu" -#~ msgstr "Telugú" - -#~ msgctxt "digit set" -#~ msgid "Thai" -#~ msgstr "Tailandés" - -#~ msgctxt "digit set" -#~ msgid "Arabic" -#~ msgstr "Árabe" - -#~ msgctxt "name of digit set with digit string, e.g. 'Arabic (0123456789)'" -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgctxt "size in bytes" -#~ msgid "%1 B" -#~ msgstr "%1 B" - -#~ msgctxt "size in 1000 bytes" -#~ msgid "%1 kB" -#~ msgstr "%1 kB" - -#~ msgctxt "size in 10^6 bytes" -#~ msgid "%1 MB" -#~ msgstr "%1 MB" - -#~ msgctxt "size in 10^9 bytes" -#~ msgid "%1 GB" -#~ msgstr "%1 GB" - -#~ msgctxt "size in 10^12 bytes" -#~ msgid "%1 TB" -#~ msgstr "%1 TB" - -#~ msgctxt "size in 10^15 bytes" -#~ msgid "%1 PB" -#~ msgstr "%1 PB" - -#~ msgctxt "size in 10^18 bytes" -#~ msgid "%1 EB" -#~ msgstr "%1 EB" - -#~ msgctxt "size in 10^21 bytes" -#~ msgid "%1 ZB" -#~ msgstr "%1 ZB" - -#~ msgctxt "size in 10^24 bytes" -#~ msgid "%1 YB" -#~ msgstr "%1 YB" - -#~ msgctxt "memory size in 1024 bytes" -#~ msgid "%1 KB" -#~ msgstr "%1 KB" - -#~ msgctxt "memory size in 2^20 bytes" -#~ msgid "%1 MB" -#~ msgstr "%1 MB" - -#~ msgctxt "memory size in 2^30 bytes" -#~ msgid "%1 GB" -#~ msgstr "%1 GB" - -#~ msgctxt "memory size in 2^40 bytes" -#~ msgid "%1 TB" -#~ msgstr "%1 TB" - -#~ msgctxt "memory size in 2^50 bytes" -#~ msgid "%1 PB" -#~ msgstr "%1 PB" - -#~ msgctxt "memory size in 2^60 bytes" -#~ msgid "%1 EB" -#~ msgstr "%1 EB" - -#~ msgctxt "memory size in 2^70 bytes" -#~ msgid "%1 ZB" -#~ msgstr "%1 ZB" - -#~ msgctxt "memory size in 2^80 bytes" -#~ msgid "%1 YB" -#~ msgstr "%1 YB" - -#~ msgctxt "size in 1024 bytes" -#~ msgid "%1 KiB" -#~ msgstr "%1 KiB" - -#~ msgctxt "size in 2^20 bytes" -#~ msgid "%1 MiB" -#~ msgstr "%1 MiB" - -#~ msgctxt "size in 2^30 bytes" -#~ msgid "%1 GiB" -#~ msgstr "%1 GiB" - -#~ msgctxt "size in 2^40 bytes" -#~ msgid "%1 TiB" -#~ msgstr "%1 TiB" - -#~ msgctxt "size in 2^50 bytes" -#~ msgid "%1 PiB" -#~ msgstr "%1 PiB" - -#~ msgctxt "size in 2^60 bytes" -#~ msgid "%1 EiB" -#~ msgstr "%1 EiB" - -#~ msgctxt "size in 2^70 bytes" -#~ msgid "%1 ZiB" -#~ msgstr "%1 ZiB" - -#~ msgctxt "size in 2^80 bytes" -#~ msgid "%1 YiB" -#~ msgstr "%1 YiB" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 days" -#~ msgid "%1 days" -#~ msgstr "%1 días" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 hours" -#~ msgid "%1 hours" -#~ msgstr "%1 horas" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 minutes" -#~ msgid "%1 minutes" -#~ msgstr "%1 minutos" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 seconds" -#~ msgid "%1 seconds" -#~ msgstr "%1 segundos" - -#~ msgctxt "@item:intext" -#~ msgid "%1 millisecond" -#~ msgid_plural "%1 milliseconds" -#~ msgstr[0] "%1 milisegundo" -#~ msgstr[1] "%1 milisegundos" - -#~ msgctxt "@item:intext" -#~ msgid "1 day" -#~ msgid_plural "%1 days" -#~ msgstr[0] "1 día" -#~ msgstr[1] "%1 días" - -#~ msgctxt "@item:intext" -#~ msgid "1 hour" -#~ msgid_plural "%1 hours" -#~ msgstr[0] "1 hora" -#~ msgstr[1] "%1 horas" - -#~ msgctxt "@item:intext" -#~ msgid "1 minute" -#~ msgid_plural "%1 minutes" -#~ msgstr[0] "1 minuto" -#~ msgstr[1] "%1 minutos" - -#~ msgctxt "@item:intext" -#~ msgid "1 second" -#~ msgid_plural "%1 seconds" -#~ msgstr[0] "1 segundo" -#~ msgstr[1] "%1 segundos" - -#~ msgctxt "" -#~ "@item:intext days and hours. This uses the previous item:intext messages. " -#~ "If this does not fit the grammar of your language please contact the i18n " -#~ "team to solve the problem" -#~ msgid "%1 and %2" -#~ msgstr "%1 y %2" - -#~ msgctxt "" -#~ "@item:intext hours and minutes. This uses the previous item:intext " -#~ "messages. If this does not fit the grammar of your language please " -#~ "contact the i18n team to solve the problem" -#~ msgid "%1 and %2" -#~ msgstr "%1 y %2" - -#~ msgctxt "" -#~ "@item:intext minutes and seconds. This uses the previous item:intext " -#~ "messages. If this does not fit the grammar of your language please " -#~ "contact the i18n team to solve the problem" -#~ msgid "%1 and %2" -#~ msgstr "%1 y %2" - -#~ msgctxt "Before Noon KLocale::LongName" -#~ msgid "Ante Meridiem" -#~ msgstr "Ante merídiem" - -#~ msgctxt "Before Noon KLocale::ShortName" -#~ msgid "AM" -#~ msgstr "AM" - -#~ msgctxt "Before Noon KLocale::NarrowName" -#~ msgid "A" -#~ msgstr "A" - -#~ msgctxt "After Noon KLocale::LongName" -#~ msgid "Post Meridiem" -#~ msgstr "Post merídiem" - -#~ msgctxt "After Noon KLocale::ShortName" -#~ msgid "PM" -#~ msgstr "PM" - -#~ msgctxt "After Noon KLocale::NarrowName" -#~ msgid "P" -#~ msgstr "P" - -#~ msgid "Today" -#~ msgstr "Hoy" - -#~ msgid "Yesterday" -#~ msgstr "Ayer" - -#~ msgctxt "concatenation of dates and time" -#~ msgid "%1 %2" -#~ msgstr "%1 %2" - -#~ msgctxt "concatenation of date/time and time zone" -#~ msgid "%1 %2" -#~ msgstr "%1 %2" - -#~ msgctxt "@title/plain" -#~ msgid "== %1 ==" -#~ msgstr "== %1 ==" - -#~ msgctxt "@title/rich" -#~ msgid "

    %1

    " -#~ msgstr "

    %1

    " - -#~ msgctxt "@subtitle/plain" -#~ msgid "~ %1 ~" -#~ msgstr "~ %1 ~" - -#~ msgctxt "@subtitle/rich" -#~ msgid "

    %1

    " -#~ msgstr "

    %1

    " - -#~ msgctxt "@item/plain" -#~ msgid " * %1" -#~ msgstr " * %1" - -#~ msgctxt "@item/rich" -#~ msgid "
  • %1
  • " -#~ msgstr "
  • %1
  • " - -#~ msgctxt "@note/plain" -#~ msgid "Note: %1" -#~ msgstr "Nota: %1" - -#~ msgctxt "@note/rich" -#~ msgid "Note: %1" -#~ msgstr "Nota: %1" - -#~ msgctxt "" -#~ "@note-with-label/plain\n" -#~ "%1 is the note label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "" -#~ "@note-with-label/rich\n" -#~ "%1 is the note label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "@warning/plain" -#~ msgid "WARNING: %1" -#~ msgstr "ADVERTENCIA: %1" - -#~ msgctxt "@warning/rich" -#~ msgid "Warning: %1" -#~ msgstr "Advertencia: %1" - -#~ msgctxt "" -#~ "@warning-with-label/plain\n" -#~ "%1 is the warning label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "" -#~ "@warning-with-label/rich\n" -#~ "%1 is the warning label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "" -#~ "@link-with-description/plain\n" -#~ "%1 is the URL, %2 is the descriptive text" -#~ msgid "%2 (%1)" -#~ msgstr "%2 (%1)" - -#~ msgctxt "" -#~ "@link-with-description/rich\n" -#~ "%1 is the URL, %2 is the descriptive text" -#~ msgid "%2" -#~ msgstr "%2" - -#~ msgctxt "@filename/plain" -#~ msgid "‘%1’" -#~ msgstr "‘%1’" - -#~ msgctxt "@filename/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@application/plain" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@application/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@command/plain" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@command/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "" -#~ "@command-with-section/plain\n" -#~ "%1 is the command name, %2 is its man section" -#~ msgid "%1(%2)" -#~ msgstr "%1(%2)" - -#~ msgctxt "" -#~ "@command-with-section/rich\n" -#~ "%1 is the command name, %2 is its man section" -#~ msgid "%1(%2)" -#~ msgstr "%1(%2)" - -#~ msgctxt "@resource/plain" -#~ msgid "“%1”" -#~ msgstr "«%1»" - -#~ msgctxt "@resource/rich" -#~ msgid "“%1”" -#~ msgstr "«%1»" - -#~ msgctxt "@icode/plain" -#~ msgid "“%1”" -#~ msgstr "«%1»" - -#~ msgctxt "@icode/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@shortcut/plain" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@shortcut/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@interface/plain" -#~ msgid "|%1|" -#~ msgstr "|%1|" - -#~ msgctxt "@interface/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@emphasis/plain" -#~ msgid "*%1*" -#~ msgstr "*%1*" - -#~ msgctxt "@emphasis/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@emphasis-strong/plain" -#~ msgid "**%1**" -#~ msgstr "**%1**" - -#~ msgctxt "@emphasis-strong/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@placeholder/plain" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "@placeholder/rich" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "@email/plain" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "@email/rich" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "" -#~ "@email-with-name/plain\n" -#~ "%1 is name, %2 is address" -#~ msgid "%1 <%2>" -#~ msgstr "%1 <%2>" - -#~ msgctxt "" -#~ "@email-with-name/rich\n" -#~ "%1 is name, %2 is address" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@envar/plain" -#~ msgid "$%1" -#~ msgstr "$%1" - -#~ msgctxt "@envar/rich" -#~ msgid "$%1" -#~ msgstr "$%1" - -#~ msgctxt "@message/plain" -#~ msgid "/%1/" -#~ msgstr "/%1/" - -#~ msgctxt "@message/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "shortcut-key-delimiter/plain" -#~ msgid "+" -#~ msgstr "+" - -#~ msgctxt "shortcut-key-delimiter/rich" -#~ msgid "+" -#~ msgstr "+" - -#~ msgctxt "gui-path-delimiter/plain" -#~ msgid "→" -#~ msgstr "→" - -#~ msgctxt "gui-path-delimiter/rich" -#~ msgid "→" -#~ msgstr "→" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Alt" -#~ msgstr "Alt" - -#~ msgctxt "keyboard-key-name" -#~ msgid "AltGr" -#~ msgstr "AltGr" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Backspace" -#~ msgstr "Retroceso" - -#~ msgctxt "keyboard-key-name" -#~ msgid "CapsLock" -#~ msgstr "BloqMayús" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Control" -#~ msgstr "Control" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Ctrl" -#~ msgstr "Ctrl" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Del" -#~ msgstr "Supr" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Delete" -#~ msgstr "Suprimir" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Down" -#~ msgstr "AvPág" - -#~ msgctxt "keyboard-key-name" -#~ msgid "End" -#~ msgstr "Fin" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Enter" -#~ msgstr "Intro" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Esc" -#~ msgstr "Esc" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Escape" -#~ msgstr "Escape" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Home" -#~ msgstr "Inicio" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Hyper" -#~ msgstr "Hyper" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Ins" -#~ msgstr "Insert" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Insert" -#~ msgstr "Insertar" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Left" -#~ msgstr "Izquierda" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Menu" -#~ msgstr "Menú" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Meta" -#~ msgstr "Meta" - -#~ msgctxt "keyboard-key-name" -#~ msgid "NumLock" -#~ msgstr "Bloq Num" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PageDown" -#~ msgstr "Re Pág" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PageUp" -#~ msgstr "Av Pág" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PgDown" -#~ msgstr "Re Pág" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PgUp" -#~ msgstr "Av Pág" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PauseBreak" -#~ msgstr "Pausa Inter" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PrintScreen" -#~ msgstr "Impr Pant" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PrtScr" -#~ msgstr "Impr Pant" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Return" -#~ msgstr "Ejecutar" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Right" -#~ msgstr "Derecha" - -#~ msgctxt "keyboard-key-name" -#~ msgid "ScrollLock" -#~ msgstr "BloqDespl" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Shift" -#~ msgstr "Mayúsculas" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Space" -#~ msgstr "Espacio" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Super" -#~ msgstr "Super" - -#~ msgctxt "keyboard-key-name" -#~ msgid "SysReq" -#~ msgstr "PetSis" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Tab" -#~ msgstr "Tab" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Up" -#~ msgstr "Arriba" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Win" -#~ msgstr "Win" - -#~ msgctxt "keyboard-key-name" -#~ msgid "F%1" -#~ msgstr "F%1" - -#~ msgid "no error" -#~ msgstr "sin error" - -#~ msgid "requested family not supported for this host name" -#~ msgstr "familia solicitada no permitida para este nombre de máquina" - -#~ msgid "temporary failure in name resolution" -#~ msgstr "fallo temporal en la resolución de nombres" - -#~ msgid "non-recoverable failure in name resolution" -#~ msgstr "fallo no recuperable en la resolución de nombres" - -#~ msgid "invalid flags" -#~ msgstr "indicadores no válidos" - -#~ msgid "memory allocation failure" -#~ msgstr "fallo de asignación de memoria" - -#~ msgid "name or service not known" -#~ msgstr "nombre o servicio desconocidos" - -#~ msgid "requested family not supported" -#~ msgstr "familia solicitada no permitida" - -#~ msgid "requested service not supported for this socket type" -#~ msgstr "servicio solicitado no permitido para este tipo de socket" - -#~ msgid "requested socket type not supported" -#~ msgstr "socket solicitado no permitido" - -#~ msgid "unknown error" -#~ msgstr "Error desconocido" - -#~ msgctxt "1: the i18n'ed system error code, from errno" -#~ msgid "system error: %1" -#~ msgstr "error del sistema: %1" - -#~ msgid "request was canceled" -#~ msgstr "solicitud cancelada" - -#~ msgctxt "1: the unknown socket address family number" -#~ msgid "Unknown family %1" -#~ msgstr "Familia desconocida %1" - -#~ msgctxt "Socket error code NoError" -#~ msgid "no error" -#~ msgstr "sin error" - -#~ msgctxt "Socket error code LookupFailure" -#~ msgid "name lookup has failed" -#~ msgstr "la búsqueda de nombre ha fallado" - -#~ msgctxt "Socket error code AddressInUse" -#~ msgid "address already in use" -#~ msgstr "la dirección ya está en uso" - -#~ msgctxt "Socket error code AlreadyBound" -#~ msgid "socket is already bound" -#~ msgstr "el «socket» ya está asociado" - -#~ msgctxt "Socket error code AlreadyCreated" -#~ msgid "socket is already created" -#~ msgstr "el socket ya está creado" - -#~ msgctxt "Socket error code NotBound" -#~ msgid "socket is not bound" -#~ msgstr "el socket no está asociado" - -#~ msgctxt "Socket error code NotCreated" -#~ msgid "socket has not been created" -#~ msgstr "el socket no ha sido creado" - -#~ msgctxt "Socket error code WouldBlock" -#~ msgid "operation would block" -#~ msgstr "la operación se bloquearía" - -#~ msgctxt "Socket error code ConnectionRefused" -#~ msgid "connection actively refused" -#~ msgstr "conexión rechazada activamente" - -#~ msgctxt "Socket error code ConnectionTimedOut" -#~ msgid "connection timed out" -#~ msgstr "expiró la conexión" - -#~ msgctxt "Socket error code InProgress" -#~ msgid "operation is already in progress" -#~ msgstr "la operación ya está en curso" - -#~ msgctxt "Socket error code NetFailure" -#~ msgid "network failure occurred" -#~ msgstr "se produjo un fallo de red" - -#~ msgctxt "Socket error code NotSupported" -#~ msgid "operation is not supported" -#~ msgstr "la operación no está permitida" - -#~ msgctxt "Socket error code Timeout" -#~ msgid "timed operation timed out" -#~ msgstr "la operación programada excedió el tiempo límite" - -#~ msgctxt "Socket error code UnknownError" -#~ msgid "an unknown/unexpected error has happened" -#~ msgstr "se ha producido un error desconocido o inesperado" - -#~ msgctxt "Socket error code RemotelyDisconnected" -#~ msgid "remote host closed connection" -#~ msgstr "la máquina remota cerró la conexión" - -#~ msgid "NEC SOCKS client" -#~ msgstr "Cliente NEC SOCKS" - -#~ msgid "Dante SOCKS client" -#~ msgstr "Cliente Dante SOCKS" - -#~ msgid "Specified socket path is invalid" -#~ msgstr "La ruta del socket especificada no es válida" - -#~ msgid "The socket operation is not supported" -#~ msgstr "La operación del socket no está permitida" - -#~ msgid "Connection refused" -#~ msgstr "Conexión rechazada" - -#~ msgid "Permission denied" -#~ msgstr "Permiso denegado" - -#~ msgid "Connection timed out" -#~ msgstr "La conexión ha expirado" - -#~ msgid "Unknown error" -#~ msgstr "Error desconocido" - -#~ msgid "Could not set non-blocking mode" -#~ msgstr "No se puede activar el modo no bloqueante" - -#~ msgid "Address is already in use" -#~ msgstr "La dirección ya está en uso" - -#~ msgid "Path cannot be used" -#~ msgstr "No se puede usar la ruta" - -#~ msgid "No such file or directory" -#~ msgstr "No se encuentra el archivo o directorio" - -#~ msgid "Not a directory" -#~ msgstr "No es un directorio" - -#~ msgid "Read-only filesystem" -#~ msgstr "Sistema de archivos de solo lectura" - -#~ msgid "Unknown socket error" -#~ msgstr "Error de socket desconocido" - -#~ msgid "Operation not supported" -#~ msgstr "Operación no permitida" - -#~ msgid "Timed out trying to connect to remote host" -#~ msgstr "" -#~ "Se excedió el tiempo límite intentando conectarse a la máquina remota" - -#~ msgctxt "SSL error" -#~ msgid "No error" -#~ msgstr "Sin errores" - -#~ msgctxt "SSL error" -#~ msgid "The certificate authority's certificate is invalid" -#~ msgstr "El certificado de la autoridad certificadora no es válido" - -#~ msgctxt "SSL error" -#~ msgid "The certificate has expired" -#~ msgstr "El certificado ha expirado" - -#~ msgctxt "SSL error" -#~ msgid "The certificate is invalid" -#~ msgstr "El certificado no es válido" - -#~ msgctxt "SSL error" -#~ msgid "The certificate is not signed by any trusted certificate authority" -#~ msgstr "" -#~ "El certificado no está firmado por una autoridad certificadora de " -#~ "confianza" - -#~ msgctxt "SSL error" -#~ msgid "The certificate has been revoked" -#~ msgstr "El certificado ha sido revocado" - -#~ msgctxt "SSL error" -#~ msgid "The certificate is unsuitable for this purpose" -#~ msgstr "El certificado no es apropiado para este propósito" - -#~ msgctxt "SSL error" -#~ msgid "" -#~ "The root certificate authority's certificate is not trusted for this " -#~ "purpose" -#~ msgstr "" -#~ "El certificado de la autoridad certificadora raíz no es fiable para este " -#~ "propósito" - -#~ msgctxt "SSL error" -#~ msgid "" -#~ "The certificate authority's certificate is marked to reject this " -#~ "certificate's purpose" -#~ msgstr "" -#~ "El certificado de la autoridad certificadora está marcado para rechazar " -#~ "el propósito de este certificado" - -#~ msgctxt "SSL error" -#~ msgid "The peer did not present any certificate" -#~ msgstr "El par no ha presentado ningún certificado" - -#~ msgctxt "SSL error" -#~ msgid "The certificate does not apply to the given host" -#~ msgstr "El certificado no es aplicable al servidor proporcionado" - -#~ msgctxt "SSL error" -#~ msgid "The certificate cannot be verified for internal reasons" -#~ msgstr "El certificado no se puede verificar por motivos internos" - -#~ msgctxt "SSL error" -#~ msgid "The certificate chain is too long" -#~ msgstr "La cadena de certificados es demasiado larga" - -#~ msgctxt "SSL error" -#~ msgid "Unknown error" -#~ msgstr "Error desconocido" - -#~ msgid "address family for nodename not supported" -#~ msgstr "familia de direcciones para el nodo no permitida" - -#~ msgid "invalid value for 'ai_flags'" -#~ msgstr "valor no válido para «ai_flags»" - -#~ msgid "'ai_family' not supported" -#~ msgstr "«ai_family» no permitida" - -#~ msgid "no address associated with nodename" -#~ msgstr "no hay dirección asociada con el nodo" - -#~ msgid "servname not supported for ai_socktype" -#~ msgstr "nombre de servidor no permitido para «ai_socktype»" - -#~ msgid "'ai_socktype' not supported" -#~ msgstr "«ai_socktype» no permitido" - -#~ msgid "system error" -#~ msgstr "error del sistema" - -#~ msgid "Could not find mime type %2" -#~ msgid_plural "" -#~ "Could not find mime types:\n" -#~ "%2" -#~ msgstr[0] "No fue posible encontrar el tipo MIME %2" -#~ msgstr[1] "" -#~ "No fue posible encontrar los tipos MIME:\n" -#~ "%2" - -#~ msgid "" -#~ "No mime types installed. Check that shared-mime-info is installed, and " -#~ "that XDG_DATA_DIRS is not set, or includes /usr/share." -#~ msgstr "" -#~ "No hay tipos MIME instalados. Compruebe que «shared-mime-info» está " -#~ "instalado, y que no se ha establecido la variable XDG_DATA_DIRS, o que " -#~ "incluye «/usr/share»." - -#~ msgid "No service matching the requirements was found" -#~ msgstr "No se ha encontrado ningún servicio que coincida con los requisitos" - -#~ msgid "" -#~ "The service '%1' does not provide an interface '%2' with keyword '%3'" -#~ msgstr "" -#~ "El servicio «%1» no proporciona una interfaz «%2» con la palabra clave " -#~ "«%3»" - -#~ msgctxt "dictionary variant" -#~ msgid "40" -#~ msgstr "40" - -#~ msgctxt "dictionary variant" -#~ msgid "60" -#~ msgstr "60" - -#~ msgctxt "dictionary variant" -#~ msgid "80" -#~ msgstr "80" - -#~ msgctxt "dictionary variant" -#~ msgid "-ise suffixes" -#~ msgstr "sufijos -ise" - -#~ msgctxt "dictionary variant" -#~ msgid "-ize suffixes" -#~ msgstr "sufijos -ize" - -#~ msgctxt "dictionary variant" -#~ msgid "-ise suffixes and with accents" -#~ msgstr "sufijos -ise y con acentos" - -#~ msgctxt "dictionary variant" -#~ msgid "-ise suffixes and without accents" -#~ msgstr "sufijos -ise y sin acentos" - -#~ msgctxt "dictionary variant" -#~ msgid "-ize suffixes and with accents" -#~ msgstr "sufijos -ize y con acentos" - -#~ msgctxt "dictionary variant" -#~ msgid "-ize suffixes and without accents" -#~ msgstr "sufijos -ize y sin acentos" - -#~ msgctxt "dictionary variant" -#~ msgid "large" -#~ msgstr "grande" - -#~ msgctxt "dictionary variant" -#~ msgid "medium" -#~ msgstr "mediano" - -#~ msgctxt "dictionary variant" -#~ msgid "small" -#~ msgstr "pequeño" - -#~ msgctxt "dictionary variant" -#~ msgid "variant 0" -#~ msgstr "variante 0" - -#~ msgctxt "dictionary variant" -#~ msgid "variant 1" -#~ msgstr "variante 1" - -#~ msgctxt "dictionary variant" -#~ msgid "variant 2" -#~ msgstr "variante 2" - -#~ msgctxt "dictionary variant" -#~ msgid "without accents" -#~ msgstr "sin acentos" - -#~ msgctxt "dictionary variant" -#~ msgid "with accents" -#~ msgstr "con acentos" - -#~ msgctxt "dictionary variant" -#~ msgid "with ye" -#~ msgstr "con «ye»" - -#~ msgctxt "dictionary variant" -#~ msgid "with yeyo" -#~ msgstr "con «yeyo»" - -#~ msgctxt "dictionary variant" -#~ msgid "with yo" -#~ msgstr "con «yo»" - -#~ msgctxt "dictionary variant" -#~ msgid "extended" -#~ msgstr "extendido" - -#~ msgctxt "dictionary name. %1-language, %2-country and %3 variant name" -#~ msgid "%1 (%2) [%3]" -#~ msgstr "%1 (%2) [%3]" - -#~ msgctxt "dictionary name. %1-language and %2-country name" -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgctxt "dictionary name. %1-language and %2-variant name" -#~ msgid "%1 [%2]" -#~ msgstr "%1 [%2]" - -#~ msgid "File %1 does not exist" -#~ msgstr "El archivo %1 no existe" - -#~ msgid "Cannot open %1 for reading" -#~ msgstr "No se puede abrir %1 para lectura" - -#~ msgid "Cannot create memory segment for file %1" -#~ msgstr "No fue posible crear segmento de memoria para el archivo %1" - -#~ msgid "Could not read data from %1 into shm" -#~ msgstr "No fue posible leer datos de %1 en shm" - -#~ msgid "Only 'ReadOnly' allowed" -#~ msgstr "Solo se permite «solo lectura»" - -#~ msgid "Cannot seek past eof" -#~ msgstr "No se puede buscar tras el final de archivo" - -#~ msgid "Library \"%1\" not found" -#~ msgstr "Biblioteca «%1» no encontrada" - -#~ msgid "No service matching the requirements was found." -#~ msgstr "" -#~ "No se ha encontrado ningún servicio que coincida con los requisitos." - -#~ msgid "" -#~ "The service provides no library, the Library key is missing in the ." -#~ "desktop file." -#~ msgstr "" -#~ "El servicio no proporciona ninguna biblioteca, en el archivo .desktop " -#~ "falta la clave «Library»." - -#~ msgid "The library does not export a factory for creating components." -#~ msgstr "La biblioteca no exporta una «factory» para crear componentes." - -#~ msgid "" -#~ "The factory does not support creating components of the specified type." -#~ msgstr "La «factory» no admite crear componentes del tipo indicado." - -#~ msgid "KLibLoader: Unknown error" -#~ msgstr "KLibLoader: Error desconocido" - -#~ msgid "The plugin '%1' uses an incompatible KDE library (%2)." -#~ msgstr "El complemento «%1» usa una biblioteca de KDE incompatible (%2)." - -#~ msgid "KDE Test Program" -#~ msgstr "Programa de prueba de KDE" - -#~ msgid "KDE Daemon" -#~ msgstr "Servicio de KDE" - -#~ msgid "KDE Daemon - triggers Sycoca database updates when needed" -#~ msgstr "" -#~ "Servicio de KDE: inicia la actualización de la base de datos Sycoca " -#~ "cuando sea necesario" - -#~ msgid "Check Sycoca database only once" -#~ msgstr "Comprobar la base de datos Sycoca solo una vez" - -#~ msgid "" -#~ "The key sequence '%1' is ambiguous. Use 'Configure Shortcuts'\n" -#~ "from the 'Settings' menu to solve the ambiguity.\n" -#~ "No action will be triggered." -#~ msgstr "" -#~ "La secuencia de teclas «%1» es ambigua. Utilice «Configurar accesos " -#~ "rápidos»\n" -#~ "en el menú «Preferencias» para resolver la ambigüedad.\n" -#~ "No se ejecutará ninguna acción." - -#~ msgid "Ambiguous shortcut detected" -#~ msgstr "Se ha detectado un acceso rápido ambiguo" - -#~ msgctxt "Encodings menu" -#~ msgid "Default" -#~ msgstr "Predeterminada" - -#~ msgctxt "Encodings menu" -#~ msgid "Autodetect" -#~ msgstr "Autodetectar" - -#~ msgid "No Entries" -#~ msgstr "Sin entradas" - -#~ msgid "Clear List" -#~ msgstr "Borrar lista" - -#~ msgctxt "go back" -#~ msgid "&Back" -#~ msgstr "&Atrás" - -#~ msgctxt "go forward" -#~ msgid "&Forward" -#~ msgstr "A&delante" - -#~ msgctxt "home page" -#~ msgid "&Home" -#~ msgstr "&Inicio" - -#~ msgctxt "show help" -#~ msgid "&Help" -#~ msgstr "A&yuda" - -#~ msgid "Show &Menubar" -#~ msgstr "Mostrar la barra de &menú" - -#~ msgid "Show Menubar

    Shows the menubar again after it has been hidden

    " -#~ msgstr "" -#~ "Mostrar la barra de menú

    Muestra la barra de menú de nuevo después de " -#~ "que se ha ocultado

    " - -#~ msgid "Show St&atusbar" -#~ msgstr "Mostrar la barra de &estado" - -#~ msgid "" -#~ "Show Statusbar

    Shows the statusbar, which is the bar at the bottom of " -#~ "the window used for status information.

    " -#~ msgstr "" -#~ "Mostrar la barra de estado

    Muestra la barra de estado, que es la barra " -#~ "que hay en la parte inferior de la ventana y que se utiliza para mostrar " -#~ "información de estado.

    " - -#~ msgid "&New" -#~ msgstr "&Nuevo" - -#~ msgid "Create new document" -#~ msgstr "Crear nuevo documento" - -#~ msgid "&Open..." -#~ msgstr "&Abrir..." - -#~ msgid "Open an existing document" -#~ msgstr "Abrir un documento existente" - -#~ msgid "Open &Recent" -#~ msgstr "Abrir &reciente" - -#~ msgid "Open a document which was recently opened" -#~ msgstr "Abrir un documento que se abrió recientemente" - -#~ msgid "&Save" -#~ msgstr "&Guardar" - -#~ msgid "Save document" -#~ msgstr "Guardar documento" - -#~ msgid "Save &As..." -#~ msgstr "Gu&ardar como..." - -#~ msgid "Save document under a new name" -#~ msgstr "Guardar el documento con un nuevo nombre" - -#~ msgid "Re&vert" -#~ msgstr "Re&vertir" - -#~ msgid "Revert unsaved changes made to document" -#~ msgstr "" -#~ "Revertir los cambios sin guardar que se han realizado en el documento" - -#~ msgid "&Close" -#~ msgstr "&Cerrar" - -#~ msgid "Close document" -#~ msgstr "Cerrar documento" - -#~ msgid "&Print..." -#~ msgstr "Im&primir..." - -#~ msgid "Print document" -#~ msgstr "Imprimir documento" - -#~ msgid "Print Previe&w" -#~ msgstr "Vista pre&via" - -#~ msgid "Show a print preview of document" -#~ msgstr "Mostrar una vista previa de la impresión del documento" - -#~ msgid "&Mail..." -#~ msgstr "&Correo..." - -#~ msgid "Send document by mail" -#~ msgstr "Enviar el documento por correo" - -#~ msgid "&Quit" -#~ msgstr "&Salir" - -#~ msgid "Quit application" -#~ msgstr "Salir de la aplicación" - -#~ msgid "Undo last action" -#~ msgstr "Deshacer la última acción" - -#~ msgid "Re&do" -#~ msgstr "Re&hacer" - -#~ msgid "Redo last undone action" -#~ msgstr "Rehacer la última acción deshecha" - -#~ msgid "Cu&t" -#~ msgstr "Cor&tar" - -#~ msgid "Cut selection to clipboard" -#~ msgstr "Cortar la selección al portapapeles" - -#~ msgid "&Copy" -#~ msgstr "&Copiar" - -#~ msgid "Copy selection to clipboard" -#~ msgstr "Copiar la selección al portapapeles" - -#~ msgid "&Paste" -#~ msgstr "&Pegar" - -#~ msgid "Paste clipboard content" -#~ msgstr "Pegar el contenido del portapapeles" - -#~ msgid "C&lear" -#~ msgstr "&Borrar" - -#~ msgid "Select &All" -#~ msgstr "Seleccionar &todo" - -#~ msgid "Dese&lect" -#~ msgstr "Dese&leccionar" - -#~ msgid "&Find..." -#~ msgstr "&Buscar..." - -#~ msgid "Find &Next" -#~ msgstr "Buscar siguie&nte" - -#~ msgid "Find Pre&vious" -#~ msgstr "Buscar &anterior" - -#~ msgid "&Replace..." -#~ msgstr "&Remplazar..." - -#~ msgid "&Actual Size" -#~ msgstr "Tamaño re&al" - -#~ msgid "View document at its actual size" -#~ msgstr "Ver el documento con su tamaño real" - -#~ msgid "&Fit to Page" -#~ msgstr "A&justar a la página" - -#~ msgid "Zoom to fit page in window" -#~ msgstr "Ampliar para ajustar la página en la ventana" - -#~ msgid "Fit to Page &Width" -#~ msgstr "Ajustar a la &anchura de la página" - -#~ msgid "Zoom to fit page width in window" -#~ msgstr "Ampliar para ajustar el ancho de la página en la ventana" - -#~ msgid "Fit to Page &Height" -#~ msgstr "Ajustar a la a<ura de la página" - -#~ msgid "Zoom to fit page height in window" -#~ msgstr "Ampliar para ajustar la altura de la página en la ventana" - -#~ msgid "Zoom &In" -#~ msgstr "Ampl&iar" - -#~ msgid "Zoom &Out" -#~ msgstr "Red&ucir" - -#~ msgid "&Zoom..." -#~ msgstr "&Ampliación..." - -#~ msgid "Select zoom level" -#~ msgstr "Seleccionar el nivel de ampliación" - -#~ msgid "&Redisplay" -#~ msgstr "&Redibujar" - -#~ msgid "Redisplay document" -#~ msgstr "Redibujar el documento" - -#~ msgid "&Up" -#~ msgstr "Arr&iba" - -#~ msgid "Go up" -#~ msgstr "Ir arriba" - -#~ msgid "&Previous Page" -#~ msgstr "&Página anterior" - -#~ msgid "Go to previous page" -#~ msgstr "Ir a la página anterior" - -#~ msgid "&Next Page" -#~ msgstr "Página siguie&nte" - -#~ msgid "Go to next page" -#~ msgstr "Ir a la página siguiente" - -#~ msgid "&Go To..." -#~ msgstr "&Ir a..." - -#~ msgid "&Go to Page..." -#~ msgstr "&Ir a la página..." - -#~ msgid "&Go to Line..." -#~ msgstr "Ir a la &línea..." - -#~ msgid "&First Page" -#~ msgstr "P&rimera página" - -#~ msgid "Go to first page" -#~ msgstr "Ir a la primera página" - -#~ msgid "&Last Page" -#~ msgstr "Ú<ima página" - -#~ msgid "Go to last page" -#~ msgstr "Ir a la última página" - -#~ msgid "Go back in document" -#~ msgstr "Retroceder en el documento" - -#~ msgid "&Forward" -#~ msgstr "A&vanzar" - -#~ msgid "Go forward in document" -#~ msgstr "Avanzar en el documento" - -#~ msgid "&Add Bookmark" -#~ msgstr "&Añadir marcador" - -#~ msgid "&Edit Bookmarks..." -#~ msgstr "&Editar marcadores..." - -#~ msgid "&Spelling..." -#~ msgstr "&Ortografía..." - -#~ msgid "Check spelling in document" -#~ msgstr "Comprobar ortografía del documento" - -#~ msgid "Show or hide menubar" -#~ msgstr "Mostrar u ocultar la barra de menú" - -#~ msgid "Show &Toolbar" -#~ msgstr "Mostrar la barra de herramien&tas" - -#~ msgid "Show or hide toolbar" -#~ msgstr "Mostrar u ocultar la barra de herramientas" - -#~ msgid "Show or hide statusbar" -#~ msgstr "Mostrar u ocultar la barra de estado" - -#~ msgid "F&ull Screen Mode" -#~ msgstr "Modo de pantalla c&ompleta" - -#~ msgid "&Save Settings" -#~ msgstr "&Guardar preferencias" - -#~ msgid "Configure S&hortcuts..." -#~ msgstr "Configurar los accesos &rápidos..." - -#~ msgid "&Configure %1..." -#~ msgstr "&Configurar %1..." - -#~ msgid "Configure Tool&bars..." -#~ msgstr "Configurar las barras de herramien&tas..." - -#~ msgid "Configure &Notifications..." -#~ msgstr "Configurar las ¬ificaciones..." - -#~ msgid "%1 &Handbook" -#~ msgstr "&Manual de %1" - -#~ msgid "What's &This?" -#~ msgstr "¿Qué es es&to?" - -#~ msgid "Tip of the &Day" -#~ msgstr "Sugerencia del &día" - -#~ msgid "&Report Bug..." -#~ msgstr "Informa&r de fallo..." - -#~ msgid "Switch Application &Language..." -#~ msgstr "Cambiar e&l idioma de la aplicación..." - -#~ msgid "&About %1" -#~ msgstr "&Acerca de %1" - -#~ msgid "About &KDE" -#~ msgstr "Acerca de &KDE" - -#~ msgctxt "@action:inmenu" -#~ msgid "Exit F&ull Screen Mode" -#~ msgstr "Salir del &modo de pantalla completa" - -#~ msgctxt "@action:intoolbar" -#~ msgid "Exit Full Screen" -#~ msgstr "Salir de pantalla completa" - -#~ msgctxt "@info:tooltip" -#~ msgid "Exit full screen mode" -#~ msgstr "Salir del modo de pantalla completa" - -#~ msgctxt "@action:inmenu" -#~ msgid "F&ull Screen Mode" -#~ msgstr "M&odo de pantalla completa" - -#~ msgctxt "@action:intoolbar" -#~ msgid "Full Screen" -#~ msgstr "Pantalla completa" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display the window in full screen" -#~ msgstr "Mostrar la ventana a pantalla completa" - -#~ msgctxt "Custom color" -#~ msgid "Custom..." -#~ msgstr "Personalizado..." - -#~ msgctxt "palette name" -#~ msgid "* Recent Colors *" -#~ msgstr "* Colores recientes *" - -#~ msgctxt "palette name" -#~ msgid "* Custom Colors *" -#~ msgstr "* Colores personalizados *" - -#~ msgctxt "palette name" -#~ msgid "Forty Colors" -#~ msgstr "Cuarenta colores" - -#~ msgctxt "palette name" -#~ msgid "Oxygen Colors" -#~ msgstr "Colores de Oxygen" - -#~ msgctxt "palette name" -#~ msgid "Rainbow Colors" -#~ msgstr "Colores del arco iris" - -#~ msgctxt "palette name" -#~ msgid "Royal Colors" -#~ msgstr "Colores Royal" - -#~ msgctxt "palette name" -#~ msgid "Web Colors" -#~ msgstr "Colores web" - -#~ msgid "Named Colors" -#~ msgstr "Colores con nombre" - -#~ msgctxt "" -#~ "%1 is the number of paths, %2 is the list of paths (with newlines between " -#~ "them)" -#~ msgid "" -#~ "Unable to read X11 RGB color strings. The following file location was " -#~ "examined:\n" -#~ "%2" -#~ msgid_plural "" -#~ "Unable to read X11 RGB color strings. The following file locations were " -#~ "examined:\n" -#~ "%2" -#~ msgstr[0] "" -#~ "No es posible leer las cadenas de color RGB de X11. Se ha examinado la " -#~ "siguiente ubicación de archivo:\n" -#~ "%2" -#~ msgstr[1] "" -#~ "No es posible leer las cadenas de color RGB de X11. Se han examinado las " -#~ "siguientes ubicaciones de archivos:\n" -#~ "%2" - -#~ msgid "Select Color" -#~ msgstr "Seleccione un color" - -#~ msgid "Hue:" -#~ msgstr "Tono:" - -#~ msgctxt "The angular degree unit (for hue)" -#~ msgid "°" -#~ msgstr "°" - -#~ msgid "Saturation:" -#~ msgstr "Saturación:" - -#~ msgctxt "This is the V of HSV" -#~ msgid "Value:" -#~ msgstr "Valor:" - -#~ msgid "Red:" -#~ msgstr "Rojo:" - -#~ msgid "Green:" -#~ msgstr "Verde:" - -#~ msgid "Blue:" -#~ msgstr "Azul:" - -#~ msgid "Alpha:" -#~ msgstr "Alfa:" - -#~ msgid "&Add to Custom Colors" -#~ msgstr "&Añadir a los colores personalizados" - -#~ msgid "Name:" -#~ msgstr "Nombre:" - -#~ msgid "HTML:" -#~ msgstr "HTML:" - -#~ msgid "Default color" -#~ msgstr "Color predeterminado" - -#~ msgid "-default-" -#~ msgstr "-predeterminado-" - -#~ msgid "-unnamed-" -#~ msgstr "-sin nombre-" - -#~ msgid "" -#~ "No information available.
    The supplied KAboutData object does " -#~ "not exist.
    " -#~ msgstr "" -#~ "No hay información disponible.
    El objeto KAboutData suministrado " -#~ "no existe.
    " - -#~ msgid "" -#~ "%1
    Version %2
     " -#~ msgstr "" -#~ "%1
    Versión %2
     " - -#~ msgctxt "" -#~ "Program name, version and KDE platform version; do not translate " -#~ "'Development Platform'" -#~ msgid "" -#~ "%1
    Version %2
    Using KDE " -#~ "Development Platform %3" -#~ msgstr "" -#~ "%1
    Versión %2
    Usando la " -#~ "plataforma de desarrollo de KDE %3" - -#~ msgid "License: %1" -#~ msgstr "Licencia: %1" - -#~ msgid "License Agreement" -#~ msgstr "Acuerdo de licencia" - -#~ msgctxt "Action to send an email to a contributor" -#~ msgid "Email contributor" -#~ msgstr "Enviar correo al colaborador" - -#~ msgid "Visit contributor's homepage" -#~ msgstr "Visitar la página web del colaborador" - -#~ msgctxt "Action to send an email to a contributor" -#~ msgid "" -#~ "Email contributor\n" -#~ "%1" -#~ msgstr "" -#~ "Enviar correo al colaborador\n" -#~ "%1" - -#~ msgid "" -#~ "Visit contributor's homepage\n" -#~ "%1" -#~ msgstr "" -#~ "Visitar la página web del colaborador\n" -#~ "%1" - -#~ msgid "" -#~ "Visit contributor's profile on %1\n" -#~ "%2" -#~ msgstr "" -#~ "Visitar el perfil del colaborador en %1\n" -#~ "%2" - -#~ msgid "" -#~ "Visit contributor's page\n" -#~ "%1" -#~ msgstr "" -#~ "Visitar la página del colaborador\n" -#~ "%1" - -#~ msgid "" -#~ "Visit contributor's blog\n" -#~ "%1" -#~ msgstr "" -#~ "Visitar el blog del colaborador\n" -#~ "%1" - -#~ msgctxt "@item Contributor name in about dialog." -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "City, Country" -#~ msgid "%1, %2" -#~ msgstr "%1, %2" - -#~ msgctxt "A generic social network or homepage link of an unlisted type." -#~ msgid "Other" -#~ msgstr "Otro" - -#~ msgctxt "A type of link." -#~ msgid "Blog" -#~ msgstr "Blog" - -#~ msgctxt "A type of link." -#~ msgid "Homepage" -#~ msgstr "Página web" - -#~ msgid "About KDE" -#~ msgstr "Acerca de KDE" - -#~ msgid "" -#~ "KDE - Be Free!
    Platform Version %1" -#~ msgstr "" -#~ "KDE - ¡Libérese!
    Versión de la " -#~ "plataforma %1" - -#~ msgid "" -#~ "KDE is a world-wide network of software engineers, artists, " -#~ "writers, translators and facilitators who are committed to Free Software development. This community has created hundreds " -#~ "of Free Software applications as part of the KDE Development Platform and " -#~ "KDE Software Distribution.

    KDE is a cooperative enterprise in " -#~ "which no single entity controls the efforts or products of KDE to the " -#~ "exclusion of others. Everyone is welcome to join and contribute to KDE, " -#~ "including you.

    Visit %2 for more " -#~ "information about the KDE community and the software we produce." -#~ msgstr "" -#~ "KDE es una red mundial de ingenieros de software, artistas, " -#~ "escritores, traductores y orientadores comprometidos con el desarrollo de " -#~ "software libre. Esta comunidad ha creado cientos de " -#~ "aplicaciones de software libre como parte de la Plataforma de Desarrollo " -#~ "KDE y de la Distribución de Software KDE.

    KDE es una empresa " -#~ "cooperativa en la que ninguna entidad aislada controla los esfuerzos o " -#~ "productos de KDE para excluir a otros. Todo el mundo está invitado a " -#~ "unirse y colaborar con KDE, incluido usted.

    Visite %2 para obtener más información sobre la comunidad de KDE y el " -#~ "software que producimos." - -#~ msgid "" -#~ "Software can always be improved, and the KDE team is ready to do " -#~ "so. However, you - the user - must tell us when something does not work " -#~ "as expected or could be done better.

    KDE has a bug tracking " -#~ "system. Visit %1 or use the \"Report Bug...\" dialog " -#~ "from the \"Help\" menu to report bugs.

    If you have a " -#~ "suggestion for improvement then you are welcome to use the bug tracking " -#~ "system to register your wish. Make sure you use the severity called " -#~ "\"Wishlist\"." -#~ msgstr "" -#~ "El software siempre se puede mejorar, y el equipo de KDE está " -#~ "dispuesto a hacerlo. Sin embargo, usted (el usuario) debe informarnos " -#~ "cuando algo no funcione como debería, o cuando pudiera hacerlo mejor.

    KDE posee un sistema de seguimiento de fallos. Visite %1 o use el diálogo «Informar de fallo» del menú «Ayuda» para " -#~ "informar de fallos.

    Si tiene alguna sugerencia para mejorar el " -#~ "software, le invitamos a usar el sistema de seguimiento de fallos para " -#~ "registrar su deseo. En este caso, asegúrese de usar el nivel de gravedad " -#~ "«Wishlist»." - -#~ msgid "" -#~ "You do not have to be a software developer to be a member of the " -#~ "KDE team. You can join the national teams that translate program " -#~ "interfaces. You can provide graphics, themes, sounds, and improved " -#~ "documentation. You decide!

    Visit %1 for " -#~ "information on some projects in which you can participate.

    If " -#~ "you need more information or documentation, then a visit to %2 will provide you with what you need." -#~ msgstr "" -#~ "No tiene que ser desarrollador de software para ser miembro del " -#~ "equipo de KDE. Puede unirse a los equipos nacionales que traducen la " -#~ "interfaz de los programas. Puede proporcionar imágenes, temas, sonidos y " -#~ "mejorar la documentación. Usted decide.

    Visite " -#~ "%1 para más información sobre algunos de los proyectos en los que " -#~ "puede participar.

    Si necesita más información o documentación, " -#~ "visite %2, donde encontrará lo que necesita." - -#~ msgid "" -#~ "KDE software is and will always be available free of charge, " -#~ "however creating it is not free.

    To support development the " -#~ "KDE community has formed the KDE e.V., a non-profit organization legally " -#~ "founded in Germany. KDE e.V. represents the KDE community in legal and " -#~ "financial matters. See %1 for information on KDE e.V." -#~ "

    KDE benefits from many kinds of contributions, including " -#~ "financial. We use the funds to reimburse members and others for expenses " -#~ "they incur when contributing. Further funds are used for legal support " -#~ "and organizing conferences and meetings.

    We would like to " -#~ "encourage you to support our efforts with a financial donation, using one " -#~ "of the ways described at %2.

    Thank you very " -#~ "much in advance for your support." -#~ msgstr "" -#~ "KDE está y estará siempre disponible gratuitamente, pero crearlo no " -#~ "está libre de costes.

    Para apoyar su desarrollo, la comunidad " -#~ "de KDE formó la asociación sin ánimo de lucro «KDE e.V.», constituida " -#~ "legalmente en Alemania. «KDE e.V.» representa a la comunidad KDE en " -#~ "cuestiones legales y financieras. Consulte h%1 para " -#~ "obtener información sobre «KDE e.V.».

    KDE se beneficia de " -#~ "muchos tipos de colaboraciones, incluidas las económicas. Este dinero se " -#~ "utiliza para reembolsar los gastos de los miembros y de otras personas " -#~ "que se originan al colaborar con KDE. Otros fondos se usan en concepto de " -#~ "representación legal y para organizar congresos y encuentros.

    Le animamos a colaborar con KDE con una donación económica, utilizando " -#~ "alguno de los modos descritos en %2.

    Le " -#~ "agradecemos su ayuda por adelantado." - -#~ msgctxt "About KDE" -#~ msgid "&About" -#~ msgstr "&Acerca de" - -#~ msgid "&Report Bugs or Wishes" -#~ msgstr "&Informar de fallos o deseos" - -#~ msgid "&Join KDE" -#~ msgstr "Ú&nase al equipo KDE" - -#~ msgid "&Support KDE" -#~ msgstr "&Colabore con KDE" - -#~ msgctxt "Opposite to Back" -#~ msgid "Next" -#~ msgstr "Siguiente" - -#~ msgid "Finish" -#~ msgstr "Finalizar" - -#~ msgid "Submit Bug Report" -#~ msgstr "Envía un informe de fallos" - -#~ msgid "" -#~ "Your email address. If incorrect, use the Configure Email button to " -#~ "change it" -#~ msgstr "" -#~ "Su dirección de correo electrónico. Si no es correcta, use el botón " -#~ "«Configurar correo electrónico» para cambiarla" - -#~ msgctxt "Email sender address" -#~ msgid "From:" -#~ msgstr "De:" - -#~ msgid "Configure Email..." -#~ msgstr "Configurar correo electrónico..." - -#~ msgid "The email address this bug report is sent to." -#~ msgstr "" -#~ "La dirección de correo electrónico a la que se envía este informe de " -#~ "fallos." - -#~ msgctxt "Email receiver address" -#~ msgid "To:" -#~ msgstr "Para:" - -#~ msgid "&Send" -#~ msgstr "&Enviar" - -#~ msgid "Send bug report." -#~ msgstr "Enviar el informe de fallos." - -#~ msgid "Send this bug report to %1." -#~ msgstr "Enviar este informe de fallo a %1." - -#~ msgid "" -#~ "The application for which you wish to submit a bug report - if incorrect, " -#~ "please use the Report Bug menu item of the correct application" -#~ msgstr "" -#~ "La aplicación para la cual desea enviar el informe de fallos (si no es " -#~ "correcta, use la opción de menú «Informar de fallo» de la aplicación " -#~ "correcta)" - -#~ msgid "Application: " -#~ msgstr "Aplicación: " - -#~ msgid "" -#~ "The version of this application - please make sure that no newer version " -#~ "is available before sending a bug report" -#~ msgstr "" -#~ "La versión de esta aplicación - asegúrese de que no hay disponible " -#~ "ninguna versión más actual antes de enviar un informe de fallos" - -#~ msgid "Version:" -#~ msgstr "Versión:" - -#~ msgid "no version set (programmer error)" -#~ msgstr "no hay versión (error del programador)" - -#~ msgid "OS:" -#~ msgstr "SO:" - -#~ msgid "Compiler:" -#~ msgstr "Compilador:" - -#~ msgid "Se&verity" -#~ msgstr "Gra&vedad" - -#~ msgid "Critical" -#~ msgstr "Crítico" - -#~ msgid "Grave" -#~ msgstr "Grave" - -#~ msgctxt "normal severity" -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Wishlist" -#~ msgstr "Lista de deseos" - -#~ msgid "Translation" -#~ msgstr "Traducción" - -#~ msgid "S&ubject: " -#~ msgstr "As&unto: " - -#~ msgid "" -#~ "Enter the text (in English if possible) that you wish to submit for the " -#~ "bug report.\n" -#~ "If you press \"Send\", a mail message will be sent to the maintainer of " -#~ "this program.\n" -#~ msgstr "" -#~ "Introduzca el texto (en inglés si es posible) que quiera enviar al " -#~ "sistema de informe de fallos.\n" -#~ "Si pulsa «Enviar», se enviará un mensaje al encargado de este programa.\n" - -#~ msgid "" -#~ "To submit a bug report, click on the button below. This will open a " -#~ "web browser window on http://bugs.kde." -#~ "org where you will find a form to fill in. The information displayed " -#~ "above will be transferred to that server." -#~ msgstr "" -#~ "Para enviar un informe de fallos, pulse el botón de abajo. Se abrirá " -#~ "una ventana del navegador web en http://" -#~ "bugs.kde.org donde encontrará un formulario a rellenar. La " -#~ "información mostrada arriba será transferida a ese servidor." - -#~ msgid "&Launch Bug Report Wizard" -#~ msgstr "&Lanzar el asistente de informe de fallos" - -#~ msgctxt "unknown program name" -#~ msgid "unknown" -#~ msgstr "desconocido" - -#~ msgid "" -#~ "You must specify both a subject and a description before the report can " -#~ "be sent." -#~ msgstr "" -#~ "Debe especificar tanto un asunto como una descripción antes de poder " -#~ "enviar el informe." - -#~ msgid "" -#~ "

    You chose the severity Critical. Please note that this severity " -#~ "is intended only for bugs that:

    • break unrelated software on " -#~ "the system (or the whole system)
    • cause serious data loss
    • introduce a security hole on the system where the affected package " -#~ "is installed
    \n" -#~ "

    Does the bug you are reporting cause any of the above damage? If it " -#~ "does not, please select a lower severity. Thank you.

    " -#~ msgstr "" -#~ "

    Ha elegido gravedad Crítica. Advierta que este nivel de " -#~ "gravedad solo es para fallos que:

    • hagan que software " -#~ "independiente (o el sistema completo) se dañe
    • ocasionen pérdidas " -#~ "de datos importantes
    • introduzcan un agujero de seguridad en el " -#~ "sistema donde se instala este paquete
    \n" -#~ "

    ¿Produce el fallo del que usted informa alguno de los daños " -#~ "anteriores? Si no lo hace, disminuya el nivel de gravedad. Gracias.

    " - -#~ msgid "" -#~ "

    You chose the severity Grave. Please note that this severity is " -#~ "intended only for bugs that:

    • make the package in question " -#~ "unusable or mostly so
    • cause data loss
    • introduce a " -#~ "security hole allowing access to the accounts of users who use the " -#~ "affected package
    \n" -#~ "

    Does the bug you are reporting cause any of the above damage? If it " -#~ "does not, please select a lower severity. Thank you.

    " -#~ msgstr "" -#~ "

    Ha elegido gravedad Grave. Advierta que este nivel de gravedad " -#~ "solo es para fallos que:

    • hagan inutilizable o prácticamente " -#~ "inutilizable el paquete en cuestión
    • ocasionen pérdidas de datos
    • introduzcan un agujero de seguridad permitiendo el acceso a " -#~ "cuentas de usuarios que utilizan el paquete en cuestión
    \n" -#~ "

    ¿Produce el fallo del que usted informa alguno de los daños " -#~ "anteriores? Si no lo hace, disminuya el nivel de gravedad. Gracias.

    " - -#~ msgid "" -#~ "Unable to send the bug report.\n" -#~ "Please submit a bug report manually....\n" -#~ "See http://bugs.kde.org/ for instructions." -#~ msgstr "" -#~ "No se ha podido enviar el informe de fallos.\n" -#~ "Por favor, envíe el informe del fallo manualmente...\n" -#~ "Consulte las instrucciones en http://bugs.kde.org/." - -#~ msgid "Bug report sent, thank you for your input." -#~ msgstr "Informe de fallos enviado, gracias por su contribución." - -#~ msgid "" -#~ "Close and discard\n" -#~ "edited message?" -#~ msgstr "" -#~ "¿Cerrar y descartar\n" -#~ "el mensaje editado?" - -#~ msgid "Close Message" -#~ msgstr "Cerrar mensaje" - -#~ msgid "Configure" -#~ msgstr "Configurar" - -#~ msgid "Job" -#~ msgstr "Tarea" - -#~ msgid "Job Control" -#~ msgstr "Control de tareas" - -#~ msgid "Scheduled printing:" -#~ msgstr "Impresión programada:" - -#~ msgid "Billing information:" -#~ msgstr "Información de facturación:" - -#~ msgid "Job priority:" -#~ msgstr "Prioridad de la tarea:" - -#~ msgid "Job Options" -#~ msgstr "Opciones de la tarea" - -#~ msgid "Option" -#~ msgstr "Opción" - -#~ msgid "Value" -#~ msgstr "Valor" - -#~ msgid "Print Immediately" -#~ msgstr "Imprimir inmediatamente" - -#~ msgid "Hold Indefinitely" -#~ msgstr "Mantener indefinidamente" - -#~ msgid "Day (06:00 to 17:59)" -#~ msgstr "Día (de 06:00 a 17:59)" - -#~ msgid "Night (18:00 to 05:59)" -#~ msgstr "Noche (de 18:00 a 05:59)" - -#~ msgid "Second Shift (16:00 to 23:59)" -#~ msgstr "Segundo turno (de 16:00 a 23:59)" - -#~ msgid "Third Shift (00:00 to 07:59)" -#~ msgstr "Tercer turno (de 00:00 a 07:59)" - -#~ msgid "Weekend (Saturday to Sunday)" -#~ msgstr "Fin de semana (de sábado a domingo)" - -#~ msgid "Specific Time" -#~ msgstr "Hora específica" - -#~ msgid "Pages" -#~ msgstr "Páginas" - -#~ msgid "Pages Per Sheet" -#~ msgstr "Páginas por hoja" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "6" -#~ msgstr "6" - -#~ msgid "2" -#~ msgstr "2" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "4" -#~ msgstr "4" - -#~ msgid "16" -#~ msgstr "16" - -#~ msgid "Banner Pages" -#~ msgstr "Páginas de portada" - -#~ msgctxt "Banner page at start" -#~ msgid "Start" -#~ msgstr "Al principio" - -#~ msgctxt "Banner page at end" -#~ msgid "End" -#~ msgstr "Al final" - -#~ msgid "Page Label" -#~ msgstr "Etiqueta de la página" - -#~ msgid "Page Border" -#~ msgstr "Borde de la página" - -#~ msgid "Mirror Pages" -#~ msgstr "Reflejar páginas" - -#~ msgid "Mirror pages along vertical axis" -#~ msgstr "Reflejar páginas en el eje vertical" - -#~ msgid "Left to Right, Top to Bottom" -#~ msgstr "De izquierda a derecha, de arriba hacia abajo" - -#~ msgid "Left to Right, Bottom to Top" -#~ msgstr "De izquierda a derecha, de abajo hacia arriba" - -#~ msgid "Right to Left, Bottom to Top" -#~ msgstr "De derecha a izquierda, de abajo hacia arriba" - -#~ msgid "Right to Left, Top to Bottom" -#~ msgstr "De derecha a izquierda, de arriba hacia abajo" - -#~ msgid "Bottom to Top, Left to Right" -#~ msgstr "De abajo hacia arriba, de izquierda a derecha" - -#~ msgid "Bottom to Top, Right to Left" -#~ msgstr "De abajo hacia arriba, de derecha a izquierda" - -#~ msgid "Top to Bottom, Left to Right" -#~ msgstr "De arriba hacia abajo, de izquierda a derecha" - -#~ msgid "Top to Bottom, Right to Left" -#~ msgstr "De arriba hacia abajo, de derecha a izquierda" - -#~ msgctxt "No border line" -#~ msgid "None" -#~ msgstr "Ninguna" - -#~ msgid "Single Line" -#~ msgstr "Línea sencilla" - -#~ msgid "Single Thick Line" -#~ msgstr "Línea gruesa sencilla" - -#~ msgid "Double Line" -#~ msgstr "Línea doble" - -#~ msgid "Double Thick Line" -#~ msgstr "Línea gruesa doble" - -#~ msgctxt "Banner page" -#~ msgid "None" -#~ msgstr "Ninguna" - -#~ msgctxt "Banner page" -#~ msgid "Standard" -#~ msgstr "Estándar" - -#~ msgctxt "Banner page" -#~ msgid "Unclassified" -#~ msgstr "Desclasificado" - -#~ msgctxt "Banner page" -#~ msgid "Confidential" -#~ msgstr "Confidencial" - -#~ msgctxt "Banner page" -#~ msgid "Classified" -#~ msgstr "Clasificado" - -#~ msgctxt "Banner page" -#~ msgid "Secret" -#~ msgstr "Secreto" - -#~ msgctxt "Banner page" -#~ msgid "Top Secret" -#~ msgstr "Alto secreto" - -#~ msgid "All Pages" -#~ msgstr "Todas las páginas" - -#~ msgid "Odd Pages" -#~ msgstr "Páginas impares" - -#~ msgid "Even Pages" -#~ msgstr "Páginas pares" - -#~ msgid "Page Set" -#~ msgstr "Conjunto de páginas" - -#~ msgctxt "@title:window" -#~ msgid "Print" -#~ msgstr "Imprimir" - -#~ msgid "&Try" -#~ msgstr "&Probar" - -#~ msgid "modified" -#~ msgstr "modificado" - -#~ msgctxt "Document/application separator in titlebar" -#~ msgid " – " -#~ msgstr " – " - -#~ msgid "&Details" -#~ msgstr "&Detalles" - -#~ msgid "Get help..." -#~ msgstr "Ayuda..." - -#~ msgid "--- separator ---" -#~ msgstr "--- separador ---" - -#~ msgid "Change Text" -#~ msgstr "Cambiar texto" - -#~ msgid "Icon te&xt:" -#~ msgstr "Te&xto del icono:" - -#~ msgid "&Hide text when toolbar shows text alongside icons" -#~ msgstr "" -#~ "Ocultar texto cuando la barra de &herramientas muestra texto junto a los " -#~ "iconos" - -#~ msgid "Configure Toolbars" -#~ msgstr "Configurar barras de herramientas" - -#~ msgid "" -#~ "Do you really want to reset all toolbars of this application to their " -#~ "default? The changes will be applied immediately." -#~ msgstr "" -#~ "¿Desea realmente reiniciar todas las barras de herramientas de esta " -#~ "aplicación a sus valores predeterminados? Los cambios se aplicarán " -#~ "inmediatamente." - -#~ msgid "Reset Toolbars" -#~ msgstr "Reiniciar barras de herramientas" - -#~ msgid "Reset" -#~ msgstr "Restablecer" - -#~ msgid "&Toolbar:" -#~ msgstr "Barra de &herramientas:" - -#~ msgid "A&vailable actions:" -#~ msgstr "Acciones &disponibles:" - -#~ msgid "Filter" -#~ msgstr "Filtro" - -#~ msgid "Curr&ent actions:" -#~ msgstr "Acciones a&ctuales:" - -#~ msgid "Change &Icon..." -#~ msgstr "Cambiar &icono..." - -#~ msgid "Change Te&xt..." -#~ msgstr "Cambiar te&xto..." - -#~ msgctxt "@item:intable Action name in toolbar editor" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "" -#~ "This element will be replaced with all the elements of an embedded " -#~ "component." -#~ msgstr "" -#~ "Este elemento será remplazado por todos los elementos de un componente " -#~ "incrustado." - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ "This is a dynamic list of actions. You can move it, but if you remove it " -#~ "you will not be able to re-add it." -#~ msgstr "" -#~ "Esto es una lista dinámica de acciones. Puede cambiarla de sitio, pero si " -#~ "la elimina, no le será posible añadirla de nuevo." - -#~ msgid "ActionList: %1" -#~ msgstr "Lista de acciones: %1" - -#~ msgctxt "@label Action tooltip in toolbar editor, below the action list" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Change Icon" -#~ msgstr "Cambiar icono" - -#~ msgid "Manage Link" -#~ msgstr "Gestionar enlace" - -#~ msgid "Link Text:" -#~ msgstr "Texto del enlace:" - -#~ msgid "Link URL:" -#~ msgstr "URL del enlace:" - -#~ msgctxt "@action:button filter-yes" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@action:button filter-no" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@action:button filter-continue" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@action:button filter-cancel" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@action:button post-filter" -#~ msgid "." -#~ msgstr "." - -#~ msgid "Details" -#~ msgstr "Detalles" - -#~ msgid "Question" -#~ msgstr "Pregunta" - -#~ msgid "Do not ask again" -#~ msgstr "No preguntar de nuevo" - -#~ msgid "Warning" -#~ msgstr "Advertencia" - -#~ msgid "Error" -#~ msgstr "Error" - -#~ msgid "Sorry" -#~ msgstr "Disculpe" - -#~ msgid "Information" -#~ msgstr "Información" - -#~ msgid "Do not show this message again" -#~ msgstr "No mostrar este mensaje de nuevo" - -#~ msgid "Password:" -#~ msgstr "Contraseña:" - -#~ msgid "Password" -#~ msgstr "Contraseña" - -#~ msgid "Supply a username and password below." -#~ msgstr "Proporcione abajo un nombre de usuario y una contraseña." - -#~ msgid "No password, use anonymous (or guest) login" -#~ msgstr "Sin contraseña, usar inicio de sesión anónimo (o como invitado)" - -#~ msgid "Use this password:" -#~ msgstr "Usar esta contraseña:" - -#~ msgid "Username:" -#~ msgstr "Nombre de usuario:" - -#~ msgid "Domain:" -#~ msgstr "Dominio:" - -#~ msgid "Remember password" -#~ msgstr "Recordar la contraseña" - -#~ msgid "Select Region of Image" -#~ msgstr "Seleccionar una región de la imagen" - -#~ msgid "Please click and drag on the image to select the region of interest:" -#~ msgstr "" -#~ "Pulse y arrastre sobre la imagen para seleccionar la región de interés:" - -#~ msgid "Default:" -#~ msgstr "Predeterminada:" - -#~ msgctxt "No shortcut defined" -#~ msgid "None" -#~ msgstr "Ninguna" - -#~ msgid "Custom:" -#~ msgstr "Personalizada:" - -#~ msgid "Shortcut Schemes" -#~ msgstr "Esquemas de accesos rápidos" - -#~ msgid "Current scheme:" -#~ msgstr "Esquema actual:" - -#~ msgid "New..." -#~ msgstr "Nuevo..." - -#~ msgid "Delete" -#~ msgstr "Borrar" - -#~ msgid "More Actions" -#~ msgstr "Más acciones" - -#~ msgid "Save as Scheme Defaults" -#~ msgstr "Guardar como predeterminados de esquema" - -#~ msgid "Export Scheme..." -#~ msgstr "Exportar esquema..." - -#~ msgid "Name for New Scheme" -#~ msgstr "Nombre para el nuevo esquema" - -#~ msgid "Name for new scheme:" -#~ msgstr "Nombre del nuevo esquema:" - -#~ msgid "New Scheme" -#~ msgstr "Nuevo esquema" - -#~ msgid "A scheme with this name already exists." -#~ msgstr "Ya existe un esquema con este nombre." - -#~ msgid "" -#~ "Do you really want to delete the scheme %1?\n" -#~ "Note that this will not remove any system wide shortcut schemes." -#~ msgstr "" -#~ "¿Realmente desea eliminar el esquema %1?\n" -#~ "Tenga en cuenta que esto no eliminará ningún esquema de accesos rápidos " -#~ "del sistema." - -#~ msgid "Export to Location" -#~ msgstr "Exportar a ubicación" - -#~ msgid "Could not export shortcuts scheme because the location is invalid." -#~ msgstr "" -#~ "No se puede exportar el esquema de accesos rápidos porque la ubicación no " -#~ "es válida." - -#~ msgid "" -#~ "The current shortcut scheme is modified. Save before switching to the new " -#~ "one?" -#~ msgstr "" -#~ "Se ha modificado el esquema actual de accesos rápidos. ¿Desea guardarlo " -#~ "antes de cambiar al nuevo esquema?" - -#~ msgid "Configure Shortcuts" -#~ msgstr "Configurar accesos rápidos" - -#~ msgid "Print" -#~ msgstr "Imprimir" - -#~ msgid "Reset to Defaults" -#~ msgstr "Restablecer a predeterminados" - -#~ msgid "" -#~ "Search interactively for shortcut names (e.g. Copy) or combination of " -#~ "keys (e.g. Ctrl+C) by typing them here." -#~ msgstr "" -#~ "Buscar interactivamente nombres de accesos rápidos (p. ej., Copiar) o " -#~ "combinaciones de teclas (p. ej., Ctrl+C) introduciéndolas aquí." - -#~ msgid "" -#~ "Here you can see a list of key bindings, i.e. associations between " -#~ "actions (e.g. 'Copy') shown in the left column and keys or combination of " -#~ "keys (e.g. Ctrl+V) shown in the right column." -#~ msgstr "" -#~ "Aquí puede ver una lista de las asociaciones de teclas, es decir, " -#~ "asociaciones entre acciones (p. ej., «Copiar»), que se muestran en la " -#~ "columna de la izquierda, y teclas o combinaciones de teclas (p. ej., Ctrl" -#~ "+V), que se muestran en la columna de la derecha." - -#~ msgid "Action" -#~ msgstr "Acción" - -#~ msgid "Shortcut" -#~ msgstr "Acceso rápido" - -#~ msgid "Alternate" -#~ msgstr "Alternativo" - -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgid "Global Alternate" -#~ msgstr "Alternativo global" - -#~ msgid "Mouse Button Gesture" -#~ msgstr "Gesto con el botón del ratón" - -#~ msgid "Mouse Shape Gesture" -#~ msgstr "Gesto de forma con el ratón" - -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgid "Key Conflict" -#~ msgstr "Conflicto de teclas" - -#~ msgid "" -#~ "The '%1' shape gesture has already been allocated to the \"%2\" action.\n" -#~ "Do you want to reassign it from that action to the current one?" -#~ msgstr "" -#~ "El gesto de forma «%1» ya ha sido asignado a la acción «%2».\n" -#~ "¿Desea reasignarlo de esa acción a la acción actual?" - -#~ msgid "Reassign" -#~ msgstr "Reasignar" - -#~ msgid "" -#~ "The '%1' rocker gesture has already been allocated to the \"%2\" action.\n" -#~ "Do you want to reassign it from that action to the current one?" -#~ msgstr "" -#~ "El gesto de mecedora «%1» ya ha sido asignado a la acción «%2».\n" -#~ "¿Desea reasignarlo de esa acción a la acción actual?" - -#~ msgctxt "header for an applications shortcut list" -#~ msgid "Shortcuts for %1" -#~ msgstr "Accesos rápidos para %1" - -#~ msgid "Main:" -#~ msgstr "Principal:" - -#~ msgid "Alternate:" -#~ msgstr "Alternativo:" - -#~ msgid "Global:" -#~ msgstr "Global:" - -#~ msgid "Action Name" -#~ msgstr "Nombre de la acción" - -#~ msgid "Shortcuts" -#~ msgstr "Accesos rápidos" - -#~ msgid "Description" -#~ msgstr "Descripción" - -#~ msgctxt "@item:intable Action name in shortcuts configuration" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Switch Application Language" -#~ msgstr "Cambiar el idioma de la aplicación" - -#~ msgid "" -#~ "Please choose the language which should be used for this application:" -#~ msgstr "Elija el idioma que se debe usar en esta aplicación:" - -#~ msgid "Add Fallback Language" -#~ msgstr "Añadir un idioma al que recurrir" - -#~ msgid "" -#~ "Adds one more language which will be used if other translations do not " -#~ "contain a proper translation." -#~ msgstr "" -#~ "Añade un idioma más, que se usará si las otras traducciones no están " -#~ "completas." - -#~ msgid "" -#~ "The language for this application has been changed. The change will take " -#~ "effect the next time the application is started." -#~ msgstr "" -#~ "Se ha cambiado el idioma de esta aplicación. El cambio surtirá efecto la " -#~ "próxima vez que se inicie la aplicación." - -#~ msgid "Application Language Changed" -#~ msgstr "El idioma de la aplicación ha sido cambiado" - -#~ msgid "Primary language:" -#~ msgstr "Idioma principal:" - -#~ msgid "Fallback language:" -#~ msgstr "Idioma al que recurrir:" - -#~ msgid "Remove" -#~ msgstr "Eliminar" - -#~ msgid "" -#~ "This is the main application language which will be used first, before " -#~ "any other languages." -#~ msgstr "" -#~ "Este el idioma principal de la aplicación, que se usará antes que ningún " -#~ "otro idioma." - -#~ msgid "" -#~ "This is the language which will be used if any previous languages do not " -#~ "contain a proper translation." -#~ msgstr "" -#~ "Este es el idioma que se usará si los idiomas anteriores no contienen una " -#~ "traducción adecuada." - -#~ msgid "Tip of the Day" -#~ msgstr "Sugerencia del día" - -#~ msgid "Did you know...?\n" -#~ msgstr "¿Sabía...?\n" - -#~ msgid "&Show tips on startup" -#~ msgstr "&Mostrar sugerencias al inicio" - -#~ msgid "&Previous" -#~ msgstr "&Anterior" - -#~ msgctxt "Opposite to Previous" -#~ msgid "&Next" -#~ msgstr "Siguie&nte" - -#~ msgid "Find Next" -#~ msgstr "Buscar siguiente" - -#~ msgid "Find next occurrence of '%1'?" -#~ msgstr "Encontrar la siguiente coincidencia con «%1»?" - -#~ msgid "1 match found." -#~ msgid_plural "%1 matches found." -#~ msgstr[0] "Se ha encontrado una coincidencia." -#~ msgstr[1] "Se han encontrado %1 coincidencias." - -#~ msgid "No matches found for '%1'." -#~ msgstr "No se encontraron coincidencias para «%1»." - -#~ msgid "No matches found for '%1'." -#~ msgstr "No se encontraron coincidencias para «%1»." - -#~ msgid "Beginning of document reached." -#~ msgstr "Se alcanzó el principio del documento." - -#~ msgid "End of document reached." -#~ msgstr "Se alcanzó el final del documento." - -#~ msgid "Continue from the end?" -#~ msgstr "¿Continuar desde el final?" - -#~ msgid "Continue from the beginning?" -#~ msgstr "¿Continuar desde el principio?" - -#~ msgid "Find Text" -#~ msgstr "Buscar texto" - -#~ msgctxt "@title:group" -#~ msgid "Find" -#~ msgstr "Encontrar" - -#~ msgid "&Text to find:" -#~ msgstr "&Texto a encontrar:" - -#~ msgid "Regular e&xpression" -#~ msgstr "Expresión ®ular" - -#~ msgid "&Edit..." -#~ msgstr "&Editar..." - -#~ msgid "Replace With" -#~ msgstr "Remplazar con" - -#~ msgid "Replace&ment text:" -#~ msgstr "Texto de ree&mplazo:" - -#~ msgid "Use p&laceholders" -#~ msgstr "U&sar contenedores" - -#~ msgid "Insert Place&holder" -#~ msgstr "Insertar &contenedor" - -#~ msgid "Options" -#~ msgstr "Opciones" - -#~ msgid "C&ase sensitive" -#~ msgstr "Distinguir m&ayúsculas/minúsculas" - -#~ msgid "&Whole words only" -#~ msgstr "Solo palabras comp&letas" - -#~ msgid "From c&ursor" -#~ msgstr "Desde el c&ursor" - -#~ msgid "Find &backwards" -#~ msgstr "Buscar &hacia atrás" - -#~ msgid "&Selected text" -#~ msgstr "Texto &seleccionado" - -#~ msgid "&Prompt on replace" -#~ msgstr "&Preguntar si remplazar" - -#~ msgid "Start replace" -#~ msgstr "Comenzar el remplazo" - -#~ msgid "" -#~ "If you press the Replace button, the text you entered above is " -#~ "searched for within the document and any occurrence is replaced with the " -#~ "replacement text." -#~ msgstr "" -#~ "Si pulsa el botón de Remplazo, el texto que introdujo más " -#~ "arriba se buscará a lo largo del documento, y si se produjese alguna " -#~ "correspondencia, el texto encontrado será sustituido por el remplazo." - -#~ msgid "&Find" -#~ msgstr "&Buscar" - -#~ msgid "Start searching" -#~ msgstr "Iniciar búsqueda" - -#~ msgid "" -#~ "If you press the Find button, the text you entered above is " -#~ "searched for within the document." -#~ msgstr "" -#~ "Si pulsa el botón Buscar, se buscará el texto que usted " -#~ "introdujo más arriba en el documento." - -#~ msgid "" -#~ "Enter a pattern to search for, or select a previous pattern from the list." -#~ msgstr "" -#~ "Introducir un patrón de búsqueda, o seleccionar un patrón previo de la " -#~ "lista." - -#~ msgid "If enabled, search for a regular expression." -#~ msgstr "Si está habilitado, buscar una expresión regular." - -#~ msgid "Click here to edit your regular expression using a graphical editor." -#~ msgstr "" -#~ "Pulsar aquí para editar su expresión regular usando un editor gráfico." - -#~ msgid "Enter a replacement string, or select a previous one from the list." -#~ msgstr "" -#~ "Introducir una cadena de remplazo, o seleccionar una previa de la lista." - -#~ msgid "" -#~ "If enabled, any occurrence of \\N, where " -#~ "N is an integer number, will be replaced with the " -#~ "corresponding capture (\"parenthesized substring\") from the pattern." -#~ "

    To include (a literal \\N in your replacement, put " -#~ "an extra backslash in front of it, like \\\\N.

    " -#~ msgstr "" -#~ "Si está activado, cualquier aparición de \\N, " -#~ "donde N sea un número entero, se remplazará por la " -#~ "captura correspondiente («subcadena entre paréntesis») del patrón.

    Para " -#~ "incluir (un \\N literal en su remplazo, ponga una " -#~ "barra inversa extra delante, como \\\\N.

    " - -#~ msgid "Click for a menu of available captures." -#~ msgstr "Pulsar para obtener un menú de capturas disponibles." - -#~ msgid "Require word boundaries in both ends of a match to succeed." -#~ msgstr "" -#~ "Exigir límites de palabra en ambos extremos para que se considere una " -#~ "coincidencia." - -#~ msgid "" -#~ "Start searching at the current cursor location rather than at the top." -#~ msgstr "" -#~ "Comenzar la búsqueda en la ubicación actual del cursor en lugar de al " -#~ "comienzo." - -#~ msgid "Only search within the current selection." -#~ msgstr "Buscar solo dentro de la selección actual." - -#~ msgid "" -#~ "Perform a case sensitive search: entering the pattern 'Joe' will not " -#~ "match 'joe' or 'JOE', only 'Joe'." -#~ msgstr "" -#~ "Realizar una búsqueda que distingue mayúsculas de minúsculas: Si " -#~ "introduce el patrón «Juan» no encontrará «juan» ni «JUAN», solo «Juan»." - -#~ msgid "Search backwards." -#~ msgstr "Buscar hacia atrás." - -#~ msgid "Ask before replacing each match found." -#~ msgstr "Preguntar antes de remplazar cada coincidencia encontrada." - -#~ msgid "Any Character" -#~ msgstr "Cualquier carácter" - -#~ msgid "Start of Line" -#~ msgstr "Inicio de línea" - -#~ msgid "End of Line" -#~ msgstr "Fin de línea" - -#~ msgid "Set of Characters" -#~ msgstr "Juego de caracteres" - -#~ msgid "Repeats, Zero or More Times" -#~ msgstr "Se repite, cero o más veces" - -#~ msgid "Repeats, One or More Times" -#~ msgstr "Se repite, una o más veces" - -#~ msgid "Optional" -#~ msgstr "Opcional" - -#~ msgid "Escape" -#~ msgstr "Escape" - -#~ msgid "TAB" -#~ msgstr "Tabulador" - -#~ msgid "Newline" -#~ msgstr "Nueva línea" - -#~ msgid "Carriage Return" -#~ msgstr "Retorno de carro" - -#~ msgid "White Space" -#~ msgstr "Espacio en blanco" - -#~ msgid "Digit" -#~ msgstr "Dígito" - -#~ msgid "Complete Match" -#~ msgstr "Coincidencia completa" - -#~ msgid "Captured Text (%1)" -#~ msgstr "Texto capturado (%1)" - -#~ msgid "You must enter some text to search for." -#~ msgstr "Debe introducir el texto a buscar." - -#~ msgid "Invalid regular expression." -#~ msgstr "Expresión regular incorrecta." - -#~ msgid "Replace" -#~ msgstr "Remplazar" - -#~ msgctxt "@action:button Replace all occurrences" -#~ msgid "&All" -#~ msgstr "&Todo" - -#~ msgid "&Skip" -#~ msgstr "O&mitir" - -#~ msgid "Replace '%1' with '%2'?" -#~ msgstr "¿Remplazar «%1» por «%2»?" - -#~ msgid "No text was replaced." -#~ msgstr "No se remplazó ningún texto." - -#~ msgid "1 replacement done." -#~ msgid_plural "%1 replacements done." -#~ msgstr[0] "Realizada una sustitución." -#~ msgstr[1] "Se han realizado %1 sustituciones." - -#~ msgid "Do you want to restart search from the end?" -#~ msgstr "¿Desea reiniciar la búsqueda desde el final?" - -#~ msgid "Do you want to restart search at the beginning?" -#~ msgstr "¿Desea reiniciar la búsqueda desde el comienzo?" - -#~ msgctxt "@action:button Restart find & replace" -#~ msgid "Restart" -#~ msgstr "Reiniciar" - -#~ msgctxt "@action:button Stop find & replace" -#~ msgid "Stop" -#~ msgstr "Detener" - -#~ msgid "" -#~ "Your replacement string is referencing a capture greater than '\\%1', " -#~ msgstr "Su cadena de remplazo refiere una captura mayor que «\\%1», " - -#~ msgid "but your pattern only defines 1 capture." -#~ msgid_plural "but your pattern only defines %1 captures." -#~ msgstr[0] "pero su patrón solo define una captura." -#~ msgstr[1] "pero su patrón solo define %1 capturas." - -#~ msgid "but your pattern defines no captures." -#~ msgstr "pero su patrón no define ninguna captura." - -#~ msgid "" -#~ "\n" -#~ "Please correct." -#~ msgstr "" -#~ "\n" -#~ "Corríjalo." - -#~ msgctxt "@item Font name" -#~ msgid "Sans Serif" -#~ msgstr "Sans Serif" - -#~ msgctxt "@item Font name" -#~ msgid "Serif" -#~ msgstr "Serif" - -#~ msgctxt "@item Font name" -#~ msgid "Monospace" -#~ msgstr "Monospace" - -#~ msgctxt "@item Font name" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@item Font name [foundry]" -#~ msgid "%1 [%2]" -#~ msgstr "%1 [%2]" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Here you can choose the font to be used." -#~ msgstr "Aquí puede elegir el tipo de letra a usar." - -#~ msgid "Requested Font" -#~ msgstr "Tipo de letra solicitado" - -#~ msgctxt "@option:check" -#~ msgid "Font" -#~ msgstr "Tipo de letra" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enable this checkbox to change the font family settings." -#~ msgstr "" -#~ "Marque esta casilla para cambiar las preferencias sobre la familia de " -#~ "tipos de letra." - -#~ msgctxt "@info:tooltip" -#~ msgid "Change font family?" -#~ msgstr "¿Cambiar familia de tipos de letra?" - -#~ msgctxt "@label" -#~ msgid "Font:" -#~ msgstr "Tipo de letra:" - -#~ msgctxt "@option:check" -#~ msgid "Font style" -#~ msgstr "Estilo del tipo de letra" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enable this checkbox to change the font style settings." -#~ msgstr "" -#~ "Marque esta casilla para cambiar las preferencias sobre el estilo del " -#~ "tipo de letra." - -#~ msgctxt "@info:tooltip" -#~ msgid "Change font style?" -#~ msgstr "¿Cambiar el estilo del tipo de letra?" - -#~ msgid "Font style:" -#~ msgstr "Estilo del tipo de letra:" - -#~ msgctxt "@option:check" -#~ msgid "Size" -#~ msgstr "Tamaño" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enable this checkbox to change the font size settings." -#~ msgstr "" -#~ "Marque esta casilla para cambiar las preferencias sobre el tamaño del " -#~ "tipo de letra." - -#~ msgctxt "@info:tooltip" -#~ msgid "Change font size?" -#~ msgstr "¿Cambiar el tamaño del tipo de letra?" - -#~ msgctxt "@label:listbox Font size" -#~ msgid "Size:" -#~ msgstr "Tamaño:" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Here you can choose the font family to be used." -#~ msgstr "Aquí puede elegir la familia de tipos de letra a usar." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Here you can choose the font style to be used." -#~ msgstr "Aquí puede elegir el estilo del tipo de letra a usar." - -#~ msgctxt "@item font" -#~ msgid "Italic" -#~ msgstr "Cursiva" - -#~ msgctxt "@item font" -#~ msgid "Oblique" -#~ msgstr "Oblicua" - -#~ msgctxt "@item font" -#~ msgid "Bold" -#~ msgstr "Negrita" - -#~ msgctxt "@item font" -#~ msgid "Bold Italic" -#~ msgstr "Negrita cursiva" - -#~ msgctxt "@item font size" -#~ msgid "Relative" -#~ msgstr "Relativo" - -#~ msgid "Font size
    fixed or relative
    to environment" -#~ msgstr "" -#~ "Tamaño del tipo de letra
    fijo o relativo
    al " -#~ "entorno" - -#~ msgid "" -#~ "Here you can switch between fixed font size and font size to be " -#~ "calculated dynamically and adjusted to changing environment (e.g. widget " -#~ "dimensions, paper size)." -#~ msgstr "" -#~ "Aquí puede cambiar entre tamaño del tipo de letra fijo y tamaño de tipo " -#~ "de letra calculado dinámicamente y ajustado a entornos variables (p. ej., " -#~ "dimensiones de elementos gráficos, tamaño de papel)." - -#~ msgid "Here you can choose the font size to be used." -#~ msgstr "Aquí puede elegir el tamaño del tipo de letra a usar." - -#~ msgid "The Quick Brown Fox Jumps Over The Lazy Dog" -#~ msgstr "Queda gazpacho, fibra, látex, jamón, kiwi y viñas. 123456789 ¿?¡!" - -#~ msgid "" -#~ "This sample text illustrates the current settings. You may edit it to " -#~ "test special characters." -#~ msgstr "" -#~ "Este texto de muestra ilustra las preferencias actuales. Puede editarlo " -#~ "para comprobar los caracteres especiales." - -#~ msgid "Actual Font" -#~ msgstr "Tipo de letra actual" - -#~ msgctxt "@item Font style" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "short" -#~ msgid "The Quick Brown Fox Jumps Over The Lazy Dog" -#~ msgstr "Queda gazpacho, fibra, látex, jamón, kiwi y viñas. 123456789 ¿?¡!" - -#~ msgctxt "Numeric IDs of scripts for font previews" -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "Select Font" -#~ msgstr "Seleccionar tipo de letra" - -#~ msgid "Choose..." -#~ msgstr "Elegir..." - -#~ msgid "Click to select a font" -#~ msgstr "Pulse para seleccionar un tipo de letra" - -#~ msgid "Preview of the selected font" -#~ msgstr "Vista previa del tipo de letra seleccionado" - -#~ msgid "" -#~ "This is a preview of the selected font. You can change it by clicking the " -#~ "\"Choose...\" button." -#~ msgstr "" -#~ "Esta es una vista previa del tipo de letra seleccionado. Puede cambiarlo " -#~ "pulsando sobre el botón «Elegir...»." - -#~ msgid "Preview of the \"%1\" font" -#~ msgstr "Vista previa del tipo de letra «%1»" - -#~ msgid "" -#~ "This is a preview of the \"%1\" font. You can change it by clicking the " -#~ "\"Choose...\" button." -#~ msgstr "" -#~ "Esta es una vista previa del tipo de letra «%1». Puede cambiarlo pulsando " -#~ "el botón «Elegir...»." - -#~ msgid "Search" -#~ msgstr "Buscar" - -#~ msgid "Stop" -#~ msgstr "Detener" - -#~ msgid " Stalled " -#~ msgstr " Atascado " - -#~ msgid " %1/s " -#~ msgstr " %1/s " - -#~ msgctxt "%1 is the label, we add a ':' to it" -#~ msgid "%1:" -#~ msgstr "%1:" - -#~ msgid "%2 of %3 complete" -#~ msgid_plural "%2 of %3 complete" -#~ msgstr[0] "%2 de %3 completado" -#~ msgstr[1] "%2 de %3 completado" - -#~ msgid "%2 / %1 folder" -#~ msgid_plural "%2 / %1 folders" -#~ msgstr[0] "%2 / %1 carpeta" -#~ msgstr[1] "%2 / %1 carpetas" - -#~ msgid "%2 / %1 file" -#~ msgid_plural "%2 / %1 files" -#~ msgstr[0] "%2 / %1 archivo" -#~ msgstr[1] "%2 / %1 archivos" - -#~ msgid "%1% of %2" -#~ msgstr "%1% de %2" - -#~ msgid "%2% of 1 file" -#~ msgid_plural "%2% of %1 files" -#~ msgstr[0] "%2% de 1 archivo" -#~ msgstr[1] "%2% de %1 archivos" - -#~ msgid "%1%" -#~ msgstr "%1%" - -#~ msgid "Stalled" -#~ msgstr "Atascado" - -#~ msgid "%2/s (%3 remaining)" -#~ msgid_plural "%2/s (%3 remaining)" -#~ msgstr[0] "%2/s (quedan %3)" -#~ msgstr[1] "%2/s (quedan %3)" - -#~ msgctxt "speed in bytes per second" -#~ msgid "%1/s" -#~ msgstr "%1/s" - -#~ msgid "%1/s (done)" -#~ msgstr "%1/s (hecho)" - -#~ msgid "&Resume" -#~ msgstr "&Reanudar" - -#~ msgid "&Pause" -#~ msgstr "&Pausar" - -#~ msgctxt "The source url of a job" -#~ msgid "Source:" -#~ msgstr "Origen:" - -#~ msgctxt "The destination url of a job" -#~ msgid "Destination:" -#~ msgstr "Destino:" - -#~ msgid "Click this to expand the dialog, to show details" -#~ msgstr "Pulse aquí para desplegar el diálogo y mostrar detalles" - -#~ msgid "&Keep this window open after transfer is complete" -#~ msgstr "&Mantener abierta esta ventana cuando acabe la transferencia" - -#~ msgid "Open &File" -#~ msgstr "Abrir el &archivo" - -#~ msgid "Open &Destination" -#~ msgstr "Abrir el &destino" - -#~ msgid "Progress Dialog" -#~ msgstr "Diálogo de progreso" - -#~ msgid "%1 folder" -#~ msgid_plural "%1 folders" -#~ msgstr[0] "%1 carpeta" -#~ msgstr[1] "%1 carpetas" - -#~ msgid "%1 file" -#~ msgid_plural "%1 files" -#~ msgstr[0] "%1 archivo" -#~ msgstr[1] "%1 archivos" - -#~ msgid "Click this to collapse the dialog, to hide details" -#~ msgstr "Pulse aquí para plegar el diálogo y ocultar detalles" - -#~ msgid "The style '%1' was not found" -#~ msgstr "No se encontró el estilo «%1»" - -#~ msgid "Do not run in the background." -#~ msgstr "No ejecutar en segundo plano." - -#~ msgid "Internally added if launched from Finder" -#~ msgstr "Añadido internamente si fue lanzado desde el buscador" - -#~ msgid "Unknown Application" -#~ msgstr "Aplicación desconocida" - -#~ msgid "&Minimize" -#~ msgstr "&Minimizar" - -#~ msgid "&Restore" -#~ msgstr "&Restaurar" - -#~ msgid "Are you sure you want to quit %1?" -#~ msgstr "¿Está seguro de que desea salir de %1?" - -#~ msgid "Confirm Quit From System Tray" -#~ msgstr "Confirmar salir desde la bandeja del sistema" - -#~ msgid "Minimize" -#~ msgstr "Minimizar" - -#~ msgctxt "@title:window" -#~ msgid "Dr. Klash' Accelerator Diagnosis" -#~ msgstr "Diagnóstico de aceleradores de Dr. Klash" - -#~ msgctxt "@option:check" -#~ msgid "Disable automatic checking" -#~ msgstr "Desactivar la comprobación automática" - -#~ msgctxt "@action:button" -#~ msgid "Close" -#~ msgstr "Cerrar" - -#~ msgid "

    Accelerators changed

    " -#~ msgstr "

    Aceleradores cambiados

    " - -#~ msgid "

    Accelerators removed

    " -#~ msgstr "

    Aceleradores eliminados

    " - -#~ msgid "

    Accelerators added (just for your info)

    " -#~ msgstr "

    Aceleradores añadidos (solo para su información)

    " - -#~ msgctxt "left mouse button" -#~ msgid "left button" -#~ msgstr "botón izquierdo" - -#~ msgctxt "middle mouse button" -#~ msgid "middle button" -#~ msgstr "botón central" - -#~ msgctxt "right mouse button" -#~ msgid "right button" -#~ msgstr "botón derecho" - -#~ msgctxt "a nonexistent value of mouse button" -#~ msgid "invalid button" -#~ msgstr "botón no válido" - -#~ msgctxt "" -#~ "a kind of mouse gesture: hold down one mouse button, then press another " -#~ "button" -#~ msgid "Hold %1, then push %2" -#~ msgstr "Mantenga pulsado el %1, y después pulse %2" - -#~ msgid "Conflict with Global Shortcut" -#~ msgstr "Conflicto con acceso rápido global" - -#~ msgid "" -#~ "The '%1' key combination has already been allocated to the global action " -#~ "\"%2\" in %3.\n" -#~ "Do you want to reassign it from that action to the current one?" -#~ msgstr "" -#~ "La combinación de teclas «%1» ya está asignada a la acción global «%2» en " -#~ "%3.\n" -#~ "¿Desea reasignarla de esa acción a la actual?" - -#~ msgid "" -#~ "The '%1' key combination is registered by application %2 for action %3:" -#~ msgstr "" -#~ "La combinación de teclas «%1» está registrada por la aplicación %2 para " -#~ "la acción %3:" - -#~ msgid "In context '%1' for action '%2'\n" -#~ msgstr "En el contexto «%1» para la acción «%2»\n" - -#~ msgid "" -#~ "The '%1' key combination is registered by application %2.\n" -#~ "%3" -#~ msgstr "" -#~ "La combinación de teclas «%1» está registrada por la aplicación %2.\n" -#~ "%3" - -#~ msgid "Conflict With Registered Global Shortcut" -#~ msgstr "Conflicto con un acceso rápido global registrado" - -#~ msgctxt "@action" -#~ msgid "Open" -#~ msgstr "Abrir" - -#~ msgctxt "@action" -#~ msgid "New" -#~ msgstr "Nuevo" - -#~ msgctxt "@action" -#~ msgid "Close" -#~ msgstr "Cerrar" - -#~ msgctxt "@action" -#~ msgid "Save" -#~ msgstr "Guardar" - -#~ msgctxt "@action" -#~ msgid "Print" -#~ msgstr "Imprimir" - -#~ msgctxt "@action" -#~ msgid "Quit" -#~ msgstr "Salir" - -#~ msgctxt "@action" -#~ msgid "Undo" -#~ msgstr "Deshacer" - -#~ msgctxt "@action" -#~ msgid "Redo" -#~ msgstr "Rehacer" - -#~ msgctxt "@action" -#~ msgid "Cut" -#~ msgstr "Cortar" - -#~ msgctxt "@action" -#~ msgid "Copy" -#~ msgstr "Copiar" - -#~ msgctxt "@action" -#~ msgid "Paste" -#~ msgstr "Pegar" - -#~ msgctxt "@action" -#~ msgid "Paste Selection" -#~ msgstr "Pegar selección" - -#~ msgctxt "@action" -#~ msgid "Select All" -#~ msgstr "Seleccionar todo" - -#~ msgctxt "@action" -#~ msgid "Deselect" -#~ msgstr "Deseleccionar" - -#~ msgctxt "@action" -#~ msgid "Delete Word Backwards" -#~ msgstr "Borrar palabra anterior" - -#~ msgctxt "@action" -#~ msgid "Delete Word Forward" -#~ msgstr "Borrar palabra siguiente" - -#~ msgctxt "@action" -#~ msgid "Find" -#~ msgstr "Buscar" - -#~ msgctxt "@action" -#~ msgid "Find Next" -#~ msgstr "Buscar siguiente" - -#~ msgctxt "@action" -#~ msgid "Find Prev" -#~ msgstr "Buscar anterior" - -#~ msgctxt "@action" -#~ msgid "Replace" -#~ msgstr "Remplazar" - -#~ msgctxt "@action Go to main page" -#~ msgid "Home" -#~ msgstr "Ir a la página principal" - -#~ msgctxt "@action Beginning of document" -#~ msgid "Begin" -#~ msgstr "Inicio" - -#~ msgctxt "@action End of document" -#~ msgid "End" -#~ msgstr "Fin" - -#~ msgctxt "@action" -#~ msgid "Prior" -#~ msgstr "Anterior" - -#~ msgctxt "@action Opposite to Prior" -#~ msgid "Next" -#~ msgstr "Siguiente" - -#~ msgctxt "@action" -#~ msgid "Up" -#~ msgstr "Arriba" - -#~ msgctxt "@action" -#~ msgid "Back" -#~ msgstr "Atrás" - -#~ msgctxt "@action" -#~ msgid "Forward" -#~ msgstr "Adelante" - -#~ msgctxt "@action" -#~ msgid "Reload" -#~ msgstr "Volver a cargar" - -#~ msgctxt "@action" -#~ msgid "Beginning of Line" -#~ msgstr "Comienzo de línea" - -#~ msgctxt "@action" -#~ msgid "End of Line" -#~ msgstr "Fin de línea" - -#~ msgctxt "@action" -#~ msgid "Go to Line" -#~ msgstr "Ir a la línea" - -#~ msgctxt "@action" -#~ msgid "Backward Word" -#~ msgstr "Palabra anterior" - -#~ msgctxt "@action" -#~ msgid "Forward Word" -#~ msgstr "Palabra siguiente" - -#~ msgctxt "@action" -#~ msgid "Add Bookmark" -#~ msgstr "Añadir marcador" - -#~ msgctxt "@action" -#~ msgid "Zoom In" -#~ msgstr "Ampliar" - -#~ msgctxt "@action" -#~ msgid "Zoom Out" -#~ msgstr "Reducir" - -#~ msgctxt "@action" -#~ msgid "Full Screen Mode" -#~ msgstr "Modo de pantalla completa" - -#~ msgctxt "@action" -#~ msgid "Show Menu Bar" -#~ msgstr "Mostrar barra de menú" - -#~ msgctxt "@action" -#~ msgid "Activate Next Tab" -#~ msgstr "Activar la pestaña siguiente" - -#~ msgctxt "@action" -#~ msgid "Activate Previous Tab" -#~ msgstr "Activar la pestaña anterior" - -#~ msgctxt "@action" -#~ msgid "Help" -#~ msgstr "Ayuda" - -#~ msgctxt "@action" -#~ msgid "What's This" -#~ msgstr "Qué es esto" - -#~ msgctxt "@action" -#~ msgid "Text Completion" -#~ msgstr "Terminación de texto" - -#~ msgctxt "@action" -#~ msgid "Previous Completion Match" -#~ msgstr "Anterior coincidencia de terminación" - -#~ msgctxt "@action" -#~ msgid "Next Completion Match" -#~ msgstr "Siguiente coincidencia de terminación" - -#~ msgctxt "@action" -#~ msgid "Substring Completion" -#~ msgstr "Terminación de subcadenas" - -#~ msgctxt "@action" -#~ msgid "Previous Item in List" -#~ msgstr "Anterior elemento de la lista" - -#~ msgctxt "@action" -#~ msgid "Next Item in List" -#~ msgstr "Siguiente elemento de la lista" - -#~ msgctxt "@action" -#~ msgid "Open Recent" -#~ msgstr "Abrir reciente" - -#~ msgctxt "@action" -#~ msgid "Save As" -#~ msgstr "Guardar como" - -#~ msgctxt "@action" -#~ msgid "Revert" -#~ msgstr "Revertir" - -#~ msgctxt "@action" -#~ msgid "Print Preview" -#~ msgstr "Vista previa" - -#~ msgctxt "@action" -#~ msgid "Mail" -#~ msgstr "Correo" - -#~ msgctxt "@action" -#~ msgid "Clear" -#~ msgstr "Borrar" - -#~ msgctxt "@action" -#~ msgid "Actual Size" -#~ msgstr "Tamaño real" - -#~ msgctxt "@action" -#~ msgid "Fit To Page" -#~ msgstr "Ajustar a la página" - -#~ msgctxt "@action" -#~ msgid "Fit To Width" -#~ msgstr "Ajustar al ancho" - -#~ msgctxt "@action" -#~ msgid "Fit To Height" -#~ msgstr "Ajustar a la altura" - -#~ msgctxt "@action" -#~ msgid "Zoom" -#~ msgstr "Ampliar" - -#~ msgctxt "@action" -#~ msgid "Goto" -#~ msgstr "Ir a" - -#~ msgctxt "@action" -#~ msgid "Goto Page" -#~ msgstr "Ir a página" - -#~ msgctxt "@action" -#~ msgid "Document Back" -#~ msgstr "Ir atrás en el documento" - -#~ msgctxt "@action" -#~ msgid "Document Forward" -#~ msgstr "Ir adelante en el documento" - -#~ msgctxt "@action" -#~ msgid "Edit Bookmarks" -#~ msgstr "Editar marcadores" - -#~ msgctxt "@action" -#~ msgid "Spelling" -#~ msgstr "Ortografía" - -#~ msgctxt "@action" -#~ msgid "Show Toolbar" -#~ msgstr "Mostrar barra de herramientas" - -#~ msgctxt "@action" -#~ msgid "Show Statusbar" -#~ msgstr "Mostrar barra de estado" - -#~ msgctxt "@action" -#~ msgid "Save Options" -#~ msgstr "Guardar opciones" - -#~ msgctxt "@action" -#~ msgid "Key Bindings" -#~ msgstr "Accesos rápidos" - -#~ msgctxt "@action" -#~ msgid "Preferences" -#~ msgstr "Preferencias" - -#~ msgctxt "@action" -#~ msgid "Configure Toolbars" -#~ msgstr "Configurar barras de herramientas" - -#~ msgctxt "@action" -#~ msgid "Configure Notifications" -#~ msgstr "Configurar notificaciones" - -#~ msgctxt "@action" -#~ msgid "Tip Of Day" -#~ msgstr "Sugerencia del día" - -#~ msgctxt "@action" -#~ msgid "Report Bug" -#~ msgstr "Informar de fallo" - -#~ msgctxt "@action" -#~ msgid "Switch Application Language" -#~ msgstr "Cambiar el idioma de la aplicación" - -#~ msgctxt "@action" -#~ msgid "About Application" -#~ msgstr "Acerca de la aplicación" - -#~ msgctxt "@action" -#~ msgid "About KDE" -#~ msgstr "Acerca de KDE" - -#~ msgid "Spell Checking Configuration" -#~ msgstr "Configuración del corrector ortográfico" - -#~ msgid "Enable &background spellchecking" -#~ msgstr "Ha&bilitar la verificación ortográfica en segundo plano" - -#~ msgid "&Automatic spell checking enabled by default" -#~ msgstr "Corrección ortográfica &automática habilitada por omisión" - -#~ msgid "Skip all &uppercase words" -#~ msgstr "Saltar las palabras totalmente en mayúsc&ulas" - -#~ msgid "S&kip run-together words" -#~ msgstr "&Saltar las palabras compuestas" - -#~ msgid "Default language:" -#~ msgstr "Idioma predeterminado:" - -#~ msgid "Ignored Words" -#~ msgstr "Palabras ignoradas" - -#~ msgctxt "@title:window" -#~ msgid "Check Spelling" -#~ msgstr "Comprobar ortografía" - -#~ msgctxt "@action:button" -#~ msgid "&Finished" -#~ msgstr "&Finalizado" - -#~ msgctxt "progress label" -#~ msgid "Spell checking in progress..." -#~ msgstr "Corrección ortográfica en progreso..." - -#~ msgid "Spell check stopped." -#~ msgstr "Corrección ortográfica detenida." - -#~ msgid "Spell check canceled." -#~ msgstr "Corrección ortográfica cancelada." - -#~ msgid "Spell check complete." -#~ msgstr "Corrección ortográfica completada." - -#~ msgid "Autocorrect" -#~ msgstr "Corrección automática" - -#~ msgid "" -#~ "You reached the end of the list\n" -#~ "of matching items.\n" -#~ msgstr "" -#~ "Alcanzó el final de la lista\n" -#~ "de coincidencias.\n" - -#~ msgid "" -#~ "The completion is ambiguous, more than one\n" -#~ "match is available.\n" -#~ msgstr "" -#~ "La terminación es ambigua, hay más de una\n" -#~ "coincidencia disponible.\n" - -#~ msgid "There is no matching item available.\n" -#~ msgstr "No hay coincidencias disponibles.\n" - -#~ msgid "Backspace" -#~ msgstr "Retroceso" - -#~ msgid "SysReq" -#~ msgstr "PetSis" - -#~ msgid "CapsLock" -#~ msgstr "BloqMayús" - -#~ msgid "NumLock" -#~ msgstr "BloqNum" - -#~ msgid "ScrollLock" -#~ msgstr "BloqDespl" - -#~ msgid "PageUp" -#~ msgstr "RePág" - -#~ msgid "PageDown" -#~ msgstr "AvPág" - -#~ msgid "Again" -#~ msgstr "De nuevo" - -#~ msgid "Props" -#~ msgstr "Propiedades" - -#~ msgid "Undo" -#~ msgstr "Deshacer" - -#~ msgid "Front" -#~ msgstr "Frente" - -#~ msgid "Copy" -#~ msgstr "Copiar" - -#~ msgid "Open" -#~ msgstr "Abrir" - -#~ msgid "Paste" -#~ msgstr "Pegar" - -#~ msgid "Find" -#~ msgstr "Buscar" - -#~ msgid "Cut" -#~ msgstr "Cortar" - -#~ msgid "&OK" -#~ msgstr "Acep&tar" - -#~ msgid "&Cancel" -#~ msgstr "&Cancelar" - -#~ msgid "&Yes" -#~ msgstr "&Sí" - -#~ msgid "Yes" -#~ msgstr "Sí" - -#~ msgid "&No" -#~ msgstr "&No" - -#~ msgid "No" -#~ msgstr "No" - -#~ msgid "&Discard" -#~ msgstr "&Descartar" - -#~ msgid "Discard changes" -#~ msgstr "Descartar cambios" - -#~ msgid "" -#~ "Pressing this button will discard all recent changes made in this dialog." -#~ msgstr "" -#~ "Al pulsar este botón se descartarán todos los cambios recientes hechos en " -#~ "este diálogo." - -#~ msgid "Save data" -#~ msgstr "Guardar datos" - -#~ msgid "&Do Not Save" -#~ msgstr "No &guardar" - -#~ msgid "Do not save data" -#~ msgstr "No guardar los datos" - -#~ msgid "Save file with another name" -#~ msgstr "Guardar archivo con otro nombre" - -#~ msgid "&Apply" -#~ msgstr "&Aplicar" - -#~ msgid "Apply changes" -#~ msgstr "Aplicar cambios" - -#~ msgid "" -#~ "When you click Apply, the settings will be handed over to the " -#~ "program, but the dialog will not be closed.\n" -#~ "Use this to try different settings." -#~ msgstr "" -#~ "Al pulsar Aplicar, los ajustes se pasarán al programa, pero no se " -#~ "cerrará el diálogo.\n" -#~ "Use esto para probar diferentes ajustes." - -#~ msgid "Administrator &Mode..." -#~ msgstr "&Modo administrador..." - -#~ msgid "Enter Administrator Mode" -#~ msgstr "Entrar en modo administrador" - -#~ msgid "" -#~ "When you click Administrator Mode you will be prompted for the " -#~ "administrator (root) password in order to make changes which require root " -#~ "privileges." -#~ msgstr "" -#~ "Cuando pulse Modo administrador se le solicitará la contraseña del " -#~ "administrador (root) para poder hacer cambios que precisen privilegios de " -#~ "root." - -#~ msgid "Clear input" -#~ msgstr "Borrar entrada" - -#~ msgid "Clear the input in the edit field" -#~ msgstr "Borrar entrada en el campo de edición" - -#~ msgid "Show help" -#~ msgstr "Mostrar ayuda" - -#~ msgid "Close the current window or document" -#~ msgstr "Cerrar la ventana o documento actual" - -#~ msgid "&Close Window" -#~ msgstr "&Cerrar ventana" - -#~ msgid "Close the current window." -#~ msgstr "Cerrar la ventana actual." - -#~ msgid "&Close Document" -#~ msgstr "&Cerrar documento" - -#~ msgid "Close the current document." -#~ msgstr "Cerrar el documento actual." - -#~ msgid "&Defaults" -#~ msgstr "Pre&determinados" - -#~ msgid "Reset all items to their default values" -#~ msgstr "Reiniciar todos los elementos a sus valores predeterminados" - -#~ msgid "Go back one step" -#~ msgstr "Retroceder un paso" - -#~ msgid "Go forward one step" -#~ msgstr "Avanzar un paso" - -#~ msgid "Opens the print dialog to print the current document" -#~ msgstr "Abre el diálogo de impresión para imprimir el documento actual" - -#~ msgid "C&ontinue" -#~ msgstr "C&ontinuar" - -#~ msgid "Continue operation" -#~ msgstr "Continuar la operación" - -#~ msgid "&Delete" -#~ msgstr "&Borrar" - -#~ msgid "Delete item(s)" -#~ msgstr "Borrar elemento(s)" - -#~ msgid "Open file" -#~ msgstr "Abrir archivo" - -#~ msgid "&Reset" -#~ msgstr "&Restablecer" - -#~ msgid "Reset configuration" -#~ msgstr "Reiniciar configuración" - -#~ msgctxt "Verb" -#~ msgid "&Insert" -#~ msgstr "&Insertar" - -#~ msgid "Confi&gure..." -#~ msgstr "Confi&gurar..." - -#~ msgid "Add" -#~ msgstr "Añadir" - -#~ msgid "Test" -#~ msgstr "Prueba" - -#~ msgid "Properties" -#~ msgstr "Propiedades" - -#~ msgid "&Overwrite" -#~ msgstr "S&obrescribir" - -#~ msgid "Redo" -#~ msgstr "Rehacer" - -#~ msgid "&Available:" -#~ msgstr "&Disponible:" - -#~ msgid "&Selected:" -#~ msgstr "&Seleccionado:" - -#~ msgctxt "KCharSelect section name" -#~ msgid "European Alphabets" -#~ msgstr "Alfabetos europeos" - -#~ msgctxt "KCharSelect section name" -#~ msgid "African Scripts" -#~ msgstr "Escrituras africanas" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Middle Eastern Scripts" -#~ msgstr "Escrituras de Oriente Medio" - -#~ msgctxt "KCharSelect section name" -#~ msgid "South Asian Scripts" -#~ msgstr "Escrituras del sur asiático" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Philippine Scripts" -#~ msgstr "Escrituras filipinas" - -#~ msgctxt "KCharSelect section name" -#~ msgid "South East Asian Scripts" -#~ msgstr "Escrituras del sudeste asiático" - -#~ msgctxt "KCharSelect section name" -#~ msgid "East Asian Scripts" -#~ msgstr "Escrituras del este asiático" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Central Asian Scripts" -#~ msgstr "Escrituras centroasiáticas" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Other Scripts" -#~ msgstr "Otras escrituras" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Symbols" -#~ msgstr "Símbolos" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Mathematical Symbols" -#~ msgstr "Símbolos matemáticos" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Phonetic Symbols" -#~ msgstr "Símbolos fonéticos" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Combining Diacritical Marks" -#~ msgstr "Signos diacríticos para combinar" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Other" -#~ msgstr "Otros" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Basic Latin" -#~ msgstr "Latín básico" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin-1 Supplement" -#~ msgstr "Latín-1 (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-A" -#~ msgstr "Latín extendido A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-B" -#~ msgstr "Latín extendido B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "IPA Extensions" -#~ msgstr "Extensiones IPA" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Spacing Modifier Letters" -#~ msgstr "Letras modificadoras de espaciado" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Diacritical Marks" -#~ msgstr "Signos diacríticos para combinar" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Greek and Coptic" -#~ msgstr "Griego y copto" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic" -#~ msgstr "Cirílico" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic Supplement" -#~ msgstr "Cirílico (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Armenian" -#~ msgstr "Armenio" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hebrew" -#~ msgstr "Hebreo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic" -#~ msgstr "Árabe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Syriac" -#~ msgstr "Siriaco" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic Supplement" -#~ msgstr "Árabe (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Thaana" -#~ msgstr "Thaana" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "NKo" -#~ msgstr "NKo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Samaritan" -#~ msgstr "Samaritano" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Mandaic" -#~ msgstr "Mandeo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Devanagari" -#~ msgstr "Devanagari" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bengali" -#~ msgstr "Bengalí" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Gurmukhi" -#~ msgstr "Gurmukhi" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Gujarati" -#~ msgstr "Gujarati" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Oriya" -#~ msgstr "Oriya" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tamil" -#~ msgstr "Tamil" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Telugu" -#~ msgstr "Telugu" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kannada" -#~ msgstr "Kannada (canarés)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Malayalam" -#~ msgstr "Malayalam (malabar)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Sinhala" -#~ msgstr "Sinhala (singalés)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Thai" -#~ msgstr "Tailandés" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Lao" -#~ msgstr "Lao (laosiano)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tibetan" -#~ msgstr "Tibetano" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Myanmar" -#~ msgstr "Myanmar (birmano)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Georgian" -#~ msgstr "Georgiano" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Jamo" -#~ msgstr "Hangul Jamo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic" -#~ msgstr "Etíope" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic Supplement" -#~ msgstr "Etíope (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cherokee" -#~ msgstr "Cheroqui" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Unified Canadian Aboriginal Syllabics" -#~ msgstr "Silabarios indígenas canadienses unificados" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ogham" -#~ msgstr "Ogham" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Runic" -#~ msgstr "Rúnico" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tagalog" -#~ msgstr "Tagalo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hanunoo" -#~ msgstr "Hanunoo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Buhid" -#~ msgstr "Buhid" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tagbanwa" -#~ msgstr "Tagbanwa" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Khmer" -#~ msgstr "Khmer (camboyano)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Mongolian" -#~ msgstr "Mongol" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Unified Canadian Aboriginal Syllabics Extended" -#~ msgstr "Silabarios indígenas canadienses unificados y extendidos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Limbu" -#~ msgstr "Limbu" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tai Le" -#~ msgstr "Tai Le" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "New Tai Lue" -#~ msgstr "Nuevo Tai Lue" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Khmer Symbols" -#~ msgstr "Símbolos khmer (camboyanos)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Buginese" -#~ msgstr "Buginés" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tai Tham" -#~ msgstr "Tai Tham" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Balinese" -#~ msgstr "Balinés" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Sundanese" -#~ msgstr "Sondanés" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Batak" -#~ msgstr "Batak" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Lepcha" -#~ msgstr "Lepcha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ol Chiki" -#~ msgstr "Ol Chiki" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Vedic Extensions" -#~ msgstr "Extensiones védicas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Phonetic Extensions" -#~ msgstr "Extensiones fonéticas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Phonetic Extensions Supplement" -#~ msgstr "Extensiones fonéticas (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Diacritical Marks Supplement" -#~ msgstr "Signos diacríticos para combinar (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended Additional" -#~ msgstr "Latín extendido adicional" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Greek Extended" -#~ msgstr "Griego extendido" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "General Punctuation" -#~ msgstr "Puntuación general" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Superscripts and Subscripts" -#~ msgstr "Superíndices y subíndices" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Currency Symbols" -#~ msgstr "Símbolos monetarios" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Diacritical Marks for Symbols" -#~ msgstr "Signos diacríticos para combinar en símbolos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Letterlike Symbols" -#~ msgstr "Símbolos semejantes a letras" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Number Forms" -#~ msgstr "Formas numéricas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arrows" -#~ msgstr "Flechas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Mathematical Operators" -#~ msgstr "Operadores matemáticos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Technical" -#~ msgstr "Técnicos diversos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Control Pictures" -#~ msgstr "Dibujos de control" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Optical Character Recognition" -#~ msgstr "Reconocimiento óptico de caracteres" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Enclosed Alphanumerics" -#~ msgstr "Alfanuméricos rodeados" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Box Drawing" -#~ msgstr "Dibujo de cajas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Block Elements" -#~ msgstr "Elementos de bloques" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Geometric Shapes" -#~ msgstr "Formas geométricas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Symbols" -#~ msgstr "Símbolos diversos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Dingbats" -#~ msgstr "Imágenes" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Mathematical Symbols-A" -#~ msgstr "Símbolos matemáticos diversos A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Arrows-A" -#~ msgstr "Flechas suplementarias A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Braille Patterns" -#~ msgstr "Patrones Braille" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Arrows-B" -#~ msgstr "Flechas suplementarias B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Mathematical Symbols-B" -#~ msgstr "Símbolos matemáticos diversos B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Mathematical Operators" -#~ msgstr "Operadores matemáticos suplementarios" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Symbols and Arrows" -#~ msgstr "Símbolos y flechas diversos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Glagolitic" -#~ msgstr "Glagolítico" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-C" -#~ msgstr "Latín extendido C" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Coptic" -#~ msgstr "Copto" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Georgian Supplement" -#~ msgstr "Georgiano (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tifinagh" -#~ msgstr "Tifinagh" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic Extended" -#~ msgstr "Etíope extendido" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic Extended-A" -#~ msgstr "Cirílico extendido A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Punctuation" -#~ msgstr "Puntuación suplementaria" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Radicals Supplement" -#~ msgstr "Radicales CJK (suplemento)" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kangxi Radicals" -#~ msgstr "Radicales kangxi" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ideographic Description Characters" -#~ msgstr "Caracteres de descripción de ideogramas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Symbols and Punctuation" -#~ msgstr "Símbolos y puntuación CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hiragana" -#~ msgstr "Hiragana" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Katakana" -#~ msgstr "Katakana" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bopomofo" -#~ msgstr "Bopomofo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Compatibility Jamo" -#~ msgstr "Hangul con compatibilidad jamo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kanbun" -#~ msgstr "Kanbun" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bopomofo Extended" -#~ msgstr "Bopomofo extendido" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Strokes" -#~ msgstr "Trazos CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Katakana Phonetic Extensions" -#~ msgstr "Extensiones fonéticas katakana" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Enclosed CJK Letters and Months" -#~ msgstr "Letras y meses CJK rodeados" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Compatibility" -#~ msgstr "Compatibilidad CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Unified Ideographs Extension A" -#~ msgstr "Extensión A de ideogramas CJK unificados" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Yijing Hexagram Symbols" -#~ msgstr "Símbolos de hexagramas Yijing" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Unified Ideographs" -#~ msgstr "Ideogramas CJK unificados" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Yi Syllables" -#~ msgstr "Sílabas yi" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Yi Radicals" -#~ msgstr "Radicales yi" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Lisu" -#~ msgstr "Lisu" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Vai" -#~ msgstr "Vai" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic Extended-B" -#~ msgstr "Cirílico extendido B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bamum" -#~ msgstr "Bamum" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Modifier Tone Letters" -#~ msgstr "Letras modificadoras de la entonación" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-D" -#~ msgstr "Latín extendido D" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Syloti Nagri" -#~ msgstr "Syloti Nagri" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Common Indic Number Forms" -#~ msgstr "Formas numéricas índicas comunes" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Phags-pa" -#~ msgstr "Phags-pa" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Saurashtra" -#~ msgstr "Saurashtra" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Devanagari Extended" -#~ msgstr "Devanagari extendido" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kayah Li" -#~ msgstr "Kayah Li" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Rejang" -#~ msgstr "Rejang" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Jamo Extended-A" -#~ msgstr "Hangul Jamo extendido-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Javanese" -#~ msgstr "Javanés" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cham" -#~ msgstr "Cham" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Myanmar Extended-A" -#~ msgstr "Myanmar extendido A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tai Viet" -#~ msgstr "Tai Viet" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic Extended-A" -#~ msgstr "Etíope extendido-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Meetei Mayek" -#~ msgstr "Meetei Mayek" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Syllables" -#~ msgstr "Sílabas hangul" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Jamo Extended-B" -#~ msgstr "Hangul Jamo extendido-B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "High Surrogates" -#~ msgstr "Sustitutos altos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "High Private Use Surrogates" -#~ msgstr "Sustitutos altos de uso privado" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Low Surrogates" -#~ msgstr "Sustitutos bajos" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Private Use Area" -#~ msgstr "Área de uso privado" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Compatibility Ideographs" -#~ msgstr "Ideogramas de compatibilidad CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Alphabetic Presentation Forms" -#~ msgstr "Formas de presentación alfabética" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic Presentation Forms-A" -#~ msgstr "Formas de presentación árabe A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Variation Selectors" -#~ msgstr "Selectores de variación" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Vertical Forms" -#~ msgstr "Formas verticales" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Half Marks" -#~ msgstr "Marcas intermedias para combinar" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Compatibility Forms" -#~ msgstr "Formas de compatibilidad CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Small Form Variants" -#~ msgstr "Variantes de formas pequeñas" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic Presentation Forms-B" -#~ msgstr "Formas de presentación árabes B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Halfwidth and Fullwidth Forms" -#~ msgstr "Formas de ancho intermedio y completo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Specials" -#~ msgstr "Especiales" - -#~ msgid "Enter a search term or character here" -#~ msgstr "Introduzca aquí un término o carácter de búsqueda" - -#~ msgctxt "Goes to previous character" -#~ msgid "Previous in History" -#~ msgstr "Anterior en el historial" - -#~ msgid "Previous Character in History" -#~ msgstr "Carácter anterior en el historial" - -#~ msgctxt "Goes to next character" -#~ msgid "Next in History" -#~ msgstr "Siguiente en el historial" - -#~ msgid "Next Character in History" -#~ msgstr "Carácter siguiente en el historial" - -#~ msgid "Select a category" -#~ msgstr "Seleccione una categoría" - -#~ msgid "Select a block to be displayed" -#~ msgstr "Seleccione un bloque a mostrar" - -#~ msgid "Set font" -#~ msgstr "Establecer el tipo de letra" - -#~ msgid "Set font size" -#~ msgstr "Establecer el tamaño del tipo de letra" - -#~ msgid "Character:" -#~ msgstr "Carácter:" - -#~ msgid "Name: " -#~ msgstr "Nombre: " - -#~ msgid "Annotations and Cross References" -#~ msgstr "Anotaciones y referencias cruzadas" - -#~ msgid "Alias names:" -#~ msgstr "Nombres alternativos:" - -#~ msgid "Notes:" -#~ msgstr "Notas:" - -#~ msgid "See also:" -#~ msgstr "Vea también:" - -#~ msgid "Equivalents:" -#~ msgstr "Equivalentes:" - -#~ msgid "Approximate equivalents:" -#~ msgstr "Equivalentes aproximados:" - -#~ msgid "CJK Ideograph Information" -#~ msgstr "Información de ideogramas CJK" - -#~ msgid "Definition in English: " -#~ msgstr "Definición en inglés: " - -#~ msgid "Mandarin Pronunciation: " -#~ msgstr "Pronunciación en mandarín: " - -#~ msgid "Cantonese Pronunciation: " -#~ msgstr "Pronunciación en cantonés: " - -#~ msgid "Japanese On Pronunciation: " -#~ msgstr "Pronunciación en japonés On (chinojaponés): " - -#~ msgid "Japanese Kun Pronunciation: " -#~ msgstr "Pronunciación en japonés Kun (japonés nativo): " - -#~ msgid "Tang Pronunciation: " -#~ msgstr "Pronunciación Tang: " - -#~ msgid "Korean Pronunciation: " -#~ msgstr "Pronunciación coreana: " - -#~ msgid "General Character Properties" -#~ msgstr "Propiedades generales del carácter" - -#~ msgid "Block: " -#~ msgstr "Bloque: " - -#~ msgid "Unicode category: " -#~ msgstr "Categoría Unicode: " - -#~ msgid "Various Useful Representations" -#~ msgstr "Diversas representaciones útiles" - -#~ msgid "UTF-8:" -#~ msgstr "UTF-8:" - -#~ msgid "UTF-16: " -#~ msgstr "UTF-16: " - -#~ msgid "C octal escaped UTF-8: " -#~ msgstr "UTF-8 escapado en octal para C: " - -#~ msgid "XML decimal entity:" -#~ msgstr "Entidad XML en decimal:" - -#~ msgid "Unicode code point:" -#~ msgstr "Punto de código Unicode:" - -#~ msgctxt "Character" -#~ msgid "In decimal:" -#~ msgstr "En decimal:" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "Non-printable" -#~ msgstr "No imprimible" - -#~ msgid "Other, Control" -#~ msgstr "Otro, control" - -#~ msgid "Other, Format" -#~ msgstr "Otro, formato" - -#~ msgid "Other, Not Assigned" -#~ msgstr "Otro, sin asignar" - -#~ msgid "Other, Private Use" -#~ msgstr "Otro, uso privado" - -#~ msgid "Other, Surrogate" -#~ msgstr "Otro, sustituto" - -#~ msgid "Letter, Lowercase" -#~ msgstr "Letra, minúscula" - -#~ msgid "Letter, Modifier" -#~ msgstr "Letra, modificador" - -#~ msgid "Letter, Other" -#~ msgstr "Letra, otro" - -#~ msgid "Letter, Titlecase" -#~ msgstr "Letra, tamaño de título" - -#~ msgid "Letter, Uppercase" -#~ msgstr "Letra, mayúscula" - -#~ msgid "Mark, Spacing Combining" -#~ msgstr "Marca, combinación de espacio" - -#~ msgid "Mark, Enclosing" -#~ msgstr "Marca, envoltura" - -#~ msgid "Mark, Non-Spacing" -#~ msgstr "Marca, sin espacio" - -#~ msgid "Number, Decimal Digit" -#~ msgstr "Número, dígito decimal" - -#~ msgid "Number, Letter" -#~ msgstr "Número, letra" - -#~ msgid "Number, Other" -#~ msgstr "Número, otro" - -#~ msgid "Punctuation, Connector" -#~ msgstr "Puntuación, conector" - -#~ msgid "Punctuation, Dash" -#~ msgstr "Puntuación, guion" - -#~ msgid "Punctuation, Close" -#~ msgstr "Puntuación, cierre" - -#~ msgid "Punctuation, Final Quote" -#~ msgstr "Puntuación, comillas finales" - -#~ msgid "Punctuation, Initial Quote" -#~ msgstr "Puntuación, comillas iniciales" - -#~ msgid "Punctuation, Other" -#~ msgstr "Puntuación, otro" - -#~ msgid "Punctuation, Open" -#~ msgstr "Puntuación, apertura" - -#~ msgid "Symbol, Currency" -#~ msgstr "Símbolo, moneda" - -#~ msgid "Symbol, Modifier" -#~ msgstr "Símbolo, modificador" - -#~ msgid "Symbol, Math" -#~ msgstr "Símbolo, matemáticas" - -#~ msgid "Symbol, Other" -#~ msgstr "Símbolo, otro" - -#~ msgid "Separator, Line" -#~ msgstr "Separador, línea" - -#~ msgid "Separator, Paragraph" -#~ msgstr "Separador, párrafo" - -#~ msgid "Separator, Space" -#~ msgstr "Separador, espacio" - -#~ msgid "You will be asked to authenticate before saving" -#~ msgstr "Se le pedirá que se autentique antes de guardar" - -#~ msgid "You are not allowed to save the configuration" -#~ msgstr "No se le permite guardar la configuración" - -#~ msgctxt "@option next year" -#~ msgid "Next Year" -#~ msgstr "Próximo año" - -#~ msgctxt "@option next month" -#~ msgid "Next Month" -#~ msgstr "Próximo mes" - -#~ msgctxt "@option next week" -#~ msgid "Next Week" -#~ msgstr "Próxima semana" - -#~ msgctxt "@option tomorrow" -#~ msgid "Tomorrow" -#~ msgstr "Mañana" - -#~ msgctxt "@option today" -#~ msgid "Today" -#~ msgstr "Hoy" - -#~ msgctxt "@option yesterday" -#~ msgid "Yesterday" -#~ msgstr "Ayer" - -#~ msgctxt "@option last week" -#~ msgid "Last Week" -#~ msgstr "Semana pasada" - -#~ msgctxt "@option last month" -#~ msgid "Last Month" -#~ msgstr "Mes pasado" - -#~ msgctxt "@option last year" -#~ msgid "Last Year" -#~ msgstr "Año pasado" - -#~ msgctxt "@option do not specify a date" -#~ msgid "No Date" -#~ msgstr "Ninguna fecha" - -#~ msgctxt "@info" -#~ msgid "The date you entered is invalid" -#~ msgstr "La fecha que ha introducido no es válida" - -#~ msgctxt "@info" -#~ msgid "Date cannot be earlier than %1" -#~ msgstr "La fecha no puede ser anterior a %1" - -#~ msgctxt "@info" -#~ msgid "Date cannot be later than %1" -#~ msgstr "La fecha no puede ser posterior a %1" - -#~ msgid "Week %1" -#~ msgstr "Semana %1" - -#~ msgid "Next year" -#~ msgstr "Próximo año" - -#~ msgid "Previous year" -#~ msgstr "Año anterior" - -#~ msgid "Next month" -#~ msgstr "Próximo mes" - -#~ msgid "Previous month" -#~ msgstr "Mes anterior" - -#~ msgid "Select a week" -#~ msgstr "Seleccionar un semana" - -#~ msgid "Select a month" -#~ msgstr "Seleccionar un mes" - -#~ msgid "Select a year" -#~ msgstr "Seleccionar un año" - -#~ msgid "Select the current day" -#~ msgstr "Seleccionar el día actual" - -#~ msgctxt "UTC time zone" -#~ msgid "UTC" -#~ msgstr "UTC" - -#~ msgctxt "No specific time zone" -#~ msgid "Floating" -#~ msgstr "Flotante" - -#~ msgctxt "@info" -#~ msgid "" -#~ "The entered date and time is before the minimum allowed date and time." -#~ msgstr "" -#~ "La fecha y hora introducidas son anteriores a la fecha y hora mínimas " -#~ "permitidas." - -#~ msgctxt "@info" -#~ msgid "" -#~ "The entered date and time is after the maximum allowed date and time." -#~ msgstr "" -#~ "La fecha y hora introducidas son posteriores a la fecha y hora máximas " -#~ "permitidas." - -#~ msgid "&Add" -#~ msgstr "&Añadir" - -#~ msgid "&Remove" -#~ msgstr "Elimina&r" - -#~ msgid "Move &Up" -#~ msgstr "S&ubir" - -#~ msgid "Move &Down" -#~ msgstr "&Bajar" - -#~ msgid "&Help" -#~ msgstr "&Ayuda" - -#~ msgid "Clear &History" -#~ msgstr "Limpiar el &historial" - -#~ msgid "No further items in the history." -#~ msgstr "No hay más elementos en el historial." - -#~ msgid "Shortcut '%1' in Application %2 for action %3\n" -#~ msgstr "Acceso rápido «%1» en la aplicación %2 para la acción %3\n" - -#~ msgctxt "" -#~ "%1 is the number of conflicts (hidden), %2 is the key sequence of the " -#~ "shortcut that is problematic" -#~ msgid "The shortcut '%2' conflicts with the following key combination:\n" -#~ msgid_plural "" -#~ "The shortcut '%2' conflicts with the following key combinations:\n" -#~ msgstr[0] "" -#~ "El acceso rápido «%2» está en conflicto con la siguiente combinación de " -#~ "teclas:\n" -#~ msgstr[1] "" -#~ "El acceso rápido «%2» está en conflicto con las siguientes combinaciones " -#~ "de teclas:\n" - -#~ msgctxt "%1 is the number of shortcuts with which there is a conflict" -#~ msgid "Conflict with Registered Global Shortcut" -#~ msgid_plural "Conflict with Registered Global Shortcuts" -#~ msgstr[0] "Conflicto con un acceso rápido global registrado" -#~ msgstr[1] "Conflicto con accesos rápidos globales registrados" - -#~ msgctxt "%1 is the number of conflicts" -#~ msgid "Shortcut Conflict" -#~ msgid_plural "Shortcut Conflicts" -#~ msgstr[0] "Conflicto de acceso rápido" -#~ msgstr[1] "Conflictos de accesos rápidos" - -#~ msgid "Shortcut '%1' for action '%2'\n" -#~ msgstr "Acceso rápido «%1» para la acción «%2»\n" - -#~ msgctxt "%1 is the number of ambigious shortcut clashes (hidden)" -#~ msgid "" -#~ "The \"%2\" shortcut is ambiguous with the following shortcut.\n" -#~ "Do you want to assign an empty shortcut to this action?\n" -#~ "%3" -#~ msgid_plural "" -#~ "The \"%2\" shortcut is ambiguous with the following shortcuts.\n" -#~ "Do you want to assign an empty shortcut to these actions?\n" -#~ "%3" -#~ msgstr[0] "" -#~ "El acceso rápido «%2» es ambiguo con el siguiente acceso rápido.\n" -#~ "¿Desea asignar un acceso rápido vacío a esta acción?\n" -#~ "%3" -#~ msgstr[1] "" -#~ "El acceso rápido «%2» es ambiguo con los siguientes accesos rápidos.\n" -#~ "¿Desea asignar un acceso rápido vacío a estas acciones?\n" -#~ "%3" - -#~ msgid "Shortcut conflict" -#~ msgstr "Conflicto de accesos rápidos" - -#~ msgid "" -#~ "The '%1' key combination is already used by the %2 action." -#~ "
    Please select a different one.
    " -#~ msgstr "" -#~ "La combinación de teclas «%1» ya está siendo usada por la acción " -#~ "%2.
    Seleccione otra diferente.
    " - -#~ msgid "" -#~ "Click on the button, then enter the shortcut like you would in the " -#~ "program.\n" -#~ "Example for Ctrl+a: hold the Ctrl key and press a." -#~ msgstr "" -#~ "Pulse sobre el botón e introduzca a continuación el acceso rápido que " -#~ "desee para el programa.\n" -#~ "Ejemplo para «Ctrl+a»: mantenga pulsada la tecla «Ctrl» y luego pulse «a»." - -#~ msgid "Reserved Shortcut" -#~ msgstr "Acceso rápido reservado" - -#~ msgid "" -#~ "The F12 key is reserved on Windows, so cannot be used for a global " -#~ "shortcut.\n" -#~ "Please choose another one." -#~ msgstr "" -#~ "La tecla F12 está reservada en Windows y no se puede usar como acceso " -#~ "rápido global.\n" -#~ "Seleccione otra tecla." - -#~ msgid "Conflict with Standard Application Shortcut" -#~ msgstr "Conflicto con el acceso rápido de la aplicación estándar" - -#~ msgid "" -#~ "The '%1' key combination is also used for the standard action \"%2\" that " -#~ "some applications use.\n" -#~ "Do you really want to use it as a global shortcut as well?" -#~ msgstr "" -#~ "La combinación de teclas «%1» ya está asignada a la acción estándar «%2», " -#~ "que es usada por algunas aplicaciones.\n" -#~ "¿Realmente quiere usarla también como acceso rápido global?" - -#~ msgctxt "What the user inputs now will be taken as the new shortcut" -#~ msgid "Input" -#~ msgstr "Entrada" - -#~ msgid "The key you just pressed is not supported by Qt." -#~ msgstr "La tecla que acaba de pulsar no está contemplada por Qt." - -#~ msgid "Unsupported Key" -#~ msgstr "Tecla no funcional" - -#~ msgid "without name" -#~ msgstr "sin nombre" - -#~ msgctxt "Italic placeholder text in line edits: 0 no, 1 yes" -#~ msgid "1" -#~ msgstr "1" - -#~ msgctxt "@action:button Clear current text in the line edit" -#~ msgid "Clear text" -#~ msgstr "Limpiar texto" - -#~ msgctxt "@title:menu" -#~ msgid "Text Completion" -#~ msgstr "Terminación de texto" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "None" -#~ msgstr "Ninguna" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Manual" -#~ msgstr "Manual" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Automatic" -#~ msgstr "Automática" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Dropdown List" -#~ msgstr "Lista desplegable" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Short Automatic" -#~ msgstr "Automática corta" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Dropdown List && Automatic" -#~ msgstr "Lista desplegable y automática" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Default" -#~ msgstr "Predeterminada" - -#~ msgid "Image Operations" -#~ msgstr "Operaciones de imágenes" - -#~ msgid "&Rotate Clockwise" -#~ msgstr "&Rotar en el sentido de las agujas del reloj" - -#~ msgid "Rotate &Counterclockwise" -#~ msgstr "Rotar en sentido &contrario a las agujas del reloj" - -#~ msgctxt "@action" -#~ msgid "Text &Color..." -#~ msgstr "&Color del texto..." - -#~ msgctxt "@label stroke color" -#~ msgid "Color" -#~ msgstr "Color" - -#~ msgctxt "@action" -#~ msgid "Text &Highlight..." -#~ msgstr "Realce de te&xto..." - -#~ msgctxt "@action" -#~ msgid "&Font" -#~ msgstr "&Tipo de letra" - -#~ msgctxt "@action" -#~ msgid "Font &Size" -#~ msgstr "Ta&maño del tipo de letra" - -#~ msgctxt "@action boldify selected text" -#~ msgid "&Bold" -#~ msgstr "&Negrita" - -#~ msgctxt "@action italicize selected text" -#~ msgid "&Italic" -#~ msgstr "&Cursiva" - -#~ msgctxt "@action underline selected text" -#~ msgid "&Underline" -#~ msgstr "&Subrayado" - -#~ msgctxt "@action" -#~ msgid "&Strike Out" -#~ msgstr "Tac&hado" - -#~ msgctxt "@action" -#~ msgid "Align &Left" -#~ msgstr "A&linear a la izquierda" - -#~ msgctxt "@label left justify" -#~ msgid "Left" -#~ msgstr "Izquierda" - -#~ msgctxt "@action" -#~ msgid "Align &Center" -#~ msgstr "Alinear al ¢ro" - -#~ msgctxt "@label center justify" -#~ msgid "Center" -#~ msgstr "Centrar" - -#~ msgctxt "@action" -#~ msgid "Align &Right" -#~ msgstr "Alinear a la de&recha" - -#~ msgctxt "@label right justify" -#~ msgid "Right" -#~ msgstr "Derecha" - -#~ msgctxt "@action" -#~ msgid "&Justify" -#~ msgstr "&Justificar" - -#~ msgctxt "@label justify fill" -#~ msgid "Justify" -#~ msgstr "Justificar" - -#~ msgctxt "@action" -#~ msgid "Left-to-Right" -#~ msgstr "De izquierda a derecha" - -#~ msgctxt "@label left-to-right" -#~ msgid "Left-to-Right" -#~ msgstr "De izquierda a derecha" - -#~ msgctxt "@action" -#~ msgid "Right-to-Left" -#~ msgstr "De derecha a izquierda" - -#~ msgctxt "@label right-to-left" -#~ msgid "Right-to-Left" -#~ msgstr "De derecha a izquierda" - -#~ msgctxt "@title:menu" -#~ msgid "List Style" -#~ msgstr "Estilo de lista" - -#~ msgctxt "@item:inmenu no list style" -#~ msgid "None" -#~ msgstr "Ninguno" - -#~ msgctxt "@item:inmenu disc list style" -#~ msgid "Disc" -#~ msgstr "Disco" - -#~ msgctxt "@item:inmenu circle list style" -#~ msgid "Circle" -#~ msgstr "Círculo" - -#~ msgctxt "@item:inmenu square list style" -#~ msgid "Square" -#~ msgstr "Cuadrado" - -#~ msgctxt "@item:inmenu numbered lists" -#~ msgid "123" -#~ msgstr "123" - -#~ msgctxt "@item:inmenu lowercase abc lists" -#~ msgid "abc" -#~ msgstr "abc" - -#~ msgctxt "@item:inmenu uppercase abc lists" -#~ msgid "ABC" -#~ msgstr "ABC" - -#~ msgctxt "@item:inmenu lower case roman numerals" -#~ msgid "i ii iii" -#~ msgstr "i ii iii" - -#~ msgctxt "@item:inmenu upper case roman numerals" -#~ msgid "I II III" -#~ msgstr "I II III" - -#~ msgctxt "@action" -#~ msgid "Increase Indent" -#~ msgstr "Incrementar sangrado" - -#~ msgctxt "@action" -#~ msgid "Decrease Indent" -#~ msgstr "Decrementar sangrado" - -#~ msgctxt "@action" -#~ msgid "Insert Rule Line" -#~ msgstr "Insertar línea de separación" - -#~ msgctxt "@action" -#~ msgid "Link" -#~ msgstr "Enlazar" - -#~ msgctxt "@action" -#~ msgid "Format Painter" -#~ msgstr "Copiar formato" - -#~ msgctxt "@action" -#~ msgid "To Plain Text" -#~ msgstr "A texto plano" - -#~ msgctxt "@action" -#~ msgid "Subscript" -#~ msgstr "Subíndice" - -#~ msgctxt "@action" -#~ msgid "Superscript" -#~ msgstr "Superíndice" - -#~ msgid "&Copy Full Text" -#~ msgstr "&Copiar todo el texto" - -#~ msgid "Nothing to spell check." -#~ msgstr "Nada que comprobar ortográficamente." - -#~ msgid "Speak Text" -#~ msgstr "Leer texto" - -#~ msgid "Starting Jovie Text-to-Speech Service Failed" -#~ msgstr "El inicio del servicio de texto hablado Jovie ha fallado" - -#~ msgid "No suggestions for %1" -#~ msgstr "No hay sugerencias para %1" - -#~ msgid "Ignore" -#~ msgstr "Ignorar" - -#~ msgid "Add to Dictionary" -#~ msgstr "Añadir al diccionario" - -#~ msgctxt "@info" -#~ msgid "The time you entered is invalid" -#~ msgstr "La hora que ha introducido no es válida" - -#~ msgctxt "@info" -#~ msgid "Time cannot be earlier than %1" -#~ msgstr "La hora no puede ser anterior a %1" - -#~ msgctxt "@info" -#~ msgid "Time cannot be later than %1" -#~ msgstr "La hora no puede ser posterior a %1" - -#~ msgctxt "Define an area in the time zone, like a town area" -#~ msgid "Area" -#~ msgstr "Área" - -#~ msgctxt "Time zone" -#~ msgid "Region" -#~ msgstr "Región" - -#~ msgid "Comment" -#~ msgstr "Comentario" - -#~ msgctxt "@title:menu" -#~ msgid "Show Text" -#~ msgstr "Mostrar texto" - -#~ msgctxt "@title:menu" -#~ msgid "Toolbar Settings" -#~ msgstr "Preferencias de la barra de herramientas" - -#~ msgctxt "Toolbar orientation" -#~ msgid "Orientation" -#~ msgstr "Orientación" - -#~ msgctxt "toolbar position string" -#~ msgid "Top" -#~ msgstr "Arriba" - -#~ msgctxt "toolbar position string" -#~ msgid "Left" -#~ msgstr "Izquierda" - -#~ msgctxt "toolbar position string" -#~ msgid "Right" -#~ msgstr "Derecha" - -#~ msgctxt "toolbar position string" -#~ msgid "Bottom" -#~ msgstr "Abajo" - -#~ msgid "Text Position" -#~ msgstr "Posición del texto" - -#~ msgid "Icons Only" -#~ msgstr "Solo iconos" - -#~ msgid "Text Only" -#~ msgstr "Solo texto" - -#~ msgid "Text Alongside Icons" -#~ msgstr "Texto junto a los iconos" - -#~ msgid "Text Under Icons" -#~ msgstr "Texto bajo los iconos" - -#~ msgid "Icon Size" -#~ msgstr "Tamaño del icono" - -#~ msgctxt "@item:inmenu Icon size" -#~ msgid "Default" -#~ msgstr "Predeterminado" - -#~ msgid "Small (%1x%2)" -#~ msgstr "Pequeño (%1x%2)" - -#~ msgid "Medium (%1x%2)" -#~ msgstr "Mediano (%1x%2)" - -#~ msgid "Large (%1x%2)" -#~ msgstr "Grande (%1x%2)" - -#~ msgid "Huge (%1x%2)" -#~ msgstr "Enorme (%1x%2)" - -#~ msgid "Lock Toolbar Positions" -#~ msgstr "Bloquear la posición de las barras de herramientas" - -#~ msgctxt "@action:intoolbar Text label of toolbar button" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@info:tooltip Tooltip of toolbar button" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Desktop %1" -#~ msgstr "Escritorio %1" - -#~ msgid "Add to Toolbar" -#~ msgstr "Añadir a la barra de herramientas" - -#~ msgid "Configure Shortcut..." -#~ msgstr "Configurar acceso rápido..." - -#~ msgid "Toolbars Shown" -#~ msgstr "Barras de herramientas mostradas" - -#~ msgid "No text" -#~ msgstr "Sin texto" - -#~ msgid "&File" -#~ msgstr "&Archivo" - -#~ msgid "&Game" -#~ msgstr "Jue&go" - -#~ msgid "&Edit" -#~ msgstr "&Editar" - -#~ msgctxt "@title:menu Game move" -#~ msgid "&Move" -#~ msgstr "&Mover" - -#~ msgid "&View" -#~ msgstr "&Ver" - -#~ msgid "&Go" -#~ msgstr "&Ir" - -#~ msgid "&Bookmarks" -#~ msgstr "&Marcadores" - -#~ msgid "&Tools" -#~ msgstr "Herramien&tas" - -#~ msgid "&Settings" -#~ msgstr "Preferencia&s" - -#~ msgid "Main Toolbar" -#~ msgstr "Barra de herramientas principal" - -#~ msgid "Builds Qt widget plugins from an ini style description file." -#~ msgstr "" -#~ "Crea complementos de elementos gráficos de Qt a partir de un archivo de " -#~ "descripción de estilo." - -#~ msgid "Input file" -#~ msgstr "Archivo de entrada" - -#~ msgid "Output file" -#~ msgstr "Archivo de salida" - -#~ msgid "Name of the plugin class to generate" -#~ msgstr "Nombre de la clase de complemento a generar" - -#~ msgid "Default widget group name to display in designer" -#~ msgstr "" -#~ "Nombre del grupo predeterminado de elementos gráficos a mostrar en el " -#~ "diseñador" - -#~ msgid "makekdewidgets" -#~ msgstr "makekdewidgets" - -#~ msgid "(C) 2004-2005 Ian Reinhart Geiser" -#~ msgstr "© 2004-2005 Ian Reinhart Geiser" - -#~ msgid "Ian Reinhart Geiser" -#~ msgstr "Ian Reinhart Geiser" - -#~ msgid "Daniel Molkentin" -#~ msgstr "Daniel Molkentin" - -#~ msgid "Call Stack" -#~ msgstr "Pila de llamadas" - -#~ msgid "Call" -#~ msgstr "Llamada" - -#~ msgid "Line" -#~ msgstr "Línea" - -#~ msgid "Console" -#~ msgstr "Consola" - -#~ msgid "Enter" -#~ msgstr "Entrar" - -#~ msgid "" -#~ "Unable to find the Kate editor component;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "No ha sido posible encontrar el componente de edición Kate;\n" -#~ "compruebe su instalación de KDE." - -#~ msgid "Breakpoint" -#~ msgstr "Punto de interrupción" - -#~ msgid "JavaScript Debugger" -#~ msgstr "Depurador JavaScript" - -#~ msgid "&Break at Next Statement" -#~ msgstr "&Interrumpir en la siguiente instrucción" - -#~ msgid "Break at Next" -#~ msgstr "Interrumpir en la siguiente" - -#~ msgid "Continue" -#~ msgstr "Continuar" - -#~ msgid "Step Over" -#~ msgstr "Dar un paso sobre" - -#~ msgid "Step Into" -#~ msgstr "Avanzar un paso" - -#~ msgid "Step Out" -#~ msgstr "Retroceder un paso" - -#~ msgid "Reindent Sources" -#~ msgstr "Volver a sangrar fuentes" - -#~ msgid "Report Exceptions" -#~ msgstr "Informar de las excepciones" - -#~ msgid "&Debug" -#~ msgstr "&Depurar" - -#~ msgid "Close source" -#~ msgstr "Cerrar fuente" - -#~ msgid "Ready" -#~ msgstr "Preparado" - -#~ msgid "Parse error at %1 line %2" -#~ msgstr "Error de análisis en %1 línea %2" - -#~ msgid "" -#~ "An error occurred while attempting to run a script on this page.\n" -#~ "\n" -#~ "%1 line %2:\n" -#~ "%3" -#~ msgstr "" -#~ "Se produjo un error al intentar ejecutar un script en esta página\n" -#~ "\n" -#~ "%1 línea %2:\n" -#~ "%3" - -#~ msgid "" -#~ "Do not know where to evaluate the expression. Please pause a script or " -#~ "open a source file." -#~ msgstr "" -#~ "No se sabe dónde evaluar la expresión. Pause un script o abra un archivo " -#~ "de código fuente." - -#~ msgid "Evaluation threw an exception %1" -#~ msgstr "La evaluación lanzó una excepción %1" - -#~ msgid "JavaScript Error" -#~ msgstr "Error de JavaScript" - -#~ msgid "&Do not show this message again" -#~ msgstr "&No mostrar este mensaje de nuevo" - -#~ msgid "Local Variables" -#~ msgstr "Variables locales" - -#~ msgid "Reference" -#~ msgstr "Referencia" - -#~ msgid "Loaded Scripts" -#~ msgstr "Scripts cargados" - -#~ msgid "" -#~ "A script on this page is causing KHTML to freeze. If it continues to run, " -#~ "other applications may become less responsive.\n" -#~ "Do you want to stop the script?" -#~ msgstr "" -#~ "Un script de esta página está ocasionando que KHTML se congele. Si " -#~ "continúa ejecutándose, puede que otras aplicaciones se ralenticen " -#~ "considerablemente.\n" -#~ "¿Desea detener el script?" - -#~ msgid "JavaScript" -#~ msgstr "JavaScript" - -#~ msgid "&Stop Script" -#~ msgstr "Detener &script" - -#~ msgid "Confirmation: JavaScript Popup" -#~ msgstr "Confirmación: Ventana emergente JavaScript" - -#~ msgid "" -#~ "This site is submitting a form which will open up a new browser window " -#~ "via JavaScript.\n" -#~ "Do you want to allow the form to be submitted?" -#~ msgstr "" -#~ "Este sitio está enviando un formulario que abrirá una nueva ventana de " -#~ "navegador utilizando JavaScript.\n" -#~ "¿Desea permitir el envío del formulario?" - -#~ msgid "" -#~ "This site is submitting a form which will open

    %1

    in a new " -#~ "browser window via JavaScript.
    Do you want to allow the form to be " -#~ "submitted?
    " -#~ msgstr "" -#~ "Este sitio está enviando un formulario que abrirá

    %1

    en una " -#~ "nueva ventana de navegador utilizando JavaScript.
    ¿Desea permitir el " -#~ "envío del formulario?
    " - -#~ msgid "Allow" -#~ msgstr "Permitir" - -#~ msgid "Do Not Allow" -#~ msgstr "No permitir" - -#~ msgid "" -#~ "This site is requesting to open up a new browser window via JavaScript.\n" -#~ "Do you want to allow this?" -#~ msgstr "" -#~ "Este sitio está solicitando abrir una ventana de navegador utilizando " -#~ "JavaScript.\n" -#~ "¿Desea permitirlo?" - -#~ msgid "" -#~ "This site is requesting to open

    %1

    in a new browser window via " -#~ "JavaScript.
    Do you want to allow this?
    " -#~ msgstr "" -#~ "Este sitio está solicitando abrir

    %1

    en una ventana de " -#~ "navegador utilizando JavaScript.
    ¿Desea permitirlo?
    " - -#~ msgid "Close window?" -#~ msgstr "¿Cerrar ventana?" - -#~ msgid "Confirmation Required" -#~ msgstr "Confirmación requerida" - -#~ msgid "" -#~ "Do you want a bookmark pointing to the location \"%1\" to be added to " -#~ "your collection?" -#~ msgstr "¿Desea añadir a su colección un marcador a la ubicación «%1»?" - -#~ msgid "" -#~ "Do you want a bookmark pointing to the location \"%1\" titled \"%2\" to " -#~ "be added to your collection?" -#~ msgstr "" -#~ "¿Desea añadir a su colección un marcador denominado «%2» a la ubicación " -#~ "«%1»?" - -#~ msgid "JavaScript Attempted Bookmark Insert" -#~ msgstr "JavaScript intentó insertar un marcador" - -#~ msgid "Insert" -#~ msgstr "Insertar" - -#~ msgid "Disallow" -#~ msgstr "Denegar" - -#~ msgid "" -#~ "The following files will not be uploaded because they could not be " -#~ "found.\n" -#~ "Do you want to continue?" -#~ msgstr "" -#~ "No se subirán los siguientes archivos porque no se encontraron.\n" -#~ "¿Desea continuar?" - -#~ msgid "Submit Confirmation" -#~ msgstr "Enviar confirmación" - -#~ msgid "&Submit Anyway" -#~ msgstr "&Enviar de cualquier modo" - -#~ msgid "" -#~ "You are about to transfer the following files from your local computer to " -#~ "the Internet.\n" -#~ "Do you really want to continue?" -#~ msgstr "" -#~ "Está a punto de transferir los siguientes archivos desde su equipo local " -#~ "a Internet.\n" -#~ "¿Seguro que desea continuar?" - -#~ msgid "Send Confirmation" -#~ msgstr "Enviar confirmación" - -#~ msgid "&Send File" -#~ msgid_plural "&Send Files" -#~ msgstr[0] "&Enviar archivo" -#~ msgstr[1] "&Enviar archivos" - -#~ msgid "Submit" -#~ msgstr "Enviar" - -#~ msgid "Key Generator" -#~ msgstr "Generador de claves" - -#~ msgid "" -#~ "No plugin found for '%1'.\n" -#~ "Do you want to download one from %2?" -#~ msgstr "" -#~ "Complemento no encontrado para «%1».\n" -#~ "¿Desea descargar uno de %2?" - -#~ msgid "Missing Plugin" -#~ msgstr "Falta complemento" - -#~ msgid "Download" -#~ msgstr "Descargar" - -#~ msgid "Do Not Download" -#~ msgstr "No descargar" - -#~ msgid "This is a searchable index. Enter search keywords: " -#~ msgstr "" -#~ "Este es un índice de búsqueda. Introduzca las palabras clave de búsqueda: " - -#~ msgid "Document Information" -#~ msgstr "Información del documento" - -#~ msgctxt "@title:group Document information" -#~ msgid "General" -#~ msgstr "General" - -#~ msgid "URL:" -#~ msgstr "URL:" - -#~ msgid "Title:" -#~ msgstr "Título:" - -#~ msgid "Last modified:" -#~ msgstr "Ultima modificación:" - -#~ msgid "Document encoding:" -#~ msgstr "Codificación del documento:" - -#~ msgid "Rendering mode:" -#~ msgstr "Modo de dibujado:" - -#~ msgid "HTTP Headers" -#~ msgstr "Cabeceras HTTP" - -#~ msgid "Property" -#~ msgstr "Propiedad" - -#~ msgid "Initializing Applet \"%1\"..." -#~ msgstr "Inicializando la miniaplicación «%1»..." - -#~ msgid "Starting Applet \"%1\"..." -#~ msgstr "Iniciando la miniaplicación «%1»..." - -#~ msgid "Applet \"%1\" started" -#~ msgstr "Miniaplicación «%1» iniciada" - -#~ msgid "Applet \"%1\" stopped" -#~ msgstr "Miniaplicación «%1» detenida" - -#~ msgid "Loading Applet" -#~ msgstr "Cargando miniaplicación" - -#~ msgid "Error: java executable not found" -#~ msgstr "Error: ejecutable Java no encontrado" - -#~ msgid "Signed by (validation: %1)" -#~ msgstr "Firmado por (validación: %1)" - -#~ msgid "Certificate (validation: %1)" -#~ msgstr "Certificado (validación: %1)" - -#~ msgid "Security Alert" -#~ msgstr "Alerta de seguridad" - -#~ msgid "Do you grant Java applet with certificate(s):" -#~ msgstr "¿Autoriza la miniaplicación de Java con certificado(s):" - -#~ msgid "the following permission" -#~ msgstr "el siguiente permiso" - -#~ msgid "&Reject All" -#~ msgstr "&Rechazar todo" - -#~ msgid "&Grant All" -#~ msgstr "&Autorizar todo" - -#~ msgid "Applet Parameters" -#~ msgstr "Parámetros de la miniaplicación" - -#~ msgid "Parameter" -#~ msgstr "Parámetro" - -#~ msgid "Class" -#~ msgstr "Clase" - -#~ msgid "Base URL" -#~ msgstr "URL base" - -#~ msgid "Archives" -#~ msgstr "Archivos" - -#~ msgid "KDE Java Applet Plugin" -#~ msgstr "Complemento de miniaplicaciones Java de KDE" - -#~ msgid "HTML Toolbar" -#~ msgstr "Barra de herramientas HTML" - -#~ msgid "&Copy Text" -#~ msgstr "&Copiar texto" - -#~ msgid "Open '%1'" -#~ msgstr "Abrir «%1»" - -#~ msgid "&Copy Email Address" -#~ msgstr "&Copiar dirección de correo electrónico" - -#~ msgid "&Save Link As..." -#~ msgstr "&Guardar enlace como..." - -#~ msgid "&Copy Link Address" -#~ msgstr "&Copiar dirección de enlace" - -#~ msgctxt "@title:menu HTML frame/iframe" -#~ msgid "Frame" -#~ msgstr "Marco" - -#~ msgid "Open in New &Window" -#~ msgstr "Abrir en una &nueva ventana" - -#~ msgid "Open in &This Window" -#~ msgstr "Abrir en es&ta ventana" - -#~ msgid "Open in &New Tab" -#~ msgstr "Abrir en una &nueva pestaña" - -#~ msgid "Reload Frame" -#~ msgstr "Recargar marco" - -#~ msgid "Print Frame..." -#~ msgstr "Imprimir marco..." - -#~ msgid "Save &Frame As..." -#~ msgstr "Guardar &marco como..." - -#~ msgid "View Frame Source" -#~ msgstr "Ver fuente del marco" - -#~ msgid "View Frame Information" -#~ msgstr "Ver información del marco" - -#~ msgid "Block IFrame..." -#~ msgstr "Bloquear IFrame..." - -#~ msgid "Save Image As..." -#~ msgstr "Guardar imagen como..." - -#~ msgid "Send Image..." -#~ msgstr "Enviar imagen..." - -#~ msgid "Copy Image" -#~ msgstr "Copiar imagen" - -#~ msgid "Copy Image Location" -#~ msgstr "Copiar la ubicación de la imagen" - -#~ msgid "View Image (%1)" -#~ msgstr "Ver imagen (%1)" - -#~ msgid "Block Image..." -#~ msgstr "Bloquear imagen..." - -#~ msgid "Block Images From %1" -#~ msgstr "Bloquear imágenes desde %1" - -#~ msgid "Stop Animations" -#~ msgstr "Detener animaciones" - -#~ msgid "Search for '%1' with %2" -#~ msgstr "Buscar «%1» con %2" - -#~ msgid "Search for '%1' with" -#~ msgstr "Buscar «%1» con" - -#~ msgid "Save Link As" -#~ msgstr "Guardar enlace como" - -#~ msgid "Save Image As" -#~ msgstr "Guardar imagen como" - -#~ msgid "Add URL to Filter" -#~ msgstr "Añadir URL al filtro" - -#~ msgid "Enter the URL:" -#~ msgstr "Introduzca la URL:" - -#~ msgid "" -#~ "A file named \"%1\" already exists. Are you sure you want to overwrite it?" -#~ msgstr "" -#~ "Ya existe un archivo llamado «%1». ¿Seguro de que desea sobrescribirlo?" - -#~ msgid "Overwrite File?" -#~ msgstr "¿Sobrescribir el archivo?" - -#~ msgid "Overwrite" -#~ msgstr "Sobrescribir" - -#~ msgid "The Download Manager (%1) could not be found in your $PATH " -#~ msgstr "No se pudo encontrar el gestor de descargas (%1) en su $PATH " - -#~ msgid "" -#~ "Try to reinstall it \n" -#~ "\n" -#~ "The integration with Konqueror will be disabled." -#~ msgstr "" -#~ "Intente reinstalarlo \n" -#~ "\n" -#~ "La integración con Konqueror será inhabilitada." - -#~ msgid "Default Font Size (100%)" -#~ msgstr "Tamaño predeterminado del tipo de letra (100 %)" - -#~ msgid "KHTML" -#~ msgstr "KHTML" - -#~ msgid "Embeddable HTML component" -#~ msgstr "Componente HTML empotrable" - -#~ msgid "Lars Knoll" -#~ msgstr "Lars Knoll" - -#~ msgid "Antti Koivisto" -#~ msgstr "Antti Koivisto" - -#~ msgid "Dirk Mueller" -#~ msgstr "Dirk Mueller" - -#~ msgid "Peter Kelly" -#~ msgstr "Peter Kelly" - -#~ msgid "Torben Weis" -#~ msgstr "Torben Weis" - -#~ msgid "Martin Jones" -#~ msgstr "Martin Jones" - -#~ msgid "Simon Hausmann" -#~ msgstr "Simon Hausmann" - -#~ msgid "Tobias Anton" -#~ msgstr "Tobias Anton" - -#~ msgid "View Do&cument Source" -#~ msgstr "Ver fuente del do&cumento" - -#~ msgid "View Document Information" -#~ msgstr "Ver información del documento" - -#~ msgid "Save &Background Image As..." -#~ msgstr "Guardar imagen de &fondo como..." - -#~ msgid "SSL" -#~ msgstr "SSL" - -#~ msgid "Print Rendering Tree to STDOUT" -#~ msgstr "Imprimir árbol de representación a STDOUT" - -#~ msgid "Print DOM Tree to STDOUT" -#~ msgstr "Imprimir árbol DOM a STDOUT" - -#~ msgid "Print frame tree to STDOUT" -#~ msgstr "Imprimir el árbol de marcos en STDOUT" - -#~ msgid "Stop Animated Images" -#~ msgstr "Detener imágenes animadas" - -#~ msgid "Set &Encoding" -#~ msgstr "Especificar &codificación" - -#~ msgid "Use S&tylesheet" -#~ msgstr "Usar hoja de es&tilos" - -#~ msgid "Enlarge Font" -#~ msgstr "Aumentar el tipo de letra" - -#~ msgid "" -#~ "Enlarge Font

    Make the font in this window bigger. Click " -#~ "and hold down the mouse button for a menu with all available font sizes." -#~ msgstr "" -#~ "Aumentar el tipo de letra

    Hacer más grande el tipo de " -#~ "letra de esta ventana. Mantenga pulsado el botón del ratón para obtener " -#~ "un menú con todos los tamaños de tipos de letra disponibles.
    " - -#~ msgid "Shrink Font" -#~ msgstr "Reducir el tipo de letra" - -#~ msgid "" -#~ "Shrink Font

    Make the font in this window smaller. Click " -#~ "and hold down the mouse button for a menu with all available font sizes." -#~ msgstr "" -#~ "Reducir el tipo de letra

    Hacer más pequeños los tipos de " -#~ "letra de esta ventana. Mantenga pulsado el botón del ratón para obtener " -#~ "un menú con todos los tamaños disponibles.
    " - -#~ msgid "" -#~ "Find text

    Shows a dialog that allows you to find text on " -#~ "the displayed page.
    " -#~ msgstr "" -#~ "Encontrar texto

    Muestra un diálogo que le permite " -#~ "encontrar texto en la página mostrada.
    " - -#~ msgid "" -#~ "Find next

    Find the next occurrence of the text that you " -#~ "have found using the Find Text function.
    " -#~ msgstr "" -#~ "Encontrar siguiente

    Encontrar la siguiente aparición del " -#~ "texto que usted haya encontrado usando la función Encontrar texto." -#~ "
    " - -#~ msgid "" -#~ "Find previous

    Find the previous occurrence of the text " -#~ "that you have found using the Find Text function.
    " -#~ msgstr "" -#~ "Encontrar anterior

    Encontrar la aparición anterior del " -#~ "texto que usted haya encontrado usando la función Encontrar texto." -#~ "
    " - -#~ msgid "Find Text as You Type" -#~ msgstr "Encontrar texto según teclea" - -#~ msgid "" -#~ "This shortcut shows the find bar, for finding text in the displayed page. " -#~ "It cancels the effect of \"Find Links as You Type\", which sets the " -#~ "\"Find links only\" option." -#~ msgstr "" -#~ "Este acceso rápido muestra la barra de búsqueda, con la que podrá " -#~ "encontrar texto en la página mostrada. Esto cancela el efecto de " -#~ "«Encontrar enlaces mientras escribe», que fija la opción «Encontrar solo " -#~ "enlaces»." - -#~ msgid "Find Links as You Type" -#~ msgstr "Encontrar enlaces según teclea" - -#~ msgid "" -#~ "This shortcut shows the find bar, and sets the option \"Find links only\"." -#~ msgstr "" -#~ "Este acceso rápido muestra la barra de búsqueda y fija la opción " -#~ "«Encontrar solo enlaces»." - -#~ msgid "" -#~ "Print Frame

    Some pages have several frames. To print only " -#~ "a single frame, click on it and then use this function.
    " -#~ msgstr "" -#~ "Imprimir marco

    Algunas páginas disponen de varios marcos. " -#~ "Para imprimir un solo marco, pulse sobre él y después use esta función." - -#~ msgid "Toggle Caret Mode" -#~ msgstr "Conmutar modo Caret" - -#~ msgid "The fake user-agent '%1' is in use." -#~ msgstr "El agente de usuario simulado «%1» está en uso." - -#~ msgid "This web page contains coding errors." -#~ msgstr "Esta página web contiene errores de codificación." - -#~ msgid "&Hide Errors" -#~ msgstr "&Ocultar errores" - -#~ msgid "&Disable Error Reporting" -#~ msgstr "&Inhabilitar el informe de errores" - -#~ msgid "Error: %1: %2" -#~ msgstr "Error: %1: %2" - -#~ msgid "Error: node %1: %2" -#~ msgstr "Error: nodo %1: %2" - -#~ msgid "Display Images on Page" -#~ msgstr "Mostrar imágenes en la página" - -#~ msgid "Error: %1 - %2" -#~ msgstr "Error: %1 - %2" - -#~ msgid "The requested operation could not be completed" -#~ msgstr "La operación solicitada no se pudo completar" - -#~ msgid "Technical Reason: " -#~ msgstr "Razón técnica: " - -#~ msgid "Details of the Request:" -#~ msgstr "Detalles de la solicitud:" - -#~ msgid "URL: %1" -#~ msgstr "URL: %1" - -#~ msgid "Protocol: %1" -#~ msgstr "Protocolo: %1" - -#~ msgid "Date and Time: %1" -#~ msgstr "Fecha y hora: %1" - -#~ msgid "Additional Information: %1" -#~ msgstr "Información adicional: %1" - -#~ msgid "Description:" -#~ msgstr "Descripción:" - -#~ msgid "Possible Causes:" -#~ msgstr "Causas posibles:" - -#~ msgid "Possible Solutions:" -#~ msgstr "Soluciones posibles:" - -#~ msgid "Page loaded." -#~ msgstr "Página cargada." - -#~ msgid "%1 Image of %2 loaded." -#~ msgid_plural "%1 Images of %2 loaded." -#~ msgstr[0] "Cargada %1 imagen de %2." -#~ msgstr[1] "Cargadas %1 imágenes de %2." - -#~ msgid "Automatic Detection" -#~ msgstr "Detección automática" - -#~ msgid " (In new window)" -#~ msgstr " (en nueva ventana)" - -#~ msgid "Symbolic Link" -#~ msgstr "Enlace simbólico" - -#~ msgid "%1 (Link)" -#~ msgstr "%1 (enlace)" - -#~ msgid "%2 (%1 byte)" -#~ msgid_plural "%2 (%1 bytes)" -#~ msgstr[0] "%2 (%1 byte)" -#~ msgstr[1] " %2 (%1 bytes)" - -#~ msgid "%2 (%1 K)" -#~ msgstr "%2 (%1 K)" - -#~ msgid " (In other frame)" -#~ msgstr " (en otro marco)" - -#~ msgid "Email to: " -#~ msgstr "Correo para: " - -#~ msgid " - Subject: " -#~ msgstr " - Asunto: " - -#~ msgid " - CC: " -#~ msgstr " - CC: " - -#~ msgid " - BCC: " -#~ msgstr " - CCO: " - -#~ msgid "Save As" -#~ msgstr "Guardar como" - -#~ msgid "" -#~ "This untrusted page links to
    %1.
    Do you want to " -#~ "follow the link?
    " -#~ msgstr "" -#~ "Esta página insegura contiene enlaces a
    %1
    ¿Desea " -#~ "seguir el enlace?
    " - -#~ msgid "Follow" -#~ msgstr "Seguir" - -#~ msgid "Frame Information" -#~ msgstr "Información de marco" - -#~ msgid " [Properties]" -#~ msgstr " [Propiedades]" - -#~ msgctxt "HTML rendering mode (see http://en.wikipedia.org/wiki/Quirks_mode)" -#~ msgid "Quirks" -#~ msgstr "Compatible hacia atrás" - -#~ msgctxt "HTML rendering mode (see http://en.wikipedia.org/wiki/Quirks_mode)" -#~ msgid "Almost standards" -#~ msgstr "Casi estándar" - -#~ msgctxt "HTML rendering mode (see http://en.wikipedia.org/wiki/Quirks_mode)" -#~ msgid "Strict" -#~ msgstr "Estricto" - -#~ msgid "Save Background Image As" -#~ msgstr "Guardar imagen de fondo como" - -#~ msgid "The peer SSL certificate chain appears to be corrupt." -#~ msgstr "Parece que la cadena de certificados SSL del par está dañada." - -#~ msgid "Save Frame As" -#~ msgstr "Guardar marco como" - -#~ msgid "&Find in Frame..." -#~ msgstr "&Buscar en marco..." - -#~ msgid "" -#~ "Warning: This is a secure form but it is attempting to send your data " -#~ "back unencrypted.\n" -#~ "A third party may be able to intercept and view this information.\n" -#~ "Are you sure you wish to continue?" -#~ msgstr "" -#~ "Advertencia: Este es un formulario seguro, pero está intentando enviar " -#~ "sus datos de vuelta sin cifrar.\n" -#~ "Una tercera parte podría interceptar y ver esta información.\n" -#~ "¿Desea continuar?" - -#~ msgid "Network Transmission" -#~ msgstr "Transmisión de red" - -#~ msgid "&Send Unencrypted" -#~ msgstr "Enviar &sin cifrar" - -#~ msgid "" -#~ "Warning: Your data is about to be transmitted across the network " -#~ "unencrypted.\n" -#~ "Are you sure you wish to continue?" -#~ msgstr "" -#~ "Advertencia: Sus datos están a punto de transmitirse por la red sin " -#~ "cifrar.\n" -#~ "¿Desea continuar?" - -#~ msgid "" -#~ "This site is attempting to submit form data via email.\n" -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Este sitio está intentando enviar datos de formulario a través de correo " -#~ "electrónico.\n" -#~ "¿Desea continuar?" - -#~ msgid "&Send Email" -#~ msgstr "&Enviar correo electrónico" - -#~ msgid "" -#~ "The form will be submitted to
    %1
    on your local " -#~ "filesystem.
    Do you want to submit the form?
    " -#~ msgstr "" -#~ "El formulario se enviará a
    %1
    en su sistema de " -#~ "archivos local.
    ¿Desea enviar el formulario?
    " - -#~ msgid "" -#~ "This site attempted to attach a file from your computer in the form " -#~ "submission. The attachment was removed for your protection." -#~ msgstr "" -#~ "Este servidor intentó adjuntar un archivo desde su equipo en el " -#~ "formulario de envío. El archivo adjunto fue eliminado para su protección." - -#~ msgid "(%1/s)" -#~ msgstr "(%1/s)" - -#~ msgid "Security Warning" -#~ msgstr "Advertencia de seguridad" - -#~ msgid "Access by untrusted page to
    %1
    denied.
    " -#~ msgstr "Denegado acceso de página insegura a
    %1.
    " - -#~ msgid "The wallet '%1' is open and being used for form data and passwords." -#~ msgstr "" -#~ "La cartera «%1» está abierta y se está usando para datos de formularios y " -#~ "contraseñas." - -#~ msgid "&Close Wallet" -#~ msgstr "&Cerrar cartera" - -#~ msgid "&Allow storing passwords for this site" -#~ msgstr "&Permitir que se guarden contraseñas para este sitio" - -#~ msgid "Remove password for form %1" -#~ msgstr "Eliminar contraseña para el formulario %1" - -#~ msgid "JavaScript &Debugger" -#~ msgstr "&Depurador JavaScript" - -#~ msgid "This page was prevented from opening a new window via JavaScript." -#~ msgstr "" -#~ "Se ha impedido que esta página abriera una nueva ventana mediante " -#~ "JavaScript." - -#~ msgid "Popup Window Blocked" -#~ msgstr "Ventana emergente bloqueada" - -#~ msgid "" -#~ "This page has attempted to open a popup window but was blocked.\n" -#~ "You can click on this icon in the status bar to control this behavior\n" -#~ "or to open the popup." -#~ msgstr "" -#~ "Esta página intentó abrir una ventana emergente, pero fue bloqueada.\n" -#~ "Puede pulsar sobre este icono en la barra de estado para controlar este " -#~ "comportamiento \n" -#~ "o abrir la ventana emergente." - -#~ msgid "&Show Blocked Popup Window" -#~ msgid_plural "&Show %1 Blocked Popup Windows" -#~ msgstr[0] "Mo&strar la ventana emergente bloqueada" -#~ msgstr[1] "Mo&strar las %1 ventanas emergentes bloqueadas" - -#~ msgid "Show Blocked Window Passive Popup &Notification" -#~ msgstr "Mostrar la ¬ificación de ventana emergente pasiva bloqueada" - -#~ msgid "&Configure JavaScript New Window Policies..." -#~ msgstr "&Configurar las políticas de nuevas ventanas en JavaScript..." - -#~ msgid "" -#~ "

    'Print images'

    If this checkbox is enabled, " -#~ "images contained in the HTML page will be printed. Printing may take " -#~ "longer and use more ink or toner.

    If this checkbox is disabled, " -#~ "only the text of the HTML page will be printed, without the included " -#~ "images. Printing will be faster and use less ink or toner.

    " -#~ msgstr "" -#~ "

    «Imprimir imágenes»

    Si marca esta casilla, " -#~ "se imprimirán las imágenes en la página HTML. La impresión puede llevar " -#~ "más tiempo y usar más tinta o tóner.

    Si la casilla está sin marcar, " -#~ "solo se imprimirá el texto de la página HTML, sin las imágenes incluidas. " -#~ "La impresión será más rápida y usará menos tinta o tóner.

    " - -#~ msgid "" -#~ "

    'Print header'

    If this checkbox is enabled, " -#~ "the printout of the HTML document will contain a header line at the top " -#~ "of each page. This header contains the current date, the location URL of " -#~ "the printed page and the page number.

    If this checkbox is disabled, " -#~ "the printout of the HTML document will not contain such a header line. " -#~ msgstr "" -#~ "

    «Imprimir cabecera»

    Si se marca esta " -#~ "casilla, la impresión del documento HTML contendrá una línea de cabecera " -#~ "al comienzo de cada página. La cabecera contiene la fecha actual, la " -#~ "ubicación URL de la página impresa y el número de página.

    Si esta " -#~ "casilla no está marcada, la impresión del documento HTML no contendrá tal " -#~ "línea de cabecera.

    " - -#~ msgid "" -#~ "

    'Printerfriendly mode'

    If this checkbox is " -#~ "enabled, the printout of the HTML document will be black and white only, " -#~ "and all colored background will be converted into white. Printout will be " -#~ "faster and use less ink or toner.

    If this checkbox is disabled, the " -#~ "printout of the HTML document will happen in the original color settings " -#~ "as you see in your application. This may result in areas of full-page " -#~ "color (or grayscale, if you use a black+white printer). Printout will " -#~ "possibly happen more slowly and will probably use more toner or ink.

    " -#~ "
    " -#~ msgstr "" -#~ "

    «Modo amistoso para impresora»

    Si marca " -#~ "esta casilla, la impresión del documento HTML se hará solo en blanco y " -#~ "negro, y todo el fondo de color se transformará en blanco. La impresión " -#~ "será más rápida y consumirá menos tinta o tóner.

    Si no marca esta " -#~ "casilla, la impresión del documento HTML se hará de acuerdo con el color " -#~ "original tal y como usted lo ve en su aplicación. Esto puede hacer que se " -#~ "impriman áreas enteras de un color (o escala de grises, si usa una " -#~ "impresora de blanco y negro). La impresión será más lenta y usará más " -#~ "tóner o tinta.

    " - -#~ msgid "HTML Settings" -#~ msgstr "Preferencias de HTML" - -#~ msgid "Printer friendly mode (black text, no background)" -#~ msgstr "Modo amistoso de impresora (texto negro, sin fondo)" - -#~ msgid "Print images" -#~ msgstr "Imprimir imágenes" - -#~ msgid "Print header" -#~ msgstr "Imprimir cabecera" - -#~ msgid "Filter error" -#~ msgstr "Error de filtrado" - -#~ msgid "Inactive" -#~ msgstr "Inactivo" - -#~ msgid "%1 (%2 - %3x%4 Pixels)" -#~ msgstr "%1 (%2 - %3x%4 píxeles)" - -#~ msgid "%1 - %2x%3 Pixels" -#~ msgstr "%1 - %2x%3 píxeles" - -#~ msgid "%1 (%2x%3 Pixels)" -#~ msgstr "%1 (%2x%3 píxeles)" - -#~ msgid "Image - %1x%2 Pixels" -#~ msgstr "Imagen - %1x%2 píxeles" - -#~ msgid "Done." -#~ msgstr "Hecho." - -#~ msgid "Access Keys activated" -#~ msgstr "Claves de acceso activadas" - -#~ msgid "JavaScript Errors" -#~ msgstr "Errores de JavaScript" - -#~ msgid "" -#~ "This dialog provides you with notification and details of scripting " -#~ "errors that occur on web pages. In many cases it is due to an error in " -#~ "the web site as designed by its author. In other cases it is the result " -#~ "of a programming error in Konqueror. If you suspect the former, please " -#~ "contact the webmaster of the site in question. Conversely if you suspect " -#~ "an error in Konqueror, please file a bug report at http://bugs.kde.org/. " -#~ "A test case which illustrates the problem will be appreciated." -#~ msgstr "" -#~ "Esta ventana le proporciona la notificación y detalles de los errores de " -#~ "scripting que se producen en las páginas web. En muchos casos se debe a " -#~ "un error del autor al diseñar sus páginas. En otros casos se debe a un " -#~ "error de programación de Konqueror. Si sospecha que se trata del primer " -#~ "caso, póngase en contacto con el administrador de la web. Del mismo modo, " -#~ "si sospecha de un error de Konqueror, rellene un informe de fallos en " -#~ "http://bugs.kde.org/. Es de agradecer la inclusión de un ejemplo." - -#~ msgid "KMultiPart" -#~ msgstr "KMultiPart" - -#~ msgid "Embeddable component for multipart/mixed" -#~ msgstr "Componente empotrable para multipart/mixed" - -#~ msgid "Copyright 2001-2011, David Faure faure@kde.org" -#~ msgstr "Copyright 2001-2011, David Faure faure@kde.org" - -#~ msgid "No handler found for %1." -#~ msgstr "No se encontró ningún manejador para %1." - -#~ msgid "Play" -#~ msgstr "Reproducir" - -#~ msgid "Pause" -#~ msgstr "Pausar" - -#~ msgid "New Web Shortcut" -#~ msgstr "Nuevo acceso rápido web" - -#~ msgid "%1 is already assigned to %2" -#~ msgstr "%1 ya está asignado a %2" - -#~ msgid "Search &provider name:" -#~ msgstr "Nombre de &proveedor de búsquedas:" - -#~ msgid "New search provider" -#~ msgstr "Nuevo proveedor de búsquedas" - -#~ msgid "UR&I shortcuts:" -#~ msgstr "Accesos rápidos de UR&I:" - -#~ msgid "Create Web Shortcut" -#~ msgstr "Crear acceso rápido web" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "" -#~ "Directorio que contiene las pruebas y los directorios base y de salida." - -#~ msgid "Do not suppress debug output" -#~ msgstr "No suprimir la salida de depuración" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Volver a generar la línea de base (en lugar de verificar)" - -#~ msgid "Do not show the window while running tests" -#~ msgstr "No mostrar la ventana mientras se ejecutan las pruebas" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Ejecutar solamente una única prueba. Se permiten varias opciones." - -#~ msgid "Only run .js tests" -#~ msgstr "Ejecutar solamente las pruebas .js" - -#~ msgid "Only run .html tests" -#~ msgstr "Ejecutar solamente las pruebas .html" - -#~ msgid "Do not use Xvfb" -#~ msgstr "No usar Xvfb" - -#~ msgid "Put output in <directory> instead of <base_dir>/output" -#~ msgstr "" -#~ "Poner el resultado en <directorio> en lugar de en <" -#~ "directorio_base>/output" - -#~ msgid "" -#~ "Use <directory> as reference instead of <base_dir>/baseline" -#~ msgstr "" -#~ "Usar <directorio> como referencia en lugar de <" -#~ "directorio_base>/baseline" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Carpeta que contiene las pruebas y las carpetas base y de resultados. " -#~ "Solo se tiene en cuenta si no se indica la opción -b." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Ruta relativa a la batería de pruebas, o directorio de pruebas a ejecutar " -#~ "(equivalente a la opción -t)." - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for khtml" -#~ msgstr "Pruebas de regresión para khtml" - -#~ msgid "KHTML Regression Testing Utility" -#~ msgstr "Utilidad de pruebas de regresión de KHTML" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "Regression testing output" -#~ msgstr "Salida de las pruebas de regresión" - -#~ msgid "Pause/Continue regression testing process" -#~ msgstr "Pausar/Continuar el proceso de pruebas de regresión" - -#~ msgid "" -#~ "You may select a file where the log content is stored, before the " -#~ "regression testing is started." -#~ msgstr "" -#~ "Puede seleccionar un archivo en el que almacenar el contenido del " -#~ "registro antes de que comience la prueba de regresión." - -#~ msgid "Output to File..." -#~ msgstr "Salida a archivo..." - -#~ msgid "Regression Testing Status" -#~ msgstr "Estado de las pruebas de regresión" - -#~ msgid "View HTML Output" -#~ msgstr "Ver la salida HTML" - -#~ msgid "Settings" -#~ msgstr "Preferencias" - -#~ msgid "Tests" -#~ msgstr "Pruebas" - -#~ msgid "Only Run JS Tests" -#~ msgstr "Ejecutar solo las pruebas de JS" - -#~ msgid "Only Run HTML Tests" -#~ msgstr "Ejecutar solo las pruebas de HTML" - -#~ msgid "Do Not Suppress Debug Output" -#~ msgstr "No suprimir la salida de depuración" - -#~ msgid "Run Tests..." -#~ msgstr "Ejecutar pruebas..." - -#~ msgid "Run Single Test..." -#~ msgstr "Ejecutar una sola prueba..." - -#~ msgid "Specify tests Directory..." -#~ msgstr "Indicar el directorio de pruebas..." - -#~ msgid "Specify khtml Directory..." -#~ msgstr "Especificar directorio de khtml..." - -#~ msgid "Specify Output Directory..." -#~ msgstr "Especificar directorio de salida..." - -#~ msgid "TestRegressionGui" -#~ msgstr "TestRegressionGui" - -#~ msgid "GUI for the khtml regression tester" -#~ msgstr "Interfaz gráfica para las pruebas de regresión de khtml" - -#~ msgid "Available Tests: 0" -#~ msgstr "Pruebas disponibles: 0" - -#~ msgid "Please choose a valid 'khtmltests/regression/' directory." -#~ msgstr "Seleccione un directorio «khtmltests/regression/» válido." - -#~ msgid "Please choose a valid 'khtml/' build directory." -#~ msgstr "Seleccione un directorio de compilación «khtml/» válido." - -#~ msgid "Available Tests: %1 (ignored: %2)" -#~ msgstr "Pruebas disponibles: %1 (ignoradas: %2)" - -#~ msgid "Cannot find testregression executable." -#~ msgstr "No se pudo encontrar el ejecutable de pruebas de regresión." - -#~ msgid "Run test..." -#~ msgstr "Ejecutar prueba..." - -#~ msgid "Add to ignores..." -#~ msgstr "Añadir a los ignorados..." - -#~ msgid "Remove from ignores..." -#~ msgstr "Eliminar de los ignorados..." - -#~ msgid "URL to open" -#~ msgstr "URL a abrir" - -#~ msgid "Testkhtml" -#~ msgstr "Testkhtml" - -#~ msgid "a basic web browser using the KHTML library" -#~ msgstr "un navegador web básico que usa la biblioteca KHTML" - -#~ msgid "Find &links only" -#~ msgstr "Encontrar solo enlaces" - -#~ msgid "Not found" -#~ msgstr "No se ha encontrado" - -#~ msgid "No more matches for this search direction." -#~ msgstr "No hay más coincidencias para esta dirección de búsqueda." - -#~ msgid "F&ind:" -#~ msgstr "&Encontrar:" - -#~ msgid "&Next" -#~ msgstr "Siguie&nte" - -#~ msgid "Opt&ions" -#~ msgstr "Opc&iones" - -#~ msgid "Do you want to store this password?" -#~ msgstr "¿Desea almacenar esta contraseña?" - -#~ msgid "Do you want to store this password for %1?" -#~ msgstr "¿Desea almacenar esta contraseña para %1?" - -#~ msgid "&Store" -#~ msgstr "A&lmacenar" - -#~ msgid "Ne&ver store for this site" -#~ msgstr "&Nunca guardar para este sitio" - -#~ msgid "Do ¬ store this time" -#~ msgstr "No g&uardar esta vez" - -#~ msgid "Basic Page Style" -#~ msgstr "Estilo de página básico" - -#~ msgid "the document is not in the correct file format" -#~ msgstr "el documento no está en el formato de archivo correcto" - -#~ msgid "fatal parsing error: %1 in line %2, column %3" -#~ msgstr "error fatal de interpretación: %1 en la línea %2, columna %3" - -#~ msgid "XML parsing error" -#~ msgstr "Error al analizar XML" - -#~ msgid "" -#~ "Unable to start new process.\n" -#~ "The system may have reached the maximum number of open files possible or " -#~ "the maximum number of open files that you are allowed to use has been " -#~ "reached." -#~ msgstr "" -#~ "Imposible crear un nuevo proceso.\n" -#~ "El sistema puede que haya alcanzado el número máximo de archivos abiertos " -#~ "o el número máximo de archivos abiertos que usted puede usar." - -#~ msgid "" -#~ "Unable to create new process.\n" -#~ "The system may have reached the maximum number of processes possible or " -#~ "the maximum number of processes that you are allowed to use has been " -#~ "reached." -#~ msgstr "" -#~ "Imposible crear un nuevo proceso.\n" -#~ "El sistema puede que haya alcanzado el número máximo de procesos o el " -#~ "número máximo de procesos que usted puede usar." - -#~ msgid "Could not find '%1' executable." -#~ msgstr "No se pudo encontrar el ejecutable «%1»." - -#~ msgid "" -#~ "Could not open library '%1'.\n" -#~ "%2" -#~ msgstr "" -#~ "No se pudo abrir la biblioteca «%1».\n" -#~ "%2" - -#~ msgid "" -#~ "Could not find 'kdemain' in '%1'.\n" -#~ "%2" -#~ msgstr "" -#~ "No se pudo encontrar «kdemain» en «%1».\n" -#~ "%2" - -#~ msgid "KDEInit could not launch '%1'" -#~ msgstr "KDEInit no ha podido lanzar «%1»" - -#~ msgid "Could not find service '%1'." -#~ msgstr "No se pudo encontrar el servicio «%1»." - -#~ msgid "Service '%1' must be executable to run." -#~ msgstr "El servicio «%1» debe ser ejecutable." - -#~ msgid "Service '%1' is malformatted." -#~ msgstr "El servicio «%1» está mal formateado." - -#~ msgid "Launching %1" -#~ msgstr "Lanzando %1" - -#~ msgid "Unknown protocol '%1'.\n" -#~ msgstr "Protocolo desconocido «%1».\n" - -#~ msgid "Error loading '%1'.\n" -#~ msgstr "Error al cargar «%1».\n" - -#~ msgid "" -#~ "klauncher: This program is not supposed to be started manually.\n" -#~ "klauncher: It is started automatically by kdeinit4.\n" -#~ msgstr "" -#~ "klauncher: Se supone que este programa no se debe iniciar manualmente.\n" -#~ "klauncher: Es iniciado automáticamente por kdeinit4.\n" - -#~ msgid "Evaluation error" -#~ msgstr "Error de evaluación" - -#~ msgid "Range error" -#~ msgstr "Error de intervalo" - -#~ msgid "Reference error" -#~ msgstr "Error de referencia" - -#~ msgid "Syntax error" -#~ msgstr "Error de sintaxis" - -#~ msgid "Type error" -#~ msgstr "Error de tipo" - -#~ msgid "URI error" -#~ msgstr "Error en URI" - -#~ msgid "JS Calculator" -#~ msgstr "Calculadora en JS" - -#~ msgctxt "addition" -#~ msgid "+" -#~ msgstr "+" - -#~ msgid "AC" -#~ msgstr "AC" - -#~ msgctxt "subtraction" -#~ msgid "-" -#~ msgstr "-" - -#~ msgctxt "evaluation" -#~ msgid "=" -#~ msgstr "=" - -#~ msgid "CL" -#~ msgstr "CL" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "3" -#~ msgstr "3" - -#~ msgid "7" -#~ msgstr "7" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "MainWindow" -#~ msgstr "Ventana principal" - -#~ msgid "

    KJSEmbed Documentation Viewer

    " -#~ msgstr "

    Visor de la documentación de KJSEmbed

    " - -#~ msgid "Execute" -#~ msgstr "Ejecutar" - -#~ msgid "File" -#~ msgstr "Archivo" - -#~ msgid "Open Script" -#~ msgstr "Abrir script" - -#~ msgid "Open a script..." -#~ msgstr "Abrir un script..." - -#~ msgid "Ctrl+O" -#~ msgstr "Ctrl+O" - -#~ msgid "Close Script" -#~ msgstr "Cerrar el script" - -#~ msgid "Close script..." -#~ msgstr "Cerrar script..." - -#~ msgid "Quit" -#~ msgstr "Salir" - -#~ msgid "Quit application..." -#~ msgstr "Salir de la aplicación..." - -#~ msgid "Run" -#~ msgstr "Ejecutar" - -#~ msgid "Run script..." -#~ msgstr "Ejecutar un script..." - -#~ msgid "Run To..." -#~ msgstr "Ejecutar hasta..." - -#~ msgid "Run to breakpoint..." -#~ msgstr "Ejecutar hasta un punto de interrupción..." - -#~ msgid "Step" -#~ msgstr "Paso" - -#~ msgid "Step to next line..." -#~ msgstr "Dar un paso a la siguiente línea..." - -#~ msgid "Step execution..." -#~ msgstr "Dar un paso en la ejecución..." - -#~ msgid "KJSCmd" -#~ msgstr "KJSCmd" - -#~ msgid "Utility for running KJSEmbed scripts \n" -#~ msgstr "Utilidad para ejecutar scripts KJSEmbed \n" - -#~ msgid "(C) 2005-2006 The KJSEmbed Authors" -#~ msgstr "© 2005-2006 Los autores de KJSEmbed" - -#~ msgid "Execute script without gui support" -#~ msgstr "Ejecutar el script sin implementación gráfica" - -#~ msgid "start interactive kjs interpreter" -#~ msgstr "iniciar el intérprete kjs interactivo" - -#~ msgid "start without KDE KApplication support." -#~ msgstr "iniciar sin la implementación de KApplication de KDE." - -#~ msgid "Script to execute" -#~ msgstr "Script a ejecutar" - -#~ msgid "Error encountered while processing include '%1' line %2: %3" -#~ msgstr "" -#~ "Se ha producido un error mientras se procesaba include «%1» línea %2: %3" - -#~ msgid "include only takes 1 argument, not %1." -#~ msgstr "include solo tiene 1 argumento, no %1." - -#~ msgid "File %1 not found." -#~ msgstr "No se encontró el archivo %1." - -#~ msgid "library only takes 1 argument, not %1." -#~ msgstr "la biblioteca solamente tiene 1 argumento, no %1." - -#~ msgid "Alert" -#~ msgstr "Alertar" - -#~ msgid "Confirm" -#~ msgstr "Confirmar" - -#~ msgid "Bad event handler: Object %1 Identifier %2 Method %3 Type: %4." -#~ msgstr "" -#~ "Manejador de eventos no válido: Objeto %1 Identificador %2 Método %3 " -#~ "Tipo: %4." - -#~ msgid "Exception calling '%1' function from %2:%3:%4" -#~ msgstr "Excepción al llamar a la función «%1» desde %2:%3:%4" - -#~ msgid "Could not open file '%1'" -#~ msgstr "No fue posible abrir el archivo «%1»" - -#~ msgid "Could not create temporary file." -#~ msgstr "No fue posible crear el archivo temporal." - -#~ msgid "%1 is not a function and cannot be called." -#~ msgstr "%1 no es una función y no se la puede llamar." - -#~ msgid "%1 is not an Object type" -#~ msgstr "%1 no es de tipo objeto" - -#~ msgid "Action takes 2 args." -#~ msgstr "Action requiere 2 argumentos." - -#~ msgid "ActionGroup takes 2 args." -#~ msgstr "ActionGroup requiere 2 argumentos." - -#~ msgid "Must supply a valid parent." -#~ msgstr "Debe proporcionar un objeto padre válido." - -#~ msgid "There was an error reading the file '%1'" -#~ msgstr "Se produjo un error al leer el archivo «%1»" - -#~ msgid "Could not read file '%1'" -#~ msgstr "No fue posible leer el archivo «%1»" - -#~ msgid "Must supply a filename." -#~ msgstr "Debe proporcionar un nombre de archivo." - -#~ msgid "'%1' is not a valid QLayout." -#~ msgstr "«%1» no es una QLayout válida." - -#~ msgid "Must supply a layout name." -#~ msgstr "Debe proporcionar un nombre de disposición." - -#~ msgid "Wrong object type." -#~ msgstr "Tipo de objeto incorrecto." - -#~ msgid "First argument must be a QObject." -#~ msgstr "El primer argumento debe ser un QObject." - -#~ msgid "Incorrect number of arguments." -#~ msgstr "Número incorrecto de argumentos." - -#~ msgid "The slot asked for %1 argument" -#~ msgid_plural "The slot asked for %1 arguments" -#~ msgstr[0] "El slot pidió %1 argumento" -#~ msgstr[1] "El slot pidió %1 argumentos" - -#~ msgid "but there is only %1 available" -#~ msgid_plural "but there are only %1 available" -#~ msgstr[0] "pero solo hay %1 disponible" -#~ msgstr[1] "pero solo hay %1 disponibles" - -#~ msgctxt "" -#~ "%1 is 'the slot asked for foo arguments', %2 is 'but there are only bar " -#~ "available'" -#~ msgid "%1, %2." -#~ msgstr "%1, %2." - -#~ msgid "Failure to cast to %1 value from Type %2 (%3)" -#~ msgstr "No fue posible convertir a %1 un valor de tipo %2 (%3)" - -#~ msgid "No such method '%1'." -#~ msgstr "No existe ese método «%1»." - -#~ msgid "Call to method '%1' failed, unable to get argument %2: %3" -#~ msgstr "" -#~ "La llamada al método «%1» ha fallado, no se puede obtener el argumento " -#~ "%2: %3" - -#~ msgid "Call to '%1' failed." -#~ msgstr "La llamada a «%1» falló." - -#~ msgid "Could not construct value" -#~ msgstr "No fue posible construir el valor" - -#~ msgid "Not enough arguments." -#~ msgstr "No hay suficientes argumentos." - -#~ msgid "Failed to create Action." -#~ msgstr "La creación de la «Action» ha fallado." - -#~ msgid "Failed to create ActionGroup." -#~ msgstr "La creación de la «ActionGroup» ha fallado." - -#~ msgid "No classname specified" -#~ msgstr "No se ha indicado ningún nombre de clase" - -#~ msgid "Failed to create Layout." -#~ msgstr "La creación del «Layout» ha fallado." - -#~ msgid "No classname specified." -#~ msgstr "No se ha indicado ningún nombre de clase." - -#~ msgid "Failed to create Widget." -#~ msgstr "La creación del elemento gráfico ha fallado." - -#~ msgid "Could not open file '%1': %2" -#~ msgstr "No fue posible abrir el archivo «%1»: %2" - -#~ msgid "Failed to load file '%1'" -#~ msgstr "La carga del archivo «%1» ha fallado" - -#~ msgid "'%1' is not a valid QWidget." -#~ msgstr "«%1» no es un QWidget válido." - -#~ msgid "Must supply a widget name." -#~ msgstr "Debe proporcionar un nombre de elemento gráfico." - -#~ msgid "Bad slot handler: Object %1 Identifier %2 Method %3 Signature: %4." -#~ msgstr "" -#~ "Manejador de «slots» no válido: Objeto %1 Identificador %2 Método %3 " -#~ "Firma: %4." - -#~ msgid "Exception calling '%1' slot from %2:%3:%4" -#~ msgstr "Excepción al llamar al slot «%1» desde %2:%3:%4" - -#~ msgid "loading %1" -#~ msgstr "cargando %1" - -#~ msgctxt "describes the feed of the latest posted entries" -#~ msgid "Latest" -#~ msgstr "Más reciente" - -#~ msgid "Highest Rated" -#~ msgstr "Mejor puntuado" - -#~ msgid "Most Downloads" -#~ msgstr "Más descargado" - -#~ msgid "" -#~ "Cannot start gpg and retrieve the available keys. Make sure " -#~ "that gpg is installed, otherwise verification of downloaded " -#~ "resources will not be possible." -#~ msgstr "" -#~ "Imposible iniciar gpg y recuperar las claves disponibles. " -#~ "Asegúrese de que gpg está instalado, de lo contrario será " -#~ "imposible verificar los recursos descargados." - -#~ msgid "" -#~ "Enter passphrase for key 0x%1, belonging to
    %2<" -#~ "%3>
    :
    " -#~ msgstr "" -#~ "Introduzca la contraseña para la clave 0x%1, que pertenece a " -#~ "
    %2<%3>
    :
    " - -#~ msgid "" -#~ "Cannot start gpg and check the validity of the file. Make sure " -#~ "that gpg is installed, otherwise verification of downloaded " -#~ "resources will not be possible." -#~ msgstr "" -#~ "No fue posible iniciar gpg y comprobar la validez del archivo. " -#~ "Asegúrese de que gpg está instalado, de lo contrario será " -#~ "imposible verificar los recursos descargados." - -#~ msgid "Select Signing Key" -#~ msgstr "Seleccionar una clave de firma" - -#~ msgid "Key used for signing:" -#~ msgstr "Clave usada para firmar:" - -#~ msgid "" -#~ "Cannot start gpg and sign the file. Make sure that gpg " -#~ "is installed, otherwise signing of the resources will not be possible." -#~ msgstr "" -#~ "Imposible iniciar gpg y firmar el archivo. Asegúrese de que " -#~ "gpg está instalado, de lo contrario será imposible verificar los " -#~ "recursos descargados." - -#~ msgid "Get Hot New Stuff" -#~ msgstr "Obtener novedades" - -#~ msgctxt "Program name followed by 'Add On Installer'" -#~ msgid "%1 Add-On Installer" -#~ msgstr "Instalador de complementos para %1" - -#~ msgid "Add Rating" -#~ msgstr "Añadir puntuación" - -#~ msgid "Add Comment" -#~ msgstr "Añadir un comentario" - -#~ msgid "View Comments" -#~ msgstr "Ver comentarios" - -#~ msgid "Re: %1" -#~ msgstr "Re: %1" - -#~ msgid "Timeout. Check Internet connection." -#~ msgstr "Se ha excedido el tiempo límite. Compruebe la conexión a Internet." - -#~ msgid "Entries failed to load" -#~ msgstr "Ha fallado la carga de entradas" - -#~ msgid "Server: %1" -#~ msgstr "Servidor: %1" - -#~ msgid "
    Provider: %1" -#~ msgstr "
    Proveedor: %1" - -#~ msgid "
    Version: %1" -#~ msgstr "
    Versión: %1" - -#~ msgid "Provider information" -#~ msgstr "Información sobre el proveedor" - -#~ msgid "Could not install %1" -#~ msgstr "No se puede instalar %1" - -#~ msgid "Get Hot New Stuff!" -#~ msgstr "Obtener novedades" - -#~ msgid "There was an error loading data providers." -#~ msgstr "Se produjo un error al cargar los proveedores de datos." - -#~ msgid "A protocol fault has occurred. The request has failed." -#~ msgstr "Se ha producido un fallo de protocolo. La petición ha fallado." - -#~ msgid "Desktop Exchange Service" -#~ msgstr "Servicio de intercambio de escritorios" - -#~ msgid "A network error has occurred. The request has failed." -#~ msgstr "Se ha producido un error de red. La petición ha fallado." - -#~ msgid "&Source:" -#~ msgstr "&Fuente:" - -#~ msgid "?" -#~ msgstr "?" - -#~ msgid "&Order by:" -#~ msgstr "&Ordenar por:" - -#~ msgid "Enter search phrase here" -#~ msgstr "Introduzca aquí la frase a buscar" - -#~ msgid "Collaborate" -#~ msgstr "Colaborar" - -#~ msgid "Rating: " -#~ msgstr "Puntuación: " - -#~ msgid "Downloads: " -#~ msgstr "Descargas: " - -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgid "Uninstall" -#~ msgstr "Desinstalar" - -#~ msgid "

    No Downloads

    " -#~ msgstr "

    No hay descargas

    " - -#~ msgid "

    Downloads: %1

    \n" -#~ msgstr "

    Descargas: %1

    \n" - -#~ msgid "Update" -#~ msgstr "Actualizar" - -#~ msgid "Rating: %1" -#~ msgstr "Puntuación: %1" - -#~ msgid "No Preview" -#~ msgstr "Sin vista previa" - -#~ msgid "Loading Preview" -#~ msgstr "Cargando vista preliminar" - -#~ msgid "Comments" -#~ msgstr "Comentarios" - -#~ msgid "Changelog" -#~ msgstr "Registro de cambios" - -#~ msgid "Switch version" -#~ msgstr "Cambiar de versión" - -#~ msgid "Contact author" -#~ msgstr "Contactar con el autor" - -#~ msgid "Collaboration" -#~ msgstr "Colaboración" - -#~ msgid "Translate" -#~ msgstr "Traducir" - -#~ msgid "Subscribe" -#~ msgstr "Suscribir" - -#~ msgid "Report bad entry" -#~ msgstr "Informar de entrada incorrecta" - -#~ msgid "Send Mail" -#~ msgstr "Enviar un correo electrónico" - -#~ msgid "Contact on Jabber" -#~ msgstr "Contactar por Jabber" - -#~ msgid "Provider: %1" -#~ msgstr "Proveedor: %1" - -#~ msgid "Version: %1" -#~ msgstr "Versión: %1" - -#~ msgid "The removal request was successfully registered." -#~ msgstr "La solicitud de eliminación se ha registrado correctamente." - -#~ msgid "Removal of entry" -#~ msgstr "Eliminación de la entrada" - -#~ msgid "The removal request failed." -#~ msgstr "La solicitud de eliminación ha fallado." - -#~ msgid "The subscription was successfully completed." -#~ msgstr "La suscripción finalizó correctamente." - -#~ msgid "Subscription to entry" -#~ msgstr "Suscripción a la entrada" - -#~ msgid "The subscription request failed." -#~ msgstr "La solicitud de suscripción ha fallado." - -#~ msgid "The rating was submitted successfully." -#~ msgstr "La puntuación fue enviada correctamente." - -#~ msgid "Rating for entry" -#~ msgstr "Puntuación de la entrada" - -#~ msgid "The rating could not be submitted." -#~ msgstr "No fue posible enviar la puntuación." - -#~ msgid "The comment was submitted successfully." -#~ msgstr "El comentario ha sido enviado con éxito." - -#~ msgid "Comment on entry" -#~ msgstr "Comentar la entrada" - -#~ msgid "The comment could not be submitted." -#~ msgstr "No fue posible enviar el comentario." - -#~ msgid "KNewStuff contributions" -#~ msgstr "Colaboraciones con KNewStuff" - -#~ msgid "This operation requires authentication." -#~ msgstr "Esta operación necesita autenticación." - -#~ msgid "Version %1" -#~ msgstr "Versión %1" - -#~ msgid "Leave a comment" -#~ msgstr "Dejar un comentario" - -#~ msgid "User comments" -#~ msgstr "Comentarios de los usuarios" - -#~ msgid "Rate this entry" -#~ msgstr "Puntuar esta entrada" - -#~ msgid "Translate this entry" -#~ msgstr "Traducir esta entrada" - -#~ msgid "Payload" -#~ msgstr "Carga útil" - -#~ msgid "Download New Stuff..." -#~ msgstr "Descargar novedades..." - -#~ msgid "Hot New Stuff Providers" -#~ msgstr "Proveedores de novedades" - -#~ msgid "Please select one of the providers listed below:" -#~ msgstr "Seleccione uno de los proveedores de la lista de abajo:" - -#~ msgid "No provider selected." -#~ msgstr "No se ha seleccionado ningún proveedor." - -#~ msgid "Share Hot New Stuff" -#~ msgstr "Compartir novedades" - -#~ msgctxt "Program name followed by 'Add On Uploader'" -#~ msgid "%1 Add-On Uploader" -#~ msgstr "Cargador de complementos para %1" - -#~ msgid "Please put in a name." -#~ msgstr "Introduzca un nombre." - -#~ msgid "Old upload information found, fill out fields?" -#~ msgstr "" -#~ "Se ha encontrado información de un envío anterior. ¿Rellenar los campos?" - -#~ msgid "Fill Out" -#~ msgstr "Rellenar" - -#~ msgid "Do Not Fill Out" -#~ msgstr "No rellenar" - -#~ msgid "Author:" -#~ msgstr "Autor:" - -#~ msgid "Email address:" -#~ msgstr "Dirección de correo electrónico:" - -#~ msgid "License:" -#~ msgstr "Licencia:" - -#~ msgid "GPL" -#~ msgstr "GPL" - -#~ msgid "LGPL" -#~ msgstr "LGPL" - -#~ msgid "BSD" -#~ msgstr "BSD" - -#~ msgid "Preview URL:" -#~ msgstr "URL de vista previa:" - -#~ msgid "Language:" -#~ msgstr "Idioma:" - -#~ msgid "In which language did you describe the above?" -#~ msgstr "¿En qué idioma hizo la descripción anterior?" - -#~ msgid "Please describe your upload." -#~ msgstr "Describa su envío." - -#~ msgid "Summary:" -#~ msgstr "Resumen:" - -#~ msgid "Please give some information about yourself." -#~ msgstr "Proporcione algo de información sobre usted mismo." - -#~ msgctxt "" -#~ "the price of a download item, parameter 1 is the currency, 2 is the price" -#~ msgid "" -#~ "This item costs %1 %2.\n" -#~ "Do you want to buy it?" -#~ msgstr "" -#~ "Este elemento cuesta %1 %2.\n" -#~ "¿Quiere comprarlo?" - -#~ msgid "" -#~ "Your account balance is too low:\n" -#~ "Your balance: %1\n" -#~ "Price: %2" -#~ msgstr "" -#~ "El balance de su cuenta es muy bajo:\n" -#~ "Su balance: %1\n" -#~ "Precio: %2" - -#~ msgctxt "voting for an item (good/bad)" -#~ msgid "Your vote was recorded." -#~ msgstr "Su voto ha sido registrado." - -#~ msgid "You are now a fan." -#~ msgstr "Ahora se ha convertido en fan." - -#~ msgid "Network error. (%1)" -#~ msgstr "Error de red. (%1)" - -#~ msgid "Too many requests to server. Please try again in a few minutes." -#~ msgstr "" -#~ "Demasiadas peticiones al servidor. Pruebe de nuevo tras unos minutos." - -#~ msgid "Unknown Open Collaboration Service API error. (%1)" -#~ msgstr "Error desconocido de la API de Open Collaboration Service. (%1)" - -#~ msgid "Initializing" -#~ msgstr "Inicializando" - -#~ msgid "Configuration file not found: \"%1\"" -#~ msgstr "Archivo de configuración no encontrado: «%1»" - -#~ msgid "Configuration file is invalid: \"%1\"" -#~ msgstr "Archivo de configuración no válido: «%1»" - -#~ msgid "Loading provider information" -#~ msgstr "Cargando información del proveedor" - -#~ msgid "Could not load get hot new stuff providers from file: %1" -#~ msgstr "" -#~ "No se pueden cargar los proveedores para las novedades desde el archivo: " -#~ "%1" - -#~ msgid "Error initializing provider." -#~ msgstr "Error al inicializar el proveedor." - -#~ msgid "Loading data" -#~ msgstr "Cargando datos" - -#~ msgid "Loading data from provider" -#~ msgstr "Cargando datos del proveedor" - -#~ msgid "Loading of providers from file: %1 failed" -#~ msgstr "Ha fallado la carga de proveedores desde el archivo %1" - -#~ msgid "Loading one preview" -#~ msgid_plural "Loading %1 previews" -#~ msgstr[0] "Cargando una vista previa" -#~ msgstr[1] "Cargando %1 vistas previas" - -#~ msgid "Installing" -#~ msgstr "Instalando" - -#~ msgid "Invalid item." -#~ msgstr "Elemento no válido." - -#~ msgid "Download of item failed: no download URL for \"%1\"." -#~ msgstr "" -#~ "Ha fallado la descarga del elemento: no hay URL de descarga para «%1»." - -#~ msgid "Download of \"%1\" failed, error: %2" -#~ msgstr "La descarga de «%1» ha fallado. Error: %2" - -#~ msgid "" -#~ "The downloaded file is a html file. This indicates a link to a website " -#~ "instead of the actual download. Would you like to open the site with a " -#~ "browser instead?" -#~ msgstr "" -#~ "Se ha descargado un archivo HTML. Esto indica un enlace a un sitio web en " -#~ "lugar de una descarga real. ¿Desea abrir el sitio web en un navegador?" - -#~ msgid "Possibly bad download link" -#~ msgstr "Posiblemente, un enlace de descarga erróneo" - -#~ msgid "Downloaded file was a HTML file. Opened in browser." -#~ msgstr "Se ha descargado un archivo HTML. Abierto en el navegador." - -#~ msgid "Could not install \"%1\": file not found." -#~ msgstr "No se puede instalar «%1»: archivo no encontrado." - -#~ msgid "Overwrite existing file?" -#~ msgstr "¿Sobrescribir archivo existente?" - -#~ msgid "Download File" -#~ msgstr "Descargar archivo" - -#~ msgid "Icons view mode" -#~ msgstr "Modo de vista de iconos" - -#~ msgid "Details view mode" -#~ msgstr "Modo de vista detallada" - -#~ msgid "All Providers" -#~ msgstr "Todos los proveedores" - -#~ msgid "All Categories" -#~ msgstr "Todas las categorías" - -#~ msgid "Provider:" -#~ msgstr "Proveedor:" - -#~ msgid "Category:" -#~ msgstr "Categoría:" - -#~ msgid "Newest" -#~ msgstr "Más reciente" - -#~ msgid "Rating" -#~ msgstr "Puntuación" - -#~ msgid "Most downloads" -#~ msgstr "Más descargado" - -#~ msgid "Installed" -#~ msgstr "Instalado" - -#~ msgid "Order by:" -#~ msgstr "Ordenar por:" - -#~ msgid "Search:" -#~ msgstr "Buscar:" - -#~ msgid "Homepage" -#~ msgstr "Página de inicio" - -#~ msgid "Become a Fan" -#~ msgstr "Convertirse en fan" - -#~ msgid "Details for %1" -#~ msgstr "Detalles de %1" - -#~ msgid "Changelog:" -#~ msgstr "Registro de cambios:" - -#~ msgctxt "A link to the description of this Get Hot New Stuff item" -#~ msgid "Homepage" -#~ msgstr "Página de inicio" - -#~ msgctxt "" -#~ "A link to make a donation for a Get Hot New Stuff item (opens a web " -#~ "browser)" -#~ msgid "Make a donation" -#~ msgstr "Hacer una donación" - -#~ msgctxt "A link to the knowledgebase (like a forum) (opens a web browser)" -#~ msgid "Knowledgebase (no entries)" -#~ msgid_plural "Knowledgebase (%1 entries)" -#~ msgstr[0] "Base de conocimientos (sin entradas)" -#~ msgstr[1] "Base de conocimientos (%1 entradas)" - -#~ msgctxt "Tooltip for a link in a dialog" -#~ msgid "Opens in a browser window" -#~ msgstr "Abrir en una ventana del navegador" - -#~ msgid "Rating: %1%" -#~ msgstr "Puntuación: %1%" - -#~ msgctxt "Show the author of this item in a list" -#~ msgid "By %1" -#~ msgstr "Por %1" - -#~ msgctxt "fan as in supporter" -#~ msgid "1 fan" -#~ msgid_plural "%1 fans" -#~ msgstr[0] "1 seguidor" -#~ msgstr[1] "%1 seguidores" - -#~ msgid "1 download" -#~ msgid_plural "%1 downloads" -#~ msgstr[0] "1 descarga" -#~ msgstr[1] "%1 descargas" - -#~ msgid "Updating" -#~ msgstr "Actualizando" - -#~ msgid "Install Again" -#~ msgstr "Instalar de nuevo" - -#~ msgid "Fetching license data from server..." -#~ msgstr "Extrayendo del servidor los datos de licencia..." - -#~ msgid "Fetching content data from server..." -#~ msgstr "Extrayendo del servidor los datos del contenido..." - -#~ msgid "Register a new account" -#~ msgstr "Registrar una nueva cuenta" - -#~ msgid "Checking login..." -#~ msgstr "Comprobando el inicio de sesión..." - -#~ msgid "Fetching your previously updated content..." -#~ msgstr "Extrayendo su contenido previamente actualizado..." - -#~ msgid "Could not verify login, please try again." -#~ msgstr "No se puede verificar el inicio de sesión. Pruebe de nuevo." - -#~ msgid "Fetching your previously updated content finished." -#~ msgstr "" -#~ "Ha finalizado la extracción de su contenido previamente actualizado." - -#~ msgid "Fetching content data from server finished." -#~ msgstr "" -#~ "Ha finalizado la extracción de los datos del contenido del servidor." - -#~ msgctxt "" -#~ "A link to the website where the get hot new stuff upload can be seen" -#~ msgid "Visit website" -#~ msgstr "Visitar el sitio web" - -#~ msgid "File not found: %1" -#~ msgstr "Archivo no encontrado: %1" - -#~ msgid "Upload Failed" -#~ msgstr "El envío ha fallado" - -#~ msgid "" -#~ "The server does not recognize the category %2 to which you are trying to " -#~ "upload." -#~ msgid_plural "" -#~ "The server does not recognize any of the categories to which you are " -#~ "trying to upload: %2" -#~ msgstr[0] "" -#~ "El servidor no reconoce la categoría %2 a la que intenta hacer el envío." -#~ msgstr[1] "" -#~ "El servidor no reconoce ninguna de las categorías a las que intenta hacer " -#~ "el envío: %2" - -#~ msgid "The selected category \"%1\" is invalid." -#~ msgstr "La categoría seleccionada, «%1», no es válida." - -#~ msgid "Select preview image" -#~ msgstr "Seleccionar imagen de vista previa" - -#~ msgid "There was a network error." -#~ msgstr "Ha ocurrido un error de red." - -#~ msgid "Uploading Failed" -#~ msgstr "El envío ha fallado" - -#~ msgid "Authentication error." -#~ msgstr "Error de autenticación." - -#~ msgid "Upload failed: %1" -#~ msgstr "El envío ha fallado: %1" - -#~ msgid "File to upload:" -#~ msgstr "Archivo a enviar:" - -#~ msgid "New Upload" -#~ msgstr "Nuevo envío" - -#~ msgid "Please fill out the information about your upload in English." -#~ msgstr "Rellene la información sobre su envío en inglés." - -#~ msgid "Name of the file as it will appear on the website" -#~ msgstr "Nombre de los archivos tal y como aparecerán en el sitio web" - -#~ msgid "" -#~ "This should clearly describe the file content. It can be the same text as " -#~ "the title of the kvtml file." -#~ msgstr "" -#~ "Esto debe describir con claridad el contenido del archivo. Puede ser el " -#~ "mismo texto que el título del archivo kvtml." - -#~ msgid "Preview Images" -#~ msgstr "Vista previa de imágenes" - -#~ msgid "Select Preview..." -#~ msgstr "Seleccionar vista previa..." - -#~ msgid "Set a price for this item" -#~ msgstr "Fijar un precio para este elemento" - -#~ msgid "Price" -#~ msgstr "Precio" - -#~ msgid "Price:" -#~ msgstr "Precio:" - -#~ msgid "Reason for price:" -#~ msgstr "Motivo del precio:" - -#~ msgid "Fetch content link from server" -#~ msgstr "Extraer del servidor el enlace del contenido" - -#~ msgid "Create content on server" -#~ msgstr "Crear contenido en el servidor" - -#~ msgid "Upload content" -#~ msgstr "Enviar contenido" - -#~ msgid "Upload first preview" -#~ msgstr "Enviar la primera vista previa" - -#~ msgid "Note: You can edit, update and delete your content on the website." -#~ msgstr "" -#~ "Nota: puede editar, actualizar y borrar su contenido en el sitio web." - -#~ msgid "Upload second preview" -#~ msgstr "Enviar la segunda vista previa" - -#~ msgid "Upload third preview" -#~ msgstr "Enviar la tercera vista previa" - -#~ msgid "" -#~ "I ensure that this content does not violate any existing copyright, law " -#~ "or trademark. I agree for my IP address to be logged. (Distributing " -#~ "content without the permission of the copyright holder is illegal.)" -#~ msgstr "" -#~ "Puedo asegurar que este contenido no viola ningún copyright existente, " -#~ "ninguna ley ni ninguna marca registrada. Estoy de acuerdo con que se " -#~ "registre mi dirección IP. La distribución de contenidos sin permiso por " -#~ "parte del titular del copyright es ilegal." - -#~ msgid "Start Upload" -#~ msgstr "Comenzar el envío" - -#~ msgid "Play a &sound" -#~ msgstr "Reproducir un &sonido" - -#~ msgid "Select the sound to play" -#~ msgstr "Seleccione el sonido a reproducir" - -#~ msgid "Show a message in a &popup" -#~ msgstr "Mostrar un mensaje en una &ventana emergente" - -#~ msgid "Log to a file" -#~ msgstr "Registrar en un archivo" - -#~ msgid "Mark &taskbar entry" -#~ msgstr "Marcar entrada en la barra de &tareas" - -#~ msgid "Run &command" -#~ msgstr "Eje&cutar la orden" - -#~ msgid "Select the command to run" -#~ msgstr "Seleccione la orden a ejecutar" - -#~ msgid "Sp&eech" -#~ msgstr "Vo&z" - -#~ msgid "" -#~ "Specifies how Jovie should speak the event when received. If you " -#~ "select \"Speak custom text\", enter the text in the box. You may use the " -#~ "following substitution strings in the text:
    %e
    Name of the " -#~ "event
    %a
    Application that sent the event
    %m
    The message sent by the application
    " -#~ msgstr "" -#~ "Especifica cómo debe leer Jovie el evento cuando sea recibido. Si " -#~ "selecciona «Leer texto personalizado», introduzca el texto en el cuadro. " -#~ "Puede utilizar las siguientes cadenas de sustitución en el texto:
    " -#~ "%e
    Nombre del evento
    %a
    Aplicación que envió el " -#~ "evento
    %m
    El mensaje enviado por la aplicación
    " - -#~ msgid "Speak Event Message" -#~ msgstr "Leer mensaje de evento" - -#~ msgid "Speak Event Name" -#~ msgstr "Leer nombre de evento" - -#~ msgid "Speak Custom Text" -#~ msgstr "Leer texto personalizado" - -#~ msgid "Configure Notifications" -#~ msgstr "Configurar las notificaciones" - -#~ msgctxt "State of the notified event" -#~ msgid "State" -#~ msgstr "Estado" - -#~ msgctxt "Title of the notified event" -#~ msgid "Title" -#~ msgstr "Título" - -#~ msgctxt "Description of the notified event" -#~ msgid "Description" -#~ msgstr "Descripción" - -#~ msgid "Do you want to search the Internet for %1?" -#~ msgstr "¿Desea buscar %1 en Internet?" - -#~ msgid "Internet Search" -#~ msgstr "Búsqueda en Internet" - -#~ msgid "&Search" -#~ msgstr "Bu&scar" - -#~ msgctxt "@label Type of file" -#~ msgid "Type: %1" -#~ msgstr "Tipo: %1" - -#~ msgctxt "@label:checkbox" -#~ msgid "Remember action for files of this type" -#~ msgstr "Recordar la acción para archivos de este tipo" - -#~ msgctxt "@label:button" -#~ msgid "&Open with %1" -#~ msgstr "&Abrir con %1" - -#~ msgctxt "@action:inmenu" -#~ msgid "Open &with %1" -#~ msgstr "Abrir &con %1" - -#~ msgctxt "@info" -#~ msgid "Open '%1'?" -#~ msgstr "¿Abrir «%1»?" - -#~ msgctxt "@label:button" -#~ msgid "&Open with..." -#~ msgstr "&Abrir con..." - -#~ msgctxt "@label:button" -#~ msgid "&Open with" -#~ msgstr "&Abrir con" - -#~ msgctxt "@label:button" -#~ msgid "&Open" -#~ msgstr "&Abrir" - -#~ msgctxt "@label File name" -#~ msgid "Name: %1" -#~ msgstr "Nombre: %1" - -#~ msgctxt "@info:whatsthis" -#~ msgid "This is the file name suggested by the server" -#~ msgstr "Este el nombre de archivo sugerido por el servidor" - -#~ msgid "Do you really want to execute '%1'?" -#~ msgstr "¿Desea realmente ejecutar «%1»?" - -#~ msgid "Execute File?" -#~ msgstr "¿Ejecutar el archivo?" - -#~ msgid "Accept" -#~ msgstr "Aceptar" - -#~ msgid "Reject" -#~ msgstr "Rechazar" - -#~ msgid "Untitled" -#~ msgstr "Sin título" - -#~ msgid "" -#~ "The document \"%1\" has been modified.\n" -#~ "Do you want to save your changes or discard them?" -#~ msgstr "" -#~ "El documento «%1» ha sido modificado\n" -#~ "¿Desea guardar los cambios o descartarlos?" - -#~ msgid "Close Document" -#~ msgstr "Cerrar documento" - -#~ msgid "Error reading from PTY" -#~ msgstr "Error leyendo de PTY" - -#~ msgid "Error writing to PTY" -#~ msgstr "Error escribiendo en PTY" - -#~ msgid "PTY operation timed out" -#~ msgstr "La operación de PTY ha excedido el tiempo límite" - -#~ msgid "Error opening PTY" -#~ msgstr "Error abriendo PTY" - -#~ msgid "Kross" -#~ msgstr "Kross" - -#~ msgid "KDE application to run Kross scripts." -#~ msgstr "Aplicación de KDE para ejecutar scripts de Kross." - -#~ msgid "(C) 2006 Sebastian Sauer" -#~ msgstr "© 2006 Sebastian Sauer" - -#~ msgid "Run Kross scripts." -#~ msgstr "Ejecutar los scripts Kross." - -#~ msgid "Sebastian Sauer" -#~ msgstr "Sebastian Sauer" - -#~ msgid "Scriptfile" -#~ msgstr "Archivo de script" - -#~ msgid "Scriptfile \"%1\" does not exist." -#~ msgstr "El archivo de script «%1» no existe." - -#~ msgid "Failed to determine interpreter for scriptfile \"%1\"" -#~ msgstr "Fallo al determinar el intérprete para el archivo de script «%1»" - -#~ msgid "Failed to open scriptfile \"%1\"" -#~ msgstr "Fallo al abrir el archivo de script «%1»" - -#~ msgid "Failed to load interpreter \"%1\"" -#~ msgstr "Fallo al cargar el intérprete «%1»" - -#~ msgid "No such interpreter \"%1\"" -#~ msgstr "No se encuentra ese intérprete «%1»" - -#~ msgid "Failed to create script for interpreter \"%1\"" -#~ msgstr "No fue posible crear un script para el intérprete «%1»" - -#~ msgid "Level of safety of the Ruby interpreter" -#~ msgstr "Nivel de seguridad del intérprete Ruby" - -#~ msgid "Cancel?" -#~ msgstr "¿Cancelar?" - -#~ msgid "No such function \"%1\"" -#~ msgstr "No existe la función «%1»" - -#~ msgid "Text:" -#~ msgstr "Texto:" - -#~ msgid "Comment:" -#~ msgstr "Comentario:" - -#~ msgid "Icon:" -#~ msgstr "Icono:" - -#~ msgid "Interpreter:" -#~ msgstr "Intérprete:" - -#~ msgid "File:" -#~ msgstr "Archivo:" - -#~ msgid "Execute the selected script." -#~ msgstr "Ejecutar el script seleccionado." - -#~ msgid "Stop execution of the selected script." -#~ msgstr "Detener la ejecución del script seleccionado." - -#~ msgid "Edit..." -#~ msgstr "Editar..." - -#~ msgid "Edit selected script." -#~ msgstr "Editar el script seleccionado." - -#~ msgid "Add..." -#~ msgstr "Añadir..." - -#~ msgid "Add a new script." -#~ msgstr "Añadir un nuevo script." - -#~ msgid "Remove selected script." -#~ msgstr "Eliminar el script seleccionado." - -#~ msgid "Edit" -#~ msgstr "Editar" - -#~ msgctxt "@title:group Script properties" -#~ msgid "General" -#~ msgstr "General" - -#~ msgid "The module %1 could not be found." -#~ msgstr "No se encontró el módulo %1." - -#~ msgid "" -#~ "

    The diagnosis is:
    The desktop file %1 could not be found." -#~ msgstr "" -#~ "

    El diagnóstico es:
    No se ha podido encontrar el archivo de " -#~ "escritorio %1.

    " - -#~ msgid "The module %1 is disabled." -#~ msgstr "El módulo %1 está inhabilitado." - -#~ msgid "" -#~ "

    Either the hardware/software the module configures is not " -#~ "available or the module has been disabled by the administrator.

    " -#~ msgstr "" -#~ "

    No está disponible el hardware o el software que configura el " -#~ "módulo, o el módulo ha sido inhabilitado por el administrador.

    " - -#~ msgid "The module %1 is not a valid configuration module." -#~ msgstr "El módulo %1 no es un módulo de configuración válido." - -#~ msgid "" -#~ "The diagnosis is:
    The desktop file %1 does not specify a library." -#~ "
    " -#~ msgstr "" -#~ "El diagnóstico es:
    El archivo de escritorio %1 no especifica una " -#~ "biblioteca.
    " - -#~ msgid "There was an error loading the module." -#~ msgstr "Se produjo un error al cargar el módulo." - -#~ msgid "" -#~ "The diagnosis is:
    %1

    Possible reasons:

    • An error " -#~ "occurred during your last KDE upgrade leaving an orphaned control module
    • You have old third party modules lying around.

    Check " -#~ "these points carefully and try to remove the module mentioned in the " -#~ "error message. If this fails, consider contacting your distributor or " -#~ "packager.

    " -#~ msgstr "" -#~ "El diagnóstico es:
    %1

    Motivos posibles:

    • Se produjo " -#~ "un error durante la última actualización de KDE y un módulo de control ha " -#~ "quedado huérfano.
    • Su instalación tiene módulos anteriores de " -#~ "terceras partes.

    Compruebe estos puntos con cuidado e intente " -#~ "eliminar el módulo mencionado en el mensaje de error. Si esto falla, " -#~ "contacte con su distribuidor o con el empaquetador del software.

    " - -#~ msgid "" -#~ "

    Possible reasons:

    • An error occurred during your last KDE " -#~ "upgrade leaving an orphaned control module
    • You have old third " -#~ "party modules lying around.

    Check these points carefully " -#~ "and try to remove the module mentioned in the error message. If this " -#~ "fails, consider contacting your distributor or packager.

    " -#~ msgstr "" -#~ "

    Posibles razones:

    • Se produjo un error durante la última " -#~ "actualización de KDE y un módulo de control ha quedado huérfano.
    • Su instalación tiene módulos anteriores de terceras partes.
    • Compruebe estos puntos con cuidado e intente eliminar el módulo " -#~ "mencionado en el mensaje de error. Si esto falla, contacte con su " -#~ "distribuidor o con el empaquetador.

      " - -#~ msgctxt "Argument is application name" -#~ msgid "This configuration section is already opened in %1" -#~ msgstr "Esta sección de configuración ya está abierta en %1" - -#~ msgid "" -#~ "The settings of the current module have changed.\n" -#~ "Do you want to apply the changes or discard them?" -#~ msgstr "" -#~ "Las preferencias del módulo actual han cambiado.\n" -#~ "¿Desea guardar los cambios o descartarlos?" - -#~ msgid "Apply Settings" -#~ msgstr "Aplicar preferencias" - -#~ msgid "Distance between desktop icons" -#~ msgstr "Distancia entre los iconos del escritorio" - -#~ msgid "The distance between icons specified in pixels." -#~ msgstr "La distancia entre los iconos, en píxeles." - -#~ msgid "Widget style to use" -#~ msgstr "Estilo a usar para los elementos gráficos" - -#~ msgid "" -#~ "The name of the widget style, for example \"keramik\" or \"plastik\". " -#~ "Without quotes." -#~ msgstr "" -#~ "El nombre del estilo de los elementos gráficos, por ejemplo «keramik» o " -#~ "«plastik». Sin las comillas." - -#~ msgid "Use the PC speaker" -#~ msgstr "Usar el altavoz del equipo" - -#~ msgid "" -#~ "Whether the ordinary PC speaker should be used instead of KDE's own " -#~ "notifications system." -#~ msgstr "" -#~ "Si se debe usar el altavoz normal del equipo en lugar del sistema de " -#~ "notificaciones propio de KDE." - -#~ msgid "What terminal application to use" -#~ msgstr "Qué aplicación de terminal usar" - -#~ msgid "" -#~ "Whenever a terminal application is launched this terminal emulator " -#~ "program will be used.\n" -#~ msgstr "" -#~ "Siempre que se lance una aplicación de terminal se usará este programa " -#~ "emulador de terminal.\n" - -#~ msgid "Fixed width font" -#~ msgstr "Tipo de letra de anchura fija" - -#~ msgid "" -#~ "This font is used when a fixed font is needed. A fixed font has a " -#~ "constant width.\n" -#~ msgstr "" -#~ "Se usa este tipo de letra cuando se necesita una letra de anchura " -#~ "constante.\n" - -#~ msgid "System wide font" -#~ msgstr "Tipo de letra para todo el sistema" - -#~ msgid "Font for menus" -#~ msgstr "Tipo de letra de los menús" - -#~ msgid "What font to use for menus in applications." -#~ msgstr "Qué tipo de letra usar en los menús de las aplicaciones." - -#~ msgid "Color for links" -#~ msgstr "Color de los enlaces" - -#~ msgid "What color links should be that have not yet been clicked on" -#~ msgstr "" -#~ "Qué color deben tener los enlaces en los que todavía no se haya pulsado" - -#~ msgid "Color for visited links" -#~ msgstr "Color de los enlaces visitados" - -#~ msgid "Font for the taskbar" -#~ msgstr "Tipo de letra para la barra de tareas" - -#~ msgid "" -#~ "What font to use for the panel at the bottom of the screen, where the " -#~ "currently running applications are." -#~ msgstr "" -#~ "Qué tipo de letra usar en el panel de la parte inferior de la pantalla, " -#~ "donde se encuentran las aplicaciones que se están ejecutando actualmente." - -#~ msgid "Fonts for toolbars" -#~ msgstr "Tipo de letra de las barras de herramientas" - -#~ msgid "Shortcut for taking screenshot" -#~ msgstr "Acceso rápido para realizar una captura de pantalla" - -#~ msgid "Shortcut for toggling Clipboard Actions on and off" -#~ msgstr "" -#~ "Acceso rápido para activar y desactivar las acciones del portapapeles" - -#~ msgid "Shortcut for shutting down the computer without confirmation" -#~ msgstr "Acceso rápido para apagar el equipo sin pedir confirmación" - -#~ msgid "Show directories first" -#~ msgstr "Mostrar antes los directorios" - -#~ msgid "" -#~ "Whether directories should be placed at the top when displaying files" -#~ msgstr "" -#~ "Si se deben colocar las carpetas en la parte superior al mostrar archivos" - -#~ msgid "The URLs recently visited" -#~ msgstr "Los URL visitados recientemente" - -#~ msgid "Used for auto-completion in file dialogs, for example" -#~ msgstr "" -#~ "Se usa, por ejemplo, para la terminación automática en los diálogos de " -#~ "archivo" - -#~ msgid "Show file preview in file dialog" -#~ msgstr "Mostrar una vista previa del archivo en los diálogos de archivo" - -#~ msgid "Show hidden files" -#~ msgstr "Mostrar los archivos ocultos" - -#~ msgid "" -#~ "Whether files starting with a dot (convention for hidden files) should be " -#~ "shown" -#~ msgstr "" -#~ "Determina si se deben mostrar los archivos cuyo nombre empiece por un " -#~ "punto (la convención para los archivos ocultos)" - -#~ msgid "Show speedbar" -#~ msgstr "Mostrar la barra de velocidad" - -#~ msgid "" -#~ "Whether the shortcut icons to the left in the file dialog should be shown" -#~ msgstr "" -#~ "Si se deben mostrar los iconos de acceso rápido a la izquierda en las " -#~ "ventanas de archivo" - -#~ msgid "What country" -#~ msgstr "Qué país" - -#~ msgid "" -#~ "Used to determine how to display numbers, currency and time/date, for " -#~ "example" -#~ msgstr "" -#~ "Se usa, por ejemplo, para determinar cómo mostrar los números, divisas, " -#~ "fechas y horas" - -#~ msgid "What language to use to display text" -#~ msgstr "Qué idioma se usa para mostrar textos" - -#~ msgid "Character used for indicating positive numbers" -#~ msgstr "Carácter a usar para indicar números positivos" - -#~ msgid "Most countries have no character for this" -#~ msgstr "La mayoría de los países no tienen ningún carácter para esto" - -#~ msgid "Path to the autostart directory" -#~ msgstr "Ruta al directorio de inicio automático" - -#~ msgid "" -#~ "Path to the directory containing executables to be run on session login" -#~ msgstr "" -#~ "Ruta al directorio que contiene los ejecutables a ejecutar en el inicio " -#~ "de la sesión" - -#~ msgid "Enable SOCKS support" -#~ msgstr "Habilitar la implementación de SOCKS" - -#~ msgid "Whether SOCKS version 4 and 5 should be enabled in KDE's sub systems" -#~ msgstr "Si se deben habilitar SOCKS versión 4 y 5 en los subsistemas de KDE" - -#~ msgid "Path to custom SOCKS library" -#~ msgstr "Ruta a la biblioteca SOCKS personalizada" - -#~ msgid "Highlight toolbar buttons on mouse over" -#~ msgstr "" -#~ "Realzar los botones de la barra de herramientas al pasar el ratón por " -#~ "encima" - -#~ msgid "Show text on toolbar icons " -#~ msgstr "Mostrar texto en los iconos de la barra de herramientas " - -#~ msgid "Whether text should be shown in addition to icons on toolbar icons" -#~ msgstr "" -#~ "Si en los iconos de las barras de herramientas se debe mostrar texto, " -#~ "además de los iconos" - -#~ msgid "Password echo type" -#~ msgstr "Tipo de respuesta al introducir la contraseña" - -#~ msgid "The size of the dialog" -#~ msgstr "El tamaño de la ventana" - -#~ msgid "" -#~ "Automatic changes have been performed due to plugin dependencies. Click " -#~ "here for further information" -#~ msgstr "" -#~ "Se han realizado cambios automáticos debido a dependencias de " -#~ "complementos. Pulse aquí para más información" - -#~ msgid "" -#~ "Automatic changes have been performed in order to satisfy plugin " -#~ "dependencies:\n" -#~ msgstr "" -#~ "Se han realizado cambios automáticos para satisfacer las dependencias de " -#~ "los complementos:\n" - -#~ msgid "" -#~ "\n" -#~ " %1 plugin has been automatically checked because of the dependency of " -#~ "%2 plugin" -#~ msgstr "" -#~ "\n" -#~ " Se ha marcado automáticamente el complemento %1, debido a la " -#~ "dependencia del complemento %2" - -#~ msgid "" -#~ "\n" -#~ " %1 plugin has been automatically unchecked because of its dependency " -#~ "on %2 plugin" -#~ msgstr "" -#~ "\n" -#~ " Se ha desmarcado automáticamente el complemento %1 debido a su " -#~ "dependencia del complemento %2" - -#~ msgid "Dependency Check" -#~ msgstr "Comprobación de dependencias" - -#~ msgid "%1 plugin automatically added due to plugin dependencies" -#~ msgid_plural "%1 plugins automatically added due to plugin dependencies" -#~ msgstr[0] "" -#~ "Se ha añadido %1 complemento automáticamente debido a dependencias de " -#~ "complementos" -#~ msgstr[1] "" -#~ "Se han añadido %1 complementos automáticamente debido a dependencias de " -#~ "complementos" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid "%1 plugin automatically removed due to plugin dependencies" -#~ msgid_plural "%1 plugins automatically removed due to plugin dependencies" -#~ msgstr[0] "" -#~ "Se ha eliminado %1 complemento automáticamente debido a dependencias de " -#~ "complementos" -#~ msgstr[1] "" -#~ "Se han eliminado %1 complementos automáticamente debido a dependencias de " -#~ "complementos" - -#~ msgid "Search Plugins" -#~ msgstr "Buscar complementos" - -#~ msgctxt "Used only for plugins" -#~ msgid "About %1" -#~ msgstr "Acerca de %1" - -#~ msgid "Could not load print preview part" -#~ msgstr "No fue posible cargar la parte de vista previa de la impresión" - -#~ msgid "Print Preview" -#~ msgstr "Vista previa" - -#~ msgid "Select Components" -#~ msgstr "Seleccionar componentes" - -#~ msgid "Enable component" -#~ msgstr "Habilitar componente" - -#~ msgid "Success" -#~ msgstr "Éxito" - -#~ msgid "Communication error" -#~ msgstr "Error de comunicaciones" - -#~ msgid "Invalid type in Database" -#~ msgstr "Tipo no válido en la base de datos" - -#~ msgctxt "" -#~ "@title UDS_DISPLAY_NAME for a KIO directory listing. %1 is the query the " -#~ "user entered." -#~ msgid "Query Results from '%1'" -#~ msgstr "Consultar el resultado de «%1»" - -#~ msgctxt "@title UDS_DISPLAY_NAME for a KIO directory listing." -#~ msgid "Query Results" -#~ msgstr "Consultar resultado" - -#~ msgctxt "" -#~ "Boolean AND keyword in desktop search strings. You can add several " -#~ "variants separated by spaces, e.g. retain the English one alongside the " -#~ "translation; keywords are not case sensitive. Make sure there is no " -#~ "conflict with the OR keyword." -#~ msgid "and" -#~ msgstr "y" - -#~ msgctxt "" -#~ "Boolean OR keyword in desktop search strings. You can add several " -#~ "variants separated by spaces, e.g. retain the English one alongside the " -#~ "translation; keywords are not case sensitive. Make sure there is no " -#~ "conflict with the AND keyword." -#~ msgid "or" -#~ msgstr "o" - -#~ msgid "Nepomuk Resource Class Generator" -#~ msgstr "Generador de clases de recursos de Nepomuk" - -#~ msgid "(c) 2006-2009, Sebastian Trüg" -#~ msgstr "© 2006-2009, Sebastian Trüg" - -#~ msgid "Sebastian Trüg" -#~ msgstr "Sebastian Trüg" - -#~ msgid "Maintainer" -#~ msgstr "Encargado" - -#~ msgid "Tobias Koenig" -#~ msgstr "Tobias Koenig" - -#~ msgid "Major cleanup - Personal hero of maintainer" -#~ msgstr "Gran limpieza del código (héroe personal del encargado)" - -#~ msgid "Verbose output debugging mode." -#~ msgstr "Modo detallado de depuración de salida." - -#~ msgid "" -#~ "Generate simple and fast wrapper classes not based on Nepomuk::Resource " -#~ "which do not provide any data integrity checking" -#~ msgstr "" -#~ "Generar clases de envoltorio sencillas y rápidas no basadas en Nepomuk::" -#~ "Resource, que no proporcionan ninguna comprobación de la integridad de " -#~ "los datos" - -#~ msgid "Actually generate the code." -#~ msgstr "Generar el código realmente." - -#~ msgid "List all includes (deprecated)." -#~ msgstr "Listar todas las inclusiones (desaconsejado)." - -#~ msgid "" -#~ "List all header files that will be generated via the --writeall command." -#~ msgstr "" -#~ "Listar todos los archivos de cabecera que se generarán mediante la orden " -#~ "--writeall." - -#~ msgid "" -#~ "List all source files that will be generated via the --writeall command." -#~ msgstr "" -#~ "Listar todos los archivos de código fuente que se generarán mediante la " -#~ "orden --writeall." - -#~ msgid "" -#~ "The ontology files containing the ontologies to be generated, a space " -#~ "separated list (deprecated: use arguments instead.)" -#~ msgstr "" -#~ "Una lista separada por espacios de los archivos ontológicos que contienen " -#~ "las ontologías a generar (desaconsejado: use argumentos en su lugar)." - -#~ msgid "Include path prefix (deprecated)" -#~ msgstr "Prefijo de la ruta de inclusiones (desaconsejado)" - -#~ msgid "Specify the target folder to store generated files into." -#~ msgstr "" -#~ "Especificar la carpeta de destino en la que almacenar los archivos " -#~ "generados." - -#~ msgid "Templates to be used (deprecated)." -#~ msgstr "Plantillas a usar (desaconsejado)." - -#~ msgid "" -#~ "Optionally specify the classes to be generated. Use option multiple times " -#~ "(defaults to all classes)" -#~ msgstr "" -#~ "Especificar opcionalmente las clases a generar. Use la opción varias " -#~ "veces (todas las clases por omisión)" - -#~ msgid "" -#~ "Serialization used in the ontology files. Will default to primitive file " -#~ "extension detection." -#~ msgstr "" -#~ "Serialización usada en los archivos de ontología. Por omisión será la " -#~ "detección de extensión del archivo de primitivas." - -#~ msgid "" -#~ "Set the used visibility in case the classes are to be used in public API. " -#~ " will be used to construct the export macro name and the " -#~ "export header. By default classes will not be exported." -#~ msgstr "" -#~ "Fijar la visibilidad usada en el caso de que las clases se deban usar en " -#~ "una API pública. se usará para construir el nombre de " -#~ "la macro de exportación y la cabecera de exportación. Por omisión, las " -#~ "clases no serán exportadas." - -#~ msgid "The ontology files containing the ontologies to be generated." -#~ msgstr "Los archivos ontológicos que contienen las ontologías a generar." - -#~ msgctxt "@title:window" -#~ msgid "Change Tags" -#~ msgstr "Cambiar etiquetas" - -#~ msgctxt "@title:window" -#~ msgid "Add Tags" -#~ msgstr "Añadir etiquetas" - -#~ msgctxt "@label:textbox" -#~ msgid "Configure which tags should be applied." -#~ msgstr "Configurar las etiquetas que se deben aplicar." - -#~ msgctxt "@label" -#~ msgid "Create new tag:" -#~ msgstr "Crear nueva etiqueta:" - -#~ msgctxt "@info" -#~ msgid "Delete tag" -#~ msgstr "Borrar etiqueta" - -#~ msgctxt "@info" -#~ msgid "" -#~ "Should the tag %1 really be deleted for all files?" -#~ msgstr "" -#~ "¿Se debe borrar realmente la etiqueta %1 de todos " -#~ "los archivos?" - -#~ msgctxt "@title" -#~ msgid "Delete tag" -#~ msgstr "Borrar etiqueta" - -#~ msgctxt "@action:button" -#~ msgid "Delete" -#~ msgstr "Borrar" - -#~ msgctxt "@action:button" -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgid "Changing annotations" -#~ msgstr "Cambiando anotaciones" - -#~ msgctxt "@label" -#~ msgid "Show all tags..." -#~ msgstr "Mostrar todas las etiquetas..." - -#~ msgctxt "@label" -#~ msgid "Add Tags..." -#~ msgstr "Añadir etiquetas..." - -#~ msgctxt "@label" -#~ msgid "Change..." -#~ msgstr "Cambiar..." - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Anytime" -#~ msgstr "En cualquier momento" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Today" -#~ msgstr "Hoy" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Yesterday" -#~ msgstr "Ayer" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "This Week" -#~ msgstr "Esta semana" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Last Week" -#~ msgstr "Semana pasada" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "This Month" -#~ msgstr "Este mes" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Last Month" -#~ msgstr "Mes pasado" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "This Year" -#~ msgstr "Este año" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Last Year" -#~ msgstr "Año pasado" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources that will open a dialog to choose a date range" -#~ msgid "Custom..." -#~ msgstr "Personalizado..." - -#~ msgid "This Week" -#~ msgstr "Esta semana" - -#~ msgid "This Month" -#~ msgstr "Este mes" - -#~ msgid "Anytime" -#~ msgstr "En cualquier momento" - -#~ msgid "Before" -#~ msgstr "Antes" - -#~ msgid "After" -#~ msgstr "Después" - -#~ msgctxt "" -#~ "@option:check An item in a list of resources that allows to query for " -#~ "more resources to put in the list" -#~ msgid "More..." -#~ msgstr "Más..." - -#~ msgctxt "@option:check A filter on file type" -#~ msgid "Documents" -#~ msgstr "Documentos" - -#~ msgctxt "@option:check A filter on file type - audio files" -#~ msgid "Audio" -#~ msgstr "Audio" - -#~ msgctxt "@option:check A filter on file type - media video" -#~ msgid "Video" -#~ msgstr "Vídeo" - -#~ msgctxt "@option:check A filter on file type" -#~ msgid "Images" -#~ msgstr "Imágenes" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "No priority" -#~ msgstr "Sin prioridad" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "Last modified" -#~ msgstr "Ultima modificación" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "Most important" -#~ msgstr "Más importante" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "Never opened" -#~ msgstr "Nunca abierto" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "Any Rating" -#~ msgstr "Cualquier puntuación" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "1 or more" -#~ msgstr "1 o más" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "2 or more" -#~ msgstr "2 o más" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "3 or more" -#~ msgstr "3 o más" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "4 or more" -#~ msgstr "4 o más" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "Max Rating" -#~ msgstr "Máxima puntuación" - -#~ msgctxt "" -#~ "@title KCategorizedSortFilterProxyModel grouping for all Nepomukj " -#~ "resources that are of type rdfs:Resource" -#~ msgid "Miscellaneous" -#~ msgstr "Varios" - -#~ msgctxt "@title:column The Nepomuk resource label and icon" -#~ msgid "Resource" -#~ msgstr "Recurso" - -#~ msgctxt "@title:column The Nepomuk resource's RDF type" -#~ msgid "Resource Type" -#~ msgstr "Tipo de recurso" - -#~ msgid "Enter Search Terms..." -#~ msgstr "Introduzca los términos a buscar..." - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Contacts" -#~ msgstr "Contactos" - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Emails" -#~ msgstr "Correos electrónicos" - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Tasks" -#~ msgstr "Tareas" - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgctxt "@option:check Do filter on type - show only files" -#~ msgid "Files" -#~ msgstr "Archivos" - -#~ msgctxt "@option:check Do filter on type - show everything but files" -#~ msgid "Other" -#~ msgstr "Otros" - -#~ msgid "ThreadWeaver Jobs Examples" -#~ msgstr "Ejemplos de trabajos de ThreadWeaver" - -#~ msgid "" -#~ "The program executes 100 jobs in 4 threads. Each job waits for a random " -#~ "number of milliseconds between 1 and 1000." -#~ msgstr "" -#~ "El programa ejecuta 100 tareas en 4 hilos. Cada tarea espera una cantidad " -#~ "aleatoria de milisegundos entre 1 y 1000." - -#~ msgid "" -#~ "Check to see logging information about thread activity. Watch the console " -#~ "output to see the log information." -#~ msgstr "" -#~ "Marque para ver la información de registro sobre la actividad de los " -#~ "hilos. Observe la salida de la consola para ver la información de " -#~ "registro." - -#~ msgid "Log thread activity" -#~ msgstr "Registrar las actividades de los hilos" - -#~ msgid "Displays Thread Activity" -#~ msgstr "Muestra la actividad de los hilos" - -#~ msgid "Start" -#~ msgstr "Iniciar" - -#~ msgid "GUI based example for the Weaver Thread Manager" -#~ msgstr "Ejemplo gráfico del gestor de hilos ThreadWeaver" - -#~ msgid "Remaining number of jobs:" -#~ msgstr "Número de trabajos pendientes:" - -#~ msgid "What time is it? Click to update." -#~ msgstr "¿Qué hora es? Pulse para actualizarla." - -#~ msgid "" -#~ "

      (do not know yet)

      " -#~ msgstr "" -#~ "

      (todavía no se conoce)

      " - -#~ msgid "Select Files..." -#~ msgstr "Seleccionar archivos..." - -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgid "Suspend" -#~ msgstr "Suspender" - -#~ msgid "Anonymous" -#~ msgstr "Anónimo" diff --git a/local/recipes/kde/kf6-kservice/source/po/et/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/et/kservice6.po index 06f372c761..b80afde879 100644 --- a/local/recipes/kde/kf6-kservice/source/po/et/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/et/kservice6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2016-09-09 02:56+0300\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/eu/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/eu/kservice6.po index 2d843c6e73..b2f0c48124 100644 --- a/local/recipes/kde/kf6-kservice/source/po/eu/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/eu/kservice6.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-08-04 10:23+0200\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/fa/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/fa/kservice6.po index ab6262d9a4..08efd75880 100644 --- a/local/recipes/kde/kf6-kservice/source/po/fa/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/fa/kservice6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-06-28 16:40+0430\n" "Last-Translator: Mohammad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/fi/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/fi/kservice6.po index 4b2d2bcd13..6086803382 100644 --- a/local/recipes/kde/kf6-kservice/source/po/fi/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/fi/kservice6.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-07-02 13:28+0300\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/fr/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/fr/kservice6.po index 6773c5ac9f..6169e60fb3 100644 --- a/local/recipes/kde/kf6-kservice/source/po/fr/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/fr/kservice6.po @@ -1,5 +1,6 @@ # translation of kdelibs4.po to Français # translation of kdelibs4.po to +# SPDX-FileCopyrightText: 2021, 2026 Xavier Besnard # Matthieu Robin , 2002,2003, 2004. # Robert Jacolin , 2003,2004. # Gilles Caulier , 2003. @@ -17,21 +18,20 @@ # Joëlle Cornavin , 2007, 2008, 2009, 2010, 2011, 2012, 2013. # Sebastien Renard , 2013, 2014. # Vincent Pinon , 2016, 2017. -# Xavier Besnard , 2021. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" -"PO-Revision-Date: 2021-10-06 15:37+0200\n" -"Last-Translator: Xavier Besnard \n" -"Language-Team: French \n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" +"PO-Revision-Date: 2026-04-03 14:07+0200\n" +"Last-Translator: Xavier Besnard \n" +"Language-Team: fr\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 21.08.1\n" +"X-Generator: Lokalize 25.12.3\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -105,7 +105,7 @@ msgstr "Suivre l'identifiant de menu à des fins de débogage" msgctxt "@info:shell command-line option" msgid "Switch QStandardPaths to test mode, for unit tests only" msgstr "" -"Basculer QStandardPaths en mode test, pour les tests unitaires uniquement" +"Basculer QStandardPaths en mode de tests, uniquement pour les tests unitaires" #~ msgctxt "@info:shell command-line option" #~ msgid "" diff --git a/local/recipes/kde/kf6-kservice/source/po/fy/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/fy/kservice6.po index abf70e3106..57c90e89a6 100644 --- a/local/recipes/kde/kf6-kservice/source/po/fy/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/fy/kservice6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-07-22 09:48+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: nl \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ga/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ga/kservice6.po index 0ad64f6755..7f2cff54e3 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ga/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ga/kservice6.po @@ -2,13 +2,13 @@ # Translation of kdelibs4.po to Irish # Copyright (C) 1999,2003,2004 Free Software Foundation, Inc. # Sean V. Kelley , 1999 -# Séamus Ó Ciardhuáin , 2003,2004 # Kevin Scannell , 2004-2009 +# Séamus Ó Ciardhuáin , 2003,2004 msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2004-12-14 09:11-0600\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -16,7 +16,6 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.9.1\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" @@ -31,14107 +30,61 @@ msgid "Your emails" msgstr "seoc@iolfree.ie,kscanne@gmail.com,s_oceallaigh@yahoo.com" #: kbuildsycoca/kbuildsycoca_main.cpp:90 -#, fuzzy, kde-format -#| msgid "KBuildSycoca" +#, kde-format msgctxt "application name" msgid "KBuildSycoca" -msgstr "KBuildSycoca" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:92 -#, fuzzy, kde-format -#| msgid "Rebuilds the system configuration cache." +#, kde-format msgctxt "application description" msgid "Rebuilds the system configuration cache." -msgstr "Atóg taisce cumraíochta an chórais." +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:94 -#, fuzzy, kde-format -#| msgid "(c) 1999-2002 KDE Developers" +#, kde-format msgctxt "@info:credit" msgid "Copyright 1999-2014 KDE Developers" -msgstr "© 1999-2002 Forbróirí KDE" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:95 -#, fuzzy, kde-format -#| msgid "David Faure" +#, kde-format msgctxt "@info:credit" msgid "David Faure" -msgstr "David Faure" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:95 kbuildsycoca/kbuildsycoca_main.cpp:96 -#, fuzzy, kde-format -#| msgid "Author" +#, kde-format msgctxt "@info:credit" msgid "Author" -msgstr "Údar" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:96 -#, fuzzy, kde-format -#| msgid "Waldo Bastian" +#, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" -msgstr "Waldo Bastian" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:102 -#, fuzzy, kde-format -#| msgid "Disable incremental update, re-read everything" +#, kde-format msgctxt "@info:shell command-line option" msgid "Disable incremental update, re-read everything" -msgstr "Díchumasaigh nuashonrú incriminteach, athléigh gach uile rud" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:103 -#, fuzzy, kde-format -#| msgid "Perform menu generation test run only" +#, kde-format msgctxt "@info:shell command-line option" msgid "Perform menu generation test run only" -msgstr "Ná déan ach rith tástála ar ghiniúint an roghchláir" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:105 -#, fuzzy, kde-format -#| msgid "Track menu id for debug purposes" +#, kde-format msgctxt "@info:shell command-line option" msgid "Track menu id for debug purposes" -msgstr "Coinnigh aitheantas an roghchláir le haghaidh dífhabhtaithe" +msgstr "" #: kbuildsycoca/kbuildsycoca_main.cpp:107 #, kde-format msgctxt "@info:shell command-line option" msgid "Switch QStandardPaths to test mode, for unit tests only" msgstr "" - -#, fuzzy -#~| msgid "Disable checking files (dangerous)" -#~ msgctxt "@info:shell command-line option" -#~ msgid "" -#~ "Do not signal applications to update (deprecated, no longer having any " -#~ "effect)" -#~ msgstr "Díchumasaigh seiceáil na gcomhad (contúirteach)" - -#, fuzzy -#~| msgid "Disable checking files (dangerous)" -#~ msgctxt "@info:shell command-line option" -#~ msgid "Disable checking files (deprecated, no longer having any effect)" -#~ msgstr "Díchumasaigh seiceáil na gcomhad (contúirteach)" - -#~ msgid "Function must be called from the main thread." -#~ msgstr "Ní mór an fheidhm seo a ghlao ón phríomhshnáithe." - -#~ msgid "" -#~ "Error launching %1. Either KLauncher is not running anymore, or it failed " -#~ "to start the application." -#~ msgstr "" -#~ "Earráid agus %1 á thosú. Níl KLauncher ag rith a thuilleadh, nó tá sé ag " -#~ "rith ach ní raibh sé in ann an feidhmchlár a thosú." - -#~ msgid "" -#~ "KLauncher could not be reached via D-Bus. Error when calling %1:\n" -#~ "%2\n" -#~ msgstr "" -#~ "Níorbh fhéidir KLauncher a shroicheadh trí D-Bus. Earráid agus %1 á " -#~ "ghlaoch:\n" -#~ "%2\n" - -#~ msgid "" -#~ "Could not launch the mail client:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir an cliant ríomhphoist a thosú:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not launch Mail Client" -#~ msgstr "Níorbh fhéidir Cliant Ríomhphoist a thosú" - -#~ msgid "" -#~ "Could not launch the browser:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir an brabhsálaí a thosú:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not launch Browser" -#~ msgstr "Níorbh fhéidir Brabhsálaí a thosú" - -#~ msgid "" -#~ "Could not launch the terminal client:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir an cliant teirminéil a thosú:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not launch Terminal Client" -#~ msgstr "Níorbh fhéidir Cliant Teirminéil a thosú" - -#~ msgid "The provided service is not valid" -#~ msgstr "Níl an tseirbhís bailí" - -#~ msgid "The service '%1' provides no library or the Library key is missing" -#~ msgstr "" -#~ "Ní sholáthraíonn seirbhís '%1' leabharlann ar bith nó tá eochair na " -#~ "leabharlainne ar iarraidh" - -#, fuzzy -#~| msgid "Create global database" -#~ msgctxt "@info:shell command-line option" -#~ msgid "Create global database" -#~ msgstr "Cruthaigh bunachar sonraí comhchoiteann" - -#, fuzzy -#~| msgid "Do not signal applications to update" -#~ msgctxt "@info:shell command-line option" -#~ msgid "Do not signal applications to update" -#~ msgstr "Ná déan comhartha le feidhmchláir nuashonrú a dhéanamh" - -#, fuzzy -#~| msgid "Check file timestamps" -#~ msgctxt "@info:shell command-line option" -#~ msgid "Check file timestamps" -#~ msgstr "Seiceáil stampaí ama ar na comhaid" - -#~ msgid "Could not find plugin '%1' for application '%2'" -#~ msgstr "Níorbh fhéidir breiseán '%1' a aimsiú le haghaidh feidhmchláir '%2'" - -#, fuzzy -#~| msgid "The library %1 does not offer an %2 function." -#~ msgid "The library %1 does not offer a KPluginFactory." -#~ msgstr "Níl feidhm %2 sa leabharlann %1." - -#~ msgid "Name" -#~ msgstr "Ainm" - -#~ msgid "Host" -#~ msgstr "Óstríomhaire" - -# OK as is -#~ msgid "Port" -#~ msgstr "Port" - -#~ msgid "i18n() takes at least one argument" -#~ msgstr "Glacann i18n() le hargóint amháin ar a laghad" - -#~ msgid "i18nc() takes at least two arguments" -#~ msgstr "Glacann i18nc() le dhá argóint ar a laghad" - -#~ msgid "i18np() takes at least two arguments" -#~ msgstr "Glacann i18np() le dhá argóint ar a laghad" - -#~ msgid "i18ncp() takes at least three arguments" -#~ msgstr "Glacann i18ncp() le trí argóint ar a laghad" - -#~ msgid "System Default (currently: %1)" -#~ msgstr "Réamhshocrú an Chórais (faoi láthair: %1)" - -#~ msgid "Editor Chooser" -#~ msgstr "Roghnóir Eagarthóra" - -#~ msgid "" -#~ "Please choose the default text editing component that you wish to use in " -#~ "this application. If you choose System Default, the application " -#~ "will honor your changes in the System Settings. All other choices will " -#~ "override that setting." -#~ msgstr "" -#~ "Réamhshocraigh an chomhpháirt eagarthóra ba mhaith leat úsáid san " -#~ "fheidhmchlár seo. Má roghnaíonn tú Réamhshocrú Córais, cuirfear " -#~ "d'athruithe i bhfeidhm i Socruithe an Chórais. Sárófar an socrú sin le " -#~ "haon rogha eile." - -#~ msgid "" -#~ "The template needs information about you, which is stored in your address " -#~ "book.\n" -#~ "However, the required plugin could not be loaded.\n" -#~ "\n" -#~ "Please install the KDEPIM/Kontact package for your system." -#~ msgstr "" -#~ "Tá eolas fút de dhíth ar na teimpléid, agus tá an t-eolas seo i do " -#~ "leabhar seoltaí.\n" -#~ "Níorbh fhéidir an breiseán riachtanach a luchtú.\n" -#~ "\n" -#~ "Suiteáil an pacáiste KDEPIM/Kontact ar do chóras." - -#~ msgid "TETest" -#~ msgstr "TETest" - -#~ msgid "Only local files are supported." -#~ msgstr "Ní ghlactar ach le comhaid logánta." - -#~ msgid "Keep output results from scripts" -#~ msgstr "Coimeád torthaí aschurtha ó scripteanna" - -#~ msgid "Check whether config file itself requires updating" -#~ msgstr "" -#~ "Seiceáil an bhfuil nuashonrú ar an gcomhad cumraíochta féin de dhíth" - -#~ msgid "File to read update instructions from" -#~ msgstr "Comhad as a léifear orduithe nuashonraithe" - -#~ msgid "KConf Update" -#~ msgstr "Nuashonraigh KConf" - -#~ msgid "KDE Tool for updating user configuration files" -#~ msgstr "Uirlis KDE chun comhaid chumraíochta na n-úsáideoirí a nuashonrú" - -#~ msgid "(c) 2001, Waldo Bastian" -#~ msgstr "© 2001, Waldo Bastian" - -#~ msgid "??" -#~ msgstr "??" - -#~ msgid "&About" -#~ msgstr "&Eolas" - -#~ msgid "" -#~ "No information available.\n" -#~ "The supplied KAboutData object does not exist." -#~ msgstr "" -#~ "Níl aon eolas ar fáil.\n" -#~ "Níl an réad sonraithe KAboutData ann." - -#~ msgid "A&uthor" -#~ msgstr "Ú&dar" - -#~ msgid "A&uthors" -#~ msgstr "Ú&dair" - -#~ msgid "" -#~ "Please use http://bugs.kde.org to " -#~ "report bugs.\n" -#~ msgstr "" -#~ "Úsáid http://bugs.kde.org chun " -#~ "tuairiscí fabhtanna a sheoladh le do thoil.\n" - -#~ msgid "Please report bugs to %2.\n" -#~ msgstr "" -#~ "Úsáid %2 chun tuairiscí fabhtanna a sheoladh le " -#~ "do thoil.\n" - -#~ msgid "&Thanks To" -#~ msgstr "&Buíochas le" - -#~ msgid "T&ranslation" -#~ msgstr "&Aistriúchán" - -#~ msgid "&License Agreement" -#~ msgstr "&Comhaontú um Cheadúnas" - -#~ msgid "Email" -#~ msgstr "Ríomhphost" - -#~ msgid "Homepage" -#~ msgstr "Leathanach Baile" - -#~ msgid "Task" -#~ msgstr "Tasc" - -#~ msgid "" -#~ "%1
      version %2
      Using KDE %3" -#~ msgstr "" -#~ "%1
      leagan %2
      KDE %3" - -#~ msgid "%1 %2, %3" -#~ msgstr "%1 %2, %3" - -#~ msgid "Other Contributors:" -#~ msgstr "Daoine eile a chuir leis an obair:" - -#~ msgid "(No logo available)" -#~ msgstr "(Níl lógó ar fáil)" - -#~ msgid "About %1" -#~ msgstr "Maidir le %1" - -#~ msgid "Undo: %1" -#~ msgstr "Cealaigh: %1" - -#~ msgid "Redo: %1" -#~ msgstr "Athdhéan: %1" - -#~ msgid "&Undo" -#~ msgstr "&Cealaigh" - -#~ msgid "&Redo" -#~ msgstr "&Athdhéan" - -#~ msgid "&Undo: %1" -#~ msgstr "&Cealaigh: %1" - -#~ msgid "&Redo: %1" -#~ msgstr "&Athdhéan: %1" - -#~ msgid "Close" -#~ msgstr "Dún" - -#~ msgctxt "Freeze the window geometry" -#~ msgid "Freeze" -#~ msgstr "Reoigh" - -#~ msgctxt "Dock this window" -#~ msgid "Dock" -#~ msgstr "Cuir i nduga" - -#~ msgid "Detach" -#~ msgstr "Díscoir" - -#~ msgid "Hide %1" -#~ msgstr "Folaigh %1" - -#~ msgid "Show %1" -#~ msgstr "Taispeáin %1" - -#~ msgid "Search Columns" -#~ msgstr "Cuardaigh Colúin" - -#~ msgid "All Visible Columns" -#~ msgstr "Gach Colún Infheicthe" - -#~ msgctxt "Column number %1" -#~ msgid "Column No. %1" -#~ msgstr "Colún Uimh. %1" - -#~ msgid "S&earch:" -#~ msgstr "&Cuardaigh:" - -#~ msgid "&Password:" -#~ msgstr "&Focal Faire:" - -#~ msgid "&Keep password" -#~ msgstr "&Coimeád an focal faire" - -#~ msgid "&Verify:" -#~ msgstr "&Cinntigh:" - -#~ msgid "Password strength meter:" -#~ msgstr "Méadar cáilíochta focail faire:" - -#~ msgid "" -#~ "The password strength meter gives an indication of the security of the " -#~ "password you have entered. To improve the strength of the password, " -#~ "try:\n" -#~ " - using a longer password;\n" -#~ " - using a mixture of upper- and lower-case letters;\n" -#~ " - using numbers or symbols, such as #, as well as letters." -#~ msgstr "" -#~ "Léiríonn an méadar seo cáilíocht an fhocail faire a d'iontráil tú. Chun " -#~ "cáilíocht an fhocail faire a fheabhsú, bain triail as:\n" -#~ " - focal faire níos faide;\n" -#~ " - focal faire ina bhfuil cás uachtair agus cás íochtair araon;\n" -#~ " - focal faire ina bhfuil uimhreacha nó siombailí (cosúil le #) in " -#~ "éineacht le litreacha." - -#~ msgid "Passwords do not match" -#~ msgstr "Ní ionann na focail fhaire" - -#~ msgid "You entered two different passwords. Please try again." -#~ msgstr "" -#~ "D'iontráil tú dhá fhocal faire difriúil. Bain triail eile as le do thoil." - -#~ msgid "" -#~ "The password you have entered has a low strength. To improve the strength " -#~ "of the password, try:\n" -#~ " - using a longer password;\n" -#~ " - using a mixture of upper- and lower-case letters;\n" -#~ " - using numbers or symbols as well as letters.\n" -#~ "\n" -#~ "Would you like to use this password anyway?" -#~ msgstr "" -#~ "D'iontráil tú focal faire éadaingean. Chun cáilíocht an fhocail faire a " -#~ "fheabhsú, bain triail as:\n" -#~ " - focal faire níos faide;\n" -#~ " - focal faire ina bhfuil cás uachtair agus cás íochtair araon;\n" -#~ " - focal faire ina bhfuil uimhreacha nó siombailí (cosúil le #) in " -#~ "éineacht le litreacha.\n" -#~ "\n" -#~ "An bhfuil fonn ort an focal faire seo a úsáid mar sin féin?" - -#~ msgid "Low Password Strength" -#~ msgstr "Focal Faire Éadaingean" - -#~ msgid "Password Input" -#~ msgstr "Ionchur Focail Faire" - -#~ msgid "Password is empty" -#~ msgstr "Focal faire folamh" - -#~ msgid "Password must be at least 1 character long" -#~ msgid_plural "Password must be at least %1 characters long" -#~ msgstr[0] "Caithfidh an focal faire a bheith 1 charachtar ar a laghad" -#~ msgstr[1] "Caithfidh an focal faire a bheith %1 charachtar ar a laghad" -#~ msgstr[2] "Caithfidh an focal faire a bheith %1 charachtar ar a laghad" -#~ msgstr[3] "Caithfidh an focal faire a bheith %1 gcarachtar ar a laghad" -#~ msgstr[4] "Caithfidh an focal faire a bheith %1 carachtar ar a laghad" - -#~ msgid "Passwords match" -#~ msgstr "Is ionann na focail fhaire" - -#~ msgctxt "@option:check" -#~ msgid "Do Spellchecking" -#~ msgstr "Seiceáil an Litriú" - -#~ msgctxt "@option:check" -#~ msgid "Create &root/affix combinations not in dictionary" -#~ msgstr "Cruthaigh cuingir f&réamh/foirceann nach bhfuil san fhoclóir" - -#~ msgctxt "@option:check" -#~ msgid "Consider run-together &words as spelling errors" -#~ msgstr "Taispeáin focail &chomhtháite mar earráidí litrithe" - -#~ msgctxt "@label:listbox" -#~ msgid "&Dictionary:" -#~ msgstr "&Foclóir:" - -#~ msgctxt "@label:listbox" -#~ msgid "&Encoding:" -#~ msgstr "&Ionchódú:" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "International Ispell" -#~ msgstr "International Ispell" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Aspell" -#~ msgstr "Aspell" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Hspell" -#~ msgstr "Hspell" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Zemberek" -#~ msgstr "Zemberek" - -#~ msgctxt "@item:inlistbox Spell checker" -#~ msgid "Hunspell" -#~ msgstr "Hunspell" - -#~ msgctxt "@label:listbox" -#~ msgid "&Client:" -#~ msgstr "&Cliant:" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Hebrew" -#~ msgstr "Eabhrais" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Turkish" -#~ msgstr "Tuircis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "English" -#~ msgstr "Béarla" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Spanish" -#~ msgstr "Spáinnis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Danish" -#~ msgstr "Danmhairgis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "German" -#~ msgstr "Gearmáinis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "German (new spelling)" -#~ msgstr "Gearmáinis (litriú nua)" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Brazilian Portuguese" -#~ msgstr "Portaingéilis na Brasaíle" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Portuguese" -#~ msgstr "Portaingéilis" - -# google uirlisí teanga as is -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Esperanto" -#~ msgstr "Esperanto" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Norwegian" -#~ msgstr "Ioruais" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Polish" -#~ msgstr "Polainnis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Russian" -#~ msgstr "Rúisis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Slovenian" -#~ msgstr "Slóivéinis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Slovak" -#~ msgstr "Slóvaicis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Czech" -#~ msgstr "Seicis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Swedish" -#~ msgstr "Sualainnis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Swiss German" -#~ msgstr "Gearmáinis Eilvéiseach" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Ukrainian" -#~ msgstr "Úcráinis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Lithuanian" -#~ msgstr "Liotuáinis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "French" -#~ msgstr "Fraincis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Belarusian" -#~ msgstr "Bealarúisis" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Hungarian" -#~ msgstr "Ungáiris" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Unknown" -#~ msgstr "Anaithnid" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "ISpell Default" -#~ msgstr "Teanga Réamhshocraithe ISpell" - -#~ msgctxt "@item Spelling dictionary: %1 dictionary name, %2 file name" -#~ msgid "Default - %1 [%2]" -#~ msgstr "Réamhshocrú - %1 [%2]" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "ASpell Default" -#~ msgstr "Teanga Réamhshocraithe ASpell" - -#~ msgctxt "@item Spelling dictionary: %1 dictionary name" -#~ msgid "Default - %1" -#~ msgstr "Réamhshocraithe - %1" - -#~ msgctxt "@item Spelling dictionary" -#~ msgid "Hunspell Default" -#~ msgstr "Réamhshocrú Hunspell" - -#~ msgid "You have to restart the dialog for changes to take effect" -#~ msgstr "Ní mór duit an dialóg a atosú chun na hathruithe a chur i bhfeidhm." - -#~ msgid "Spell Checker" -#~ msgstr "Litreoir" - -#~ msgid "Check Spelling" -#~ msgstr "Ceartaigh Litriú" - -#~ msgid "&Finished" -#~ msgstr "&Críochnaithe" - -#~ msgid "" -#~ "

      This word was considered to be an \"unknown word\" because it does " -#~ "not match any entry in the dictionary currently in use. It may also be a " -#~ "word in a foreign language.

      \n" -#~ "

      If the word is not misspelled, you may add it to the dictionary by " -#~ "clicking Add to Dictionary. If you do not want to add the unknown " -#~ "word to the dictionary, but you want to leave it unchanged, click " -#~ "Ignore or Ignore All.

      \n" -#~ "

      However, if the word is misspelled, you can try to find the correct " -#~ "replacement in the list below. If you cannot find a replacement there, " -#~ "you may type it in the text box below, and click Replace or " -#~ "Replace All.

      \n" -#~ "
      " -#~ msgstr "" -#~ "

      Is \"focal anaithnid\" é an focal seo, toisc nach bhfuil sé san " -#~ "fhoclóir atá in úsáid faoi láthair. Is féidir gur focal i dteanga eile é " -#~ "freisin.

      \n" -#~ "

      Mura bhfuil sé mílitrithe, is féidir leat an focal a chur leis an " -#~ "bhfoclóir trí Cuir san Fhoclóir a chliceáil. Mura mian leat an " -#~ "focal anaithnid a chur leis an bhfoclóir, agus ní mian leat é a athrú sa " -#~ "téacs, cliceáil Déan neamhaird deDéan neamhaird de gach " -#~ "ceann.

      \n" -#~ "

      Má tá sé mílitrithe áfach, is féidir leat an litriú ceart a aimsiú sa " -#~ "liosta thíos. Mura bhfuil tú in ann an focal ceart a aimsiú, is féidir " -#~ "do rogha focail a chur sa bhosca thíos, ansin Ionadaigh nó " -#~ "Ionadaigh Uile a chliceáil.

      \n" -#~ "
      " - -#~ msgid "Unknown word:" -#~ msgstr "Focal anaithnid:" - -#~ msgid "Unknown word" -#~ msgstr "Focal anaithnid" - -#~ msgid "misspelled" -#~ msgstr "mílitrithe" - -#~ msgid "" -#~ "\n" -#~ "

      Select the language of the document you are proofing here.

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Roghnaigh teanga na cáipéise atá á profú agat anseo.

      \n" -#~ "
      " - -#~ msgid "&Language:" -#~ msgstr "&Teanga:" - -#~ msgid "Text excerpt showing the unknown word in its context." -#~ msgstr "" -#~ "Sliocht as an téacs a thaispeánann an focal anaithnid ina chomhthéacs." - -#~ msgid "" -#~ "\n" -#~ "

      Here you can see a text excerpt showing the unknown word in its " -#~ "context. If this information is not sufficient to choose the best " -#~ "replacement for the unknown word, you can click on the document you are " -#~ "proofing, read a larger part of the text and then return here to continue " -#~ "proofing.

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Anseo taispeántar sliocht as an téacs leis an bhfocal anaithnid ina " -#~ "chomhthéacs. Mura leor é seo chun an téacs ionaid is fearr a roghnú, tig " -#~ "leat cliceáil ar an gcáipéis atá á profú agat, sliocht níos faide a " -#~ "léamh, agus filleadh anseo chun leanúint ag profú.

      \n" -#~ "
      " - -#~ msgid "... the misspelled word shown in context ..." -#~ msgstr "... an focal mílitrithe á thaispeáint ina chomhthéacs ..." - -#~ msgid "" -#~ "\n" -#~ "

      The unknown word was detected and considered unknown because it is not " -#~ "included in the dictionary.
      \n" -#~ "Click here if you consider the unknown word not to be misspelled, and you " -#~ "want to avoid wrongly detecting it again in the future. If you want to " -#~ "let it remain as is, but not add it to the dictionary, then click " -#~ "Ignore or Ignore All instead.

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Meastar gur focal anaithnid é seo toisc nach bhfuil sé san fhoclóir." -#~ "
      \n" -#~ "Cliceáil anseo mura bhfuil sé mílitrithe, dar leatsa, agus níor mhaith " -#~ "leat é a bhrath arís. Mura mian leat é a chur leis an bhfoclóir, agus ní " -#~ "mian leat é a athrú sa téacs, cliceáil Déan neamhaird de nó " -#~ "Déan neamhaird de gach ceann.

      \n" -#~ "
      " - -#~ msgid "<< Add to Dictionary" -#~ msgstr "<< Cuir san Fhoclóir" - -#~ msgid "" -#~ "\n" -#~ "

      Click here to replace all occurrences of the unknown text with the " -#~ "text in the edit box above (to the left).

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Cliceáil anseo chun an téacs sa bhosca eagarthóireachta thuas (ar " -#~ "chlé) a chur in ionad gach uile shampla den téacs anaithnid seo.

      \n" -#~ "
      " - -#~ msgid "R&eplace All" -#~ msgstr "Ionadaigh Uil&e" - -#~ msgid "Suggestion List" -#~ msgstr "Liosta Moltaí" - -#~ msgid "" -#~ "\n" -#~ "

      If the unknown word is misspelled, you should check if the correction " -#~ "for it is available and if it is, click on it. If none of the words in " -#~ "this list is a good replacement you may type the correct word in the edit " -#~ "box above.

      \n" -#~ "

      To correct this word click Replace if you want to correct only " -#~ "this occurrence or Replace All if you want to correct all " -#~ "occurrences.

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Más mílitrithe é an focal anaithnid, ba chóir duit a sheiceáil an " -#~ "bhfuil ceartúchán ar fáil, agus má tá, cliceáil é. Mura bhfuil ceartúchán " -#~ "maith ann, is féidir leat an focal ceart a chlóscríobh sa bhosca " -#~ "eagarthóireachta thuas.

      \n" -#~ "

      Chun an focal seo a cheartú, cliceáil Ionadaigh más mian leat " -#~ "an cás seo amháin a cheartú, agus Ionadaigh Uile más mian leat " -#~ "gach uile chás a cheartú.

      \n" -#~ "
      " - -#~ msgid "Suggested Words" -#~ msgstr "Focail Mholta" - -#~ msgid "" -#~ "\n" -#~ "

      Click here to replace this occurrence of the unknown text with the " -#~ "text in the edit box above (to the left).

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Cliceáil anseo chun an téacs sa bhosca eagarthóireachta thuas (ar " -#~ "chlé) a chur in ionad an téacs anaithnid (sa chás seo amháin).

      \n" -#~ "
      " - -#~ msgid "&Replace" -#~ msgstr "&Ionadaigh" - -#~ msgid "" -#~ "\n" -#~ "

      If the unknown word is misspelled, you should type the correction for " -#~ "your misspelled word here or select it from the list below.

      \n" -#~ "

      You can then click Replace if you want to correct only this " -#~ "occurrence of the word or Replace All if you want to correct all " -#~ "occurrences.

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Más mílitrithe é an focal anaithnid, ba chóir duit an focal ceart a " -#~ "chlóscríobh anseo nó a roghnú ón liosta thíos.

      \n" -#~ "

      Ansin is féidir leat Ionadaigh a chliceáil más mian leat an cás " -#~ "seo amháin a cheartú, agus Ionadaigh Uile más mian leat gach uile " -#~ "chás a cheartú.

      \n" -#~ "
      " - -#~ msgid "Replace &with:" -#~ msgstr "Ionadaigh &le:" - -#~ msgid "" -#~ "\n" -#~ "

      Click here to let this occurrence of the unknown word remain as is.\n" -#~ "

      This action is useful when the word is a name, an acronym, a foreign " -#~ "word or any other unknown word that you want to use but not add to the " -#~ "dictionary.

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Cliceáil anseo chun neamhaird a dhéanamh den fhocal anaithnid (an cás " -#~ "seo amháin).

      \n" -#~ "

      Gníomh úsáideach é seo nuair is éard atá san fhocal anaithnid ná ainm " -#~ "dílis, acrainm, focal gallda, nó aon fhocal eile nach mian leat a chur " -#~ "leis an bhfoclóir.

      \n" -#~ "
      " - -#~ msgid "&Ignore" -#~ msgstr "Déan neamha&ird de" - -#~ msgid "" -#~ "\n" -#~ "

      Click here to let all occurrences of the unknown word remain as they " -#~ "are.

      \n" -#~ "

      This action is useful when the word is a name, an acronym, a foreign " -#~ "word or any other unknown word that you want to use but not add to the " -#~ "dictionary.

      \n" -#~ "
      " -#~ msgstr "" -#~ "\n" -#~ "

      Cliceáil anseo chun neamhaird a dhéanamh de gach uile chás den fhocal " -#~ "anaithnid.

      \n" -#~ "

      Gníomh úsáideach é seo nuair is éard atá san fhocal anaithnid ná ainm " -#~ "dílis, acrainm, focal gallda, nó aon fhocal eile nach mian leat a chur " -#~ "leis an bhfoclóir.

      \n" -#~ "
      " - -#~ msgid "I&gnore All" -#~ msgstr "&Déan neamhaird de gach ceann" - -#~ msgid "S&uggest" -#~ msgstr "&Mol" - -#~ msgid "Language Selection" -#~ msgstr "Roghnú Teanga" - -#~ msgid "As-you-type spell checking enabled." -#~ msgstr "Seiceáil Litrithe Beo in éifeacht." - -#~ msgid "As-you-type spell checking disabled." -#~ msgstr "Díchumasaíodh litriú beo." - -#~ msgid "Incremental Spellcheck" -#~ msgstr "Seiceáil incriminteach litrithe" - -#~ msgid "Too many misspelled words. As-you-type spell checking disabled." -#~ msgstr "An iomarca focal mílitrithe. Díchumasaíodh litriú beo." - -#~ msgid "Check Spelling..." -#~ msgstr "Ceartaigh Litriú..." - -#~ msgid "Auto Spell Check" -#~ msgstr "Seiceáil Litriú go hUathoibríoch" - -#~ msgid "Allow Tabulations" -#~ msgstr "Ceadaigh Táblúcháin" - -#~ msgid "Spell Checking" -#~ msgstr "Seiceáil Litrithe" - -#~ msgid "&Back" -#~ msgstr "&Siar" - -#~ msgctxt "Opposite to Back" -#~ msgid "&Next" -#~ msgstr "&Ar Aghaidh" - -#~ msgid "Unknown View" -#~ msgstr "Amharc Anaithnid" - -#~ msgid "" -#~ "A command-line application that can be used to run KUnitTest modules." -#~ msgstr "" -#~ "Feidhmchlár ar líne na n-orduithe a cheadaíonn duit modúil KUnitTest a " -#~ "rith." - -#~ msgid "Only run modules whose filenames match the regexp." -#~ msgstr "" -#~ "Ná rith ach na modúil a bhfuil ainm orthu atá comhoiriúnach don slonn." - -#~ msgid "" -#~ "Only run tests modules which are found in the folder. Use the query " -#~ "option to select modules." -#~ msgstr "" -#~ "Ná rith ach na modúil tástála a aimsítear san fhillteán. Úsáid an rogha " -#~ "iarratais chun modúil a roghnú." - -#~ msgid "" -#~ "Disables debug capturing. You typically use this option when you use the " -#~ "GUI." -#~ msgstr "" -#~ "Díchumasaigh gabháil dífhabhtaithe. De ghnáth, úsáidtear an rogha seo " -#~ "nuair a bhaintear úsáid as an gcomhéadan grafach." - -#~ msgid "KUnitTest ModRunner" -#~ msgstr "KUnitTest ModRunner" - -#~ msgid "(C) 2005 Jeroen Wijnhout" -#~ msgstr "© 2005 Jeroen Wijnhout" - -#~ msgid "DBus Backend error: connection to helper failed. %1" -#~ msgstr "Earráid in inneall DBus: theip ar cheangal le cúntóir. %1" - -#~ msgid "" -#~ "DBus Backend error: could not contact the helper. Connection error: %1. " -#~ "Message error: %2" -#~ msgstr "" -#~ "Earráid in inneall DBus: níorbh fhéidir dul i dteagmháil leis an " -#~ "gcúntóir. Earráid cheangail: %1. Earráid teachtaireachta: %2" - -#~ msgid "DBus Backend error: received corrupt data from helper %1 %2" -#~ msgstr "" -#~ "Earráid in inneall DBus: fuarthas sonraí truaillithe ó chúntóir %1 %2" - -#~ msgid "Please contact your system administrator." -#~ msgstr "Téigh i dteagmháil le riarthóir do chórais, le do thoil." - -#~ msgid "Configuration file \"%1\" not writable.\n" -#~ msgstr "Ní féidir scríobh ar an gcomhad cumraíochta \"%1\".\n" - -#~ msgid "am" -#~ msgstr "am" - -#~ msgid "pm" -#~ msgstr "pm" - -#~ msgid "No target filename has been given." -#~ msgstr "Níor sonraíodh sprioc-chomhad." - -#~ msgid "Already opened." -#~ msgstr "Oscailte cheana." - -#~ msgid "Insufficient permissions in target directory." -#~ msgstr "Níl go leor ceadanna agat sa chomhadlann sprice." - -#, fuzzy -#~| msgid "Unable to open temporary file." -#~ msgid "Unable to open temporary file. Error was: %1." -#~ msgstr "Ní féidir comhad sealadach a oscailt." - -#~ msgid "Synchronization to disk failed" -#~ msgstr "Theip ar shioncrónú go dtí an diosca" - -#~ msgid "Error during rename." -#~ msgstr "Earráid le linn athainmnithe." - -#~ msgid "kde4-config" -#~ msgstr "kde4-config" - -#~ msgid "A little program to output installation paths" -#~ msgstr "Ríomhchlár beag a thaispeánann conairí suiteála" - -#~ msgid "(C) 2000 Stephan Kulow" -#~ msgstr "© 2000 Stephan Kulow" - -#~ msgid "Left for legacy support" -#~ msgstr "Fágtha ar son córais oidhreachta" - -#~ msgid "Compiled in prefix for KDE libraries" -#~ msgstr "Réimír réamhthiomsaithe le haghaidh leabharlanna KDE" - -#~ msgid "Compiled in exec_prefix for KDE libraries" -#~ msgstr "Réimír `exec_prefix' réamhthiomsaithe le haghaidh leabharlanna KDE" - -#~ msgid "Compiled in library path suffix" -#~ msgstr "Iarmhír na conaire leabharlainne a sonraíodh ag am tiomsaithe" - -#~ msgid "Prefix in $HOME used to write files" -#~ msgstr "Réimír i $HOME a úsáidtear chun comhaid a scríobh" - -#~ msgid "Compiled in version string for KDE libraries" -#~ msgstr "" -#~ "Teaghrán leagain le haghaidh leabharlanna KDE a sonraíodh ag am tiomsaithe" - -#~ msgid "Available KDE resource types" -#~ msgstr "Cineálacha acmhainne KDE atá ar fáil" - -#~ msgid "Search path for resource type" -#~ msgstr "Conair chuardaigh don chineál acmhainne" - -#~ msgid "Find filename inside the resource type given to --path" -#~ msgstr "Aimsigh ainm comhaid sa chineál acmhainne a tugadh do --path" - -# choices untranslated in French, etc. -#~ msgid "User path: desktop|autostart|document" -#~ msgstr "Conair úsáideora: desktop|autostart|document" - -#~ msgid "Prefix to install resource files to" -#~ msgstr "Réimír na comhadlainne ina suiteálfar na comhaid acmhainne" - -#~ msgid "Installation prefix for Qt" -#~ msgstr "Réimír shuiteála Qt" - -#~ msgid "Location of installed Qt binaries" -#~ msgstr "Suíomh na gclár inrite Qt" - -#~ msgid "Location of installed Qt libraries" -#~ msgstr "Suíomh na leabharlann suiteáilte Qt" - -#~ msgid "Location of installed Qt plugins" -#~ msgstr "Suíomh na mbreiseán suiteáilte Qt" - -#~ msgid "Applications menu (.desktop files)" -#~ msgstr "Roghchlár na bhfeidhmchlár (comhaid .desktop)" - -#~ msgid "Autostart directories" -#~ msgstr "Comhadlanna uath-thosaithe" - -#~ msgid "Cached information (e.g. favicons, web-pages)" -#~ msgstr "Faisnéis i dtaisce (m.sh. deilbhíní ceanán, leathanaigh Ghréasáin)" - -#~ msgid "CGIs to run from kdehelp" -#~ msgstr "CGIanna le rith ó kdehelp" - -#~ msgid "Configuration files" -#~ msgstr "Comhaid chumraíochta" - -#~ msgid "Where applications store data" -#~ msgstr "An áit ina stórálann feidhmchláir sonraí" - -#~ msgid "Emoticons" -#~ msgstr "Straoiseoga" - -#~ msgid "Executables in $prefix/bin" -#~ msgstr "Comhaid inrite i $prefix/bin" - -#~ msgid "HTML documentation" -#~ msgstr "Doiciméadú HTML" - -#~ msgid "Icons" -#~ msgstr "Deilbhíní" - -#~ msgid "Configuration description files" -#~ msgstr "Comhaid chumraíochta" - -#~ msgid "Libraries" -#~ msgstr "Leabharlanna" - -#~ msgid "Includes/Headers" -#~ msgstr "Ceanntásca" - -#~ msgid "Translation files for KLocale" -#~ msgstr "Comhaid aistriúcháin le haghaidh KLocale" - -#~ msgid "Mime types" -#~ msgstr "Cineálacha MIME" - -#~ msgid "Loadable modules" -#~ msgstr "Modúil inluchtaithe" - -#~ msgid "Legacy pixmaps" -#~ msgstr "Mapaí picteilíní oidhreachta" - -#~ msgid "Qt plugins" -#~ msgstr "Breiseáin Qt" - -#~ msgid "Services" -#~ msgstr "Seirbhísí" - -#~ msgid "Service types" -#~ msgstr "Cineálacha seirbhíse" - -#~ msgid "Application sounds" -#~ msgstr "Fuaimeanna feidhmchláir" - -#~ msgid "Templates" -#~ msgstr "Teimpléid" - -#~ msgid "Wallpapers" -#~ msgstr "Cúlbhrait" - -#~ msgid "XDG Application menu (.desktop files)" -#~ msgstr "Roghchlár na bhfeidhmchlár XDG (comhaid .desktop)" - -#~ msgid "XDG Menu descriptions (.directory files)" -#~ msgstr "Comhaid chumraíochta roghchlár XDG (comhaid .directory)" - -#~ msgid "XDG Icons" -#~ msgstr "Deilbhíní XDG" - -#~ msgid "XDG Mime Types" -#~ msgstr "Cineálacha MIME XDG" - -#~ msgid "XDG Menu layout (.menu files)" -#~ msgstr "Leagan amach an roghchláir XDG (comhaid .menu)" - -#~ msgid "XDG autostart directory" -#~ msgstr "Comhadlann uath-thosaithe XDG" - -#~ msgid "Temporary files (specific for both current host and current user)" -#~ msgstr "" -#~ "Comhaid shealadacha (a bhaineann leis an óstríomhaire reatha agus leis an " -#~ "úsáideoir reatha araon)" - -#~ msgid "UNIX Sockets (specific for both current host and current user)" -#~ msgstr "" -#~ "Soicéid UNIX (a bhaineann leis an óstríomhaire reatha agus leis an " -#~ "úsáideoir reatha araon)" - -#~ msgid "%1 - unknown type\n" -#~ msgstr "%1 - cineál anaithnid\n" - -#~ msgid "%1 - unknown type of userpath\n" -#~ msgstr "%1 - cineál anaithnid conaire úsáideora\n" - -#~ msgid "" -#~ "No licensing terms for this program have been specified.\n" -#~ "Please check the documentation or the source for any\n" -#~ "licensing terms.\n" -#~ msgstr "" -#~ "Níor tugadh coinníollacha ceadúnaithe don bhogearra seo.\n" -#~ "Féach sna lámhleabhair nó sna foinsí le haghaidh\n" -#~ "coinníollacha ceadúnaithe.\n" - -#~ msgid "This program is distributed under the terms of the %1." -#~ msgstr "Cuirtear an bogearra seo ar fáil de réir coinníollacha an %1." - -#~ msgctxt "@item license (short name)" -#~ msgid "GPL v2" -#~ msgstr "GPL v2" - -#~ msgctxt "@item license" -#~ msgid "GNU General Public License Version 2" -#~ msgstr "GNU General Public License Version 2" - -#~ msgctxt "@item license (short name)" -#~ msgid "LGPL v2" -#~ msgstr "LGPL v2" - -#~ msgctxt "@item license" -#~ msgid "GNU Lesser General Public License Version 2" -#~ msgstr "GNU Lesser General Public License Version 2" - -#~ msgctxt "@item license (short name)" -#~ msgid "BSD License" -#~ msgstr "Ceadúnas BSD" - -#~ msgctxt "@item license" -#~ msgid "BSD License" -#~ msgstr "Ceadúnas BSD" - -#~ msgctxt "@item license (short name)" -#~ msgid "Artistic License" -#~ msgstr "Ceadúnas \"Artistic\"" - -#~ msgctxt "@item license" -#~ msgid "Artistic License" -#~ msgstr "Ceadúnas \"Artistic\"" - -#~ msgctxt "@item license (short name)" -#~ msgid "QPL v1.0" -#~ msgstr "QPL v1.0" - -#~ msgctxt "@item license" -#~ msgid "Q Public License" -#~ msgstr "Ceadúnas Poiblí Q" - -#~ msgctxt "@item license (short name)" -#~ msgid "GPL v3" -#~ msgstr "GPL v3" - -#~ msgctxt "@item license" -#~ msgid "GNU General Public License Version 3" -#~ msgstr "GNU General Public License Version 3" - -#~ msgctxt "@item license (short name)" -#~ msgid "LGPL v3" -#~ msgstr "LGPL v3" - -#~ msgctxt "@item license" -#~ msgid "GNU Lesser General Public License Version 3" -#~ msgstr "GNU Lesser General Public License Version 3" - -#~ msgctxt "@item license" -#~ msgid "Custom" -#~ msgstr "Ceadúnas Saincheaptha" - -#~ msgctxt "@item license" -#~ msgid "Not specified" -#~ msgstr "Gan sonrú" - -#~ msgctxt "replace this with information about your translation team" -#~ msgid "" -#~ "

      KDE is translated into many languages thanks to the work of the " -#~ "translation teams all over the world.

      For more information on KDE " -#~ "internationalization visit http://l10n." -#~ "kde.org

      " -#~ msgstr "" -#~ "

      Aistrítear KDE go teangacha éagsúla de bharr obair na bhfoirne " -#~ "aistriúcháin ar fud an domhain.

      Chun tuilleadh eolais faoi " -#~ "idirnáisiúnú KDE a fháil, téigh go http://" -#~ "l10n.kde.org/

      " - -#~ msgid "Use the X-server display 'displayname'" -#~ msgstr "Úsáid an scáileán 'displayname' ar an bhfreastalaí X" - -#~ msgid "Use the QWS display 'displayname'" -#~ msgstr "Úsáid an scáileán QWS 'displayname'" - -#~ msgid "Restore the application for the given 'sessionId'" -#~ msgstr "Athchóirigh an feidhmchlár don 'sessionId' sonraithe" - -#~ msgid "" -#~ "Causes the application to install a private color\n" -#~ "map on an 8-bit display" -#~ msgstr "" -#~ "Tabhair ar an fheidhmchlár mapa príobháideach datha\n" -#~ "a shuiteáil ar scáileán 8-giotán" - -#~ msgid "" -#~ "Limits the number of colors allocated in the color\n" -#~ "cube on an 8-bit display, if the application is\n" -#~ "using the QApplication::ManyColor color\n" -#~ "specification" -#~ msgstr "" -#~ "Cuir teorainn le líon na ndathanna atá dáilte\n" -#~ "sa chiúb datha ar scáileán 8-giotán, má tá an\n" -#~ "feidhmchlár ag baint úsáide as an tsonraíocht\n" -#~ "dathanna QApplication::ManyColor" - -#~ msgid "tells Qt to never grab the mouse or the keyboard" -#~ msgstr "insíonn le Qt gan an luch nó an méarchlár a thógáil riamh" - -#~ msgid "" -#~ "running under a debugger can cause an implicit\n" -#~ "-nograb, use -dograb to override" -#~ msgstr "" -#~ "is féidir an rogha -nograb a shocrú go hintuigthe\n" -#~ "agus an clár ag rith faoi dhífhabhtóir, úsáid -dograb\n" -#~ "chun sárú" - -#~ msgid "switches to synchronous mode for debugging" -#~ msgstr "athraigh go mód sioncrónach le haghaidh dífhabhtaithe" - -#~ msgid "defines the application font" -#~ msgstr "socraíonn cló an fheidhmchláir" - -#~ msgid "" -#~ "sets the default background color and an\n" -#~ "application palette (light and dark shades are\n" -#~ "calculated)" -#~ msgstr "" -#~ "socraigh dath réamhshocraithe an chúlra agus\n" -#~ "pailéad feidhmchláir (áireofar na himireacha sorcha\n" -#~ "agus dorcha)" - -#~ msgid "sets the default foreground color" -#~ msgstr "socraigh dath réamhshocraithe an tulra" - -#~ msgid "sets the default button color" -#~ msgstr "socraíonn dath réamhshocraithe na gcnaipí" - -#~ msgid "sets the application name" -#~ msgstr "socraigh ainm an fheidhmchláir" - -#~ msgid "sets the application title (caption)" -#~ msgstr "socraigh ceannteideal an fheidhmchláir" - -#~ msgid "load the testability framework" -#~ msgstr "luchtaigh an chreatlach intástála" - -#~ msgid "" -#~ "forces the application to use a TrueColor visual on\n" -#~ "an 8-bit display" -#~ msgstr "" -#~ "tabhair ar an fheidhmchlár amharc TrueColor a úsáid ar\n" -#~ "scáileán 8-giotán" - -#~ msgid "" -#~ "sets XIM (X Input Method) input style. Possible\n" -#~ "values are onthespot, overthespot, offthespot and\n" -#~ "root" -#~ msgstr "" -#~ "socraíonn an stíl ionchurtha XIM (X Input Method).\n" -#~ "Luachanna bailí: onthespot, overthespot, offthespot agus\n" -#~ "root" - -#~ msgid "set XIM server" -#~ msgstr "socraigh freastalaí XIM" - -#~ msgid "disable XIM" -#~ msgstr "díchumasaigh XIM" - -#~ msgid "forces the application to run as QWS Server" -#~ msgstr "cuir iallach ar an fheidhmchlár rith mar fhreastalaí QWS" - -#~ msgid "mirrors the whole layout of widgets" -#~ msgstr "scáthánaigh leagan amach na ngiuirléidí go hiomlán" - -#~ msgid "applies the Qt stylesheet to the application widgets" -#~ msgstr "cuir an stílbhileog Qt i bhfeidhm ar ghiuirléidí an fheidhmchláir" - -#~ msgid "" -#~ "use a different graphics system instead of the default one, options are " -#~ "raster and opengl (experimental)" -#~ msgstr "" -#~ "úsáid córas grafach eile in ionad an chórais réamhshocraithe; is iad " -#~ "\"raster\" agus \"opengl\" (turgnamhach) na roghanna atá agat" - -#~ msgid "" -#~ "QML JS debugger information. Application must be\n" -#~ "built with -DQT_DECLARATIVE_DEBUG for the debugger to be\n" -#~ "enabled" -#~ msgstr "" -#~ "Faisnéis maidir leis an dífhabhtóir JS QML. Caithfear\n" -#~ "an feidhmchlár a thógáil le -DQT_DECLARATIVE_DEBUG chun\n" -#~ "an dífhabhtóir a chumasú" - -#~ msgid "Use 'caption' as name in the titlebar" -#~ msgstr "Úsáid 'caption' mar an t-ainm sa cheannteideal" - -#~ msgid "Use 'icon' as the application icon" -#~ msgstr "Úsáid 'icon' mar dheilbhín an fheidhmchláir" - -#~ msgid "Use alternative configuration file" -#~ msgstr "Úsáid comhad cumraíochta eile mar mhalairt" - -#~ msgid "Disable crash handler, to get core dumps" -#~ msgstr "Díchumasaigh an láimhseálaí tuairteála, chun córdhumpaí a fháil" - -#~ msgid "Waits for a WM_NET compatible windowmanager" -#~ msgstr "Fan ar bhainisteoir fhuinneog atá comhoiriúnach do WM_NET" - -#~ msgid "sets the application GUI style" -#~ msgstr "socraigh stíl chomhéadan grafach an fheidhmchláir" - -#~ msgid "" -#~ "sets the client geometry of the main widget - see man X for the argument " -#~ "format (usually WidthxHeight+XPos+YPos)" -#~ msgstr "" -#~ "socraigh an chéimseata cliaint don phríomhghiuirléid - féach ar `man X' " -#~ "le haghaidh formáide na n-argóintí (Leithead x Airde + IonadX + IonadY de " -#~ "ghnáth)" - -#~ msgid "KDE Application" -#~ msgstr "Feidhmchlár KDE" - -#~ msgid "Qt" -#~ msgstr "Qt" - -#~ msgid "KDE" -#~ msgstr "KDE" - -#~ msgid "Unknown option '%1'." -#~ msgstr "Rogha anaithnid '%1'." - -#~ msgctxt "@info:shell %1 is cmdoption name" -#~ msgid "'%1' missing." -#~ msgstr "'%1' ar iarraidh." - -#~ msgctxt "" -#~ "@info:shell message on appcmd --version; do not translate 'Development " -#~ "Platform'%3 application name, other %n version strings" -#~ msgid "" -#~ "Qt: %1\n" -#~ "KDE Development Platform: %2\n" -#~ "%3: %4\n" -#~ msgstr "" -#~ "Qt: %1\n" -#~ "Ardán Forbartha KDE: %2\n" -#~ "%3: %4\n" - -#~ msgctxt "the 2nd argument is a list of name+address, one on each line" -#~ msgid "" -#~ "%1 was written by\n" -#~ "%2" -#~ msgstr "" -#~ "Bhí %1 scríofa ag:\n" -#~ "%2" - -#~ msgid "" -#~ "This application was written by somebody who wants to remain anonymous." -#~ msgstr "" -#~ "Bhí an feidhmchlár seo scríofa ag duine gur mian leis a bheith anaithnid." - -#~ msgid "Please use http://bugs.kde.org to report bugs.\n" -#~ msgstr "" -#~ "Bain úsáid as http://bugs.kde.org chun tuairiscí fabht a sheoladh.\n" - -#~ msgid "Please report bugs to %1.\n" -#~ msgstr "Seol tuairiscí fabhtanna chuig %1.\n" - -#~ msgid "Unexpected argument '%1'." -#~ msgstr "Argóint gan súil leis '%1'." - -#~ msgid "Use --help to get a list of available command line options." -#~ msgstr "Úsáid '--help' chun liosta roghanna an líne ordaithe a fháil." - -#~ msgid "[options] " -#~ msgstr "[roghanna] " - -#~ msgid "[%1-options]" -#~ msgstr "[roghanna %1]" - -#~ msgid "Usage: %1 %2\n" -#~ msgstr "Úsáid: %1 %2\n" - -#~ msgid "" -#~ "\n" -#~ "Generic options:\n" -#~ msgstr "" -#~ "\n" -#~ "Roghanna ginearálta:\n" - -#~ msgid "Show help about options" -#~ msgstr "Taispeáin cabhair faoi roghanna" - -#~ msgid "Show %1 specific options" -#~ msgstr "Taispeáin roghanna a bhaineann le %1 amháin" - -#~ msgid "Show all options" -#~ msgstr "Taispeáin gach rogha" - -#~ msgid "Show author information" -#~ msgstr "Taispeáin eolas faoin údar" - -#~ msgid "Show version information" -#~ msgstr "Taispeáin eolas faoin leagan" - -#~ msgid "Show license information" -#~ msgstr "Taispeáin eolas faoin cheadúnas" - -#~ msgid "End of options" -#~ msgstr "Deireadh na roghanna" - -#~ msgid "" -#~ "\n" -#~ "%1 options:\n" -#~ msgstr "" -#~ "\n" -#~ "Roghanna %1:\n" - -#~ msgid "" -#~ "\n" -#~ "Options:\n" -#~ msgstr "" -#~ "\n" -#~ "Roghanna:\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments:\n" -#~ msgstr "" -#~ "\n" -#~ "Argóintí:\n" - -#~ msgid "The files/URLs opened by the application will be deleted after use" -#~ msgstr "" -#~ "Scriosfar na comhaid/urlanna atá oscailte ag an fheidhmchlár i ndiaidh " -#~ "iad a úsáid" - -#~ msgid "KDE-tempfile" -#~ msgstr "Comhad sealadach KDE" - -#~ msgid "" -#~ "Could not launch the KDE Help Center:\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "Níorbh fhéidir an Lárionad Cabhrach KDE a thosú:\n" -#~ "\n" -#~ "%1" - -#~ msgid "Could not Launch Help Center" -#~ msgstr "Níorbh fhéidir an Lárionad Cabhrach a thosú" - -#~ msgctxt "@item Text character set" -#~ msgid "Western European" -#~ msgstr "Iarthar na hEorpa" - -#~ msgctxt "@item Text character set" -#~ msgid "Central European" -#~ msgstr "Lár na hEorpa" - -#~ msgctxt "@item Text character set" -#~ msgid "Baltic" -#~ msgstr "Baltach" - -#~ msgctxt "@item Text character set" -#~ msgid "South-Eastern Europe" -#~ msgstr "Eorpa Thoir Theas" - -#~ msgctxt "@item Text character set" -#~ msgid "Turkish" -#~ msgstr "Turcach" - -#~ msgctxt "@item Text character set" -#~ msgid "Cyrillic" -#~ msgstr "Coireallach" - -#~ msgctxt "@item Text character set" -#~ msgid "Chinese Traditional" -#~ msgstr "Sínis Thraidisiúnta" - -#~ msgctxt "@item Text character set" -#~ msgid "Chinese Simplified" -#~ msgstr "Sínis Shimplithe" - -#~ msgctxt "@item Text character set" -#~ msgid "Korean" -#~ msgstr "Cóiréach" - -#~ msgctxt "@item Text character set" -#~ msgid "Japanese" -#~ msgstr "Seapánach" - -#~ msgctxt "@item Text character set" -#~ msgid "Greek" -#~ msgstr "Gréagach" - -#~ msgctxt "@item Text character set" -#~ msgid "Arabic" -#~ msgstr "Arabach" - -#~ msgctxt "@item Text character set" -#~ msgid "Hebrew" -#~ msgstr "Eabhrach" - -#~ msgctxt "@item Text character set" -#~ msgid "Thai" -#~ msgstr "Téalannach" - -#~ msgctxt "@item Text character set" -#~ msgid "Unicode" -#~ msgstr "Unicode" - -#~ msgctxt "@item Text character set" -#~ msgid "Northern Saami" -#~ msgstr "Sáimis Thuaidh" - -#~ msgctxt "@item Text character set" -#~ msgid "Other" -#~ msgstr "Eile" - -#~ msgctxt "@item %1 character set, %2 encoding" -#~ msgid "%1 ( %2 )" -#~ msgstr "%1 ( %2 )" - -#~ msgctxt "@item" -#~ msgid "Other encoding (%1)" -#~ msgstr "Ionchódú eile (%1)" - -#~ msgctxt "@item Text encoding: %1 character set, %2 encoding" -#~ msgid "%1 ( %2 )" -#~ msgstr "%1 ( %2 )" - -#~ msgctxt "@item Text character set" -#~ msgid "Disabled" -#~ msgstr "Díchumasaithe" - -#~ msgctxt "@item Text character set" -#~ msgid "Universal" -#~ msgstr "Uilíoch" - -#~ msgctxt "digit set" -#~ msgid "Arabic-Indic" -#~ msgstr "Ind-Arabach" - -#~ msgctxt "digit set" -#~ msgid "Bengali" -#~ msgstr "Beangálach" - -#~ msgctxt "digit set" -#~ msgid "Devanagari" -#~ msgstr "Déiveanágrach" - -#~ msgctxt "digit set" -#~ msgid "Eastern Arabic-Indic" -#~ msgstr "Ind-Arabach Oirthearach" - -#~ msgctxt "digit set" -#~ msgid "Gujarati" -#~ msgstr "Gúisearátach" - -#~ msgctxt "digit set" -#~ msgid "Gurmukhi" -#~ msgstr "Gurmúcach" - -#~ msgctxt "digit set" -#~ msgid "Kannada" -#~ msgstr "Cannadach" - -#~ msgctxt "digit set" -#~ msgid "Khmer" -#~ msgstr "Ciméarach" - -#~ msgctxt "digit set" -#~ msgid "Malayalam" -#~ msgstr "Mailéalamach" - -#~ msgctxt "digit set" -#~ msgid "Oriya" -#~ msgstr "Oiríseach" - -#~ msgctxt "digit set" -#~ msgid "Tamil" -#~ msgstr "Tamalach" - -#~ msgctxt "digit set" -#~ msgid "Telugu" -#~ msgstr "Teileagúch" - -#~ msgctxt "digit set" -#~ msgid "Thai" -#~ msgstr "Téalannach" - -#~ msgctxt "digit set" -#~ msgid "Arabic" -#~ msgstr "Arabach" - -#~ msgctxt "name of digit set with digit string, e.g. 'Arabic (0123456789)'" -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgctxt "size in bytes" -#~ msgid "%1 B" -#~ msgstr "%1 B" - -#~ msgctxt "size in 1000 bytes" -#~ msgid "%1 kB" -#~ msgstr "%1 kB" - -#~ msgctxt "size in 10^6 bytes" -#~ msgid "%1 MB" -#~ msgstr "%1 MB" - -#~ msgctxt "size in 10^9 bytes" -#~ msgid "%1 GB" -#~ msgstr "%1 GB" - -#~ msgctxt "size in 10^12 bytes" -#~ msgid "%1 TB" -#~ msgstr "%1 TB" - -#~ msgctxt "size in 10^15 bytes" -#~ msgid "%1 PB" -#~ msgstr "%1 PB" - -#~ msgctxt "size in 10^18 bytes" -#~ msgid "%1 EB" -#~ msgstr "%1 EB" - -#~ msgctxt "size in 10^21 bytes" -#~ msgid "%1 ZB" -#~ msgstr "%1 ZB" - -#~ msgctxt "size in 10^24 bytes" -#~ msgid "%1 YB" -#~ msgstr "%1 YB" - -#~ msgctxt "memory size in 1024 bytes" -#~ msgid "%1 KB" -#~ msgstr "%1 KB" - -#~ msgctxt "memory size in 2^20 bytes" -#~ msgid "%1 MB" -#~ msgstr "%1 MB" - -#~ msgctxt "memory size in 2^30 bytes" -#~ msgid "%1 GB" -#~ msgstr "%1 GB" - -#~ msgctxt "memory size in 2^40 bytes" -#~ msgid "%1 TB" -#~ msgstr "%1 TB" - -#~ msgctxt "memory size in 2^50 bytes" -#~ msgid "%1 PB" -#~ msgstr "%1 PB" - -#~ msgctxt "memory size in 2^60 bytes" -#~ msgid "%1 EB" -#~ msgstr "%1 EB" - -#~ msgctxt "memory size in 2^70 bytes" -#~ msgid "%1 ZB" -#~ msgstr "%1 ZB" - -#~ msgctxt "memory size in 2^80 bytes" -#~ msgid "%1 YB" -#~ msgstr "%1 YB" - -#~ msgctxt "size in 1024 bytes" -#~ msgid "%1 KiB" -#~ msgstr "%1 KiB" - -#~ msgctxt "size in 2^20 bytes" -#~ msgid "%1 MiB" -#~ msgstr "%1 MiB" - -#~ msgctxt "size in 2^30 bytes" -#~ msgid "%1 GiB" -#~ msgstr "%1 GiB" - -#~ msgctxt "size in 2^40 bytes" -#~ msgid "%1 TiB" -#~ msgstr "%1 TiB" - -#~ msgctxt "size in 2^50 bytes" -#~ msgid "%1 PiB" -#~ msgstr "%1 PiB" - -#~ msgctxt "size in 2^60 bytes" -#~ msgid "%1 EiB" -#~ msgstr "%1 EiB" - -#~ msgctxt "size in 2^70 bytes" -#~ msgid "%1 ZiB" -#~ msgstr "%1 ZiB" - -#~ msgctxt "size in 2^80 bytes" -#~ msgid "%1 YiB" -#~ msgstr "%1 YiB" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 days" -#~ msgid "%1 days" -#~ msgstr "%1 lá" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 hours" -#~ msgid "%1 hours" -#~ msgstr "%1 uair" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 minutes" -#~ msgid "%1 minutes" -#~ msgstr "%1 nóiméad" - -#~ msgctxt "@item:intext %1 is a real number, e.g. 1.23 seconds" -#~ msgid "%1 seconds" -#~ msgstr "%1 soicind" - -#~ msgctxt "@item:intext" -#~ msgid "%1 millisecond" -#~ msgid_plural "%1 milliseconds" -#~ msgstr[0] "%1 mhilleasoicind" -#~ msgstr[1] "%1 mhilleasoicind" -#~ msgstr[2] "%1 mhilleasoicind" -#~ msgstr[3] "%1 milleasoicind" -#~ msgstr[4] "%1 milleasoicind" - -#~ msgctxt "@item:intext" -#~ msgid "1 day" -#~ msgid_plural "%1 days" -#~ msgstr[0] "1 lá" -#~ msgstr[1] "%1 lá" -#~ msgstr[2] "%1 lá" -#~ msgstr[3] "%1 lá" -#~ msgstr[4] "%1 lá" - -#~ msgctxt "@item:intext" -#~ msgid "1 hour" -#~ msgid_plural "%1 hours" -#~ msgstr[0] "1 uair" -#~ msgstr[1] "%1 uair" -#~ msgstr[2] "%1 huaire" -#~ msgstr[3] "%1 n-uaire" -#~ msgstr[4] "%1 uair" - -#~ msgctxt "@item:intext" -#~ msgid "1 minute" -#~ msgid_plural "%1 minutes" -#~ msgstr[0] "1 nóiméad" -#~ msgstr[1] "%1 nóiméad" -#~ msgstr[2] "%1 nóiméad" -#~ msgstr[3] "%1 nóiméad" -#~ msgstr[4] "%1 nóiméad" - -#~ msgctxt "@item:intext" -#~ msgid "1 second" -#~ msgid_plural "%1 seconds" -#~ msgstr[0] "1 soicind" -#~ msgstr[1] "%1 shoicind" -#~ msgstr[2] "%1 shoicind" -#~ msgstr[3] "%1 soicind" -#~ msgstr[4] "%1 soicind" - -#~ msgctxt "" -#~ "@item:intext days and hours. This uses the previous item:intext messages. " -#~ "If this does not fit the grammar of your language please contact the i18n " -#~ "team to solve the problem" -#~ msgid "%1 and %2" -#~ msgstr "%1 agus %2" - -#~ msgctxt "" -#~ "@item:intext hours and minutes. This uses the previous item:intext " -#~ "messages. If this does not fit the grammar of your language please " -#~ "contact the i18n team to solve the problem" -#~ msgid "%1 and %2" -#~ msgstr "%1 agus %2" - -#~ msgctxt "" -#~ "@item:intext minutes and seconds. This uses the previous item:intext " -#~ "messages. If this does not fit the grammar of your language please " -#~ "contact the i18n team to solve the problem" -#~ msgid "%1 and %2" -#~ msgstr "%1 agus %2" - -#~ msgctxt "Before Noon KLocale::LongName" -#~ msgid "Ante Meridiem" -#~ msgstr "Ante Meridiem" - -#~ msgctxt "Before Noon KLocale::ShortName" -#~ msgid "AM" -#~ msgstr "AM" - -#~ msgctxt "Before Noon KLocale::NarrowName" -#~ msgid "A" -#~ msgstr "A" - -#~ msgctxt "After Noon KLocale::LongName" -#~ msgid "Post Meridiem" -#~ msgstr "Post Meridiem" - -#~ msgctxt "After Noon KLocale::ShortName" -#~ msgid "PM" -#~ msgstr "PM" - -#~ msgctxt "After Noon KLocale::NarrowName" -#~ msgid "P" -#~ msgstr "P" - -#~ msgid "Today" -#~ msgstr "Inniu" - -#~ msgid "Yesterday" -#~ msgstr "Inné" - -#~ msgctxt "concatenation of dates and time" -#~ msgid "%1 %2" -#~ msgstr "%1 %2" - -#~ msgctxt "concatenation of date/time and time zone" -#~ msgid "%1 %2" -#~ msgstr "%1 %2" - -#~ msgctxt "@title/plain" -#~ msgid "== %1 ==" -#~ msgstr "== %1 ==" - -#~ msgctxt "@title/rich" -#~ msgid "

      %1

      " -#~ msgstr "

      %1

      " - -#~ msgctxt "@subtitle/plain" -#~ msgid "~ %1 ~" -#~ msgstr "~ %1 ~" - -#~ msgctxt "@subtitle/rich" -#~ msgid "

      %1

      " -#~ msgstr "

      %1

      " - -#~ msgctxt "@item/plain" -#~ msgid " * %1" -#~ msgstr " * %1" - -#~ msgctxt "@item/rich" -#~ msgid "
    • %1
    • " -#~ msgstr "
    • %1
    • " - -#~ msgctxt "@note/plain" -#~ msgid "Note: %1" -#~ msgstr "Nóta: %1" - -#~ msgctxt "@note/rich" -#~ msgid "Note: %1" -#~ msgstr "Nóta: %1" - -#~ msgctxt "" -#~ "@note-with-label/plain\n" -#~ "%1 is the note label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "" -#~ "@note-with-label/rich\n" -#~ "%1 is the note label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "@warning/plain" -#~ msgid "WARNING: %1" -#~ msgstr "RABHADH: %1" - -#~ msgctxt "@warning/rich" -#~ msgid "Warning: %1" -#~ msgstr "Rabhadh: %1" - -#~ msgctxt "" -#~ "@warning-with-label/plain\n" -#~ "%1 is the warning label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "" -#~ "@warning-with-label/rich\n" -#~ "%1 is the warning label, %2 is the text" -#~ msgid "%1: %2" -#~ msgstr "%1: %2" - -#~ msgctxt "" -#~ "@link-with-description/plain\n" -#~ "%1 is the URL, %2 is the descriptive text" -#~ msgid "%2 (%1)" -#~ msgstr "%2 (%1)" - -#~ msgctxt "" -#~ "@link-with-description/rich\n" -#~ "%1 is the URL, %2 is the descriptive text" -#~ msgid "%2" -#~ msgstr "%2" - -#~ msgctxt "@filename/plain" -#~ msgid "‘%1’" -#~ msgstr "‘%1’" - -#~ msgctxt "@filename/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@application/plain" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@application/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@command/plain" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@command/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "" -#~ "@command-with-section/plain\n" -#~ "%1 is the command name, %2 is its man section" -#~ msgid "%1(%2)" -#~ msgstr "%1(%2)" - -#~ msgctxt "" -#~ "@command-with-section/rich\n" -#~ "%1 is the command name, %2 is its man section" -#~ msgid "%1(%2)" -#~ msgstr "%1(%2)" - -#~ msgctxt "@resource/plain" -#~ msgid "“%1”" -#~ msgstr "“%1”" - -#~ msgctxt "@resource/rich" -#~ msgid "“%1”" -#~ msgstr "“%1”" - -#~ msgctxt "@icode/plain" -#~ msgid "“%1”" -#~ msgstr "“%1”" - -#~ msgctxt "@icode/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@shortcut/plain" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@shortcut/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@interface/plain" -#~ msgid "|%1|" -#~ msgstr "|%1|" - -#~ msgctxt "@interface/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@emphasis/plain" -#~ msgid "*%1*" -#~ msgstr "*%1*" - -#~ msgctxt "@emphasis/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@emphasis-strong/plain" -#~ msgid "**%1**" -#~ msgstr "**%1**" - -#~ msgctxt "@emphasis-strong/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@placeholder/plain" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "@placeholder/rich" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "@email/plain" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "@email/rich" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "" -#~ "@email-with-name/plain\n" -#~ "%1 is name, %2 is address" -#~ msgid "%1 <%2>" -#~ msgstr "%1 <%2>" - -#~ msgctxt "" -#~ "@email-with-name/rich\n" -#~ "%1 is name, %2 is address" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@envar/plain" -#~ msgid "$%1" -#~ msgstr "$%1" - -#~ msgctxt "@envar/rich" -#~ msgid "$%1" -#~ msgstr "$%1" - -#~ msgctxt "@message/plain" -#~ msgid "/%1/" -#~ msgstr "/%1/" - -#~ msgctxt "@message/rich" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "shortcut-key-delimiter/plain" -#~ msgid "+" -#~ msgstr "+" - -#~ msgctxt "shortcut-key-delimiter/rich" -#~ msgid "+" -#~ msgstr "+" - -#~ msgctxt "gui-path-delimiter/plain" -#~ msgid "→" -#~ msgstr "→" - -#~ msgctxt "gui-path-delimiter/rich" -#~ msgid "→" -#~ msgstr "→" - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# keycap, leave as is -#~ msgctxt "keyboard-key-name" -#~ msgid "Alt" -#~ msgstr "Alt" - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# keycap, leave as is -#~ msgctxt "keyboard-key-name" -#~ msgid "AltGr" -#~ msgstr "AltGr" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Backspace" -#~ msgstr "Backspace" - -#~ msgctxt "keyboard-key-name" -#~ msgid "CapsLock" -#~ msgstr "CapsLock" - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# keycap, leave as is -#~ msgctxt "keyboard-key-name" -#~ msgid "Control" -#~ msgstr "Control" - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# keycap, leave as is -#~ msgctxt "keyboard-key-name" -#~ msgid "Ctrl" -#~ msgstr "Ctrl" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Delete" -#~ msgstr "Delete" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Down" -#~ msgstr "Down" - -#~ msgctxt "keyboard-key-name" -#~ msgid "End" -#~ msgstr "End" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Enter" -#~ msgstr "Enter" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Esc" -#~ msgstr "Esc" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Escape" -#~ msgstr "Escape" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Home" -#~ msgstr "Home" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Hyper" -#~ msgstr "Hyper" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Ins" -#~ msgstr "Ins" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Insert" -#~ msgstr "Insert" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Left" -#~ msgstr "Left" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Menu" -#~ msgstr "Menu" - -# keycap, leave as is -#~ msgctxt "keyboard-key-name" -#~ msgid "Meta" -#~ msgstr "Meta" - -#~ msgctxt "keyboard-key-name" -#~ msgid "NumLock" -#~ msgstr "NumLock" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PageDown" -#~ msgstr "PageDown" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PageUp" -#~ msgstr "PageUp" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PgDown" -#~ msgstr "PgDown" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PgUp" -#~ msgstr "PgUp" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PauseBreak" -#~ msgstr "PauseBreak" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PrintScreen" -#~ msgstr "PrintScreen" - -#~ msgctxt "keyboard-key-name" -#~ msgid "PrtScr" -#~ msgstr "PrtScr" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Return" -#~ msgstr "Return" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Right" -#~ msgstr "Right" - -#~ msgctxt "keyboard-key-name" -#~ msgid "ScrollLock" -#~ msgstr "ScrollLock" - -# keycap, leave as is -#~ msgctxt "keyboard-key-name" -#~ msgid "Shift" -#~ msgstr "Shift" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Space" -#~ msgstr "Spás" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Super" -#~ msgstr "Super" - -#~ msgctxt "keyboard-key-name" -#~ msgid "SysReq" -#~ msgstr "SysReq" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Tab" -#~ msgstr "Tab" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Up" -#~ msgstr "Up" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Win" -#~ msgstr "Win" - -#~ msgctxt "keyboard-key-name" -#~ msgid "F%1" -#~ msgstr "F%1" - -#~ msgid "no error" -#~ msgstr "ní raibh aon earráid" - -#~ msgid "requested family not supported for this host name" -#~ msgstr "ní thacaítear leis an aicme iarrtha ar an óstríomhaire seo" - -#~ msgid "temporary failure in name resolution" -#~ msgstr "teip shealadach ar réiteach na n-ainmneacha" - -#~ msgid "non-recoverable failure in name resolution" -#~ msgstr "teip dhocheartaithe ar réiteach na n-ainmneacha" - -#~ msgid "invalid flags" -#~ msgstr "bratacha neamhbhailí" - -#~ msgid "memory allocation failure" -#~ msgstr "teip dhála chuimhne" - -#~ msgid "name or service not known" -#~ msgstr "ainm nó seirbhís anaithnid" - -#~ msgid "requested family not supported" -#~ msgstr "ní thacaítear leis an aicme iarrtha" - -#~ msgid "requested service not supported for this socket type" -#~ msgstr "níl an tseirbhís iarrtha ar fáil leis an chineál soicéid seo" - -#~ msgid "requested socket type not supported" -#~ msgstr "ní ghlactar leis an chineál soicéid iarrtha" - -#~ msgid "unknown error" -#~ msgstr "earráid anaithnid" - -#~ msgctxt "1: the i18n'ed system error code, from errno" -#~ msgid "system error: %1" -#~ msgstr "earráid chórais: %1" - -#~ msgid "request was canceled" -#~ msgstr "cealaíodh an t-iarratas" - -#~ msgctxt "1: the unknown socket address family number" -#~ msgid "Unknown family %1" -#~ msgstr "Aicme anaithnid %1" - -#~ msgctxt "Socket error code NoError" -#~ msgid "no error" -#~ msgstr "ní raibh aon earráid" - -#~ msgctxt "Socket error code LookupFailure" -#~ msgid "name lookup has failed" -#~ msgstr "theip ar chuardach tábla ar ainm" - -#~ msgctxt "Socket error code AddressInUse" -#~ msgid "address already in use" -#~ msgstr "seoladh in úsáid cheana féin" - -#~ msgctxt "Socket error code AlreadyBound" -#~ msgid "socket is already bound" -#~ msgstr "soicéad ceangailte cheana" - -#~ msgctxt "Socket error code AlreadyCreated" -#~ msgid "socket is already created" -#~ msgstr "soicéad cruthaithe cheana" - -#~ msgctxt "Socket error code NotBound" -#~ msgid "socket is not bound" -#~ msgstr "soicéad gan cheangal" - -#~ msgctxt "Socket error code NotCreated" -#~ msgid "socket has not been created" -#~ msgstr "soicéad gan cruthú" - -#~ msgctxt "Socket error code WouldBlock" -#~ msgid "operation would block" -#~ msgstr "Bhlocálfadh an oibríocht seo" - -#~ msgctxt "Socket error code ConnectionRefused" -#~ msgid "connection actively refused" -#~ msgstr "diúltaíodh an ceangal go gníomhach" - -#~ msgctxt "Socket error code ConnectionTimedOut" -#~ msgid "connection timed out" -#~ msgstr "ceangal imithe thar am" - -#~ msgctxt "Socket error code InProgress" -#~ msgid "operation is already in progress" -#~ msgstr "tá an oibríocht ar siúl cheana" - -#~ msgctxt "Socket error code NetFailure" -#~ msgid "network failure occurred" -#~ msgstr "tharla teip líonra" - -#~ msgctxt "Socket error code NotSupported" -#~ msgid "operation is not supported" -#~ msgstr "oibríocht gan tacaíocht" - -#~ msgctxt "Socket error code Timeout" -#~ msgid "timed operation timed out" -#~ msgstr "chuaigh oibríocht thar am" - -#~ msgctxt "Socket error code UnknownError" -#~ msgid "an unknown/unexpected error has happened" -#~ msgstr "tharla earráid anaithnid/gan choinne" - -#~ msgctxt "Socket error code RemotelyDisconnected" -#~ msgid "remote host closed connection" -#~ msgstr "dhún an cianóstach an ceangal" - -#~ msgid "NEC SOCKS client" -#~ msgstr "Cliant SOCKS NEC" - -#~ msgid "Dante SOCKS client" -#~ msgstr "Cliant SOCKS Dante" - -#~ msgid "Specified socket path is invalid" -#~ msgstr "Tá an chonair shoicéid neamhbhailí" - -#~ msgid "The socket operation is not supported" -#~ msgstr "Ní thacaítear leis an oibríocht soicéid" - -#~ msgid "Connection refused" -#~ msgstr "Diúltaíodh an ceangal" - -#~ msgid "Permission denied" -#~ msgstr "Cead diúltaithe" - -#~ msgid "Connection timed out" -#~ msgstr "Ceangal imithe thar am" - -#~ msgid "Unknown error" -#~ msgstr "Earráid anaithnid" - -#~ msgid "Could not set non-blocking mode" -#~ msgstr "Níorbh fhéidir mód neamhbhlocála a shocrú" - -#~ msgid "Address is already in use" -#~ msgstr "Seoladh in úsáid cheana féin" - -#~ msgid "Path cannot be used" -#~ msgstr "Ní féidir an chonair a úsáid" - -#~ msgid "No such file or directory" -#~ msgstr "Níl a leithéid de chomhad nó chomhadlann ann" - -#~ msgid "Not a directory" -#~ msgstr "Ní comhadlann é" - -#~ msgid "Read-only filesystem" -#~ msgstr "Córas comhad inléite amháin" - -#~ msgid "Unknown socket error" -#~ msgstr "Earráid: soicéad anaithnid" - -#~ msgid "Operation not supported" -#~ msgstr "Oibríocht gan tacaíocht" - -#~ msgid "Timed out trying to connect to remote host" -#~ msgstr "Imithe thar am agus ag iarraidh ceangal a bhunú le cianóstach" - -#~ msgctxt "SSL error" -#~ msgid "No error" -#~ msgstr "Gan earráid" - -#~ msgctxt "SSL error" -#~ msgid "The certificate authority's certificate is invalid" -#~ msgstr "Tá teastas an údaráis teastais neamhbhailí" - -#~ msgctxt "SSL error" -#~ msgid "The certificate has expired" -#~ msgstr "Tá an teastas as dáta" - -#~ msgctxt "SSL error" -#~ msgid "The certificate is invalid" -#~ msgstr "Tá an teastas neamhbhailí" - -#~ msgctxt "SSL error" -#~ msgid "The certificate is not signed by any trusted certificate authority" -#~ msgstr "Níl an teastas ag aon údarás iontaofa teastais" - -#~ msgctxt "SSL error" -#~ msgid "The certificate has been revoked" -#~ msgstr "Cealaíodh an teastas" - -#~ msgctxt "SSL error" -#~ msgid "The certificate is unsuitable for this purpose" -#~ msgstr "Níl an teastas oiriúnach don aidhm seo" - -#~ msgctxt "SSL error" -#~ msgid "" -#~ "The root certificate authority's certificate is not trusted for this " -#~ "purpose" -#~ msgstr "" -#~ "Ní chuirtear muinín i dteastas an bhunúdaráis teastais don aidhm seo" - -#~ msgctxt "SSL error" -#~ msgid "" -#~ "The certificate authority's certificate is marked to reject this " -#~ "certificate's purpose" -#~ msgstr "" -#~ "Tá teastas an údaráis teastais marcáilte chun aidhm an teastais seo a " -#~ "dhiúltú" - -#~ msgctxt "SSL error" -#~ msgid "The peer did not present any certificate" -#~ msgstr "Níor chuir an comhghleacaí aon teastas ar aghaidh" - -#~ msgctxt "SSL error" -#~ msgid "The certificate does not apply to the given host" -#~ msgstr "Ní bhaineann an teastas leis an óstríomhaire ainmnithe" - -#~ msgctxt "SSL error" -#~ msgid "The certificate cannot be verified for internal reasons" -#~ msgstr "Ní féidir an teastas a fhíorú de bharr fáthanna inmheánacha" - -#~ msgctxt "SSL error" -#~ msgid "The certificate chain is too long" -#~ msgstr "Tá an slabhra teastas rófhada" - -#~ msgctxt "SSL error" -#~ msgid "Unknown error" -#~ msgstr "Earráid anaithnid" - -#~ msgid "address family for nodename not supported" -#~ msgstr "aicme sheolta do nódainm gan tacaíocht" - -#~ msgid "invalid value for 'ai_flags'" -#~ msgstr "luach neamhbhailí do 'ai_flags'" - -#~ msgid "'ai_family' not supported" -#~ msgstr "ní thacaítear le 'ai_family'" - -#~ msgid "no address associated with nodename" -#~ msgstr "níl aon seoladh ceangailte leis an nódainm" - -#~ msgid "servname not supported for ai_socktype" -#~ msgstr "ní ghlactar le hainm freastalaithe do 'ai_socktype'" - -#~ msgid "'ai_socktype' not supported" -#~ msgstr "ní thacaítear le 'ai_socktype'" - -#~ msgid "system error" -#~ msgstr "earráid chórais" - -#~ msgid "Could not find mime type %2" -#~ msgid_plural "" -#~ "Could not find mime types:\n" -#~ "%2" -#~ msgstr[0] "" -#~ "Níorbh fhéidir an cineál MIME seo a aimsiú:\n" -#~ "%2" -#~ msgstr[1] "" -#~ "Níorbh fhéidir na cineálacha MIME seo a aimsiú:\n" -#~ "%2" -#~ msgstr[2] "" -#~ "Níorbh fhéidir na cineálacha MIME seo a aimsiú:\n" -#~ "%2" -#~ msgstr[3] "" -#~ "Níorbh fhéidir na cineálacha MIME seo a aimsiú:\n" -#~ "%2" -#~ msgstr[4] "" -#~ "Níorbh fhéidir na cineálacha MIME seo a aimsiú:\n" -#~ "%2" - -#~ msgid "" -#~ "No mime types installed. Check that shared-mime-info is installed, and " -#~ "that XDG_DATA_DIRS is not set, or includes /usr/share." -#~ msgstr "" -#~ "Níl aon chineálacha MIME suiteáilte. Bí cinnte go bhfuil shared-mime-info " -#~ "suiteáilte, agus nach bhfuil XDG_DATA_DIRS socraithe, nó go bhfuil /usr/" -#~ "share ann." - -#~ msgid "No service matching the requirements was found" -#~ msgstr "Níor aimsíodh aon seirbhís a fhreagraíonn do na riachtanais" - -#~ msgid "" -#~ "The service '%1' does not provide an interface '%2' with keyword '%3'" -#~ msgstr "Ní sholáthraíonn seirbhís '%1' comhéadan '%2' le lorgfhocal '%3'" - -#~ msgctxt "dictionary variant" -#~ msgid "40" -#~ msgstr "40" - -#~ msgctxt "dictionary variant" -#~ msgid "60" -#~ msgstr "60" - -#~ msgctxt "dictionary variant" -#~ msgid "80" -#~ msgstr "80" - -#~ msgctxt "dictionary variant" -#~ msgid "-ise suffixes" -#~ msgstr "iarmhíreanna -ise" - -#~ msgctxt "dictionary variant" -#~ msgid "-ize suffixes" -#~ msgstr "iarmhíreanna -ize" - -#~ msgctxt "dictionary variant" -#~ msgid "-ise suffixes and with accents" -#~ msgstr "iarmhíreanna -ise agus síntí fada" - -#~ msgctxt "dictionary variant" -#~ msgid "-ise suffixes and without accents" -#~ msgstr "iarmhíreanna -ise gan síntí fada" - -#~ msgctxt "dictionary variant" -#~ msgid "-ize suffixes and with accents" -#~ msgstr "iarmhíreanna -ize agus síntí fada" - -#~ msgctxt "dictionary variant" -#~ msgid "-ize suffixes and without accents" -#~ msgstr "iarmhíreanna -ize gan síntí fada" - -#~ msgctxt "dictionary variant" -#~ msgid "large" -#~ msgstr "mór" - -#~ msgctxt "dictionary variant" -#~ msgid "medium" -#~ msgstr "measartha mór" - -#~ msgctxt "dictionary variant" -#~ msgid "small" -#~ msgstr "beag" - -#~ msgctxt "dictionary variant" -#~ msgid "variant 0" -#~ msgstr "malairt 0" - -#~ msgctxt "dictionary variant" -#~ msgid "variant 1" -#~ msgstr "malairt 1" - -#~ msgctxt "dictionary variant" -#~ msgid "variant 2" -#~ msgstr "malairt 2" - -#~ msgctxt "dictionary variant" -#~ msgid "without accents" -#~ msgstr "gan síntí fada" - -#~ msgctxt "dictionary variant" -#~ msgid "with accents" -#~ msgstr "le síntí fada" - -#~ msgctxt "dictionary variant" -#~ msgid "with ye" -#~ msgstr "le \"ye\"" - -#~ msgctxt "dictionary variant" -#~ msgid "with yeyo" -#~ msgstr "le \"yeyo\"" - -#~ msgctxt "dictionary variant" -#~ msgid "with yo" -#~ msgstr "le \"yo\"" - -#~ msgctxt "dictionary variant" -#~ msgid "extended" -#~ msgstr "breisithe" - -#~ msgctxt "dictionary name. %1-language, %2-country and %3 variant name" -#~ msgid "%1 (%2) [%3]" -#~ msgstr "%1 (%2) [%3]" - -#~ msgctxt "dictionary name. %1-language and %2-country name" -#~ msgid "%1 (%2)" -#~ msgstr "%1 (%2)" - -#~ msgctxt "dictionary name. %1-language and %2-variant name" -#~ msgid "%1 [%2]" -#~ msgstr "%1 [%2]" - -#~ msgid "File %1 does not exist" -#~ msgstr "Níl comhad %1 ann" - -#~ msgid "Cannot open %1 for reading" -#~ msgstr "Ní féidir %1 a oscailt chun é a léamh" - -#~ msgid "Cannot create memory segment for file %1" -#~ msgstr "Ní féidir deighleán cuimhne a chruthú le haghaidh chomhad %1" - -#~ msgid "Could not read data from %1 into shm" -#~ msgstr "Níorbh fhéidir sonraí a léamh ó %1 go shm" - -#~ msgid "Only 'ReadOnly' allowed" -#~ msgstr "Ní cheadaítear ach 'ReadOnly'" - -#~ msgid "Cannot seek past eof" -#~ msgstr "Ní féidir seek a dhéanamh thar chomhadchríoch" - -#~ msgid "Library \"%1\" not found" -#~ msgstr "Leabharlann \"%1\" gan aimsiú" - -#~ msgid "No service matching the requirements was found." -#~ msgstr "Níor aimsíodh aon seirbhís a fhreagraíonn do na riachtanais." - -#~ msgid "" -#~ "The service provides no library, the Library key is missing in the ." -#~ "desktop file." -#~ msgstr "" -#~ "Ní sholáthraíonn an tseirbhís leabharlann ar bith agus tá eochair na " -#~ "leabharlainne ar iarraidh ón chomhad .desktop." - -#~ msgid "The library does not export a factory for creating components." -#~ msgstr "" -#~ "Ní easpórtálann an leabharlann monarcha a chruthaíonn comhpháirteanna." - -#~ msgid "" -#~ "The factory does not support creating components of the specified type." -#~ msgstr "" -#~ "Ní thacaíonn an mhonarcha le cruthú comhpháirteanna den chineál seo." - -#~ msgid "KLibLoader: Unknown error" -#~ msgstr "KLibLoader: Earráid anaithnid" - -#~ msgid "The library %1 does not offer a KDE 4 compatible factory." -#~ msgstr "Níl monarcha atá comhoiriúnach do KDE 4 ar fáil i leabharlann %1." - -#~ msgid "The plugin '%1' uses an incompatible KDE library (%2)." -#~ msgstr "Úsáideann breiseán '%1' leabharlann neamh-chomhoiriúnach KDE (%2)." - -#~ msgid "KDE Test Program" -#~ msgstr "Ríomhchlár Tástála KDE" - -#~ msgid "KDE Daemon" -#~ msgstr "Deamhan KDE" - -#~ msgid "KDE Daemon - triggers Sycoca database updates when needed" -#~ msgstr "" -#~ "Deamhan KDE - gníomhachtaigh nuashonruithe ar an bhunachar sonraí Sycoca " -#~ "más gá" - -#~ msgid "Check Sycoca database only once" -#~ msgstr "Seiceáil bunachar sonraí Sycoca uair amháin" - -#~ msgid "" -#~ "The key sequence '%1' is ambiguous. Use 'Configure Shortcuts'\n" -#~ "from the 'Settings' menu to solve the ambiguity.\n" -#~ "No action will be triggered." -#~ msgstr "" -#~ "Tá teaglaim eochracha '%1' débhríoch. Úsáid 'Cumraigh Aicearraí'\n" -#~ "ón roghchlár 'Socruithe' chun an débhríocht a réiteach.\n" -#~ "Ní chuirfear tús le gníomh ar bith." - -#~ msgid "Ambiguous shortcut detected" -#~ msgstr "Braitheadh aicearra athbhríoch" - -#~ msgctxt "Encodings menu" -#~ msgid "Default" -#~ msgstr "Réamhshocrú" - -#~ msgctxt "Encodings menu" -#~ msgid "Autodetect" -#~ msgstr "Braith go hUathoibríoch" - -#~ msgid "No Entries" -#~ msgstr "Gan Iontrálacha" - -#~ msgid "Clear List" -#~ msgstr "Glan an Liosta" - -#~ msgctxt "go back" -#~ msgid "&Back" -#~ msgstr "&Siar" - -#~ msgctxt "go forward" -#~ msgid "&Forward" -#~ msgstr "&Ar Aghaidh" - -#~ msgctxt "home page" -#~ msgid "&Home" -#~ msgstr "&Baile" - -#~ msgctxt "show help" -#~ msgid "&Help" -#~ msgstr "&Cabhair" - -#~ msgid "Show &Menubar" -#~ msgstr "Taispeáin an Barra &Roghchláir" - -#~ msgid "Show Menubar

      Shows the menubar again after it has been hidden

      " -#~ msgstr "" -#~ "Taispeáin an Barra Roghchláir

      Taispeáin an barra roghchláir arís tar " -#~ "éis dó a bheith i bhfolach

      " - -#~ msgid "Show St&atusbar" -#~ msgstr "Taispeáin an Barra Stád&ais" - -#~ msgid "" -#~ "Show Statusbar

      Shows the statusbar, which is the bar at the bottom of " -#~ "the window used for status information.

      " -#~ msgstr "" -#~ "Taispeáin an Barra Stádais

      Taispeáin an barra stádais, an barra ag bun " -#~ "na fuinneoige ina dtaispeántar an stádas reatha.

      " - -#~ msgid "&New" -#~ msgstr "&Nua" - -#~ msgid "Create new document" -#~ msgstr "Cruthaigh cáipéis nua" - -#~ msgid "&Open..." -#~ msgstr "&Oscail..." - -#~ msgid "Open an existing document" -#~ msgstr "Oscail cáipéis atá ann" - -# recent what? -#~ msgid "Open &Recent" -#~ msgstr "Oscail &Rudaí Deireanacha" - -#~ msgid "Open a document which was recently opened" -#~ msgstr "Oscail cáipéis a bhí oscailte le déanaí" - -#~ msgid "&Save" -#~ msgstr "&Sábháil" - -#~ msgid "Save document" -#~ msgstr "Sábháil an cháipéis" - -#~ msgid "Save &As..." -#~ msgstr "Sábháil M&ar..." - -#~ msgid "Save document under a new name" -#~ msgstr "Sábháil an cháipéis le hainm nua" - -#~ msgid "Re&vert" -#~ msgstr "Fi&ll" - -#~ msgid "Revert unsaved changes made to document" -#~ msgstr "Cealaigh na hathruithe nach bhfuil sábháilte" - -#~ msgid "&Close" -#~ msgstr "&Dún" - -#~ msgid "Close document" -#~ msgstr "Dún an cháipéis" - -#~ msgid "&Print..." -#~ msgstr "&Priontáil..." - -#~ msgid "Print document" -#~ msgstr "Priontáil an cháipéis" - -#~ msgid "Print Previe&w" -#~ msgstr "Réamhamhar&c Priontála" - -#~ msgid "Show a print preview of document" -#~ msgstr "Taispeáin réamhamharc priontála" - -#~ msgid "&Mail..." -#~ msgstr "&Ríomhphost..." - -#~ msgid "Send document by mail" -#~ msgstr "Seol an cháipéis trí ríomhphost" - -#~ msgid "&Quit" -#~ msgstr "&Scoir" - -#~ msgid "Quit application" -#~ msgstr "Scoir den fheidhmchlár" - -#~ msgid "Undo last action" -#~ msgstr "Cealaigh an gníomh is déanaí" - -#~ msgid "Re&do" -#~ msgstr "Ath&dhéan" - -#~ msgid "Redo last undone action" -#~ msgstr "Athdhéan an gníomh cealaithe" - -#~ msgid "Cu&t" -#~ msgstr "&Gearr" - -#~ msgid "Cut selection to clipboard" -#~ msgstr "Gearr an téacs roghnaithe agus sábháil sa ghearrthaisce é" - -#~ msgid "&Copy" -#~ msgstr "&Cóipeáil" - -#~ msgid "Copy selection to clipboard" -#~ msgstr "Sábháil an téacs roghnaithe sa ghearrthaisce" - -#~ msgid "&Paste" -#~ msgstr "&Greamaigh" - -#~ msgid "Paste clipboard content" -#~ msgstr "Greamaigh inneachar na gearrthaisce" - -#~ msgid "C&lear" -#~ msgstr "G&lan" - -#~ msgid "Select &All" -#~ msgstr "Roghnaigh &Uile" - -#~ msgid "Dese&lect" -#~ msgstr "Díro&ghnaigh" - -#~ msgid "&Find..." -#~ msgstr "&Aimsigh..." - -#~ msgid "Find &Next" -#~ msgstr "An Chéad Chea&nn Eile" - -#~ msgid "Find Pre&vious" -#~ msgstr "&Roimhe Seo" - -#~ msgid "&Replace..." -#~ msgstr "&Ionadaigh..." - -#~ msgid "&Actual Size" -#~ msgstr "&Fíormhéid" - -#~ msgid "View document at its actual size" -#~ msgstr "Taispeáin fíormhéid na cáipéise" - -#~ msgid "&Fit to Page" -#~ msgstr "&Laghdaigh go dtí an Leathanach" - -#~ msgid "Zoom to fit page in window" -#~ msgstr "Cuir in oiriúint do mhéid na fuinneoige" - -#~ msgid "Fit to Page &Width" -#~ msgstr "&Laghdaigh go leithead leathanaigh" - -#~ msgid "Zoom to fit page width in window" -#~ msgstr "Cuir in oiriúint do leithead an leathanaigh" - -#~ msgid "Fit to Page &Height" -#~ msgstr "Laghdaigh go &hairde leathanaigh" - -#~ msgid "Zoom to fit page height in window" -#~ msgstr "Cuir in oiriúint d'airde an leathanaigh" - -#~ msgid "Zoom &In" -#~ msgstr "Súmáil &Isteach" - -#~ msgid "Zoom &Out" -#~ msgstr "Súmáil &Amach" - -#~ msgid "&Zoom..." -#~ msgstr "&Súmáil..." - -#~ msgid "Select zoom level" -#~ msgstr "Roghnaigh leibhéal súmála" - -#~ msgid "&Redisplay" -#~ msgstr "A&taispeáin" - -#~ msgid "Redisplay document" -#~ msgstr "Ataispeáin an cháipéis" - -#~ msgid "&Up" -#~ msgstr "S&uas" - -#~ msgid "Go up" -#~ msgstr "Téigh suas" - -#~ msgid "&Previous Page" -#~ msgstr "Leathanach &Roimhe" - -#~ msgid "Go to previous page" -#~ msgstr "Go dtí an leathanach roimhe seo" - -#~ msgid "&Next Page" -#~ msgstr "A&n Chéad Leathanach Eile" - -#~ msgid "Go to next page" -#~ msgstr "Go dtí an chéad leathanach eile" - -#~ msgid "&Go To..." -#~ msgstr "&Téigh go..." - -#~ msgid "&Go to Page..." -#~ msgstr "Téigh go &Leathanach..." - -#~ msgid "&Go to Line..." -#~ msgstr "Téigh go Lí&ne..." - -#~ msgid "&First Page" -#~ msgstr "An &Chéad Leathanach" - -#~ msgid "Go to first page" -#~ msgstr "Téigh go dtí an chéad leathanach" - -#~ msgid "&Last Page" -#~ msgstr "An Leathanach &Deireanach" - -#~ msgid "Go to last page" -#~ msgstr "Téigh go dtí an leathanach deiridh" - -#~ msgid "Go back in document" -#~ msgstr "Siar sa cháipéis" - -#~ msgid "&Forward" -#~ msgstr "&Ar Aghaidh" - -#~ msgid "Go forward in document" -#~ msgstr "Ar aghaidh sa cháipéis" - -#~ msgid "&Add Bookmark" -#~ msgstr "Cruthaigh Leabharmh&arc" - -#~ msgid "&Edit Bookmarks..." -#~ msgstr "Cuir Leabharmharcanna in &Eagar..." - -#~ msgid "&Spelling..." -#~ msgstr "&Litriú..." - -#~ msgid "Check spelling in document" -#~ msgstr "Ceartaigh litriú sa cháipéis" - -#~ msgid "Show or hide menubar" -#~ msgstr "Taispeáin nó folaigh an barra roghchláir" - -#~ msgid "Show &Toolbar" -#~ msgstr "Taispeáin an Barra &Uirlisí" - -#~ msgid "Show or hide toolbar" -#~ msgstr "Taispeáin nó folaigh an barra uirlisí" - -#~ msgid "Show or hide statusbar" -#~ msgstr "Taispeáin nó folaigh an barra stádais" - -#~ msgid "F&ull Screen Mode" -#~ msgstr "Mód Lán&scáileáin" - -#~ msgid "&Save Settings" -#~ msgstr "&Sábháil na Socruithe" - -#~ msgid "Configure S&hortcuts..." -#~ msgstr "C&umraigh Aicearraí..." - -#~ msgid "&Configure %1..." -#~ msgstr "&Cumraigh %1..." - -#~ msgid "Configure Tool&bars..." -#~ msgstr "Cumraigh &Barraí Uirlisí..." - -#~ msgid "Configure &Notifications..." -#~ msgstr "C&umraigh Fógairt..." - -#~ msgid "%1 &Handbook" -#~ msgstr "&Lámhleabhar %1" - -#~ msgid "What's &This?" -#~ msgstr "Cad É &Seo?" - -#~ msgid "Tip of the &Day" -#~ msgstr "Leid an &Lae" - -#~ msgid "&Report Bug..." -#~ msgstr "&Seol tuairisc ar fhabht..." - -#~ msgid "Switch Application &Language..." -#~ msgstr "Athraigh &Teanga an Fheidhmchláir..." - -#~ msgid "&About %1" -#~ msgstr "&Maidir le %1" - -#~ msgid "About &KDE" -#~ msgstr "Maidir le &KDE" - -#~ msgctxt "@action:inmenu" -#~ msgid "Exit F&ull Screen Mode" -#~ msgstr "Sc&oir den Mhód Lánscáileáin" - -#~ msgctxt "@action:intoolbar" -#~ msgid "Exit Full Screen" -#~ msgstr "Scoir den Lánscáileán" - -#~ msgctxt "@info:tooltip" -#~ msgid "Exit full screen mode" -#~ msgstr "Scoir den mhód lánscáileáin" - -#~ msgctxt "@action:inmenu" -#~ msgid "F&ull Screen Mode" -#~ msgstr "Mód Lán&scáileáin" - -#~ msgctxt "@action:intoolbar" -#~ msgid "Full Screen" -#~ msgstr "Lánscáileán" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display the window in full screen" -#~ msgstr "Taispeáin an fhuinneog sa mhód lánscáileáin" - -#~ msgctxt "Custom color" -#~ msgid "Custom..." -#~ msgstr "Saincheap..." - -#~ msgctxt "palette name" -#~ msgid "* Recent Colors *" -#~ msgstr "* Dathanna is Deireanaí *" - -#~ msgctxt "palette name" -#~ msgid "* Custom Colors *" -#~ msgstr "* Dathanna Saincheaptha *" - -#~ msgctxt "palette name" -#~ msgid "Forty Colors" -#~ msgstr "Daichead Dath" - -#~ msgctxt "palette name" -#~ msgid "Oxygen Colors" -#~ msgstr "Dathanna Oxygen" - -#~ msgctxt "palette name" -#~ msgid "Rainbow Colors" -#~ msgstr "Dathanna an Bhogha Cheatha" - -#~ msgctxt "palette name" -#~ msgid "Royal Colors" -#~ msgstr "Dathanna Ríoga" - -#~ msgctxt "palette name" -#~ msgid "Web Colors" -#~ msgstr "Dathanna Gréasáin" - -#~ msgid "Named Colors" -#~ msgstr "Dathanna Ainmnithe" - -#~ msgctxt "" -#~ "%1 is the number of paths, %2 is the list of paths (with newlines between " -#~ "them)" -#~ msgid "" -#~ "Unable to read X11 RGB color strings. The following file location was " -#~ "examined:\n" -#~ "%2" -#~ msgid_plural "" -#~ "Unable to read X11 RGB color strings. The following file locations were " -#~ "examined:\n" -#~ "%2" -#~ msgstr[0] "" -#~ "Ní féidir na teaghráin datha RGB ó X11 a léamh. Scrúdaíodh an suíomh " -#~ "comhaid seo a leanas:\n" -#~ "%2" -#~ msgstr[1] "" -#~ "Ní féidir na teaghráin datha RGB ó X11 a léamh. Scrúdaíodh na suímh " -#~ "chomhaid seo a leanas:\n" -#~ "%2" -#~ msgstr[2] "" -#~ "Ní féidir na teaghráin datha RGB ó X11 a léamh. Scrúdaíodh na suímh " -#~ "chomhaid seo a leanas:\n" -#~ "%2" -#~ msgstr[3] "" -#~ "Ní féidir na teaghráin datha RGB ó X11 a léamh. Scrúdaíodh na suímh " -#~ "chomhaid seo a leanas:\n" -#~ "%2" -#~ msgstr[4] "" -#~ "Ní féidir na teaghráin datha RGB ó X11 a léamh. Scrúdaíodh na suímh " -#~ "chomhaid seo a leanas:\n" -#~ "%2" - -#~ msgid "Select Color" -#~ msgstr "Roghnaigh Dath" - -#~ msgid "Hue:" -#~ msgstr "Lí:" - -#~ msgctxt "The angular degree unit (for hue)" -#~ msgid "°" -#~ msgstr "°" - -#~ msgid "Saturation:" -#~ msgstr "Sáithiú:" - -#~ msgctxt "This is the V of HSV" -#~ msgid "Value:" -#~ msgstr "Luach:" - -#~ msgid "Red:" -#~ msgstr "Dearg:" - -#~ msgid "Green:" -#~ msgstr "Uaine:" - -#~ msgid "Blue:" -#~ msgstr "Gorm:" - -#~ msgid "Alpha:" -#~ msgstr "Alfa:" - -#~ msgid "&Add to Custom Colors" -#~ msgstr "&Cuir leis na Dathanna Saincheaptha" - -#~ msgid "Name:" -#~ msgstr "Ainm:" - -#~ msgid "HTML:" -#~ msgstr "HTML:" - -#~ msgid "Default color" -#~ msgstr "Dath réamhshocraithe" - -#~ msgid "-default-" -#~ msgstr "-réamhshocrú-" - -#~ msgid "-unnamed-" -#~ msgstr "-gan ainm-" - -#~ msgid "" -#~ "No information available.
      The supplied KAboutData object does " -#~ "not exist.
      " -#~ msgstr "" -#~ "Níl aon eolas ar fáil.
      Níl an réad sonraithe KAboutData ann.
      " - -#~ msgid "" -#~ "%1
      Version %2
       " -#~ msgstr "" -#~ "%1
      Leagan %2
       " - -#~ msgctxt "" -#~ "Program name, version and KDE platform version; do not translate " -#~ "'Development Platform'" -#~ msgid "" -#~ "%1
      Version %2
      Using KDE " -#~ "Development Platform %3" -#~ msgstr "" -#~ "%1
      Leagan %2
      Ardán " -#~ "Forbartha KDE %3" - -#~ msgid "License: %1" -#~ msgstr "Ceadúnas: %1" - -#~ msgid "License Agreement" -#~ msgstr "Comhaontú um Cheadúnas" - -#~ msgctxt "Action to send an email to a contributor" -#~ msgid "Email contributor" -#~ msgstr "Seol ríomhphost chuig rannpháirtí" - -#~ msgid "Visit contributor's homepage" -#~ msgstr "Féach ar leathanach baile an rannpháirtí" - -#~ msgctxt "Action to send an email to a contributor" -#~ msgid "" -#~ "Email contributor\n" -#~ "%1" -#~ msgstr "" -#~ "Seol ríomhphost chuig rannpháirtí\n" -#~ "%1" - -#~ msgid "" -#~ "Visit contributor's homepage\n" -#~ "%1" -#~ msgstr "" -#~ "Féach ar leathanach baile an rannpháirtí\n" -#~ "%1" - -#~ msgid "" -#~ "Visit contributor's profile on %1\n" -#~ "%2" -#~ msgstr "" -#~ "Féach ar phróifíl an rannpháirtí ar %1\n" -#~ "%2" - -#~ msgid "" -#~ "Visit contributor's page\n" -#~ "%1" -#~ msgstr "" -#~ "Féach ar leathanach an rannpháirtí\n" -#~ "%1" - -#~ msgid "" -#~ "Visit contributor's blog\n" -#~ "%1" -#~ msgstr "" -#~ "Féach ar bhlag an rannpháirtí\n" -#~ "%1" - -#~ msgctxt "@item Contributor name in about dialog." -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "City, Country" -#~ msgid "%1, %2" -#~ msgstr "%1, %2" - -#~ msgctxt "A generic social network or homepage link of an unlisted type." -#~ msgid "Other" -#~ msgstr "Eile" - -#~ msgctxt "A type of link." -#~ msgid "Blog" -#~ msgstr "Blag" - -#~ msgctxt "A type of link." -#~ msgid "Homepage" -#~ msgstr "Leathanach Baile" - -#~ msgid "About KDE" -#~ msgstr "Maidir le KDE" - -#~ msgid "" -#~ "KDE - Be Free!
      Platform Version %1" -#~ msgstr "" -#~ "KDE - Bí Saor!
      Leagan Ardáin %1" - -#~ msgid "" -#~ "KDE is a world-wide network of software engineers, artists, " -#~ "writers, translators and facilitators who are committed to Free Software development. This community has created hundreds " -#~ "of Free Software applications as part of the KDE Development Platform and " -#~ "KDE Software Distribution.

      KDE is a cooperative enterprise in " -#~ "which no single entity controls the efforts or products of KDE to the " -#~ "exclusion of others. Everyone is welcome to join and contribute to KDE, " -#~ "including you.

      Visit %2 for more " -#~ "information about the KDE community and the software we produce." -#~ msgstr "" -#~ "Is éard atá in KDE ná líonra domhanda d'innealtóirí " -#~ "bogearraí, ealaíontóirí, scríbhneoirí, aistritheoirí, agus cúntóirí atá " -#~ "tiomanta do Shaorbhogearraí. Tá na céadta feidhmchlár " -#~ "saor cruthaithe ag an bpobal seo, mar chuid den Ardán Forbartha KDE agus " -#~ "Dáileadh Bogearraí KDE.

      Is comharchumann é KDE agus níl aon " -#~ "ghrúpa ná comhlacht i gceannas ar an obair atá idir lámha againn. Fáilte " -#~ "roimh chách mar chuiditheoir, tusa féin san áireamh.

      Tabhair " -#~ "cuairt ar %2 chun tuilleadh eolais faoin chomhphobal " -#~ "agus faoinár mbogearraí a fháil." - -#~ msgid "" -#~ "Software can always be improved, and the KDE team is ready to do " -#~ "so. However, you - the user - must tell us when something does not work " -#~ "as expected or could be done better.

      KDE has a bug tracking " -#~ "system. Visit %1 or use the \"Report Bug...\" dialog " -#~ "from the \"Help\" menu to report bugs.

      If you have a " -#~ "suggestion for improvement then you are welcome to use the bug tracking " -#~ "system to register your wish. Make sure you use the severity called " -#~ "\"Wishlist\"." -#~ msgstr "" -#~ "Is féidir bogearraí a fheabhsú i gcónaí, agus tá an fhoireann KDE " -#~ "réidh leis an dúshlán seo. Ach, is leatsa - an t-úsáideoir - an jab is " -#~ "tábhachtaí: abair linn nuair nach bhfuil rud éigin ag obair mar is ceart " -#~ "nó más féidir rud éigin a fheabhsú.

      Tá córas rianaithe " -#~ "fabhtanna ag KDE. Déan cuairt ar %1 nó bain úsáid as " -#~ "an dialóg \"Seol tuairisc ar fhabht...\" ón roghchlár \"Cabhair\".

      Dá mbeadh aon fheabhsúchán le moladh agat, bheadh fáilte romhat é " -#~ "a chur in iúl dúinn tríd an chóras rianaithe fabhtanna. Bain úsáid as an " -#~ "leibhéal déine \"Wishlist\"." - -#~ msgid "" -#~ "You do not have to be a software developer to be a member of the " -#~ "KDE team. You can join the national teams that translate program " -#~ "interfaces. You can provide graphics, themes, sounds, and improved " -#~ "documentation. You decide!

      Visit %1 for " -#~ "information on some projects in which you can participate.

      If " -#~ "you need more information or documentation, then a visit to %2 will provide you with what you need." -#~ msgstr "" -#~ "Ní gá duit a bheith i d'fhorbróir bogearraí chun cabhrú le KDE. Má " -#~ "tá Gaeilge mhaith agat, cláraigh leis an bhfoireann aistriúcháin agus " -#~ "cabhraigh linn an comhéadan KDE a aistriú. Nó is féidir leat grafaic, " -#~ "téamaí, fuaimeanna, agus doiciméadú a sholáthar. Is leatsa an rogha!

      Tabhair cuairt ar %1 chun tuilleadh eolais a " -#~ "fháil maidir le tionscadail eile ar féidir leat cabhrú leo.

      Má " -#~ "tá tuilleadh eolais nó doiciméadú de dhíth ort, tabhair cuairt ar %2 agus aimseoidh tú an rud atá de dhíth ort." - -#~ msgid "" -#~ "KDE software is and will always be available free of charge, " -#~ "however creating it is not free.

      To support development the " -#~ "KDE community has formed the KDE e.V., a non-profit organization legally " -#~ "founded in Germany. KDE e.V. represents the KDE community in legal and " -#~ "financial matters. See %1 for information on KDE e.V." -#~ "

      KDE benefits from many kinds of contributions, including " -#~ "financial. We use the funds to reimburse members and others for expenses " -#~ "they incur when contributing. Further funds are used for legal support " -#~ "and organizing conferences and meetings.

      We would like to " -#~ "encourage you to support our efforts with a financial donation, using one " -#~ "of the ways described at %2.

      Thank you very " -#~ "much in advance for your support." -#~ msgstr "" -#~ "Tá KDE ar fáil saor in aisce, agus beidh sé i gcónaí, ach tá " -#~ "costais a ghabhann lena fhorbairt.

      Chun an próiseas forbartha " -#~ "a thacú, bhunaigh an comhphobal KDE eagraíocht neamhbhrabúis darb ainm " -#~ "'KDE e.V.' san Ghearmáin. Déanann KDE e.V. ionadaíocht ar son an " -#~ "tionscadail i gcúrsaí dlí agus airgeadais. Féach ar %1 " -#~ "chun tuilleadh eolais a fháil faoi KDE e.V.

      Baineann KDE leas " -#~ "as cabhair de gach cineál, cabhair airgid san áireamh. Úsáidimid formhór " -#~ "an airgid chun baill na bhfoirne a aisíoc as na costais a thabhaíonn siad " -#~ "le linn a gcuid oibre ar KDE. Chomh maith leis sin, úsáidtear airgead le " -#~ "haghaidh tacaíocht dhlíthiúil agus chun comhdhálacha agus cruinnithe a " -#~ "eagrú.

      Fiafraímid díot KDE a thacú le deontas airgid, trí " -#~ "cheann de na bealaí a ndéantar cur síos orthu ag %2." -#~ "

      Go raibh míle maith agat as do chabhair!" - -#~ msgctxt "About KDE" -#~ msgid "&About" -#~ msgstr "&Maidir le KDE" - -#~ msgid "&Report Bugs or Wishes" -#~ msgstr "Déan &Tuairisc ar Fhabhtanna nó ar Mhianta" - -#~ msgid "&Join KDE" -#~ msgstr "Bí i do &bhall d'fhoireann KDE" - -#~ msgid "&Support KDE" -#~ msgstr "Tabhair &Tacaíocht do KDE" - -#~ msgctxt "Opposite to Back" -#~ msgid "Next" -#~ msgstr "Ar Aghaidh" - -#~ msgid "Finish" -#~ msgstr "Críochnaigh" - -#~ msgid "Submit Bug Report" -#~ msgstr "Seol Tuairisc ar Fhabht" - -#~ msgid "" -#~ "Your email address. If incorrect, use the Configure Email button to " -#~ "change it" -#~ msgstr "" -#~ "Do sheoladh ríomhphoist. Má tá sé mícheart, úsáid an cnaipe \"Cumraigh " -#~ "Ríomhphost\" chun é a athrú." - -#~ msgctxt "Email sender address" -#~ msgid "From:" -#~ msgstr "Ó:" - -#~ msgid "Configure Email..." -#~ msgstr "Cumraigh Ríomhphost..." - -#~ msgid "The email address this bug report is sent to." -#~ msgstr "An seoladh ríomhphoist a seolfar an tuairisc fhabht seo chuige." - -#~ msgctxt "Email receiver address" -#~ msgid "To:" -#~ msgstr "Go:" - -#~ msgid "&Send" -#~ msgstr "&Seol" - -#~ msgid "Send bug report." -#~ msgstr "Seol tuairisc ar fhabht." - -#~ msgid "Send this bug report to %1." -#~ msgstr "Seol an tuairisc fhabht seo chuig %1." - -#~ msgid "" -#~ "The application for which you wish to submit a bug report - if incorrect, " -#~ "please use the Report Bug menu item of the correct application" -#~ msgstr "" -#~ "An feidhmchlár ar mian leat tuairisc fhabht a sheoladh faoi - má tá sé " -#~ "seo mícheart, bain úsáid as an rogha \"Seol tuairisc ar fhabht\" i " -#~ "roghchlár an fheidhmchláir chirt" - -#~ msgid "Application: " -#~ msgstr "Feidhmchlár:" - -#~ msgid "" -#~ "The version of this application - please make sure that no newer version " -#~ "is available before sending a bug report" -#~ msgstr "" -#~ "Leagan an fheidhmchláir - bí cinnte, le do thoil, nach bhfuil leagan níos " -#~ "nuaí ar fáil roimh tuairisc fhabht a sheoladh." - -#~ msgid "Version:" -#~ msgstr "Leagan:" - -#~ msgid "no version set (programmer error)" -#~ msgstr "níl leagan sonraithe (earráid de chuid an ríomhchláraitheora)" - -#~ msgid "OS:" -#~ msgstr "Córas:" - -#~ msgid "Compiler:" -#~ msgstr "Tiomsaitheoir:" - -#~ msgid "Se&verity" -#~ msgstr "&Géire" - -#~ msgid "Critical" -#~ msgstr "Criticiúil" - -#~ msgid "Grave" -#~ msgstr "Tromchúiseach" - -#~ msgctxt "normal severity" -#~ msgid "Normal" -#~ msgstr "Gnáthghéire" - -#~ msgid "Wishlist" -#~ msgstr "Liosta Mianta" - -#~ msgid "Translation" -#~ msgstr "Aistriúchán" - -#~ msgid "S&ubject: " -#~ msgstr "Á&bhar: " - -#~ msgid "" -#~ "Enter the text (in English if possible) that you wish to submit for the " -#~ "bug report.\n" -#~ "If you press \"Send\", a mail message will be sent to the maintainer of " -#~ "this program.\n" -#~ msgstr "" -#~ "Scríobh an téacs (i mBéarla más féidir) a theastaíonn uait a chur sa " -#~ "tuairisc fhabht.\n" -#~ "Má chliceálann tú \"Seol\" cuirfear teachtaireacht ríomhphoist ar aghaidh " -#~ "go dtí cothaitheoir an chláir seo.\n" - -#~ msgid "" -#~ "To submit a bug report, click on the button below. This will open a " -#~ "web browser window on http://bugs.kde." -#~ "org where you will find a form to fill in. The information displayed " -#~ "above will be transferred to that server." -#~ msgstr "" -#~ "Chun tuairisc ar fhabht a sheoladh, cliceáil an cnaipe thíos. " -#~ "Osclófar an leathanach http://bugs.kde." -#~ "org i mbrabhsálaí, agus feicfidh tú foirm le líonadh isteach. " -#~ "Aistreofar na mionsonraí a fheiceann tú thuas go dtí an freastalaí sin." - -#~ msgid "&Launch Bug Report Wizard" -#~ msgstr "&Tosaigh an Treoraí Fabhtanna" - -#~ msgctxt "unknown program name" -#~ msgid "unknown" -#~ msgstr "anaithnid" - -#~ msgid "" -#~ "You must specify both a subject and a description before the report can " -#~ "be sent." -#~ msgstr "" -#~ "Ní mór duit ábhar agus cur síos araon a shonrú sular féidir an tuairisc a " -#~ "sheoladh." - -#~ msgid "" -#~ "

      You chose the severity Critical. Please note that this severity " -#~ "is intended only for bugs that:

      • break unrelated software on " -#~ "the system (or the whole system)
      • cause serious data loss
      • introduce a security hole on the system where the affected package " -#~ "is installed
      \n" -#~ "

      Does the bug you are reporting cause any of the above damage? If it " -#~ "does not, please select a lower severity. Thank you.

      " -#~ msgstr "" -#~ "

      Roghnaigh tú géire Chriticiúil. Tabhair faoi deara go bhfuil an " -#~ "leibhéal beartaithe le haghaidh fabhtanna

      • a bhriseann " -#~ "bogearraí neamhghaolmhara (nó a bhriseann an córas ar fad)
      • a " -#~ "scriosann sonraí tábhachtacha
      • a dhéanann bearna shlándála sa " -#~ "chóras ar a bhfuil an pacáiste suiteáilte
      \n" -#~ "

      An ndéanann d'fhabht dochar de na cineálacha seo? Mura ndéanann, " -#~ "roghnaigh géire níos ísle. Go raibh maith agat.

      " - -#~ msgid "" -#~ "

      You chose the severity Grave. Please note that this severity is " -#~ "intended only for bugs that:

      • make the package in question " -#~ "unusable or mostly so
      • cause data loss
      • introduce a " -#~ "security hole allowing access to the accounts of users who use the " -#~ "affected package
      \n" -#~ "

      Does the bug you are reporting cause any of the above damage? If it " -#~ "does not, please select a lower severity. Thank you.

      " -#~ msgstr "" -#~ "

      Roghnaigh tú géire Thromchúiseach. Tabhair faoi deara go bhfuil " -#~ "an leibhéal beartaithe le haghaidh fabhtanna

      • nach bhfuil an " -#~ "pacáiste inúsáidte leo (nó beagnach)
      • a scriosann sonraí " -#~ "tábhachtacha
      • a dhéanann bearna shlándála sa chóras ar a bhfuil an " -#~ "pacáiste suiteáilte
      \n" -#~ "

      An ndéanann d'fhabht dochar de na cineálacha seo? Mura ndéanann, " -#~ "roghnaigh géire níos ísle. Go raibh maith agat.

      " - -#~ msgid "" -#~ "Unable to send the bug report.\n" -#~ "Please submit a bug report manually....\n" -#~ "See http://bugs.kde.org/ for instructions." -#~ msgstr "" -#~ "Ní féidir an tuairisc fhabht a sheoladh.\n" -#~ "Seol an tuairisc tú féin, le do thoil.\n" -#~ "Féach ar http://bugs.kde.org/ le haghaidh treoracha." - -#~ msgid "Bug report sent, thank you for your input." -#~ msgstr "Tuairisc fhabht seolta; go raibh maith agat as d'ionchur." - -#~ msgid "" -#~ "Close and discard\n" -#~ "edited message?" -#~ msgstr "" -#~ "Dún an teachtaireacht eagraithe\n" -#~ "gan sábháil?" - -#~ msgid "Close Message" -#~ msgstr "Dún an Teachtaireacht" - -#~ msgid "Configure" -#~ msgstr "Cumraigh" - -#~ msgid "Job" -#~ msgstr "Jab" - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# keycap, leave as is -#~ msgid "Job Control" -#~ msgstr "Rialú Jabanna" - -#~ msgid "Scheduled printing:" -#~ msgstr "Priontáil sceidealta:" - -#~ msgid "Billing information:" -#~ msgstr "Faisnéis bhilleála:" - -#~ msgid "Job priority:" -#~ msgstr "Tosaíocht an jab:" - -#~ msgid "Job Options" -#~ msgstr "Roghanna Jab" - -#~ msgid "Option" -#~ msgstr "Rogha" - -#~ msgid "Value" -#~ msgstr "Luach" - -#~ msgid "Print Immediately" -#~ msgstr "Priontáil Láithreach" - -#~ msgid "Hold Indefinitely" -#~ msgstr "Coinnigh Gan Chríoch" - -#~ msgid "Day (06:00 to 17:59)" -#~ msgstr "Lá (06:00 go 17:59)" - -#~ msgid "Night (18:00 to 05:59)" -#~ msgstr "Oíche (18:00 go 05:59)" - -#~ msgid "Second Shift (16:00 to 23:59)" -#~ msgstr "An Dara Seal (16:00 go 23:59)" - -#~ msgid "Third Shift (00:00 to 07:59)" -#~ msgstr "An Tríú Seal (00:00 go 07:59)" - -#~ msgid "Weekend (Saturday to Sunday)" -#~ msgstr "Deireadh Seachtaine (Dé Sathairn go Dé Domhnaigh)" - -#~ msgid "Specific Time" -#~ msgstr "Am Áirithe" - -# OK -#~ msgid "Pages" -#~ msgstr "Leathanaigh" - -#~ msgid "Pages Per Sheet" -#~ msgstr "Leathanaigh Sa Bhileog" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "6" -#~ msgstr "6" - -#~ msgid "2" -#~ msgstr "2" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "4" -#~ msgstr "4" - -#~ msgid "16" -#~ msgstr "16" - -#~ msgid "Banner Pages" -#~ msgstr "Leathanaigh Mheirge" - -#~ msgctxt "Banner page at start" -#~ msgid "Start" -#~ msgstr "Tús" - -#~ msgctxt "Banner page at end" -#~ msgid "End" -#~ msgstr "Deireadh" - -#~ msgid "Page Label" -#~ msgstr "Lipéad an Leathanaigh" - -#~ msgid "Page Border" -#~ msgstr "Imlíne an Leathanaigh" - -#~ msgid "Mirror Pages" -#~ msgstr "Scáthánaigh Leathanaigh" - -#~ msgid "Mirror pages along vertical axis" -#~ msgstr "Scáthánaigh leathanaigh ar ais ingearach" - -#~ msgid "Left to Right, Top to Bottom" -#~ msgstr "Clé go Deas, Barr go Bun" - -#~ msgid "Left to Right, Bottom to Top" -#~ msgstr "Clé go Deas, Bun go Barr" - -#~ msgid "Right to Left, Bottom to Top" -#~ msgstr "Deas go Clé, Bun go Barr" - -#~ msgid "Right to Left, Top to Bottom" -#~ msgstr "Deas go Clé, Barr go Bun" - -#~ msgid "Bottom to Top, Left to Right" -#~ msgstr "Bun go Barr, Clé go Deas" - -#~ msgid "Bottom to Top, Right to Left" -#~ msgstr "Bun go Barr, Deas go Clé" - -#~ msgid "Top to Bottom, Left to Right" -#~ msgstr "Barr go Bun, Clé go Deas" - -#~ msgid "Top to Bottom, Right to Left" -#~ msgstr "Barr go Bun, Deas go Clé" - -#~ msgctxt "No border line" -#~ msgid "None" -#~ msgstr "Gan Imlíne" - -#~ msgid "Single Line" -#~ msgstr "Líne Amháin" - -#~ msgid "Single Thick Line" -#~ msgstr "Líne Thiubh Aonair" - -#~ msgid "Double Line" -#~ msgstr "Líne Dhúbailte" - -#~ msgid "Double Thick Line" -#~ msgstr "Líne Thiubh Dhúbailte" - -#~ msgctxt "Banner page" -#~ msgid "None" -#~ msgstr "Gan Leathanach Meirge" - -#~ msgctxt "Banner page" -#~ msgid "Standard" -#~ msgstr "Caighdeánach" - -#~ msgctxt "Banner page" -#~ msgid "Unclassified" -#~ msgstr "Gan cheilt" - -#~ msgctxt "Banner page" -#~ msgid "Confidential" -#~ msgstr "Faoi Rún" - -#~ msgctxt "Banner page" -#~ msgid "Classified" -#~ msgstr "Rúnda" - -#~ msgctxt "Banner page" -#~ msgid "Secret" -#~ msgstr "Rúnda" - -#~ msgctxt "Banner page" -#~ msgid "Top Secret" -#~ msgstr "An-Rúnda" - -# OK -#~ msgid "All Pages" -#~ msgstr "Gach Leathanach" - -#~ msgid "Odd Pages" -#~ msgstr "Leathanaigh Chorra" - -#~ msgid "Even Pages" -#~ msgstr "Leathanaigh Chothroma" - -#~ msgid "Page Set" -#~ msgstr "Tacar Leathanach" - -#~ msgctxt "@title:window" -#~ msgid "Print" -#~ msgstr "Priontáil" - -#~ msgid "&Try" -#~ msgstr "&Trialaigh" - -#~ msgid "modified" -#~ msgstr "athraithe" - -#~ msgctxt "Document/application separator in titlebar" -#~ msgid " – " -#~ msgstr " – " - -#~ msgid "&Details" -#~ msgstr "&Mionsonraí" - -#~ msgid "Get help..." -#~ msgstr "Faigh cabhair..." - -#~ msgid "--- separator ---" -#~ msgstr "--- deighilteoir ---" - -#~ msgid "Change Text" -#~ msgstr "Athraigh Téacs" - -#~ msgid "Icon te&xt:" -#~ msgstr "Téa&cs an deilbhín:" - -#~ msgid "&Hide text when toolbar shows text alongside icons" -#~ msgstr "" -#~ "&Cuir téacs i bhfolach nuair a thaispeánann an barra uirlisí téacs in " -#~ "aice le deilbhíní" - -#~ msgid "Configure Toolbars" -#~ msgstr "Cumraigh Barraí Uirlisí" - -#~ msgid "" -#~ "Do you really want to reset all toolbars of this application to their " -#~ "default? The changes will be applied immediately." -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mian leat gach barra uirlisí san fheidhmchlár seo " -#~ "a athshocrú go dtí a luach réamhshocraithe? Cuirfear na hathruithe i " -#~ "bhfeidhm láithreach." - -#~ msgid "Reset Toolbars" -#~ msgstr "Athshocraigh Barraí Uirlisí" - -#~ msgid "Reset" -#~ msgstr "Athshocraigh" - -#~ msgid "&Toolbar:" -#~ msgstr "&Barra Uirlisí:" - -#~ msgid "A&vailable actions:" -#~ msgstr "Gnío&mhartha ar fáil:" - -#~ msgid "Filter" -#~ msgstr "Scagaire" - -#~ msgid "Curr&ent actions:" -#~ msgstr "Gníomhartha r&eatha:" - -#~ msgid "Change &Icon..." -#~ msgstr "Athraigh &Deilbhín..." - -#~ msgid "Change Te&xt..." -#~ msgstr "Athraigh &Téacs..." - -#~ msgctxt "@item:intable Action name in toolbar editor" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "" -#~ "This element will be replaced with all the elements of an embedded " -#~ "component." -#~ msgstr "" -#~ "Cuirfear gach eilimint de chomhpháirt leabaithe in ionad na heiliminte " -#~ "seo." - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ "This is a dynamic list of actions. You can move it, but if you remove it " -#~ "you will not be able to re-add it." -#~ msgstr "" -#~ "Liosta dinimiciúil gníomhartha é seo. Is féidir é a bhogadh, ach má " -#~ "bhaineann tú amach é, ní bheidh tú in ann é a chur ar ais arís." - -#~ msgid "ActionList: %1" -#~ msgstr "Liosta Gníomhartha: %1" - -#~ msgctxt "@label Action tooltip in toolbar editor, below the action list" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Change Icon" -#~ msgstr "Athraigh Deilbhín" - -#~ msgid "Manage Link" -#~ msgstr "Bainistigh Nasc" - -#~ msgid "Link Text:" -#~ msgstr "Téacs an Naisc:" - -#~ msgid "Link URL:" -#~ msgstr "URL an Naisc:" - -#~ msgctxt "@action:button filter-yes" -#~ msgid "%1" -#~ msgstr "%1|/|$[get-answer yes]" - -#~ msgctxt "@action:button filter-no" -#~ msgid "%1" -#~ msgstr "%1|/|$[get-answer no]" - -#~ msgctxt "@action:button filter-continue" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@action:button filter-cancel" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@action:button post-filter" -#~ msgid "." -#~ msgstr ".|/|$[reset-answers]" - -#~ msgid "Details" -#~ msgstr "Mionsonraí" - -#~ msgid "Question" -#~ msgstr "Ceist" - -#~ msgid "Do not ask again" -#~ msgstr "Ná fiafraigh díom arís" - -#~ msgid "Warning" -#~ msgstr "Rabhadh" - -#~ msgid "Error" -#~ msgstr "Earráid" - -#~ msgid "Sorry" -#~ msgstr "Tá brón orm" - -#~ msgid "Information" -#~ msgstr "Eolas" - -#~ msgid "Do not show this message again" -#~ msgstr "Ná taispeáin an teachtaireacht seo arís" - -#~ msgid "Password:" -#~ msgstr "Focal Faire:" - -#~ msgid "Password" -#~ msgstr "Focal Faire" - -#~ msgid "Supply a username and password below." -#~ msgstr "Tabhair ainm úsáideora agus focal faire thíos." - -#, fuzzy -#~| msgid "&Keep password" -#~ msgid "Use this password:" -#~ msgstr "&Coimeád an focal faire" - -#~ msgid "Username:" -#~ msgstr "Ainm úsáideora:" - -#~ msgid "Domain:" -#~ msgstr "Fearann:" - -#~ msgid "Remember password" -#~ msgstr "Meabhraigh an focal faire" - -#~ msgid "Select Region of Image" -#~ msgstr "Roghnaigh Réigiún Íomhá" - -#~ msgid "Please click and drag on the image to select the region of interest:" -#~ msgstr "Cliceáil agus tarraing ar an íomhá chun réigiún a roghnú:" - -#~ msgid "Default:" -#~ msgstr "Réamhshocrú:" - -#~ msgctxt "No shortcut defined" -#~ msgid "None" -#~ msgstr "Gan aicearra" - -#~ msgid "Custom:" -#~ msgstr "Saincheaptha:" - -#~ msgid "Shortcut Schemes" -#~ msgstr "Scéimeanna Aicearraí" - -#~ msgid "Current scheme:" -#~ msgstr "Scéim reatha:" - -#~ msgid "New..." -#~ msgstr "Nua..." - -#~ msgid "Delete" -#~ msgstr "Scrios" - -#~ msgid "More Actions" -#~ msgstr "Tuilleadh Gníomhartha" - -#~ msgid "Save as Scheme Defaults" -#~ msgstr "Sábháil mar Réamhshocruithe na Scéime" - -#~ msgid "Export Scheme..." -#~ msgstr "Easpórtáil Scéim..." - -#~ msgid "Name for New Scheme" -#~ msgstr "Ainm na Scéime Nuaí" - -#~ msgid "Name for new scheme:" -#~ msgstr "Ainm na scéime nuaí:" - -#~ msgid "New Scheme" -#~ msgstr "Scéim Nua" - -#~ msgid "A scheme with this name already exists." -#~ msgstr "Tá scéim leis an ainm seo ann cheana." - -#~ msgid "" -#~ "Do you really want to delete the scheme %1?\n" -#~ "Note that this will not remove any system wide shortcut schemes." -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mhaith leat scéim %1 a scriosadh?\n" -#~ "Tabhair faoi deara nach mbainfidh sé seo aon scéimeanna comhchoiteanna " -#~ "aicearraí." - -#~ msgid "Export to Location" -#~ msgstr "Easpórtáil go Suíomh" - -#~ msgid "Could not export shortcuts scheme because the location is invalid." -#~ msgstr "Níorbh fhéidir an scéim aicearraí a easpórtáil: suíomh neamhbhailí." - -#~ msgid "" -#~ "The current shortcut scheme is modified. Save before switching to the new " -#~ "one?" -#~ msgstr "" -#~ "Athraíodh an scéim reatha aicearraí. An bhfuil fonn ort an scéim seo a " -#~ "shábháil sula n-athróidh tú é?" - -#~ msgid "Configure Shortcuts" -#~ msgstr "Cumraigh Aicearraí" - -#~ msgid "Print" -#~ msgstr "Priontáil" - -#~ msgid "Reset to Defaults" -#~ msgstr "Fill ar Réamhshocruithe" - -#~ msgid "" -#~ "Search interactively for shortcut names (e.g. Copy) or combination of " -#~ "keys (e.g. Ctrl+C) by typing them here." -#~ msgstr "" -#~ "Chun cuardach idirghníomhach ar ainmneacha aicearra (m.sh. Cóipeáil) nó " -#~ "teaglamaí eochracha (m.sh Ctrl+C) a dhéanamh, níl uait ach iad a " -#~ "chlóscríobh anseo." - -#~ msgid "" -#~ "Here you can see a list of key bindings, i.e. associations between " -#~ "actions (e.g. 'Copy') shown in the left column and keys or combination of " -#~ "keys (e.g. Ctrl+V) shown in the right column." -#~ msgstr "" -#~ "Anseo is féidir liosta aicearraí a fheiceáil, .i. naisc idir gníomhartha " -#~ "(m.sh. 'Cóipeáil') atá sa cholún ar clé agus eochair nó eochracha (m.sh. " -#~ "Ctrl+V) atá sa cholún ar dheis." - -#~ msgid "Action" -#~ msgstr "Gníomh" - -#~ msgid "Shortcut" -#~ msgstr "Aicearra" - -#~ msgid "Alternate" -#~ msgstr "Malairt" - -#~ msgid "Global" -#~ msgstr "Comhchoiteann" - -#~ msgid "Global Alternate" -#~ msgstr "Malairt Chomhchoiteann" - -#~ msgid "Mouse Button Gesture" -#~ msgstr "Gotha Cnaipe Luiche" - -#~ msgid "Mouse Shape Gesture" -#~ msgstr "Gotha Fíorach Luiche" - -#~ msgid "Unknown" -#~ msgstr "Anaithnid" - -#~ msgid "Key Conflict" -#~ msgstr "Coimhlint Eochrach" - -#~ msgid "" -#~ "The '%1' shape gesture has already been allocated to the \"%2\" action.\n" -#~ "Do you want to reassign it from that action to the current one?" -#~ msgstr "" -#~ "Tá gotha fíorach '%1' comhcheangailte leis an ngníomh \"%2\" cheana.\n" -#~ "An bhfuil fonn ort é a athrú ón ghníomh sin go dtí an gníomh reatha?" - -#~ msgid "Reassign" -#~ msgstr "Athshann" - -#~ msgid "" -#~ "The '%1' rocker gesture has already been allocated to the \"%2\" action.\n" -#~ "Do you want to reassign it from that action to the current one?" -#~ msgstr "" -#~ "Tá gotha rocker '%1' comhcheangailte leis an ngníomh \"%2\" cheana.\n" -#~ "An bhfuil fonn ort é a athrú ón ghníomh sin go dtí an gníomh reatha?" - -#~ msgctxt "header for an applications shortcut list" -#~ msgid "Shortcuts for %1" -#~ msgstr "Aicearraí le haghaidh %1" - -#~ msgid "Main:" -#~ msgstr "Príomh:" - -#~ msgid "Alternate:" -#~ msgstr "Malairt:" - -#~ msgid "Global:" -#~ msgstr "Comhchoiteann:" - -#~ msgid "Action Name" -#~ msgstr "Ainm Gnímh" - -#~ msgid "Shortcuts" -#~ msgstr "Aicearraí" - -#~ msgid "Description" -#~ msgstr "Cur Síos" - -#~ msgctxt "@item:intable Action name in shortcuts configuration" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Switch Application Language" -#~ msgstr "Athraigh Teanga an Fheidhmchláir" - -#~ msgid "" -#~ "Please choose the language which should be used for this application:" -#~ msgstr "Roghnaigh teanga le haghaidh an fheidhmchláir seo:" - -#~ msgid "Add Fallback Language" -#~ msgstr "Cuir Teanga Cúltaca Leis" - -#~ msgid "" -#~ "Adds one more language which will be used if other translations do not " -#~ "contain a proper translation." -#~ msgstr "" -#~ "Cuir teanga leis a úsáidfear nuair nach bhfuil aistriúchán oiriúnach sna " -#~ "haistriúcháin eile." - -#~ msgid "" -#~ "The language for this application has been changed. The change will take " -#~ "effect the next time the application is started." -#~ msgstr "" -#~ "Athraíodh teanga an fheidhmchláir seo. Cuirfear an t-athrú seo i " -#~ "bhfeidhm an chéad uair eile a thosaíonn tú an feidhmchlár." - -#~ msgid "Application Language Changed" -#~ msgstr "Athraíodh teanga an fheidhmchláir" - -#~ msgid "Primary language:" -#~ msgstr "Príomhtheanga:" - -#~ msgid "Fallback language:" -#~ msgstr "Teanga cúltaca:" - -#~ msgid "Remove" -#~ msgstr "Bain" - -#~ msgid "" -#~ "This is the main application language which will be used first, before " -#~ "any other languages." -#~ msgstr "" -#~ "Seo é príomhtheanga an fheidhmchláir agus úsáidfear í roimh aon teangacha " -#~ "eile." - -#~ msgid "" -#~ "This is the language which will be used if any previous languages do not " -#~ "contain a proper translation." -#~ msgstr "" -#~ "Úsáidfear an teanga seo nuair nach bhfuil aistriúchán oiriúnach ar fáil i " -#~ "measc na n-aistriúchán eile." - -#~ msgid "Tip of the Day" -#~ msgstr "Leid an Lae" - -#~ msgid "Did you know...?\n" -#~ msgstr "An bhfuil a fhios agat...?\n" - -#~ msgid "&Show tips on startup" -#~ msgstr "&Taispeáin Leideanna i dTosach" - -#~ msgid "&Previous" -#~ msgstr "&Roimhe Seo" - -#~ msgctxt "Opposite to Previous" -#~ msgid "&Next" -#~ msgstr "&Ar Aghaidh" - -#~ msgid "Find Next" -#~ msgstr "An Chéad Cheann Eile" - -#~ msgid "Find next occurrence of '%1'?" -#~ msgstr "Aimsigh an chéad sampla eile de '%1'?" - -#~ msgid "1 match found." -#~ msgid_plural "%1 matches found." -#~ msgstr[0] "Aimsíodh %1 rud comhoiriúnach." -#~ msgstr[1] "Aimsíodh %1 rud comhoiriúnach." -#~ msgstr[2] "Aimsíodh %1 rud comhoiriúnach." -#~ msgstr[3] "Aimsíodh %1 rud comhoiriúnach." -#~ msgstr[4] "Aimsíodh %1 rud comhoiriúnach." - -#~ msgid "No matches found for '%1'." -#~ msgstr "Níor aimsíodh aon rud comhoiriúnach do '%1'." - -#~ msgid "No matches found for '%1'." -#~ msgstr "Níor aimsíodh aon rud comhoiriúnach do '%1'." - -#~ msgid "Beginning of document reached." -#~ msgstr "Tá tús na cáipéise sroichte." - -#~ msgid "End of document reached." -#~ msgstr "Tá deireadh na cáipéise sroichte." - -#~ msgid "Continue from the end?" -#~ msgstr "Lean ar aghaidh ón deireadh?" - -#~ msgid "Continue from the beginning?" -#~ msgstr "Lean ar aghaidh ón tús?" - -#~ msgid "Find Text" -#~ msgstr "Aimsigh Téacs" - -#~ msgctxt "@title:group" -#~ msgid "Find" -#~ msgstr "Aimsigh" - -#~ msgid "&Text to find:" -#~ msgstr "&Téacs le haimsiú:" - -#~ msgid "Regular e&xpression" -#~ msgstr "S&lonn ionadaíochta" - -#~ msgid "&Edit..." -#~ msgstr "&Eagar..." - -#~ msgid "Replace With" -#~ msgstr "Ionadaigh le" - -#~ msgid "Replace&ment text:" -#~ msgstr "Téacs &ionadach:" - -#~ msgid "Use p&laceholders" -#~ msgstr "Úsáid ionadchoinneá&laithe" - -#~ msgid "Insert Place&holder" -#~ msgstr "Ionsáig&h ionadchoinneálaí" - -#~ msgid "Options" -#~ msgstr "Roghanna" - -#~ msgid "C&ase sensitive" -#~ msgstr "Cá&síogair" - -#~ msgid "&Whole words only" -#~ msgstr "&Focail iomláin amháin" - -#~ msgid "From c&ursor" -#~ msgstr "Ón &chúrsóir" - -#~ msgid "Find &backwards" -#~ msgstr "&Roimhe Seo" - -#~ msgid "&Selected text" -#~ msgstr "Téac&s roghnaithe" - -#~ msgid "&Prompt on replace" -#~ msgstr "&Fiafraigh roimh ionadú" - -#~ msgid "Start replace" -#~ msgstr "Tosaigh ionadú" - -#~ msgid "" -#~ "If you press the Replace button, the text you entered above is " -#~ "searched for within the document and any occurrence is replaced with the " -#~ "replacement text." -#~ msgstr "" -#~ "Má bhrúnn tú an cnaipe Ionadaigh, déanfar cuardach ar an téacs " -#~ "a d'iontráil tú thuas agus cuirfear an téacs ionadaithe in ionad gach " -#~ "cáis a aimsítear." - -#~ msgid "&Find" -#~ msgstr "&Aimsigh" - -#~ msgid "Start searching" -#~ msgstr "Tosaigh an cuardach" - -#~ msgid "" -#~ "If you press the Find button, the text you entered above is " -#~ "searched for within the document." -#~ msgstr "" -#~ "Má bhrúnn tú an cnaipe Aimsigh, déanfaidh cuardach ar an téacs " -#~ "a d'iontráil tú thuas sa cháipéis." - -#~ msgid "" -#~ "Enter a pattern to search for, or select a previous pattern from the list." -#~ msgstr "Iontráil patrún le lorg, nó roghnaigh patrún eile ón liosta." - -#~ msgid "If enabled, search for a regular expression." -#~ msgstr "Más cumasaithe é seo, déan cuardach ar shlonn ionadaíochta." - -#~ msgid "Click here to edit your regular expression using a graphical editor." -#~ msgstr "" -#~ "Cliceáil anseo chun do shlonn ionadaíochta a chur in eagar le heagarthóir " -#~ "grafach." - -#~ msgid "Enter a replacement string, or select a previous one from the list." -#~ msgstr "Iontráil teaghrán ionadach, nó roghnaigh teaghrán eile ón liosta." - -#~ msgid "" -#~ "If enabled, any occurrence of \\N, where " -#~ "N is an integer number, will be replaced with the " -#~ "corresponding capture (\"parenthesized substring\") from the pattern." -#~ "

      To include (a literal \\N in your replacement, put " -#~ "an extra backslash in front of it, like \\\\N.

      " -#~ msgstr "" -#~ "Leis an rogha seo, cuirfear an teaghrán gafa cuí (\"fotheaghrán " -#~ "lúibíneach\") ón phatrún in ionad gach \\N. Is " -#~ "slánuimhir é N anseo.

      Chun \\N " -#~ "litriúil a chur san áireamh, cuir cúlslais bhreise os a chomhair: " -#~ "\\\\N.

      " - -#~ msgid "Click for a menu of available captures." -#~ msgstr "Cliceáil le haghaidh roghchláir leis na gabhálacha atá ar fáil." - -#~ msgid "Require word boundaries in both ends of a match to succeed." -#~ msgstr "Éiligh teorainneacha focail ag tús agus deireadh an teaghráin." - -#~ msgid "" -#~ "Start searching at the current cursor location rather than at the top." -#~ msgstr "Tosaigh an cuardach ó shuíomh reatha an chúrsóra seachas ón bharr." - -#~ msgid "Only search within the current selection." -#~ msgstr "Ná cuardaigh ach laistigh den roghnúchán reatha." - -#~ msgid "" -#~ "Perform a case sensitive search: entering the pattern 'Joe' will not " -#~ "match 'joe' or 'JOE', only 'Joe'." -#~ msgstr "" -#~ "Déan cuardach cásíogair; m.sh. ní bheidh an patrún 'Seosamh' " -#~ "comhoiriúnach do 'seosamh' or 'SEOSAMH', ach le 'Seosamh' amháin." - -#~ msgid "Search backwards." -#~ msgstr "Cuardaigh ar gcúl." - -#~ msgid "Ask before replacing each match found." -#~ msgstr "Fiafraigh díom roimh gach teaghrán aimsithe a ionadú." - -#~ msgid "Any Character" -#~ msgstr "Carachtar ar Bith" - -#~ msgid "Start of Line" -#~ msgstr "Tús na Líne" - -#~ msgid "End of Line" -#~ msgstr "Deireadh na Líne" - -#~ msgid "Set of Characters" -#~ msgstr "Tacar Carachtar" - -#~ msgid "Repeats, Zero or More Times" -#~ msgstr "Athdhéanta, 0 nó níos mó uaireanta" - -#~ msgid "Repeats, One or More Times" -#~ msgstr "Athdhéanta, ceann amháin nó níos mó uaireanta" - -#~ msgid "Optional" -#~ msgstr "Roghnach" - -#~ msgid "Escape" -#~ msgstr "Éalúchán" - -#~ msgid "TAB" -#~ msgstr "Táb" - -#~ msgid "Newline" -#~ msgstr "Líne Nua" - -#~ msgid "Carriage Return" -#~ msgstr "Aisfhilleadh Carráiste" - -#~ msgid "White Space" -#~ msgstr "Spás Bán" - -#~ msgid "Digit" -#~ msgstr "Digit" - -#~ msgid "Complete Match" -#~ msgstr "Comhoiriúnú Iomlán" - -#~ msgid "Captured Text (%1)" -#~ msgstr "Téacs Gafa (%1)" - -#~ msgid "You must enter some text to search for." -#~ msgstr "Ní mór duit téacs éigin atá le lorg a shonrú." - -#~ msgid "Invalid regular expression." -#~ msgstr "Slonn ionadaíochta neamhbhailí." - -#~ msgid "Replace" -#~ msgstr "Ionadaigh" - -#~ msgctxt "@action:button Replace all occurrences" -#~ msgid "&All" -#~ msgstr "&Uile" - -#~ msgid "&Skip" -#~ msgstr "&Ná bac leis" - -#~ msgid "Replace '%1' with '%2'?" -#~ msgstr "Cuir '%2' in ionad '%1'?" - -#~ msgid "No text was replaced." -#~ msgstr "Níor ionadaíodh aon téacs." - -#~ msgid "1 replacement done." -#~ msgid_plural "%1 replacements done." -#~ msgstr[0] "Ionadaíodh %1 teaghrán." -#~ msgstr[1] "Ionadaíodh %1 theaghrán." -#~ msgstr[2] "Ionadaíodh %1 theaghrán." -#~ msgstr[3] "Ionadaíodh %1 dteaghrán." -#~ msgstr[4] "Ionadaíodh %1 teaghrán." - -#~ msgid "Do you want to restart search from the end?" -#~ msgstr "An bhfuil fonn ort an cuardach a atosú ón deireadh?" - -#~ msgid "Do you want to restart search at the beginning?" -#~ msgstr "An bhfuil fonn ort an cuardach a atosú ag an tús?" - -#~ msgctxt "@action:button Restart find & replace" -#~ msgid "Restart" -#~ msgstr "Atosaigh" - -#~ msgctxt "@action:button Stop find & replace" -#~ msgid "Stop" -#~ msgstr "Stad" - -#~ msgid "" -#~ "Your replacement string is referencing a capture greater than '\\%1', " -#~ msgstr "" -#~ "Déanann do theaghrán ionadach tagairt do ghabháltas níos mó ná '\\%1', " - -#~ msgid "but your pattern only defines 1 capture." -#~ msgid_plural "but your pattern only defines %1 captures." -#~ msgstr[0] "cé nach bhfuil ach %1 ghabháil sa phatrún atá agat." -#~ msgstr[1] "cé nach bhfuil ach %1 ghabháil sa phatrún atá agat." -#~ msgstr[2] "cé nach bhfuil ach %1 ghabháil sa phatrún atá agat." -#~ msgstr[3] "cé nach bhfuil ach %1 ngabháil sa phatrún atá agat." -#~ msgstr[4] "cé nach bhfuil ach %1 gabháil sa phatrún atá agat." - -#~ msgid "but your pattern defines no captures." -#~ msgstr "cé nach bhfuil aon ghabháil i do phatrún." - -#~ msgid "" -#~ "\n" -#~ "Please correct." -#~ msgstr "" -#~ "\n" -#~ "Cuir ina cheart, le do thoil." - -#~ msgctxt "@item Font name" -#~ msgid "Sans Serif" -#~ msgstr "Sans Serif" - -#~ msgctxt "@item Font name" -#~ msgid "Serif" -#~ msgstr "Serif" - -#~ msgctxt "@item Font name" -#~ msgid "Monospace" -#~ msgstr "Cló aon-leithid" - -#~ msgctxt "@item Font name" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@item Font name [foundry]" -#~ msgid "%1 [%2]" -#~ msgstr "%1 [%2]" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Here you can choose the font to be used." -#~ msgstr "Is féidir an cló atá le húsáid a roghnú anseo." - -#~ msgid "Requested Font" -#~ msgstr "Cló Iarrtha" - -#~ msgctxt "@option:check" -#~ msgid "Font" -#~ msgstr "Cló" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enable this checkbox to change the font family settings." -#~ msgstr "Cumasaigh an ticbhosca seo chun socruithe na fine cló a athrú." - -#~ msgctxt "@info:tooltip" -#~ msgid "Change font family?" -#~ msgstr "Athraigh an fhine cló?" - -#~ msgctxt "@label" -#~ msgid "Font:" -#~ msgstr "Cló:" - -#~ msgctxt "@option:check" -#~ msgid "Font style" -#~ msgstr "Stíl an chló" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enable this checkbox to change the font style settings." -#~ msgstr "Cumasaigh an ticbhosca seo chun socruithe na stíle cló a athrú." - -#~ msgctxt "@info:tooltip" -#~ msgid "Change font style?" -#~ msgstr "Athraigh stíl an chló?" - -#~ msgid "Font style:" -#~ msgstr "Stíl an chló:" - -#~ msgctxt "@option:check" -#~ msgid "Size" -#~ msgstr "Clómhéid" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enable this checkbox to change the font size settings." -#~ msgstr "Cumasaigh an ticbhosca seo chun socruithe na clómhéide a athrú." - -#~ msgctxt "@info:tooltip" -#~ msgid "Change font size?" -#~ msgstr "Athraigh méid an chló?" - -#~ msgctxt "@label:listbox Font size" -#~ msgid "Size:" -#~ msgstr "Clómhéid:" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Here you can choose the font family to be used." -#~ msgstr "Tig leat an fhine cló atá le húsáid a roghnú anseo." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Here you can choose the font style to be used." -#~ msgstr "Tig leat stíl an chló atá le húsáid a roghnú anseo." - -#~ msgctxt "@item font" -#~ msgid "Italic" -#~ msgstr "Cló Iodálach" - -#~ msgctxt "@item font" -#~ msgid "Oblique" -#~ msgstr "Fiar" - -#~ msgctxt "@item font" -#~ msgid "Bold" -#~ msgstr "Trom" - -#~ msgctxt "@item font" -#~ msgid "Bold Italic" -#~ msgstr "Iodálach Trom" - -#~ msgctxt "@item font size" -#~ msgid "Relative" -#~ msgstr "Coibhneasta" - -#~ msgid "Font size
      fixed or relative
      to environment" -#~ msgstr "" -#~ "Clómhéid
      socraithecoibhneasta
      maidir leis an " -#~ "timpeallacht" - -#~ msgid "" -#~ "Here you can switch between fixed font size and font size to be " -#~ "calculated dynamically and adjusted to changing environment (e.g. widget " -#~ "dimensions, paper size)." -#~ msgstr "" -#~ "Anseo is féidir clómhéid bhuan a roghnú, nó clómhéid choibhneasta a " -#~ "áirítear go dinimiciúil bunaithe ar an timpeallacht (m.sh. toisí " -#~ "giuirléidí, méid pháipéir, srl.)." - -#~ msgid "Here you can choose the font size to be used." -#~ msgstr "Tig leat an chlómhéid atá le húsáid a roghnú anseo." - -#~ msgid "The Quick Brown Fox Jumps Over The Lazy Dog" -#~ msgstr "" -#~ "Léim an sionnach tapa thar an madra leisciúil ABCDEFGHIJKLMNOPQRSTUVWXYZ" - -#~ msgid "" -#~ "This sample text illustrates the current settings. You may edit it to " -#~ "test special characters." -#~ msgstr "" -#~ "Léiríonn an téacs samplach seo na socruithe reatha. Tig leat é a athrú " -#~ "chun carachtair speisialta a thástáil." - -#~ msgid "Actual Font" -#~ msgstr "An Cló Féin" - -#~ msgctxt "@item Font style" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "short" -#~ msgid "The Quick Brown Fox Jumps Over The Lazy Dog" -#~ msgstr "Léimeann an sionnach tapa... ABCDEFGHIJKLMNOPQRSTUVWXYZ" - -#~ msgctxt "Numeric IDs of scripts for font previews" -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "Select Font" -#~ msgstr "Roghnaigh Cló" - -#~ msgid "Choose..." -#~ msgstr "Roghnaigh..." - -#~ msgid "Click to select a font" -#~ msgstr "Cliceáil chun cló a roghnú" - -#~ msgid "Preview of the selected font" -#~ msgstr "Réamhamharc ar an gcló roghnaithe" - -#~ msgid "" -#~ "This is a preview of the selected font. You can change it by clicking the " -#~ "\"Choose...\" button." -#~ msgstr "" -#~ "Seo réamhamharc ar an gcló roghnaithe. Tig leat é a athrú trí chliceáil " -#~ "ar an chnaipe \"Roghnaigh...\"." - -#~ msgid "Preview of the \"%1\" font" -#~ msgstr "Réamhamharc ar chló \"%1\"" - -#~ msgid "" -#~ "This is a preview of the \"%1\" font. You can change it by clicking the " -#~ "\"Choose...\" button." -#~ msgstr "" -#~ "Seo réamhamharc ar chló \"%1\". Tig leat é a athrú trí chliceáil ar an " -#~ "chnaipe \"Roghnaigh...\"." - -#~ msgid "Search" -#~ msgstr "Cuardaigh" - -#~ msgid "Stop" -#~ msgstr "Stad" - -#~ msgid " Stalled " -#~ msgstr " Ag fanacht " - -#~ msgid " %1/s " -#~ msgstr " %1/s " - -#~ msgctxt "%1 is the label, we add a ':' to it" -#~ msgid "%1:" -#~ msgstr "%1:" - -#~ msgid "%2 of %3 complete" -#~ msgid_plural "%2 of %3 complete" -#~ msgstr[0] "%2 as %3 déanta" -#~ msgstr[1] "%2 as %3 déanta" -#~ msgstr[2] "%2 as %3 déanta" -#~ msgstr[3] "%2 as %3 déanta" -#~ msgstr[4] "%2 as %3 déanta" - -#~ msgid "%2 / %1 folder" -#~ msgid_plural "%2 / %1 folders" -#~ msgstr[0] "%2 / %1 fhillteán" -#~ msgstr[1] "%2 / %1 fhillteán" -#~ msgstr[2] "%2 / %1 fhillteán" -#~ msgstr[3] "%2 / %1 bhfillteán" -#~ msgstr[4] "%2 / %1 fillteán" - -#~ msgid "%2 / %1 file" -#~ msgid_plural "%2 / %1 files" -#~ msgstr[0] "%2 / %1 chomhad" -#~ msgstr[1] "%2 / %1 chomhad" -#~ msgstr[2] "%2 / %1 chomhad" -#~ msgstr[3] "%2 / %1 gcomhad" -#~ msgstr[4] "%2 / %1 comhad" - -#~ msgid "%1% of %2" -#~ msgstr "%1% as %2" - -#~ msgid "%2% of 1 file" -#~ msgid_plural "%2% of %1 files" -#~ msgstr[0] "%2% as 1 chomhad" -#~ msgstr[1] "%2% as %1 chomhad" -#~ msgstr[2] "%2% as %1 chomhad" -#~ msgstr[3] "%2% as %1 gcomhad" -#~ msgstr[4] "%2% as %1 comhad" - -#~ msgid "%1%" -#~ msgstr "%1%" - -#~ msgid "Stalled" -#~ msgstr "Ag fanacht" - -#~ msgid "%2/s (%3 remaining)" -#~ msgid_plural "%2/s (%3 remaining)" -#~ msgstr[0] "%2/s (%3 fós le déanamh)" -#~ msgstr[1] "%2/s (%3 fós le déanamh)" -#~ msgstr[2] "%2/s (%3 fós le déanamh)" -#~ msgstr[3] "%2/s (%3 fós le déanamh)" -#~ msgstr[4] "%2/s (%3 fós le déanamh)" - -#~ msgctxt "speed in bytes per second" -#~ msgid "%1/s" -#~ msgstr " %1/s" - -#~ msgid "%1/s (done)" -#~ msgstr "%1/s (déanta)" - -#~ msgid "&Resume" -#~ msgstr "&Lean" - -#~ msgid "&Pause" -#~ msgstr "&Sos" - -#~ msgctxt "The source url of a job" -#~ msgid "Source:" -#~ msgstr "Foinse:" - -#~ msgctxt "The destination url of a job" -#~ msgid "Destination:" -#~ msgstr "Sprioc:" - -#~ msgid "Click this to expand the dialog, to show details" -#~ msgstr "" -#~ "Cliceáil air seo chun an dialóg a leathnú, chun mionsonraí a thaispeáint" - -#~ msgid "&Keep this window open after transfer is complete" -#~ msgstr "&Fág an fhuinneog seo ar oscailt tar éis críoch an aistrithe" - -#~ msgid "Open &File" -#~ msgstr "Oscail &Comhad" - -#~ msgid "Open &Destination" -#~ msgstr "Oscail an &Sprioc" - -#~ msgid "Progress Dialog" -#~ msgstr "Dialóg dul chun cinn" - -#~ msgid "%1 folder" -#~ msgid_plural "%1 folders" -#~ msgstr[0] "%1 fhillteán" -#~ msgstr[1] "%1 fhillteán" -#~ msgstr[2] "%1 fhillteán" -#~ msgstr[3] "%1 bhfillteán" -#~ msgstr[4] "%1 fillteán" - -#~ msgid "%1 file" -#~ msgid_plural "%1 files" -#~ msgstr[0] "%1 chomhad" -#~ msgstr[1] "%1 chomhad" -#~ msgstr[2] "%1 chomhad" -#~ msgstr[3] "%1 gcomhad" -#~ msgstr[4] "%1 comhad" - -#~ msgid "Click this to collapse the dialog, to hide details" -#~ msgstr "Cliceáil air seo chun an dialóg a laghdú, chun mionsonraí a fholú" - -#~ msgid "The style '%1' was not found" -#~ msgstr "Ní bhfuarthas stíl '%1'" - -#~ msgid "Do not run in the background." -#~ msgstr "Ná rith sa chúlra." - -#~ msgid "Internally added if launched from Finder" -#~ msgstr "Cuirtear é leis go hinmheánach má thosaítear é ón Finder" - -#~ msgid "Unknown Application" -#~ msgstr "Feidhmchlár Anaithnid" - -#~ msgid "&Minimize" -#~ msgstr "Íos&laghdaigh" - -#~ msgid "&Restore" -#~ msgstr "Athchói&righ" - -#~ msgid "Are you sure you want to quit %1?" -#~ msgstr "An bhfuil tú cinnte gur mian leat %1 a scor?" - -#~ msgid "Confirm Quit From System Tray" -#~ msgstr "Deimhnigh Scor ó thráidire an chórais" - -#~ msgid "Minimize" -#~ msgstr "Íoslaghdaigh" - -#~ msgctxt "@title:window" -#~ msgid "Dr. Klash' Accelerator Diagnosis" -#~ msgstr "Diagnóis Luasaire Dr. Klash" - -#~ msgctxt "@option:check" -#~ msgid "Disable automatic checking" -#~ msgstr "Díchumasaigh seiceáil uathoibríoch" - -#~ msgctxt "@action:button" -#~ msgid "Close" -#~ msgstr "Dún" - -#~ msgid "

      Accelerators changed

      " -#~ msgstr "

      Aicearraí athraithe

      " - -#~ msgid "

      Accelerators removed

      " -#~ msgstr "

      Aicearraí bainte

      " - -#~ msgid "

      Accelerators added (just for your info)

      " -#~ msgstr "

      Aicearraí curtha leis (mar eolas duit)

      " - -#~ msgctxt "left mouse button" -#~ msgid "left button" -#~ msgstr "cnaipe ar chlé" - -#~ msgctxt "middle mouse button" -#~ msgid "middle button" -#~ msgstr "cnaipe sa lár" - -#~ msgctxt "right mouse button" -#~ msgid "right button" -#~ msgstr "cnaipe ar dheis" - -#~ msgctxt "a nonexistent value of mouse button" -#~ msgid "invalid button" -#~ msgstr "cnaipe neamhbhailí" - -#~ msgctxt "" -#~ "a kind of mouse gesture: hold down one mouse button, then press another " -#~ "button" -#~ msgid "Hold %1, then push %2" -#~ msgstr "Coinnigh %1 síos, ansin brúigh %2" - -#~ msgid "Conflict with Global Shortcut" -#~ msgstr "Coimhlint le hAicearra Comhchoiteann" - -#~ msgid "" -#~ "The '%1' key combination has already been allocated to the global action " -#~ "\"%2\" in %3.\n" -#~ "Do you want to reassign it from that action to the current one?" -#~ msgstr "" -#~ "Tá '%1' comhcheangailte leis an ngníomh comhchoiteann \"%2\" i %3 " -#~ "cheana.\n" -#~ "An bhfuil fonn ort é a athrú ón ghníomh sin go dtí an gníomh reatha?" - -#~ msgid "" -#~ "The '%1' key combination is registered by application %2 for action %3:" -#~ msgstr "" -#~ "Tá teaglaim eochracha '%1' cláraithe leis an ngníomh %3 ag feidhmchlár %2:" - -#~ msgid "In context '%1' for action '%2'\n" -#~ msgstr "I gcomhthéacs '%1' le haghaidh ghníomh '%2'\n" - -#~ msgid "" -#~ "The '%1' key combination is registered by application %2.\n" -#~ "%3" -#~ msgstr "" -#~ "Tá teaglaim eochracha '%1' cláraithe ag feidhmchlár %2.\n" -#~ "%3" - -#~ msgid "Conflict With Registered Global Shortcut" -#~ msgstr "Coimhlint le hAicearra Comhchoiteann Cláraithe" - -#~ msgctxt "@action" -#~ msgid "Open" -#~ msgstr "Oscail" - -#~ msgctxt "@action" -#~ msgid "New" -#~ msgstr "Nua" - -#~ msgctxt "@action" -#~ msgid "Close" -#~ msgstr "Dún" - -#~ msgctxt "@action" -#~ msgid "Save" -#~ msgstr "Sábháil" - -#~ msgctxt "@action" -#~ msgid "Print" -#~ msgstr "Priontáil" - -#~ msgctxt "@action" -#~ msgid "Quit" -#~ msgstr "Scoir" - -#~ msgctxt "@action" -#~ msgid "Undo" -#~ msgstr "Cealaigh" - -#~ msgctxt "@action" -#~ msgid "Redo" -#~ msgstr "Athdhéan" - -#~ msgctxt "@action" -#~ msgid "Cut" -#~ msgstr "Gearr" - -#~ msgctxt "@action" -#~ msgid "Copy" -#~ msgstr "Cóipeáil" - -#~ msgctxt "@action" -#~ msgid "Paste" -#~ msgstr "Greamaigh" - -#~ msgctxt "@action" -#~ msgid "Paste Selection" -#~ msgstr "Greamaigh Roghnúchán" - -#~ msgctxt "@action" -#~ msgid "Select All" -#~ msgstr "Roghnaigh Uile" - -#~ msgctxt "@action" -#~ msgid "Deselect" -#~ msgstr "Díroghnaigh" - -#~ msgctxt "@action" -#~ msgid "Delete Word Backwards" -#~ msgstr "Scrios Focal Siar" - -#~ msgctxt "@action" -#~ msgid "Delete Word Forward" -#~ msgstr "Scrios Focal Ar Aghaidh" - -#~ msgctxt "@action" -#~ msgid "Find" -#~ msgstr "Aimsigh" - -#~ msgctxt "@action" -#~ msgid "Find Next" -#~ msgstr "An Chéad Cheann Eile" - -#~ msgctxt "@action" -#~ msgid "Find Prev" -#~ msgstr "Roimhe Seo" - -#~ msgctxt "@action" -#~ msgid "Replace" -#~ msgstr "Ionadaigh" - -#~ msgctxt "@action Go to main page" -#~ msgid "Home" -#~ msgstr "Baile" - -#~ msgctxt "@action Beginning of document" -#~ msgid "Begin" -#~ msgstr "Tús" - -#~ msgctxt "@action End of document" -#~ msgid "End" -#~ msgstr "Deireadh" - -#~ msgctxt "@action" -#~ msgid "Prior" -#~ msgstr "Siar" - -#~ msgctxt "@action Opposite to Prior" -#~ msgid "Next" -#~ msgstr "Ar Aghaidh" - -#~ msgctxt "@action" -#~ msgid "Up" -#~ msgstr "Suas" - -#~ msgctxt "@action" -#~ msgid "Back" -#~ msgstr "Siar" - -#~ msgctxt "@action" -#~ msgid "Forward" -#~ msgstr "Ar Aghaidh" - -#~ msgctxt "@action" -#~ msgid "Reload" -#~ msgstr "Athluchtaigh" - -#~ msgctxt "@action" -#~ msgid "Beginning of Line" -#~ msgstr "Tús na Líne" - -#~ msgctxt "@action" -#~ msgid "End of Line" -#~ msgstr "Deireadh na Líne" - -#~ msgctxt "@action" -#~ msgid "Go to Line" -#~ msgstr "Téigh go Líne" - -#~ msgctxt "@action" -#~ msgid "Backward Word" -#~ msgstr "Focal Siar" - -#~ msgctxt "@action" -#~ msgid "Forward Word" -#~ msgstr "Focal Ar Aghaidh" - -#~ msgctxt "@action" -#~ msgid "Add Bookmark" -#~ msgstr "Cuir Leabharmharc Leis" - -#~ msgctxt "@action" -#~ msgid "Zoom In" -#~ msgstr "Súmáil Isteach" - -#~ msgctxt "@action" -#~ msgid "Zoom Out" -#~ msgstr "Súmáil Amach" - -#~ msgctxt "@action" -#~ msgid "Full Screen Mode" -#~ msgstr "Mód Lánscáileáin" - -#~ msgctxt "@action" -#~ msgid "Show Menu Bar" -#~ msgstr "Taispeáin Barra na Roghchlár" - -#~ msgctxt "@action" -#~ msgid "Activate Next Tab" -#~ msgstr "Gníomhachtaigh an Chéad Chluaisín Eile" - -#~ msgctxt "@action" -#~ msgid "Activate Previous Tab" -#~ msgstr "Gníomhachtaigh an Cluaisín Roimhe Seo" - -#~ msgctxt "@action" -#~ msgid "Help" -#~ msgstr "Cabhair" - -#~ msgctxt "@action" -#~ msgid "What's This" -#~ msgstr "Cad É Seo" - -#~ msgctxt "@action" -#~ msgid "Text Completion" -#~ msgstr "Comhlánú Téacs" - -#~ msgctxt "@action" -#~ msgid "Previous Completion Match" -#~ msgstr "Comhlánú Comhoiriúnach Roimhe Seo" - -#~ msgctxt "@action" -#~ msgid "Next Completion Match" -#~ msgstr "An Chéad Chomhlánú Comhoiriúnach Eile" - -#~ msgctxt "@action" -#~ msgid "Substring Completion" -#~ msgstr "Comhlánú Fo-theaghráin" - -#~ msgctxt "@action" -#~ msgid "Previous Item in List" -#~ msgstr "An Mhír Roimhe Seo sa Liosta" - -#~ msgctxt "@action" -#~ msgid "Next Item in List" -#~ msgstr "An Chéad Mhír Eile sa Liosta" - -# recent what? -#~ msgctxt "@action" -#~ msgid "Open Recent" -#~ msgstr "Oscail Rudaí Deireanacha" - -#~ msgctxt "@action" -#~ msgid "Save As" -#~ msgstr "Sábháil Mar" - -#~ msgctxt "@action" -#~ msgid "Revert" -#~ msgstr "Fill" - -#~ msgctxt "@action" -#~ msgid "Print Preview" -#~ msgstr "Réamhamharc Priontála" - -#~ msgctxt "@action" -#~ msgid "Mail" -#~ msgstr "Post" - -#~ msgctxt "@action" -#~ msgid "Clear" -#~ msgstr "Glan" - -#~ msgctxt "@action" -#~ msgid "Actual Size" -#~ msgstr "Fíormhéid" - -#~ msgctxt "@action" -#~ msgid "Fit To Page" -#~ msgstr "Laghdaigh go dtí an Leathanach" - -#~ msgctxt "@action" -#~ msgid "Fit To Width" -#~ msgstr "Laghdaigh go dtí an Leithead" - -#~ msgctxt "@action" -#~ msgid "Fit To Height" -#~ msgstr "Laghdaigh go dtí an tAirde" - -#~ msgctxt "@action" -#~ msgid "Zoom" -#~ msgstr "Súmáil" - -#~ msgctxt "@action" -#~ msgid "Goto" -#~ msgstr "Téigh" - -#~ msgctxt "@action" -#~ msgid "Goto Page" -#~ msgstr "Téigh go Leathanach" - -#~ msgctxt "@action" -#~ msgid "Document Back" -#~ msgstr "Cáipéis Siar" - -#~ msgctxt "@action" -#~ msgid "Document Forward" -#~ msgstr "Cáipéis Ar Aghaidh" - -#~ msgctxt "@action" -#~ msgid "Edit Bookmarks" -#~ msgstr "Cuir Leabharmharcanna in Eagar" - -#~ msgctxt "@action" -#~ msgid "Spelling" -#~ msgstr "Litriú" - -#~ msgctxt "@action" -#~ msgid "Show Toolbar" -#~ msgstr "Taispeáin an Barra Uirlisí" - -#~ msgctxt "@action" -#~ msgid "Show Statusbar" -#~ msgstr "Taispeáin an Barra Stádais" - -#~ msgctxt "@action" -#~ msgid "Save Options" -#~ msgstr "Sábháil Roghanna" - -#~ msgctxt "@action" -#~ msgid "Key Bindings" -#~ msgstr "Ceangail Eochracha" - -#~ msgctxt "@action" -#~ msgid "Preferences" -#~ msgstr "Sainroghanna" - -#~ msgctxt "@action" -#~ msgid "Configure Toolbars" -#~ msgstr "Cumraigh Barraí Uirlisí" - -#~ msgctxt "@action" -#~ msgid "Configure Notifications" -#~ msgstr "Cumraigh Fógairtí" - -#~ msgctxt "@action" -#~ msgid "Tip Of Day" -#~ msgstr "Leid an Lae" - -#~ msgctxt "@action" -#~ msgid "Report Bug" -#~ msgstr "Seol tuairisc ar fhabht" - -#~ msgctxt "@action" -#~ msgid "Switch Application Language" -#~ msgstr "Athraigh Teanga an Fheidhmchláir" - -#~ msgctxt "@action" -#~ msgid "About Application" -#~ msgstr "Maidir leis an bhfeidhmchlár" - -#~ msgctxt "@action" -#~ msgid "About KDE" -#~ msgstr "Maidir le KDE" - -#~ msgid "Spell Checking Configuration" -#~ msgstr "Cumraíocht an Litreora" - -#~ msgid "Enable &background spellchecking" -#~ msgstr "&Cumasaigh seiceáil an litriú sa chúlra" - -#~ msgid "&Automatic spell checking enabled by default" -#~ msgstr "" -#~ "Tá seiceáil litrithe u&athoibríoch cumasaithe de réir réamhshocraithe" - -#~ msgid "Skip all &uppercase words" -#~ msgstr "Gabh thar fhocail atá sa chás &uachtair" - -#~ msgid "S&kip run-together words" -#~ msgstr "Gabh thar fhocail chomh&tháite" - -#~ msgid "Default language:" -#~ msgstr "Teanga réamhshocraithe:" - -#~ msgid "Ignored Words" -#~ msgstr "Focail a ndearnadh neamhshuim orthu" - -#~ msgctxt "@title:window" -#~ msgid "Check Spelling" -#~ msgstr "Seiceáil an Litriú" - -#~ msgctxt "@action:button" -#~ msgid "&Finished" -#~ msgstr "&Críochnaithe" - -#~ msgctxt "progress label" -#~ msgid "Spell checking in progress..." -#~ msgstr "Seiceáil litrithe ar siúl..." - -#~ msgid "Spell check stopped." -#~ msgstr "Stopadh an litreoir." - -#~ msgid "Spell check canceled." -#~ msgstr "Cealaíodh an litreoir." - -#~ msgid "Spell check complete." -#~ msgstr "Litreoir críochnaithe." - -#~ msgid "Autocorrect" -#~ msgstr "Uathcheartaigh" - -#~ msgid "" -#~ "You reached the end of the list\n" -#~ "of matching items.\n" -#~ msgstr "" -#~ "Tá deireadh liosta na míreanna comhoiriúnacha\n" -#~ "sroichte agat.\n" - -#~ msgid "" -#~ "The completion is ambiguous, more than one\n" -#~ "match is available.\n" -#~ msgstr "" -#~ "Comhlánú athbhríoch: níos mó ná teaghrán amháin\n" -#~ "comhoiriúnach ar fáil.\n" - -#~ msgid "There is no matching item available.\n" -#~ msgstr "Níl aon rud comhoiriúnach ar fáil.\n" - -#~ msgid "Backspace" -#~ msgstr "Cúlspás" - -#~ msgid "SysReq" -#~ msgstr "SysReq" - -#~ msgid "CapsLock" -#~ msgstr "CapsLock" - -#~ msgid "NumLock" -#~ msgstr "NumLock" - -#~ msgid "ScrollLock" -#~ msgstr "ScrollLock" - -#~ msgid "PageUp" -#~ msgstr "PageUp" - -#~ msgid "PageDown" -#~ msgstr "PageDown" - -#~ msgid "Again" -#~ msgstr "Arís" - -#~ msgid "Props" -#~ msgstr "Fearas" - -#~ msgid "Undo" -#~ msgstr "Cealaigh" - -#~ msgid "Front" -#~ msgstr "Éadan" - -#~ msgid "Copy" -#~ msgstr "Cóipeáil" - -#~ msgid "Open" -#~ msgstr "Oscail" - -#~ msgid "Paste" -#~ msgstr "Greamaigh" - -#~ msgid "Find" -#~ msgstr "Aimsigh" - -#~ msgid "Cut" -#~ msgstr "Gearr" - -#~ msgid "&OK" -#~ msgstr "&OK" - -#~ msgid "&Cancel" -#~ msgstr "&Cealaigh" - -# kstandardguiitem.cpp - generic button -# kjavaappletserver.cpp answers msgid "Do you grant Java applet with -# certificate(s):"... the following permission -#~ msgid "&Yes" -#~ msgstr "&Tá" - -# kstandardguiitem.cpp - generic button -#~ msgid "Yes" -#~ msgstr "Tá" - -# kstandardguiitem.cpp - generic button -#~ msgid "&No" -#~ msgstr "&Níl" - -# kstandardguiitem.cpp - generic button -#~ msgid "No" -#~ msgstr "Níl" - -#~ msgid "&Discard" -#~ msgstr "&Ná Sábháil" - -#~ msgid "Discard changes" -#~ msgstr "Ná sábháil na hathruithe" - -#~ msgid "" -#~ "Pressing this button will discard all recent changes made in this dialog." -#~ msgstr "" -#~ "Má bhrúnn tú an cnaipe seo, cuirfear na hathruithe is déanaí sa dialóg " -#~ "seo ar ceal." - -#~ msgid "Save data" -#~ msgstr "Sábháil na sonraí" - -#~ msgid "&Do Not Save" -#~ msgstr "&Ná Sábháil" - -#~ msgid "Do not save data" -#~ msgstr "Ná sábháil sonraí" - -#~ msgid "Save file with another name" -#~ msgstr "Sábháil an comhad le hainm eile" - -#~ msgid "&Apply" -#~ msgstr "&Cuir i bhFeidhm" - -#~ msgid "Apply changes" -#~ msgstr "Cuir na hathruithe i bhfeidhm" - -#~ msgid "" -#~ "When you click Apply, the settings will be handed over to the " -#~ "program, but the dialog will not be closed.\n" -#~ "Use this to try different settings." -#~ msgstr "" -#~ "Nuair a chliceálfaidh tú Cuir i bhFeidhm, cuirfear na socruithe ar " -#~ "aghaidh go dtí an clár, ach ní dhúnfar an dialóg.\n" -#~ "Úsáid é seo chun socruithe éagsúla a thriail." - -#~ msgid "Administrator &Mode..." -#~ msgstr "&Mód an Riarthóra..." - -#~ msgid "Enter Administrator Mode" -#~ msgstr "Gníomhachtaigh Mód an Riarthóra" - -#~ msgid "" -#~ "When you click Administrator Mode you will be prompted for the " -#~ "administrator (root) password in order to make changes which require root " -#~ "privileges." -#~ msgstr "" -#~ "Má chliceálann tú Mód an Riarthóra, iarrfar focal faire an " -#~ "riarthóra (forúsáideoir) ort sa chaoi go mbeidh tú in ann athruithe a " -#~ "dhéanamh a éilíonn ceadanna an fhorúsáideora." - -#~ msgid "Clear input" -#~ msgstr "Glan ionchur" - -#~ msgid "Clear the input in the edit field" -#~ msgstr "Glan an t-ionchur sa réimse eagarthóireachta" - -#~ msgid "Show help" -#~ msgstr "Taispeáin cabhair" - -#~ msgid "Close the current window or document" -#~ msgstr "Dún an fhuinneog nó an cháipéis reatha" - -#~ msgid "&Close Window" -#~ msgstr "&Dún an Fhuinneog" - -#~ msgid "Close the current window." -#~ msgstr "Dún an fhuinneog reatha." - -#~ msgid "&Close Document" -#~ msgstr "&Dún an Cháipéis" - -#~ msgid "Close the current document." -#~ msgstr "Dún an cháipéis reatha." - -#~ msgid "&Defaults" -#~ msgstr "&Réamhshocruithe" - -#~ msgid "Reset all items to their default values" -#~ msgstr "Fill ar réamhshocruithe" - -#~ msgid "Go back one step" -#~ msgstr "Téigh ar ais céim amháin" - -#~ msgid "Go forward one step" -#~ msgstr "Téigh ar aghaidh céim amháin" - -#~ msgid "Opens the print dialog to print the current document" -#~ msgstr "Osclaíonn an dialóg phriontála chun an cháipéis reatha a phriontáil" - -#~ msgid "C&ontinue" -#~ msgstr "&Lean ar aghaidh" - -#~ msgid "Continue operation" -#~ msgstr "Lean leis an oibríocht" - -#~ msgid "&Delete" -#~ msgstr "&Scrios" - -#~ msgid "Delete item(s)" -#~ msgstr "Scrios mír(eanna)" - -#~ msgid "Open file" -#~ msgstr "Oscail comhad" - -#~ msgid "&Reset" -#~ msgstr "Athshoc&raigh" - -#~ msgid "Reset configuration" -#~ msgstr "Athshocraigh an chumraíocht" - -#~ msgctxt "Verb" -#~ msgid "&Insert" -#~ msgstr "&Ionsáigh" - -#~ msgid "Confi&gure..." -#~ msgstr "Cumrai&gh..." - -#~ msgid "Add" -#~ msgstr "Cuir Leis" - -#~ msgid "Test" -#~ msgstr "Tástáil" - -#~ msgid "Properties" -#~ msgstr "Airíonna" - -#~ msgid "&Overwrite" -#~ msgstr "F&orscríobh" - -#~ msgid "Redo" -#~ msgstr "Athdhéan" - -#~ msgid "&Available:" -#~ msgstr "&Ar Fáil:" - -#~ msgid "&Selected:" -#~ msgstr "&Roghnaithe:" - -#~ msgctxt "KCharSelect section name" -#~ msgid "European Alphabets" -#~ msgstr "Aibítrí Eorpacha" - -#~ msgctxt "KCharSelect section name" -#~ msgid "African Scripts" -#~ msgstr "Scripteanna Afracacha" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Middle Eastern Scripts" -#~ msgstr "Scripteanna an Mheánoirthir" - -#~ msgctxt "KCharSelect section name" -#~ msgid "South Asian Scripts" -#~ msgstr "Scripteanna na hÁise Theas" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Philippine Scripts" -#~ msgstr "Scripteanna Filipíneacha" - -#~ msgctxt "KCharSelect section name" -#~ msgid "South East Asian Scripts" -#~ msgstr "Scripteanna na hÁise Thoir Theas" - -#~ msgctxt "KCharSelect section name" -#~ msgid "East Asian Scripts" -#~ msgstr "Scripteanna na hÁise Thoir" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Central Asian Scripts" -#~ msgstr "Scripteanna Lár na hÁise" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Other Scripts" -#~ msgstr "Scripteanna Eile" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Symbols" -#~ msgstr "Siombailí" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Mathematical Symbols" -#~ msgstr "Siombailí Matamaiticiúla" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Phonetic Symbols" -#~ msgstr "Siombailí Foghracha" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Combining Diacritical Marks" -#~ msgstr "Comharthaí Snaidhmthe Diaicritice" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Other" -#~ msgstr "Eile" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Basic Latin" -#~ msgstr "Bun-Laidineach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin-1 Supplement" -#~ msgstr "Forlíonadh Laidineach 1" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-A" -#~ msgstr "Laidineach Breisithe A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-B" -#~ msgstr "Laidineach Breisithe B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "IPA Extensions" -#~ msgstr "Eisínteachtaí IPA" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Spacing Modifier Letters" -#~ msgstr "Litreacha Bunathraitheora Spásála" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Diacritical Marks" -#~ msgstr "Comharthaí Snaidhmthe Diaicritice" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Greek and Coptic" -#~ msgstr "Gréigis agus Coptais" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic" -#~ msgstr "Coireallach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic Supplement" -#~ msgstr "Forlíonadh Coireallach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Armenian" -#~ msgstr "Airméinis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hebrew" -#~ msgstr "Eabhrais" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic" -#~ msgstr "Araibis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Syriac" -#~ msgstr "Síris" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic Supplement" -#~ msgstr "Forlíonadh Arabach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Thaana" -#~ msgstr "Tánach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "NKo" -#~ msgstr "NKo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Samaritan" -#~ msgstr "Samárach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Mandaic" -#~ msgstr "Mandaech" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Devanagari" -#~ msgstr "Déiveanágraí" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bengali" -#~ msgstr "Beangáilis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Gurmukhi" -#~ msgstr "Gurmúcaí" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Gujarati" -#~ msgstr "Gúisearáitis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Oriya" -#~ msgstr "Oirísis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tamil" -#~ msgstr "Tamailis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Telugu" -#~ msgstr "Teileagúis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kannada" -#~ msgstr "Cannadais" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Malayalam" -#~ msgstr "Mailéalaimis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Sinhala" -#~ msgstr "Siolóinis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Thai" -#~ msgstr "Téalainnis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Lao" -#~ msgstr "Láóis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tibetan" -#~ msgstr "Tibéidis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Myanmar" -#~ msgstr "Maenmarais" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Georgian" -#~ msgstr "Seoirsis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Jamo" -#~ msgstr "Seamó Hangalach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic" -#~ msgstr "Aetópach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic Supplement" -#~ msgstr "Forlíonadh Aetópach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cherokee" -#~ msgstr "Seiricis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Unified Canadian Aboriginal Syllabics" -#~ msgstr "Siollaigh Bundúchasacha Ceanadacha Aontaithe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ogham" -#~ msgstr "Ogham" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Runic" -#~ msgstr "Rúnach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tagalog" -#~ msgstr "Tagálaigis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hanunoo" -#~ msgstr "Hanunoo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Buhid" -#~ msgstr "Búidis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tagbanwa" -#~ msgstr "Tagbánbhais" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Khmer" -#~ msgstr "Ciméiris" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Mongolian" -#~ msgstr "Mongóilis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Unified Canadian Aboriginal Syllabics Extended" -#~ msgstr "Siollaigh Bundúchasacha Ceanadacha Aontaithe Breisithe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Limbu" -#~ msgstr "Limbúis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tai Le" -#~ msgstr "Tai Le" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "New Tai Lue" -#~ msgstr "Tai Lue Nua" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Khmer Symbols" -#~ msgstr "Siombailí Ciméaracha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Buginese" -#~ msgstr "Búiginis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tai Tham" -#~ msgstr "Tai Tham" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Balinese" -#~ msgstr "Báilinis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Sundanese" -#~ msgstr "Sundánach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Batak" -#~ msgstr "Batacach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Lepcha" -#~ msgstr "Lepcha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ol Chiki" -#~ msgstr "Ol Chiki" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Vedic Extensions" -#~ msgstr "Eisínteachtaí Véideacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Phonetic Extensions" -#~ msgstr "Eisínteachtaí Foghracha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Phonetic Extensions Supplement" -#~ msgstr "Forlíonadh Eisínteachtaí Foghracha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Diacritical Marks Supplement" -#~ msgstr "Forlíonadh Comharthaí Snaidhmthe Diaicritice" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended Additional" -#~ msgstr "Laidin Bhreisithe Breise" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Greek Extended" -#~ msgstr "Gréigis Bhreisithe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "General Punctuation" -#~ msgstr "Poncaíocht Ghinearálta" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Superscripts and Subscripts" -#~ msgstr "Forscripteanna agus Foscripteanna" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Currency Symbols" -#~ msgstr "Siombailí Airgeadra" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Diacritical Marks for Symbols" -#~ msgstr "Comharthaí Snaidhmthe Diaicritice le Siombailí" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Letterlike Symbols" -#~ msgstr "Siombailí Cosúil Le Litreacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Number Forms" -#~ msgstr "Foirmeacha Uimhreacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arrows" -#~ msgstr "Saigheada" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Mathematical Operators" -#~ msgstr "Oibreoirí Matamaiticiúla" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Technical" -#~ msgstr "Carachtair Éagsúla Teicniúla" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Control Pictures" -#~ msgstr "Pictiúir Rialacháin" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Optical Character Recognition" -#~ msgstr "Aithint Optúil Carachtar" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Enclosed Alphanumerics" -#~ msgstr "Carachtair Alfa-Uimhriúla Iniata" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Box Drawing" -#~ msgstr "Líníocht Bhoscaí" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Block Elements" -#~ msgstr "Eilimintí Blocála" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Geometric Shapes" -#~ msgstr "Fíoracha Céimseatúla" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Symbols" -#~ msgstr "Siombailí Éagsúla" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Dingbats" -#~ msgstr "Comharthaí Chlódóra" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Mathematical Symbols-A" -#~ msgstr "Siombailí Éagsúla Matamaiticiúla-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Arrows-A" -#~ msgstr "Saighde Forlíontacha-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Braille Patterns" -#~ msgstr "Patrúin Braille" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Arrows-B" -#~ msgstr "Saighde Forlíontacha-B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Mathematical Symbols-B" -#~ msgstr "Siombailí Éagsúla Matamaiticiúla-B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Mathematical Operators" -#~ msgstr "Oibreoirí Forlíontacha Matamaiticiúla" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Miscellaneous Symbols and Arrows" -#~ msgstr "Siombailí agus Saighde Éagsúla" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Glagolitic" -#~ msgstr "Glagólaitis" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-C" -#~ msgstr "Laidineach Breisithe C" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Coptic" -#~ msgstr "Coptais" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Georgian Supplement" -#~ msgstr "Forlíonadh Seoirsise" - -# Berber alphabet -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tifinagh" -#~ msgstr "Tifinagh" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic Extended" -#~ msgstr "Aetópach Breisithe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic Extended-A" -#~ msgstr "Coireallach Breisithe A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Supplemental Punctuation" -#~ msgstr "Poncaíocht Fhorlíontach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Radicals Supplement" -#~ msgstr "Forlíonadh Fréamhacha CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kangxi Radicals" -#~ msgstr "Fréamhacha Kangxi" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ideographic Description Characters" -#~ msgstr "Carachtair Don Chur Síos Idéagrafach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Symbols and Punctuation" -#~ msgstr "Siombailí agus Poncaíocht CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hiragana" -#~ msgstr "Hireagánach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Katakana" -#~ msgstr "Catacánach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bopomofo" -#~ msgstr "Bopomofo" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Compatibility Jamo" -#~ msgstr "Comhoiriúnacht Seamó Hangalach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kanbun" -#~ msgstr "Kanbun" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bopomofo Extended" -#~ msgstr "Bopomofo Breisithe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Strokes" -#~ msgstr "Stríocaí CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Katakana Phonetic Extensions" -#~ msgstr "Eisínteachtaí Foghracha Catacánacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Enclosed CJK Letters and Months" -#~ msgstr "Litreacha agus Míonna CJK-Iniata" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Compatibility" -#~ msgstr "Comhoiriúnacht CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Unified Ideographs Extension A" -#~ msgstr "Idéagraif Aontaithe CJK-Eisínteacht A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Yijing Hexagram Symbols" -#~ msgstr "Siombailí Heicseagraim Yijing" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Unified Ideographs" -#~ msgstr "Idéagraif Aontaithe CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Yi Syllables" -#~ msgstr "Siollaí Yi" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Yi Radicals" -#~ msgstr "Fréamhacha Yi" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Lisu" -#~ msgstr "Lisu" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Vai" -#~ msgstr "Vai" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cyrillic Extended-B" -#~ msgstr "Coireallach Breisithe B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Bamum" -#~ msgstr "Bamum" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Modifier Tone Letters" -#~ msgstr "Litreacha Bunathraitheora Tuine" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Latin Extended-D" -#~ msgstr "Laidineach Breisithe D" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Syloti Nagri" -#~ msgstr "Syloti Nagri" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Common Indic Number Forms" -#~ msgstr "Uimhreacha Coitianta Indiacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Phags-pa" -#~ msgstr "Phags-pa" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Saurashtra" -#~ msgstr "Saurashtra" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Devanagari Extended" -#~ msgstr "Déiveanágraí Breisithe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Kayah Li" -#~ msgstr "Kayah Li" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Rejang" -#~ msgstr "Rejang" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Jamo Extended-A" -#~ msgstr "Seamó Hangalach Breisithe-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Javanese" -#~ msgstr "Iávach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Cham" -#~ msgstr "Cham" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Myanmar Extended-A" -#~ msgstr "Maenmar Breisithe-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Tai Viet" -#~ msgstr "Tai Viet" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Ethiopic Extended-A" -#~ msgstr "Aetópach Breisithe-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Meetei Mayek" -#~ msgstr "Meetei Mayek" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Syllables" -#~ msgstr "Siollaí Hangalacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Hangul Jamo Extended-B" -#~ msgstr "Seamó Hangalach Breisithe-B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "High Surrogates" -#~ msgstr "Ionadaithe Arda" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "High Private Use Surrogates" -#~ msgstr "Ionadaithe Arda Don Úsáid Phríobháideach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Low Surrogates" -#~ msgstr "Ionadaithe Ísle" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Private Use Area" -#~ msgstr "Úsáid Phríobháideach" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Compatibility Ideographs" -#~ msgstr "Idéagraif Chomhoiriúnachta CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Alphabetic Presentation Forms" -#~ msgstr "Foirmeacha Taispeána Aibítreacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic Presentation Forms-A" -#~ msgstr "Foirmeacha Taispeána Araibise-A" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Variation Selectors" -#~ msgstr "Roghnóirí Athruithe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Vertical Forms" -#~ msgstr "Foirmeacha Ingearacha" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Combining Half Marks" -#~ msgstr "Leathmharcanna Snaidhmthe" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "CJK Compatibility Forms" -#~ msgstr "Foirmeacha Comhoiriúnachta CJK" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Small Form Variants" -#~ msgstr "Foirmeacha Malartacha Beaga" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Arabic Presentation Forms-B" -#~ msgstr "Foirmeacha Taispeána Araibise-B" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Halfwidth and Fullwidth Forms" -#~ msgstr "Foirmeacha Lánleithid agus Leathleithid" - -#~ msgctxt "KCharselect unicode block name" -#~ msgid "Specials" -#~ msgstr "Carachtair Speisialta" - -#~ msgid "Enter a search term or character here" -#~ msgstr "Iontráil téarma cuardaigh nó carachtar anseo" - -#~ msgctxt "Goes to previous character" -#~ msgid "Previous in History" -#~ msgstr "An Carachtar Roimhe Seo sa Stair" - -#~ msgid "Previous Character in History" -#~ msgstr "An Carachtar Roimhe Seo sa Stair" - -#~ msgctxt "Goes to next character" -#~ msgid "Next in History" -#~ msgstr "An Chéad Charactar Eile sa Stair" - -#~ msgid "Next Character in History" -#~ msgstr "An Chéad Charactar Eile sa Stair" - -#~ msgid "Select a category" -#~ msgstr "Roghnaigh catagóir" - -#~ msgid "Select a block to be displayed" -#~ msgstr "Roghnaigh bloc le taispeáint" - -#~ msgid "Set font" -#~ msgstr "Socraigh an cló" - -#~ msgid "Set font size" -#~ msgstr "Socraigh clómhéid" - -#~ msgid "Character:" -#~ msgstr "Carachtar:" - -#~ msgid "Name: " -#~ msgstr "Ainm: " - -#~ msgid "Annotations and Cross References" -#~ msgstr "Anótálacha agus Crostagairtí" - -#~ msgid "Alias names:" -#~ msgstr "Ailiasanna:" - -#~ msgid "Notes:" -#~ msgstr "Nótaí:" - -#~ msgid "See also:" -#~ msgstr "Féach freisin:" - -#~ msgid "Equivalents:" -#~ msgstr "Macasamhla:" - -#~ msgid "Approximate equivalents:" -#~ msgstr "Macasamhla garbha:" - -#~ msgid "CJK Ideograph Information" -#~ msgstr "Eolas faoi idéagraif CJK" - -#~ msgid "Definition in English: " -#~ msgstr "Sainmhíniú as Béarla: " - -#~ msgid "Mandarin Pronunciation: " -#~ msgstr "Fuaimniú Mandairínise: " - -#~ msgid "Cantonese Pronunciation: " -#~ msgstr "Fuaimniú Cantainise: " - -#~ msgid "Japanese On Pronunciation: " -#~ msgstr "Fuaimniú Seapáinise \"On\": " - -#~ msgid "Japanese Kun Pronunciation: " -#~ msgstr "Fuaimniú Seapáinise \"Kun\": " - -#~ msgid "Tang Pronunciation: " -#~ msgstr "Fuaimniú Tang: " - -#~ msgid "Korean Pronunciation: " -#~ msgstr "Fuaimniú Cóiréise: " - -#~ msgid "General Character Properties" -#~ msgstr "Airíonna Ginearálta Carachtair" - -#~ msgid "Block: " -#~ msgstr "Bloc: " - -#~ msgid "Unicode category: " -#~ msgstr "Catagóir Unicode: " - -#~ msgid "Various Useful Representations" -#~ msgstr "Léirithe Éagsúla Úsáideacha" - -#~ msgid "UTF-8:" -#~ msgstr "UTF-8:" - -#~ msgid "UTF-16: " -#~ msgstr "UTF-16: " - -#~ msgid "C octal escaped UTF-8: " -#~ msgstr "UTF-8 mar charachtair ochtnártha C: " - -#~ msgid "XML decimal entity:" -#~ msgstr "Aonán deachúlach XML:" - -#~ msgid "Unicode code point:" -#~ msgstr "Códphointe Unicode:" - -#~ msgctxt "Character" -#~ msgid "In decimal:" -#~ msgstr "Deachúlach:" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "<Úsáid Phríobháideach>" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "Non-printable" -#~ msgstr "Neamh-inphriontáilte" - -#~ msgid "Other, Control" -#~ msgstr "Eile, Rialúcháin" - -#~ msgid "Other, Format" -#~ msgstr "Eile, Formáid" - -#~ msgid "Other, Not Assigned" -#~ msgstr "Eile, Ní Ceaptha" - -#~ msgid "Other, Private Use" -#~ msgstr "Eile, Úsáid Phríobháideach" - -#~ msgid "Other, Surrogate" -#~ msgstr "Eile, Ionadaí" - -#~ msgid "Letter, Lowercase" -#~ msgstr "Litir, Cás Íochtair" - -#~ msgid "Letter, Modifier" -#~ msgstr "Litir, Bunathraitheoir" - -#~ msgid "Letter, Other" -#~ msgstr "Litir, Eile" - -#~ msgid "Letter, Titlecase" -#~ msgstr "Litir, Teideal" - -#~ msgid "Letter, Uppercase" -#~ msgstr "Litir, Cás Uachtair" - -#~ msgid "Mark, Spacing Combining" -#~ msgstr "Marc, Spásáil agus Snaidhmeadh" - -#~ msgid "Mark, Enclosing" -#~ msgstr "Marc, Fálú" - -#~ msgid "Mark, Non-Spacing" -#~ msgstr "Marc, Ní Spásáil" - -#~ msgid "Number, Decimal Digit" -#~ msgstr "Uimhir, Digit Dheachúlach" - -#~ msgid "Number, Letter" -#~ msgstr "Uimhir, Litir" - -#~ msgid "Number, Other" -#~ msgstr "Uimhir, Eile" - -#~ msgid "Punctuation, Connector" -#~ msgstr "Poncaíocht, Ceanglóir" - -#~ msgid "Punctuation, Dash" -#~ msgstr "Poncaíocht, Fleasc" - -#~ msgid "Punctuation, Close" -#~ msgstr "Poncaíocht, Deireadh" - -#~ msgid "Punctuation, Final Quote" -#~ msgstr "Poncaíocht, Deireadh Athfhriotail" - -#~ msgid "Punctuation, Initial Quote" -#~ msgstr "Poncaíocht, Tosach Athfhriotail" - -#~ msgid "Punctuation, Other" -#~ msgstr "Poncaíocht, Eile" - -#~ msgid "Punctuation, Open" -#~ msgstr "Poncaíocht, Oscailte" - -#~ msgid "Symbol, Currency" -#~ msgstr "Siombail, Airgeadra" - -#~ msgid "Symbol, Modifier" -#~ msgstr "Siombail, Bunathraitheoir" - -#~ msgid "Symbol, Math" -#~ msgstr "Siombail, Matamaitic" - -#~ msgid "Symbol, Other" -#~ msgstr "Siombail, Eile" - -#~ msgid "Separator, Line" -#~ msgstr "Deighilteoir, Líne" - -#~ msgid "Separator, Paragraph" -#~ msgstr "Deighilteoir, Alt" - -#~ msgid "Separator, Space" -#~ msgstr "Deighilteoir, Spás" - -#~ msgid "You will be asked to authenticate before saving" -#~ msgstr "Caithfidh tú fíordheimhniú a dhéanamh roimh shábháil" - -#~ msgid "You are not allowed to save the configuration" -#~ msgstr "Níl cead agat an chumraíocht a shábháil" - -#~ msgctxt "@option next year" -#~ msgid "Next Year" -#~ msgstr "An bhliain seo chugainn" - -#~ msgctxt "@option next month" -#~ msgid "Next Month" -#~ msgstr "An mhí seo chugainn" - -#~ msgctxt "@option next week" -#~ msgid "Next Week" -#~ msgstr "An tseachtain seo chugainn" - -#~ msgctxt "@option tomorrow" -#~ msgid "Tomorrow" -#~ msgstr "Amárach" - -#~ msgctxt "@option today" -#~ msgid "Today" -#~ msgstr "Inniu" - -#~ msgctxt "@option yesterday" -#~ msgid "Yesterday" -#~ msgstr "Inné" - -#~ msgctxt "@option last week" -#~ msgid "Last Week" -#~ msgstr "An tseachtain seo caite" - -#~ msgctxt "@option last month" -#~ msgid "Last Month" -#~ msgstr "An mhí seo caite" - -#~ msgctxt "@option last year" -#~ msgid "Last Year" -#~ msgstr "Anuraidh" - -#~ msgctxt "@option do not specify a date" -#~ msgid "No Date" -#~ msgstr "Gan Dáta" - -#~ msgctxt "@info" -#~ msgid "The date you entered is invalid" -#~ msgstr "Chuir tú dáta neamhbhailí isteach" - -#~ msgctxt "@info" -#~ msgid "Date cannot be earlier than %1" -#~ msgstr "Ní cheadaítear dáta roimh %1" - -#~ msgctxt "@info" -#~ msgid "Date cannot be later than %1" -#~ msgstr "Ní cheadaítear dáta tar éis %1" - -#~ msgid "Week %1" -#~ msgstr "Seachtain %1" - -#~ msgid "Next year" -#~ msgstr "An bhliain seo chugainn" - -#~ msgid "Previous year" -#~ msgstr "Anuraidh" - -#~ msgid "Next month" -#~ msgstr "An mhí seo chugainn" - -#~ msgid "Previous month" -#~ msgstr "An mhí roimhe seo" - -#~ msgid "Select a week" -#~ msgstr "Roghnaigh seachtain" - -#~ msgid "Select a month" -#~ msgstr "Roghnaigh mí" - -#~ msgid "Select a year" -#~ msgstr "Roghnaigh bliain" - -#~ msgid "Select the current day" -#~ msgstr "Roghnaigh an lá reatha" - -#~ msgctxt "UTC time zone" -#~ msgid "UTC" -#~ msgstr "AUL (UTC)" - -#~ msgctxt "No specific time zone" -#~ msgid "Floating" -#~ msgstr "Athraitheach" - -#~ msgctxt "@info" -#~ msgid "" -#~ "The entered date and time is before the minimum allowed date and time." -#~ msgstr "" -#~ "Tá an dáta agus an t-am a chuir tú isteach roimh an dáta is luaithe a " -#~ "cheadaítear." - -#~ msgctxt "@info" -#~ msgid "" -#~ "The entered date and time is after the maximum allowed date and time." -#~ msgstr "" -#~ "Tá an dáta agus an t-am a chuir tú isteach tar éis an dáta is déanaí a " -#~ "cheadaítear." - -#~ msgid "&Add" -#~ msgstr "C&uir Leis" - -#~ msgid "&Remove" -#~ msgstr "&Bain" - -#~ msgid "Move &Up" -#~ msgstr "Bog S&uas" - -#~ msgid "Move &Down" -#~ msgstr "Bog Sí&os" - -#~ msgid "&Help" -#~ msgstr "&Cabhair" - -#~ msgid "Clear &History" -#~ msgstr "Glan an &Stair" - -#~ msgid "No further items in the history." -#~ msgstr "Níl aon mhír eile sa stair." - -#~ msgid "Shortcut '%1' in Application %2 for action %3\n" -#~ msgstr "Aicearra '%1' i bhFeidhmchlár %2 do ghníomh %3\n" - -#~ msgctxt "" -#~ "%1 is the number of conflicts (hidden), %2 is the key sequence of the " -#~ "shortcut that is problematic" -#~ msgid "The shortcut '%2' conflicts with the following key combination:\n" -#~ msgid_plural "" -#~ "The shortcut '%2' conflicts with the following key combinations:\n" -#~ msgstr[0] "" -#~ "Tagann aicearra '%2' salach ar na teaglamaí eochracha seo a leanas:\n" -#~ msgstr[1] "" -#~ "Tagann aicearra '%2' salach ar na teaglamaí eochracha seo a leanas:\n" -#~ msgstr[2] "" -#~ "Tagann aicearra '%2' salach ar na teaglamaí eochracha seo a leanas:\n" -#~ msgstr[3] "" -#~ "Tagann aicearra '%2' salach ar na teaglamaí eochracha seo a leanas:\n" -#~ msgstr[4] "" -#~ "Tagann aicearra '%2' salach ar na teaglamaí eochracha seo a leanas:\n" - -#~ msgctxt "%1 is the number of shortcuts with which there is a conflict" -#~ msgid "Conflict with Registered Global Shortcut" -#~ msgid_plural "Conflict with Registered Global Shortcuts" -#~ msgstr[0] "Coimhlint le hAicearra Comhchoiteann Cláraithe" -#~ msgstr[1] "Coimhlint le hAicearraí Comhchoiteanna Cláraithe" -#~ msgstr[2] "Coimhlint le hAicearraí Comhchoiteanna Cláraithe" -#~ msgstr[3] "Coimhlint le hAicearraí Comhchoiteanna Cláraithe" -#~ msgstr[4] "Coimhlint le hAicearraí Comhchoiteanna Cláraithe" - -#~ msgctxt "%1 is the number of conflicts" -#~ msgid "Shortcut Conflict" -#~ msgid_plural "Shortcut Conflicts" -#~ msgstr[0] "Coinbhleacht idir Aicearraí" -#~ msgstr[1] "Coinbhleachtaí idir Aicearraí" -#~ msgstr[2] "Coinbhleachtaí idir Aicearraí" -#~ msgstr[3] "Coinbhleachtaí idir Aicearraí" -#~ msgstr[4] "Coinbhleachtaí idir Aicearraí" - -#~ msgid "Shortcut '%1' for action '%2'\n" -#~ msgstr "Aicearra '%1' do ghníomh '%2'\n" - -#~ msgctxt "%1 is the number of ambigious shortcut clashes (hidden)" -#~ msgid "" -#~ "The \"%2\" shortcut is ambiguous with the following shortcut.\n" -#~ "Do you want to assign an empty shortcut to this action?\n" -#~ "%3" -#~ msgid_plural "" -#~ "The \"%2\" shortcut is ambiguous with the following shortcuts.\n" -#~ "Do you want to assign an empty shortcut to these actions?\n" -#~ "%3" -#~ msgstr[0] "" -#~ "Tagann aicearra \"%2\" salach ar an aicearra seo a leanas.\n" -#~ "An bhfuil fonn ort aicearra folamh a thabhairt don ghníomh seo?\n" -#~ "%3" -#~ msgstr[1] "" -#~ "Tagann aicearra \"%2\" salach ar na haicearraí seo a leanas.\n" -#~ "An bhfuil fonn ort aicearraí folmha a thabhairt do na gníomhartha seo?\n" -#~ "%3" -#~ msgstr[2] "" -#~ "Tagann aicearra \"%2\" salach ar na haicearraí seo a leanas.\n" -#~ "An bhfuil fonn ort aicearraí folmha a thabhairt do na gníomhartha seo?\n" -#~ "%3" -#~ msgstr[3] "" -#~ "Tagann aicearra \"%2\" salach ar na haicearraí seo a leanas.\n" -#~ "An bhfuil fonn ort aicearraí folmha a thabhairt do na gníomhartha seo?\n" -#~ "%3" -#~ msgstr[4] "" -#~ "Tagann aicearra \"%2\" salach ar na haicearraí seo a leanas.\n" -#~ "An bhfuil fonn ort aicearraí folmha a thabhairt do na gníomhartha seo?\n" -#~ "%3" - -#~ msgid "Shortcut conflict" -#~ msgstr "Coinbhleacht idir Aicearraí" - -#~ msgid "" -#~ "The '%1' key combination is already used by the %2 action." -#~ "
      Please select a different one.
      " -#~ msgstr "" -#~ "Tá '%1' comhcheangailte leis an ngníomh %2 cheana." -#~ "
      Roghnaigh ceann eile, le do thoil.
      " - -#~ msgid "" -#~ "Click on the button, then enter the shortcut like you would in the " -#~ "program.\n" -#~ "Example for Ctrl+a: hold the Ctrl key and press a." -#~ msgstr "" -#~ "Cliceáil an cnaipe, ansin cuir isteach an t-aicearra ba mhaith leat sa " -#~ "ríomhchlár.\n" -#~ "Mar shampla, le haghaidh Ctrl+a: coinnigh an eochair Ctrl síos agus " -#~ "brúigh 'a'." - -#~ msgid "Reserved Shortcut" -#~ msgstr "Aicearra In Áirithe" - -#~ msgid "" -#~ "The F12 key is reserved on Windows, so cannot be used for a global " -#~ "shortcut.\n" -#~ "Please choose another one." -#~ msgstr "" -#~ "Tá an eochair F12 in áirithe ar chóras Windows, agus mar sin ní féidir é " -#~ "a úsáid mar aicearra comhchoiteann.\n" -#~ "Roghnaigh ceann eile." - -#~ msgid "Conflict with Standard Application Shortcut" -#~ msgstr "Coimhlint le hAicearra Feidhmchláir Chaighdeánaithe" - -#~ msgid "" -#~ "The '%1' key combination is also used for the standard action \"%2\" that " -#~ "some applications use.\n" -#~ "Do you really want to use it as a global shortcut as well?" -#~ msgstr "" -#~ "Tá '%1' comhcheangailte leis an ngníomh caighdeánach \"%2\" cheana, " -#~ "gníomh a úsáideann roinnt feidhmchlár.\n" -#~ "An bhfuil tú cinnte gur mian leat é a úsáid mar aicearra comhchoiteann " -#~ "freisin?" - -#~ msgctxt "What the user inputs now will be taken as the new shortcut" -#~ msgid "Input" -#~ msgstr "Ionchur" - -#~ msgid "The key you just pressed is not supported by Qt." -#~ msgstr "Ní thacaíonn Qt leis an eochair a bhrúigh tú anois beag." - -#~ msgid "Unsupported Key" -#~ msgstr "Eochair nach dtacaítear léi" - -#~ msgid "without name" -#~ msgstr "gan ainm" - -#~ msgctxt "Italic placeholder text in line edits: 0 no, 1 yes" -#~ msgid "1" -#~ msgstr "1" - -#~ msgctxt "@action:button Clear current text in the line edit" -#~ msgid "Clear text" -#~ msgstr "Glan an téacs" - -#~ msgctxt "@title:menu" -#~ msgid "Text Completion" -#~ msgstr "Comhlánú Téacs" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "None" -#~ msgstr "Neamhní" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Manual" -#~ msgstr "De Láimh" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Automatic" -#~ msgstr "Uathoibríoch" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Dropdown List" -#~ msgstr "Liosta Anuas" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Short Automatic" -#~ msgstr "Uathoibríoch Gearr" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Dropdown List && Automatic" -#~ msgstr "Liosta Anuas agus Uathoibríoch" - -#~ msgctxt "@item:inmenu Text Completion" -#~ msgid "Default" -#~ msgstr "Réamhshocrú" - -#~ msgid "Image Operations" -#~ msgstr "Oibríochtaí Íomhá" - -#~ msgid "&Rotate Clockwise" -#~ msgstr "&Rothlaigh go Deisealach" - -#~ msgid "Rotate &Counterclockwise" -#~ msgstr "Rothlaigh go &Tuathalach" - -#~ msgctxt "@action" -#~ msgid "Text &Color..." -#~ msgstr "Dath Téa&cs..." - -#~ msgctxt "@label stroke color" -#~ msgid "Color" -#~ msgstr "Dath" - -#~ msgctxt "@action" -#~ msgid "Text &Highlight..." -#~ msgstr "Aibhsiú &Téacs..." - -#~ msgctxt "@action" -#~ msgid "&Font" -#~ msgstr "&Cló" - -#~ msgctxt "@action" -#~ msgid "Font &Size" -#~ msgstr "Cló&mhéid" - -#~ msgctxt "@action boldify selected text" -#~ msgid "&Bold" -#~ msgstr "&Trom" - -#~ msgctxt "@action italicize selected text" -#~ msgid "&Italic" -#~ msgstr "&Iodálach" - -#~ msgctxt "@action underline selected text" -#~ msgid "&Underline" -#~ msgstr "&Líne Faoi" - -#~ msgctxt "@action" -#~ msgid "&Strike Out" -#~ msgstr "&Scríoblíne" - -#~ msgctxt "@action" -#~ msgid "Align &Left" -#~ msgstr "Ailínigh Ar &Chlé" - -#~ msgctxt "@label left justify" -#~ msgid "Left" -#~ msgstr "Ar Chlé" - -#~ msgctxt "@action" -#~ msgid "Align &Center" -#~ msgstr "Ailínigh &Sa Lár" - -#~ msgctxt "@label center justify" -#~ msgid "Center" -#~ msgstr "Sa Lár" - -#~ msgctxt "@action" -#~ msgid "Align &Right" -#~ msgstr "Ailínigh Ar &Dheis" - -#~ msgctxt "@label right justify" -#~ msgid "Right" -#~ msgstr "Ar Dheis" - -#~ msgctxt "@action" -#~ msgid "&Justify" -#~ msgstr "&Comhfhadaigh" - -#~ msgctxt "@label justify fill" -#~ msgid "Justify" -#~ msgstr "Comhfhadaigh" - -#~ msgctxt "@action" -#~ msgid "Left-to-Right" -#~ msgstr "Clé-go-Deas" - -#~ msgctxt "@label left-to-right" -#~ msgid "Left-to-Right" -#~ msgstr "Clé-go-Deas" - -#~ msgctxt "@action" -#~ msgid "Right-to-Left" -#~ msgstr "Deas-go-Clé" - -#~ msgctxt "@label right-to-left" -#~ msgid "Right-to-Left" -#~ msgstr "Deas-go-Clé" - -#~ msgctxt "@title:menu" -#~ msgid "List Style" -#~ msgstr "Stíl Liosta" - -#~ msgctxt "@item:inmenu no list style" -#~ msgid "None" -#~ msgstr "Gan Stíl" - -#~ msgctxt "@item:inmenu disc list style" -#~ msgid "Disc" -#~ msgstr "Diosca" - -#~ msgctxt "@item:inmenu circle list style" -#~ msgid "Circle" -#~ msgstr "Ciorcal" - -#~ msgctxt "@item:inmenu square list style" -#~ msgid "Square" -#~ msgstr "Cearnóg" - -#~ msgctxt "@item:inmenu numbered lists" -#~ msgid "123" -#~ msgstr "123" - -#~ msgctxt "@item:inmenu lowercase abc lists" -#~ msgid "abc" -#~ msgstr "abc" - -#~ msgctxt "@item:inmenu uppercase abc lists" -#~ msgid "ABC" -#~ msgstr "ABC" - -#~ msgctxt "@item:inmenu lower case roman numerals" -#~ msgid "i ii iii" -#~ msgstr "i ii iii" - -#~ msgctxt "@item:inmenu upper case roman numerals" -#~ msgid "I II III" -#~ msgstr "I II III" - -#~ msgctxt "@action" -#~ msgid "Increase Indent" -#~ msgstr "Méadaigh Eangú" - -#~ msgctxt "@action" -#~ msgid "Decrease Indent" -#~ msgstr "Laghdaigh Eangú" - -#~ msgctxt "@action" -#~ msgid "Insert Rule Line" -#~ msgstr "Ionsáigh Líne Rialach" - -#~ msgctxt "@action" -#~ msgid "Link" -#~ msgstr "Nasc" - -#~ msgctxt "@action" -#~ msgid "Format Painter" -#~ msgstr "Formáidigh Péintéir" - -#~ msgctxt "@action" -#~ msgid "To Plain Text" -#~ msgstr "Go Gnáth-Théacs" - -#~ msgctxt "@action" -#~ msgid "Subscript" -#~ msgstr "Foscript" - -#~ msgctxt "@action" -#~ msgid "Superscript" -#~ msgstr "Forscript" - -#~ msgid "&Copy Full Text" -#~ msgstr "&Cóipeáil Téacs Iomlán" - -#~ msgid "Nothing to spell check." -#~ msgstr "Faic le seiceáil." - -#~ msgid "Speak Text" -#~ msgstr "Léigh an Téacs" - -#~ msgid "Starting Jovie Text-to-Speech Service Failed" -#~ msgstr "Níorbh fhéidir Seirbhís Téacs-go-Caint Jovie a thosú" - -#~ msgid "No suggestions for %1" -#~ msgstr "Gan moltaí do %1" - -#~ msgid "Ignore" -#~ msgstr "Déan neamhaird de" - -#~ msgid "Add to Dictionary" -#~ msgstr "Cuir san Fhoclóir" - -#~ msgctxt "@info" -#~ msgid "The time you entered is invalid" -#~ msgstr "Chuir tú am neamhbhailí isteach" - -#~ msgctxt "@info" -#~ msgid "Time cannot be earlier than %1" -#~ msgstr "Ní cheadaítear am níos luaithe ná %1" - -#~ msgctxt "@info" -#~ msgid "Time cannot be later than %1" -#~ msgstr "Ní cheadaítear am tar éis %1" - -#~ msgctxt "Define an area in the time zone, like a town area" -#~ msgid "Area" -#~ msgstr "Ceantar" - -#~ msgctxt "Time zone" -#~ msgid "Region" -#~ msgstr "Réigiún" - -#~ msgid "Comment" -#~ msgstr "Nóta" - -#~ msgctxt "@title:menu" -#~ msgid "Show Text" -#~ msgstr "Taispeáin an Téacs" - -#~ msgctxt "@title:menu" -#~ msgid "Toolbar Settings" -#~ msgstr "Socruithe an Bharra Uirlisí" - -#~ msgctxt "Toolbar orientation" -#~ msgid "Orientation" -#~ msgstr "Treoshuíomh" - -#~ msgctxt "toolbar position string" -#~ msgid "Top" -#~ msgstr "Barr" - -#~ msgctxt "toolbar position string" -#~ msgid "Left" -#~ msgstr "Ar Clé" - -#~ msgctxt "toolbar position string" -#~ msgid "Right" -#~ msgstr "Ar Dheis" - -#~ msgctxt "toolbar position string" -#~ msgid "Bottom" -#~ msgstr "Bun" - -#~ msgid "Text Position" -#~ msgstr "Ionad an Téacs" - -#~ msgid "Icons Only" -#~ msgstr "Deilbhíní Amháin" - -#~ msgid "Text Only" -#~ msgstr "Téacs Amháin" - -#~ msgid "Text Alongside Icons" -#~ msgstr "Téacs Taobh Leis na Deilbhíní" - -#~ msgid "Text Under Icons" -#~ msgstr "Téacs Faoi na Deilbhíní" - -#~ msgid "Icon Size" -#~ msgstr "Méid na nDeilbhíní" - -#~ msgctxt "@item:inmenu Icon size" -#~ msgid "Default" -#~ msgstr "Réamhshocrú" - -#~ msgid "Small (%1x%2)" -#~ msgstr "Beag (%1×%2)" - -#~ msgid "Medium (%1x%2)" -#~ msgstr "Meánach (%1×%2)" - -#~ msgid "Large (%1x%2)" -#~ msgstr "Mór (%1×%2)" - -#~ msgid "Huge (%1x%2)" -#~ msgstr "Ollmhór (%1×%2)" - -#~ msgid "Lock Toolbar Positions" -#~ msgstr "Cuir Barraí Uirlisí Faoi Ghlas" - -#~ msgctxt "@action:intoolbar Text label of toolbar button" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@info:tooltip Tooltip of toolbar button" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Desktop %1" -#~ msgstr "Deasc %1" - -#~ msgid "Add to Toolbar" -#~ msgstr "Cuir leis an mBarra Uirlisí" - -#~ msgid "Configure Shortcut..." -#~ msgstr "Cumraigh Aicearra..." - -#~ msgid "Toolbars Shown" -#~ msgstr "Barraí Uirlisí Ar Taispeáint" - -#~ msgid "No text" -#~ msgstr "Gan téacs" - -#~ msgid "&File" -#~ msgstr "&Comhad" - -#~ msgid "&Game" -#~ msgstr "&Cluiche" - -#~ msgid "&Edit" -#~ msgstr "&Eagar" - -#~ msgctxt "@title:menu Game move" -#~ msgid "&Move" -#~ msgstr "&Bog" - -#~ msgid "&View" -#~ msgstr "&Amharc" - -#~ msgid "&Go" -#~ msgstr "&Téigh" - -#~ msgid "&Bookmarks" -#~ msgstr "&Leabharmharcanna" - -#~ msgid "&Tools" -#~ msgstr "&Uirlisí" - -#~ msgid "&Settings" -#~ msgstr "&Socruithe" - -#~ msgid "Main Toolbar" -#~ msgstr "Príomhbharra Uirlisí" - -#~ msgid "Builds Qt widget plugins from an ini style description file." -#~ msgstr "Déanann breiseáin ghiuirléid Qt as comhad den stíl ini." - -#~ msgid "Input file" -#~ msgstr "Inchomhad" - -#~ msgid "Output file" -#~ msgstr "Aschomhad" - -#~ msgid "Name of the plugin class to generate" -#~ msgstr "Ainm na haicme breiseáin le giniúint" - -#~ msgid "Default widget group name to display in designer" -#~ msgstr "" -#~ "Ainm an ghrúpa réamhshocraithe giuirléidí le taispeáint sa dearthóir" - -#~ msgid "makekdewidgets" -#~ msgstr "makekdewidgets" - -#~ msgid "(C) 2004-2005 Ian Reinhart Geiser" -#~ msgstr "© 2004-2005 Ian Reinhart Geiser" - -#~ msgid "Ian Reinhart Geiser" -#~ msgstr "Ian Reinhart Geiser" - -#~ msgid "Daniel Molkentin" -#~ msgstr "Daniel Molkentin" - -#~ msgid "Call Stack" -#~ msgstr "Cruach Glao" - -#~ msgid "Call" -#~ msgstr "Glao" - -#~ msgid "Line" -#~ msgstr "Líne" - -#~ msgid "Console" -#~ msgstr "Consól" - -#~ msgid "Enter" -#~ msgstr "Iontráil" - -#~ msgid "" -#~ "Unable to find the Kate editor component;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Ní féidir comhpháirt eagarthóra Kate a aimsiú;\n" -#~ "seiceáil do shuiteáil KDE le do thoil." - -#~ msgid "Breakpoint" -#~ msgstr "Brisphointe" - -#~ msgid "JavaScript Debugger" -#~ msgstr "Dífhabhtóir JavaScript" - -#~ msgid "&Break at Next Statement" -#~ msgstr "&Bris ag an chéad ráiteas eile" - -#~ msgid "Break at Next" -#~ msgstr "Bris ag an chéad ráiteas eile" - -#~ msgid "Continue" -#~ msgstr "Lean ar aghaidh" - -#~ msgid "Step Over" -#~ msgstr "Céimnigh Thart" - -#~ msgid "Step Into" -#~ msgstr "Céimnigh Isteach" - -#~ msgid "Step Out" -#~ msgstr "Céimnigh Amach" - -#~ msgid "Reindent Sources" -#~ msgstr "Eangaigh Foinsí Arís" - -#~ msgid "Report Exceptions" -#~ msgstr "Tabhair Tuairisc ar Eisceachtaí" - -#~ msgid "&Debug" -#~ msgstr "&Dífhabhtaigh" - -#~ msgid "Close source" -#~ msgstr "Dún foinse" - -#~ msgid "Ready" -#~ msgstr "Réidh" - -#~ msgid "Parse error at %1 line %2" -#~ msgstr "Earráid parsála ag %1 líne %2" - -#~ msgid "" -#~ "An error occurred while attempting to run a script on this page.\n" -#~ "\n" -#~ "%1 line %2:\n" -#~ "%3" -#~ msgstr "" -#~ "Tharla earráid agus iarracht á dhéanamh script ón leathanach seo a rith.\n" -#~ "\n" -#~ "%1 líne %2:\n" -#~ "%3" - -#~ msgid "" -#~ "Do not know where to evaluate the expression. Please pause a script or " -#~ "open a source file." -#~ msgstr "" -#~ "Níl a fhios agam cén áit ar chóir an slonn a luacháil. Cuir script ar " -#~ "shos nó oscail comhad foinse, le do thoil." - -#~ msgid "Evaluation threw an exception %1" -#~ msgstr "Caitheadh eisceacht %1 le linn luachála" - -#~ msgid "JavaScript Error" -#~ msgstr "Earráid JavaScript" - -#~ msgid "&Do not show this message again" -#~ msgstr "Ná taispeáin an &teachtaireacht seo arís" - -#~ msgid "Local Variables" -#~ msgstr "Athróga Logánta" - -#~ msgid "Reference" -#~ msgstr "Tagairt" - -#~ msgid "Loaded Scripts" -#~ msgstr "Scripteanna Luchtaithe" - -#~ msgid "" -#~ "A script on this page is causing KHTML to freeze. If it continues to run, " -#~ "other applications may become less responsive.\n" -#~ "Do you want to stop the script?" -#~ msgstr "" -#~ "Tá KHTML reoite de bharr scripte ar an leathanach seo. Má leanann sé ag " -#~ "rith, seans go n-éireoidh feidhmchláir eile níos moille.\n" -#~ "An bhfuil fonn ort an script a stopadh?" - -#~ msgid "JavaScript" -#~ msgstr "JavaScript" - -#~ msgid "&Stop Script" -#~ msgstr "&Stop an Script" - -#~ msgid "Confirmation: JavaScript Popup" -#~ msgstr "Deimhniú: Preabfhuinneog JavaScript" - -#~ msgid "" -#~ "This site is submitting a form which will open up a new browser window " -#~ "via JavaScript.\n" -#~ "Do you want to allow the form to be submitted?" -#~ msgstr "" -#~ "Tá an suíomh seo ar tí foirm a sheoladh a osclóidh fuinneog nua " -#~ "bhrabhsála trí JavaScript.\n" -#~ "An bhfuil fonn ort an fhoirm a cheadú?" - -#~ msgid "" -#~ "This site is submitting a form which will open

      %1

      in a new " -#~ "browser window via JavaScript.
      Do you want to allow the form to be " -#~ "submitted?
      " -#~ msgstr "" -#~ "Tá an suíomh seo ar tí foirm a sheoladh a osclóidh

      %1

      i " -#~ "bhfuinneog nua bhrabhsála trí JavaScript.
      An bhfuil fonn ort an " -#~ "fhoirm a cheadú?
      " - -#~ msgid "Allow" -#~ msgstr "Ceadaigh" - -#~ msgid "Do Not Allow" -#~ msgstr "Ná Ceadaigh" - -#~ msgid "" -#~ "This site is requesting to open up a new browser window via JavaScript.\n" -#~ "Do you want to allow this?" -#~ msgstr "" -#~ "Tá an suíomh seo ag iarraidh fuinneog nua bhrabhsála a oscailt le " -#~ "JavaScript.\n" -#~ "An bhfuil fonn ort é seo a cheadú?" - -#~ msgid "" -#~ "This site is requesting to open

      %1

      in a new browser window via " -#~ "JavaScript.
      Do you want to allow this?
      " -#~ msgstr "" -#~ "Tá an suíomh seo ag iarraidh

      %1

      a oscailt i bhfuinneog nua " -#~ "bhrabhsála le JavaScript.
      An bhfuil fonn ort é seo a cheadú?
      " - -#~ msgid "Close window?" -#~ msgstr "Dún an fhuinneog?" - -#~ msgid "Confirmation Required" -#~ msgstr "Ní mór cinntiú" - -#~ msgid "" -#~ "Do you want a bookmark pointing to the location \"%1\" to be added to " -#~ "your collection?" -#~ msgstr "" -#~ "An bhfuil fonn ort leabharmharc ag déanamh tagairt leis an suíomh \"%1\" " -#~ "a chur le do chnuasach?" - -#~ msgid "" -#~ "Do you want a bookmark pointing to the location \"%1\" titled \"%2\" to " -#~ "be added to your collection?" -#~ msgstr "" -#~ "An bhfuil fonn ort leabharmharc ag déanamh tagairt leis an suíomh \"%1\" " -#~ "leis an teideal \"%2\" a chur le do chnuasach?" - -#~ msgid "JavaScript Attempted Bookmark Insert" -#~ msgstr "Rinne JavaScript iarracht leabharmharc a ionsáigh" - -#~ msgid "Insert" -#~ msgstr "Ionsáigh" - -#~ msgid "Disallow" -#~ msgstr "Ná ceadaigh" - -#~ msgid "" -#~ "The following files will not be uploaded because they could not be " -#~ "found.\n" -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Ní uasluchtófar na comhaid seo a leanas toisc nárbh fhéidir iad a " -#~ "aimsiú.\n" -#~ "An bhfuil fonn ort dul ar aghaidh?" - -#~ msgid "Submit Confirmation" -#~ msgstr "Seol Deimhniú" - -#~ msgid "&Submit Anyway" -#~ msgstr "&Seol ar aon chor" - -#~ msgid "" -#~ "You are about to transfer the following files from your local computer to " -#~ "the Internet.\n" -#~ "Do you really want to continue?" -#~ msgstr "" -#~ "Tá tú ar tí na comhaid seo a leanas a aistriú ó do ríomhaire logánta go " -#~ "dtí an tIdirlíon.\n" -#~ "An bhfuil tú cinnte gur mian leat leanúint ar aghaidh?" - -#~ msgid "Send Confirmation" -#~ msgstr "Seol Deimhniú" - -#~ msgid "&Send File" -#~ msgid_plural "&Send Files" -#~ msgstr[0] "&Seol Comhad" -#~ msgstr[1] "&Seol Comhaid" -#~ msgstr[2] "&Seol Comhaid" -#~ msgstr[3] "&Seol Comhaid" -#~ msgstr[4] "&Seol Comhaid" - -#~ msgid "Submit" -#~ msgstr "Seol" - -#~ msgid "Key Generator" -#~ msgstr "Gineadóir Eochracha" - -#~ msgid "" -#~ "No plugin found for '%1'.\n" -#~ "Do you want to download one from %2?" -#~ msgstr "" -#~ "Ní bhfuarthas breiseán do '%1'.\n" -#~ "An bhfuil fonn ort ceann a íosluchtú ó %2?" - -#~ msgid "Missing Plugin" -#~ msgstr "Breiseán ar iarraidh" - -#~ msgid "Download" -#~ msgstr "Íosluchtaigh" - -#~ msgid "Do Not Download" -#~ msgstr "Ná hÍosluchtaigh" - -#~ msgid "This is a searchable index. Enter search keywords: " -#~ msgstr "Is innéacs inchuardaithe é seo. Iontráil lorgfhocail: " - -#~ msgid "Document Information" -#~ msgstr "Eolas faoin Cháipéis" - -#~ msgctxt "@title:group Document information" -#~ msgid "General" -#~ msgstr "Ginearálta" - -#~ msgid "URL:" -#~ msgstr "URL:" - -#~ msgid "Title:" -#~ msgstr "Teideal:" - -#~ msgid "Last modified:" -#~ msgstr "Athrú is déanaí:" - -#~ msgid "Document encoding:" -#~ msgstr "Ionchódú na cáipéise:" - -#~ msgid "Rendering mode:" -#~ msgstr "Mód rindreála:" - -#~ msgid "HTTP Headers" -#~ msgstr "Ceanntásca HTTP" - -#~ msgid "Property" -#~ msgstr "Airí" - -#~ msgid "Initializing Applet \"%1\"..." -#~ msgstr "Feidhmchláirín \"%1\" á thúsú..." - -#~ msgid "Starting Applet \"%1\"..." -#~ msgstr "Feidhmchláirín \"%1\" á thosú..." - -#~ msgid "Applet \"%1\" started" -#~ msgstr "Feidhmchláirín \"%1\" tosaithe" - -#~ msgid "Applet \"%1\" stopped" -#~ msgstr "Feidhmchláirín \"%1\" stoptha" - -#~ msgid "Loading Applet" -#~ msgstr "Feidhmchláirín á Luchtú" - -#~ msgid "Error: java executable not found" -#~ msgstr "Earráid: ní bhfuarthas comhad inrite Java" - -#~ msgid "Signed by (validation: %1)" -#~ msgstr "Sínithe ag (bailíochtú: %1)" - -#~ msgid "Certificate (validation: %1)" -#~ msgstr "Teastas (bailíochtú: %1)" - -#~ msgid "Security Alert" -#~ msgstr "Foláireamh Slándála" - -# Tá/Níl answer - stitched with "the following permission" -#~ msgid "Do you grant Java applet with certificate(s):" -#~ msgstr "An bhfuil fonn ort feidhmchláirín Java le teasta(i)s:" - -# see previous -#~ msgid "the following permission" -#~ msgstr "an cead seo a thabhairt" - -#~ msgid "&Reject All" -#~ msgstr "&Diúltaigh Uile" - -#~ msgid "&Grant All" -#~ msgstr "&Tabhair Uile" - -#~ msgid "Applet Parameters" -#~ msgstr "Paraiméadair Fheidhmchláirín" - -#~ msgid "Parameter" -#~ msgstr "Paraiméadar" - -#~ msgid "Class" -#~ msgstr "Aicme" - -#~ msgid "Base URL" -#~ msgstr "URL bunaidh" - -#~ msgid "Archives" -#~ msgstr "Cartlanna" - -#~ msgid "KDE Java Applet Plugin" -#~ msgstr "Breiseán KDE Fheidhmchláirín Java" - -#~ msgid "HTML Toolbar" -#~ msgstr "Barra Uirlisí HTML" - -#~ msgid "&Copy Text" -#~ msgstr "&Cóipeáil Téacs" - -#~ msgid "Open '%1'" -#~ msgstr "Oscail '%1'" - -#~ msgid "&Copy Email Address" -#~ msgstr "&Cóipeáil Seoladh Ríomhphoist" - -#~ msgid "&Save Link As..." -#~ msgstr "&Sábháil an Nasc Mar..." - -#~ msgid "&Copy Link Address" -#~ msgstr "&Cóipeáil Seoladh an Naisc" - -#~ msgctxt "@title:menu HTML frame/iframe" -#~ msgid "Frame" -#~ msgstr "Fráma" - -#~ msgid "Open in New &Window" -#~ msgstr "Oscail i bhFuinneog &Nua" - -#~ msgid "Open in &This Window" -#~ msgstr "Oscail san fhuinneog &seo" - -#~ msgid "Open in &New Tab" -#~ msgstr "Oscail i gCluaisín &Nua" - -#~ msgid "Reload Frame" -#~ msgstr "Athluchtaigh an Fráma" - -#~ msgid "Print Frame..." -#~ msgstr "Priontáil an Fráma..." - -#~ msgid "Save &Frame As..." -#~ msgstr "Sábháil an &Fráma Mar..." - -#~ msgid "View Frame Source" -#~ msgstr "Féach Foinse an Fhráma" - -#~ msgid "View Frame Information" -#~ msgstr "Taispeáin Eolas Fráma" - -#~ msgid "Block IFrame..." -#~ msgstr "Cuir Cosc ar IFrame..." - -#~ msgid "Save Image As..." -#~ msgstr "Sábháil an Íomhá Mar..." - -#~ msgid "Send Image..." -#~ msgstr "Seol Íomhá..." - -#~ msgid "Copy Image" -#~ msgstr "Cóipeáil Íomhá" - -#~ msgid "Copy Image Location" -#~ msgstr "Cóipeáil Suíomh na hÍomhá" - -#~ msgid "View Image (%1)" -#~ msgstr "Féach Íomhá (%1)" - -#~ msgid "Block Image..." -#~ msgstr "Coisc Íomhá..." - -#~ msgid "Block Images From %1" -#~ msgstr "Coisc Íomhánna Ó %1" - -#~ msgid "Stop Animations" -#~ msgstr "Stop na hÍomhánna Beo" - -#~ msgid "Search for '%1' with %2" -#~ msgstr "Déan cuardach ar '%1' le %2" - -#~ msgid "Search for '%1' with" -#~ msgstr "Déan cuardach ar '%1' le" - -#~ msgid "Save Link As" -#~ msgstr "Sábháil an Nasc Mar" - -#~ msgid "Save Image As" -#~ msgstr "Sábháil an Íomhá Mar" - -#~ msgid "Add URL to Filter" -#~ msgstr "Cuir URL leis an Scagaire" - -#~ msgid "Enter the URL:" -#~ msgstr "Iontráil an URL:" - -#~ msgid "" -#~ "A file named \"%1\" already exists. Are you sure you want to overwrite it?" -#~ msgstr "" -#~ "Tá comhad darb ainm \"%1\" ann cheana. An bhfuil tú cinnte gur mian leat " -#~ "scríobh air?" - -#~ msgid "Overwrite File?" -#~ msgstr "Forscríobh an Comhad?" - -#~ msgid "Overwrite" -#~ msgstr "Forscríobh" - -#~ msgid "The Download Manager (%1) could not be found in your $PATH " -#~ msgstr "" -#~ "Níorbh fhéidir an Bainisteoir Íosluchtaithe (%1) a aimsiú ar do $PATH " - -#~ msgid "" -#~ "Try to reinstall it \n" -#~ "\n" -#~ "The integration with Konqueror will be disabled." -#~ msgstr "" -#~ "Bain triail as é a shuiteáil arís \n" -#~ "\n" -#~ "Díchumasófar an comhtháthú Konqueror." - -#~ msgid "Default Font Size (100%)" -#~ msgstr "Clómhéid Réamhshocraithe (100%)" - -#~ msgid "KHTML" -#~ msgstr "KHTML" - -#~ msgid "Embeddable HTML component" -#~ msgstr "Comhpháirt inleabaithe HTML" - -#~ msgid "Lars Knoll" -#~ msgstr "Lars Knoll" - -#~ msgid "Antti Koivisto" -#~ msgstr "Antti Koivisto" - -#~ msgid "Dirk Mueller" -#~ msgstr "Dirk Mueller" - -#~ msgid "Peter Kelly" -#~ msgstr "Peter Kelly" - -#~ msgid "Torben Weis" -#~ msgstr "Torben Weis" - -#~ msgid "Martin Jones" -#~ msgstr "Martin Jones" - -#~ msgid "Simon Hausmann" -#~ msgstr "Simon Hausmann" - -#~ msgid "Tobias Anton" -#~ msgstr "Tobias Anton" - -#~ msgid "View Do&cument Source" -#~ msgstr "Féach &Foinse na Cáipéise" - -#~ msgid "View Document Information" -#~ msgstr "Taispeáin Eolas faoin Cháipéis" - -#~ msgid "Save &Background Image As..." -#~ msgstr "Sá&bháil an Íomhá Cúlra Mar..." - -#~ msgid "SSL" -#~ msgstr "SSL" - -#~ msgid "Print Rendering Tree to STDOUT" -#~ msgstr "Priontáil an Crann Rindreála ar an ngnáth-aschur" - -#~ msgid "Print DOM Tree to STDOUT" -#~ msgstr "Priontáil Crann DOM ar an ngnáth-aschur" - -#~ msgid "Print frame tree to STDOUT" -#~ msgstr "Priontáil crann an fhráma ar an ngnáth-aschur" - -#~ msgid "Stop Animated Images" -#~ msgstr "Stop Íomhánna Beo" - -#~ msgid "Set &Encoding" -#~ msgstr "S&ocraigh Ionchódú" - -#~ msgid "Use S&tylesheet" -#~ msgstr "Úsáid S&tílbhileog" - -#~ msgid "Enlarge Font" -#~ msgstr "Méadaigh an Cló" - -#~ msgid "" -#~ "Enlarge Font

      Make the font in this window bigger. Click " -#~ "and hold down the mouse button for a menu with all available font sizes." -#~ msgstr "" -#~ "Méadaigh an Cló

      Úsáid cló níos mó san fhuinneog seo. " -#~ "Cliceáil agus coinnigh an cnaipe síos chun roghchlár a oscailt ina bhfuil " -#~ "gach clómhéid atá ar fáil.
      " - -#~ msgid "Shrink Font" -#~ msgstr "Laghdaigh an Cló" - -#~ msgid "" -#~ "Shrink Font

      Make the font in this window smaller. Click " -#~ "and hold down the mouse button for a menu with all available font sizes." -#~ msgstr "" -#~ "Laghdaigh an Cló

      Úsáid cló níos lú san fhuinneog seo. " -#~ "Cliceáil agus coinnigh an cnaipe síos chun roghchlár a oscailt ina bhfuil " -#~ "gach clómhéid atá ar fáil.
      " - -#~ msgid "" -#~ "Find text

      Shows a dialog that allows you to find text on " -#~ "the displayed page.
      " -#~ msgstr "" -#~ "Aimsigh téacs

      Taispeáin dialóg a cheadaíonn duit téacs a " -#~ "aimsiú ar an leathanach ar taispeáint.
      " - -#~ msgid "" -#~ "Find next

      Find the next occurrence of the text that you " -#~ "have found using the Find Text function.
      " -#~ msgstr "" -#~ "An Chéad Cheann Eile

      Aimsigh an téacs céanna arís a " -#~ "d'aimsigh tú leis an bhfeidhm Aimsigh Téacs.
      " - -#~ msgid "" -#~ "Find previous

      Find the previous occurrence of the text " -#~ "that you have found using the Find Text function.
      " -#~ msgstr "" -#~ "Roimhe Seo

      Aimsigh an téacs céanna arís a d'aimsigh tú " -#~ "leis an bhfeidhm Aimsigh Téacs ach cuardaigh ar gcúl.
      " - -#~ msgid "Find Text as You Type" -#~ msgstr "Cuardach Beo ar Théacs" - -#~ msgid "" -#~ "This shortcut shows the find bar, for finding text in the displayed page. " -#~ "It cancels the effect of \"Find Links as You Type\", which sets the " -#~ "\"Find links only\" option." -#~ msgstr "" -#~ "Taispeánann an t-aicearra seo an barra aimsithe, chun téacs a aimsiú sa " -#~ "leathanach. Cealaíonn sé an modh \"Cuardach Beo\", a shocraíonn an rogha " -#~ "\"Aimsigh naisc amháin\"." - -#~ msgid "Find Links as You Type" -#~ msgstr "Cuardach Beo ar Naisc" - -#~ msgid "" -#~ "This shortcut shows the find bar, and sets the option \"Find links only\"." -#~ msgstr "" -#~ "Taispeánann an t-aicearra seo an barra aimsithe, agus socraíonn sé an " -#~ "rogha \"Aimsigh naisc amháin\"." - -#~ msgid "" -#~ "Print Frame

      Some pages have several frames. To print only " -#~ "a single frame, click on it and then use this function.
      " -#~ msgstr "" -#~ "Priontáil Fráma

      Uaireanta tá níos mó ná fráma amháin ag " -#~ "leathanach. Chun fráma amháin a phriontáil, cliceáil é agus bain úsáid as " -#~ "an bhfeidhm seo.
      " - -#~ msgid "Toggle Caret Mode" -#~ msgstr "Scoránaigh Mód Carait" - -#~ msgid "The fake user-agent '%1' is in use." -#~ msgstr "Tá an user-agent bréige '%1' in úsáid." - -#~ msgid "This web page contains coding errors." -#~ msgstr "Tá earráid chódála sa leathanach Gréasáin seo." - -#~ msgid "&Hide Errors" -#~ msgstr "&Folaigh Earráidí" - -#~ msgid "&Disable Error Reporting" -#~ msgstr "&Díchumasaigh Tuairiscí Earráide" - -#~ msgid "Error: %1: %2" -#~ msgstr "Earráid: %1: %2" - -#~ msgid "Error: node %1: %2" -#~ msgstr "Earráid: nód %1: %2" - -#~ msgid "Display Images on Page" -#~ msgstr "Taispeáin Íomhánna ar an Leathanach" - -#~ msgid "Error: %1 - %2" -#~ msgstr "Earráid: %1 - %2" - -#~ msgid "The requested operation could not be completed" -#~ msgstr "Níorbh fhéidir an oibríocht iarrtha a chríochnú" - -#~ msgid "Technical Reason: " -#~ msgstr "Fáth Teicniúil: " - -#~ msgid "Details of the Request:" -#~ msgstr "Mionsonraí an Iarratais:" - -#~ msgid "URL: %1" -#~ msgstr "URL: %1" - -#~ msgid "Protocol: %1" -#~ msgstr "Prótacal: %1" - -#~ msgid "Date and Time: %1" -#~ msgstr "Dáta agus Am: %1" - -#~ msgid "Additional Information: %1" -#~ msgstr "Eolas Breise: %1" - -#~ msgid "Description:" -#~ msgstr "Cur Síos:" - -#~ msgid "Possible Causes:" -#~ msgstr "Cúiseanna Incheaptha:" - -#~ msgid "Possible Solutions:" -#~ msgstr "Réitigh Incheaptha:" - -#~ msgid "Page loaded." -#~ msgstr "Leathanach luchtaithe." - -#~ msgid "%1 Image of %2 loaded." -#~ msgid_plural "%1 Images of %2 loaded." -#~ msgstr[0] "%1 íomhá luchtaithe as %2." -#~ msgstr[1] "%1 íomhá luchtaithe as %2." -#~ msgstr[2] "%1 íomhá luchtaithe as %2." -#~ msgstr[3] "%1 n-íomhá luchtaithe as %2." -#~ msgstr[4] "%1 íomhá luchtaithe as %2." - -#~ msgid "Automatic Detection" -#~ msgstr "Aimsiú Uathoibríoch" - -#~ msgid " (In new window)" -#~ msgstr " (i bhfuinneog nua)" - -#~ msgid "Symbolic Link" -#~ msgstr "Nasc Siombalach" - -#~ msgid "%1 (Link)" -#~ msgstr "%1 (Nasc)" - -#~ msgid "%2 (%1 byte)" -#~ msgid_plural "%2 (%1 bytes)" -#~ msgstr[0] "%2 (%1 bheart)" -#~ msgstr[1] "%2 (%1 bheart)" -#~ msgstr[2] "%2 (%1 bheart)" -#~ msgstr[3] "%2 (%1 mbeart)" -#~ msgstr[4] "%2 (%1 beart)" - -#~ msgid "%2 (%1 K)" -#~ msgstr "%2 (%1 K)" - -#~ msgid " (In other frame)" -#~ msgstr " (i bhfráma eile)" - -#~ msgid "Email to: " -#~ msgstr "Seol mar ríomhphost go: " - -#~ msgid " - Subject: " -#~ msgstr " - Ábhar: " - -#~ msgid " - CC: " -#~ msgstr " - CC: " - -#~ msgid " - BCC: " -#~ msgstr " - BCC: " - -#~ msgid "Save As" -#~ msgstr "Sábháil Mar" - -#~ msgid "" -#~ "This untrusted page links to
      %1.
      Do you want to " -#~ "follow the link?
      " -#~ msgstr "" -#~ "Nascann an leathanach neamhiontaofa seo le
      %1.
      Ar " -#~ "mhaith leat an nasc a leanúint?
      " - -#~ msgid "Follow" -#~ msgstr "Lean" - -#~ msgid "Frame Information" -#~ msgstr "Eolas faoin Fhráma" - -#~ msgid " [Properties]" -#~ msgstr " [Airíonna]" - -#~ msgctxt "HTML rendering mode (see http://en.wikipedia.org/wiki/Quirks_mode)" -#~ msgid "Quirks" -#~ msgstr "Turcach" - -#~ msgctxt "HTML rendering mode (see http://en.wikipedia.org/wiki/Quirks_mode)" -#~ msgid "Almost standards" -#~ msgstr "Beagnach caighdeánach" - -#~ msgctxt "HTML rendering mode (see http://en.wikipedia.org/wiki/Quirks_mode)" -#~ msgid "Strict" -#~ msgstr "Docht" - -#~ msgid "Save Background Image As" -#~ msgstr "Sábháil an Íomhá Cúlra Mar" - -#~ msgid "The peer SSL certificate chain appears to be corrupt." -#~ msgstr "Tá teastas SSL an chomhghleacaí truaillithe." - -#~ msgid "Save Frame As" -#~ msgstr "Sábháil an Fráma Mar" - -#~ msgid "&Find in Frame..." -#~ msgstr "Aimsigh sa bh&Fráma..." - -#~ msgid "" -#~ "Warning: This is a secure form but it is attempting to send your data " -#~ "back unencrypted.\n" -#~ "A third party may be able to intercept and view this information.\n" -#~ "Are you sure you wish to continue?" -#~ msgstr "" -#~ "Rabhadh: Foirm shlán é seo, ach tá sí ag iarraidh do chuid sonraí a " -#~ "sheoladh ar ais gan chriptiú.\n" -#~ "Seans go mbeadh daoine eile in ann na sonraí seo a fheiceáil.\n" -#~ "An bhfuil tú cinnte gur mian leat dul ar aghaidh?" - -#~ msgid "Network Transmission" -#~ msgstr "Tarchur Líonra" - -#~ msgid "&Send Unencrypted" -#~ msgstr "&Seol Gan Chriptiú" - -#~ msgid "" -#~ "Warning: Your data is about to be transmitted across the network " -#~ "unencrypted.\n" -#~ "Are you sure you wish to continue?" -#~ msgstr "" -#~ "Rabhadh: Tá tú ar tí do chuid sonraí a sheoladh ar an líonra gan " -#~ "chriptiú.\n" -#~ "An bhfuil tú cinnte gur mian leat dul ar aghaidh?" - -#~ msgid "" -#~ "This site is attempting to submit form data via email.\n" -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Tá an suíomh seo ag iarraidh foirm a sheoladh trí ríomhphost.\n" -#~ "An bhfuil fonn ort dul ar aghaidh?" - -#~ msgid "&Send Email" -#~ msgstr "&Seol Ríomhphost" - -#~ msgid "" -#~ "The form will be submitted to
      %1
      on your local " -#~ "filesystem.
      Do you want to submit the form?
      " -#~ msgstr "" -#~ "Seolfar an fhoirm seo chuig
      %1
      ar do chóras comhad " -#~ "logánta.
      An bhfuil fonn ort an fhoirm a sheoladh?
      " - -#~ msgid "" -#~ "This site attempted to attach a file from your computer in the form " -#~ "submission. The attachment was removed for your protection." -#~ msgstr "" -#~ "Rinne an suíomh seo iarracht ar chomhad ó do ríomhaire a cheangal leis an " -#~ "bhfoirm. Baineadh an t-iatán ar mhaithe le do shlándáil." - -#~ msgid "(%1/s)" -#~ msgstr "(%1/s)" - -#~ msgid "Security Warning" -#~ msgstr "Rabhadh Slándála" - -#~ msgid "Access by untrusted page to
      %1
      denied.
      " -#~ msgstr "" -#~ "Diúltaíodh rochtain ar
      %1
      do leathanach nach bhfuil " -#~ "muinín as.
      " - -#~ msgid "The wallet '%1' is open and being used for form data and passwords." -#~ msgstr "" -#~ "Tá sparán '%1' oscailte agus in úsáid le haghaidh sonraí foirme agus " -#~ "focail fhaire." - -#~ msgid "&Close Wallet" -#~ msgstr "&Dún Sparán" - -#~ msgid "&Allow storing passwords for this site" -#~ msgstr "&Ceadaigh focail fhaire a stóráil le haghaidh an tsuímh seo" - -#~ msgid "Remove password for form %1" -#~ msgstr "Bain an focal faire le haghaidh fhoirm %1" - -#~ msgid "JavaScript &Debugger" -#~ msgstr "&Dífhabhtóir JavaScript" - -#~ msgid "This page was prevented from opening a new window via JavaScript." -#~ msgstr "" -#~ "Cuireadh cosc ar an leathanach seo preabfhuinneog nua JavaScript a " -#~ "oscailt." - -#~ msgid "Popup Window Blocked" -#~ msgstr "Cuireadh Cosc ar Phreabfhuinneog" - -#~ msgid "" -#~ "This page has attempted to open a popup window but was blocked.\n" -#~ "You can click on this icon in the status bar to control this behavior\n" -#~ "or to open the popup." -#~ msgstr "" -#~ "Rinne an leathanach seo iarracht preabfhuinneog a oscailt ach cuireadh\n" -#~ "cosc air. Is féidir leat an deilbhín seo a chliceáil sa bharra stádais\n" -#~ "chun an t-oibriú seo a rialú nó chun an phreabfhuinneog a oscailt." - -#~ msgid "&Show Blocked Popup Window" -#~ msgid_plural "&Show %1 Blocked Popup Windows" -#~ msgstr[0] "&Taispeáin an Phreabfhuinneog Choiscthe" -#~ msgstr[1] "&Taispeáin %1 Phreabfhuinneog Choiscthe" -#~ msgstr[2] "&Taispeáin %1 Phreabfhuinneog Choiscthe" -#~ msgstr[3] "&Taispeáin %1 bPreabfhuinneog Choiscthe" -#~ msgstr[4] "&Taispeáin %1 Preabfhuinneog Choiscthe" - -#~ msgid "Show Blocked Window Passive Popup &Notification" -#~ msgstr "" -#~ "Taispeái&n Fógra faoi Fhuinneog Choiscthe i bPreabfhuinneog Éighníomhach" - -#~ msgid "&Configure JavaScript New Window Policies..." -#~ msgstr "&Cumraigh Polasaithe um Fhuinneoga Nua JavaScript..." - -#~ msgid "" -#~ "

      'Print images'

      If this checkbox is enabled, " -#~ "images contained in the HTML page will be printed. Printing may take " -#~ "longer and use more ink or toner.

      If this checkbox is disabled, " -#~ "only the text of the HTML page will be printed, without the included " -#~ "images. Printing will be faster and use less ink or toner.

      " -#~ msgstr "" -#~ "

      'Priontáil íomhánna'

      Má thiceálann tú an " -#~ "bosca seo, priontálfar na híomhánna sa leathanach HTML. Seans go " -#~ "dtógfaidh sé seal níos faide agus úsáidfidh sé níos mó dúch nó tonóir.

      Mura dticeálann tú an bosca seo, priontálfar téacs an leathanaigh " -#~ "HTML amháin, gan na híomhánna. Priontálfaidh sé níos tapa agus úsáidfidh " -#~ "sé níos lú dúch agus tonóir.

      " - -#~ msgid "" -#~ "

      'Print header'

      If this checkbox is enabled, " -#~ "the printout of the HTML document will contain a header line at the top " -#~ "of each page. This header contains the current date, the location URL of " -#~ "the printed page and the page number.

      If this checkbox is disabled, " -#~ "the printout of the HTML document will not contain such a header line. " -#~ msgstr "" -#~ "

      'Priontáil an ceanntásc'

      Má thiceálann tú " -#~ "an bosca seo, priontálfar líne cheanntáisc ag barr gach leathanaigh sa " -#~ "cháipéis HTML. Tá an dáta, URL an leathanaigh phriontáilte, agus uimhir " -#~ "an leathanaigh sa cheanntásc.

      Mura dticeálann tú an bosca seo, ní " -#~ "phriontálfar a leithéid de cheanntásc.

      " - -#~ msgid "" -#~ "

      'Printerfriendly mode'

      If this checkbox is " -#~ "enabled, the printout of the HTML document will be black and white only, " -#~ "and all colored background will be converted into white. Printout will be " -#~ "faster and use less ink or toner.

      If this checkbox is disabled, the " -#~ "printout of the HTML document will happen in the original color settings " -#~ "as you see in your application. This may result in areas of full-page " -#~ "color (or grayscale, if you use a black+white printer). Printout will " -#~ "possibly happen more slowly and will probably use more toner or ink.

      " -#~ "
      " -#~ msgstr "" -#~ "

      'Mód coigilteach ar phrintéir'

      Má chuirtear " -#~ "tic sa bhosca seo, priontálfar an cháipéis HTML dubh agus bán amháin, " -#~ "agus tiontófar aon chúlra daite go bán. Priontálfar an cháipéis níos " -#~ "tapúla agus úsáidfear níos lú dúch nó tonóir.

      Mura gcuirtear tic sa " -#~ "bhosca seo, priontálfar an cháipéis HTML sna bundathanna go díreach mar a " -#~ "fheiceann tú iad i d'fheidhmchlár. Seans go mbeidh réigiúin den cháipéis " -#~ "i ndathanna lánleathanaigh (nó liathscála, má tá printéir dubh is bán " -#~ "agat). Priontálfar an cháipéis níos moille agus cinnte go n-úsáidfear i " -#~ "bhfad níos mó dúch nó tonóir.

      " - -#~ msgid "HTML Settings" -#~ msgstr "Socruithe HTML" - -#~ msgid "Printer friendly mode (black text, no background)" -#~ msgstr "Mód cairdiúil don phrintéir (téacs dubh, gan chúlra)" - -#~ msgid "Print images" -#~ msgstr "Priontáil íomhánna" - -#~ msgid "Print header" -#~ msgstr "Priontáil an ceanntásc" - -#~ msgid "Filter error" -#~ msgstr "Earráid scagtha" - -#~ msgid "Inactive" -#~ msgstr "Neamhghníomhach" - -#~ msgid "%1 (%2 - %3x%4 Pixels)" -#~ msgstr "%1 (%2 - %3×%4 Picteilín)" - -#~ msgid "%1 - %2x%3 Pixels" -#~ msgstr "%1 - %2×%3 Picteilíní" - -#~ msgid "%1 (%2x%3 Pixels)" -#~ msgstr "%1 (%2×%3 Picteilín)" - -#~ msgid "Image - %1x%2 Pixels" -#~ msgstr "Íomhá - %1×%2 Picteilíní" - -#~ msgid "Done." -#~ msgstr "Críochnaithe." - -#~ msgid "Access Keys activated" -#~ msgstr "Eochracha Rochtana Gníomhachtaithe" - -#~ msgid "JavaScript Errors" -#~ msgstr "Earráidí JavaScript" - -#~ msgid "" -#~ "This dialog provides you with notification and details of scripting " -#~ "errors that occur on web pages. In many cases it is due to an error in " -#~ "the web site as designed by its author. In other cases it is the result " -#~ "of a programming error in Konqueror. If you suspect the former, please " -#~ "contact the webmaster of the site in question. Conversely if you suspect " -#~ "an error in Konqueror, please file a bug report at http://bugs.kde.org/. " -#~ "A test case which illustrates the problem will be appreciated." -#~ msgstr "" -#~ "Soláthraíonn an dialóg seo mionsonraí maidir le hearráidí scriptithe a " -#~ "tharlaíonn ar leathanaigh Ghréasáin. Go minic, tarlaíonn na hearráidí " -#~ "seo de bhrí go ndearna dearthóir an tsuímh botún agus le linn a " -#~ "chruthaithe. I gcásanna eile, fabht i Konqueror is cúis leis an earráid. " -#~ "Má cheapann tú gur an chéad chás atá i gceist, téigh i dteagmháil le " -#~ "riarthóir an tsuímh. Má cheapann tú gur le Konqueror an fhadhb, " -#~ "cruthaigh tuairisc ar fhabht ag http://bugs.kde.org/. Bheimis buíoch as " -#~ "cás tástála a léiríonn an fhadhb." - -#~ msgid "KMultiPart" -#~ msgstr "KMultiPart" - -#~ msgid "Embeddable component for multipart/mixed" -#~ msgstr "Comhpháirt inleabaithe le haghaidh multipart/mixed" - -#~ msgid "Copyright 2001-2011, David Faure faure@kde.org" -#~ msgstr "© 2001-2011, David Faure faure@kde.org" - -#~ msgid "No handler found for %1." -#~ msgstr "Ní bhfuarthas láimhseálaí do %1." - -#~ msgid "Play" -#~ msgstr "Seinn" - -#~ msgid "Pause" -#~ msgstr "Sos" - -#~ msgid "New Web Shortcut" -#~ msgstr "Aicearra Nua Gréasáin" - -#~ msgid "%1 is already assigned to %2" -#~ msgstr "Tá %1 comhcheangailte le %2 cheana" - -#~ msgid "Search &provider name:" -#~ msgstr "Ainm an t&soláthraí cuardaigh:" - -#~ msgid "New search provider" -#~ msgstr "Soláthraí nua cuardaigh" - -#~ msgid "UR&I shortcuts:" -#~ msgstr "Aicearraí UR&I:" - -#~ msgid "Create Web Shortcut" -#~ msgstr "Cruthaigh Aicearra Gréasáin" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "" -#~ "Comhadlann ina bhfuil na tástálacha, an bhunchomhadlann, agus comhadlanna " -#~ "aschurtha." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Ná ceil aschur dífhabhtaithe" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Athghin bonnlíne (in ionad seiceála)" - -#~ msgid "Do not show the window while running tests" -#~ msgstr "Ná taispeáin an fhuinneog agus tástálacha faoi shiúl" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Rith aon tástáil amháin. Ceadaítear ilroghanna." - -#~ msgid "Only run .js tests" -#~ msgstr "Rith tástálacha .js amháin" - -#~ msgid "Only run .html tests" -#~ msgstr "Rith tástálacha .html amháin" - -#~ msgid "Do not use Xvfb" -#~ msgstr "Ná húsáid Xvfb" - -#~ msgid "Put output in <directory> instead of <base_dir>/output" -#~ msgstr "" -#~ "Cuir an t-aschur i <directory> in ionad <base_dir>/output" - -#~ msgid "" -#~ "Use <directory> as reference instead of <base_dir>/baseline" -#~ msgstr "" -#~ "Úsáid <directory> mar thagairt in ionad <base_dir>/baseline" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Comhadlann ina bhfuil na tástálacha, an bhunchomhadlann, agus comhadlanna " -#~ "aschurtha. Déan neamhshuim de seo má thugtar rogha -b." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Conair choibhneasta an cháis tástála, nó comhadlann le tástálacha le rith " -#~ "(ar comhbhrí le -t)." - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for khtml" -#~ msgstr "Tástálaí aischéimnitheach le haghaidh khtml" - -#~ msgid "KHTML Regression Testing Utility" -#~ msgstr "Uirlis Tástála Aischéimnithí KHTML" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "Regression testing output" -#~ msgstr "Aschur na tástála aischéimnithí" - -#~ msgid "Pause/Continue regression testing process" -#~ msgstr "Cuir próiseas na tástála aischéimnithí ar shos, nó ar siúl arís" - -#~ msgid "" -#~ "You may select a file where the log content is stored, before the " -#~ "regression testing is started." -#~ msgstr "" -#~ "Is féidir leat comhad a roghnú ina stóráiltear an t-inneachar logála sula " -#~ "dtosófar an tástáil aischéimnitheach." - -#~ msgid "Output to File..." -#~ msgstr "Aschur i gComhad..." - -#~ msgid "Regression Testing Status" -#~ msgstr "Stádas na Tástála Aischéimnithí" - -#~ msgid "View HTML Output" -#~ msgstr "Féach ar Aschur HTML" - -#~ msgid "Settings" -#~ msgstr "Socruithe" - -#~ msgid "Tests" -#~ msgstr "Tástálacha" - -#~ msgid "Only Run JS Tests" -#~ msgstr "Rith Tástálacha JS Amháin" - -#~ msgid "Only Run HTML Tests" -#~ msgstr "Rith Tástálacha HTML Amháin" - -#~ msgid "Do Not Suppress Debug Output" -#~ msgstr "Ná Ceil Aschur Dífhabhtaithe" - -#~ msgid "Run Tests..." -#~ msgstr "Rith na Tástálacha..." - -#~ msgid "Run Single Test..." -#~ msgstr "Rith Tástáil Amháin..." - -#~ msgid "Specify tests Directory..." -#~ msgstr "Socraigh Comhadlann na dTástálacha..." - -#~ msgid "Specify khtml Directory..." -#~ msgstr "Socraigh Comhadlann khtml..." - -#~ msgid "Specify Output Directory..." -#~ msgstr "Socraigh Comhadlann Aschurtha..." - -#~ msgid "TestRegressionGui" -#~ msgstr "TestRegressionGui" - -#~ msgid "GUI for the khtml regression tester" -#~ msgstr "Comhéadan grafach le haghaidh an tástálaí aischéimnithigh khtml" - -#~ msgid "Available Tests: 0" -#~ msgstr "Tástálacha ar fáil: 0" - -#~ msgid "Please choose a valid 'khtmltests/regression/' directory." -#~ msgstr "Roghnaigh comhadlann bhailí 'khtmltests/regression/'." - -#~ msgid "Please choose a valid 'khtml/' build directory." -#~ msgstr "Roghnaigh comhadlann bhailí tógála 'khtml/'." - -#~ msgid "Available Tests: %1 (ignored: %2)" -#~ msgstr "Tástálacha Ar Fáil: %1 (rinneadh neamhaird: %2)" - -#~ msgid "Cannot find testregression executable." -#~ msgstr "Ní féidir an comhad inrite 'testregression' a aimsiú." - -#~ msgid "Run test..." -#~ msgstr "Rith tástáil..." - -#~ msgid "Add to ignores..." -#~ msgstr "Cuir leis na cinn a dtugtar neamhaird orthu..." - -#~ msgid "Remove from ignores..." -#~ msgstr "Bain ó na cinn a dtugtar neamhaird orthu..." - -#~ msgid "URL to open" -#~ msgstr "URL le hoscailt" - -#~ msgid "Testkhtml" -#~ msgstr "Testkhtml" - -#~ msgid "a basic web browser using the KHTML library" -#~ msgstr "brabhsálaí simplí Gréasáin a úsáideann leabharlann KHTML" - -#~ msgid "Find &links only" -#~ msgstr "Aimsigh &naisc amháin" - -#~ msgid "Not found" -#~ msgstr "Gan aimsiú" - -#~ msgid "No more matches for this search direction." -#~ msgstr "Ag an deireadh sa treo cuardaigh seo." - -#~ msgid "F&ind:" -#~ msgstr "A&imsigh:" - -#~ msgid "&Next" -#~ msgstr "Ar A&ghaidh" - -#~ msgid "Opt&ions" -#~ msgstr "&Roghanna" - -#~ msgid "Do you want to store this password?" -#~ msgstr "An bhfuil tú fonn ort an focal faire seo a stóráil?" - -#~ msgid "Do you want to store this password for %1?" -#~ msgstr "An bhfuil fonn ort an focal faire a stóráil le haghaidh %1?" - -#~ msgid "&Store" -#~ msgstr "&Stóráil" - -#~ msgid "Ne&ver store for this site" -#~ msgstr "Ná sá&bháil riamh don suíomh seo" - -#~ msgid "Do ¬ store this time" -#~ msgstr "Ná sábháil an uair seo" - -#~ msgid "Basic Page Style" -#~ msgstr "Stíl Leathanaigh Bhunúsach" - -#~ msgid "the document is not in the correct file format" -#~ msgstr "níl an cháipéis san fhormáid cheart" - -#~ msgid "fatal parsing error: %1 in line %2, column %3" -#~ msgstr "earráid parsála marfach: %1 i líne %2, colún %3" - -#~ msgid "XML parsing error" -#~ msgstr "earráid parsála XML" - -#~ msgid "" -#~ "Unable to start new process.\n" -#~ "The system may have reached the maximum number of open files possible or " -#~ "the maximum number of open files that you are allowed to use has been " -#~ "reached." -#~ msgstr "" -#~ "Ní féidir próiseas nua a thosú.\n" -#~ "Seans go bhfuil líon uasta na gcomhad ar féidir bheith oscailte sroichte, " -#~ "nó líon uasta na gcomhad a bhfuil cead agat iad a úsáid." - -#~ msgid "" -#~ "Unable to create new process.\n" -#~ "The system may have reached the maximum number of processes possible or " -#~ "the maximum number of processes that you are allowed to use has been " -#~ "reached." -#~ msgstr "" -#~ "Ní féidir próiseas nua a thosú.\n" -#~ "Seans go bhfuil líon uasta na bpróiseas sroichte, nó líon uasta na " -#~ "bpróiseas a bhfuil cead agat iad a úsáid." - -#~ msgid "Could not find '%1' executable." -#~ msgstr "Níorbh fhéidir comhad inrite '%1' a fhail." - -#~ msgid "" -#~ "Could not open library '%1'.\n" -#~ "%2" -#~ msgstr "" -#~ "Níorbh fhéidir leabharlann '%1' a oscailt.\n" -#~ "%2" - -#~ msgid "" -#~ "Could not find 'kdemain' in '%1'.\n" -#~ "%2" -#~ msgstr "" -#~ "Níorbh fhéidir 'kdemain' a aimsiú i '%1'.\n" -#~ "%2" - -#~ msgid "KDEInit could not launch '%1'" -#~ msgstr "Níorbh fhéidir le KDEInit '%1' a thosú" - -#~ msgid "Could not find service '%1'." -#~ msgstr "Ní bhfuarthas seirbhís '%1'." - -#~ msgid "Service '%1' must be executable to run." -#~ msgstr "Caithfidh seirbhís '%1' a bheith inrite chun é a rith." - -#~ msgid "Service '%1' is malformatted." -#~ msgstr "Tá seirbhís '%1' formáidithe go mícheart." - -#~ msgid "Launching %1" -#~ msgstr "%1 á thosú" - -#~ msgid "Unknown protocol '%1'.\n" -#~ msgstr "Prótacal anaithnid '%1'.\n" - -#~ msgid "Error loading '%1'.\n" -#~ msgstr "Earráid ag luchtú '%1'.\n" - -#~ msgid "" -#~ "klauncher: This program is not supposed to be started manually.\n" -#~ "klauncher: It is started automatically by kdeinit4.\n" -#~ msgstr "" -#~ "klauncher: Ní ceart duit an clár seo a thosú tú féin.\n" -#~ "klauncher: Tosaíonn kdeinit4 é go huathoibríoch.\n" - -#~ msgid "Evaluation error" -#~ msgstr "Earráid luachála" - -#~ msgid "Range error" -#~ msgstr "Earráid Raoin" - -#~ msgid "Reference error" -#~ msgstr "Earráid tagartha" - -#~ msgid "Syntax error" -#~ msgstr "Earráid chomhréire" - -#~ msgid "Type error" -#~ msgstr "Earráid chineáil" - -#~ msgid "URI error" -#~ msgstr "Earráid URI" - -#~ msgid "JS Calculator" -#~ msgstr "Áireamhán JS" - -#~ msgctxt "addition" -#~ msgid "+" -#~ msgstr "+" - -#~ msgid "AC" -#~ msgstr "Glan" - -#~ msgctxt "subtraction" -#~ msgid "-" -#~ msgstr "-" - -#~ msgctxt "evaluation" -#~ msgid "=" -#~ msgstr "=" - -#~ msgid "CL" -#~ msgstr "CL" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "3" -#~ msgstr "3" - -#~ msgid "7" -#~ msgstr "7" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "MainWindow" -#~ msgstr "Príomhfhuinneog" - -#~ msgid "

      KJSEmbed Documentation Viewer

      " -#~ msgstr "

      Amharcán Doiciméadaithe KJSEmbed

      " - -#~ msgid "Execute" -#~ msgstr "Rith" - -#~ msgid "File" -#~ msgstr "Comhad" - -#~ msgid "Open Script" -#~ msgstr "Oscail Script" - -#~ msgid "Open a script..." -#~ msgstr "Oscail script..." - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# keycap, leave as is -#~ msgid "Ctrl+O" -#~ msgstr "Ctrl+O" - -#~ msgid "Close Script" -#~ msgstr "Dún Script" - -#~ msgid "Close script..." -#~ msgstr "Dún script..." - -#~ msgid "Quit" -#~ msgstr "Scoir" - -#~ msgid "Quit application..." -#~ msgstr "Scoir den fheidhmchlár..." - -#~ msgid "Run" -#~ msgstr "Rith" - -#~ msgid "Run script..." -#~ msgstr "Rith script..." - -#~ msgid "Run To..." -#~ msgstr "Rith Go..." - -#~ msgid "Run to breakpoint..." -#~ msgstr "Rith go brisphointe..." - -#~ msgid "Step" -#~ msgstr "Céimnigh" - -#~ msgid "Step to next line..." -#~ msgstr "Céimnigh go dtí an chéad líne eile..." - -#~ msgid "Step execution..." -#~ msgstr "Céimniú..." - -#~ msgid "KJSCmd" -#~ msgstr "KJSCmd" - -#~ msgid "Utility for running KJSEmbed scripts \n" -#~ msgstr "Uirlis a ritheann scripteanna KJSEmbed \n" - -#~ msgid "(C) 2005-2006 The KJSEmbed Authors" -#~ msgstr "© 2005-2006 Údair KJSEmbed" - -#~ msgid "Execute script without gui support" -#~ msgstr "Rith script gan tacaíocht ghrafach" - -#~ msgid "start interactive kjs interpreter" -#~ msgstr "tosaigh léirmhínitheoir idirghníomhach kjs" - -#~ msgid "start without KDE KApplication support." -#~ msgstr "tosaigh gan tacaíocht KApplication KDE." - -#~ msgid "Script to execute" -#~ msgstr "Script le rith" - -#~ msgid "Error encountered while processing include '%1' line %2: %3" -#~ msgstr "Tharla earráid agus ceanntásc '%1' á phróiseáil ar líne %2: %3" - -#~ msgid "include only takes 1 argument, not %1." -#~ msgstr "ní ghlacann an ceanntásc ach argóint amháin, nach é %1." - -#~ msgid "File %1 not found." -#~ msgstr "Comhad %1 gan aimsiú." - -#~ msgid "library only takes 1 argument, not %1." -#~ msgstr "ní ghlacann an leabharlann gach argóint amháin, nach é %1." - -#~ msgid "Alert" -#~ msgstr "Foláireamh" - -#~ msgid "Confirm" -#~ msgstr "Dearbhaigh" - -#~ msgid "Bad event handler: Object %1 Identifier %2 Method %3 Type: %4." -#~ msgstr "" -#~ "Drochláimhseálaí teagmhas: Réad %1 Aitheantóir %2 Modh %3 Cineál: %4." - -#~ msgid "Exception calling '%1' function from %2:%3:%4" -#~ msgstr "Tharla eisceacht agus feidhm '%1' á glaoch ó %2:%3:%4" - -#~ msgid "Could not open file '%1'" -#~ msgstr "Níorbh fhéidir comhad '%1' a oscailt" - -#~ msgid "Could not create temporary file." -#~ msgstr "Níorbh fhéidir comhad sealadach a chruthú." - -#~ msgid "%1 is not a function and cannot be called." -#~ msgstr "Ní feidhm é %1 agus ní féidir é a ghlaoch." - -#~ msgid "%1 is not an Object type" -#~ msgstr "Ní cineál Réada é %1" - -#~ msgid "Action takes 2 args." -#~ msgstr "Glacann an Gníomh dhá argóint." - -#~ msgid "ActionGroup takes 2 args." -#~ msgstr "Glacann an Grúpa Gníomhartha dhá argóint." - -#~ msgid "Must supply a valid parent." -#~ msgstr "Máthair bhailí de dhíth." - -#~ msgid "There was an error reading the file '%1'" -#~ msgstr "Tharla earráid agus comhad '%1' á léamh" - -#~ msgid "Could not read file '%1'" -#~ msgstr "Níorbh fhéidir comhad '%1' a léamh" - -#~ msgid "Must supply a filename." -#~ msgstr "Ainm comhaid de dhíth." - -#~ msgid "'%1' is not a valid QLayout." -#~ msgstr "Ní QLayout bailí é '%1'." - -#~ msgid "Must supply a layout name." -#~ msgstr "Caithfidh tú ainm a chur ar an leagan amach." - -#~ msgid "Wrong object type." -#~ msgstr "Cineál mícheart réada." - -#~ msgid "First argument must be a QObject." -#~ msgstr "Caithfidh an chéad argóint bheith ina QObject." - -#~ msgid "Incorrect number of arguments." -#~ msgstr "Líon mícheart na n-argóintí." - -#~ msgid "The slot asked for %1 argument" -#~ msgid_plural "The slot asked for %1 arguments" -#~ msgstr[0] "Bhí an sliotán ag iarraidh %1 argóint" -#~ msgstr[1] "Bhí an sliotán ag iarraidh %1 argóint" -#~ msgstr[2] "Bhí an sliotán ag iarraidh %1 argóint" -#~ msgstr[3] "Bhí an sliotán ag iarraidh %1 n-argóint" -#~ msgstr[4] "Bhí an sliotán ag iarraidh %1 argóint" - -#~ msgid "but there is only %1 available" -#~ msgid_plural "but there are only %1 available" -#~ msgstr[0] "ach níl ach %1 cheann ar fáil" -#~ msgstr[1] "ach níl ach %1 cheann ar fáil" -#~ msgstr[2] "ach níl ach %1 cinn ar fáil" -#~ msgstr[3] "ach níl ach %1 gcinn ar fáil" -#~ msgstr[4] "ach níl ach %1 ceann ar fáil" - -#~ msgctxt "" -#~ "%1 is 'the slot asked for foo arguments', %2 is 'but there are only bar " -#~ "available'" -#~ msgid "%1, %2." -#~ msgstr "%1, %2." - -#~ msgid "Failure to cast to %1 value from Type %2 (%3)" -#~ msgstr "Níorbh fhéidir teilgean ó Chineál %2 (%3) go luach %1" - -#~ msgid "No such method '%1'." -#~ msgstr "Níl a leithéid de mhodh '%1'." - -#~ msgid "Call to method '%1' failed, unable to get argument %2: %3" -#~ msgstr "Theip ar ghlao ar mhodh '%1'; ní féidir argóint %2 a fháil: %3" - -#~ msgid "Call to '%1' failed." -#~ msgstr "Theip ar ghlao '%1'." - -#~ msgid "Could not construct value" -#~ msgstr "Níorbh fhéidir luach a chruthú" - -#~ msgid "Not enough arguments." -#~ msgstr "Easpa argóintí." - -#~ msgid "Failed to create Action." -#~ msgstr "Theip ar Ghníomh a chruthú." - -#~ msgid "Failed to create ActionGroup." -#~ msgstr "Theip ar Ghrúpa Gníomhartha a chruthú." - -#~ msgid "No classname specified" -#~ msgstr "Níor sonraíodh ainm aicme" - -#~ msgid "Failed to create Layout." -#~ msgstr "Theip ar Leagan Amach a chruthú." - -#~ msgid "No classname specified." -#~ msgstr "Níor sonraíodh ainm aicme." - -#~ msgid "Failed to create Widget." -#~ msgstr "Theip ar Ghiuirléid a chruthú." - -#~ msgid "Could not open file '%1': %2" -#~ msgstr "Níorbh fhéidir comhad '%1' a oscailt: %2" - -#~ msgid "Failed to load file '%1'" -#~ msgstr "Níorbh fhéidir comhad '%1' a luchtú" - -#~ msgid "'%1' is not a valid QWidget." -#~ msgstr "Ní QWidget bailí é '%1'." - -#~ msgid "Must supply a widget name." -#~ msgstr "Caithfidh tú ainm giuirléide a thabhairt." - -#~ msgid "Bad slot handler: Object %1 Identifier %2 Method %3 Signature: %4." -#~ msgstr "" -#~ "Drochláimhseálaí sliotáin: Réad %1 Aitheantóir %2 Modh %3 Síniú: %4." - -#~ msgid "Exception calling '%1' slot from %2:%3:%4" -#~ msgstr "Tharla eisceacht agus sliotán '%1' á ghlaoch ó %2:%3:%4" - -#~ msgid "loading %1" -#~ msgstr "%1 á luchtú" - -#~ msgctxt "describes the feed of the latest posted entries" -#~ msgid "Latest" -#~ msgstr "Is Déanaí" - -#~ msgid "Highest Rated" -#~ msgstr "Meas is Airde" - -#~ msgid "Most Downloads" -#~ msgstr "An Líon is Mó Íosluchtuithe" - -#~ msgid "" -#~ "Cannot start gpg and retrieve the available keys. Make sure " -#~ "that gpg is installed, otherwise verification of downloaded " -#~ "resources will not be possible." -#~ msgstr "" -#~ "Ní féidir gpg a thosú agus na heochracha atá ar fáil a " -#~ "aisghabháil. Bí cinnte go bhfuil gpg suiteáilte, nó ní bheidh tú " -#~ "in ann acmhainní íosluchtaithe a fhíorú." - -#~ msgid "" -#~ "Enter passphrase for key 0x%1, belonging to
      %2<" -#~ "%3>
      :
      " -#~ msgstr "" -#~ "Iontráil frása faire don eochair 0x%1 atá ag
      %2<" -#~ "%3>
      :
      " - -#~ msgid "" -#~ "Cannot start gpg and check the validity of the file. Make sure " -#~ "that gpg is installed, otherwise verification of downloaded " -#~ "resources will not be possible." -#~ msgstr "" -#~ "Ní féidir gpg a thosú agus bailíocht an chomhaid a sheiceáil. " -#~ "Bí cinnte go bhfuil gpg suiteáilte, nó ní bheidh tú in ann " -#~ "acmhainní íosluchtaithe a fhíorú." - -#~ msgid "Select Signing Key" -#~ msgstr "Roghnaigh Eochair Shínithe" - -#~ msgid "Key used for signing:" -#~ msgstr "Eochair a úsáideadh le síniú:" - -#~ msgid "" -#~ "Cannot start gpg and sign the file. Make sure that gpg " -#~ "is installed, otherwise signing of the resources will not be possible." -#~ msgstr "" -#~ "Ní féidir gpg a thosú agus an comhad a shíniú. Bí cinnte go " -#~ "bhfuil gpg suiteáilte, nó ní bheidh tú in ann na hacmhainní a " -#~ "shíniú." - -#~ msgid "Get Hot New Stuff" -#~ msgstr "Faigh Stuif Nua" - -#~ msgctxt "Program name followed by 'Add On Installer'" -#~ msgid "%1 Add-On Installer" -#~ msgstr "Suiteálaí Breiseán %1" - -#~ msgid "Add Rating" -#~ msgstr "Cuir Rátáil Leis" - -#~ msgid "Add Comment" -#~ msgstr "Cuir Nóta Leis" - -#~ msgid "View Comments" -#~ msgstr "Amharc ar Nótaí" - -#~ msgid "Re: %1" -#~ msgstr "Maidir le: %1" - -#~ msgid "Timeout. Check Internet connection." -#~ msgstr "Thar am. Seiceáil do cheangal leis an Idirlíon." - -#~ msgid "Entries failed to load" -#~ msgstr "Níorbh fhéidir na hiontrálacha a luchtú" - -#~ msgid "Server: %1" -#~ msgstr "Freastalaí: %1" - -#~ msgid "
      Provider: %1" -#~ msgstr "
      Soláthraí: %1" - -#~ msgid "
      Version: %1" -#~ msgstr "
      Leagan: %1" - -#~ msgid "Provider information" -#~ msgstr "Eolas faoin soláthraí" - -#~ msgid "Could not install %1" -#~ msgstr "Níorbh fhéidir %1 a shuiteáil" - -#~ msgid "Get Hot New Stuff!" -#~ msgstr "Faigh Stuif Nua!" - -#~ msgid "There was an error loading data providers." -#~ msgstr "Tharla earráid agus na soláthraithe sonraí á luchtú." - -#~ msgid "A protocol fault has occurred. The request has failed." -#~ msgstr "Tharla fadhb phrótacail. Theip ar an iarratas." - -#~ msgid "Desktop Exchange Service" -#~ msgstr "Seirbhís Malartán Deasc" - -#~ msgid "A network error has occurred. The request has failed." -#~ msgstr "Tharla earráid líonra. Theip ar an iarratas." - -#~ msgid "&Source:" -#~ msgstr "&Foinse:" - -#~ msgid "?" -#~ msgstr "?" - -#~ msgid "&Order by:" -#~ msgstr "&Ord de réir:" - -#~ msgid "Enter search phrase here" -#~ msgstr "Iontráil frása cuardaigh anseo" - -#~ msgid "Collaborate" -#~ msgstr "Comhoibrigh" - -#~ msgid "Rating: " -#~ msgstr "Rátáil:" - -#~ msgid "Downloads: " -#~ msgstr "Íosluchtuithe:" - -#~ msgid "Install" -#~ msgstr "Suiteáil" - -#~ msgid "Uninstall" -#~ msgstr "Díshuiteáil" - -#~ msgid "

      No Downloads

      " -#~ msgstr "

      Gan Íosluchtuithe

      " - -#~ msgid "

      Downloads: %1

      \n" -#~ msgstr "

      Íosluchtuithe: %1

      \n" - -#~ msgid "Update" -#~ msgstr "Nuashonraigh" - -#~ msgid "Rating: %1" -#~ msgstr "Rátáil: %1" - -#~ msgid "No Preview" -#~ msgstr "Gan Réamhamharc" - -#~ msgid "Loading Preview" -#~ msgstr "Réamhamharc á Luchtú" - -#~ msgid "Comments" -#~ msgstr "Nótaí" - -#~ msgid "Changelog" -#~ msgstr "Athruithe" - -#~ msgid "Switch version" -#~ msgstr "Athraigh an leagan" - -#~ msgid "Contact author" -#~ msgstr "Téigh i dteagmháil leis an údar" - -#~ msgid "Collaboration" -#~ msgstr "Comhoibriú" - -#~ msgid "Translate" -#~ msgstr "Aistrigh" - -#~ msgid "Subscribe" -#~ msgstr "Liostáil" - -#~ msgid "Report bad entry" -#~ msgstr "Déan tuairisc ar dhrochiontráil" - -#~ msgid "Send Mail" -#~ msgstr "Seol Ríomhphost" - -#~ msgid "Contact on Jabber" -#~ msgstr "Teagmháil ar Jabber" - -#~ msgid "Provider: %1" -#~ msgstr "Soláthraí: %1" - -#~ msgid "Version: %1" -#~ msgstr "Leagan: %1" - -#~ msgid "The removal request was successfully registered." -#~ msgstr "D'éirigh le clárú an iarratais bainte." - -#~ msgid "Removal of entry" -#~ msgstr "Baint iontrála" - -#~ msgid "The removal request failed." -#~ msgstr "Theip ar an iarratas bainte." - -#~ msgid "The subscription was successfully completed." -#~ msgstr "D'éirigh leis an gclárú." - -#~ msgid "Subscription to entry" -#~ msgstr "Clárú le hiontráil" - -#~ msgid "The subscription request failed." -#~ msgstr "Theip ar an iarratas cláraithe." - -#~ msgid "The rating was submitted successfully." -#~ msgstr "Seoladh an rátáil gan fadhb." - -#~ msgid "Rating for entry" -#~ msgstr "Rátáil na hiontrála" - -#~ msgid "The rating could not be submitted." -#~ msgstr "Níorbh fhéidir an rátáil a sheoladh." - -#~ msgid "The comment was submitted successfully." -#~ msgstr "Seoladh an nóta gan fadhb." - -#~ msgid "Comment on entry" -#~ msgstr "Nóta ar iontráil" - -#~ msgid "The comment could not be submitted." -#~ msgstr "Níorbh fhéidir an nóta a sheoladh." - -#~ msgid "KNewStuff contributions" -#~ msgstr "Stuif KNewStuff" - -#~ msgid "This operation requires authentication." -#~ msgstr "Fíordheimhniú de dhíth ar an oibríocht seo." - -#~ msgid "Version %1" -#~ msgstr "Leagan %1" - -#~ msgid "Leave a comment" -#~ msgstr "Fág nóta" - -#~ msgid "User comments" -#~ msgstr "Nótaí ó úsáideoirí" - -#~ msgid "Rate this entry" -#~ msgstr "Rátáil an iontráil seo" - -#~ msgid "Translate this entry" -#~ msgstr "Aistrigh an iontráil seo" - -#~ msgid "Payload" -#~ msgstr "Pálasta" - -#~ msgid "Download New Stuff..." -#~ msgstr "Íosluchtaigh Stuif Nua..." - -#~ msgid "Hot New Stuff Providers" -#~ msgstr "Soláthraithe Stuif Nuaí" - -#~ msgid "Please select one of the providers listed below:" -#~ msgstr "Roghnaigh ceann de na soláthraithe seo a leanas, le do thoil:" - -#~ msgid "No provider selected." -#~ msgstr "Níor roghnaíodh aon soláthraí." - -#~ msgid "Share Hot New Stuff" -#~ msgstr "Comhroinn Stuif Nua" - -#~ msgctxt "Program name followed by 'Add On Uploader'" -#~ msgid "%1 Add-On Uploader" -#~ msgstr "Uasluchtóir Breiseán %1" - -#~ msgid "Please put in a name." -#~ msgstr "Iontráil ainm, le do thoil." - -#~ msgid "Old upload information found, fill out fields?" -#~ msgstr "Aimsíodh seanfhaisnéis uasluchtaithe; comhlíon na réimsí?" - -#~ msgid "Fill Out" -#~ msgstr "Líon Isteach" - -#~ msgid "Do Not Fill Out" -#~ msgstr "Ná Líon Isteach" - -#~ msgid "Author:" -#~ msgstr "Údar:" - -#~ msgid "Email address:" -#~ msgstr "Seoladh ríomhphoist:" - -#~ msgid "License:" -#~ msgstr "Ceadúnas:" - -#~ msgid "GPL" -#~ msgstr "GPL" - -#~ msgid "LGPL" -#~ msgstr "LGPL" - -#~ msgid "BSD" -#~ msgstr "BSD" - -#~ msgid "Preview URL:" -#~ msgstr "URL Réamhamhairc:" - -#~ msgid "Language:" -#~ msgstr "Teanga:" - -#~ msgid "In which language did you describe the above?" -#~ msgstr "Cad é an teanga a d'úsáid tú thuas?" - -#~ msgid "Please describe your upload." -#~ msgstr "Déan cur síos ar d'uasluchtú." - -#~ msgid "Summary:" -#~ msgstr "Achoimre:" - -#~ msgid "Please give some information about yourself." -#~ msgstr "Tabhair roinnt eolais fútsa." - -#~ msgctxt "" -#~ "the price of a download item, parameter 1 is the currency, 2 is the price" -#~ msgid "" -#~ "This item costs %1 %2.\n" -#~ "Do you want to buy it?" -#~ msgstr "" -#~ "Cosnaíonn an mhír seo %1 %2.\n" -#~ "An bhfuil fonn ort é a cheannach?" - -#~ msgid "" -#~ "Your account balance is too low:\n" -#~ "Your balance: %1\n" -#~ "Price: %2" -#~ msgstr "" -#~ "Níl do dhóthain airgid i do chuntas:\n" -#~ "Airgead: %1\n" -#~ "Praghas: %2" - -#~ msgctxt "voting for an item (good/bad)" -#~ msgid "Your vote was recorded." -#~ msgstr "Taifeadadh do vóta." - -#~ msgid "You are now a fan." -#~ msgstr "Tá tú i do leantóir anois." - -#~ msgid "Network error. (%1)" -#~ msgstr "Earráid líonra. (%1)" - -#~ msgid "Too many requests to server. Please try again in a few minutes." -#~ msgstr "" -#~ "An iomarca iarratas ag an bhfreastalaí. Bain triail eile as ar ball." - -#~ msgid "Unknown Open Collaboration Service API error. (%1)" -#~ msgstr "Earráid anaithnid in API na Seirbhíse Comhoibrithe Oscailte. (%1)" - -#~ msgid "Initializing" -#~ msgstr "Á Thúsú" - -#~ msgid "Configuration file not found: \"%1\"" -#~ msgstr "Comhad cumraíochta gan aimsiú: \"%1\"" - -#~ msgid "Configuration file is invalid: \"%1\"" -#~ msgstr "Comhad cumraíochta neamhbhailí: \"%1\"" - -#~ msgid "Loading provider information" -#~ msgstr "Faisnéis soláthraí á luchtú" - -#~ msgid "Could not load get hot new stuff providers from file: %1" -#~ msgstr "Níorbh fhéidir Soláthraithe Stuif Nuaí a luchtú ó chomhad: %1" - -#~ msgid "Error initializing provider." -#~ msgstr "Earráid agus an soláthraí á thúsú." - -#~ msgid "Loading data" -#~ msgstr "Sonraí á luchtú" - -#~ msgid "Loading data from provider" -#~ msgstr "Sonraí á luchtú ó sholáthraí" - -#~ msgid "Loading of providers from file: %1 failed" -#~ msgstr "Soláthraithe á luchtú ó chomhad: %1 teipthe" - -#~ msgid "Loading one preview" -#~ msgid_plural "Loading %1 previews" -#~ msgstr[0] "Réamhamharc amháin á luchtú" -#~ msgstr[1] "%1 réamhamharc á Luchtú" -#~ msgstr[2] "%1 réamhamharc á Luchtú" -#~ msgstr[3] "%1 réamhamharc á Luchtú" -#~ msgstr[4] "%1 réamhamharc á Luchtú" - -#~ msgid "Installing" -#~ msgstr "Á Shuiteáil" - -#~ msgid "Invalid item." -#~ msgstr "Mír neamhbhailí." - -#~ msgid "Download of item failed: no download URL for \"%1\"." -#~ msgstr "Theip ar íosluchtú: URL do \"%1\" ar iarraidh." - -#~ msgid "Download of \"%1\" failed, error: %2" -#~ msgstr "Theip ar íosluchtú \"%1\", earráid: %2" - -#~ msgid "" -#~ "The downloaded file is a html file. This indicates a link to a website " -#~ "instead of the actual download. Would you like to open the site with a " -#~ "browser instead?" -#~ msgstr "" -#~ "Is comhad HTML é an comhad íosluchtaithe. Tugann sé seo le fios gur nasc " -#~ "le suíomh Gréasáin atá ann in ionad an íosluchtú féin. An bhfuil fonn ort " -#~ "an suíomh a oscailt i mbrabhsálaí ina áit sin?" - -#~ msgid "Possibly bad download link" -#~ msgstr "Drochnasc íosluchtaithe" - -#~ msgid "Downloaded file was a HTML file. Opened in browser." -#~ msgstr "" -#~ "Ba chomhad HTML é an comhad íosluchtaithe. Osclaíodh i mbrabhsálaí é." - -#~ msgid "Could not install \"%1\": file not found." -#~ msgstr "Níorbh fhéidir \"%1\" a shuiteáil: comhad gan aimsiú." - -#~ msgid "Overwrite existing file?" -#~ msgstr "Forscríobh comhad atá ann?" - -#~ msgid "Download File" -#~ msgstr "Íosluchtaigh Comhad" - -#~ msgid "Icons view mode" -#~ msgstr "Amharc le Deilbhíní" - -#~ msgid "Details view mode" -#~ msgstr "Amharc Mionsonraithe" - -#~ msgid "All Providers" -#~ msgstr "Gach Soláthraí" - -#~ msgid "All Categories" -#~ msgstr "Gach Catagóir" - -#~ msgid "Provider:" -#~ msgstr "Soláthraí:" - -#~ msgid "Category:" -#~ msgstr "Catagóir:" - -#~ msgid "Newest" -#~ msgstr "Is Nuaí" - -#~ msgid "Rating" -#~ msgstr "Rátáil" - -#~ msgid "Most downloads" -#~ msgstr "An líon is mó íosluchtuithe" - -#~ msgid "Installed" -#~ msgstr "Suiteáilte" - -#~ msgid "Order by:" -#~ msgstr "Ord de réir:" - -#~ msgid "Search:" -#~ msgstr "Cuardaigh:" - -#~ msgid "Homepage" -#~ msgstr "Leathanach Baile" - -#~ msgid "Become a Fan" -#~ msgstr "Bí i do Leantóir" - -#~ msgid "Details for %1" -#~ msgstr "Mionsonraí do %1" - -#~ msgid "Changelog:" -#~ msgstr "Logchomhad Athruithe:" - -#~ msgctxt "A link to the description of this Get Hot New Stuff item" -#~ msgid "Homepage" -#~ msgstr "Leathanach Baile" - -#~ msgctxt "" -#~ "A link to make a donation for a Get Hot New Stuff item (opens a web " -#~ "browser)" -#~ msgid "Make a donation" -#~ msgstr "Tabhair deontas dúinn" - -# focal.ie -#~ msgctxt "A link to the knowledgebase (like a forum) (opens a web browser)" -#~ msgid "Knowledgebase (no entries)" -#~ msgid_plural "Knowledgebase (%1 entries)" -#~ msgstr[0] "Bunachar eolais (folamh)" -#~ msgstr[1] "Bunachar eolais (%1 iontráil)" -#~ msgstr[2] "Bunachar eolais (%1 iontráil)" -#~ msgstr[3] "Bunachar eolais (%1 n-iontráil)" -#~ msgstr[4] "Bunachar eolais (%1 iontráil)" - -#~ msgctxt "Tooltip for a link in a dialog" -#~ msgid "Opens in a browser window" -#~ msgstr "Oscail i mbrabhsálaí" - -#~ msgid "Rating: %1%" -#~ msgstr "Rátáil: %1%" - -#~ msgctxt "Show the author of this item in a list" -#~ msgid "By %1" -#~ msgstr "Le %1" - -#~ msgctxt "fan as in supporter" -#~ msgid "1 fan" -#~ msgid_plural "%1 fans" -#~ msgstr[0] "1 leantóir" -#~ msgstr[1] "%1 leantóir" -#~ msgstr[2] "%1 leantóir" -#~ msgstr[3] "%1 leantóir" -#~ msgstr[4] "%1 leantóir" - -#~ msgid "1 download" -#~ msgid_plural "%1 downloads" -#~ msgstr[0] "1 íosluchtú" -#~ msgstr[1] "%1 íosluchtú" -#~ msgstr[2] "%1 íosluchtú" -#~ msgstr[3] "%1 n-íosluchtú" -#~ msgstr[4] "%1 íosluchtú" - -#~ msgid "Updating" -#~ msgstr "Á Nuashonrú" - -#~ msgid "Install Again" -#~ msgstr "Suiteáil Arís" - -#~ msgid "Fetching license data from server..." -#~ msgstr "Sonraí ceadúnais á bhfáil ón fhreastalaí..." - -#~ msgid "Fetching content data from server..." -#~ msgstr "Ábhar á fháil ón fhreastalaí..." - -#~ msgid "Checking login..." -#~ msgstr "Logáil isteach á dheimhniú..." - -#~ msgid "Fetching your previously updated content..." -#~ msgstr "Ábhar a nuashonraigh tú roimhe seo á fháil..." - -#~ msgid "Could not verify login, please try again." -#~ msgstr "" -#~ "Níorbh fhéidir an logáil isteach a fhíorú. Bain triail eile as le do " -#~ "thoil." - -#~ msgid "Fetching your previously updated content finished." -#~ msgstr "Fuarthas an t-ábhar s'agat a bhí nuashonraithe roimhe seo." - -#~ msgid "Fetching content data from server finished." -#~ msgstr "Fuarthas sonraí ábhair ón fhreastalaí." - -#~ msgctxt "" -#~ "A link to the website where the get hot new stuff upload can be seen" -#~ msgid "Visit website" -#~ msgstr "Féach ar an suíomh Gréasáin" - -#~ msgid "File not found: %1" -#~ msgstr "Comhad gan aimsiú: %1" - -#~ msgid "Upload Failed" -#~ msgstr "Theip ar Uasluchtú" - -#~ msgid "" -#~ "The server does not recognize the category %2 to which you are trying to " -#~ "upload." -#~ msgid_plural "" -#~ "The server does not recognize any of the categories to which you are " -#~ "trying to upload: %2" -#~ msgstr[0] "" -#~ "Ní aithníonn an freastalaí catagóir %2 a bhfuil tú ag iarraidh uasluchtú " -#~ "a dhéanamh inti." -#~ msgstr[1] "" -#~ "Ní aithníonn an freastalaí aon cheann de na catagóirí a bhfuil tú ag " -#~ "iarraidh uasluchtú a dhéanamh iontu: %2" -#~ msgstr[2] "" -#~ "Ní aithníonn an freastalaí aon cheann de na catagóirí a bhfuil tú ag " -#~ "iarraidh uasluchtú a dhéanamh iontu: %2" -#~ msgstr[3] "" -#~ "Ní aithníonn an freastalaí aon cheann de na catagóirí a bhfuil tú ag " -#~ "iarraidh uasluchtú a dhéanamh iontu: %2" -#~ msgstr[4] "" -#~ "Ní aithníonn an freastalaí aon cheann de na catagóirí a bhfuil tú ag " -#~ "iarraidh uasluchtú a dhéanamh iontu: %2" - -#~ msgid "The selected category \"%1\" is invalid." -#~ msgstr "Tá an catagóir roghnaithe \"%1\" neamhbhailí." - -#~ msgid "Select preview image" -#~ msgstr "Roghnaigh íomhá réamhamhairc" - -#~ msgid "There was a network error." -#~ msgstr "Tharla earráid líonra." - -#~ msgid "Uploading Failed" -#~ msgstr "Theip ar Uasluchtú" - -#~ msgid "Authentication error." -#~ msgstr "Earráid fhíordheimhnithe." - -#~ msgid "Upload failed: %1" -#~ msgstr "Theip ar uasluchtú: %1" - -#~ msgid "File to upload:" -#~ msgstr "Comhad le huasluchtú:" - -#~ msgid "New Upload" -#~ msgstr "Uasluchtú Nua" - -#~ msgid "Please fill out the information about your upload in English." -#~ msgstr "Líon isteach an fhaisnéis faoi d'uasluchtú, i mBéarla." - -#~ msgid "Name of the file as it will appear on the website" -#~ msgstr "Ainm an chomhaid a thaispeánfar ar an suíomh Gréasáin" - -#~ msgid "" -#~ "This should clearly describe the file content. It can be the same text as " -#~ "the title of the kvtml file." -#~ msgstr "" -#~ "Ba chóir dó seo cur síos soiléir a dhéanamh ar ábhar an chomhaid. Is " -#~ "féidir an téacs céanna ó theideal an chomhaid kvtml a úsáid." - -#~ msgid "Preview Images" -#~ msgstr "Réamhamharc Íomhánna" - -#~ msgid "Select Preview..." -#~ msgstr "Roghnaigh Réamhamharc..." - -#~ msgid "Set a price for this item" -#~ msgstr "Socraigh praghas" - -#~ msgid "Price" -#~ msgstr "Praghas" - -#~ msgid "Price:" -#~ msgstr "Praghas:" - -#~ msgid "Reason for price:" -#~ msgstr "Fáth atá leis an bpraghas:" - -#~ msgid "Fetch content link from server" -#~ msgstr "Faigh nasc ábhair ón freastalaí" - -#~ msgid "Create content on server" -#~ msgstr "Cruthaigh inneachar ar an bhfreastalaí" - -#~ msgid "Upload content" -#~ msgstr "Uasluchtaigh inneachar" - -#~ msgid "Upload first preview" -#~ msgstr "Uasluchtaigh an chéad réamhamharc" - -#~ msgid "Note: You can edit, update and delete your content on the website." -#~ msgstr "" -#~ "Nóta: Is féidir leat do chuid ábhair ón shuíomh Gréasáin a chur in eagar, " -#~ "a nuashonrú, nó a scriosadh." - -#~ msgid "Upload second preview" -#~ msgstr "Uasluchtaigh an dara réamhamharc" - -#~ msgid "Upload third preview" -#~ msgstr "Uasluchtaigh an tríú réamhamharc" - -#~ msgid "" -#~ "I ensure that this content does not violate any existing copyright, law " -#~ "or trademark. I agree for my IP address to be logged. (Distributing " -#~ "content without the permission of the copyright holder is illegal.)" -#~ msgstr "" -#~ "Dearbhaím nach sáraíonn an t-ábhar seo aon chóipcheart, dlí, nó " -#~ "trádmharc. Toilím le mo sheoladh IP a bheith logáilte. (Tá sé " -#~ "mídhleathach ábhar a scaipeadh gan chead ón dauine a bhfuil an cóipcheart " -#~ "aige.)" - -#~ msgid "Start Upload" -#~ msgstr "Tosaigh an tUasluchtú" - -#~ msgid "Play a &sound" -#~ msgstr "Seinn &fuaim" - -#~ msgid "Select the sound to play" -#~ msgstr "Roghnaigh fuaim le seinm" - -#~ msgid "Show a message in a &popup" -#~ msgstr "Taispeáin teachtaireacht i b&preabfhuinneog" - -#~ msgid "Log to a file" -#~ msgstr "Logáil go comhad" - -#~ msgid "Mark &taskbar entry" -#~ msgstr "Marcáil iontráil sa &tascbharra" - -#~ msgid "Run &command" -#~ msgstr "Rith &ordú" - -#~ msgid "Select the command to run" -#~ msgstr "Roghnaigh an t-ordú le rith" - -#~ msgid "Sp&eech" -#~ msgstr "&Caint" - -#~ msgid "" -#~ "Specifies how Jovie should speak the event when received. If you " -#~ "select \"Speak custom text\", enter the text in the box. You may use the " -#~ "following substitution strings in the text:
      %e
      Name of the " -#~ "event
      %a
      Application that sent the event
      %m
      The message sent by the application
      " -#~ msgstr "" -#~ "Sonraigh conas ba chóir do Jovie an teagmhas a léamh nuair a " -#~ "tharlaíonn sé. Má roghnaíonn tú \"Abair téacs saincheaptha\", iontráil " -#~ "an téacs sa bhosca. Is féidir na teaghráin ionadaithe seo a leanas a " -#~ "úsáid sa téacs:
      %e
      Ainm an teagmhais
      %a
      Feidhmchlár a sheol an teagmhas
      %m
      An " -#~ "teachtaireacht a sheol an feidhmchlár
      " - -#~ msgid "Speak Event Message" -#~ msgstr "Abair Teachtaireacht an Teagmhais" - -#~ msgid "Speak Event Name" -#~ msgstr "Abair Ainm an Teagmhais" - -#~ msgid "Speak Custom Text" -#~ msgstr "Abair Téacs Saincheaptha" - -#~ msgid "Configure Notifications" -#~ msgstr "Cumraigh Fógairt" - -#~ msgctxt "State of the notified event" -#~ msgid "State" -#~ msgstr "Staid" - -#~ msgctxt "Title of the notified event" -#~ msgid "Title" -#~ msgstr "Teideal" - -#~ msgctxt "Description of the notified event" -#~ msgid "Description" -#~ msgstr "Cur Síos" - -#~ msgid "Do you want to search the Internet for %1?" -#~ msgstr "An bhfuil fonn ort an tIdirlíon a chuardach ar %1?" - -#~ msgid "Internet Search" -#~ msgstr "Cuardach Idirlín" - -#~ msgid "&Search" -#~ msgstr "&Cuardach" - -#~ msgctxt "@label Type of file" -#~ msgid "Type: %1" -#~ msgstr "Cineál: %1" - -#~ msgctxt "@label:checkbox" -#~ msgid "Remember action for files of this type" -#~ msgstr "Déan é seo i gcónaí le comhaid den chineál seo" - -#~ msgctxt "@label:button" -#~ msgid "&Open with %1" -#~ msgstr "&Oscail le %1" - -#~ msgctxt "@action:inmenu" -#~ msgid "Open &with %1" -#~ msgstr "&Oscail le %1" - -#~ msgctxt "@info" -#~ msgid "Open '%1'?" -#~ msgstr "Oscail '%1'?" - -#~ msgctxt "@label:button" -#~ msgid "&Open with..." -#~ msgstr "&Oscail le..." - -#~ msgctxt "@label:button" -#~ msgid "&Open with" -#~ msgstr "&Oscail le" - -#~ msgctxt "@label:button" -#~ msgid "&Open" -#~ msgstr "&Oscail" - -#~ msgctxt "@label File name" -#~ msgid "Name: %1" -#~ msgstr "Ainm: %1" - -#~ msgctxt "@info:whatsthis" -#~ msgid "This is the file name suggested by the server" -#~ msgstr "Seo é an t-ainm a mholann an freastalaí" - -#~ msgid "Do you really want to execute '%1'?" -#~ msgstr "An bhfuil tú cinnte go dteastaíonn uait '%1' a rith?" - -#~ msgid "Execute File?" -#~ msgstr "Rith an comhad?" - -#~ msgid "Accept" -#~ msgstr "Glac Leis" - -#~ msgid "Reject" -#~ msgstr "Diúltaigh" - -#~ msgid "Untitled" -#~ msgstr "Gan Teideal" - -#~ msgid "" -#~ "The document \"%1\" has been modified.\n" -#~ "Do you want to save your changes or discard them?" -#~ msgstr "" -#~ "Athraíodh cáipéis \"%1\".\n" -#~ "An bhfuil fonn ort do chuid athruithe a shábháil?" - -#~ msgid "Close Document" -#~ msgstr "Dún an Cháipéis" - -#~ msgid "Error reading from PTY" -#~ msgstr "Earráid agus sonraí á léamh ó PTY" - -#~ msgid "Error writing to PTY" -#~ msgstr "Earráid agus sonraí á scríobh go PTY" - -#~ msgid "PTY operation timed out" -#~ msgstr "Chuaigh oibríocht PTY thar am" - -#~ msgid "Error opening PTY" -#~ msgstr "Earráid le linn oscailte PTY" - -#~ msgid "Kross" -#~ msgstr "Kross" - -#~ msgid "KDE application to run Kross scripts." -#~ msgstr "Feidhmchlár KDE a ritheann scripteanna Kross." - -#~ msgid "(C) 2006 Sebastian Sauer" -#~ msgstr "© 2006 Sebastian Sauer" - -#~ msgid "Run Kross scripts." -#~ msgstr "Rith scripteanna Kross." - -#~ msgid "Sebastian Sauer" -#~ msgstr "Sebastian Sauer" - -#~ msgid "Scriptfile" -#~ msgstr "Comhad scripte" - -#~ msgid "Scriptfile \"%1\" does not exist." -#~ msgstr "Níl comhad scripte \"%1\" ann." - -#~ msgid "Failed to determine interpreter for scriptfile \"%1\"" -#~ msgstr "" -#~ "Níorbh fhéidir léirmhínitheoir a dhéanamh amach le haghaidh script \"%1\"" - -#~ msgid "Failed to open scriptfile \"%1\"" -#~ msgstr "Níorbh fhéidir comhad scripte \"%1\" a oscailt" - -#~ msgid "Failed to load interpreter \"%1\"" -#~ msgstr "Níorbh fhéidir léirmhínitheoir \"%1\" a luchtú" - -#~ msgid "No such interpreter \"%1\"" -#~ msgstr "Níl a leithéid de léirmhínitheoir ann: \"%1\"" - -#~ msgid "Failed to create script for interpreter \"%1\"" -#~ msgstr "Níorbh fhéidir script a chruthú le haghaidh léirmhínitheoir \"%1\"" - -#~ msgid "Level of safety of the Ruby interpreter" -#~ msgstr "Leibhéal slándála an léirmhínitheora Ruby" - -#~ msgid "Cancel?" -#~ msgstr "Cealaigh?" - -#~ msgid "No such function \"%1\"" -#~ msgstr "Níl a leithéid d'fheidhm ann: \"%1\"" - -#~ msgid "Text:" -#~ msgstr "Téacs:" - -#~ msgid "Comment:" -#~ msgstr "Nóta:" - -#~ msgid "Icon:" -#~ msgstr "Deilbhín:" - -#~ msgid "Interpreter:" -#~ msgstr "Léirmhínitheoir:" - -#~ msgid "File:" -#~ msgstr "Comhad:" - -#~ msgid "Execute the selected script." -#~ msgstr "Rith an script roghnaithe." - -#~ msgid "Stop execution of the selected script." -#~ msgstr "Stop an script roghnaithe." - -#~ msgid "Edit..." -#~ msgstr "Eagar..." - -#~ msgid "Edit selected script." -#~ msgstr "Cuir an script roghnaithe in eagar." - -#~ msgid "Add..." -#~ msgstr "Cuir Leis..." - -#~ msgid "Add a new script." -#~ msgstr "Cuir script nua leis." - -#~ msgid "Remove selected script." -#~ msgstr "Bain an script roghnaithe." - -#~ msgid "Edit" -#~ msgstr "Eagar" - -#~ msgctxt "@title:group Script properties" -#~ msgid "General" -#~ msgstr "Ginearálta" - -#~ msgid "The module %1 could not be found." -#~ msgstr "Níorbh fhéidir modúl %1 a aimsiú." - -#~ msgid "" -#~ "

      The diagnosis is:
      The desktop file %1 could not be found." -#~ msgstr "" -#~ "

      Diagnóisic:
      Níorbh fhéidir comhad deisce %1 a aimsiú.

      " - -#~ msgid "The module %1 is disabled." -#~ msgstr "Díchumasaíodh modúl %1." - -#~ msgid "" -#~ "

      Either the hardware/software the module configures is not " -#~ "available or the module has been disabled by the administrator.

      " -#~ msgstr "" -#~ "

      Níl na crua-earraí/bogearraí a chumraíonn an modúl ar fáil, nó " -#~ "dhíchumasaigh riarthóir an chórais an modúl.

      " - -#~ msgid "The module %1 is not a valid configuration module." -#~ msgstr "Níl %1 ina mhodúl bailí cumraíochta." - -#~ msgid "" -#~ "The diagnosis is:
      The desktop file %1 does not specify a library." -#~ "
      " -#~ msgstr "" -#~ "Diagnóisic:
      Ní shonraíonn comhad deisce %1 leabharlann.
      " - -#~ msgid "There was an error loading the module." -#~ msgstr "Tharla earráid agus an modúl á luchtú." - -#~ msgid "" -#~ "The diagnosis is:
      %1

      Possible reasons:

      • An error " -#~ "occurred during your last KDE upgrade leaving an orphaned control module
      • You have old third party modules lying around.

      Check " -#~ "these points carefully and try to remove the module mentioned in the " -#~ "error message. If this fails, consider contacting your distributor or " -#~ "packager.

      " -#~ msgstr "" -#~ "Diagnóisic:
      %1

      Cúiseanna incheaptha:

      • Tharla earráid " -#~ "le linn an nuashonraithe KDE is déanaí a d'fhág modúl rialaithe ina " -#~ "dhílleachta
      • Tá seanmhodúil tríú páirtí scaipthe soir siar.
      • Seiceáil na pointí seo go cúramach agus bain triail as an modúl " -#~ "luaite sa teachtaireacht earráide a bhaint. Mura n-éiríonn leis seo, " -#~ "téigh i dteagmháil le do dháileoir nó le do phacáisteoir.

        " - -#~ msgid "" -#~ "

        Possible reasons:

        • An error occurred during your last KDE " -#~ "upgrade leaving an orphaned control module
        • You have old third " -#~ "party modules lying around.

        Check these points carefully " -#~ "and try to remove the module mentioned in the error message. If this " -#~ "fails, consider contacting your distributor or packager.

        " -#~ msgstr "" -#~ "

        Cúiseanna incheaptha:

        • Tharla earráid le linn an " -#~ "nuashonraithe KDE is déanaí a d'fhág modúl rialaithe ina dhílleachta
        • Tá seanmhodúil tríú páirtí scaipthe soir siar.

        Seiceáil na pointí seo go cúramach agus bain triail as an modúl " -#~ "luaite sa teachtaireacht earráide a bhaint. Mura n-éiríonn leis seo, " -#~ "téigh i dteagmháil le do dháileoir nó le do phacáisteoir.

        " - -#~ msgctxt "Argument is application name" -#~ msgid "This configuration section is already opened in %1" -#~ msgstr "Tá an t-alt cumraíochta oscailte cheana i %1" - -#~ msgid "" -#~ "The settings of the current module have changed.\n" -#~ "Do you want to apply the changes or discard them?" -#~ msgstr "" -#~ "Athraíodh socruithe an mhodúil reatha.\n" -#~ "An bhfuil fonn ort na hathruithe a chur i bhfeidhm?" - -#~ msgid "Apply Settings" -#~ msgstr "Cuir na socruithe i bhfeidhm" - -#~ msgid "Distance between desktop icons" -#~ msgstr "Fad idir deilbhíní deisce" - -#~ msgid "The distance between icons specified in pixels." -#~ msgstr "Fad idir deilbhíní, i bpicteilíní." - -#~ msgid "Widget style to use" -#~ msgstr "Stíl giuirléidí le húsáid" - -#~ msgid "" -#~ "The name of the widget style, for example \"keramik\" or \"plastik\". " -#~ "Without quotes." -#~ msgstr "" -#~ "Ainm na stíle giuirléidí, mar shampla \"keramik\" nó \"plastik\". Gan " -#~ "comharthaí athfhriotail." - -#~ msgid "Use the PC speaker" -#~ msgstr "Úsáid callaire an ríomhaire" - -#~ msgid "" -#~ "Whether the ordinary PC speaker should be used instead of KDE's own " -#~ "notifications system." -#~ msgstr "" -#~ "Má ba mhaith leat gnáthchallaire an ríomhaire a úsáid in ionad córas " -#~ "fógartha KDE." - -#~ msgid "What terminal application to use" -#~ msgstr "Feidhmchlár teirminéil le húsáid" - -#~ msgid "" -#~ "Whenever a terminal application is launched this terminal emulator " -#~ "program will be used.\n" -#~ msgstr "" -#~ "Nuair a thosaítear feidhmchlár a ritheann i dteirminéal, úsáidtear an t-" -#~ "aithriseoir teirminéil seo.\n" - -#~ msgid "Fixed width font" -#~ msgstr "Cló aonleithid" - -#~ msgid "" -#~ "This font is used when a fixed font is needed. A fixed font has a " -#~ "constant width.\n" -#~ msgstr "" -#~ "Úsáidfear an cló seo nuair atá cló aonleithid de dhíth. Is ionann " -#~ "leithead gach carachtair i gcló aonleithid.\n" - -#~ msgid "System wide font" -#~ msgstr "Cló ar fud an chórais" - -#~ msgid "Font for menus" -#~ msgstr "Cló i roghchláir" - -#~ msgid "What font to use for menus in applications." -#~ msgstr "Cló le húsáid i roghchláir i bhfeidhmchláir." - -#~ msgid "Color for links" -#~ msgstr "Dath na nasc" - -#~ msgid "What color links should be that have not yet been clicked on" -#~ msgstr "Dath na nasc nach bhfuil cliceáilte fós" - -#~ msgid "Color for visited links" -#~ msgstr "Dath na nasc a rinneadh cuairt orthu" - -#~ msgid "Font for the taskbar" -#~ msgstr "Cló sa tascbharra" - -#~ msgid "" -#~ "What font to use for the panel at the bottom of the screen, where the " -#~ "currently running applications are." -#~ msgstr "" -#~ "Cló le húsáid sa phainéal ag bun an scáileáin, áit ina bhfuil na " -#~ "feidhmchláir ghníomhacha." - -#~ msgid "Fonts for toolbars" -#~ msgstr "Clónna i mbarraí uirlisí" - -#~ msgid "Shortcut for taking screenshot" -#~ msgstr "Aicearra chun pictiúr den scáileán a ghlacadh" - -#~ msgid "Shortcut for toggling Clipboard Actions on and off" -#~ msgstr "Aicearra chun Gníomhartha Gearrthaisce a scoránú" - -#~ msgid "Shortcut for shutting down the computer without confirmation" -#~ msgstr "Aicearra chun an ríomhaire a mhúchadh gan dearbhú" - -#~ msgid "Show directories first" -#~ msgstr "Taispeáin comhadlanna ag an mbarr" - -#~ msgid "" -#~ "Whether directories should be placed at the top when displaying files" -#~ msgstr "" -#~ "Roghnaigh é seo más mian leat comhadlanna a fheiceáil ag an mbarr agus " -#~ "comhaid á dtaispeáint" - -#~ msgid "The URLs recently visited" -#~ msgstr "Liosta URLanna a rinneadh cuairt orthu le déanaí" - -#~ msgid "Used for auto-completion in file dialogs, for example" -#~ msgstr "Úsáidtear é seo le haghaidh comhlánaithe uathoibríoch mar shampla" - -#~ msgid "Show file preview in file dialog" -#~ msgstr "Taispeáin réamhamharc ar chomhaid i ndialóga comhaid" - -#~ msgid "Show hidden files" -#~ msgstr "Taispeáin comhaid fholaithe" - -#~ msgid "" -#~ "Whether files starting with a dot (convention for hidden files) should be " -#~ "shown" -#~ msgstr "" -#~ "Leis an rogha seo, taispeánfar gach comhad a bhfuil ainm aige a thosaíonn " -#~ "le ponc (modh traidisiúnta ainmnithe do chomhaid fholaithe)" - -#~ msgid "Show speedbar" -#~ msgstr "Taispeáin barra luais" - -#~ msgid "" -#~ "Whether the shortcut icons to the left in the file dialog should be shown" -#~ msgstr "" -#~ "Leis an rogha seo, taispeánfar deilbhíní aicearra ar thaobh na láimhe clé " -#~ "sa dialóg comhad" - -#~ msgid "What country" -#~ msgstr "Cén tír" - -#~ msgid "" -#~ "Used to determine how to display numbers, currency and time/date, for " -#~ "example" -#~ msgstr "" -#~ "Leis an rogha seo, cinnfidh tú conas a thaispeánfar uimhreacha, " -#~ "airgeadra, amanna agus dátaí mar shampla" - -#~ msgid "What language to use to display text" -#~ msgstr "Teanga ina dtaispeántar téacsanna" - -#~ msgid "Character used for indicating positive numbers" -#~ msgstr "Carachtar a úsáidtear chun uimhreacha deimhneacha a thaispeáint" - -#~ msgid "Most countries have no character for this" -#~ msgstr "Ní úsáidtear carachtar ar bith air seo i bhformhór na dtíortha" - -#~ msgid "Path to the autostart directory" -#~ msgstr "Conair na comhadlainne uath-thosaithe" - -#~ msgid "" -#~ "Path to the directory containing executables to be run on session login" -#~ msgstr "" -#~ "Conair na comhadlainne ina bhfuil na comhaid inrite ba chóir a rith ag am " -#~ "logála isteach" - -#~ msgid "Enable SOCKS support" -#~ msgstr "Cumasaigh tacaíocht SOCKS" - -#~ msgid "Whether SOCKS version 4 and 5 should be enabled in KDE's sub systems" -#~ msgstr "" -#~ "Leis an rogha seo, is féidir leaganacha 4 agus 5 de SOCKS a chumasú i " -#~ "bhfochórais KDE" - -#~ msgid "Path to custom SOCKS library" -#~ msgstr "Conair na leabharlann shaincheaptha SOCKS" - -#~ msgid "Highlight toolbar buttons on mouse over" -#~ msgstr "" -#~ "Aibhsigh cnaipí sa bharra uirlisí nuair a ainlíonn an luch os a gcionn" - -#~ msgid "Show text on toolbar icons " -#~ msgstr "Taispeáin téacs ar dheilbhíní sa bharra uirlisí " - -#~ msgid "Whether text should be shown in addition to icons on toolbar icons" -#~ msgstr "" -#~ "Leis an rogha seo, taispeánfar téacs mar aon le deilbhíní ar dheilbhíní " -#~ "sa bharra uirlisí" - -#~ msgid "Password echo type" -#~ msgstr "Cineál macalla focal faire" - -#~ msgid "The size of the dialog" -#~ msgstr "Méid na dialóige" - -#~ msgid "" -#~ "Automatic changes have been performed due to plugin dependencies. Click " -#~ "here for further information" -#~ msgstr "" -#~ "Rinneadh athruithe uathoibríocha de bharr spleáchais an bhreiseáin. " -#~ "Cliceáil anseo chun tuilleadh eolais a fháil" - -#~ msgid "" -#~ "Automatic changes have been performed in order to satisfy plugin " -#~ "dependencies:\n" -#~ msgstr "" -#~ "Rinneadh athruithe uathoibríocha chun spleáchais an bhreiseáin a " -#~ "shásamh:\n" - -#~ msgid "" -#~ "\n" -#~ " %1 plugin has been automatically checked because of the dependency of " -#~ "%2 plugin" -#~ msgstr "" -#~ "\n" -#~ " Cuireadh tic le breiseán %1 go huathoibríoch de bharr an spleáchais %2" - -#~ msgid "" -#~ "\n" -#~ " %1 plugin has been automatically unchecked because of its dependency " -#~ "on %2 plugin" -#~ msgstr "" -#~ "\n" -#~ " Baineadh an tic ó bhreiseán %1 go huathoibríoch de bharr a spleáchais " -#~ "ar bhreiseán %2" - -#~ msgid "Dependency Check" -#~ msgstr "Seiceáil Spleáchas" - -#~ msgid "%1 plugin automatically added due to plugin dependencies" -#~ msgid_plural "%1 plugins automatically added due to plugin dependencies" -#~ msgstr[0] "Cuireadh %1 bhreiseán leis go huathoibríoch de bharr spleáchas" -#~ msgstr[1] "Cuireadh %1 bhreiseán leis go huathoibríoch de bharr spleáchas" -#~ msgstr[2] "Cuireadh %1 bhreiseán leis go huathoibríoch de bharr spleáchas" -#~ msgstr[3] "Cuireadh %1 mbreiseán leis go huathoibríoch de bharr spleáchas" -#~ msgstr[4] "Cuireadh %1 breiseán leis go huathoibríoch de bharr spleáchas" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid "%1 plugin automatically removed due to plugin dependencies" -#~ msgid_plural "%1 plugins automatically removed due to plugin dependencies" -#~ msgstr[0] "Baineadh %1 bhreiseán go huathoibríoch de bharr spleáchas" -#~ msgstr[1] "Baineadh %1 bhreiseán go huathoibríoch de bharr spleáchas" -#~ msgstr[2] "Baineadh %1 bhreiseán go huathoibríoch de bharr spleáchas" -#~ msgstr[3] "Baineadh %1 mbreiseán go huathoibríoch de bharr spleáchas" -#~ msgstr[4] "Baineadh %1 breiseán go huathoibríoch de bharr spleáchas" - -#~ msgid "Search Plugins" -#~ msgstr "Cuardaigh Breiseáin" - -#~ msgctxt "Used only for plugins" -#~ msgid "About %1" -#~ msgstr "Maidir le %1" - -#~ msgid "Could not load print preview part" -#~ msgstr "Níorbh fhéidir comhpháirt réamhamhairc priontála a luchtú" - -#~ msgid "Print Preview" -#~ msgstr "Réamhamharc Priontála" - -#~ msgid "Select Components" -#~ msgstr "Roghnaigh Comhpháirteanna" - -#~ msgid "Enable component" -#~ msgstr "Cumasaigh comhpháirt" - -#~ msgid "Success" -#~ msgstr "D'éirigh leis" - -#~ msgid "Communication error" -#~ msgstr "Earráid chumarsáide" - -#~ msgid "Invalid type in Database" -#~ msgstr "Cineál neamhbhailí i mBunachar Sonraí" - -#~ msgctxt "" -#~ "@title UDS_DISPLAY_NAME for a KIO directory listing. %1 is the query the " -#~ "user entered." -#~ msgid "Query Results from '%1'" -#~ msgstr "Torthaí an Iarratais ó '%1'" - -#~ msgctxt "@title UDS_DISPLAY_NAME for a KIO directory listing." -#~ msgid "Query Results" -#~ msgstr "Torthaí an Iarratais" - -#~ msgctxt "" -#~ "Boolean AND keyword in desktop search strings. You can add several " -#~ "variants separated by spaces, e.g. retain the English one alongside the " -#~ "translation; keywords are not case sensitive. Make sure there is no " -#~ "conflict with the OR keyword." -#~ msgid "and" -#~ msgstr "and agus" - -#~ msgctxt "" -#~ "Boolean OR keyword in desktop search strings. You can add several " -#~ "variants separated by spaces, e.g. retain the English one alongside the " -#~ "translation; keywords are not case sensitive. Make sure there is no " -#~ "conflict with the AND keyword." -#~ msgid "or" -#~ msgstr "or nó" - -#~ msgid "Nepomuk Resource Class Generator" -#~ msgstr "Gineadóir Aicmí Acmhainne Nepomuk" - -#~ msgid "(c) 2006-2009, Sebastian Trüg" -#~ msgstr "© 2006-2009 Sebastian Sauer" - -#~ msgid "Sebastian Trüg" -#~ msgstr "Sebastian Trüg" - -#~ msgid "Maintainer" -#~ msgstr "Cothaitheoir" - -#~ msgid "Tobias Koenig" -#~ msgstr "Tobias Koenig" - -#~ msgid "Major cleanup - Personal hero of maintainer" -#~ msgstr "Glanadh an-mhór - Meas mór ag an gcothaitheoir air" - -#~ msgid "Verbose output debugging mode." -#~ msgstr "Mód foclach dífhabhtaithe." - -#~ msgid "" -#~ "Generate simple and fast wrapper classes not based on Nepomuk::Resource " -#~ "which do not provide any data integrity checking" -#~ msgstr "" -#~ "Cruthaigh aicmí rapair simplí agus tapa, nach bhfuil bunaithe ar Nepomuk::" -#~ "Resource agus nach ndéanann seiceáil ar shláine na sonraí" - -#~ msgid "Actually generate the code." -#~ msgstr "Gin an cód." - -#~ msgid "List all includes (deprecated)." -#~ msgstr "Taispeáin gach comhad ceanntáisc (i léig)." - -#~ msgid "" -#~ "List all header files that will be generated via the --writeall command." -#~ msgstr "" -#~ "Taispeáin gach comhad ceanntáisc a chruthófar tríd an ordú --writeall." - -#~ msgid "" -#~ "List all source files that will be generated via the --writeall command." -#~ msgstr "" -#~ "Taispeáin gach comhad foinseach a chruthófar tríd an ordú --writeall." - -#~ msgid "" -#~ "The ontology files containing the ontologies to be generated, a space " -#~ "separated list (deprecated: use arguments instead.)" -#~ msgstr "" -#~ "Na comhaid ointeolaíochta ina bhfuil na hointeolaíochtaí le cruthú, le " -#~ "spásanna eatarthu (i léig: úsáid argóintí anois.)" - -#~ msgid "Include path prefix (deprecated)" -#~ msgstr "Cuir réimír na conaire san áireamh (i léig)" - -#~ msgid "Specify the target folder to store generated files into." -#~ msgstr "Sonraigh an spriocfhillteán ina stóráiltear comhaid ghinte." - -#~ msgid "Templates to be used (deprecated)." -#~ msgstr "Teimpléid le húsáid (i léig)." - -#~ msgid "" -#~ "Optionally specify the classes to be generated. Use option multiple times " -#~ "(defaults to all classes)" -#~ msgstr "" -#~ "Más rogha leat, roghnaigh na haicmí le giniúint. Is féidir an rogha seo a " -#~ "úsáid níos mó ná uair amháin (gineann sé gach aicme de réir " -#~ "réamhshocraithe)" - -#~ msgid "" -#~ "Serialization used in the ontology files. Will default to primitive file " -#~ "extension detection." -#~ msgstr "" -#~ "Srathúchán a úsáidtear sna comhaid ointeolaíochta. Braitheann sé ar " -#~ "iarmhíreanna na gcomhad de réir réamhshocraithe." - -#~ msgid "" -#~ "Set the used visibility in case the classes are to be used in public API. " -#~ " will be used to construct the export macro name and the " -#~ "export header. By default classes will not be exported." -#~ msgstr "" -#~ "Socraigh an infheictheacht sa chás go mbainfear úsáid as na haicmí i " -#~ "gcomhéadan poiblí ríomhchláraithe. Úsáidfear chun ainm " -#~ "an mhacra agus an ceanntásc easpórtála a chruthú. De réir " -#~ "réamhshocraithe, ní easpórtálófar aicmí." - -#~ msgid "The ontology files containing the ontologies to be generated." -#~ msgstr "Na comhaid ointeolaíochta ina bhfuil na hointeolaíochtaí le cruthú." - -#~ msgctxt "@title:window" -#~ msgid "Change Tags" -#~ msgstr "Athraigh Clibeanna" - -#~ msgctxt "@title:window" -#~ msgid "Add Tags" -#~ msgstr "Cuir Clibeanna Leis" - -#~ msgctxt "@label:textbox" -#~ msgid "Configure which tags should be applied." -#~ msgstr "Cumraigh na clibeanna ba mhaith leat cur i bhfeidhm." - -#~ msgctxt "@label" -#~ msgid "Create new tag:" -#~ msgstr "Cruthaigh clib nua:" - -#~ msgctxt "@info" -#~ msgid "Delete tag" -#~ msgstr "Scrios clib" - -#~ msgctxt "@info" -#~ msgid "" -#~ "Should the tag %1 really be deleted for all files?" -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mhaith leat clib %1 a " -#~ "scriosadh ó gach comhad?" - -#~ msgctxt "@title" -#~ msgid "Delete tag" -#~ msgstr "Scrios clib" - -#~ msgctxt "@action:button" -#~ msgid "Delete" -#~ msgstr "Scrios" - -#~ msgctxt "@action:button" -#~ msgid "Cancel" -#~ msgstr "Cealaigh" - -#~ msgid "Changing annotations" -#~ msgstr "Anótálacha á n-athrú" - -#~ msgctxt "@label" -#~ msgid "Show all tags..." -#~ msgstr "Taispeáin gach clib..." - -#~ msgctxt "@label" -#~ msgid "Add Tags..." -#~ msgstr "Cuir Clibeanna Leis..." - -#~ msgctxt "@label" -#~ msgid "Change..." -#~ msgstr "Athraigh..." - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Anytime" -#~ msgstr "Am Ar Bith" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Today" -#~ msgstr "Inniu" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Yesterday" -#~ msgstr "Inné" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "This Week" -#~ msgstr "An tSeachtain Seo" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Last Week" -#~ msgstr "An tSeachtain Seo Caite" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "This Month" -#~ msgstr "An Mhí Seo" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Last Month" -#~ msgstr "An Mhí Seo Caite" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "This Year" -#~ msgstr "An Bhliain Seo" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources" -#~ msgid "Last Year" -#~ msgstr "Anuraidh" - -#~ msgctxt "" -#~ "referring to a filter on the modification and usage date of files/" -#~ "resources that will open a dialog to choose a date range" -#~ msgid "Custom..." -#~ msgstr "Saincheap..." - -#~ msgid "This Week" -#~ msgstr "An tSeachtain Seo" - -#~ msgid "This Month" -#~ msgstr "An Mhí Seo" - -#~ msgid "Anytime" -#~ msgstr "Am Ar Bith" - -#~ msgid "Before" -#~ msgstr "Roimhe" - -#~ msgid "After" -#~ msgstr "Ina Dhiaidh" - -#~ msgctxt "" -#~ "@option:check An item in a list of resources that allows to query for " -#~ "more resources to put in the list" -#~ msgid "More..." -#~ msgstr "Tuilleadh..." - -#~ msgctxt "@option:check A filter on file type" -#~ msgid "Documents" -#~ msgstr "Cáipéisí" - -#~ msgctxt "@option:check A filter on file type - audio files" -#~ msgid "Audio" -#~ msgstr "Fuaim" - -#~ msgctxt "@option:check A filter on file type - media video" -#~ msgid "Video" -#~ msgstr "Fís" - -# OK -#~ msgctxt "@option:check A filter on file type" -#~ msgid "Images" -#~ msgstr "Íomhánna" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "No priority" -#~ msgstr "Gan tosaíocht" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "Last modified" -#~ msgstr "Athrú is déanaí" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "Most important" -#~ msgstr "Is tábhachtaí" - -#~ msgctxt "" -#~ "@option:radio A filter on prioritizing/sorting a selection of resources" -#~ msgid "Never opened" -#~ msgstr "Nach oscailte riamh" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "Any Rating" -#~ msgstr "Rátáil Ar Bith" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "1 or more" -#~ msgstr "1 nó níos fearr" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "2 or more" -#~ msgstr "2 nó níos fearr" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "3 or more" -#~ msgstr "3 nó níos fearr" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "4 or more" -#~ msgstr "4 nó níos fearr" - -#~ msgctxt "@option:radio A filter on the rating of a resource" -#~ msgid "Max Rating" -#~ msgstr "Rátáil Uasta" - -#~ msgctxt "" -#~ "@title KCategorizedSortFilterProxyModel grouping for all Nepomukj " -#~ "resources that are of type rdfs:Resource" -#~ msgid "Miscellaneous" -#~ msgstr "Acmhainní Éagsúla" - -#~ msgctxt "@title:column The Nepomuk resource label and icon" -#~ msgid "Resource" -#~ msgstr "Acmhainn" - -#~ msgctxt "@title:column The Nepomuk resource's RDF type" -#~ msgid "Resource Type" -#~ msgstr "Cineál na hAcmhainne" - -#~ msgid "Enter Search Terms..." -#~ msgstr "Cuir Téarmaí Cuardaigh Isteach..." - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Contacts" -#~ msgstr "Teagmhálacha" - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Emails" -#~ msgstr "Ríomhphost" - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Tasks" -#~ msgstr "Tascanna" - -#~ msgctxt "@option:check A filter on resource type" -#~ msgid "Tags" -#~ msgstr "Clibeanna" - -#~ msgctxt "@option:check Do filter on type - show only files" -#~ msgid "Files" -#~ msgstr "Comhaid" - -#~ msgctxt "@option:check Do filter on type - show everything but files" -#~ msgid "Other" -#~ msgstr "Eile" - -#~ msgid "ThreadWeaver Jobs Examples" -#~ msgstr "Samplaí Jabanna ThreadWeaver" - -#~ msgid "" -#~ "The program executes 100 jobs in 4 threads. Each job waits for a random " -#~ "number of milliseconds between 1 and 1000." -#~ msgstr "" -#~ "Ritheann an ríomhchlár 100 jab i 4 shnáithe. Fanann gach jab ar feadh " -#~ "tréimhse randamach, idir 1 mhilleasoicind agus 1000 milleasoicind." - -#~ msgid "" -#~ "Check to see logging information about thread activity. Watch the console " -#~ "output to see the log information." -#~ msgstr "" -#~ "Ticeáil é seo chun faisnéis logála a fheiceáil a bhaineann le " -#~ "gníomhaíocht na snáitheanna. Féach ar aschur an chonsóil chun an " -#~ "fhaisnéis seo a fheiceáil." - -#~ msgid "Log thread activity" -#~ msgstr "Logáil gníomhaíocht na snáitheanna" - -#~ msgid "Displays Thread Activity" -#~ msgstr "Taispeáin Gníomhaíocht na Snáitheanna" - -# "Tosaigh" not "Tús" -#~ msgid "Start" -#~ msgstr "Tosaigh" - -#~ msgid "GUI based example for the Weaver Thread Manager" -#~ msgstr "" -#~ "Sampla bunaithe ar chomhéadan grafach a léiríonn an bainisteoir " -#~ "snáitheanna ThreadWeaver" - -#~ msgid "Remaining number of jobs:" -#~ msgstr "Líon na jabanna fós le déanamh:" - -#~ msgid "What time is it? Click to update." -#~ msgstr "Cén t-am anois é? Cliceáil chun é a nuashonrú." - -#~ msgid "" -#~ "

        (do not know yet)

        " -#~ msgstr "" -#~ "

        (níl a fhios agam fós)

        " - -#~ msgid "Select Files..." -#~ msgstr "Roghnaigh Comhaid..." - -#~ msgid "Cancel" -#~ msgstr "Cealaigh" - -#~ msgid "Suspend" -#~ msgstr "Cuir ar fionraí" - -#~ msgid "Anonymous" -#~ msgstr "Gan ainm" - -#~ msgctxt "@item font" -#~ msgid "Regular" -#~ msgstr "Gnáthchló" - -#~ msgid "What's &This" -#~ msgstr "Cad É &Seo" - -#~ msgctxt "@item Author name in about dialog" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Hide Toolbar" -#~ msgstr "Folaigh an Barra Uirlisí" - -#~ msgid "..." -#~ msgstr "..." - -#~ msgid "GroupBox 1" -#~ msgstr "BoscaGrúpa 1" - -#~ msgid "CheckBox" -#~ msgstr "Ticbhosca" - -#~ msgid "Other GroupBox" -#~ msgstr "BoscaGrúpa Eile" - -#~ msgid "RadioButton" -#~ msgstr "CnaipeRaidió" - -#~ msgid "action1" -#~ msgstr "gníomh1" - -#~ msgid "KrossTest" -#~ msgstr "KrossTest" - -#~ msgid "KDE application to test the Kross framework." -#~ msgstr "Feidhmchlár KDE chun an chreatlach Kross a thástáil." - -#~ msgid "(C) 2005-2007 Sebastian Sauer" -#~ msgstr "© 2005-2007 Sebastian Sauer" - -#~ msgid "Test the Kross framework!" -#~ msgstr "Tástáil creatlach Kross!" - -#~ msgid "Find stopped." -#~ msgstr "Stopadh an t-aimsiú." - -#~ msgid "Starting -- find links as you type" -#~ msgstr "Á thosú -- cuardach beo ar naisc" - -#~ msgid "Starting -- find text as you type" -#~ msgstr "Á thosú -- cuardach beo ar théacs" - -#~ msgid "Link found: \"%1\"." -#~ msgstr "Aimsíodh nasc: \"%1\"." - -#~ msgid "Link not found: \"%1\"." -#~ msgstr "Nasc gan aimsiú: \"%1\"." - -#~ msgid "Text found: \"%1\"." -#~ msgstr "Aimsíodh téacs: \"%1\"." - -#~ msgid "Text not found: \"%1\"." -#~ msgstr "Téacs gan aimsiú: \"%1\"." - -#~ msgid "Additional domains for browsing" -#~ msgstr "Fearainn bhreise le brabhsáil" - -#~ msgid "List of 'wide-area' (non link-local) domains that should be browsed." -#~ msgstr "" -#~ "Liosta d'fhearainn 'achair fhairsing' (nach bhfuil logánta) le brabhsáil." - -#~ msgid "Starting KTTSD Failed" -#~ msgstr "Níorbh fhéidir KTTSD a thosú" - -#~ msgid "I like this" -#~ msgstr "Is maith liom é seo" - -#~ msgid "I do not like this" -#~ msgstr "Ní maith liom é seo" - -#~ msgid "Sonnet Configuration" -#~ msgstr "Cumraíocht Sonnet" - -#~ msgctxt "digit set" -#~ msgid "Devenagari" -#~ msgstr "Déiveanágraí" - -#~ msgid "" -#~ "Not Defined
        There is no \"What's This\" help assigned to this " -#~ "widget. If you want to help us to describe the widget, you are welcome to " -#~ "send us your own \"What's This\" help " -#~ "for it." -#~ msgstr "" -#~ "Gan Sonrú
        Níl aon téacs \"Cad É Seo\" a bhaineann leis an " -#~ "ngiuirléid seo. Más mian leat cabhrú linn agus cur síos a dhéanamh ar an " -#~ "ngiuirléid seo, bheadh fáilte roimh do " -#~ "chabhair \"Cad É Seo\" féin." - -#~ msgid "Details..." -#~ msgstr "Mionsonraí..." - -#~ msgid "New Tag" -#~ msgstr "Clib Nua" - -#~ msgid "Please insert the name of the new tag:" -#~ msgstr "Ionsáigh ainm na clibe nuaí:" - -#~ msgid "The tag %1 already exists" -#~ msgstr "Tá clib %1 ann cheana" - -#~ msgid "Tag Exists" -#~ msgstr "Tá an Chlib Ann" - -#~ msgid "Loading preview..." -#~ msgstr "Réamhamharc á luchtú..." - -#~ msgid "Error: HOME environment variable not set.\n" -#~ msgstr "Earráid: níl an athróg thimpeallachta HOME socraithe.\n" - -#~ msgid "Error: DISPLAY environment variable not set.\n" -#~ msgstr "Earráid: níl an athróg thimpeallachta DISPLAY socraithe.\n" - -#~ msgid "KDontChangeTheHostName" -#~ msgstr "KDontChangeTheHostName" - -#~ msgid "Informs KDE about a change in hostname" -#~ msgstr "Cuir in iúl do KDE athrú san óstainm" - -#~ msgid "(c) 2001 Waldo Bastian" -#~ msgstr "© 2001 Waldo Bastian" - -#~ msgid "Old hostname" -#~ msgstr "Sean-ainm an óstríomhaire" - -#~ msgid "New hostname" -#~ msgstr "Ainm nua an óstríomhaire" - -#~ msgid "Voting failed." -#~ msgstr "Theip ar vótáil." - -#~ msgid "Previews" -#~ msgstr "Réamhamhairc" - -#~ msgid "Community" -#~ msgstr "Pobal" - -#~ msgid "Server:" -#~ msgstr "Freastalaí:" - -#~ msgid "Upload..." -#~ msgstr "Uasluchtaigh..." - -#~ msgid "Fetching provider information..." -#~ msgstr "Eolas faoin soláthraí á fháil..." - -#~ msgid "Content Added" -#~ msgstr "Inneachar Curtha Leis" - -#~ msgctxt "memory size in 2^40 bytes" -#~ msgid "%1 PB" -#~ msgstr "%1 PB" - -#~ msgctxt "memory size in 2^50 bytes" -#~ msgid "%1 EB" -#~ msgstr "%1 EB" - -#~ msgctxt "memory size in 2^60 bytes" -#~ msgid "%1 ZB" -#~ msgstr "%1 ZB" - -#~ msgctxt "memory size in 2^70 bytes" -#~ msgid "%1 YB" -#~ msgstr "%1 YB" - -#~ msgid "" -#~ "Error creating database '%1'.\n" -#~ "Check that the permissions are correct on the directory and the disk is " -#~ "not full.\n" -#~ msgstr "" -#~ "Earráid agus an bunachar sonraí '%1' á chruthú.\n" -#~ "Cinntigh go bhfuil na ceadanna ar an chomhadlann i gceart agus cinntigh " -#~ "go bhfuil go leor spás fágtha ar an diosca.\n" - -#~ msgid "" -#~ "Error writing database '%1'.\n" -#~ "Check that the permissions are correct on the directory and the disk is " -#~ "not full.\n" -#~ msgstr "" -#~ "Earráid agus an bunachar sonraí '%1' á scríobh.\n" -#~ "Cinntigh go bhfuil na ceadanna ar an chomhadlann i gceart agus cinntigh " -#~ "go bhfuil go leor spás fágtha ar an diosca.\n" - -#~ msgid "Silent - work without windows and stderr" -#~ msgstr "Tostach - oibrigh gan fuinneoga agus gan an gnáth-aschur earráide" - -#~ msgid "Show progress information (even if 'silent' mode is on)" -#~ msgstr "" -#~ "Taispeáin eolas faoi dhul chun cinn (fiú má tá an mód 'tostach' in " -#~ "éifeacht)" - -#~ msgid "Reloading KDE configuration, please wait..." -#~ msgstr "Cumraíocht KDE á athluchtú, fan go fóill, le do thoil..." - -#~ msgid "KDE Configuration Manager" -#~ msgstr "Bainisteoir Cumraíochta KDE" - -#~ msgid "Do you want to reload KDE configuration?" -#~ msgstr "An bhfuil fonn ort an chumraíocht KDE a athluchtú?" - -#~ msgctxt "Reload KDE configuration messagebox" -#~ msgid "Reload" -#~ msgstr "Athluchtaigh" - -#~ msgid "Do Not Reload" -#~ msgstr "Ná hAthluchtaigh" - -#~ msgid "Configuration information reloaded successfully." -#~ msgstr "Eolas cumraíochta athluchtaithe go rathúil." - -#~ msgid "Form" -#~ msgstr "Foirm" - -#~ msgid "&Edit Bookmarks" -#~ msgstr "Cuir Leabharmharcanna in &Eagar" - -#~ msgctxt "of January" -#~ msgid "of Jan" -#~ msgstr "d'Ean" - -#~ msgctxt "of February" -#~ msgid "of Feb" -#~ msgstr "d'Fheabh" - -#~ msgctxt "of March" -#~ msgid "of Mar" -#~ msgstr "de Mhár" - -#~ msgctxt "of April" -#~ msgid "of Apr" -#~ msgstr "d'Aib" - -#~ msgctxt "of May short" -#~ msgid "of May" -#~ msgstr "de Bheal" - -#~ msgctxt "of June" -#~ msgid "of Jun" -#~ msgstr "de Mheith" - -#~ msgctxt "of July" -#~ msgid "of Jul" -#~ msgstr "d'Iúil" - -#~ msgctxt "of August" -#~ msgid "of Aug" -#~ msgstr "de Lún" - -#~ msgctxt "of September" -#~ msgid "of Sep" -#~ msgstr "de MhFómh" - -#~ msgctxt "of October" -#~ msgid "of Oct" -#~ msgstr "de DhFómh" - -#~ msgctxt "of November" -#~ msgid "of Nov" -#~ msgstr "de Shamh" - -#~ msgctxt "of December" -#~ msgid "of Dec" -#~ msgstr "de Noll" - -#~ msgid "of January" -#~ msgstr "d'Eanáir" - -#~ msgid "of February" -#~ msgstr "d'Fheabhra" - -#~ msgid "of March" -#~ msgstr "de Mhárta" - -#~ msgid "of April" -#~ msgstr "d'Aibreán" - -#~ msgctxt "of May long" -#~ msgid "of May" -#~ msgstr "de Bhealtaine" - -#~ msgid "of June" -#~ msgstr "de Mheitheamh" - -#~ msgid "of July" -#~ msgstr "d'Iúil" - -#~ msgid "of August" -#~ msgstr "de Lúnasa" - -#~ msgid "of September" -#~ msgstr "de Mheán Fómhair" - -#~ msgid "of October" -#~ msgstr "de Dheireadh Fómhair" - -#~ msgid "of November" -#~ msgstr "de Mhí na Samhna" - -#~ msgid "of December" -#~ msgstr "de Mhí na Nollag" - -#~ msgctxt "January" -#~ msgid "Jan" -#~ msgstr "Ean" - -#~ msgctxt "February" -#~ msgid "Feb" -#~ msgstr "Feabh" - -#~ msgctxt "March" -#~ msgid "Mar" -#~ msgstr "Már" - -#~ msgctxt "April" -#~ msgid "Apr" -#~ msgstr "Aib" - -#~ msgctxt "May short" -#~ msgid "May" -#~ msgstr "Beal" - -#~ msgctxt "June" -#~ msgid "Jun" -#~ msgstr "Meith" - -#~ msgctxt "July" -#~ msgid "Jul" -#~ msgstr "Iúil" - -#~ msgctxt "August" -#~ msgid "Aug" -#~ msgstr "Lún" - -#~ msgctxt "September" -#~ msgid "Sep" -#~ msgstr "MFómh" - -#~ msgctxt "October" -#~ msgid "Oct" -#~ msgstr "DFómh" - -#~ msgctxt "November" -#~ msgid "Nov" -#~ msgstr "Samh" - -#~ msgctxt "December" -#~ msgid "Dec" -#~ msgstr "Noll" - -#~ msgid "January" -#~ msgstr "Eanáir" - -#~ msgid "February" -#~ msgstr "Feabhra" - -#~ msgctxt "March long" -#~ msgid "March" -#~ msgstr "Márta" - -#~ msgid "April" -#~ msgstr "Aibreán" - -#~ msgctxt "May long" -#~ msgid "May" -#~ msgstr "Bealtaine" - -#~ msgid "June" -#~ msgstr "Meitheamh" - -#~ msgid "July" -#~ msgstr "Iúil" - -#~ msgctxt "August long" -#~ msgid "August" -#~ msgstr "Lúnasa" - -#~ msgid "September" -#~ msgstr "Meán Fómhair" - -#~ msgid "October" -#~ msgstr "Deireadh Fómhair" - -#~ msgid "November" -#~ msgstr "Mí na Samhna" - -#~ msgid "December" -#~ msgstr "Mí na Nollag" - -#~ msgctxt "Monday" -#~ msgid "Mon" -#~ msgstr "Luan" - -#~ msgctxt "Tuesday" -#~ msgid "Tue" -#~ msgstr "Máir" - -#~ msgctxt "Wednesday" -#~ msgid "Wed" -#~ msgstr "Céad" - -#~ msgctxt "Thursday" -#~ msgid "Thu" -#~ msgstr "Déar" - -#~ msgctxt "Friday" -#~ msgid "Fri" -#~ msgstr "Aoin" - -#~ msgctxt "Saturday" -#~ msgid "Sat" -#~ msgstr "Sath" - -#~ msgctxt "Sunday" -#~ msgid "Sun" -#~ msgstr "Domh" - -#~ msgid "Monday" -#~ msgstr "Luan" - -#~ msgid "Tuesday" -#~ msgstr "Máirt" - -#~ msgid "Wednesday" -#~ msgstr "Céadaoin" - -#~ msgid "Thursday" -#~ msgstr "Déardaoin" - -#~ msgid "Friday" -#~ msgstr "Aoine" - -#~ msgid "Saturday" -#~ msgstr "Satharn" - -#~ msgid "Sunday" -#~ msgstr "Domhnach" - -#~ msgid "of Muharram" -#~ msgstr "de Muharram" - -#~ msgid "of Safar" -#~ msgstr "de Safar" - -#~ msgid "of R. Awal" -#~ msgstr "de R. Awal" - -#~ msgid "of R. Thaani" -#~ msgstr "de R. Thaani" - -#~ msgid "of J. Awal" -#~ msgstr "de J. Awal" - -#~ msgid "of J. Thaani" -#~ msgstr "de J. Thaani" - -#~ msgid "of Rajab" -#~ msgstr "de Rajab" - -#~ msgid "of Sha`ban" -#~ msgstr "de Sha`ban" - -#~ msgid "of Ramadan" -#~ msgstr "de Ramadan" - -#~ msgid "of Shawwal" -#~ msgstr "de Shawwal" - -#~ msgid "of Qi`dah" -#~ msgstr "de Qi`dah" - -#~ msgid "of Hijjah" -#~ msgstr "de Hijjah" - -#~ msgid "of Rabi` al-Awal" -#~ msgstr "de Rabi` al-Awal" - -#~ msgid "of Rabi` al-Thaani" -#~ msgstr "de Rabi` al-Thaani" - -#~ msgid "of Jumaada al-Awal" -#~ msgstr "de Jumaada al-Awal" - -#~ msgid "of Jumaada al-Thaani" -#~ msgstr "de Jumaada al-Thaani" - -#~ msgid "of Thu al-Qi`dah" -#~ msgstr "de Thu al-Qi`dah" - -#~ msgid "of Thu al-Hijjah" -#~ msgstr "de Thu al-Hijjah" - -#~ msgid "Muharram" -#~ msgstr "Muharram" - -#~ msgid "Safar" -#~ msgstr "Safar" - -#~ msgid "R. Awal" -#~ msgstr "R. Awal" - -#~ msgid "R. Thaani" -#~ msgstr "R. Thaani" - -#~ msgid "J. Awal" -#~ msgstr "J. Awal" - -#~ msgid "J. Thaani" -#~ msgstr "J. Thaani" - -#~ msgid "Rajab" -#~ msgstr "Rajab" - -#~ msgid "Sha`ban" -#~ msgstr "Sha`ban" - -#~ msgid "Ramadan" -#~ msgstr "Ramadan" - -#~ msgid "Shawwal" -#~ msgstr "Shawwal" - -#~ msgid "Qi`dah" -#~ msgstr "Qi`dah" - -#~ msgid "Hijjah" -#~ msgstr "Hijjah" - -#~ msgid "Rabi` al-Awal" -#~ msgstr "Rabi` al-Awal" - -#~ msgid "Rabi` al-Thaani" -#~ msgstr "Rabi` al-Thaani" - -#~ msgid "Jumaada al-Awal" -#~ msgstr "Jumaada al-Awal" - -#~ msgid "Jumaada al-Thaani" -#~ msgstr "Jumaada al-Thaani" - -#~ msgid "Thu al-Qi`dah" -#~ msgstr "Thu al-Qi`dah" - -#~ msgid "Thu al-Hijjah" -#~ msgstr "Thu al-Hijjah" - -#~ msgid "Ith" -#~ msgstr "Ith" - -#~ msgid "Thl" -#~ msgstr "Thl" - -#~ msgid "Arb" -#~ msgstr "Arb" - -#~ msgid "Kha" -#~ msgstr "Kha" - -#~ msgid "Jum" -#~ msgstr "Jum" - -#~ msgid "Sab" -#~ msgstr "Sab" - -#~ msgid "Ahd" -#~ msgstr "Ahd" - -#~ msgid "Yaum al-Ithnain" -#~ msgstr "Yaum al-Ithnain" - -#~ msgid "Yau al-Thulatha" -#~ msgstr "Yau al-Thulatha" - -#~ msgid "Yaum al-Arbi'a" -#~ msgstr "Yaum al-Arbi'a" - -#~ msgid "Yaum al-Khamees" -#~ msgstr "Yaum al-Khamees" - -#~ msgid "Yaum al-Jumma" -#~ msgstr "Yaum al-Jumma" - -#~ msgid "Yaum al-Sabt" -#~ msgstr "Yaum al-Sabt" - -#~ msgid "Yaum al-Ahad" -#~ msgstr "Yaum al-Ahad" - -#~ msgctxt "of Farvardin short" -#~ msgid "of Far" -#~ msgstr "de Far" - -#~ msgctxt "of Ordibehesht short" -#~ msgid "of Ord" -#~ msgstr "de Ord" - -#~ msgctxt "of Khordad short" -#~ msgid "of Kho" -#~ msgstr "de Kho" - -#~ msgctxt "of Tir short" -#~ msgid "of Tir" -#~ msgstr "de Tir" - -#~ msgctxt "of Mordad short" -#~ msgid "of Mor" -#~ msgstr "de Mor" - -#~ msgctxt "of Shahrivar short" -#~ msgid "of Sha" -#~ msgstr "de Sha" - -#~ msgctxt "of Mehr short" -#~ msgid "of Meh" -#~ msgstr "de Meh" - -#~ msgctxt "of Aban short" -#~ msgid "of Aba" -#~ msgstr "de Aba" - -#~ msgctxt "of Azar short" -#~ msgid "of Aza" -#~ msgstr "de Aza" - -#~ msgctxt "of Dei short" -#~ msgid "of Dei" -#~ msgstr "de Dei" - -#~ msgctxt "of Bahman short" -#~ msgid "of Bah" -#~ msgstr "de Bah" - -#~ msgctxt "of Esfand short" -#~ msgid "of Esf" -#~ msgstr "de Esf" - -#~ msgctxt "Farvardin short" -#~ msgid "Far" -#~ msgstr "Far" - -#~ msgctxt "Ordibehesht short" -#~ msgid "Ord" -#~ msgstr "Ord" - -#~ msgctxt "Khordad short" -#~ msgid "Kho" -#~ msgstr "Kho" - -#~ msgctxt "Tir short" -#~ msgid "Tir" -#~ msgstr "Tir" - -#~ msgctxt "Mordad short" -#~ msgid "Mor" -#~ msgstr "Mor" - -#~ msgctxt "Shahrivar short" -#~ msgid "Sha" -#~ msgstr "Sha" - -#~ msgctxt "Mehr short" -#~ msgid "Meh" -#~ msgstr "Meh" - -#~ msgctxt "Aban short" -#~ msgid "Aba" -#~ msgstr "Aba" - -#~ msgctxt "Azar short" -#~ msgid "Aza" -#~ msgstr "Aza" - -#~ msgctxt "Dei short" -#~ msgid "Dei" -#~ msgstr "Dei" - -#~ msgctxt "Bahman short" -#~ msgid "Bah" -#~ msgstr "Bah" - -#~ msgctxt "Esfand" -#~ msgid "Esf" -#~ msgstr "Esf" - -#~ msgid "of Farvardin" -#~ msgstr "de Farvardin" - -#~ msgid "of Ordibehesht" -#~ msgstr "de Ordibehesht" - -#~ msgid "of Khordad" -#~ msgstr "de Khordad" - -#~ msgctxt "of Tir long" -#~ msgid "of Tir" -#~ msgstr "de Tir" - -#~ msgid "of Mordad" -#~ msgstr "de Mordad" - -#~ msgid "of Shahrivar" -#~ msgstr "de Shahrivar" - -#~ msgid "of Mehr" -#~ msgstr "de Mehr" - -#~ msgid "of Aban" -#~ msgstr "de Aban" - -#~ msgid "of Azar" -#~ msgstr "de Azar" - -#~ msgctxt "of Dei long" -#~ msgid "of Dei" -#~ msgstr "de Dei" - -#~ msgid "of Bahman" -#~ msgstr "de Bahman" - -#~ msgid "of Esfand" -#~ msgstr "de Esfand" - -#~ msgid "Farvardin" -#~ msgstr "Farvardin" - -#~ msgid "Ordibehesht" -#~ msgstr "Ordibehesht" - -#~ msgid "Khordad" -#~ msgstr "Khordad" - -#~ msgctxt "Tir long" -#~ msgid "Tir" -#~ msgstr "Tir" - -#~ msgid "Mordad" -#~ msgstr "Mordad" - -#~ msgid "Shahrivar" -#~ msgstr "Shahrivar" - -#~ msgid "Mehr" -#~ msgstr "Mehr" - -#~ msgid "Aban" -#~ msgstr "Aban" - -#~ msgid "Azar" -#~ msgstr "Azar" - -#~ msgctxt "Dei long" -#~ msgid "Dei" -#~ msgstr "Dei" - -#~ msgid "Bahman" -#~ msgstr "Bahman" - -#~ msgid "Esfand" -#~ msgstr "Esfand" - -#~ msgctxt "Do shanbe short" -#~ msgid "2sh" -#~ msgstr "2sh" - -#~ msgctxt "Se shanbe short" -#~ msgid "3sh" -#~ msgstr "3sh" - -#~ msgctxt "Chahar shanbe short" -#~ msgid "4sh" -#~ msgstr "4sh" - -#~ msgctxt "Panj shanbe short" -#~ msgid "5sh" -#~ msgstr "5sh" - -#~ msgctxt "Jumee short" -#~ msgid "Jom" -#~ msgstr "Jom" - -#~ msgctxt "Shanbe short" -#~ msgid "shn" -#~ msgstr "shn" - -#~ msgctxt "Yek-shanbe short" -#~ msgid "1sh" -#~ msgstr "1sh" - -#~ msgid "Do shanbe" -#~ msgstr "Do shanbe" - -#~ msgid "Se shanbe" -#~ msgstr "Se shanbe" - -#~ msgid "Chahar shanbe" -#~ msgstr "Chahar shanbe" - -#~ msgid "Panj shanbe" -#~ msgstr "Panj shanbe" - -#~ msgid "Jumee" -#~ msgstr "Jumee" - -#~ msgid "Shanbe" -#~ msgstr "Shanbe" - -#~ msgid "Yek-shanbe" -#~ msgstr "Yek-shanbe" - -#~ msgid "of Tishrey" -#~ msgstr "Tishrey" - -#~ msgid "of Heshvan" -#~ msgstr "Heshvan" - -#~ msgid "of Kislev" -#~ msgstr "Kislev" - -#~ msgid "of Tevet" -#~ msgstr "Tevet" - -#~ msgid "of Shvat" -#~ msgstr "Shvat" - -#~ msgid "of Adar" -#~ msgstr "Már" - -#~ msgid "of Nisan" -#~ msgstr "Nisan" - -#~ msgid "of Iyar" -#~ msgstr "Már" - -#~ msgid "of Sivan" -#~ msgstr "Sivan" - -#~ msgid "of Tamuz" -#~ msgstr "Tamuz" - -#~ msgid "of Av" -#~ msgstr "Aib" - -#~ msgid "of Elul" -#~ msgstr "Iúil" - -#~ msgid "of Adar I" -#~ msgstr "Adar I" - -#~ msgid "of Adar II" -#~ msgstr "Adar II" - -#~ msgid "Tishrey" -#~ msgstr "Tishrey" - -#~ msgid "Heshvan" -#~ msgstr "Heshvan" - -#~ msgid "Kislev" -#~ msgstr "Kislev" - -#~ msgid "Tevet" -#~ msgstr "Tevet" - -#~ msgid "Shvat" -#~ msgstr "Shvat" - -#~ msgid "Adar" -#~ msgstr "Adar" - -#~ msgid "Nisan" -#~ msgstr "Nisan" - -#~ msgid "Iyar" -#~ msgstr "Iyar" - -#~ msgid "Sivan" -#~ msgstr "Sivan" - -#~ msgid "Tamuz" -#~ msgstr "Tamuz" - -#~ msgid "Av" -#~ msgstr "Av" - -#~ msgid "Elul" -#~ msgstr "Elul" - -#~ msgid "Adar I" -#~ msgstr "Adar I" - -#~ msgid "Adar II" -#~ msgstr "Adar II" - -#~ msgctxt "@item Calendar system" -#~ msgid "Gregorian" -#~ msgstr "Greagórach" - -#~ msgctxt "@item Calendar system" -#~ msgid "Hebrew" -#~ msgstr "Eabhrach" - -#~ msgctxt "@item Calendar system" -#~ msgid "Hijri" -#~ msgstr "Hijri" - -#~ msgctxt "@item Calendar system" -#~ msgid "Jalali" -#~ msgstr "Jalali" - -#~ msgctxt "@item Calendar system" -#~ msgid "Invalid Calendar Type" -#~ msgstr "Cineál Neamhbhailí Féilire" - -#~ msgid "Download New %1" -#~ msgstr "Íosluchtaigh %1 Nua" - -#~ msgid "" -#~ "The slot asked for %1 arguments but there are only %2 arguments available." -#~ msgstr "" -#~ "Bhí an sliotán ag iarraidh %1 argóint cé nach bhfuil ach %2 argóint ar " -#~ "fáil." - -#~ msgid "" -#~ "

        This word was considered to be an \"unknown word\" because it does " -#~ "not match any entry in the dictionary currently in use. It may also be a " -#~ "word in a foreign language.

        \n" -#~ "

        If the word is not misspelled, you may add it to the dictionary by " -#~ "clicking Add to Dictionary. If you don't want to add the unknown " -#~ "word to the dictionary, but you want to leave it unchanged, click " -#~ "Ignore or Ignore All.

        \n" -#~ "

        However, if the word is misspelled, you can try to find the correct " -#~ "replacement in the list below. If you cannot find a replacement there, " -#~ "you may type it in the text box below, and click Replace or " -#~ "Replace All.

        \n" -#~ "
        " -#~ msgstr "" -#~ "

        Is \"focal anaithnid\" é an focal seo, toisc nach bhfuil sé san " -#~ "fhoclóir atá in úsáid faoi láthair. Is féidir gur focal i dteanga eile é " -#~ "freisin.

        \n" -#~ "

        Mura bhfuil sé mílitrithe, is féidir leat an focal a chur leis an " -#~ "bhfoclóir trí Cuir san Fhoclóir a chliceáil. Mura mian leat an " -#~ "focal anaithnid a chur leis an bhfoclóir, agus ní mian leat é a athrú sa " -#~ "téacs, cliceáil Déan neamhaird deDéan neamhaird de gach " -#~ "ceann.

        \n" -#~ "

        Má tá sé mílitrithe áfach, is féidir leat an litriú ceart a aimsiú sa " -#~ "liosta thíos. Mura bhfuil tú in ann an focal ceart a aimsiú, is féidir " -#~ "do rogha focail a chur sa bhosca thíos, ansin Ionadaigh nó " -#~ "Ionadaigh Uile a chliceáil.

        \n" -#~ "
        " - -#~ msgid "Conflict With Registered Global Shortcut(s)" -#~ msgstr "Coimhlint le hAicearra(í) Comhchoiteann(a) Cláraithe" - -#~ msgid "Shortcut Conflict(s)" -#~ msgstr "Coinbhleacht(aí) idir Aicearraí" - -#~ msgid "tagcloudtest" -#~ msgstr "tagcloudtest" - -#~ msgctxt "KCharSelect section name" -#~ msgid "Indic Scripts" -#~ msgstr "Scripteanna Indiacha" - -#~ msgid "Solid Browser" -#~ msgstr "Brabhsálaí Solid" - -#~ msgid "Displays a Solid Device Tree" -#~ msgstr "Taispeáin Crann Gléis Solid" - -#~ msgid "(c) 2009 Harald Fernengel" -#~ msgstr "© 2009 Harald Fernengel" - -#~ msgid "Simple and quick hack for showing a solid device tree" -#~ msgstr "Ríomhchleas simplí tapa a thaispeánann crann gléis Solid" - -#~ msgid "" -#~ "Open '%2'?\n" -#~ "Type: %1" -#~ msgstr "" -#~ "Oscail '%2'?\n" -#~ "Cineál: %1" - -#~ msgid "" -#~ "Open '%3'?\n" -#~ "Name: %2\n" -#~ "Type: %1" -#~ msgstr "" -#~ "Oscail '%3'?\n" -#~ "Ainm: %2\n" -#~ "Cineál: %1" - -#~ msgid "Path for the trash can" -#~ msgstr "Conair an bhruscair" - -#~ msgid "Path to the desktop directory" -#~ msgstr "Conair na deisce" - -#~ msgid "Directory where the files on the desktop are stored" -#~ msgstr "Comhadlann ina stóráiltear na comhaid atá ar an deasc" - -#~ msgid "Path to documents folder" -#~ msgstr "Conair an fhillteáin Cáipéisí" - -#~ msgid "" -#~ "Changes in this section require root access.
        On applying your " -#~ "changes you will have to supply your root password." -#~ msgstr "" -#~ "Tá ceadanna an fhorúsáideora de dhíth chun athruithe a chur i bhfeidhm " -#~ "sa rannán seo.
        Nuair a chuirfidh tú na hathruithe i bhfeidhm, " -#~ "beidh ort focal faire an fhorúsáideora a thabhairt." - -#~ msgid "" -#~ "This section requires special permissions, probably for system-wide " -#~ "changes; therefore, it is required that you provide the root password to " -#~ "be able to change the module's properties. If you cannot provide the " -#~ "password, the changes of the module cannot be saved " -#~ msgstr "" -#~ "Tá ceadanna speisialta de dhíth sa rannán seo, toisc go bhfuil athruithe " -#~ "ar fud an chórais atá i gceist; mar sin caithfidh tú focal faire an " -#~ "fhorúsáideora a thabhairt sular féidir leat airíonna an mhodúil a athrú. " -#~ "Mura féidir leat an focal faire a thabhairt, ní bheidh tú in ann do chuid " -#~ "athruithe a shábháil " - -#~ msgid "&Abort" -#~ msgstr "&Tobscoir" - -#~ msgid "Abort?" -#~ msgstr "Tobscoir?" - -#~ msgctxt "" -#~ "Hot new stuff offers to Download New Data. Apps can fill in an individual " -#~ "string here, but Data is the default. This is in an action that gets " -#~ "displayed in the menu or toolbar for example." -#~ msgid "Download New Data..." -#~ msgstr "Íosluchtaigh Sonraí Nua..." - -#~ msgid "0 B" -#~ msgstr "0 B" - -#~ msgctxt "" -#~ "Dear Translator! Translate this string to the string 'LTR' in left-to-" -#~ "right languages (as English) or to 'RTL' in right-to-left languages (such " -#~ "as Hebrew and Arabic) to get proper widget layout." -#~ msgid "LTR" -#~ msgstr "LTR" - -#~ msgctxt "number-format:integer" -#~ msgid "us" -#~ msgstr "us" - -#~ msgctxt "number-format:real" -#~ msgid "us" -#~ msgstr "us" - -#~ msgid "Do &Not Store" -#~ msgstr "&Ná Stóráil" - -#~ msgid "" -#~ "Konqueror has the ability to store the password in an encrypted wallet. " -#~ "When the wallet is unlocked, it can then automatically restore the login " -#~ "information next time you submit this form." -#~ msgstr "" -#~ "Tá Konqueror in ann an focal faire a stóráil i sparán criptithe. Nuair a " -#~ "bhaintear an glas den sparán, athchóireoidh sé an fhaisnéis logála " -#~ "isteach an chéad uair eile a seolfaidh tú an fhoirm seo." - -#~ msgctxt "Goes to previous character" -#~ msgid "Back" -#~ msgstr "Siar" - -#~ msgctxt "Goes to next character" -#~ msgid "Forward" -#~ msgstr "Ar Aghaidh" - -#~ msgctxt "Character" -#~ msgid "" -#~ "%2
        %3
        Unicode code " -#~ "point: %4
        (In decimal: %5)
        " -#~ msgstr "" -#~ "%2
        %3
        Códphointe " -#~ "Unicode: %4
        (Deachúlach: %5)
        " - -#~ msgid "" -#~ "Konqueror has the ability to store the password in an encrypted wallet. " -#~ "When the wallet is unlocked, it can then automatically restore the login " -#~ "information next time you visit %1. Do you want to store the information " -#~ "now?" -#~ msgstr "" -#~ "Tá Konqueror in ann an focal faire a stóráil i sparán criptithe. Nuair a " -#~ "bhaintear an glas den sparán, athchóireoidh sé an fhaisnéis logála " -#~ "isteach an chéad uair eile a dhéanfaidh tú cuairt ar %1. An bhfuil fonn " -#~ "ort an fhaisnéis a stóráil anois?" - -#~ msgid "&Options" -#~ msgstr "&Roghanna" - -#~ msgid "Unsorted" -#~ msgstr "Gan sórtáil" - -#~ msgid "Call stack" -#~ msgstr "Cruach glao" - -#~ msgid "JavaScript console" -#~ msgstr "Consól JavaScript" - -#~ msgctxt "Next breakpoint" -#~ msgid "&Next" -#~ msgstr "A&n chéad bhrisphointe eile" - -#~ msgid "&Step" -#~ msgstr "&Céimnigh" - -#~ msgid "&Continue" -#~ msgstr "&Lean ar aghaidh" - -#~ msgid "St&op" -#~ msgstr "St&ad" - -#~ msgctxt "Next breakpoint" -#~ msgid "Next" -#~ msgstr "An chéad bhrisphointe eile" - -#~ msgid "" -#~ "An error occurred while attempting to run a script on this page.\n" -#~ "\n" -#~ "%1" -#~ msgstr "" -#~ "Tharla earráid agus iarracht á dhéanamh script ón leathanach seo a rith.\n" -#~ "\n" -#~ "%1" - -#~ msgid "%1 %" -#~ msgstr "%1 %" - -#~ msgid "" -#~ "The '%1' key combination has already been allocated to the \"%2\" " -#~ "action.\n" -#~ "Do you want to reassign it from that action to the current one?" -#~ msgstr "" -#~ "Tá '%1' comhcheangailte leis an ngníomh \"%2\" cheana.\n" -#~ "An bhfuil fonn ort é a athrú ón ghníomh sin go dtí an gníomh reatha?" - -#~ msgid "Already open." -#~ msgstr "Oscailte cheana." - -#~ msgid "Error opening file." -#~ msgstr "Earráid le linn oscailte." - -#~ msgid "Not a wallet file." -#~ msgstr "Ní comhad sparáin é." - -#~ msgid "Unsupported file format revision." -#~ msgstr "Leasú na formáide comhaid gan tacaíocht." - -#~ msgid "Unknown encryption scheme." -#~ msgstr "Scéim anaithnid criptiúcháin." - -#~ msgid "Corrupt file?" -#~ msgstr "Comhad truaillithe?" - -#~ msgid "Error validating wallet integrity. Possibly corrupted." -#~ msgstr "Earráid agus sláine an sparáin á bailíochtú. B'fhéidir truaillithe." - -#~ msgid "Read error - possibly incorrect password." -#~ msgstr "Earráid sa léamh - b'fhéidir focal faire mícheart." - -#~ msgid "Decryption error." -#~ msgstr "Earráid dhíchriptithe." - -# recent what? -#~ msgctxt "@action" -#~ msgid "OpenRecent" -#~ msgstr "Oscail Rudaí Deireanacha" - -#~ msgctxt "@action" -#~ msgid "SaveAs" -#~ msgstr "Sábháil Mar" - -#~ msgctxt "@action" -#~ msgid "PrintPreview" -#~ msgstr "Réamhamharc Priontála" - -#~ msgctxt "@action" -#~ msgid "ActualSize" -#~ msgstr "Fíormhéid" - -#~ msgctxt "@action" -#~ msgid "EditBookmarks" -#~ msgstr "Cuir Leabharmharcanna in Eagar" - -#~ msgctxt "@action" -#~ msgid "ShowToolbar" -#~ msgstr "Taispeáin an Barra Uirlisí" - -#~ msgctxt "@action" -#~ msgid "ShowStatusbar" -#~ msgstr "Taispeáin an Barra Stádais" - -#~ msgctxt "@action" -#~ msgid "ConfigureToolbars" -#~ msgstr "Cumraigh Barraí Uirlisí" - -#~ msgctxt "@action" -#~ msgid "ConfigureNotifications" -#~ msgstr "Cumraigh Fógairt" - -#~ msgctxt "@action" -#~ msgid "SwitchApplicationLanguage" -#~ msgstr "Athraigh Teanga an Fheidhmchláir" - -#~ msgctxt "@action" -#~ msgid "AboutApp" -#~ msgstr "Eolas" - -#~ msgctxt "@action" -#~ msgid "AboutKDE" -#~ msgstr "Maidir le KDE" - -#~ msgid "English" -#~ msgstr "Béarla" - -#~ msgctxt "@action:inmenu" -#~ msgid "Empty Trash" -#~ msgstr "Folmhaigh an Bruscar" - -#~ msgid "&Edit '%1'..." -#~ msgstr "Cuir '%1' in &Eagar..." - -#~ msgid "&Hide '%1'" -#~ msgstr "&Folaigh '%1'" - -#~ msgid "&Show All Entries" -#~ msgstr "&Taispeáin Gach Iontráil" - -#~ msgid "&Remove '%1'" -#~ msgstr "&Bain '%1'" - -#~ msgctxt "@info" -#~ msgid "Do you really want to empty the Trash? All items will be deleted." -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mian leat an Bruscar a fholmhú? Scriosfar gach " -#~ "rud atá ann." - -#~ msgctxt "@action:button" -#~ msgid "Empty Trash" -#~ msgstr "Folmhaigh an Bruscar" - -#~ msgid "*|All Files" -#~ msgstr "*|Gach Comhad" - -#~ msgid "All Supported Files" -#~ msgstr "Gach Comhad a dTacaítear Leis" - -#~ msgid "Drive: %1" -#~ msgstr "Tiomántán: %1" - -#~ msgid "" -#~ "Click this button to enter the parent folder.

        For " -#~ "instance, if the current location is file:/home/%1 clicking this button " -#~ "will take you to file:/home.
        " -#~ msgstr "" -#~ "Cliceáil an cnaipe seo chun dul isteach sa mháthairfhillteán.

        Mar shampla, más é file:/home/%1 an suíomh reatha, rachaidh tú go " -#~ "file:/home nuair a chliceálann tú an cnaipe seo.
        " - -#~ msgid "" -#~ "Click this button to move backwards one step in the browsing history." -#~ msgstr "Cliceáil an cnaipe seo chun dul siar sa stair brabhsála." - -#~ msgid "Click this button to move forward one step in the browsing history." -#~ msgstr "Cliceáil an cnaipe seo chun dul ar aghaidh sa stair brabhsála." - -#~ msgid "Click this button to reload the contents of the current location." -#~ msgstr "Cliceáil an cnaipe seo chun inneachar an tsuímh reatha a athluchtú." - -#~ msgid "Click this button to create a new folder." -#~ msgstr "Brúigh an cnaipe seo chun fillteán nua a chruthú." - -#~ msgid "Show Places Navigation Panel" -#~ msgstr "Taispeáin an Painéal Nascleanúna Áiteanna" - -#~ msgid "Show Bookmarks" -#~ msgstr "Taispeáin Leabharmharcanna" - -#~ msgid "" -#~ "This is the preferences menu for the file dialog. Various options can " -#~ "be accessed from this menu including:
        • how files are sorted in the " -#~ "list
        • types of view, including icon and list
        • showing of " -#~ "hidden files
        • the Places navigation panel
        • file previews
        • separating folders from files
        " -#~ msgstr "" -#~ "Seo é an roghchlár sainroghanna don dialóg comhad. Is féidir cuid " -#~ "mhaith roghanna a shocrú ón roghchlár seo, mar shampla:
        • conas a " -#~ "shórtáiltear na comhaid sa liosta
        • cineál an amhairc, deilbhíní nó " -#~ "liosta san áireamh
        • taispeáint comhaid fholaithe
        • an " -#~ "painéal nascleanúna Áiteanna
        • réamhamhairc
        • dealú fillteáin " -#~ "agus comhaid
        " - -#~ msgid "&Location:" -#~ msgstr "&Suíomh:" - -#~ msgid "" -#~ "This is the filter to apply to the file list. File names that do not " -#~ "match the filter will not be shown.

        You may select from one of the " -#~ "preset filters in the drop down menu, or you may enter a custom filter " -#~ "directly into the text area.

        Wildcards such as * and ? are allowed." -#~ "

        " -#~ msgstr "" -#~ "Seo é an scagaire le cur i bhfeidhm ar an liosta comhad. Ní " -#~ "thaispeánfar comhaid nach bhfuil comhoiriúnach don scagaire.

        Is féidir " -#~ "leat ceann de na scagairí réamhshocraithe a roghnú ón roghchlár anuas, nó " -#~ "scagaire saincheapta a iontráil go díreach sa réimse téacs.

        Ceadaítear saoróga cosúil le * agus ?.

        " - -#~ msgid "You can only select local files." -#~ msgstr "Ní féidir ach comhaid logánta a roghnú." - -#~ msgid "Remote Files Not Accepted" -#~ msgstr "Ní Ghlactar Le Cianchomhaid" - -#~ msgid "" -#~ "%1\n" -#~ "does not appear to be a valid URL.\n" -#~ msgstr "" -#~ "Is cosúil nach URL bailí é\n" -#~ "'%1'.\n" - -#~ msgid "Invalid URL" -#~ msgstr "URL neamhbhailí" - -#~ msgid "" -#~ "This is the list of files to open. More than one file can be specified by " -#~ "listing several files, separated by spaces." -#~ msgstr "" -#~ "Seo é liosta na gcomhad le hoscailt. Is féidir níos mó ná comhad amháin a " -#~ "shonrú, i liosta dealaithe ag camóga." - -#~ msgid "This is the name of the file to open." -#~ msgstr "Seo ainm an chomhaid atá le hoscailt." - -#~ msgid "" -#~ "The chosen filenames do not\n" -#~ "appear to be valid." -#~ msgstr "" -#~ "Dealraíonn nach bhfuil na comhaid\n" -#~ "roghnaithe bailí." - -#~ msgid "" -#~ "The requested filenames\n" -#~ "%1\n" -#~ "do not appear to be valid;\n" -#~ "make sure every filename is enclosed in double quotes." -#~ msgstr "" -#~ "Dealraíonn sé nach bhfuil na hainmneacha iarrtha bailí\n" -#~ "%1\n" -#~ "Bí cinnte go bhfuil ainm gach comhaid idir comharthaí athfhriotail." - -#~ msgid "Filename Error" -#~ msgstr "Earráid in ainm an chomhaid" - -#~ msgid "*|All Folders" -#~ msgstr "*|Gach Fillteán" - -#~ msgid "Automatically select filename e&xtension (%1)" -#~ msgstr "Roghnaigh iar&mhír an ainm comhaid go huathoibríoch (%1)" - -#~ msgid "the extension %1" -#~ msgstr "an iarmhír: %1" - -#~ msgid "Automatically select filename e&xtension" -#~ msgstr "Roghnaigh iar&mhír an ainm comhaid go huathoibríoch" - -#~ msgid "a suitable extension" -#~ msgstr "iarmhír oiriúnach" - -#~ msgid "Bookmarks" -#~ msgstr "Leabharmharcanna" - -#~ msgctxt "Home Directory" -#~ msgid "Home" -#~ msgstr "Baile" - -#~ msgid "Network" -#~ msgstr "Líonra" - -#~ msgid "Root" -#~ msgstr "Fréamh" - -#~ msgid "&Safely Remove '%1'" -#~ msgstr "Bain '%1' go &sábháilte" - -#~ msgid "&Unmount '%1'" -#~ msgstr "Dí&fheistigh '%1'" - -#~ msgid "&Eject '%1'" -#~ msgstr "&Díchuir '%1'" - -#~ msgid "An error occurred while accessing '%1', the system responded: %2" -#~ msgstr "Tharla earráid agus '%1' á rochtain; dúirt an córas: %2" - -#~ msgid "An error occurred while accessing '%1'" -#~ msgstr "Tharla earráid agus '%1' á rochtain" - -#~ msgid "Custom Path" -#~ msgstr "Conair Shaincheaptha" - -#~ msgid "New Folder" -#~ msgstr "Fillteán Nua" - -#~ msgctxt "@title:window" -#~ msgid "New Folder" -#~ msgstr "Fillteán Nua" - -#~ msgctxt "@label:textbox" -#~ msgid "" -#~ "Create new folder in:\n" -#~ "%1" -#~ msgstr "" -#~ "Cruthaigh fillteán nua i:\n" -#~ "%1" - -#~ msgid "A file or folder named %1 already exists." -#~ msgstr "Tá comhad nó fillteán darb ainm %1 ann cheana." - -#~ msgid "You do not have permission to create that folder." -#~ msgstr "Níl cead agat an fillteán sin a chruthú." - -#~ msgctxt "@title:window" -#~ msgid "Select Folder" -#~ msgstr "Roghnaigh Fillteán" - -#~ msgctxt "@action:button" -#~ msgid "New Folder..." -#~ msgstr "Fillteán Nua..." - -#~ msgctxt "@action:inmenu" -#~ msgid "New Folder..." -#~ msgstr "Fillteán Nua..." - -#~ msgctxt "@option:check" -#~ msgid "Show Hidden Folders" -#~ msgstr "Taispeáin Fillteáin Fholaithe" - -#~ msgid "Edit Places Entry" -#~ msgstr "Cuir Iontráil Áiteanna in Eagar" - -#~ msgid "" -#~ "This is the text that will appear in the Places panel.

        The " -#~ "description should consist of one or two words that will help you " -#~ "remember what this entry refers to.
        " -#~ msgstr "" -#~ "Seo é an téacs a thaispeánfar sa phainéal Áiteanna.

        Ba " -#~ "chóir duit cur síos a dhéanamh air le focal nó dhó sa chaoi gur féidir " -#~ "leat cuimhniú cad é atá i gceist go díreach.
        " - -#~ msgid "&Description:" -#~ msgstr "&Cur Síos:" - -#~ msgid "" -#~ "This is the location associated with the entry. Any valid URL may be " -#~ "used. For example:

        %1
        http://www.kde.org
        ftp://ftp." -#~ "kde.org/pub/kde/stable

        By clicking on the button next to the " -#~ "text edit box you can browse to an appropriate URL.
        " -#~ msgstr "" -#~ "Seo á an suíomh a bhaineann leis an iontráil. Is féidir aon URL bailí " -#~ "a úsáid. Mar shampla:

        %1
        http://www.kde.org
        ftp://" -#~ "ftp.kde.org/pub/kde/stable

        Is féidir leat dul go dtí URL tríd " -#~ "an cnaipe in aice leis an mbosca eagarthóireachta a chliceáil.
        " - -#~ msgid "" -#~ "This is the icon that will appear in the Places panel.

        Click on the button to select a different icon.
        " -#~ msgstr "" -#~ "Seo é an deilbhín a thaispeánfar sa phainéal Áiteanna.

        Cliceáil an cnaipe chun deilbhín difriúil a roghnú.
        " - -#~ msgid "Choose an &icon:" -#~ msgstr "Roghnaigh de&ilbhín:" - -#~ msgid "&Only show when using this application (%1)" -#~ msgstr "&Ná taispeáin ach nuair atá an feidhmchlár seo in úsáid (%1)" - -#~ msgid "" -#~ "Select this setting if you want this entry to show only when using " -#~ "the current application (%1).

        If this setting is not selected, " -#~ "the entry will be available in all applications.
        " -#~ msgstr "" -#~ "Roghnaigh é seo más mian leat an iontráil seo a thaispeáint nuair a " -#~ "úsáidtear an feidhmchlár reatha amháin (%1).

        Mura roghnaíonn " -#~ "tú é seo, beidh an iontráil ar fáil i ngach feidhmchlár.
        " - -#~ msgid "Show Hidden Folders" -#~ msgstr "Taispeáin Fillteáin Fholaithe" - -#~ msgid "" -#~ "Create new folder in:\n" -#~ "%1" -#~ msgstr "" -#~ "Cruthaigh fillteán nua i:\n" -#~ "%1" - -#~ msgid "You did not select a file to delete." -#~ msgstr "Níor roghnaigh tú comhad le scriosadh." - -#~ msgid "Nothing to Delete" -#~ msgstr "Faic le Scriosadh" - -#~ msgid "" -#~ "Do you really want to delete\n" -#~ " '%1'?" -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mian leat\n" -#~ " '%1' a scriosadh?" - -#~ msgid "Delete File" -#~ msgstr "Scrios Comhad" - -#~ msgid "Delete Files" -#~ msgstr "Scrios Comhaid" - -#~ msgid "You did not select a file to trash." -#~ msgstr "Níor roghnaigh tú comhad le cur sa bhruscar." - -#~ msgid "Nothing to Trash" -#~ msgstr "Faic le Cur sa Bhruscar" - -#~ msgid "" -#~ "Do you really want to trash\n" -#~ " '%1'?" -#~ msgstr "" -#~ "An bhfuil tú cinnte gur mian leat\n" -#~ " '%1' a chur sa bhruscar?" - -#~ msgid "Trash File" -#~ msgstr "Cuir Comhad Sa Bhruscar" - -#~ msgctxt "to trash" -#~ msgid "&Trash" -#~ msgstr "&Bruscar" - -#~ msgid "translators: not called for n == 1" -#~ msgid_plural "Do you really want to trash these %1 items?" -#~ msgstr[0] "" -#~ "An bhfuil tú cinnte gur mian leat an mhír seo a chur sa bhruscar?" -#~ msgstr[1] "" -#~ "An bhfuil tú cinnte gur mian leat an dá mhír seo a chur sa bhruscar?" -#~ msgstr[2] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mhír seo a chur sa bhruscar?" -#~ msgstr[3] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mír seo a chur sa bhruscar?" -#~ msgstr[4] "" -#~ "An bhfuil tú cinnte gur mian leat na %1 mír seo a chur sa bhruscar?" - -#~ msgid "Trash Files" -#~ msgstr "Cuir Comhaid Sa Bhruscar" - -#~ msgid "The specified folder does not exist or was not readable." -#~ msgstr "Níl an fillteán sonraithe ann, nó ní féidir é a léamh." - -#~ msgid "Menu" -#~ msgstr "Roghchlár" - -#~ msgid "Parent Folder" -#~ msgstr "Máthairfhillteán" - -#~ msgid "Home Folder" -#~ msgstr "Fillteán Baile" - -#~ msgid "Reload" -#~ msgstr "Athluchtaigh" - -#~ msgid "New Folder..." -#~ msgstr "Fillteán Nua..." - -#~ msgid "Move to Trash" -#~ msgstr "Bog go dtí an Bruscar" - -#~ msgid "Sorting" -#~ msgstr "Sórtáil" - -#~ msgid "By Name" -#~ msgstr "De Réir Ainm" - -#~ msgid "By Size" -#~ msgstr "De Réir Méide" - -#~ msgid "By Date" -#~ msgstr "De Réir Dáta" - -#~ msgid "By Type" -#~ msgstr "De Réir Cineáil" - -#~ msgid "Descending" -#~ msgstr "Ag dul síos" - -#~ msgid "Short View" -#~ msgstr "Amharc Gairid" - -#~ msgid "Tree View" -#~ msgstr "Amharc Crainn" - -#~ msgid "Detailed Tree View" -#~ msgstr "Amharc Mionsonraithe Crainn" - -#~ msgid "Show Hidden Files" -#~ msgstr "Taispeáin Comhaid Fholaithe" - -#~ msgid "Show Preview" -#~ msgstr "Taispeáin Réamhamharc" - -#~ msgid "Navigate" -#~ msgstr "Nascleanúint" - -#~ msgid "Show Full Path" -#~ msgstr "Taispeáin an Chonair Iomlán" - -# keycap, leave as is -#~ msgid "Shift" -#~ msgstr "Shift" - -# #-#-#-#-# tmp.XXXXK5LpVx (PACKAGE VERSION) #-#-#-#-# -# #-#-#-#-# temp2.po (yudit 2.7.6) #-#-#-#-# -# keycap, leave as is -#~ msgid "Ctrl" -#~ msgstr "Ctrl" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "Comment:\n" -#~ "%1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Nóta:\n" -#~ "%1" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "Author:\n" -#~ "%1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Údar:\n" -#~ "%1" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "E-Mail:\n" -#~ "%1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Ríomhphost:\n" -#~ "%1" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "Website:\n" -#~ "%1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Suíomh Gréasáin:\n" -#~ "%1" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "Version:\n" -#~ "%1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Leagan:\n" -#~ "%1" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "License:\n" -#~ "%1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Ceadúnas:\n" -#~ "%1" - -#~ msgid "About Plugin \"%1\"" -#~ msgstr "Maidir le Breiseán \"%1\"" - -#~ msgctxt "@info:tooltip Action tooltip in shortcuts configuration" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "component enabled:" -#~ msgstr "cumasaíodh an chomhpháirt:" - -#~ msgid "Continue script execution" -#~ msgstr "Lean ag rith na scripte" - -#~ msgctxt "@action no list style" -#~ msgid "None" -#~ msgstr "Gan Stíl" - -#~ msgid "%1 plugin added" -#~ msgid_plural "%1 plugins added" -#~ msgstr[0] "Cuireadh breiseán amháin leis" -#~ msgstr[1] "Cuireadh %1 bhreiseán leis" -#~ msgstr[2] "Cuireadh %1 bhreiseán leis" -#~ msgstr[3] "Cuireadh %1 mbreiseán leis" -#~ msgstr[4] "Cuireadh %1 breiseán leis" - -#~ msgid "%1 plugin removed" -#~ msgid_plural "%1 plugins removed" -#~ msgstr[0] "Baineadh %1 bhreiseán" -#~ msgstr[1] "Baineadh %1 bhreiseán" -#~ msgstr[2] "Baineadh %1 bhreiseán" -#~ msgstr[3] "Baineadh %1 mbreiseán" -#~ msgstr[4] "Baineadh %1 breiseán" - -#~ msgid "Email:" -#~ msgstr "Ríomhphost:" - -#~ msgid "Show:" -#~ msgstr "Taispeáin:" - -#~ msgid "Transparent toolbars when moved" -#~ msgstr "Barraí uirlisí trédhearcacha le linn bogtha" - -#~ msgid "Whether toolbars should be visible when moved" -#~ msgstr "" -#~ "Cé acu a bheidh barra uirlisí infheicthe le linn bogtha, nó nach mbeidh" - -#~ msgid "Close this tab" -#~ msgstr "Dún an cluaisín seo" - -#~ msgid "Error while loading %1" -#~ msgstr "Earráid agus %1 á luchtú" - -#~ msgid "An error occurred while loading %1:" -#~ msgstr "Tharla earráid agus %1 á luchtú:" - -#~ msgid "Error: " -#~ msgstr "Earráid: " - -#~ msgid "Do not supress debug output" -#~ msgstr "Ná múch aschur dífhabhtaithe" - -#~ msgid "There exists no such scriptfile \"%1\"" -#~ msgstr "Níl a leithéid de chomhad scripte ann: \"%1\"" - -#~ msgid "qttest" -#~ msgstr "qttest" - -#~ msgctxt "@item license" -#~ msgid "GNU Library General Public License Version 2" -#~ msgstr "GNU Library General Public License Version 2" - -#~ msgid "Please specify the filename to save to." -#~ msgstr "Tabhair ainm an chomhaid le sábháil." - -#~ msgid "Please select the file to open." -#~ msgstr "Roghnaigh an comhad le hoscailt." - -#~ msgid "Ok" -#~ msgstr "OK" - -#~ msgid "NoCARoot" -#~ msgstr "Gan Fhréamh Údaráis Deimhniúcháin" - -#~ msgid "InvalidPurpose" -#~ msgstr "Aidhm Neamhbhailí" - -#~ msgid "PathLengthExceeded" -#~ msgstr "Conair a sháraíonn an fad is mó atá ceadaithe" - -#~ msgid "InvalidCA" -#~ msgstr "CA Neamhbhailí" - -#~ msgid "Expired" -#~ msgstr "As Dáta" - -#~ msgid "SelfSigned" -#~ msgstr "Féinsínithe" - -#~ msgid "ErrorReadingRoot" -#~ msgstr "Earráid agus Fréamh á Léamh" - -#~ msgid "Revoked" -#~ msgstr "Cúlghairthe" - -#~ msgid "Untrusted" -#~ msgstr "Neamhiontaofa" - -#~ msgid "SignatureFailed" -#~ msgstr "Theip ar Shíniú" - -#~ msgid "Rejected" -#~ msgstr "Diúltaithe" - -#~ msgid "PrivateKeyFailed" -#~ msgstr "Theip ar Eochair Phríobháideach" - -#~ msgid "InvalidHost" -#~ msgstr "ÓstNeamhbhailí" - -#~ msgctxt "" -#~ "Hot new stuff offers to Download New Data. Apps can fill in an individual " -#~ "string here, but Data is the default. This is in an action that gets " -#~ "displayed in the menu or toolbar for example." -#~ msgid "Data..." -#~ msgstr "Sonraí..." - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "" -#~ "

        Title

        " -#~ msgstr "" -#~ "

        Teideal

        " - -#~ msgid "Include &Creation Date" -#~ msgstr "Cuir Datá &Cruthaithe San Áireamh" - -#~ msgid "" -#~ "

        Template

        " -#~ msgstr "" -#~ "

        Teimpléad

        " - -#~ msgid "Print Previe&w..." -#~ msgstr "Réamhamharc Prion&tála..." - -#~ msgid "Configure Shortcut" -#~ msgstr "Cumraigh Aicearra" - -#~ msgid "Could not load interpreter library \"%1\"" -#~ msgstr "Níorbh fhéidir leabharlann léirmhínithe \"%1\" a luchtú" - -#~ msgid "Restricted mode for untrusted scripts" -#~ msgstr "Mód srianta le haghaidh scripteanna gan iontaoibh" - -#~ msgid "Stop script execution" -#~ msgstr "Stop an script" - -#~ msgid "Type" -#~ msgstr "Cineál" - -#~ msgid "Not yet rated" -#~ msgstr "Gan rátáil fós" - -#~ msgid "" -#~ "Description:\n" -#~ "\t%1" -#~ msgstr "" -#~ "Cur Síos:\n" -#~ "\t%1" - -#~ msgctxt "@action" -#~ msgid "Popup Menu Context" -#~ msgstr "Comhthéacs Roghchláir Aníos" - -#~ msgctxt "keyboard-key-name" -#~ msgid "Pause" -#~ msgstr "Pause" - -#~ msgctxt "@placeholder/plain" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "@email/plain" -#~ msgid "<%1>" -#~ msgstr "<%1>" - -#~ msgctxt "" -#~ "@email-with-name/plain\n" -#~ "%1 is name, %2 is address" -#~ msgid "%1 <%2>" -#~ msgstr "%1 <%2>" - -#~ msgid "No mime types installed." -#~ msgstr "Níl aon chineál MIME suiteáilte." - -#~ msgid "Automatic choice" -#~ msgstr "Rogha uathoibríoch" - -#~ msgid "Traditional HTTP download" -#~ msgstr "Íosluchtú Traidisiúnta HTTP" - -#~ msgid "GHNS access method" -#~ msgstr "Modh rochtana GHNS" - -#~ msgid "URL of GHNS provider" -#~ msgstr "URL an tsoláthraí GHNS" - -#~ msgid "KDXSView" -#~ msgstr "KDXSView" - -#~ msgid "Root Folder: %1" -#~ msgstr "Fréamhfhillteán: %1" - -#~ msgid "Home Folder: %1" -#~ msgstr "Fillteán Baile: %1" - -#~ msgid "Desktop: %1" -#~ msgstr "Deasc: %1" - -#~ msgctxt "@action Opposite to End" -#~ msgid "Home" -#~ msgstr "Baile" - -#~ msgctxt "@action" -#~ msgid "End" -#~ msgstr "Deireadh" - -#~ msgid "Will not save configuration.\n" -#~ msgstr "Ní shábhálfar an chumraíocht.\n" - -#~ msgid "Folders" -#~ msgstr "Fillteáin" - -#~ msgid "Small Icons" -#~ msgstr "Deilbhíní Beaga" - -#~ msgid "Large Icons" -#~ msgstr "Deilbhíní Móra" - -#~ msgid "Thumbnail Previews" -#~ msgstr "Réamhamhairc Bheaga" - -#~ msgid "Size" -#~ msgstr "Méid" - -#~ msgid "Owner" -#~ msgstr "Úinéir" - -#~ msgid "Group" -#~ msgstr "Grúpa" - -#~ msgid "No preview available." -#~ msgstr "Níl réamhamharc ar fáil." - -#~ msgid "The library %1 does not offer a qt_plugin_instance function." -#~ msgstr "Níl feidhm qt_plugin_instance i leabharlann %1." - -#~ msgid "Library files for \"%1\" not found in paths." -#~ msgstr "Níor aimsíodh na comhaid leabharlainne do \"%1\" sna conairí." - -#~ msgid "Sorry any dict was found. Please reconfigure it" -#~ msgstr "Níor aimsíodh aon fhoclóir. Cumraigh é arís" - -#~ msgid "&URL:" -#~ msgstr "&URL:" - -#~ msgid "Reverse" -#~ msgstr "Aisiompaithe" - -#~ msgid "Folders First" -#~ msgstr "Fillteáin ar dTús" - -#~ msgid "Case Insensitive" -#~ msgstr "Ná bac le cás na litreacha" - -#~ msgid "" -#~ "%1
        Version %2
        Using KDE %3" -#~ msgstr "" -#~ "%1
        Leagan %2
        Úsáid KDE %3" - -#~ msgid "The specified library %1 could not be found." -#~ msgstr "Níorbh fhéidir leabharlann sonraithe %1 a aimsiú." - -#~ msgid "The module %1 could not be loaded." -#~ msgstr "Níorbh fhéidir modúl %1 a luchtú." - -#~ msgctxt "shortcut-key-delimiter" -#~ msgid "+" -#~ msgstr "+" - -#~ msgid "Current location" -#~ msgstr "Suíomh reatha" - -#~ msgctxt "Opposite to End" -#~ msgid "Home" -#~ msgstr "Barr" - -#~ msgctxt "Opposite to Prior" -#~ msgid "Next" -#~ msgstr "Ar Aghaidh" - -#~ msgid "Other encoding" -#~ msgstr "Ionchódú eile" - -#~ msgid "International Ispell" -#~ msgstr "International Ispell" - -#~ msgid "Aspell" -#~ msgstr "Aspell" - -#~ msgid "Hspell" -#~ msgstr "Hspell" - -#~ msgid "Zemberek" -#~ msgstr "Zemberek" - -#~ msgctxt "Unknown ispell dictionary" -#~ msgid "Unknown" -#~ msgstr "Anaithnid" - -#~ msgid "ISpell Default" -#~ msgstr "Réamhshocrú ISpell" - -#~ msgid "ASpell Default" -#~ msgstr "Réamhshocrú ASpell" - -#~ msgid "&Certificate" -#~ msgstr "&Teastas" - -#~ msgid "Invalid certificate" -#~ msgstr "Teastas neamhbhailí" - -#~ msgid "Certificates" -#~ msgstr "Teastais" - -#~ msgid "Signers" -#~ msgstr "Sínitheoirí" - -#~ msgid "Client" -#~ msgstr "Cliant" - -#~ msgid "Import &All" -#~ msgstr "Iompórtáil G&ach Rud" - -#~ msgid "KDE Secure Certificate Import" -#~ msgstr "Iompórtáil Dhaingean na dTeastas KDE" - -#~ msgid "Subject:" -#~ msgstr "Ábhar:" - -#~ msgid "Issued by:" -#~ msgstr "Eisithe ag:" - -#~ msgid "File format:" -#~ msgstr "Formáid chomhaid:" - -#~ msgid "State:" -#~ msgstr "Staid:" - -#~ msgid "Valid from:" -#~ msgstr "Bailí ó:" - -#~ msgid "Valid until:" -#~ msgstr "Bailí go dtí:" - -#~ msgid "Serial number:" -#~ msgstr "Sraithuimhir:" - -#~ msgid "MD5 digest:" -#~ msgstr "Achoimre MD5:" - -#~ msgid "Signature:" -#~ msgstr "Síniú:" - -#~ msgid "Signature" -#~ msgstr "Síniú" - -#~ msgid "Public key:" -#~ msgstr "Eochair phoiblí:" - -#~ msgid "Public Key" -#~ msgstr "Eochair Phoiblí" - -#~ msgid "&Crypto Manager..." -#~ msgstr "Bainisteoir &Criptithe..." - -#~ msgid "&Import" -#~ msgstr "&Iompórtáil" - -#~ msgid "&Save..." -#~ msgstr "&Sábháil..." - -#~ msgid "&Done" -#~ msgstr "&Críochnaithe" - -#~ msgid "Save failed." -#~ msgstr "Theip ar an tsábháil." - -#~ msgid "Certificate Import" -#~ msgstr "Iompórtáil Teastais" - -#~ msgid "You do not seem to have compiled KDE with SSL support." -#~ msgstr "Is cosúil nár tiomsaíodh KDE le tacaíocht do SSL." - -#~ msgid "Certificate file is empty." -#~ msgstr "Tá an comhad teastais folamh." - -#~ msgid "Try Different" -#~ msgstr "Bain Triail as Ceann Eile" - -#~ msgid "I do not know how to handle this type of file." -#~ msgstr "Níl a fhios agam conas an cineál seo comhaid a láimhseáil." - -#~ msgid "0 - Site Certificate" -#~ msgstr "0 - Teastas Suímh" - -#~ msgid "" -#~ "A certificate with that name already exists. Are you sure that you wish " -#~ "to replace it?" -#~ msgstr "" -#~ "Tá teastas leis an ainm sin ann cheana. An bhfuil tú cinnte gur mian leat " -#~ "scríobh air?" - -#~ msgid "" -#~ "Certificate has been successfully imported into KDE.\n" -#~ "You can manage your certificate settings from the KDE Control Center." -#~ msgstr "" -#~ "D'éirigh le hiompórtáil an teastais go KDE.\n" -#~ "Tig leat do shocruithe teastais a rialú ó Lárionad Rialaithe KDE." - -#~ msgid "" -#~ "Certificates have been successfully imported into KDE.\n" -#~ "You can manage your certificate settings from the KDE Control Center." -#~ msgstr "" -#~ "D'éirigh le hiompórtáil na dteastas go KDE.\n" -#~ "Tig leat do shocruithe teastais a rialú ó Lárionad Rialaithe KDE." - -#~ msgid "KDE Certificate Part" -#~ msgstr "Páirt Teastais KDE" - -#~ msgid "Background Mode" -#~ msgstr "Mód Cúlra" - -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "V" -#~ msgstr "V" - -#~ msgid "O" -#~ msgstr "O" - -#~ msgid "Open vertically" -#~ msgstr "Oscail go hingearach" - -#~ msgid "Close vertically" -#~ msgstr "Dún go hingearach" - -#~ msgid "Open horizontally" -#~ msgstr "Oscail go cothrománach" - -#~ msgid "Close horizontally" -#~ msgstr "Dún go cothrománach" - -#~ msgid "Popup Menus" -#~ msgstr "Roghchláir Aníos" - -#~ msgid "Show icons" -#~ msgstr "Taispeáin deilbhíní" - -#~ msgid "Output data in UTF-8 instead of local encoding" -#~ msgstr "Scríobh sonraí mar UTF-8 in ionad an ionchódaithe logánta" - -#~ msgid "Highlight the entry in the menu" -#~ msgstr "Aibhsigh an iontráil sa roghchlár" - -#~ msgid "Do not check if sycoca database is up to date" -#~ msgstr "Seiceáil nuashonruithe don bhunachar sonraí sycoca" - -#~ msgid "The id of the menu entry to locate" -#~ msgstr "Aitheantas na hiontrála roghchláir le haimsiú" - -#~ msgid "Menu item '%1' could not be highlighted." -#~ msgstr "Níorbh fhéidir mír roghchláir '%1' a aibhsiú." - -#~ msgid "" -#~ "KDE Menu query tool.\n" -#~ "This tool can be used to find in which menu a specific application is " -#~ "shown.\n" -#~ "The --highlight option can be used to visually indicate to the user " -#~ "where\n" -#~ "in the KDE menu a specific application is located." -#~ msgstr "" -#~ "Uirlis fiosraithe roghchláir KDE\n" -#~ "Is féidir an uirlis seo a úsáid chun an roghchlár ina dtaispeántar " -#~ "feidhmchlár áirithe a aimsiú.\n" -#~ "Is féidir '--highlight' a úsáid chun suíomh feidhmchláir áirithe sa\n" -#~ "roghchlár a thaispeáint don úsáideoir." - -#~ msgid "kde-menu" -#~ msgstr "kde-menu" - -#~ msgid "No menu item '%1'." -#~ msgstr "Níl mír roghchláir '%1' ann." - -#~ msgid "Menu item '%1' not found in menu." -#~ msgstr "Ní bhfuarthas mír '%1' sa roghchlár." - -#~ msgid "expand ${prefix} and ${exec_prefix} in output" -#~ msgstr "leathnaigh ${prefix} agus ${exec_prefix} san aschur" - -#~ msgid "" -#~ "
        Description:%1
        Author:%2
        Version:%3
        License:%4
        " -#~ msgstr "" -#~ "
        Cur Síos:%1
        Údar:%2
        Leagan:%3
        Ceadúnas:%4
        " - -#~ msgid "Semi-Automatic" -#~ msgstr "Leath-Uathoibríoch" - -#~ msgctxt "short for Manual Detection" -#~ msgid "Manual" -#~ msgstr "De láimh" - -#~ msgid "Browse local network" -#~ msgstr "Brabhsáil an líonra logánta" - -#~ msgid "Release:" -#~ msgstr "Leagan:" - -#~ msgid "Welcome" -#~ msgstr "Fáilte" - -#~ msgid "Release Date" -#~ msgstr "Dáta Foilsithe" - -#~ msgid "" -#~ "Name: %1\n" -#~ "Author: %2\n" -#~ "License: %3\n" -#~ "Version: %4\n" -#~ "Release: %5\n" -#~ "Rating: %6\n" -#~ "Downloads: %7\n" -#~ "Release date: %8\n" -#~ "Summary: %9\n" -#~ msgstr "" -#~ "Ainm: %1\n" -#~ "Údar: %2\n" -#~ "Ceadúnas: %3\n" -#~ "Leagan: %4\n" -#~ "Foilsiú: %5\n" -#~ "Rátáil: %6\n" -#~ "Íosluchtuithe: %7\n" -#~ "Dáta foilsithe: %8\n" -#~ "Achoimre: %9\n" - -#~ msgid "" -#~ "Preview: %1\n" -#~ "Payload: %2\n" -#~ msgstr "" -#~ "Réamhamharc: %1\n" -#~ "Pálasta: %2\n" - -#~ msgid "Installation successful." -#~ msgstr "Suiteáladh mar ba chóir." - -#~ msgid "Successfully installed hot new stuff." -#~ msgstr "D'éirigh le suiteáil stuif nua." - -#~ msgid "Failed to install hot new stuff." -#~ msgstr "Theip ar shuiteáil stuif nua." - -#~ msgid "The files to be uploaded have been created at:\n" -#~ msgstr "Cruthaíodh na comhaid atá le huasluchtú ag:\n" - -#~ msgid "Data file: %1\n" -#~ msgstr "Comhad sonraí: %1\n" - -#~ msgid "Those files can now be uploaded.\n" -#~ msgstr "Is féidir na comhaid sin a uasluchtú anois.\n" - -#~ msgid "Please upload the files manually." -#~ msgstr "Uasluchtaigh na comhaid de láimh." - -#~ msgid "Resource Installation Error" -#~ msgstr "Earráid Shuiteála Acmhainní" - -#~ msgid "No keys were found." -#~ msgstr "Níor aimsíodh aon eochair." - -#~ msgid "The validation failed for unknown reason." -#~ msgstr "Theip ar bhailíochtú; níl fhios agam cén fáth." - -#~ msgid "The MD5SUM check failed, the archive might be broken." -#~ msgstr "Theip ar sheiceáil MD5SIM, is féidir gur briste í an chartlann." - -#~ msgid "The signature is bad, the archive might be broken or altered." -#~ msgstr "Drochshíniú; is féidir gur briste nó athraithe í an chartlann." - -#~ msgid "The signature is valid, but untrusted." -#~ msgstr "Is bailí é an síniú, ach neamhiontaofa." - -#~ msgid "The signature is unknown." -#~ msgstr "Síniú anaithnid." - -#~ msgid "" -#~ "The resource was signed with key 0x%1, belonging to %2 <" -#~ "%3>." -#~ msgstr "" -#~ "Síníodh an acmhainn le heochair 0x%1, atá ag %2 <%3>." - -#~ msgid "Problematic Resource File" -#~ msgstr "Comhad Fadhbach Acmhainne" - -#~ msgid "%1

        Press OK to install it.
        " -#~ msgstr "%1

        Brúigh OK chun é a shuiteáil.
        " - -#~ msgid "The signing failed for unknown reason." -#~ msgstr "Theip ar shíniú; níl fhios agam cén fáth." - -#~ msgid "" -#~ "Select publishing in LAN (multicast) or WAN (unicast, needs configured " -#~ "DNS server)" -#~ msgstr "" -#~ "Foilsiú i LAN (ilchraoladh) nó WAN (aonchraoladh, tá gá le freastalaí " -#~ "cumraithe DNS)" - -#~ msgid "Name of default publishing domain for WAN" -#~ msgstr "Ainm an fhearainn réamhshocraithe foilsithe le haghaidh WAN" - -#~ msgid "" -#~ "The currently set shortcut or the shortcut you are entering will show up " -#~ "here." -#~ msgstr "" -#~ "Anseo feicfidh tú an t-aicearra atá roghnaithe faoi láthair, nó an t-" -#~ "aicearra atá á iontráil agat." - -#~ msgid "Primary shortcut:" -#~ msgstr "Príomhaicearra:" - -#~ msgid "Alternate shortcut:" -#~ msgstr "Aicearra eile:" - -#~ msgid "Enable the entry of multi-key shortcuts" -#~ msgstr "Cumasaigh iontráil aicearraí ileochrach" - -#~ msgid "" -#~ "Select this checkbox to enable the entry of multi-key shortcuts. A multi-" -#~ "key shortcut consists of a sequence of up to 4 keys. For example, you " -#~ "could assign \"Ctrl+F,B\" to Font-Bold and \"Ctrl+F,U\" to Font-Underline." -#~ msgstr "" -#~ "Roghnaigh an ticbhosca seo chun iontráil d'aicearraí ileochrach a " -#~ "chumasú. Is éard atá in aicearra ileochrach ná seicheamh suas le ceithre " -#~ "eochair. Mar shampla, b'fhéidir leat \"Ctrl+C,T\" a cheangal le Cló-Trom " -#~ "agus \"Ctrl+C,F\" a cheangal le Cló-Folíne." - -#~ msgid "Multi-key mode" -#~ msgstr "Mód ileochrach" - -#~ msgid "Shortcut:" -#~ msgstr "Aicearra:" - -#~ msgid "The selected action will not be associated with any key." -#~ msgstr "Ní cheanglófar an gníomh roghnaithe le heochair ar bith." - -#~ msgid "" -#~ "This will bind the default key to the selected action. Usually a " -#~ "reasonable choice." -#~ msgstr "" -#~ "Leis an rogha seo, ceanglófar an eochair réamhshocraithe leis an ghníomh " -#~ "roghnaithe. Rogha chiallmhar go hiondúil." - -#~ msgid "" -#~ "If this option is selected you can create a customized key binding for " -#~ "the selected action using the buttons below." -#~ msgstr "" -#~ "Leis an rogha seo, is féidir leat an gníomh roghnaithe a cheangal le " -#~ "heochair shaincheaptha leis na cnaipí thíos." - -#~ msgid "Advanced" -#~ msgstr "Casta" - -#~ msgid "Invalid Shortcut Key" -#~ msgstr "Eochair Aicearra Neamhbhailí" - -#~ msgid "S:" -#~ msgstr "S:" - -#~ msgid "R:" -#~ msgstr "R:" - -#~ msgid "G:" -#~ msgstr "G:" - -#~ msgid "B:" -#~ msgstr "B:" - -#~ msgid "Embed pixmaps from a source directory" -#~ msgstr "Leabaigh mapaí picteilíní as comhadlann fhoinseach" - -#~ msgctxt "Menu title" -#~ msgid "&Move" -#~ msgstr "&Bog" - -#~ msgid "Alt+Tab" -#~ msgstr "Alt+Tab" - -#~ msgid "" -#~ "This is the default language that the spell checker will use. The drop " -#~ "down box will list all of the dictionaries of your existing languages." -#~ msgstr "" -#~ "Is é seo an teanga réamhshocraithe a úsáidfidh an litreoir. Taispeánfaidh " -#~ "an bosca anuas gach foclóir do na teangacha atá agat." - -#~ msgid "&Configure" -#~ msgstr "&Cumraigh" - -#~ msgid "&Modify" -#~ msgstr "&Athraigh" - -#~ msgid "&Width" -#~ msgstr "&Leithead" - -#~ msgid "&Height" -#~ msgstr "&Airde" - -#~ msgid "Spacing" -#~ msgstr "Spásáil" - -#~ msgid "Top" -#~ msgstr "Barr" - -#~ msgid "Bottom" -#~ msgstr "Bun" - -#~ msgid "&Bottom" -#~ msgstr "&Bun" - -#~ msgid "Move" -#~ msgstr "Bog" - -#~ msgid "Export" -#~ msgstr "Easpórtáil" - -#~ msgid "Import" -#~ msgstr "Iompórtáil" - -#~ msgid "&Zoom" -#~ msgstr "&Súmáil" - -#~ msgid "Malformed URL" -#~ msgstr "URL míchumtha" - -#~ msgid "Charset:" -#~ msgstr "Tacar carachtar:" - -#~ msgid "Save a file" -#~ msgstr "Sábháil comhad" - -#~ msgid "A&bout" -#~ msgstr "&Eolas" - -#~ msgid "On" -#~ msgstr "Ar Siúl" - -#~ msgid "Off" -#~ msgstr "Múchta" - -#~ msgid "E&xit" -#~ msgstr "&Scoir" - -#~ msgid "&New Window..." -#~ msgstr "Fuinneog &Nua..." - -#~ msgid "New &Window..." -#~ msgstr "Fuinneog &Nua..." - -#~ msgid "&New Window" -#~ msgstr "Fuinneog &Nua" - -#~ msgid "&New Game" -#~ msgstr "Cluiche &Nua" - -#~ msgid "&Cut" -#~ msgstr "&Gearr" - -#~ msgid "C&ut" -#~ msgstr "&Gearr" - -#~ msgid "&Foreground Color" -#~ msgstr "Dath an &Tulra" - -#~ msgid "Save As..." -#~ msgstr "Sábháil Mar..." - -#~ msgid "S&ave As..." -#~ msgstr "Sábháil M&ar..." - -#~ msgid "Roman" -#~ msgstr "Rómhánach" - -#~ msgid "Portrait" -#~ msgstr "Portráid" - -#~ msgid "Landscape" -#~ msgstr "Tírdhreach" - -#~ msgid "locally connected" -#~ msgstr "ceangailte go logánta" - -#~ msgid "Browse..." -#~ msgstr "Brabhsáil..." - -#~ msgid "&Properties..." -#~ msgstr "&Airíonna..." - -#~ msgid "Fonts" -#~ msgstr "Clónna" - -#~ msgid "&Fonts" -#~ msgstr "&Clónna" - -#~ msgid "&Reload" -#~ msgstr "&Athluchtaigh" - -#~ msgid "&Update" -#~ msgstr "N&uashonraigh" - -#~ msgid "Highscore" -#~ msgstr "Scór Is Airde" - -#~ msgid "&Insert" -#~ msgstr "&Ionsáigh" - -#~ msgid "Show &Statusbar" -#~ msgstr "Taispeáin an Barra &Stádais" - -#~ msgctxt "QAccel" -#~ msgid "Prior" -#~ msgstr "Siar" - -#~ msgctxt "QAccel" -#~ msgid "Shift" -#~ msgstr "Iomlaoid" - -#~ msgctxt "QAccel" -#~ msgid "Meta" -#~ msgstr "Meta" - -#~ msgctxt "QAccel" -#~ msgid "Alt" -#~ msgstr "Alt" - -#~ msgctxt "QAccel" -#~ msgid "ParenLeft" -#~ msgstr "Lúibín ar Clé" - -#~ msgctxt "QAccel" -#~ msgid "ParenRight" -#~ msgstr "Lúibín ar Dheis" - -#~ msgctxt "QAccel" -#~ msgid "Comma" -#~ msgstr "Camóg" - -#~ msgctxt "QAccel" -#~ msgid "Minus" -#~ msgstr "Comhartha Lúide" - -#~ msgctxt "QAccel" -#~ msgid "Period" -#~ msgstr "Lánstad" - -#~ msgctxt "QAccel" -#~ msgid "Slash" -#~ msgstr "Soladas" - -#~ msgctxt "QAccel" -#~ msgid "Semicolon" -#~ msgstr "Leathstad" - -#~ msgctxt "QAccel" -#~ msgid "Less" -#~ msgstr "Comhartha Níos Lú" - -#~ msgctxt "QAccel" -#~ msgid "Equal" -#~ msgstr "Comhartha Cothromais" - -#~ msgctxt "QAccel" -#~ msgid "Greater" -#~ msgstr "Comhartha Níos Mó" - -#~ msgctxt "QAccel" -#~ msgid "Question" -#~ msgstr "Comhartha Ceiste" - -#~ msgctxt "QAccel" -#~ msgid "BracketLeft" -#~ msgstr "Lúibín Cearnach ar Clé" - -#~ msgctxt "QAccel" -#~ msgid "Backslash" -#~ msgstr "Soladas Tuathail" - -#~ msgctxt "QAccel" -#~ msgid "BracketRight" -#~ msgstr "Lúibín Cearnach ar Dheis" - -#~ msgctxt "QAccel" -#~ msgid "AsciiCircum" -#~ msgstr "Cuairín" - -#~ msgctxt "QAccel" -#~ msgid "Underscore" -#~ msgstr "Líne Íseal" - -#~ msgctxt "QAccel" -#~ msgid "QuoteLeft" -#~ msgstr "Comhartha Athfhriotáil" - -#~ msgctxt "QAccel" -#~ msgid "BraceLeft" -#~ msgstr "Lúibín Casta ar Clé" - -#~ msgctxt "QAccel" -#~ msgid "BraceRight" -#~ msgstr "Lúibín Casta ar Dheis" - -#~ msgctxt "QAccel" -#~ msgid "AsciiTilde" -#~ msgstr "Tiolda" - -#~ msgctxt "QAccel" -#~ msgid "Apostrophe" -#~ msgstr "Uaschamóg" - -#~ msgctxt "QAccel" -#~ msgid "Ampersand" -#~ msgstr "Amparsan" - -#~ msgctxt "QAccel" -#~ msgid "Exclam" -#~ msgstr "Comhartha Uaillbhreasa" - -#~ msgctxt "QAccel" -#~ msgid "Dollar" -#~ msgstr "Comhartha Dollair" - -#~ msgctxt "QAccel" -#~ msgid "Percent" -#~ msgstr "Comhartha Céatadáin" - -#~ msgctxt "QAccel" -#~ msgid "NumberSign" -#~ msgstr "Comhartha Uimhreacha" - -#~ msgctxt "font style" -#~ msgid "Demi-bold" -#~ msgstr "Leath-throm" - -#~ msgctxt "font style" -#~ msgid "Light" -#~ msgstr "Éadrom" - -#~ msgctxt "font style" -#~ msgid "Light Italic" -#~ msgstr "Iodáileach éadrom" - -#~ msgctxt "font style" -#~ msgid "Demi-bold Italic" -#~ msgstr "Iodáileach leath-throm" - -#~ msgctxt "font style" -#~ msgid "Book" -#~ msgstr "Leabhar" - -#~ msgctxt "font style" -#~ msgid "Book Oblique" -#~ msgstr "Claonta Leabhair" - -#~ msgctxt "window operation" -#~ msgid "Sticky" -#~ msgstr "Greamaitheach" - -#~ msgctxt "window operation" -#~ msgid "Un-Sticky" -#~ msgstr "Neamh-Ghreamaitheach" - -#~ msgid "No default value" -#~ msgstr "Gan luach réamhshocraithe" - -#~ msgid "Undefined value" -#~ msgstr "Luach neamhshainithe" - -#~ msgid "Null value" -#~ msgstr "Luach folamh" - -#~ msgid "Can't find variable: " -#~ msgstr "Ní féidir an athróg a fháil:" - -#~ msgid "Syntax error in parameter list" -#~ msgstr "Earráid chomhréire sa liosta paraiméadar" - -#~ msgid "KScript Error" -#~ msgstr "Earráid KScript" - -#~ msgid "Video Toolbar" -#~ msgstr "Barra Uirlisí Físe" - -#~ msgid "Fullscreen &Mode" -#~ msgstr "&Mód Lánscáileáin" - -#~ msgid "&Half Size" -#~ msgstr "&Leathmhéid" - -#~ msgid "&Normal Size" -#~ msgstr "&Gnáthmhéid" - -#~ msgid "X509" -#~ msgstr "X.509" - -#~ msgid "PGP" -#~ msgstr "PGP" - -#~ msgid "Unknown type" -#~ msgstr "Cineál Anaithnid" - -#~ msgid "All" -#~ msgstr "Uile" - -#~ msgid "Frequent" -#~ msgstr "Go Minic" - -#~ msgid "Organization" -#~ msgstr "Eagras" - -#~ msgid "Undefined" -#~ msgstr "Neamhshainithe" - -#~ msgid "Disable automatic startup on login" -#~ msgstr "Díchumasaigh tosú uathoibríoch ag logáil isteach" - -#~ msgid "" -#~ "Address book file %1 not found! Make sure the old address book is " -#~ "located there and you have read permission for this file." -#~ msgstr "" -#~ "Leabhar seoltaí %1 gan aimsiú! Cinntigh go bhfuil an seanleabhar " -#~ "seoltaí san áit seo agus cinntigh go bhfuil an cead cuí agat chun é a " -#~ "léamh." - -#~ msgid "Kab to Kabc Converter" -#~ msgstr "Tiontaire ó Kab go Kabc" - -#~ msgid "Saving resource '%1' failed!" -#~ msgstr "Theip ar shábháil na hacmhainne '%1'!" - -#~ msgid "Public" -#~ msgstr "Poiblí" - -#~ msgid "Error in libkabc" -#~ msgstr "Earráid i libkabc" - -#~ msgid "List of Emails" -#~ msgstr "Liosta Ríomhphost" - -#~ msgctxt "Home phone" -#~ msgid "Home" -#~ msgstr "Baile" - -#~ msgctxt "Work phone" -#~ msgid "Work" -#~ msgstr "Obair" - -#~ msgid "Messenger" -#~ msgstr "Teachtaire" - -#~ msgid "Preferred Number" -#~ msgstr "Uimhir de Rogha" - -#~ msgid "Voice" -#~ msgstr "Guth" - -#~ msgid "Fax" -#~ msgstr "Facs" - -#~ msgctxt "Mobile Phone" -#~ msgid "Mobile" -#~ msgstr "Fón Póca" - -#~ msgid "Modem" -#~ msgstr "Móideim" - -#~ msgctxt "Car Phone" -#~ msgid "Car" -#~ msgstr "Carr" - -#~ msgid "ISDN" -#~ msgstr "LDSC" - -#~ msgid "PCS" -#~ msgstr "PCS" - -#~ msgid "Work Fax" -#~ msgstr "Facs oibre" - -#~ msgid "Configure Distribution Lists" -#~ msgstr "Cumraigh Liostaí Dáilte" - -#~ msgid "Select Email Address" -#~ msgstr "Roghnaigh Seoladh Ríomhphoist" - -#~ msgid "Email Addresses" -#~ msgstr "Seoltaí Ríomhphoist" - -#~ msgid "Remove List" -#~ msgstr "Bain Liosta" - -#~ msgid "Preferred Email" -#~ msgstr "Ríomhphost de Rogha" - -#~ msgid "Use Preferred" -#~ msgstr "Úsáid an ceann de rogha" - -#~ msgid "Change Email..." -#~ msgstr "Athraigh Seoladh Ríomhphoist..." - -#~ msgid "Distribution List" -#~ msgstr "Liosta Dáilte" - -#~ msgid "Please change &name:" -#~ msgstr "Athraigh an t-ai&nm le do thoil:" - -#~ msgid "Delete distribution list '%1'?" -#~ msgstr "Scrios an liosta dáilte '%1'?" - -#~ msgid "Selected addressees:" -#~ msgstr "Seolaithe roghnaithe:" - -#~ msgid "Selected addresses in '%1':" -#~ msgstr "Seoltaí roghnaithe i '%1':" - -#~ msgid "Dr." -#~ msgstr "An Dr." - -#~ msgid "Miss" -#~ msgstr "Iníon" - -#~ msgid "Mr." -#~ msgstr "An tUas." - -#~ msgid "Mrs." -#~ msgstr "Bean" - -#~ msgid "Ms." -#~ msgstr "Ms." - -#~ msgid "Prof." -#~ msgstr "Oll." - -#~ msgid "I" -#~ msgstr "I" - -#~ msgid "II" -#~ msgstr "II" - -#~ msgid "III" -#~ msgstr "III" - -#~ msgid "Jr." -#~ msgstr "Óg" - -#~ msgid "Realm:" -#~ msgstr "Flaitheas:" - -#~ msgid "LDAP version:" -#~ msgstr "Leagan LDAP:" - -#~ msgid "Size limit:" -#~ msgstr "Uasmhéid:" - -#~ msgid "Time limit:" -#~ msgstr "Teorainn ama:" - -#~ msgid " sec" -#~ msgstr " s" - -#~ msgid "Query Server" -#~ msgstr "Freastalaí na nIarratas" - -#~ msgid "TLS" -#~ msgstr "TLS" - -#~ msgid "Simple" -#~ msgstr "Simplí" - -#~ msgid "SASL" -#~ msgstr "SASL" - -#~ msgid "SASL mechanism:" -#~ msgstr "Sásra SASL:" - -#~ msgid "LDAP Query" -#~ msgstr "Iarratas LDAP" - -#~ msgid "Post Office Box" -#~ msgstr "Bosca Oifig an Phoist" - -#~ msgid "Locality" -#~ msgstr "Ceantar" - -#~ msgid "Postal Code" -#~ msgstr "Cód Poist" - -#~ msgid "Delivery Label" -#~ msgstr "Lipéad Seachadta" - -#~ msgctxt "Preferred address" -#~ msgid "Preferred" -#~ msgstr "De Rogha" - -#~ msgid "Domestic" -#~ msgstr "Intíre" - -#~ msgctxt "Home Address" -#~ msgid "Home" -#~ msgstr "Baile" - -#~ msgctxt "Work Address" -#~ msgid "Work" -#~ msgstr "Obair" - -#~ msgid "Preferred Address" -#~ msgstr "Seoladh de Rogha" - -#~ msgid "Unlock failed. Lock file is owned by other process: %1 (%2)" -#~ msgstr "" -#~ "Theip ar oscailt an ghlais. Is le próiseas eile an comhad ghlais: %1 (%2)" - -#~ msgid "Unable to save to resource '%1'. It is locked." -#~ msgstr "Ní féidir acmhainn '%1' a shábháil. Tá sí faoi ghlas." - -#~ msgid "Select Addressee" -#~ msgstr "Roghnaigh an Seolaí" - -#~ msgid "Selected" -#~ msgstr "Roghnaithe" - -#~ msgid "Unselect" -#~ msgstr "Díroghnaigh" - -#~ msgid "Change Email" -#~ msgstr "Athraigh Seoladh Ríomhphoist" - -#~ msgid "vCard" -#~ msgstr "v-Chárta" - -#~ msgid "No description available." -#~ msgstr "Níl cur síos ar fáil." - -#~ msgid "Unique Identifier" -#~ msgstr "Aitheantóir Sainiúil" - -#~ msgid "Family Name" -#~ msgstr "Sloinne" - -#~ msgid "Given Name" -#~ msgstr "Ainm" - -#~ msgid "Honorific Prefixes" -#~ msgstr "Réimíreanna Ómóis" - -#~ msgid "Honorific Suffixes" -#~ msgstr "Iarmhíreanna Ómóis" - -#~ msgid "Nick Name" -#~ msgstr "Leasainm" - -#~ msgid "Birthday" -#~ msgstr "Lá Breithe" - -#~ msgid "Home Address Street" -#~ msgstr "Seoladh Baile - Sráid" - -#~ msgid "Home Address City" -#~ msgstr "Seoladh Baile - Cathair" - -#~ msgid "Home Address State" -#~ msgstr "Seoladh Baile - Stát" - -#~ msgid "Home Address Zip Code" -#~ msgstr "Seoladh Baile - Cód Poist" - -#~ msgid "Home Address Country" -#~ msgstr "Seoladh Baile - Tír" - -#~ msgid "Home Address Label" -#~ msgstr "Seoladh Baile - Lipéad" - -#~ msgid "Business Address Street" -#~ msgstr "Seoladh Gnó - Sráid" - -#~ msgid "Business Address City" -#~ msgstr "Seoladh Gnó - Cathair" - -#~ msgid "Business Address State" -#~ msgstr "Seoladh Gnó - Stát" - -#~ msgid "Business Address Zip Code" -#~ msgstr "Seoladh Gnó - Cód Poist" - -#~ msgid "Business Address Country" -#~ msgstr "Seoladh Gnó - Tír" - -#~ msgid "Business Address Label" -#~ msgstr "Seoladh Gnó - Lipéad" - -#~ msgid "Mobile Phone" -#~ msgstr "Fón Póca" - -#~ msgid "Car Phone" -#~ msgstr "Fón Cairr" - -#~ msgid "Mail Client" -#~ msgstr "Cliant Ríomhphoist" - -#~ msgid "Time Zone" -#~ msgstr "Crios Ama" - -#~ msgctxt "person in organization" -#~ msgid "Role" -#~ msgstr "Ról" - -#~ msgid "Product Identifier" -#~ msgstr "Aitheantóir Táirge" - -#~ msgid "Revision Date" -#~ msgstr "Dáta Leasaithe" - -#~ msgid "Security Class" -#~ msgstr "Aicme Slándála" - -#~ msgid "Logo" -#~ msgstr "Lógó" - -#~ msgid "Agent" -#~ msgstr "Gníomhaire" - -#~ msgid "TestWritevCard" -#~ msgstr "TestWriteVCard" - -#~ msgid "vCard 2.1" -#~ msgstr "v-Chárta 2.1" - -#~ msgid "Tool &Views" -#~ msgstr "&Amhairc Uirlisí" - -#~ msgid "MDI Mode" -#~ msgstr "Mód Ilcháipéiseach" - -#~ msgid "&Toplevel Mode" -#~ msgstr "Mód &barrleibhéil" - -#~ msgid "C&hildframe Mode" -#~ msgstr "Mód Macf&hráma" - -#~ msgid "Ta&b Page Mode" -#~ msgstr "Mód C&luaisíní" - -#~ msgid "I&DEAl Mode" -#~ msgstr "Mód I&DEAl" - -#~ msgid "Tool &Docks" -#~ msgstr "&Duganna Uirlisí" - -#~ msgid "Switch Top Dock" -#~ msgstr "Athraigh an Duga ag Barr" - -#~ msgid "Switch Right Dock" -#~ msgstr "Athraigh an Duga ar Dheis" - -#~ msgid "Switch Bottom Dock" -#~ msgstr "Athraigh an Duga ag Bun" - -#~ msgid "Previous Tool View" -#~ msgstr "Amharc Uirlise Roimhe Seo" - -#~ msgid "Next Tool View" -#~ msgstr "An Chéad Amharc Uirlise Eile" - -#~ msgid "Undock" -#~ msgstr "Tóg as Duga" - -#~ msgid "Dock" -#~ msgstr "Cuir i nDuga" - -#~ msgid "Operations" -#~ msgstr "Oibríochtaí" - -#~ msgid "Close &All" -#~ msgstr "Dún &Gach Rud" - -#~ msgid "&Minimize All" -#~ msgstr "Íos&laghdaigh Gach Rud" - -#~ msgid "&MDI Mode" -#~ msgstr "&Mód Ilcháipéiseach" - -#~ msgid "&Tile" -#~ msgstr "&Tíl" - -#~ msgid "Ca&scade Windows" -#~ msgstr "Ca&scáidigh Fuinneoga" - -#~ msgid "Cascade &Maximized" -#~ msgstr "Cascáidigh Fuinneoga Uas&mhéadaithe" - -#~ msgid "Tile &Non-Overlapped" -#~ msgstr "Tíligh Ga&n Forluí" - -#~ msgid "Tile Overla&pped" -#~ msgstr "Tíligh le forluí" - -#~ msgid "&Dock/Undock" -#~ msgstr "Cuir i n&Duga/Tóg as Duga" - -#~ msgid "Unnamed" -#~ msgstr "Gan ainm" - -#~ msgid "R&esize" -#~ msgstr "Ath&mhéadaigh" - -#~ msgid "M&inimize" -#~ msgstr "Íos&laghdaigh" - -#~ msgid "M&aximize" -#~ msgstr "&Uasmhéadaigh" - -#~ msgid "&Maximize" -#~ msgstr "&Uasmhéadaigh" - -#~ msgid "M&ove" -#~ msgstr "&Bog" - -#~ msgid "&Undock" -#~ msgstr "&Tóg as duga" - -#~ msgctxt "Switch between overlap and side by side mode" -#~ msgid "Overlap" -#~ msgstr "Forluí" - -#~ msgid "" -#~ "_: Dear Translator! Translate this string to the string 'LTR' in left-to-" -#~ "right languages (as english) or to 'RTL' in right-to-left languages (such " -#~ "as Hebrew and Arabic) to get proper widget layout." -#~ msgstr "LTR" - -#~ msgid "" -#~ "There was an error setting up inter-process communications for KDE. The " -#~ "message returned by the system was:\n" -#~ "\n" -#~ msgstr "" -#~ "Tharla earráid agus cumarsáid idir-phróisis a chur ar bun le haghaidh " -#~ "KDE. Is é seo an teachtaireacht a bhfuarthas ón chóras:\n" -#~ "\n" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "Please check that the \"dcopserver\" program is running!" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Féach an bhfuil an bogearra \"dcopserver\" ag rith!" - -#~ msgid "DCOP communications error (%1)" -#~ msgstr "Earráid cumarsáide DCOP (%1)" - -#~ msgid "Use 'icon' as the icon in the titlebar" -#~ msgstr "Úsáid 'icon' mar an deilbhín sa cheannteideal" - -#~ msgid "Use the DCOP Server specified by 'server'" -#~ msgstr "Úsáid an Freastalaí DCOP ainmnithe i 'server'" - -#~ msgid "Could not register with DCOP.\n" -#~ msgstr "Níorbh fhéidir clárú le DCOP.\n" - -#~ msgid "" -#~ "\n" -#~ "%1:\n" -#~ msgstr "" -#~ "\n" -#~ "%1:\n" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgctxt "1: hostname, 2: port number" -#~ msgid "%1 port %2" -#~ msgstr "%1 port %2" - -#~ msgid "" -#~ msgstr "" - -#~ msgctxt "" -#~ "Dear translator, please do not translate this string in any form, but " -#~ "pick the _right_ value out of NoPlural/TwoForms/French... If not sure " -#~ "what to do mail thd@kde.org and coolo@kde.org, they will tell you. Better " -#~ "leave that out if unsure, the programs will crash!!" -#~ msgid "" -#~ "Definition of PluralForm - to be set by the translator of kdelibs4.po" -#~ msgstr "Gaeilge" - -#~ msgid "Vietnamese" -#~ msgstr "Vítneaimis" - -#~ msgid "Input kcfg XML file" -#~ msgstr "Léigh comhad XML kcfg" - -#~ msgid "Code generation options file" -#~ msgstr "Comhad roghanna le haghaidh giniúna cóid" - -#~ msgid "KDE .kcfg compiler" -#~ msgstr "Tiomsaitheoir .kcfg KDE" - -#~ msgid "KConfig Compiler" -#~ msgstr "Tiomsaitheoir KConfig" - -#~ msgid "Display only media of this type" -#~ msgstr "Ná taispeáin meáin ach den chineál seo" - -#~ msgid "&Search:" -#~ msgstr "&Cuardach:" - -#~ msgid "Shortcut for Selected Action" -#~ msgstr "Aicearra don Ghníomh Roghnaithe" - -#~ msgid "Default key:" -#~ msgstr "Eochair Réamhshocraithe:" - -#~ msgid "K Desktop Environment. Release %1" -#~ msgstr "Timpeallacht Deisce K. Leagan %1" - -#~ msgid "Editing disabled" -#~ msgstr "Eagarthóireacht díchumasaithe" - -#~ msgid "--- line separator ---" -#~ msgstr "--- deighilteoir línte ---" - -#~ msgid "&Browse..." -#~ msgstr "&Brabhsáil..." - -#~ msgid "" -#~ "If you press the OK button, all changes\n" -#~ "you made will be used to proceed." -#~ msgstr "" -#~ "Má bhrúionn tú an cnaipe OK, úsáidfear na hathruithe uile\n" -#~ "a rinne tú chun leanúint ar aghaidh." - -#~ msgid "Accept settings" -#~ msgstr "Glac leis na socruithe" - -#~ msgid "" -#~ "When clicking Apply, the settings will be\n" -#~ "handed over to the program, but the dialog\n" -#~ "will not be closed. Use this to try different settings. " -#~ msgstr "" -#~ "Agus Cuir i bhFeidhm á cliceáil, cuirfear na socruithe\n" -#~ "ar aghaidh go dtí an clár, ach ní dhúnfar an dialóg.\n" -#~ "Úsáid é seo chun socruithe éagsúla a thriail." - -#~ msgctxt "min toolbar" -#~ msgid "Flat" -#~ msgstr "Maol" - -#~ msgid "%1 %2 (Using KDE %3)" -#~ msgstr "%1 %2 (ag baint úsáid as KDE %3)" - -#~ msgid "Image missing" -#~ msgstr "Íomhá ar iarraidh" - -#~ msgid "" -#~ "End of document reached.\n" -#~ "Continue from the beginning?" -#~ msgstr "" -#~ "Tá deireadh na cáipéise sroichte.\n" -#~ "Lean ar aghaidh ón tús?" - -#~ msgid "" -#~ "Beginning of document reached.\n" -#~ "Continue from the end?" -#~ msgstr "" -#~ "Tá tús na cáipéise sroichte.\n" -#~ "Lean ar aghaidh ón deireadh?" - -#~ msgid "Case &sensitive" -#~ msgstr "Cá&síogair" - -#~ msgid "Replace &All" -#~ msgstr "Ion&adaigh Uile" - -#~ msgid "Replace with:" -#~ msgstr "Ionadaigh le:" - -#~ msgid "Go to line:" -#~ msgstr "Téigh go Líne:" - -#~ msgid "Unclutter Windows" -#~ msgstr "Cuir Slacht ar na Fuinneoga" - -#~ msgid "Cascade Windows" -#~ msgstr "Cascáidigh Fuinneoga" - -#~ msgid "On All Desktops" -#~ msgstr "Ar Gach Deasc" - -#~ msgid "No Windows" -#~ msgstr "Gan Fuinneoga" - -#~ msgid "Session is secured with %1 bit %2." -#~ msgstr "Seisiún daingean le %1 giotán %2." - -#~ msgid "Session is not secured." -#~ msgstr "Seisiún éadaingean." - -#~ msgid "KDE LegacyStyle plugin" -#~ msgstr "Breiseán KDE 'LegacyStyle'" - -#~ msgid "KInstalltheme" -#~ msgstr "KInstalltheme" - -#~ msgid "Loading..." -#~ msgstr "Á Luchtú..." - -#~ msgid "kcmkresources" -#~ msgstr "kcmkresources" - -#~ msgid "KDE Resources configuration module" -#~ msgstr "Modúl Cumraíochta Acmhainní KDE" - -#~ msgid "%1 Resource Settings" -#~ msgstr "Socruithe Acmhainní %1" - -#~ msgid "Please enter a resource name." -#~ msgstr "Iontráil ainm acmhainne." - -#~ msgid "There is no standard resource! Please select one." -#~ msgstr "Níl aon acmhainn chaighdeánach! Roghnaigh ceann le do thoil." - -#~ msgid "Unable to create resource of type '%1'." -#~ msgstr "Ní féidir acmhainn den chineál '%1' a chruthú." - -#~ msgid "" -#~ "You cannot remove your standard resource! Please select a new standard " -#~ "resource first." -#~ msgstr "" -#~ "Ní féidir leat d'acmhainn chaighdeánach a dhealú! Roghnaigh acmhainn " -#~ "caighdeánach nua ar dtús le do thoil." - -#~ msgid "You cannot use a read-only resource as standard!" -#~ msgstr "" -#~ "Ní féidir acmhainn inléite amháin a úsáid mar acmhainn chaighdeánach!" - -#~ msgid "You cannot use an inactive resource as standard!" -#~ msgstr "" -#~ "Ní féidir acmhainn neamhghníomhach a úsáid mar acmhainn chaighdeánach!" - -#~ msgid "" -#~ "You cannot deactivate the standard resource. Choose another standard " -#~ "resource first." -#~ msgstr "" -#~ "Ní féidir an acmhainn chaighdeánach a chur as feidhm. Roghnaigh acmhainn " -#~ "chaighdeánach eile ar dtús." - -#~ msgid "" -#~ "There is no valid standard resource! Please select one which is neither " -#~ "read-only nor inactive." -#~ msgstr "" -#~ "Níl aon acmhainn chaighdeánach bhailí ann! Roghnaigh ceann nach bhfuil " -#~ "neamhghníomhach ná inléite amháin." - -#~ msgid "Department" -#~ msgstr "Roinn" - -#~ msgid "Sub-Department" -#~ msgstr "Rannóg" - -#~ msgid "Zipcode" -#~ msgstr "Cód poist" - -#~ msgid "City" -#~ msgstr "Cathair" - -#~ msgctxt "As in addresses" -#~ msgid "State" -#~ msgstr "Stát" - -#~ msgid "Name Prefix" -#~ msgstr "Iarmhír Ainm" - -#~ msgid "First Name" -#~ msgstr "Ainm" - -#~ msgid "Middle Name" -#~ msgstr "Ainm Láir" - -#~ msgid "Talk Addresses" -#~ msgstr "Seoltaí Cainte" - -#~ msgid "Keywords" -#~ msgstr "Lorgfhocail" - -#~ msgid "Telephone Number" -#~ msgstr "Uimhir Theileafóin" - -#~ msgid "URLs" -#~ msgstr "URLanna" - -#~ msgid "User Field 1" -#~ msgstr "Réimse Úsáideora 1" - -#~ msgid "User Field 2" -#~ msgstr "Réimse Úsáideora 2" - -#~ msgid "User Field 3" -#~ msgstr "Réimse Úsáideora 3" - -#~ msgid "User Field 4" -#~ msgstr "Réimse Úsáideora 4" - -#~ msgid "Cannot initialize local variables." -#~ msgstr "Ní féidir athróga logánta a thúsú." - -#~ msgid "Out of Memory" -#~ msgstr "Cuimhne Ídithe" - -#~ msgid "" -#~ "Your local kab configuration file \"%1\" could not be created. kab will " -#~ "probably not work correctly without it.\n" -#~ "Make sure you have not removed write permission from your local KDE " -#~ "directory (usually ~/.kde)." -#~ msgstr "" -#~ "Ní féidir do chomhad cumraíochta logánta kab \"%1\" a chruthú. Is ar " -#~ "éigean go n-oibreoidh kab i gceart gan é.\n" -#~ "Bí cinnte nach bhfuil cead scríofa bainte agat de do chomhadlann logánta " -#~ "KDE (~/.kde de ghnáth)." - -#~ msgid "" -#~ "Your standard kab database file \"%1\" could not be created. kab will " -#~ "probably not work correctly without it.\n" -#~ "Make sure you have not removed write permission from your local KDE " -#~ "directory (usually ~/.kde)." -#~ msgstr "" -#~ "Ní féidir do bhunachar sonraí logánta kab \"%1\" a chruthú. Is ar éigean " -#~ "go n-oibreoidh kab i gceart gan é.\n" -#~ "Bí cinnte nach bhfuil cead scríofa bainte agat de do chomhadlann logánta " -#~ "KDE (~/.kde de ghnáth)." - -#~ msgid "" -#~ "kab has created your standard addressbook in\n" -#~ "\"%1\"" -#~ msgstr "" -#~ "Tá do leabhar seoltaí caighdeánach cruthaithe ag kab i \n" -#~ "\"%1\"" - -#~ msgid "Cannot create backup file (permission denied)." -#~ msgstr "Ní féidir comhad cúltaca a chruthú (diúltaíodh cead)." - -#~ msgid "Cannot open backup file for writing (permission denied)." -#~ msgstr "" -#~ "Ní féidir comhad cúltaca a oscailt le haghaidh scríofa (diúltaíodh cead)." - -#~ msgid "" -#~ "Critical error:\n" -#~ "Permissions changed in local directory!" -#~ msgstr "" -#~ "Earráid chriticiúil:\n" -#~ "Athraíodh na ceadanna sa chomhadlann logánta!" - -#~ msgid "Cannot save the file; will close it now." -#~ msgstr "Ní féidir an comhad a shábháil; dúnfar anois é." - -#~ msgid "The file \"%1\" cannot be found. Create a new one?" -#~ msgstr "Ní bhfuarthas an comhad \"%1\". Cruthaigh ceann nua?" - -#~ msgid "No Such File" -#~ msgstr "Níl a leithéid de chomhad ann." - -#~ msgid "Create" -#~ msgstr "Cruthaigh" - -#~ msgid "Canceled." -#~ msgstr "Cealaithe." - -#~ msgid "(Internal error in kab)" -#~ msgstr "(Earráid inmheánach i kab)" - -#~ msgid "Cannot reload configuration file!" -#~ msgstr "Ní féidir an comhad cumraíochta a athluchtú!" - -#~ msgid "Configuration file reloaded." -#~ msgstr "Comhad cumraíochta athluchtaithe." - -#~ msgid "File saved." -#~ msgstr "Comhad sábháilte." - -#~ msgid "File closed." -#~ msgstr "Comhad dúnta." - -#~ msgid "" -#~ "Cannot find kab's template file.\n" -#~ "You cannot create new files." -#~ msgstr "" -#~ "Ní féidir comhad teimpléid kab a aimsiú.\n" -#~ "Ní féidir leat comhaid nua a chruthú." - -#~ msgid "" -#~ "Cannot read kab's template file.\n" -#~ "You cannot create new files." -#~ msgstr "" -#~ "Ní féidir comhad teimpléid kab a léamh.\n" -#~ "Ní féidir leat comhaid nua a chruthú." - -#~ msgid "Format Error" -#~ msgstr "Earráid Formáide" - -#~ msgid "" -#~ "Cannot find kab's configuration template file.\n" -#~ "kab cannot be configured." -#~ msgstr "" -#~ "Ní féidir comhad teimpléad cumraíochta kab a aimsiú.\n" -#~ "Ní féidir kab a chumrú." - -#~ msgid "" -#~ "Cannot read kab's configuration template file.\n" -#~ "kab cannot be configured." -#~ msgstr "" -#~ "Ní féidir comhad teimpléad cumraíochta kab a léamh.\n" -#~ "Ní féidir kab a chumrú." - -#~ msgid "" -#~ "Cannot load kab's local configuration file.\n" -#~ "There may be a formatting error.\n" -#~ "kab cannot be configured." -#~ msgstr "" -#~ "Ní féidir comhad cumraíochta logánta kab a luchtú.\n" -#~ "B'fhéidir go bhfuil earráid formáidithe ann. Ní féidir kab a chumrú." - -#~ msgid "" -#~ "Cannot find kab's local configuration file.\n" -#~ "kab cannot be configured." -#~ msgstr "" -#~ "Ní féidir comhad cumraíochta logánta kab a aimsiú.\n" -#~ "Ní féidir kab a chumrú." - -#~ msgid "fixed" -#~ msgstr "socraithe" - -#~ msgid "mobile" -#~ msgstr "soghluaiste" - -#~ msgid "fax" -#~ msgstr "facs" - -#~ msgid "modem" -#~ msgstr "móideim" - -#~ msgid "general" -#~ msgstr "ginearálta" - -#~ msgid "Your new entry could not be added." -#~ msgstr "Ní féidir d'iontráil nua a chur leis." - -#~ msgid "0.1" -#~ msgstr "0.1" - -#~ msgid "KConvertTest" -#~ msgstr "KConvertTest" - -#~ msgid "Display error message (default)" -#~ msgstr "Taispeáin teachtaireacht earráide (réamhshocrú)" - -#~ msgid "Display warning message" -#~ msgstr "Taispeáin teachtaireacht rabhaidh" - -#~ msgid "Display informational message" -#~ msgstr "Taispeáin teachtaireacht eolais" - -#~ msgid "Utility to display aRts error messages" -#~ msgstr "Uirlis a thaispeánann teachtaireachtaí earráidí aRts" - -#~ msgid "Informational" -#~ msgstr "Mar Eolas" - -#~ msgid "Paste special..." -#~ msgstr "Greamaigh speisialta..." - -#~ msgid "What's This?" -#~ msgstr "Cad É Seo?" - -#~ msgid "Font st&yle" -#~ msgstr "Stíl C&hló" - -#~ msgid "&Size" -#~ msgstr "&Méid" - -#~ msgid "Effects" -#~ msgstr "Maisíochtaí" - -#~ msgid "Apply" -#~ msgstr "Cuir i bhFeidhm" - -#~ msgctxt "QMessageBox" -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgctxt "QMessageBox" -#~ msgid "Cancel" -#~ msgstr "Cealaigh" - -#~ msgctxt "QMessageBox" -#~ msgid "&Abort" -#~ msgstr "Tob&scoir" - -#~ msgctxt "QMessageBox" -#~ msgid "&Retry" -#~ msgstr "At&riail" - -#~ msgctxt "QMessageBox" -#~ msgid "&Ignore" -#~ msgstr "Tabha&ir Neamhaird Air" - -#~ msgid "" -#~ "

        About Qt

        This program uses Qt version %1.

        Qt is a C++ " -#~ "toolkit for multiplatform GUI & application development.

        Qt " -#~ "provides single-source portability across MS Windows, Mac " -#~ "OS X, Linux, and all major commercial Unix variants.
        Qt is also " -#~ "available for embedded devices.

        Qt is a Trolltech product. See " -#~ "http://www.trolltech.com/qt/ for more information.

        " -#~ msgstr "" -#~ "

        Eolas faoi Qt

        Úsáideann an clár seo leagan %1 de Qt.

        Foireann uirlisí C++ le haghaidh forbairt il-léibheann feidhmchlár " -#~ "agus comhéadan grafach úsáideora is ea Qt.

        Cuireann Qt " -#~ "iniomparthacht ar fáil le foinse amháin idir MS Windows, Mac " -#~ "OS X, Linux, agus gach leagan mór tráchtála Unix.
        Tá Qt ar fáil " -#~ "le haghaidh gléasanna inleabaithe freisin.

        Táirge ó Trolltech is ea " -#~ "Qt. Feic http://www.trolltech.com/qt/ le haghaidh tuilleadh " -#~ "eolais.

        " - -#~ msgid "About Qt" -#~ msgstr "Eolas faoi Qt" - -#~ msgid "< &Back" -#~ msgstr "< Ar Ai&s" - -#~ msgid "&Next >" -#~ msgstr "Ar &Aghaidh >" - -#~ msgid "%1, %2 not defined" -#~ msgstr "%1, %2 gan sainmhíniú" - -#~ msgctxt "QT_LAYOUT_DIRECTION" -#~ msgid "" -#~ "Translate this string to the string 'LTR' in left-to-right languages or " -#~ "to 'RTL' in right-to-left languages (such as Hebrew and Arabic) to get " -#~ "proper widget layout." -#~ msgstr "LTR" - -#~ msgctxt "QFont" -#~ msgid "Greek" -#~ msgstr "Gréagach" - -#~ msgctxt "QFont" -#~ msgid "Cyrillic" -#~ msgstr "Coireallach" - -#~ msgctxt "QFont" -#~ msgid "Hebrew" -#~ msgstr "Eabhrach" - -#~ msgctxt "QFont" -#~ msgid "Arabic" -#~ msgstr "Arabach" - -#~ msgctxt "QFont" -#~ msgid "Tamil" -#~ msgstr "Tamalach" - -#~ msgctxt "QFont" -#~ msgid "Thai" -#~ msgstr "Téalannach" - -#~ msgctxt "QFont" -#~ msgid "Han" -#~ msgstr "Han" - -#~ msgctxt "QFont" -#~ msgid "Yi" -#~ msgstr "Yi" - -#~ msgctxt "QFont" -#~ msgid "Unicode" -#~ msgstr "Unicode" - -#~ msgctxt "QFont" -#~ msgid "Han (Japanese)" -#~ msgstr "Han (Seapánach)" - -#~ msgctxt "QFont" -#~ msgid "Han (Simplified Chinese)" -#~ msgstr "Han (Sínis Shimplithe)" - -#~ msgctxt "QFont" -#~ msgid "Han (Traditional Chinese)" -#~ msgstr "Han (Sínis Thraidisiúnta)" - -#~ msgctxt "QFont" -#~ msgid "Han (Korean)" -#~ msgstr "Han (Cóiréach)" - -#~ msgctxt "QFont" -#~ msgid "Unknown Script" -#~ msgstr "Script Anaithnid" - -#~ msgctxt "QAccel" -#~ msgid "Backtab" -#~ msgstr "Cúltáb" - -#~ msgctxt "QAccel" -#~ msgid "Backspace" -#~ msgstr "Cúlspás" - -#~ msgctxt "QAccel" -#~ msgid "Print" -#~ msgstr "Priontáil" - -#~ msgctxt "QAccel" -#~ msgid "SysReq" -#~ msgstr "SysReq" - -#~ msgctxt "QAccel" -#~ msgid "Home" -#~ msgstr "Baile" - -#~ msgctxt "QAccel" -#~ msgid "End" -#~ msgstr "Deireadh" - -#~ msgctxt "QAccel" -#~ msgid "Left" -#~ msgstr "Clé" - -#~ msgctxt "QAccel" -#~ msgid "Up" -#~ msgstr "Suas" - -#~ msgctxt "QAccel" -#~ msgid "Right" -#~ msgstr "Deis" - -#~ msgctxt "QAccel" -#~ msgid "CapsLock" -#~ msgstr "CapsLock" - -#~ msgctxt "QAccel" -#~ msgid "NumLock" -#~ msgstr "NumLock" - -#~ msgctxt "QAccel" -#~ msgid "ScrollLock" -#~ msgstr "ScrollLock" - -#~ msgctxt "QAccel" -#~ msgid "Help" -#~ msgstr "Cabhair" - -#~ msgctxt "QAccel" -#~ msgid "Back" -#~ msgstr "Siar" - -#~ msgctxt "QAccel" -#~ msgid "Forward" -#~ msgstr "Ar Aghaidh" - -#~ msgctxt "QAccel" -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgctxt "QAccel" -#~ msgid "Favorites" -#~ msgstr "Ceanáin" - -#~ msgctxt "QAccel" -#~ msgid "Open URL" -#~ msgstr "Oscail URL" - -#~ msgctxt "QAccel" -#~ msgid "Launch Mail" -#~ msgstr "Tosaigh Ríomhphost" - -#~ msgctxt "QAccel" -#~ msgid "Launch Media" -#~ msgstr "Tosaigh Meán" - -#~ msgctxt "QAccel" -#~ msgid "Launch (0)" -#~ msgstr "Tosaigh (0)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (1)" -#~ msgstr "Tosaigh (1)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (2)" -#~ msgstr "Tosaigh (2)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (3)" -#~ msgstr "Tosaigh (3)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (4)" -#~ msgstr "Tosaigh (4)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (5)" -#~ msgstr "Tosaigh (5)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (6)" -#~ msgstr "Tosaigh (6)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (7)" -#~ msgstr "Tosaigh (7)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (8)" -#~ msgstr "Tosaigh (8)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (9)" -#~ msgstr "Tosaigh (9)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (A)" -#~ msgstr "Tosaigh (A)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (B)" -#~ msgstr "Tosaigh (B)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (C)" -#~ msgstr "Tosaigh (C)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (D)" -#~ msgstr "Tosaigh (D)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (E)" -#~ msgstr "Tosaigh (E)" - -#~ msgctxt "QAccel" -#~ msgid "Launch (F)" -#~ msgstr "Tosaigh (F)" - -#~ msgctxt "QAccel" -#~ msgid "Page Up" -#~ msgstr "Leathanach Suas" - -#~ msgctxt "QAccel" -#~ msgid "Page Down" -#~ msgstr "Leathanach Síos" - -#~ msgctxt "QAccel" -#~ msgid "Caps Lock" -#~ msgstr "Glas Ceannlitreacha" - -#~ msgctxt "QAccel" -#~ msgid "Num Lock" -#~ msgstr "Uimhirghlas" - -#~ msgctxt "QAccel" -#~ msgid "Scroll Lock" -#~ msgstr "Scrollghlas" - -#~ msgctxt "QAccel" -#~ msgid "Insert" -#~ msgstr "Insert" - -#~ msgctxt "QAccel" -#~ msgid "Delete" -#~ msgstr "Delete" - -#~ msgctxt "QAccel" -#~ msgid "Escape" -#~ msgstr "Escape" - -#~ msgid "Operation stopped by the user" -#~ msgstr "Oibríocht stoptha ag an úsáideoir" - -#~ msgid "True" -#~ msgstr "Fíor" - -#~ msgid "False" -#~ msgstr "Bréagach" - -#~ msgctxt "QFile" -#~ msgid "Could not write to the file" -#~ msgstr "Ní féidir scríobh sa chomhad" - -#~ msgid "Shade" -#~ msgstr "Scáthaigh" - -#~ msgid "Unshade" -#~ msgstr "Díscáthaigh" - -#~ msgid "Normalize" -#~ msgstr "Normalaigh" - -#~ msgid "Maximize" -#~ msgstr "Uasmhéadaigh" - -#~ msgid "What's this?" -#~ msgstr "Cad É Seo?" - -#~ msgid "OK to All" -#~ msgstr "OK do gach rud" - -#~ msgid "Cancel All" -#~ msgstr "Cealaigh Uile" - -#~ msgid " to All" -#~ msgstr " do gach rud" - -#~ msgid "Retry" -#~ msgstr "Atriail" - -#~ msgid "Mi&nimize" -#~ msgstr "Íos&laghdaigh" - -#~ msgid "Ma&ximize" -#~ msgstr "&Uasmhéadaigh" - -#~ msgid "Stay on &Top" -#~ msgstr "Coimeád ar &Barr" - -#~ msgid "Sh&ade" -#~ msgstr "Scáth&aigh" - -#~ msgid "&Unshade" -#~ msgstr "&Díscáthaigh" - -#~ msgctxt "QXml" -#~ msgid "no error occurred" -#~ msgstr "ní raibh aon earráid" - -#~ msgctxt "QXml" -#~ msgid "unexpected end of file" -#~ msgstr "deireadh comhaid gan súil leis" - -#~ msgctxt "QXml" -#~ msgid "more than one document type definition" -#~ msgstr "níos mó ná aon sainiú cineál doiciméid" - -#~ msgctxt "QXml" -#~ msgid "error occurred while parsing element" -#~ msgstr "tharla earráid agus eilimint á parsáil" - -#~ msgctxt "QXml" -#~ msgid "error occurred while parsing content" -#~ msgstr "tharla earráid agus ábhar á pharsáil" - -#~ msgctxt "QXml" -#~ msgid "unexpected character" -#~ msgstr "carachtar gan súil leis" - -#~ msgctxt "QXml" -#~ msgid "version expected while reading the XML declaration" -#~ msgstr "bhíothas ag súil le huimhir leagain agus an fógra XML á léamh" - -#~ msgctxt "QXml" -#~ msgid "error occurred while parsing document type definition" -#~ msgstr "tharla earráid le linn parsála an shainithe cineál chaipéise" - -#~ msgctxt "QXml" -#~ msgid "letter is expected" -#~ msgstr "bhíothas ag súil le litir" - -#~ msgctxt "QXml" -#~ msgid "error occurred while parsing comment" -#~ msgstr "tharla earráid ag parsáil nóta tráchta" - -#~ msgctxt "QXml" -#~ msgid "error occurred while parsing reference" -#~ msgstr "tharla earráid ag parsáil tagartha" - -#~ msgctxt "QXml" -#~ msgid "recursive entities" -#~ msgstr "aonáin athchúrsacha" diff --git a/local/recipes/kde/kf6-kservice/source/po/gd/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/gd/kservice6.po index de9654ff7b..be8af9f88c 100644 --- a/local/recipes/kde/kf6-kservice/source/po/gd/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/gd/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2015-11-04 15:15+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Fòram na Gàidhlig\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/gl/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/gl/kservice6.po index e39fbaca4d..1b2ca099c2 100644 --- a/local/recipes/kde/kf6-kservice/source/po/gl/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/gl/kservice6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2019-10-19 22:26+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/gu/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/gu/kservice6.po index 61460708d6..0a13d24257 100644 --- a/local/recipes/kde/kf6-kservice/source/po/gu/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/gu/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-11-22 00:01+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ha/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ha/kservice6.po index d3658f5aae..d0bf91b22e 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ha/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ha/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-03-17 11:22+0100\n" "Last-Translator: Adriaan de Groot \n" "Language-Team: Hausa \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/he/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/he/kservice6.po index 8a12b3de44..9aeec10183 100644 --- a/local/recipes/kde/kf6-kservice/source/po/he/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/he/kservice6.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2023-10-02 11:20+0300\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/hi/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/hi/kservice6.po index 63ae8ad4d9..71e5bbd395 100644 --- a/local/recipes/kde/kf6-kservice/source/po/hi/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/hi/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-07-01 17:28+0530\n" "Last-Translator: Raghavendra Kamath \n" "Language-Team: kde-hindi\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/hne/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/hne/kservice6.po index f81e6cbf27..af1df40cd0 100644 --- a/local/recipes/kde/kf6-kservice/source/po/hne/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/hne/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-02-10 20:44+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/hr/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/hr/kservice6.po index 75556039cd..e31c2cd0dd 100644 --- a/local/recipes/kde/kf6-kservice/source/po/hr/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/hr/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2011-07-22 16:08+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/hsb/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/hsb/kservice6.po index a1fd1c732c..91cddc0cea 100644 --- a/local/recipes/kde/kf6-kservice/source/po/hsb/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/hsb/kservice6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2008-12-19 22:49+0100\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/hu/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/hu/kservice6.po index ee35c42ba0..d5b393f0e7 100644 --- a/local/recipes/kde/kf6-kservice/source/po/hu/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/hu/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: KDE 4.4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-09-15 16:57+0200\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/hy/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/hy/kservice6.po index bc6d0e784c..d178402298 100644 --- a/local/recipes/kde/kf6-kservice/source/po/hy/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/hy/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-01-31 01:08+0400\n" "Last-Translator: Davit \n" "Language-Team: Armenian Language: hy\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ia/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ia/kservice6.po index 941667d448..8b23941149 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ia/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ia/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-20 23:00+0100\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua \n" @@ -1074,7 +1074,7 @@ msgstr "" #~ msgstr "Patronos" #~ msgid "Wallpapers" -#~ msgstr "Tapetes de papiro" +#~ msgstr "Fundos de schermo" #~ msgid "XDG Application menu (.desktop files)" #~ msgstr "XDG Menu de applicationes (files .desktop)" @@ -8653,7 +8653,7 @@ msgstr "" #~ msgid "Too many requests to server. Please try again in a few minutes." #~ msgstr "" -#~ "Troppo requestas a le servitor. Pro favor prova de nove inter pauc " +#~ "Troppo requestas a le servitor. Pro favor prova de nove inter pauco " #~ "minutas." #~ msgid "Unknown Open Collaboration Service API error. (%1)" diff --git a/local/recipes/kde/kf6-kservice/source/po/id/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/id/kservice6.po index 4755a5d886..583d0b21c1 100644 --- a/local/recipes/kde/kf6-kservice/source/po/id/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/id/kservice6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-07-01 15:38+0700\n" "Last-Translator: Aziz Adam Adrian <4.adam.adrian@gmail.com>\n" "Language-Team: Indonesian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/is/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/is/kservice6.po index d9ca4c507b..f019077398 100644 --- a/local/recipes/kde/kf6-kservice/source/po/is/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/is/kservice6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-02-19 19:47+0000\n" "Last-Translator: Guðmundur Erlingsson \n" "Language-Team: Icelandic \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/it/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/it/kservice6.po index e6608b5883..46a334dad0 100644 --- a/local/recipes/kde/kf6-kservice/source/po/it/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/it/kservice6.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-21 08:44+0200\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ja/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ja/kservice6.po index 99d4cc04eb..3ea9505e1e 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ja/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ja/kservice6.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2015-04-19 16:26-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ka/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ka/kservice6.po index a769ba26e5..65fb96361b 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ka/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ka/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-08-01 05:35+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" @@ -147,7 +147,7 @@ msgstr "QStandardPaths-ის სატესტო რეჟიში გად #~ msgstr "ბრაუზერის გაშვება შეუძლებელია" #~ msgid "Unable to determine the default terminal" -#~ msgstr "ნაგულისხმები ტერმინალის დადგენის შეცდომა" +#~ msgstr "ნაგულისხმევი ტერმინალის დადგენის შეცდომა" #~ msgid "" #~ "Could not launch the terminal client:\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/kk/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/kk/kservice6.po index c425eaba9e..8bc92d072c 100644 --- a/local/recipes/kde/kf6-kservice/source/po/kk/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/kk/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-11-08 01:24+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/km/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/km/kservice6.po index b2e8eee1ea..68cbbbe0d9 100644 --- a/local/recipes/kde/kf6-kservice/source/po/km/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/km/kservice6.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-06-27 10:04+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/kn/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/kn/kservice6.po index 0f97bb452d..c6230da8b8 100644 --- a/local/recipes/kde/kf6-kservice/source/po/kn/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/kn/kservice6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-06-24 18:32+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: kn_IN \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ko/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ko/kservice6.po index 1ac1888bc9..9fbcd752be 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ko/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ko/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-22 19:55+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ku/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ku/kservice6.po index 6e399b8156..36473a2d3e 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ku/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ku/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-08-13 15:45+0200\n" "Last-Translator: Erdal Ronahî \n" "Language-Team: Kurdish Team http://pckurd.net\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/lb/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/lb/kservice6.po index 9f39d31f90..d82b7f0c1b 100644 --- a/local/recipes/kde/kf6-kservice/source/po/lb/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/lb/kservice6.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2006-06-22 16:29+0200\n" "Last-Translator: Michel Ludwig \n" "Language-Team: Luxembourgish \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/lt/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/lt/kservice6.po index 2d7ecd8035..9521bc55d2 100644 --- a/local/recipes/kde/kf6-kservice/source/po/lt/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/lt/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-06-15 22:16+0300\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/lv/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/lv/kservice6.po index 904935dfee..9979af1e5c 100644 --- a/local/recipes/kde/kf6-kservice/source/po/lv/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/lv/kservice6.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-02-26 18:27+0200\n" "Last-Translator: Toms Trasuns \n" "Language-Team: Latvian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/mai/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/mai/kservice6.po index 5fed2fe723..aa5ce085f5 100644 --- a/local/recipes/kde/kf6-kservice/source/po/mai/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/mai/kservice6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-09-24 15:44+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Hindi \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/mk/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/mk/kservice6.po index 63d0136c07..42abaee10e 100644 --- a/local/recipes/kde/kf6-kservice/source/po/mk/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/mk/kservice6.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-01-27 10:39+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ml/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ml/kservice6.po index 8077216557..4b2ece8565 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ml/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ml/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2019-12-12 20:56+0000\n" "Last-Translator: Vivek KJ Pazhedath \n" "Language-Team: SMC \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/mr/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/mr/kservice6.po index d76e5dcfbd..7a7592dcb7 100644 --- a/local/recipes/kde/kf6-kservice/source/po/mr/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/mr/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2014-10-29 10:55+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ms/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ms/kservice6.po index 33f0adf461..5c24d256af 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ms/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ms/kservice6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2011-07-16 00:57+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/nb/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/nb/kservice6.po index c13d1c33b5..d712b4a661 100644 --- a/local/recipes/kde/kf6-kservice/source/po/nb/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/nb/kservice6.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2014-11-05 13:40+0100\n" "Last-Translator: Bjørn Steensrud \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/nds/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/nds/kservice6.po index c16c475b75..ddf25d6ee4 100644 --- a/local/recipes/kde/kf6-kservice/source/po/nds/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/nds/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2014-05-11 00:55+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ne/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ne/kservice6.po index afcc2e4d04..a74efa5f1f 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ne/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ne/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2007-11-05 15:41+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/nl/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/nl/kservice6.po index 418732130b..b689df2966 100644 --- a/local/recipes/kde/kf6-kservice/source/po/nl/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/nl/kservice6.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-20 11:14+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/nn/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/nn/kservice6.po index 6ecdc5e7cd..ad4641bc6f 100644 --- a/local/recipes/kde/kf6-kservice/source/po/nn/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/nn/kservice6.po @@ -9,11 +9,11 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-01-23 14:09+0100\n" "Last-Translator: Øystein Steffensen-Alværvik \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/oc/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/oc/kservice6.po index 57344604e7..63ad219513 100644 --- a/local/recipes/kde/kf6-kservice/source/po/oc/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/oc/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2008-08-06 00:07+0200\n" "Last-Translator: \n" "Language-Team: Occitan \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/or/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/or/kservice6.po index 6c8371f9a1..6f5c8ffb3f 100644 --- a/local/recipes/kde/kf6-kservice/source/po/or/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/or/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-01-02 17:37+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/pa/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/pa/kservice6.po index 76aca3ebba..b15e2ba44a 100644 --- a/local/recipes/kde/kf6-kservice/source/po/pa/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/pa/kservice6.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2014-07-08 14:40-0500\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/pl/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/pl/kservice6.po index 5c83b74e3a..05faa997a7 100644 --- a/local/recipes/kde/kf6-kservice/source/po/pl/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/pl/kservice6.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-23 08:39+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ps/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ps/kservice6.po index 1aca3df8ac..ef0d5ab901 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ps/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ps/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2008-08-16 16:01-0800\n" "Last-Translator: Zabeeh Khan \n" "Language-Team: Pashto \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/pt/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/pt/kservice6.po index f1798cc49b..9ff1186b3d 100644 --- a/local/recipes/kde/kf6-kservice/source/po/pt/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/pt/kservice6.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-24 01:46+0100\n" "Last-Translator: José Nuno Pires \n" "Language-Team: pt \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/pt_BR/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/pt_BR/kservice6.po index 647cc6abd3..24e7bbc7e2 100644 --- a/local/recipes/kde/kf6-kservice/source/po/pt_BR/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/pt_BR/kservice6.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-06-02 10:10-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Brazilian Portuguese \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ro/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ro/kservice6.po index 6429db6a9b..e39a657058 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ro/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ro/kservice6.po @@ -1,14 +1,13 @@ # Traducerea kdelibs4.po în Română +# SPDX-FileCopyrightText: 2008, 2009, 2010, 2012, 2013, 2014, 2020, 2022, 2025 Sergiu Bivol # Laurenţiu Buzdugan , 2008, 2009. -# Sergiu Bivol , 2008, 2009, 2010. -# Sergiu Bivol , 2010, 2012, 2013, 2014, 2020, 2022. # Cristian Oneț , 2010, 2011, 2012, 2013. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" -"PO-Revision-Date: 2022-04-01 10:23+0100\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" +"PO-Revision-Date: 2025-11-27 13:23+0000\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -17,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 25.08.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -66,31 +65,30 @@ msgid "Waldo Bastian" msgstr "Waldo Bastian" #: kbuildsycoca/kbuildsycoca_main.cpp:102 -#, fuzzy, kde-format -#| msgid "Disable incremental update, re-read everything" +#, kde-format msgctxt "@info:shell command-line option" msgid "Disable incremental update, re-read everything" msgstr "Dezactivează actualizarea incrementală, citește tot din nou" #: kbuildsycoca/kbuildsycoca_main.cpp:103 -#, fuzzy, kde-format -#| msgid "Perform menu generation test run only" +#, kde-format msgctxt "@info:shell command-line option" msgid "Perform menu generation test run only" -msgstr "Execută testul de generare a meniului numai odată" +msgstr "Execută doar testul de generare a meniului" #: kbuildsycoca/kbuildsycoca_main.cpp:105 -#, fuzzy, kde-format -#| msgid "Track menu id for debug purposes" +#, kde-format msgctxt "@info:shell command-line option" msgid "Track menu id for debug purposes" -msgstr "Urmărește identificatorii de meniu pentru a ajuta la depanare" +msgstr "Urmărește identificatorii de meniu pentru depanare" #: kbuildsycoca/kbuildsycoca_main.cpp:107 #, kde-format msgctxt "@info:shell command-line option" msgid "Switch QStandardPaths to test mode, for unit tests only" msgstr "" +"Schimbă instanțele QStandardPath la regimul de testare, numai pentru testele " +"de unități" #, fuzzy #~| msgid "Disable checking files (dangerous)" diff --git a/local/recipes/kde/kf6-kservice/source/po/ru/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ru/kservice6.po index c5e0ef71fe..bf833cdef2 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ru/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ru/kservice6.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-29 15:31+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sa/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sa/kservice6.po index dacef6bf4a..f3a7dfcd8f 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sa/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sa/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali \n" "Language-Team: Sanskrit \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/se/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/se/kservice6.po index 6ce683636a..92e2d3dab4 100644 --- a/local/recipes/kde/kf6-kservice/source/po/se/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/se/kservice6.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-05-30 23:19+0200\n" "Last-Translator: Børre Gaup \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/si/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/si/kservice6.po index dd78ce493a..1ad233a9f0 100644 --- a/local/recipes/kde/kf6-kservice/source/po/si/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/si/kservice6.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2011-07-25 07:45+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sk/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sk/kservice6.po index 0472e0427f..47da3eab40 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sk/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sk/kservice6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-02-14 19:54+0100\n" "Last-Translator: Matej Mrenica \n" "Language-Team: Slovak \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sl/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sl/kservice6.po index bb71c6caaa..6d1cdf9adf 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sl/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sl/kservice6.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-22 09:41+0200\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sq/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sq/kservice6.po index ab91e763ed..87ad96399e 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sq/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sq/kservice6.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: kde4libs\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-01-19 00:20-0500\n" "Last-Translator: Agron Selimaj \n" "Language-Team: Albanian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sr/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sr/kservice6.po index 0aeb195f1f..cddce85e9b 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sr/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sr/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sr@ijekavian/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sr@ijekavian/kservice6.po index 4bc9d09c04..e7bc38b8a9 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sr@ijekavian/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sr@ijekavian/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sr@ijekavianlatin/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sr@ijekavianlatin/kservice6.po index b76f90302f..acd3fa8d68 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sr@ijekavianlatin/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sr@ijekavianlatin/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sr@latin/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sr@latin/kservice6.po index 27e0f9c19d..5ad57cbc9f 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sr@latin/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sr@latin/kservice6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/sv/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/sv/kservice6.po index 4b22a7344a..4da063e9a1 100644 --- a/local/recipes/kde/kf6-kservice/source/po/sv/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/sv/kservice6.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-21 08:39+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ta/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ta/kservice6.po index ace1566e13..eea8e98b96 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ta/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ta/kservice6.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-03-25 21:39+0530\n" "Last-Translator: Sri Ramadoss M \n" "Language-Team: Tamil \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/te/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/te/kservice6.po index a6a0e9c4aa..280d729493 100644 --- a/local/recipes/kde/kf6-kservice/source/po/te/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/te/kservice6.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-11-04 23:55+0630\n" "Last-Translator: Bhuvan Krishna \n" "Language-Team: Telugu \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/tg/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/tg/kservice6.po index 2fc79f53ca..56b671111b 100644 --- a/local/recipes/kde/kf6-kservice/source/po/tg/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/tg/kservice6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2019-08-16 15:19+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/th/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/th/kservice6.po index ef69b03da0..8e471cb1a1 100644 --- a/local/recipes/kde/kf6-kservice/source/po/th/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/th/kservice6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-12-31 22:47+0700\n" "Last-Translator: Phuwanat Sakornsakolpat \n" "Language-Team: Thai \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/tr/docs/kbuildsycoca6/man-kbuildsycoca6.8.docbook b/local/recipes/kde/kf6-kservice/source/po/tr/docs/kbuildsycoca6/man-kbuildsycoca6.8.docbook index 615662c53a..ef4f959c72 100644 --- a/local/recipes/kde/kf6-kservice/source/po/tr/docs/kbuildsycoca6/man-kbuildsycoca6.8.docbook +++ b/local/recipes/kde/kf6-kservice/source/po/tr/docs/kbuildsycoca6/man-kbuildsycoca6.8.docbook @@ -39,7 +39,7 @@ 2015-09-17 +>2015‒09‒17 Frameworks 5.15 &MIME; türüne sahip dosyalarında depolanan verinin ikili önbelleğini yapar. KService kitaplığı, kendisinden istenilen bilgiyi tez sağlamak için bu veritabanını kullanır. +>KService kitaplığı, kendisinden istenilen bilgiyi tez sağlamak için bu veri tabanını kullanır. Kullanıcıların normalde bu uygulamayı doğrudan çalıştırmaları gerekmez; KService, verileri önbelleğe alınan dosyalardan herhangi biri değiştirildiğinde gerekirse çalıştıracaktır. @@ -142,7 +142,7 @@ > Uygulama menüsü veritabanı üretilmesini sınayın. Aslında önbelleği yapmaz. +>Uygulama menüsü veri tabanı üretilmesini sınayın. Aslında önbelleği yapmaz. @@ -274,7 +274,7 @@ >Hatalar Hataları bildirmek için &kde;'nin hata izleyicisini&kde;’nin hata izleyicisini kullanın. diff --git a/local/recipes/kde/kf6-kservice/source/po/tr/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/tr/kservice6.po index 3ce0ef45bf..86421ff4de 100644 --- a/local/recipes/kde/kf6-kservice/source/po/tr/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/tr/kservice6.po @@ -17,13 +17,13 @@ # Serdar SOYTETİR , 2010, 2012. # Volkan Gezer , 2013, 2014. # Kaan Ozdincer , 2014. -# Emir SARI , 2022, 2023. +# SPDX-FileCopyrightText: 2022, 2023, 2026 Emir SARI msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" -"PO-Revision-Date: 2023-01-18 22:31+0300\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" +"PO-Revision-Date: 2026-05-02 19:56+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -31,12 +31,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 22.12.1\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Serdar Soytetir, Görkem Çetin, H. İbrahim Güngör, Volkan Gezer" +msgstr "Serdar SOYTETİR, Görkem ÇETİN, H. İbrahim GÜNGÖR, Volkan GEZER" #, kde-format msgctxt "EMAIL OF TRANSLATORS" diff --git a/local/recipes/kde/kf6-kservice/source/po/tt/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/tt/kservice6.po index ac0c05390b..139dd80af4 100644 --- a/local/recipes/kde/kf6-kservice/source/po/tt/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/tt/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2011-11-26 15:12+0400\n" "Last-Translator: Ainur Shakirov \n" "Language-Team: Tatar <>\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/ug/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/ug/kservice6.po index 780dee160a..435ade1678 100644 --- a/local/recipes/kde/kf6-kservice/source/po/ug/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/ug/kservice6.po @@ -7,97 +7,88 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" -"PO-Revision-Date: 2013-09-08 07:05+0900\n" -"Last-Translator: Gheyret Kenji \n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" +"PO-Revision-Date: 2026-05-31 19:42-0400\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur Computer Science Association \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 3.9\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "ئابدۇقادىر ئابلىز, غەيرەت كەنجى" +msgstr "ئابدۇقادىر ئابلىز، غەيرەت كەنجى" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "sahran.ug@gmail.com, gheyret@gmail.com" +msgstr "sahranbay@gmail.com, gheyret@gmail.com" #: kbuildsycoca/kbuildsycoca_main.cpp:90 -#, fuzzy, kde-format -#| msgid "KBuildSycoca" +#, kde-format msgctxt "application name" msgid "KBuildSycoca" msgstr "KBuildSycoca" #: kbuildsycoca/kbuildsycoca_main.cpp:92 -#, fuzzy, kde-format -#| msgid "Rebuilds the system configuration cache." +#, kde-format msgctxt "application description" msgid "Rebuilds the system configuration cache." msgstr "سىستېما سەپلىمە غەملەكنى قايتا قۇرىدۇ." #: kbuildsycoca/kbuildsycoca_main.cpp:94 -#, fuzzy, kde-format -#| msgid "(c) 1999-2002 KDE Developers" +#, kde-format msgctxt "@info:credit" msgid "Copyright 1999-2014 KDE Developers" -msgstr "(c) 1999-2002 KDE ئىجادىيەت گۇرۇپپىسى" +msgstr "نەشر ھوقۇقى 1999-2014 KDE ئىجادكارلىرى" #: kbuildsycoca/kbuildsycoca_main.cpp:95 -#, fuzzy, kde-format -#| msgid "David Faure" +#, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" #: kbuildsycoca/kbuildsycoca_main.cpp:95 kbuildsycoca/kbuildsycoca_main.cpp:96 -#, fuzzy, kde-format -#| msgid "Author" +#, kde-format msgctxt "@info:credit" msgid "Author" -msgstr "ئاپتور" +msgstr "يازغۇچى" #: kbuildsycoca/kbuildsycoca_main.cpp:96 -#, fuzzy, kde-format -#| msgid "Waldo Bastian" +#, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" #: kbuildsycoca/kbuildsycoca_main.cpp:102 -#, fuzzy, kde-format -#| msgid "Disable incremental update, re-read everything" +#, kde-format msgctxt "@info:shell command-line option" msgid "Disable incremental update, re-read everything" -msgstr "يېڭىلانغان بۆلەكنى يېڭىلاشنى ئىناۋەتسىز قىلىپ، ھەممىنى قايتا ئوقۇ" +msgstr "تەدرىجىي يېڭىلاشنى چەكلەپ، ھەممىنى قايتا ئوقۇيدۇ" #: kbuildsycoca/kbuildsycoca_main.cpp:103 -#, fuzzy, kde-format -#| msgid "Perform menu generation test run only" +#, kde-format msgctxt "@info:shell command-line option" msgid "Perform menu generation test run only" -msgstr "پەقەت تىزىملىك ھاسىل قىلىش سىنىقىنىلا ئېلىپ بېرىش" +msgstr "پەقەت تىزىملىك ھاسىل قىلىش سىنىقىنىلا ئىجرا قىلىدۇ" #: kbuildsycoca/kbuildsycoca_main.cpp:105 -#, fuzzy, kde-format -#| msgid "Track menu id for debug purposes" +#, kde-format msgctxt "@info:shell command-line option" msgid "Track menu id for debug purposes" -msgstr "سازلاشتا ئىشلىتىلىدىغان تىزىملىك ID سىغا ئەگەش" +msgstr "سازلاشتا ئىشلىتىلىدىغان تىزىملىك كىملىكىگە ئەگىشىدۇ" #: kbuildsycoca/kbuildsycoca_main.cpp:107 #, kde-format msgctxt "@info:shell command-line option" msgid "Switch QStandardPaths to test mode, for unit tests only" msgstr "" +"QStandardPaths نى سىناق ھالىتىگە ئالماشتۇرىدۇ، پەقەت بۆلەك سىنىقى ئۈچۈن" -#, fuzzy #~| msgid "Disable checking files (dangerous)" #~ msgctxt "@info:shell command-line option" #~ msgid "" @@ -105,7 +96,6 @@ msgstr "" #~ "effect)" #~ msgstr "ھۆججەت تەكشۈرمە (خەتەرلىك)" -#, fuzzy #~| msgid "Disable checking files (dangerous)" #~ msgctxt "@info:shell command-line option" #~ msgid "Disable checking files (deprecated, no longer having any effect)" @@ -171,19 +161,16 @@ msgstr "" #~ msgid "The service '%1' provides no library or the Library key is missing" #~ msgstr "بۇ '%1' مۇلازىمەت ئامبار تەمىنلىمىگەن ياكى ئامبار ئاچقۇچى كەم" -#, fuzzy #~| msgid "Create global database" #~ msgctxt "@info:shell command-line option" #~ msgid "Create global database" #~ msgstr "ئومۇمىيەت ساندان قۇر" -#, fuzzy #~| msgid "Do not signal applications to update" #~ msgctxt "@info:shell command-line option" #~ msgid "Do not signal applications to update" #~ msgstr "پروگراممىنى يېڭىلاش ھەققىدە سىگنال يوق" -#, fuzzy #~| msgid "Check file timestamps" #~ msgctxt "@info:shell command-line option" #~ msgid "Check file timestamps" @@ -192,7 +179,6 @@ msgstr "" #~ msgid "Could not find plugin '%1' for application '%2'" #~ msgstr "'%2' پروگراممىنىڭ '%1' قىستۇرمىسىنى تاپالمىدى" -#, fuzzy #~| msgid "The library %1 does not offer a KDE 4 compatible factory." #~ msgid "The library %1 does not offer a KPluginFactory." #~ msgstr "%1 ئامبار KDE 4 بىلەن ماسلىشىدىغان زاۋۇت تەمىنلىمىگەن." @@ -3760,7 +3746,6 @@ msgstr "" #~ msgid "Supply a username and password below." #~ msgstr "تۆۋەندە ئىشلەتكۈچى ئاتى ۋە ئىم تەمىنلەيدۇ." -#, fuzzy #~| msgid "&Keep password" #~ msgid "Use this password:" #~ msgstr "ئىمنى ساقلا(&K)" diff --git a/local/recipes/kde/kf6-kservice/source/po/uk/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/uk/kservice6.po index df48045486..079611ee09 100644 --- a/local/recipes/kde/kf6-kservice/source/po/uk/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/uk/kservice6.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: kservice5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-05-20 08:38+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/uz/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/uz/kservice6.po index 495c0bc607..a696810f09 100644 --- a/local/recipes/kde/kf6-kservice/source/po/uz/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/uz/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2008-05-30 17:29+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/uz@cyrillic/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/uz@cyrillic/kservice6.po index f5bf9a140c..3c63e1e944 100644 --- a/local/recipes/kde/kf6-kservice/source/po/uz@cyrillic/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/uz@cyrillic/kservice6.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2009-10-17 00:34+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/vi/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/vi/kservice6.po index 3f7b476a06..f6b70b632a 100644 --- a/local/recipes/kde/kf6-kservice/source/po/vi/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/vi/kservice6.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2021-07-30 09:59+0200\n" "Last-Translator: Phu Hung Nguyen \n" "Language-Team: Vietnamese \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/wa/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/wa/kservice6.po index 26f1cb3df8..2419cfac75 100644 --- a/local/recipes/kde/kf6-kservice/source/po/wa/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/wa/kservice6.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-07-04 17:33+0200\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/xh/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/xh/kservice6.po index 3a4768c74b..34cb87d2ba 100644 --- a/local/recipes/kde/kf6-kservice/source/po/xh/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/xh/kservice6.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2002-12-13 17:20SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/zh_CN/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/zh_CN/kservice6.po index df744cdd21..4a1165d50c 100644 --- a/local/recipes/kde/kf6-kservice/source/po/zh_CN/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/zh_CN/kservice6.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff --git a/local/recipes/kde/kf6-kservice/source/po/zh_HK/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/zh_HK/kservice6.po index ea03a61545..1b0427b261 100644 --- a/local/recipes/kde/kf6-kservice/source/po/zh_HK/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/zh_HK/kservice6.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2006-01-04 13:32+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" diff --git a/local/recipes/kde/kf6-kservice/source/po/zh_TW/kservice6.po b/local/recipes/kde/kf6-kservice/source/po/zh_TW/kservice6.po index 410b7552cb..19742ea002 100644 --- a/local/recipes/kde/kf6-kservice/source/po/zh_TW/kservice6.po +++ b/local/recipes/kde/kf6-kservice/source/po/zh_TW/kservice6.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-01 21:29+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2016-06-28 17:34+0800\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \n" diff --git a/local/recipes/kde/kf6-kservice/source/src/CMakeLists.txt b/local/recipes/kde/kf6-kservice/source/src/CMakeLists.txt index 87325801d5..47188293fc 100644 --- a/local/recipes/kde/kf6-kservice/source/src/CMakeLists.txt +++ b/local/recipes/kde/kf6-kservice/source/src/CMakeLists.txt @@ -76,6 +76,8 @@ target_include_directories(KF6Service "$" ) +target_include_directories(KF6Service PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) + target_link_libraries(KF6Service PUBLIC Qt6::Core @@ -103,6 +105,8 @@ ecm_generate_headers(KService_HEADERS RELATIVE services REQUIRED_HEADERS KService_HEADERS ) +ecm_generate_qdoc(KF6Service kservice.qdocconf) + install(TARGETS KF6Service EXPORT KF6ServiceTargets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES @@ -118,33 +122,4 @@ ecm_qt_install_logging_categories( DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR} ) -if(BUILD_QCH) - ecm_add_qch( - KF6Service_QCH - NAME KService - BASE_NAME KF6Service - VERSION ${KF_VERSION} - ORG_DOMAIN org.kde - SOURCES # using only public headers, to cover only public API - ${KService_HEADERS} - MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md" - LINK_QCHS - KF6Config_QCH - KF6CoreAddons_QCH - INCLUDE_DIRS - ${CMAKE_CURRENT_BINARY_DIR} - ${kservice_includes} - BLANK_MACROS - KSERVICE_EXPORT - KSERVICE_DEPRECATED - KSERVICE_DEPRECATED_EXPORT - "KSERVICE_DEPRECATED_VERSION(x, y, t)" - "KSERVICE_DEPRECATED_VERSION_BELATED(x, y, xt, yt, t)" - TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - COMPONENT Devel - ) -endif() - add_subdirectory(kbuildsycoca) - diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kapplicationtrader.h b/local/recipes/kde/kf6-kservice/source/src/services/kapplicationtrader.h index ff153c11f6..938c2a023a 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kapplicationtrader.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kapplicationtrader.h @@ -12,11 +12,12 @@ #include #include -/** - * @namespace KApplicationTrader +/*! + * \namespace KApplicationTrader + * \inmodule KService * - * The application trader is a convenient way to find installed applications - * based on specific criteria (association with a MIME type, name contains Foo, etc.) + * \brief The application trader is a convenient way to find installed applications + * based on specific criteria (association with a MIME type, name contains Foo, etc.). * * Example: say that you want to get the list of all applications that can handle PNG images. * The code would look like: @@ -25,74 +26,80 @@ * \endcode * * If you want to get the preferred application for image/png you would use: - * @code + * \code * KService::Ptr service = KApplicationTrader::preferredService("image/png"); - * @endcode + * \endcode * - * @see KService + * \sa KService */ namespace KApplicationTrader { -/** +/*! + * \typealias KApplicationTrader::FilterFunc * Filter function, used for filtering results of query and queryByMimeType. */ using FilterFunc = std::function; -/** +/*! * This method returns a list of services (applications) that match a given filter. * - * @param filter a callback function that returns @c true if the application - * should be selected and @c false if it should be skipped. + * \a filterFunc a callback function that returns \c true if the application + * should be selected and \c false if it should be skipped. * - * @return A list of services that satisfy the query - * @since 5.68 + * Returns a list of services that satisfy the query + * \since 5.68 */ KSERVICE_EXPORT KService::List query(FilterFunc filterFunc); -/** +/*! * This method returns a list of services (applications) which are associated with a given MIME type. * - * @param mimeType a MIME type like 'text/plain' or 'text/html' - * @param filter a callback function that returns @c true if the application - * should be selected and @c false if it should be skipped. Do not return + * \a mimeType a MIME type like 'text/plain' or 'text/html' + * + * \a filterFunc a callback function that returns \c true if the application + * should be selected and \c false if it should be skipped. Do not return * true for all services, this would return the complete list of all * installed applications (slow). * - * @return A list of services that satisfy the query, sorted by preference + * Returns a list of services that satisfy the query, sorted by preference * (preferred service first) - * @since 5.68 + * \since 5.68 */ KSERVICE_EXPORT KService::List queryByMimeType(const QString &mimeType, FilterFunc filterFunc = {}); -/** - * Returns the preferred service for @p mimeType +/*! + * Returns the preferred service for \a mimeType * * This a convenience method for queryByMimeType(mimeType).at(0), with a check for empty. * - * @param mimeType the MIME type (see query()) - * @return the preferred service, or @c nullptr if no service is available - * @since 5.68 + * \a mimeType the MIME type (see query()) + * + * Returns the preferred service, or \c nullptr if no service is available + * + * \since 5.68 */ KSERVICE_EXPORT KService::Ptr preferredService(const QString &mimeType); -/** - * Changes the preferred service for @p mimeType to @p service +/*! + * Changes the preferred service for \a mimeType to \a service * * You may need to rebuild KSyCoca for the change to be reflected * - * @param mimeType the MIME type - * @param service the service to set as the preferred one - * @since 5.101 + * \a mimeType the MIME type + * + * \a service the service to set as the preferred one + * + * \since 5.101 */ KSERVICE_EXPORT void setPreferredService(const QString &mimeType, const KService::Ptr service); -/** - * Returns true if @p pattern matches a subsequence of the string @p text. +/*! + * Returns true if \a pattern matches a subsequence of the string \a text. * For instance the pattern "libremath" matches the text "LibreOffice Math", assuming - * @p cs is Qt::CaseInsensitive. + * \a cs is Qt::CaseInsensitive. * - * This can be useful from your filter function, e.g. with @p text being service->name(). - * @since 5.68 + * This can be useful from your filter function, e.g. with \a text being service->name(). + * \since 5.68 */ KSERVICE_EXPORT bool isSubsequence(const QString &pattern, const QString &text, Qt::CaseSensitivity cs = Qt::CaseSensitive); } diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kmimetypefactory_p.h b/local/recipes/kde/kf6-kservice/source/src/services/kmimetypefactory_p.h index 87c3c2db09..ceb5992032 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kmimetypefactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kmimetypefactory_p.h @@ -17,25 +17,25 @@ class KSycoca; -/** - * @internal - this header is not installed +/*! + * \internal * * A sycoca factory for MIME type entries * This is only used to point to the "service offers" in ksycoca for each MIME type. - * @see KMimeType + * See KMimeType */ class KMimeTypeFactory : public KSycocaFactory { K_SYCOCAFACTORY(KST_KMimeTypeFactory) public: - /** + /*! * Create factory */ explicit KMimeTypeFactory(KSycoca *db); ~KMimeTypeFactory() override; - /** + /*! * Not meant to be called at this level */ KSycocaEntry *createEntry(const QString &) const override @@ -44,30 +44,30 @@ public: return nullptr; } - /** + /*! * Returns the possible offset for a given MIME type entry. */ int entryOffset(const QString &mimeTypeName); - /** + /*! * Returns the offset into the service offers for a given MIME type. */ int serviceOffersOffset(const QString &mimeTypeName); - /** + /*! * Returns the directories to watch for this factory. */ static QStringList resourceDirs(); public: - /** - * @return all MIME types + /*! + * Returns all MIME types * Slow and memory consuming, avoid using */ QStringList allMimeTypes(); - /** - * @return the unique MIME type factory, creating it if necessary + /*! + * Returns the unique MIME type factory, creating it if necessary */ static KMimeTypeFactory *self(); diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservice.cpp b/local/recipes/kde/kf6-kservice/source/src/services/kservice.cpp index 004ab847f7..ee7c43dee2 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservice.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservice.cpp @@ -115,12 +115,10 @@ void KServicePrivate::init(const KDesktopFile *config, KService *q) m_untranslatedGenericName = desktopGroup.readEntryUntranslated("GenericName"); m_untranslatedName = desktopGroup.readEntryUntranslated("Name"); - m_lstFormFactors = entryMap.take(QStringLiteral("X-KDE-FormFactors")).split(QLatin1Char(' '), Qt::SkipEmptyParts); - if (entryMap.remove(QStringLiteral("Keywords"))) { m_lstKeywords = desktopGroup.readXdgListEntry("Keywords"); } - m_lstKeywords += entryMap.take(QStringLiteral("X-KDE-Keywords")).split(QLatin1Char(' '), Qt::SkipEmptyParts); + if (entryMap.remove(QStringLiteral("Categories"))) { categories = desktopGroup.readXdgListEntry("Categories"); } @@ -131,10 +129,6 @@ void KServicePrivate::init(const KDesktopFile *config, KService *q) m_strDesktopEntryName = _name; - if (entryMap.remove(QStringLiteral("AllowDefault"))) { - m_bAllowAsDefault = desktopGroup.readEntry("AllowDefault", true); - } - // Store all additional entries in the property map. // A QMap would be easier for this but we can't // break BC, so we have to store it in m_mapProps. @@ -173,48 +167,50 @@ void KServicePrivate::parseActions(const KDesktopFile *config, KService *q) return; } - KService::Ptr serviceClone(new KService(*q)); - for (const QString &group : keys) { if (group == QLatin1String("_SEPARATOR_")) { - m_actions.append(KServiceAction(group, QString(), QString(), QString(), false, serviceClone)); + m_actions.append(KServiceAction(group, QString(), QString(), QString(), false, KService::Ptr())); continue; } - if (config->hasActionGroup(group)) { - const KConfigGroup cg = config->actionGroup(group); - if (!cg.hasKey("Name") || !cg.hasKey("Exec")) { - qCWarning(SERVICES) << "The action" << group << "in the desktop file" << q->entryPath() << "has no Name or no Exec key"; - } else { - const QMap entries = cg.entryMap(); - - QVariantMap entriesVariants; - - for (auto it = entries.constKeyValueBegin(); it != entries.constKeyValueEnd(); ++it) { - // Those are stored separately - if (it->first == QLatin1String("Name") || it->first == QLatin1String("Icon") || it->first == QLatin1String("Exec") - || it->first == QLatin1String("NoDisplay")) { - continue; - } - - entriesVariants.insert(it->first, it->second); - } - - KServiceAction action(group, cg.readEntry("Name"), cg.readEntry("Icon"), cg.readEntry("Exec"), cg.readEntry("NoDisplay", false), serviceClone); - action.setData(QVariant::fromValue(entriesVariants)); - m_actions.append(action); - } - } else { + if (!config->hasActionGroup(group)) { qCWarning(SERVICES) << "The desktop file" << q->entryPath() << "references the action" << group << "but doesn't define it"; + continue; } - } - serviceClone->setActions(m_actions); + const KConfigGroup cg = config->actionGroup(group); + if (!cg.hasKey("Name")) { + qCWarning(SERVICES) << "The action" << group << "in the desktop file" << q->entryPath() << "has no Name key"; + continue; + } + + if (!cg.hasKey("Exec") && !config->desktopGroup().readEntry("DBusActivatable", false)) { + qCWarning(SERVICES) << "The action" << group << "in the desktop file" << q->entryPath() << "has no Exec key and not D-Bus activatable"; + continue; + } + + const QMap entries = cg.entryMap(); + QVariantMap entriesVariants; + for (const auto &[key, value] : entries.asKeyValueRange()) { + // Those are stored separately + if (key == QLatin1String("Name") || key == QLatin1String("Icon") || key == QLatin1String("Exec") || key == QLatin1String("NoDisplay")) { + continue; + } + + entriesVariants.insert(key, value); + } + + KServiceAction action(group, cg.readEntry("Name"), cg.readEntry("Icon"), cg.readEntry("Exec"), cg.readEntry("NoDisplay", false), KService::Ptr()); + action.setData(QVariant::fromValue(entriesVariants)); + m_actions.append(action); + } } void KServicePrivate::load(QDataStream &s) { - qint8 def; + qint8 unused; + QString unused2; + QStringList unused3; qint8 term; qint8 dst; @@ -225,17 +221,16 @@ void KServicePrivate::load(QDataStream &s) // clang-format off s >> m_strType >> m_strName >> m_strExec >> m_strIcon >> term >> m_strTerminalOptions - >> m_strWorkingDirectory >> m_strComment >> def >> m_mapProps - >> m_strLibrary + >> m_strWorkingDirectory >> m_strComment >> unused >> m_mapProps + >> unused2 >> dst >> m_strDesktopEntryName >> m_lstKeywords >> m_strGenName >> categories >> menuId >> m_actions - >> m_lstFormFactors + >> unused3 >> m_untranslatedName >> m_untranslatedGenericName >> m_mimeTypes; // clang-format on - m_bAllowAsDefault = bool(def); m_bTerminal = bool(term); m_bValid = true; @@ -244,7 +239,6 @@ void KServicePrivate::load(QDataStream &s) void KServicePrivate::save(QDataStream &s) { KSycocaEntryPrivate::save(s); - qint8 def = m_bAllowAsDefault; qint8 term = m_bTerminal; qint8 dst = 0; @@ -252,9 +246,9 @@ void KServicePrivate::save(QDataStream &s) // !! This data structure should remain binary compatible at all times !! // You may add new fields at the end. Make sure to update KSYCOCA_VERSION // number in ksycoca.cpp - s << m_strType << m_strName << m_strExec << m_strIcon << term << m_strTerminalOptions << m_strWorkingDirectory << m_strComment << def << m_mapProps - << m_strLibrary << dst << m_strDesktopEntryName << m_lstKeywords << m_strGenName << categories << menuId << m_actions << m_lstFormFactors - << m_untranslatedName << m_untranslatedGenericName << m_mimeTypes; + s << m_strType << m_strName << m_strExec << m_strIcon << term << m_strTerminalOptions << m_strWorkingDirectory << m_strComment + << qint8(false) /* unused */ << m_mapProps << QString() /* unused */ << dst << m_strDesktopEntryName << m_lstKeywords << m_strGenName << categories + << menuId << m_actions << QStringList() /* unused */ << m_untranslatedName << m_untranslatedGenericName << m_mimeTypes; } //// @@ -268,7 +262,6 @@ KService::KService(const QString &_name, const QString &_exec, const QString &_i d->m_strExec = _exec; d->m_strIcon = _icon; d->m_bTerminal = false; - d->m_bAllowAsDefault = true; } KService::KService(const QString &_fullpath) @@ -291,11 +284,6 @@ KService::KService(const KDesktopFile *config, const QString &entryPath) KService::KService(QDataStream &_str, int _offset) : KSycocaEntry(*new KServicePrivate(_str, _offset)) { - Q_D(KService); - KService::Ptr serviceClone(new KService(*this)); - for (KServiceAction &action : d->m_actions) { - action.setService(serviceClone); - } } KService::KService(const KService &other) @@ -380,14 +368,10 @@ QVariant KServicePrivate::property(const QString &_name, QMetaType::Type t) cons { if (_name == QLatin1String("Terminal")) { return QVariant(m_bTerminal); - } else if (_name == QLatin1String("AllowAsDefault")) { - return QVariant(m_bAllowAsDefault); } else if (_name == QLatin1String("Categories")) { return QVariant(categories); } else if (_name == QLatin1String("Keywords")) { return QVariant(m_lstKeywords); - } else if (_name == QLatin1String("FormFactors")) { - return QVariant(m_lstFormFactors); } auto it = m_mapProps.constFind(_name); @@ -755,12 +739,7 @@ QStringList KService::schemeHandlers() const QStringList KService::supportedProtocols() const { - Q_D(const KService); - - QStringList ret; - - ret << schemeHandlers(); - + QStringList ret = schemeHandlers(); const QStringList protocols = property(QStringLiteral("X-KDE-Protocols")); for (const QString &protocol : protocols) { if (!ret.contains(protocol)) { @@ -806,7 +785,20 @@ void KService::setWorkingDirectory(const QString &workingDir) QList KService::actions() const { Q_D(const KService); - return d->m_actions; + + // Both KService and KServiceAction have strong references to each other in the public API. + // The main purpose of the serviceClone is to break the cycle to prevent a memory leak. + // + // TODO KF7: Remove KServiceAction::service() or downgrade it to a weak pointer, the current + // API is prone to memory leaks. + KService::Ptr serviceClone(new KService(*this)); + + QList actions = d->m_actions; + for (KServiceAction &action : actions) { + action.setService(serviceClone); + } + + return actions; } QString KService::aliasFor() const diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservice.h b/local/recipes/kde/kf6-kservice/source/src/services/kservice.h index 0866ca592a..24a062a84c 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservice.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservice.h @@ -25,52 +25,58 @@ class QWidget; class KServicePrivate; -/** - * @class KService kservice.h +/*! + * \class KService + * \inmodule KService * - * Represents an installed application. + * \brief Represents an installed application. * * To obtain a KService instance for a specific application you typically use serviceByDesktopName(), e.g.: * - * @code + * \code * KService::Ptr service = KService::serviceByDesktopName("org.kde.kate"); - * @endcode + * \endcode * * Other typical usage would be in combination with KApplicationTrader to obtain e.g. the default application for a given file type. * - * @see Desktop Entry Specification + * See the \l {https://specifications.freedesktop.org/desktop-entry-spec/latest/} {Desktop Entry Specification} */ class KSERVICE_EXPORT KService : public KSycocaEntry { public: - /** + /*! * A shared data pointer for KService. */ typedef QExplicitlySharedDataPointer Ptr; - /** + /*! * A list of shared data pointers for KService. */ typedef QList List; - /** + /*! * Construct a temporary service with a given name, exec-line and icon. - * @param name the name of the service - * @param exec the executable - * @param icon the name of the icon + * + * \a name the name of the service + * + * \a exec the executable + * + * \a icon the name of the icon */ KService(const QString &name, const QString &exec, const QString &icon); - /** + /*! * Construct a service and take all information from a .desktop file. * - * @param fullpath Full path to the .desktop file. + * \a fullpath Full path to the .desktop file. */ explicit KService(const QString &fullpath); - /** + /*! * Construct a service and take all information from a desktop file. - * @param config the desktop file to read - * @param optional relative path to store for findByName + * + * \a config the desktop file to read + * + * \a entryPath optional relative path to store for findByName */ explicit KService(const KDesktopFile *config, const QString &entryPath = QString()); @@ -78,154 +84,141 @@ public: ~KService() override; - /** + /*! * Whether this service is an application - * @return true if this service is an application, i.e. it has Type=Application in its + * + * Returns \c true if this service is an application, i.e. it has \c Type=Application in its * .desktop file and exec() will not be empty. */ bool isApplication() const; - /** - * Returns the executable. - * @return the command that the service executes, + /*! + * Returns the command that the service executes, * or QString() if not set */ QString exec() const; - /** - * Returns the name of the icon. - * @return the icon associated with the service, + /*! + * Returns the name of the icon associated with the service, * or QString() if not set */ QString icon() const; - /** + /*! * Checks whether the application should be run in a terminal. * - * This corresponds to `Terminal=true` in the .desktop file. + * This corresponds to \c Terminal=true in the .desktop file. * - * @return @c true if the application should be run in a terminal. + * Returns \c true if the application should be run in a terminal. */ bool terminal() const; - /** + /*! * Returns any options associated with the terminal the application * runs in, if it requires a terminal. * * The application must be a TTY-oriented program. - * @return the terminal options, - * or QString() if not set */ QString terminalOptions() const; - /** - * Returns @c true if the application indicates that it's preferred to run - * on a discrete graphics card, otherwise return @c false. + /*! + * Returns \c true if the application indicates that it's preferred to run + * on a discrete graphics card, otherwise return \c false. * - * In releases older than 5.86, this method checked for the @c X-KDE-RunOnDiscreteGpu + * In releases older than 5.86, this method checked for the \c X-KDE-RunOnDiscreteGpu * key in the .desktop file represented by this service; starting from 5.86 this method - * now also checks for @c PrefersNonDefaultGPU key (added to the Freedesktop.org desktop + * now also checks for \c PrefersNonDefaultGPU key (added to the Freedesktop.org desktop * entry spec in version 1.4 of the spec). * - * @since 5.30 + * \since KService 5.30 */ bool runOnDiscreteGpu() const; - /** - * @brief Checks whether the application needs to run under a different UID. - * @return @c true if the application needs to run under a different UID. - * @see username() + /*! + * Returns whether the application needs to run under a different UID. + * \sa username() */ bool substituteUid() const; - /** + /*! * Returns the user name if the application runs with a * different user id. - * @return the username under which the service has to be run, - * or QString() if not set - * @see substituteUid() + * \sa substituteUid() */ QString username() const; - /** + /*! * Returns the filename of the desktop entry without any * extension, e.g. "org.kde.kate" - * @return the name of the desktop entry without path or extension, - * or QString() if not set */ QString desktopEntryName() const; - /** + /*! * Returns the menu ID of the application desktop entry. + * * The menu ID is used to add or remove the entry to a menu. - * @return the menu ID */ QString menuId() const; - /** + /*! * Returns a normalized ID suitable for storing in configuration files. + * * It will be based on the menu-id when available and otherwise falls * back to entryPath() - * @return the storage ID */ QString storageId() const; - /** - * @return the working directory to run the program in, + /*! + * Returns the working directory to run the program in, * or QString() if not set - * @since 5.63 + * \since 5.63 */ QString workingDirectory() const; - /** + /*! * Returns the descriptive comment for the application, if there is one. - * @return the descriptive comment for the application, or QString() * if not set */ QString comment() const; - /** + /*! * Returns the generic name for the application, if there is one * (e.g. "Mail Client"). - * @return the generic name, - * or QString() if not set */ QString genericName() const; - /** + /*! * Returns the untranslated (US English) generic name * for the application, if there is one * (e.g. "Mail Client"). - * @return the generic name, - * or QString() if not set */ QString untranslatedGenericName() const; - /** - * @return untranslated name for the given service + /*! + * Returns the untranslated name for the given service * - * @since 6.0 + * \since 6.0 */ QString untranslatedName() const; - /** + /*! * Returns a list of descriptive keywords for the application, if there are any. - * @return the list of keywords */ QStringList keywords() const; - /** + /*! * Returns a list of VFolder categories. - * @return the list of VFolder categories */ QStringList categories() const; - /** + /*! * Returns the list of MIME types that this application supports. + * * Note that this doesn't include inherited MIME types, * only the MIME types listed in the .desktop file. - * @since 4.8.3 + * + * \since 4.8.3 */ QStringList mimeTypes() const; - /** + /*! * Returns the list of scheme handlers this application supports. * * For example a web browser could return {"http", "https"}. @@ -233,12 +226,11 @@ public: * This is taken from the x-scheme-handler MIME types * listed in the .desktop file. * - * @since 6.0 - * + * \since 6.0 */ QStringList schemeHandlers() const; - /** + /*! * Returns the list of protocols this application supports. * * This is taken from the x-scheme-handler MIME types @@ -246,76 +238,78 @@ public: * entry * * For example a web browser could return {"http", "https"}. - * @since 6.0 + * + * \since 6.0 */ QStringList supportedProtocols() const; - /** - * Checks whether the application supports this MIME type - * @param mimeType The name of the MIME type you are + /*! + * Returns whether the application supports this MIME type + * + * \a mimeType The name of the MIME type you are * interested in determining whether this service supports. - * @since 4.6 + * + * \since 4.6 */ bool hasMimeType(const QString &mimeType) const; - /** + /*! * Returns the actions defined in this desktop file + * + * Only valid actions according to specification are included. + * + * \note This function copies the action list. */ QList actions() const; - /** - * Checks whether this application can handle several files as + /*! + * Returns whether this application can handle several files as * startup arguments. - * @return true if multiple files may be passed to this service at - * startup. False if only one file at a time may be passed. */ bool allowMultipleFiles() const; - /** - * Whether the entry should be hidden from the menu. - * @return @c true to hide this application from the menu + /*! + * Returns whether the entry should be hidden from the menu. * * Such services still appear in trader queries, i.e. in * "Open With" popup menus for instance. */ bool noDisplay() const; - /** - * Whether the application should be shown in the current desktop + /*! + * Returns whether the application should be shown in the current desktop * (including in context menus). - * @return true if the application should be shown in the current desktop. * * KApplicationTrader honors this and removes such services * from its results. * - * @since 5.0 + * \since 5.0 */ bool showInCurrentDesktop() const; - /** - * Whether the application should be shown on the current + /*! + * Returns whether the application should be shown on the current * platform (e.g. on xcb or on wayland). - * @return @c true if the application should be shown on the current platform. * - * @since 5.0 + * \since 5.0 */ bool showOnCurrentPlatform() const; - /** - * The path to the documentation for this application. - * @since 4.2 - * @return the documentation path, or QString() if not set + /*! + * Returns the path to the documentation for this application. + * + * \since 4.2 */ QString docPath() const; - /** + /*! * Returns the requested property. * - * @tparam T the type of the requested property. + * T the type of the requested property. * - * @param name the name of the property. + * \a name the name of the property. * - * @since 6.0 + * \since 6.0 */ template T property(const QString &name) const @@ -324,70 +318,71 @@ public: return property(name, static_cast(qMetaTypeId())).value(); } - /** + /*! * Returns a path that can be used for saving changes to this * application - * @return path that can be used for saving changes to this application */ QString locateLocal() const; - /** - * @internal + /*! + * \internal * Set the menu id */ void setMenuId(const QString &menuId); - /** - * @internal + /*! + * \internal * Sets whether to use a terminal or not */ void setTerminal(bool b); - /** - * @internal + /*! + * \internal * Sets the terminal options to use */ void setTerminalOptions(const QString &options); - /** + /*! * Overrides the "Exec=" line of the service. * - * If @ref exec is not empty, its value will override the one + * If \a exec is not empty, its value will override the one * the one set when this application was created. * - * Please note that @ref entryPath is also cleared so the application + * Please note that entryPath is also cleared so the application * will no longer be associated with a specific config file. * - * @internal - * @since 4.11 + * \internal + * \since 4.11 */ void setExec(const QString &exec); - /** + /*! * Overrides the "Path=" line of the application. * - * If @ref workingDir is not empty, its value will override + * If \a workingDir is not empty, its value will override * the one set when this application was created. * - * Please note that @ref entryPath is also cleared so the application + * Please note that entryPath is also cleared so the application * will no longer be associated with a specific config file. * - * @internal - * @param workingDir - * @since 5.79 + * \internal + * \since 5.79 */ void setWorkingDirectory(const QString &workingDir); - /** + /*! * Find a application based on its path as returned by entryPath(). + * * It's usually better to use serviceByStorageId() instead. * - * @param _path the path of the configuration file - * @return a pointer to the requested application or @c nullptr if the application is + * \a _path the path of the configuration file + * + * Returns a pointer to the requested application or \c nullptr if the application is * unknown. - * @em Very @em important: Don't store the result in a KService* ! + * + * Very important: Don't store the result in a KService* ! */ static Ptr serviceByDesktopPath(const QString &_path); - /** + /*! * Find an application by the name of its desktop file, not depending on * its actual location (as long as it's under the applications or application * directories). For instance "konqbrowser" or "kcookiejar". Note that @@ -396,88 +391,98 @@ public: * This is the recommended method (safe even if the user moves stuff) * but note that it assumes that no two entries have the same filename. * - * @param _name the name of the configuration file - * @return a pointer to the requested application or @c nullptr if the application is + * \a _name the name of the configuration file + * + * Returns a pointer to the requested application or \c nullptr if the application is * unknown. - * @em Very @em important: Don't store the result in a KService* ! + * + * Very important: Don't store the result in a KService* ! */ static Ptr serviceByDesktopName(const QString &_name); - /** + /*! * Find a application by its menu-id * - * @param _menuId the menu id of the application - * @return a pointer to the requested application or @c nullptr if the application is + * \a _menuId the menu id of the application + * + * Returns a pointer to the requested application or \c nullptr if the application is * unknown. - * @em Very @em important: Don't store the result in a KService* ! + * + * Very important: Don't store the result in a KService* ! */ static Ptr serviceByMenuId(const QString &_menuId); - /** + /*! * Find a application by its storage-id or desktop-file path. This * function will try very hard to find a matching application. * - * @param _storageId the storage id or desktop-file path of the application - * @return a pointer to the requested application or @c nullptr if the application is + * \a _storageId the storage id or desktop-file path of the application + * + * Returns a pointer to the requested application or \c nullptr if the application is * unknown. - * @em Very @em important: Don't store the result in a KService* ! + * + * Very important: Don't store the result in a KService* ! */ static Ptr serviceByStorageId(const QString &_storageId); - /** + /*! * Returns the whole list of applications. * - * Useful for being able to + * Useful for being able to * to display them in a list box, for example. + * * More memory consuming than the ones above, don't use unless * really necessary. - * @return the list of all applications */ static List allServices(); - /** + /*! * Returns a path that can be used to create a new KService based - * on @p suggestedName. - * @param showInMenu @c true, if the application should be shown in the KDE menu - * @c false, if the application should be hidden from the menu - * This argument isn't used anymore, use `NoDisplay=true` to hide the application. - * @param suggestedName name to base the file on, if an application with such a + * on \a suggestedName. + * + * \a showInMenu \c true, if the application should be shown in the KDE menu + * \c false, if the application should be hidden from the menu + * This argument isn't used anymore, use \c NoDisplay=true to hide the application. + * + * \a suggestedName name to base the file on, if an application with such a * name already exists, a suffix will be added to make it unique * (e.g. foo.desktop, foo-1.desktop, foo-2.desktop). - * @param menuId If provided, menuId will be set to the menu id to use for + * + * \a menuId If provided, menuId will be set to the menu id to use for * the KService - * @param reservedMenuIds If provided, the path and menu id will be chosen + * + * \a reservedMenuIds If provided, the path and menu id will be chosen * in such a way that the new menu id does not conflict with any * of the reservedMenuIds - * @return The path to use for the new KService. */ static QString newServicePath(bool showInMenu, const QString &suggestedName, QString *menuId = nullptr, const QStringList *reservedMenuIds = nullptr); - /** - * @brief A desktop file name that this application is an alias for. + /*! + * A desktop file name that this application is an alias for. + * + * This is used when a \c NoDisplay application is used to enforce specific handling + * for an application. In that case the \c NoDisplay application is an \c AliasFor another + * application and be considered roughly equal to the \c AliasFor application (which should + * not be \c NoDisplay=true) * - * This is used when a `NoDisplay` application is used to enforce specific handling - * for an application. In that case the `NoDisplay` application is an `AliasFor` another - * application and be considered roughly equal to the `AliasFor` application (which should - * not be `NoDisplay=true`) * For example Okular supplies a desktop file for each supported format (e.g. PDF), all - * of which `NoDisplay` and it is merely there to selectively support specific file formats. + * of which \c NoDisplay and it is merely there to selectively support specific file formats. * A UI may choose to display the aliased entry org.kde.okular instead of the NoDisplay entries. * - * @since 5.96 + * Returns QString desktopName of the aliased application (excluding .desktop suffix) * - * @return QString desktopName of the aliased application (excluding .desktop suffix) + * \since 5.96 */ QString aliasFor() const; - /** + /*! * Returns the value of StartupNotify for this service. * * If the service doesn't define a value nullopt is returned. * - * See StartupNotify in the Desktop Entry Specification. + * See StartupNotify in the \l {https://specifications.freedesktop.org/desktop-entry-spec/latest/} {Desktop Entry Specification}. * - * @since 6.0 + * \since 6.0 */ std::optional startupNotify() const; @@ -492,8 +497,8 @@ private: friend class KServiceFactory; - /** - * @internal + /*! + * \internal * Construct a service from a stream. * The stream must already be positioned at the correct offset. */ diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservice_p.h b/local/recipes/kde/kf6-kservice/source/src/services/kservice_p.h index 3dff162786..0c53382d9d 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservice_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservice_p.h @@ -67,17 +67,14 @@ public: QString m_strTerminalOptions; QString m_strWorkingDirectory; QString m_strComment; - QString m_strLibrary; QStringList m_mimeTypes; QString m_strDesktopEntryName; QMap m_mapProps; - QStringList m_lstFormFactors; QStringList m_lstKeywords; QString m_strGenName; QString m_untranslatedGenericName; QString m_untranslatedName; QList m_actions; - bool m_bAllowAsDefault : 1; bool m_bTerminal : 1; bool m_bValid : 1; }; diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.cpp b/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.cpp index 0bfced08f5..78bc3d7068 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.cpp @@ -11,7 +11,6 @@ #include "ksycoca_p.h" #include -#include #include diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.h b/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.h index 6e5298e735..d22cb37ee3 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kserviceaction.h @@ -19,102 +19,103 @@ class KService; // we can't include kservice.h, it includes this header... typedef QExplicitlySharedDataPointer KServicePtr; -/** - * @class KServiceAction kserviceaction.h +/*! + * \class KServiceAction + * \inmodule KService + * + * \brief Represents an action in a .desktop file. * - * Represents an action in a .desktop file * Actions are defined with the config key Actions in the [Desktop Entry] * group, followed by one group per action, as per the desktop entry standard. - * @see KService::actions + * \sa KService::actions */ class KSERVICE_EXPORT KServiceAction { public: - /** + /*! * Creates a KServiceAction. + * * Normally you don't have to do this, KService creates the actions * when parsing the .desktop file. - * @since 5.69 + * + * \since 5.69 */ KServiceAction(const QString &name, const QString &text, const QString &icon, const QString &exec, bool noDisplay, const KServicePtr &service); - /** - * @internal + /*! + * \internal * Needed for operator>> */ KServiceAction(); - /** - * Destroys a KServiceAction. - */ + ~KServiceAction(); - /** - * Copy constructor - */ KServiceAction(const KServiceAction &other); - /** - * Assignment operator - */ + KServiceAction &operator=(const KServiceAction &other); - /** - * Sets the action's internal data to the given @p userData. + /*! + * Sets the action's internal data to the given \a userData. */ void setData(const QVariant &userData); - /** - * @return the action's internal data. + + /*! + * Returns the action's internal data. */ QVariant data() const; - /** - * @return the action's internal name + /*! + * Returns the action's internal name + * * For instance Actions=Setup;... and the group [Desktop Action Setup] * define an action with the name "Setup". */ QString name() const; - /** - * @return the action's text, as defined by the Name key in the desktop action group + /*! + * Returns the action's text, as defined by the Name key in the desktop action group */ QString text() const; - /** - * @return the action's icon, as defined by the Icon key in the desktop action group + /*! + * Returns the action's icon, as defined by the Icon key in the desktop action group */ QString icon() const; - /** - * @return the action's exec command, as defined by the Exec key in the desktop action group + /*! + * Returns the action's exec command, as defined by the Exec key in the desktop action group */ QString exec() const; - /** + /*! * Returns whether the action should be suppressed in menus. + * * This is useful for having actions with a known name that the code * looks for explicitly, like Setup and Root for kscreensaver actions, * and which should not appear in popup menus. - * @return true to suppress this service */ bool noDisplay() const; - /** + /*! * Returns whether the action is a separator. + * * This is true when the Actions key contains "_SEPARATOR_". */ bool isSeparator() const; - /** + /*! * Returns the service that this action comes from - * @since 5.69 + * \since 5.69 */ KServicePtr service() const; - /** + /*! * Returns the requested property. * - * @tparam T the type of the requested property - * @param name the name of the requested property - * @return the property - * @since 6.0 + * T the type of the requested property + * + * \a name the name of the requested property + * + * \since 6.0 */ template T property(const QString &name) const diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory.cpp b/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory.cpp index d44ebfeca8..f0e6a340eb 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory.cpp @@ -13,6 +13,7 @@ #include "servicesdebug.h" #include #include +#include extern int servicesDebugArea(); @@ -22,6 +23,18 @@ KServiceFactory::KServiceFactory(KSycoca *db) , m_relNameDict(nullptr) , m_menuIdDict(nullptr) { + // Safety net against recursive calls. Because KSycocaFactory calls findFactory and that issues a checkDatabase + // and that may end up repairing the database and thus closing and reopening it, we must absolutely never find + // ourselves in a recursive call chain. + // The inner call would thrash the state of the outer call causing impossibly difficult to debug state corruption. + thread_local bool inside = false; + if (inside) { + qFatal( + "Recursive call detected in KServiceFactory. This is not allowed and indicates a bug in KSycoca/KServiceFactory. Please report this on " + "bugs.kde.org."); + } + QScopedValueRollback guard(inside, true); + m_offerListOffset = 0; m_nameDictOffset = 0; m_relNameDictOffset = 0; diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory_p.h b/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory_p.h index d4b32ce0d3..ef8b21f6ff 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservicefactory_p.h @@ -18,8 +18,8 @@ class KSycoca; class KSycocaDict; -/** - * @internal +/*! + * \internal * A sycoca factory for services (e.g. applications) * It loads the services from parsing directories (e.g. prefix/share/applications/) * but can also create service from data streams or single config files @@ -30,13 +30,13 @@ class KSERVICE_EXPORT KServiceFactory : public KSycocaFactory { K_SYCOCAFACTORY(KST_KServiceFactory) public: - /** + /*! * Create factory */ explicit KServiceFactory(KSycoca *sycoca); ~KServiceFactory() override; - /** + /*! * Construct a KService from a config file. */ KSycocaEntry *createEntry(const QString &) const override @@ -45,42 +45,42 @@ public: return nullptr; } - /** + /*! * Find a service (by translated name, e.g. "Terminal") * (Not virtual because not used inside kbuildsycoca4, only an external service for some KDE apps) */ KService::Ptr findServiceByName(const QString &_name); - /** + /*! * Find a service (by desktop file name, e.g. "konsole") */ virtual KService::Ptr findServiceByDesktopName(const QString &_name); - /** + /*! * Find a service ( by desktop path, e.g. "System/konsole.desktop") */ virtual KService::Ptr findServiceByDesktopPath(const QString &_name); - /** + /*! * Find a service ( by menu id, e.g. "kde-konsole.desktop") */ virtual KService::Ptr findServiceByMenuId(const QString &_menuId); KService::Ptr findServiceByStorageId(const QString &_storageId); - /** + /*! * @return the services supporting the given service type * The @p serviceOffersOffset allows to jump to the right entries directly. */ KServiceOfferList offers(int serviceTypeOffset, int serviceOffersOffset); - /** + /*! * @return the services supporting the given service type * The @p serviceOffersOffset allows to jump to the right entries directly. */ KService::List serviceOffers(int serviceTypeOffset, int serviceOffersOffset); - /** + /*! * Test if a specific service is associated with a specific servicetype * @param serviceTypeOffset the offset of the service type being tested * @param serviceOffersOffset allows to jump to the right entries for the service type directly. @@ -88,17 +88,17 @@ public: */ bool hasOffer(int serviceTypeOffset, int serviceOffersOffset, int testedServiceOffset); - /** + /*! * @return all services. Very memory consuming, avoid using. */ KService::List allServices(); - /** + /*! * Returns the directories to watch for this factory. */ static QStringList resourceDirs(); - /** + /*! * @return the unique service factory, creating it if necessary */ static KServiceFactory *self(); diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.cpp b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.cpp index 38d72ead83..a9f6d5fe16 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.cpp @@ -374,9 +374,9 @@ KServiceGroup::List KServiceGroupPrivate::entries(KServiceGroup *group, bool sor if (p->isType(KST_KServiceGroup)) { name = static_cast(p.data())->caption(); } else if (sortByGenericName) { - name = static_cast(p.data())->genericName() + QLatin1Char(' ') + p->name(); + name = static_cast(p.data())->genericName() + QLatin1Char(' ') + p->name() + p->storageId(); } else { - name = p->name() + QLatin1Char(' ') + static_cast(p.data())->genericName(); + name = p->name() + QLatin1Char(' ') + static_cast(p.data())->genericName() + p->storageId(); } const QByteArray nameStr = name.toLocal8Bit(); diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.h b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.h index 1c00ff80e8..74d5dce821 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup.h @@ -15,11 +15,13 @@ class KBuildServiceGroupFactory; class KServiceGroupPrivate; -/** - * @class KServiceGroup kservicegroup.h +/*! + * \class KServiceGroup + * \inmodule KService * - * KServiceGroup represents a group of service, for example + * \brief KServiceGroup represents a group of service, for example * screensavers. + * * This class is typically used like this: * * \code @@ -46,229 +48,258 @@ class KServiceGroupPrivate; * } * } * \endcode - * - * @short Represents a group of services */ class KSERVICE_EXPORT KServiceGroup : public KSycocaEntry { friend class KBuildServiceGroupFactory; public: - /** + /*! + * \typedef KServiceGroup::Ptr * A shared data pointer for KServiceGroup. */ typedef QExplicitlySharedDataPointer Ptr; - /** + /*! + * \typedef KServiceGroup::SPtr * A shared data pointer for KSycocaEntry. */ typedef QExplicitlySharedDataPointer SPtr; - /** + /*! + * \typedef KServiceGroup::List * A list of shared data pointers for KSycocaEntry. */ typedef QList List; public: - /** - * Construct a dummy servicegroup indexed with @p name. - * @param name the name of the service group + /*! + * Construct a dummy servicegroup indexed with \a name. + * + * \a name the name of the service group */ KServiceGroup(const QString &name); - /** + /*! * Construct a service and take all information from a config file - * @param _fullpath full path to the config file - * @param _relpath relative path to the config file + * + * \a _fullpath full path to the config file + * + * \a _relpath relative path to the config file */ KServiceGroup(const QString &_fullpath, const QString &_relpath); ~KServiceGroup() override; - /** + /*! * Returns the relative path of the service group. - * @return the service group's relative path */ QString relPath() const; - /** + /*! * Returns the caption of this group. - * @return the caption of this group */ QString caption() const; - /** + /*! * Returns the name of the icon associated with the group. - * @return the name of the icon associated with the group, - * or QString() if not set */ QString icon() const; - /** + /*! * Returns the comment about this service group. - * @return the descriptive comment for the group, if there is one, - * or QString() if not set */ QString comment() const; - /** + /*! * Returns the total number of displayable services in this group and * any of its subgroups. - * @return the number of child services */ int childCount() const; - /** - * Returns true if the NoDisplay flag was set, i.e. if this + /*! + * Returns \c true if the NoDisplay flag was set, i.e. if this * group should be hidden from menus, while still being in ksycoca. - * @return true to hide this service group, false to display it */ bool noDisplay() const; - /** + /*! * Return true if we want to display empty menu entry - * @return true to show this service group as menu entry is empty, false to hide it */ bool showEmptyMenu() const; + + /*! + * + */ void setShowEmptyMenu(bool b); - /** - * @return true to show an inline header into menu + /*! + * Returns \c true to show an inline header into menu */ bool showInlineHeader() const; + + /*! + * + */ void setShowInlineHeader(bool _b); - /** - * @return true to show an inline alias item into menu + /*! + * Returns \c true to show an inline alias item into menu */ bool inlineAlias() const; + + /*! + * + */ void setInlineAlias(bool _b); - /** - * @return true if we allow to inline menu. + + /*! + * Return \c true if we allow to inline menu. */ bool allowInline() const; + + /*! + * + */ void setAllowInline(bool _b); - /** - * @return inline limit value + /*! + * Returns inline limit value */ int inlineValue() const; + + /*! + * + */ void setInlineValue(int _val); - /** + /*! * Returns a list of untranslated generic names that should be * be suppressed when showing this group. + * * E.g. The group "Games/Arcade" might want to suppress the generic name * "Arcade Game" since it's redundant in this particular context. */ QStringList suppressGenericNames() const; - /** - * @internal + /*! + * \internal * Sets information related to the layout of services in this group. */ void setLayoutInfo(const QStringList &layout); - /** - * @internal + /*! + * \internal * Returns information related to the layout of services in this group. */ QStringList layoutInfo() const; - /** + /*! * List of all Services and ServiceGroups within this * ServiceGroup. - * @param sorted true to sort items - * @param excludeNoDisplay true to exclude items marked "NoDisplay" - * @param allowSeparators true to allow separator items to be included - * @param sortByGenericName true to sort GenericName+Name instead of Name+GenericName - * @return the list of entries + * + * \a sorted true to sort items + * + * \a excludeNoDisplay true to exclude items marked "NoDisplay" + * + * \a allowSeparators true to allow separator items to be included + * + * \a sortByGenericName true to sort GenericName+Name instead of Name+GenericName + * + * Returns the list of entries */ List entries(bool sorted, bool excludeNoDisplay, bool allowSeparators, bool sortByGenericName = false); + + /*! + * + */ List entries(bool sorted, bool excludeNoDisplay); - /** + /*! * List of all Services and ServiceGroups within this * ServiceGroup. - * @param sorted true to sort items - * @return the list of entried + * + * \a sorted true to sort items + * + * Returns the list of entried */ List entries(bool sorted = false); - /** - * options for groupEntries and serviceEntries - * @see EntriesOptions + /*! + * Options for groupEntries and serviceEntries + * + * \value NoOptions no options set + * \value SortEntries sort items + * \value ExcludeNoDisplay exclude items marked "NoDisplay" + * \value AllowSeparators allow separator items to be included + * \value SortByGenericName sort by GenericName+Name instead of Name+GenericName */ enum EntriesOption { - NoOptions = 0x0, /**< no options set */ - SortEntries = 0x1, /**< sort items */ - ExcludeNoDisplay = 0x2, /**< exclude items marked "NoDisplay" */ - AllowSeparators = 0x4, /**< allow separator items to be included */ - SortByGenericName = 0x8, /**< sort by GenericName+Name instead of Name+GenericName */ + NoOptions = 0x0, + SortEntries = 0x1, + ExcludeNoDisplay = 0x2, + AllowSeparators = 0x4, + SortByGenericName = 0x8, }; - /** - * Stores a combination of #EntriesOption values. - */ Q_DECLARE_FLAGS(EntriesOptions, EntriesOption) - /** + /*! * subgroups for this service group */ QList groupEntries(EntriesOptions options = ExcludeNoDisplay); - /** + /*! * entries of this service group */ KService::List serviceEntries(EntriesOptions options = ExcludeNoDisplay); - /** + /*! * Returns a non-empty string if the group is a special base group. + * * By default, "Settings/" is the kcontrol base group ("settings") * and "System/Screensavers/" is the screensavers base group ("screensavers"). * This allows moving the groups without breaking those apps. * * The base group is defined by the X-KDE-BaseGroup key * in the .directory file. - * @return the base group name, or null if no base group */ QString baseGroupName() const; - /** + /*! * Returns a path to the .directory file describing this service group. * The path is either absolute or relative to the "apps" resource. */ QString directoryEntryPath() const; - /** + /*! * Returns the root service group. - * @return the root service group */ static Ptr root(); - /** + /*! * Returns the group with the given relative path. - * @param relPath the path of the service group - * @return the group with the given relative path name. + * + * \a relPath the path of the service group */ static Ptr group(const QString &relPath); - /** + /*! * Returns the group of services that have X-KDE-ParentApp equal - * to @p parent (siblings). - * @param parent the name of the service's parent - * @return the services group + * to \a parent (siblings). + * + * \a parent the name of the service's parent */ static Ptr childGroup(const QString &parent); protected: - /** - * @internal + /*! + * \internal * Add a service to this group */ void addEntry(const KSycocaEntry::Ptr &entry); private: friend class KServiceGroupFactory; - /** - * @internal construct a service from a stream. + /*! + * \internal construct a service from a stream. * The stream must already be positioned at the correct offset */ KSERVICE_NO_EXPORT KServiceGroup(QDataStream &_str, int offset, bool deep); diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup_p.h b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup_p.h index 8c7bd20d71..d3ac705a5d 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroup_p.h @@ -58,7 +58,7 @@ public: int childCount() const; KServiceGroup::List entries(KServiceGroup *group, bool sort, bool excludeNoDisplay, bool allowSeparators, bool sortByGenericName); - /** + /*! * This function parse attributes into menu */ void parseAttribute(const QString &item, bool &showEmptyMenu, bool &showInline, bool &showInlineHeader, bool &showInlineAlias, int &inlineValue); @@ -88,7 +88,7 @@ public: typedef QExplicitlySharedDataPointer Ptr; public: - /** + /*! * Construct a service separator */ KServiceSeparator(); diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroupfactory_p.h b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroupfactory_p.h index 521a4db5f0..e66cbf04df 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kservicegroupfactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kservicegroupfactory_p.h @@ -15,8 +15,8 @@ class KSycoca; class KSycocaDict; -/** - * @internal +/*! + * \internal * A sycoca factory for service groups (e.g. list of applications) * It loads the services from parsing directories (e.g. share/applications/) * @@ -26,13 +26,13 @@ class KServiceGroupFactory : public KSycocaFactory { K_SYCOCAFACTORY(KST_KServiceGroupFactory) public: - /** + /*! * Create factory */ explicit KServiceGroupFactory(KSycoca *db); ~KServiceGroupFactory() override; - /** + /*! * Construct a KServiceGroup from a config file. */ KSycocaEntry *createEntry(const QString &) const override @@ -41,17 +41,17 @@ public: return nullptr; } - /** + /*! * Find a group ( by desktop path, e.g. "Applications/Editors") */ virtual KServiceGroup::Ptr findGroupByDesktopPath(const QString &_name, bool deep = true); - /** + /*! * Find a base group by name, e.g. "settings" */ KServiceGroup::Ptr findBaseGroup(const QString &_baseGroupName, bool deep = true); - /** + /*! * @return the unique service group factory, creating it if necessary */ static KServiceGroupFactory *self(); diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kserviceoffer.h b/local/recipes/kde/kf6-kservice/source/src/services/kserviceoffer.h index ced9dcdcad..d442d7f269 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kserviceoffer.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kserviceoffer.h @@ -15,94 +15,97 @@ class KServiceOfferPrivate; -/** - * @internal +/*! + * \internal * * This class holds the user-specific preferences of a service * (whether it can be a default offer or not, how big is the preference * for this offer, ...). Basically it is a reference to a * KService, a number that represents the user's preference (bigger * is better) and a flag whether the KService can be used as default. - * - * @see KService - * @short Holds the user's preference of a service. */ class KSERVICE_EXPORT KServiceOffer // exported for kbuildsycoca { public: - /** + /*! * Create an invalid service offer. */ KServiceOffer(); - /** + /*! * Copy constructor. * Shallow copy (the KService will not be copied). */ KServiceOffer(const KServiceOffer &); - /** + /*! * Creates a new KServiceOffer. - * @param service a pointer to the KService - * @param pref the user's preference value, must be positive, + * + * \a service a pointer to the KService + * + * \a pref the user's preference value, must be positive, * bigger is better - * @param mimeTypeInheritanceLevel level of MIME type inheritance + * + * \a mimeTypeInheritanceLevel level of MIME type inheritance * which allows this service to handling the MIME type. * 0 if no inheritance involved, 1 for parent MIME type, etc. - * @since 5.71 + * + * \since 5.71 */ KServiceOffer(const KService::Ptr &service, int pref, int mimeTypeInheritanceLevel); ~KServiceOffer(); - /** + /*! * A service is bigger that the other when it can be default * (and the other is not) and its preference value it higher. */ bool operator<(const KServiceOffer &) const; - /** + /*! * Assignment operator */ KServiceOffer &operator=(const KServiceOffer &other); - /** + /*! * The bigger this number is, the better is this service. - * @return the preference number (negative numbers will be + * + * Returns the preference number (negative numbers will be * returned by invalid service offers) */ int preference() const; - /** + /*! * The bigger this number is, the better is this service. * Set the preference number - * @internal - only for KMimeTypeTrader + * \internal - only for KMimeTypeTrader */ void setPreference(int p); - /** + /*! * The service which this offer is about. - * @return the service this offer is about, can be @c nullptr + * Returns the service this offer is about, can be \c nullptr * in valid offers or when not set */ KService::Ptr service() const; - /** + /*! * Check whether the entry is valid. A service is valid if * its preference value is positive. - * @return true if the service offer is valid + * + * Returns true if the service offer is valid */ bool isValid() const; - /** + /*! * When copying an offer from a parent MIME type, remember that it's an inherited capability * (for sorting purposes; we prefer a handler for postscript over any text/plain handler) */ void setMimeTypeInheritanceLevel(int level); - /** + /*! * Mimetype inheritance level - * @internal + * \internal */ int mimeTypeInheritanceLevel() const; @@ -110,9 +113,6 @@ private: std::unique_ptr const d; }; -/** - * A list of weighted offers. - */ typedef QList KServiceOfferList; QDebug operator<<(QDebug dbg, const KServiceOffer &offer); diff --git a/local/recipes/kde/kf6-kservice/source/src/services/kserviceutil_p.h b/local/recipes/kde/kf6-kservice/source/src/services/kserviceutil_p.h index 9c6189208e..b1204bc534 100644 --- a/local/recipes/kde/kf6-kservice/source/src/services/kserviceutil_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/services/kserviceutil_p.h @@ -13,7 +13,7 @@ class KServiceUtilPrivate { public: - /** + /*! * Lightweight implementation of QFileInfo::completeBaseName. * * Returns the complete base name of the file without the path. diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildmimetypefactory_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildmimetypefactory_p.h index b990f2fb07..77cf54cb2c 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildmimetypefactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildmimetypefactory_p.h @@ -11,14 +11,14 @@ #include #include -/** +/*! * Mime-type factory for building ksycoca - * @internal + * \internal */ class KBuildMimeTypeFactory : public KMimeTypeFactory { public: - /** + /*! * Create factory */ explicit KBuildMimeTypeFactory(KSycoca *db); @@ -27,7 +27,7 @@ public: KSycocaEntry::List allEntries() const override; - /** + /*! * Construct a KMimeType from a config file. */ KSycocaEntry *createEntry(const QString &file) const override; @@ -40,12 +40,12 @@ public: KMimeTypeFactory::MimeTypeEntry::Ptr createFakeMimeType(const QString &name); - /** + /*! * Write out MIME type specific index files. */ void save(QDataStream &str) override; - /** + /*! * Write out header information * * Don't forget to call the parent first when you override diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory.cpp index d8f9b4fded..c1d78bdf06 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory.cpp @@ -61,26 +61,29 @@ KSycocaEntry *KBuildServiceFactory::createEntry(const QString &file) const // Is it a .desktop file? if (name.endsWith(QLatin1String(".desktop"))) { - // qCDebug(SYCOCA) << file; + qCDebug(SYCOCA) << file; Q_ASSERT(QDir::isAbsolutePath(file)); KService *serv = new KService(file); - // qCDebug(SYCOCA) << "Creating KService from" << file << "entryPath=" << serv->entryPath(); + qCDebug(SYCOCA) << "Creating KService from" << file << "entryPath=" << serv->entryPath(); // Note that the menuId will be set by the vfolder_menu.cpp code just after // createEntry returns. if (serv->isValid() && !serv->isDeleted()) { - // qCDebug(SYCOCA) << "Creating KService from" << file << "entryPath=" << serv->entryPath() << "storageId=" << serv->storageId(); + qCDebug(SYCOCA) << "Creating KService from" << file << "entryPath=" << serv->entryPath() << "storageId=" << serv->storageId(); return serv; } else { if (!serv->isDeleted()) { qCWarning(SYCOCA) << "Invalid Service : " << file; + } else { + qCDebug(SYCOCA) << "Deleted/Hidden Service:" << file; } delete serv; return nullptr; } } // TODO else if a Windows application, new KService(name, exec, icon) + qCDebug(SYCOCA) << "Unsupported file type" << file; return nullptr; } diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory_p.h index 065420486b..70b424b90f 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicefactory_p.h @@ -17,14 +17,14 @@ class KBuildServiceGroupFactory; class KBuildMimeTypeFactory; -/** +/*! * Service factory for building ksycoca - * @internal + * \internal */ class KBuildServiceFactory : public KServiceFactory { public: - /** + /*! * Create factory */ KBuildServiceFactory(KBuildMimeTypeFactory *mimeTypeFactory); @@ -38,7 +38,7 @@ public: /// Reimplemented from KServiceFactory KService::Ptr findServiceByMenuId(const QString &menuId) override; - /** + /*! * Construct a KService from a config file. */ KSycocaEntry *createEntry(const QString &file) const override; @@ -49,17 +49,17 @@ public: return nullptr; } - /** + /*! * Add a new entry. */ void addEntry(const KSycocaEntry::Ptr &newEntry) override; - /** + /*! * Write out service specific index files. */ void save(QDataStream &str) override; - /** + /*! * Write out header information * * Don't forget to call the parent first when you override diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicegroupfactory_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicegroupfactory_p.h index a26a804b24..72d1a5a3c5 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicegroupfactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildservicegroupfactory_p.h @@ -12,21 +12,21 @@ #include #include -/** +/*! * Service group factory for building ksycoca - * @internal + * \internal */ class KBuildServiceGroupFactory : public KServiceGroupFactory { public: - /** + /*! * Create factory */ explicit KBuildServiceGroupFactory(KSycoca *db); ~KBuildServiceGroupFactory() override; - /** + /*! * Create new entry. */ KServiceGroup *createEntry(const QString &) const override; @@ -37,42 +37,42 @@ public: return nullptr; } - /** - * Adds the entry @p newEntry to the menu @p menuName + /*! + * Adds the entry \a newEntry to the menu \a menuName */ void addNewEntryTo(const QString &menuName, const KService::Ptr &newEntry); - /** - * Adds the entry @p newEntry to the "parent group" @p parent, creating + /*! + * Adds the entry \a newEntry to the "parent group" \a parent, creating * the group if necessary. * A "parent group" is a group of services that all have the same * "X-KDE-ParentApp". */ void addNewChild(const QString &parent, const KSycocaEntry::Ptr &newEntry); - /** - * Add new menu @p menuName defined by @p file - * When @p entry is non-null it is re-used, otherwise a new group is created. + /*! + * Add new menu \a menuName defined by \a file + * When \a entry is non-null it is re-used, otherwise a new group is created. * A pointer to the group is returned. */ KServiceGroup::Ptr addNew(const QString &menuName, const QString &file, KServiceGroup::Ptr entry, bool isDeleted); - /** + /*! * Find a group ( by desktop path, e.g. "Applications/Editors") */ KServiceGroup::Ptr findGroupByDesktopPath(const QString &_name, bool deep = true) override; - /** + /*! * Add a new menu entry */ void addEntry(const KSycocaEntry::Ptr &newEntry) override; - /** + /*! * Write out servicegroup specific index files. */ void save(QDataStream &str) override; - /** + /*! * Write out header information */ void saveHeader(QDataStream &str) override; diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca.cpp index b915a488d2..02e0e893d0 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca.cpp @@ -70,6 +70,7 @@ KSycocaEntry::Ptr KBuildSycoca::createEntry(KSycocaFactory *currentFactory, cons if (!timeStamp) { timeStamp = calcResourceHash(m_resourceSubdir, file); if (!timeStamp) { // file disappeared meanwhile + qCDebug(SYCOCA) << "Couldn't generate timeStamp. Has the file disappeared?"; return {}; } } @@ -112,6 +113,7 @@ KSycocaEntry::Ptr KBuildSycoca::createEntry(KSycocaFactory *currentFactory, cons if (entry && entry->isValid()) { return entry; } + qCDebug(SYCOCA) << "No valid entry created for" << file; return KSycocaEntry::Ptr(); } @@ -193,7 +195,7 @@ bool KBuildSycoca::build() const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); qCDebug(SYCOCA) << "Looking for subdir" << m_resourceSubdir << "=>" << dirs; for (const QString &dir : dirs) { - QDirIterator it(dir, QDirIterator::Subdirectories); + QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); while (it.hasNext()) { const QString filePath = it.next(); Q_ASSERT(filePath.startsWith(dir)); // due to the line below... @@ -420,7 +422,12 @@ bool KBuildSycoca::recreate(bool incremental) const int uid = qEnvironmentVariableIntValue("SUDO_UID"); const int gid = qEnvironmentVariableIntValue("SUDO_GID"); if (uid && gid) { - fchown(database.handle(), uid, gid); + int ret; + ret = fchown(database.handle(), uid, gid); + if (ret < 0) { + qCWarning(SYCOCA) << "ERROR changing ownership of database" << database.fileName() << strerror(errno); + return false; + } } } #endif @@ -578,12 +585,13 @@ static quint32 updateHash(const QString &file, quint32 hash) if (fi.isReadable() && fi.isFile()) { // This was using buff.st_ctime (in Waldo's initial commit to kstandarddirs.cpp in 2001), but that looks wrong? // Surely we want to catch manual editing, while a chmod doesn't matter much? - qint64 timestamp = fi.lastModified().toSecsSinceEpoch(); + qint64 timestamp = fi.fileTime(QFile::FileModificationTime, QTimeZone::utc()).toSecsSinceEpoch(); + // On some systems (i.e. Fedora Kinoite), all files in /usr have a last // modified timestamp of 0 (UNIX Epoch). In this case, always assume // the file as been changed. if (timestamp == 0) { - static qint64 now = QDateTime::currentDateTimeUtc().toSecsSinceEpoch(); + static qint64 now = QDateTime::currentSecsSinceEpoch(); timestamp = now; } hash += timestamp; diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca_p.h index fc045e5deb..62ee6c7ee1 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kbuildsycoca_p.h @@ -20,8 +20,8 @@ class QDataStream; class KCTimeFactory; class KCTimeDict; -/** - * @internal +/*! + * \internal * Exported for kbuildsycoca, but not installed. */ class KSERVICE_EXPORT KBuildSycoca : public KSycoca, public KBuildSycocaInterface @@ -31,9 +31,9 @@ public: explicit KBuildSycoca(); ~KBuildSycoca() override; - /** + /*! * Recreate the database file. - * @return true if it was indeed recreated (by us or possibly by someone else), false on error + * Returns true if it was indeed recreated (by us or possibly by someone else), false on error */ bool recreate(bool incremental = true); @@ -51,61 +51,61 @@ public: static QStringList factoryExtraFiles(); static QStringList existingResourceDirs(); - /** - * Returns a number that identifies the current version of the file @p filename, + /*! + * Returns a number that identifies the current version of the file \a filename, * which is located under GenericDataLocation (including local overrides). * * When a change is made to the file this number will change. */ static quint32 calcResourceHash(const QString &subdir, const QString &filename); - /** + /*! * Compare our current settings (language, prefixes...) with the ones from the existing ksycoca global header. - * @return true if they match (= we can reuse this ksycoca), false otherwise (full build) + * Returns true if they match (= we can reuse this ksycoca), false otherwise (full build) */ bool checkGlobalHeader(); - /** - * @brief path to the sycoca file, for the crash handler in kbuildsycoca + /*! + * path to the sycoca file, for the crash handler in kbuildsycoca */ static const char *sycocaPath(); private: - /** + /*! * Add single entry to the sycoca database. * Either from a previous database or regenerated from file. */ KSERVICE_NO_EXPORT KSycocaEntry::Ptr createEntry(KSycocaFactory *currentFactory, const QString &file); - /** + /*! * Implementation of KBuildSycocaInterface * Create service and return it. The caller must add it to the servicefactory. */ KService::Ptr createService(const QString &path) override; - /** + /*! * Convert a VFolderMenu::SubMenu to KServiceGroups. */ KSERVICE_NO_EXPORT void createMenu(const QString &caption, const QString &name, VFolderMenu::SubMenu *menu); - /** + /*! * Build the whole system cache, from .desktop files */ KSERVICE_NO_EXPORT bool build(); - /** + /*! * Save the ksycoca file */ KSERVICE_NO_EXPORT void save(QDataStream *str); - /** + /*! * Clear the factories */ KSERVICE_NO_EXPORT void clear(); - /** - * @internal - * @return true if building (i.e. if a KBuildSycoca); + /*! + * \internal + * Returns true if building (i.e. if a KBuildSycoca); */ bool isBuilding() override { diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kctimefactory_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/kctimefactory_p.h index 0520c03929..6bf8a9d2c2 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kctimefactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kctimefactory_p.h @@ -11,8 +11,10 @@ #include #include -/** +/*! * Simple dict for associating a timestamp with each file in ksycoca + * + * \internal */ class KCTimeDict { @@ -34,27 +36,27 @@ private: Hash m_hash; }; -/** +/*! * Internal factory for storing the timestamp of each file in ksycoca - * @internal + * \internal */ class KCTimeFactory : public KSycocaFactory { K_SYCOCAFACTORY(KST_CTimeInfo) public: - /** + /*! * Create factory */ explicit KCTimeFactory(KSycoca *db); ~KCTimeFactory() override; - /** + /*! * Write out header information */ void saveHeader(QDataStream &str) override; - /** + /*! * Write out data */ void save(QDataStream &str) override; diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile.cpp index 1b84ee66b3..6ec5423c03 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile.cpp @@ -15,38 +15,14 @@ #include #include -#ifdef __redox__ -static bool sharedMemoryLock(QSharedMemory &) -{ - return true; -} - -static void sharedMemoryUnlock(QSharedMemory &) -{ -} -#else -static bool sharedMemoryLock(QSharedMemory &memory) -{ - return memory.lock(); -} - -static void sharedMemoryUnlock(QSharedMemory &memory) -{ - memory.unlock(); -} -#endif - class KMemFile::Private { public: struct sharedInfoData { - int shmCounter; - qint64 shmDataSize; + int shmCounter = 0; + qint64 shmDataSize = 0; - sharedInfoData() - { - memset(this, 0, sizeof(*this)); - } + sharedInfoData() = default; }; Private(KMemFile *_parent) : readWritePos(0) @@ -103,7 +79,7 @@ bool KMemFile::Private::loadContentsFromFile() parent->setErrorString(QCoreApplication::translate("", "Cannot create memory segment for file %1").arg(filename)); return false; } - sharedMemoryLock(shmData); + shmData.lock(); qint64 size = 0; qint64 bytesRead; char *data = static_cast(shmData.data()); @@ -114,15 +90,15 @@ bool KMemFile::Private::loadContentsFromFile() return false; } shmDataSize = size; - sharedMemoryUnlock(shmData); + shmData.unlock(); return true; } void KMemFile::Private::close() { - sharedMemoryUnlock(shmData); + shmData.unlock(); shmData.detach(); - sharedMemoryUnlock(shmInfo); + shmInfo.unlock(); shmInfo.detach(); readWritePos = 0; shmDataSize = 0; @@ -172,44 +148,44 @@ bool KMemFile::open(OpenMode mode) } QSharedMemory lock(QDir(d->filename).canonicalPath()); - sharedMemoryLock(lock); + lock.lock(); Private::sharedInfoData *infoPtr; d->shmInfo.setKey(d->getShmKey()); // see if it's already in memory if (!d->shmInfo.attach(QSharedMemory::ReadWrite)) { if (!d->shmInfo.create(sizeof(Private::sharedInfoData))) { - sharedMemoryUnlock(lock); + lock.unlock(); setErrorString(QCoreApplication::translate("", "Cannot create memory segment for file %1").arg(d->filename)); return false; } - sharedMemoryLock(d->shmInfo); + d->shmInfo.lock(); // no -> create it infoPtr = static_cast(d->shmInfo.data()); - memset(infoPtr, 0, sizeof(Private::sharedInfoData)); + new (infoPtr) Private::sharedInfoData; infoPtr->shmCounter = 1; if (!d->loadContentsFromFile()) { - sharedMemoryUnlock(d->shmInfo); + d->shmInfo.unlock(); d->shmInfo.detach(); - sharedMemoryUnlock(lock); + lock.unlock(); return false; } } else { - sharedMemoryLock(d->shmInfo); + d->shmInfo.lock(); infoPtr = static_cast(d->shmInfo.data()); d->shmData.setKey(d->getShmKey(infoPtr->shmCounter)); if (!d->shmData.attach(QSharedMemory::ReadOnly)) { if (!d->loadContentsFromFile()) { - sharedMemoryUnlock(d->shmInfo); + d->shmInfo.unlock(); d->shmInfo.detach(); - sharedMemoryUnlock(lock); + lock.unlock(); return false; } } } d->shmDataSize = infoPtr->shmDataSize; - sharedMemoryUnlock(d->shmInfo); - sharedMemoryUnlock(lock); + d->shmInfo.unlock(); + lock.unlock(); setOpenMode(mode); return true; @@ -253,17 +229,17 @@ qint64 KMemFile::writeData(const char *, qint64) void KMemFile::fileContentsChanged(const QString &filename) { QSharedMemory lock(QDir(filename).canonicalPath()); - sharedMemoryLock(lock); + lock.lock(); QSharedMemory shmData(Private::getShmKey(filename)); if (!shmData.attach()) { return; } - sharedMemoryLock(shmData); + shmData.lock(); Private::sharedInfoData *infoPtr = static_cast(shmData.data()); infoPtr->shmCounter++; infoPtr->shmDataSize = 0; - sharedMemoryUnlock(shmData); + shmData.unlock(); } #endif // QT_NO_SHAREDMEMORY diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile_p.h index 4beb53fcd4..61990d1ca3 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmemfile_p.h @@ -14,8 +14,8 @@ #ifndef QT_NO_SHAREDMEMORY -/** - * @internal +/*! + * \internal * Simple QIODevice for QSharedMemory to keep ksycoca cache in memory only once * The first call to open() loads the file into a shm segment. Every * subsequent call only attaches to this segment. When the file content changed, @@ -28,46 +28,46 @@ class KMemFile : public QIODevice { Q_OBJECT public: - /** + /*! * ctor * - * @param filename the file to load into memory - * @param parent our parent + * \a filename the file to load into memory + * \a parent our parent */ explicit KMemFile(const QString &filename, QObject *parent = nullptr); - /** + /*! * dtor */ ~KMemFile() override; - /** + /*! * closes the KMemFile * - * @reimp + * */ void close() override; - /** + /*! * As KMemFile is a random access device, it returns false * - * @reimp + * */ bool isSequential() const override; - /** - * @reimp - * @param mode only QIODevice::ReadOnly is accepted + /*! + * + * \a mode only QIODevice::ReadOnly is accepted */ bool open(OpenMode mode) override; - /** + /*! * Sets the current read/write position to pos - * @reimp - * @param pos the new read/write position + * + * \a pos the new read/write position */ bool seek(qint64 pos) override; - /** + /*! * Returns the size of the file - * @reimp + * */ qint64 size() const override; - /** + /*! * This static function updates the internal information about the file * loaded into shared memory. The next time the file is opened, the file is * reread from the file system. @@ -75,9 +75,9 @@ public: static void fileContentsChanged(const QString &filename); protected: - /** @reimp */ + /*! */ qint64 readData(char *data, qint64 maxSize) override; - /** @reimp */ + /*! */ qint64 writeData(const char *data, qint64 maxSize) override; private: diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations.cpp index c79c12c3ce..327b5c969d 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations.cpp @@ -106,9 +106,8 @@ void KMimeAssociations::parseMimeAppsList(const QString &file, int basePreferenc void KMimeAssociations::parseAddedAssociations(const KConfigGroup &group, const QString &file, int basePreference) { - Q_UNUSED(file) // except in debug statements QMimeDatabase db; - const auto keyList = group.keyList(); + const QStringList keyList = group.keyList(); for (const QString &mimeName : keyList) { const QStringList services = group.readXdgListEntry(mimeName); const QString resolvedMimeName = mimeName.startsWith(QLatin1String("x-scheme-handler/")) ? mimeName : db.mimeTypeForName(mimeName).name(); @@ -132,14 +131,13 @@ void KMimeAssociations::parseAddedAssociations(const KConfigGroup &group, const void KMimeAssociations::parseRemovedAssociations(const KConfigGroup &group, const QString &file) { - Q_UNUSED(file) // except in debug statements - const auto keyList = group.keyList(); + const QStringList keyList = group.keyList(); for (const QString &mime : keyList) { const QStringList services = group.readXdgListEntry(mime); for (const QString &service : services) { KService::Ptr pService = m_serviceFactory->findServiceByStorageId(service); if (!pService) { - // qDebug() << file << "specifies unknown service" << service << "in" << group.name(); + qDebug(SYCOCA) << file << "specifies unknown service" << service << "in" << group.name(); } else { // qDebug() << "removing mime" << mime << "from service" << pService.data() << pService->entryPath(); m_offerHash.removeServiceOffer(mime, pService); diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations_p.h index c83cc33c2e..9e382a229b 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/kmimeassociations_p.h @@ -49,10 +49,12 @@ private: QHash m_serviceTypeData; }; -/** +/*! * Parse mimeapps.list files and: * - modify MIME type associations in the relevant services (using KServiceFactory) * - remember preference order specified by user + * + * \internal */ class KMimeAssociations { diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.cpp index 981342e6b9..06c5d9b0a2 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.cpp @@ -41,14 +41,14 @@ #include #endif -/** +/* * Sycoca file version number. * If the existing file is outdated, it will not get read * but instead we'll regenerate a new one. * However running apps should still be able to read it, so * only add to the data, never remove/modify. */ -#define KSYCOCA_VERSION 306 +#define KSYCOCA_VERSION 307 #if HAVE_MADVISE || HAVE_MMAP #include // This #include was checked when looking for posix_madvise @@ -320,7 +320,12 @@ void KSycocaPrivate::slotDatabaseChanged() m_databasePath = findDatabase(); // Now notify applications - Q_EMIT q->databaseChanged(); + QMetaObject::invokeMethod(q, + &KSycoca::databaseChanged, + // Guard against recursive call chains caused by database updates. + // Because of the self-healing nature of KSycoca we must absolutely never find ourselves in a recursive call chain + // where one database change causes another database change (for example because there was an intermediate file change). + Qt::QueuedConnection); } } @@ -659,7 +664,7 @@ bool KSycocaPrivate::needsRebuild() // ensure files are ordered so next comparison works files.sort(); // to cover cases when extra files were added - return extraFiles.keys() != files; + return extraFiles.keys() != files; // clazy:exclude=container-anti-pattern } bool KSycocaPrivate::buildSycoca() @@ -676,7 +681,12 @@ bool KSycocaPrivate::buildSycoca() qCDebug(SYCOCA) << "Still no database..."; return false; } - Q_EMIT q->databaseChanged(); + QMetaObject::invokeMethod(q, + &KSycoca::databaseChanged, + // Guard against recursive call chains caused by database updates. + // Because of the self-healing nature of KSycoca we must absolutely never find ourselves in a recursive call chain + // where one database change causes another database change (for example because there was an intermediate file change). + Qt::QueuedConnection); return true; } diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.h index bf637a6cca..67ed4ce480 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca.h @@ -21,14 +21,19 @@ class KSycocaFactory; class KSycocaFactoryList; class KSycocaPrivate; -/** +/*! + * \macro KBUILDSYCOCA_EXENAME + * \relates KSycoca + * * Executable name of the kbuildsycoca program */ #define KBUILDSYCOCA_EXENAME "kbuildsycoca6" -/** - * @internal - * Read-only SYstem COnfiguration CAche +/*! + * \class KSycoca + * \inmodule KService + * + * \brief Read-only SYstem COnfiguration CAche. */ class KSERVICE_EXPORT KSycoca : public QObject { @@ -36,50 +41,48 @@ class KSERVICE_EXPORT KSycoca : public QObject // Q_CLASSINFO("D-Bus Interface", "org.kde.KSycoca") protected: - /** - * @internal + /*! + * \internal * Building database */ explicit KSycoca(bool /* buildDatabase */); public: - /** - * Read-only database - */ KSycoca(); - /** + /*! * Get or create the only instance of KSycoca (read-only) */ static KSycoca *self(); ~KSycoca() override; - /** - * @return the compiled-in version, i.e. the one used when writing a new ksycoca + /*! + * Returns the compiled-in version, i.e. the one used when writing a new ksycoca */ static int version(); - /** - * @return true if the ksycoca database is available + /*! + * Returns \c true if the ksycoca database is available + * * This is usually the case, except if KDE isn't installed yet, * or before kded is started. */ static bool isAvailable(); - /** - * @internal - called by factories in read-only mode + /*! + * \internal - called by factories in read-only mode * This is how factories get a stream to an entry */ QDataStream *findEntry(int offset, KSycocaType &type); // KF6: make it private - /** - * @internal - called by factories in read-only mode + /*! + * \internal - called by factories in read-only mode * Returns stream(), but positioned for reading this factory, 0 on error. */ QDataStream *findFactory(KSycocaFactoryId id); // KF6: make it private - /** - * @internal - returns absolute file path of the database + /*! + * \internal - returns absolute file path of the database * * For the global database type, the database is searched under * the 'share/ksycoca' install path. @@ -94,25 +97,26 @@ public: */ static QString absoluteFilePath(); - /** - * @internal - returns all directories with information + /*! + * \internal - returns all directories with information * stored inside sycoca. */ QStringList allResourceDirs(); // KF6: make it private - /** - * @internal - add a factory + /*! + * \internal - add a factory */ void addFactory(KSycocaFactory *); // KF6: make it private - /** - * @internal + /*! + * \internal * @return true if building (i.e. if a KBuildSycoca); */ virtual bool isBuilding(); - /** + /*! * Disables automatic rebuilding of the cache on service file changes. + * * Be extremely careful when using this. Only threads that definitely have no use for * automatic reloading should use this. Specifically shared runner threads (as seen in * the threadweaver framework) can avoid claiming persistent resources this way @@ -120,14 +124,15 @@ public: */ static void disableAutoRebuild(); - /** + /*! * A read error occurs. - * @internal + * \internal */ static void flagError(); - /** + /*! * Ensures the ksycoca database is up to date. + * * If the database was modified by another process, close it, so the next use reopens it. * If the desktop files have been modified more recently than the database, update it. * @@ -143,21 +148,22 @@ public: * * KBuildSycocaProgressDialog can also be used instead of this method, in GUI apps. * - * @since 5.15 + * \since 5.15 */ void ensureCacheValid(); // Warning for kservice code: this can delete all the factories. - /** + /*! * Sets up a minimal applications.menu file in the appropriate location. + * * This is useful when writing unit tests that interact with KService. * * You should call QStandardPaths::setTestModeEnabled(true) before calling this. * - * @since 6.0 + * \since 6.0 */ static void setupTestMenu(); - /** + /*! * Connect to this to get notified when the database changes. * * Example: after creating a .desktop file in KOpenWithDialog, it @@ -169,10 +175,10 @@ public: Q_SIGNAL void databaseChanged(); protected: - // @internal used by kbuildsycoca + // \internal used by kbuildsycoca KSycocaFactoryList *factories(); - // @internal used by factories and kbuildsycoca + // \internal used by factories and kbuildsycoca QDataStream *&stream(); friend class KSycocaFactory; friend class KSycocaDict; @@ -180,9 +186,9 @@ protected: void connectNotify(const QMetaMethod &signal) override; private: - /** + /*! * Clear all caches related to ksycoca contents. - * @internal only used by kded and kbuildsycoca. + * \internal only used by kded and kbuildsycoca. */ static void clearCaches(); diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca_p.h index 0a94d99052..e514226083 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycoca_p.h @@ -42,7 +42,7 @@ struct KSycocaHeader { QDataStream &operator>>(QDataStream &in, KSycocaHeader &h); -/** +/*! * \internal * Exported for unittests */ @@ -69,17 +69,17 @@ public: void setStrategyFromString(const QString &strategy); bool tryMmap(); - /** + /*! * Check if the on-disk cache needs to be rebuilt, and do it then. */ void checkDirectories(); - /** + /*! * Check if the on-disk cache needs to be rebuilt, and return true */ bool needsRebuild(); - /** + /*! * Recreate the cache and reopen the database */ bool buildSycoca(); diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict.cpp index c142f19ba9..a4bbb63f0d 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict.cpp @@ -17,6 +17,8 @@ namespace { +static const uint s_hashBitMask = 0x3fffffff; + struct string_entry { string_entry(const QString &_key, const KSycocaEntry::Ptr &_payload) : hash(0) @@ -219,12 +221,12 @@ uint KSycocaDictPrivate::hashKey(const QString &key) const } else if (pos < 0) { pos = -pos; if (pos < len) { - h = ((h * 13) + (key[len - pos].cell() % 29)) & 0x3ffffff; + h = ((h * 13) + (key[len - pos].cell() % 29)) & s_hashBitMask; } } else { pos = pos - 1; if (pos < len) { - h = ((h * 13) + (key[pos].cell() % 29)) & 0x3ffffff; + h = ((h * 13) + (key[pos].cell() % 29)) & s_hashBitMask; } } } @@ -262,7 +264,7 @@ static int calcDiversity(std::vector> *stringlist, for (const auto &entryPtr : *stringlist) { const int rpos = entryPtr->length - pos; if (rpos > 0) { - const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & 0x3ffffff; + const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & s_hashBitMask; matrix.setBit(hash % sz, true); } // if (++numItem == s_maxItems) @@ -272,7 +274,7 @@ static int calcDiversity(std::vector> *stringlist, pos = inPos - 1; for (const auto &entryPtr : *stringlist) { if (pos < entryPtr->length) { - const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & 0x3ffffff; + const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & s_hashBitMask; matrix.setBit(hash % sz, true); } // if (++numItem == s_maxItems) @@ -295,14 +297,14 @@ static void addDiversity(std::vector> *stringlist, for (auto &entryPtr : *stringlist) { const int rpos = entryPtr->length - pos; if (rpos > 0) { - entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & 0x3fffffff; + entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & s_hashBitMask; } } } else { pos = pos - 1; for (auto &entryPtr : *stringlist) { if (pos < entryPtr->length) { - entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & 0x3fffffff; + entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & s_hashBitMask; } } } diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict_p.h index cb0ce91491..07bca8bdde 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocadict_p.h @@ -20,8 +20,8 @@ class KSycocaDictPrivate; class QString; class QDataStream; -/** - * @internal +/*! + * \internal * Hash table implementation for the sycoca database file * * Only exported for the unit test @@ -29,18 +29,18 @@ class QDataStream; class KSERVICE_EXPORT KSycocaDict // krazy:exclude=dpointer (not const because it gets deleted by clear()) { public: - /** + /*! * Create an empty dict, for building the database */ KSycocaDict(); - /** + /*! * Create a dict from an existing database */ KSycocaDict(QDataStream *str, int offset); ~KSycocaDict(); - /** + /*! * Adds a 'payload' to the dictionary with key 'key'. * * 'payload' should have a valid offset by the time @@ -48,14 +48,14 @@ public: **/ void add(const QString &key, const KSycocaEntry::Ptr &payload); - /** + /*! * Removes the 'payload' from the dictionary with key 'key'. * * Not very fast, use with care O(N) **/ void remove(const QString &key); - /** + /*! * Looks up an entry identified by 'key'. * * If 0 is returned, no matching entry exists. @@ -69,7 +69,7 @@ public: */ int find_string(const QString &key) const; - /** + /*! * Looks up all entries identified by 'key'. * This is useful when the dict is used as a multi-hash. * @@ -83,21 +83,21 @@ public: */ QList findMultiString(const QString &key) const; - /** + /*! * The number of entries in the dictionary. * * Only valid when building the database. */ uint count() const; - /** + /*! * Reset the dictionary. * * Only valid when building the database. */ void clear(); - /** + /*! * Save the dictionary to the stream * A reasonable fast hash algorithm will be created. * diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocaentry.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocaentry.h index 659129aa9d..b0ab9709b1 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocaentry.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocaentry.h @@ -20,14 +20,16 @@ class KSycocaEntryPrivate; -/** - * Base class for all Sycoca entries. +/*! + * \class KSycocaEntry + * \inmodule KService + * + * \brief Base class for all Sycoca entries. * * You can't create an instance of KSycocaEntry, but it provides * the common functionality for servicetypes and services. * - * @internal - * @see http://techbase.kde.org/Development/Architecture/KDE3/System_Configuration_Cache + * \sa http://techbase.kde.org/Development/Architecture/KDE3/System_Configuration_Cache */ class KSERVICE_EXPORT KSycocaEntry : public QSharedData { @@ -39,60 +41,61 @@ public: virtual ~KSycocaEntry(); - /** - * Returns true if this sycoca entry is of the given type. + /*! + * Returns true if this sycoca entry is of the given type \a t. */ bool isType(KSycocaType t) const; - /** - * internal + /*! + * \internal */ KSycocaType sycocaType() const; - /** + /*! * A shared data pointer for KSycocaEntry. */ typedef QExplicitlySharedDataPointer Ptr; - /** + /*! * A list of shared data pointers for KSycocaEntry. */ typedef QList List; - /** - * @return the name of this entry + /*! + * Returns the name of this entry */ QString name() const; - /** - * @return the path of this entry + /*! + * Returns the path of this entry * The path can be absolute or relative. * The corresponding factory should know relative to what. */ QString entryPath() const; - /** - * @return the unique ID for this entry + /*! + * Returns the unique ID for this entry + * * In practice, this is storageId() for KService and name() for everything else. * \since 4.2.1 */ QString storageId() const; - /** - * @return true if valid + /*! + * Returns \c true if valid */ bool isValid() const; - /** - * @return true if deleted + /*! + * Returns \c true if deleted */ bool isDeleted() const; - /** + /*! * Sets whether or not this service is deleted */ void setDeleted(bool deleted); - /** - * @returns true, if this is a separator + /*! + * Returns \c true, if this is a separator */ bool isSeparator() const; @@ -109,9 +112,9 @@ private: friend class KSycocaDict; friend class KSycocaDictTest; - /** - * @internal - * @return the position of the entry in the sycoca file + /*! + * \internal + * Returns the position of the entry in the sycoca file */ KSERVICE_NO_EXPORT int offset() const; diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory.cpp index 0100226bb2..7bb0d4826c 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory.cpp @@ -34,27 +34,42 @@ public: int m_beginEntryOffset = 0; int m_endEntryOffset = 0; KSycocaDict *m_sycocaDict = nullptr; + // Used to avoid crashes when the factory failed to locate an actual data stream. + // Mind that we need a backing buffer since callers also tap into the stream's QIODevice. + QByteArray m_fallbackBuffer; + QDataStream m_fallbackStream{m_fallbackBuffer}; }; KSycocaFactory::KSycocaFactory(KSycocaFactoryId factory_id, KSycoca *sycoca) : m_sycoca(sycoca) , d(new KSycocaFactoryPrivate) { - if (!m_sycoca->isBuilding() && (m_str = m_sycoca->findFactory(factory_id))) { - // Read position of index tables.... - qint32 i; - (*m_str) >> i; - d->m_sycocaDictOffset = i; - (*m_str) >> i; - d->m_beginEntryOffset = i; - (*m_str) >> i; - d->m_endEntryOffset = i; + if (!m_sycoca->isBuilding()) { + m_str = m_sycoca->findFactory(factory_id); + if (m_str) { + // Read position of index tables.... + qint32 i; + (*m_str) >> i; + d->m_sycocaDictOffset = i; + (*m_str) >> i; + d->m_beginEntryOffset = i; + (*m_str) >> i; + d->m_endEntryOffset = i; - QDataStream *str = stream(); - qint64 saveOffset = str->device()->pos(); - // Init index tables - d->m_sycocaDict = new KSycocaDict(str, d->m_sycocaDictOffset); - saveOffset = str->device()->seek(saveOffset); + QDataStream *str = stream(); + qint64 saveOffset = str->device()->pos(); + // Init index tables + d->m_sycocaDict = new KSycocaDict(str, d->m_sycocaDictOffset); + saveOffset = str->device()->seek(saveOffset); + } else { + qWarning() << "Could not find factory with id" << int(factory_id) + << "in sycoca database, you must run kbuildsycoca first! Creating a fake stream to not crash."; + m_str = &d->m_fallbackStream; + m_entryDict = new KSycocaEntryDict; + d->m_sycocaDict = new KSycocaDict; + d->m_beginEntryOffset = 0; + d->m_endEntryOffset = 0; + } } else { // We are in kbuildsycoca -- build new database! m_entryDict = new KSycocaEntryDict; @@ -186,8 +201,8 @@ KSycocaEntry::List KSycocaFactory::allEntries() const qint32 entryCount; (*str) >> entryCount; - if (entryCount > 8192) { - qCWarning(SYCOCA) << QThread::currentThread() << "error detected in factory" << this; + if (entryCount < 0 || entryCount > 8192) { // mind that new accepts a size_t (unsigned) but we are dealing with an int here + qCWarning(SYCOCA) << QThread::currentThread() << "error detected in factory" << this << entryCount; KSycoca::flagError(); return list; } diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory_p.h index efc15b2a8f..7729cd1197 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocafactory_p.h @@ -26,8 +26,8 @@ class QHash; typedef QHash KSycocaEntryDict; class KSycocaFactoryPrivate; -/** - * @internal +/*! + * \internal * Base class for sycoca factories * Exported for unit tests */ @@ -37,7 +37,7 @@ public: virtual KSycocaFactoryId factoryId() const = 0; protected: // virtual class - /** + /*! * Create a factory which can be used to lookup from/create a database * (depending on KSycoca::isBuilding()) */ @@ -46,47 +46,47 @@ protected: // virtual class public: virtual ~KSycocaFactory(); - /** - * @return the position of the factory in the sycoca file + /*! + * Returns the position of the factory in the sycoca file */ int offset() const; - /** - * @return the dict, for special use by KBuildSycoca + /*! + * Returns the dict, for special use by KBuildSycoca */ KSycocaEntryDict *entryDict() { return m_entryDict; } - /** + /*! * Construct an entry from a config file. * To be implemented in the real factories. */ virtual KSycocaEntry *createEntry(const QString &file) const = 0; - /** + /*! * Add an entry */ virtual void addEntry(const KSycocaEntry::Ptr &newEntry); - /** + /*! * Remove all entries with the given name. * Not very fast (O(N)), use with care. */ void removeEntry(const QString &entryName); - /** + /*! * Read an entry from the database */ virtual KSycocaEntry *createEntry(int offset) const = 0; - /** + /*! * Get a list of all entries from the database. */ virtual KSycocaEntry::List allEntries() const; - /** + /*! * Saves all entries it maintains as well as index files * for these entries to the stream 'str'. * @@ -99,7 +99,7 @@ public: */ virtual void save(QDataStream &str); - /** + /*! * Writes out a header to the stream 'str'. * The baseclass positions the stream correctly. * @@ -108,19 +108,19 @@ public: */ virtual void saveHeader(QDataStream &str); - /** - * @return the resources for which this factory is responsible. - * @internal to kbuildsycoca + /*! + * Returns the resources for which this factory is responsible. + * \internal to kbuildsycoca */ const KSycocaResourceList &resourceList() const; - /** - * @return the sycoca dict, for factories to find entries by name. + /*! + * Returns the sycoca dict, for factories to find entries by name. */ const KSycocaDict *sycocaDict() const; - /** - * @return true if the factory is completely empty - no entries defined + /*! + * Returns true if the factory is completely empty - no entries defined */ bool isEmpty() const; @@ -135,8 +135,8 @@ protected: KSycocaResourceList m_resourceList; KSycocaEntryDict *m_entryDict = nullptr; - /** - * Returns all directories for the given @p subdir of GenericDataLocation. + /*! + * Returns all directories for the given subdir of GenericDataLocation. * Helper function for AnyFactory::resourceDirs(). */ static QStringList allDirectories(const QString &subdir); @@ -147,15 +147,15 @@ private: std::unique_ptr const d; protected: - /** Virtual hook, used to add new "virtual" functions while maintaining + /*! Virtual hook, used to add new "virtual" functions while maintaining binary compatibility. Unused in this class. */ virtual void virtual_hook(int id, void *data); }; -/** +/*! * This, instead of a typedef, allows to declare "class ..." in header files. - * @internal + * \internal */ class KSycocaFactoryList : public QList // krazy:exclude=dpointer (acts as a typedef) { diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocatype.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocatype.h index 0ae206b897..b69720c81f 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocatype.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/ksycocatype.h @@ -9,8 +9,7 @@ #ifndef KSYCOCATYPE_H #define KSYCOCATYPE_H -/** - * \relates KSycocaEntry +/* * A KSycocaType is a code (out of the KSycocaType enum) assigned to each * class type derived from KSycocaEntry . * To use it, call the macro K_SYCOCATYPE( your_typecode, parent_class ) @@ -29,8 +28,7 @@ enum KSycocaType { KST_KCustom = 1000, }; -/** - * \relates KSycocaFactory +/* * A KSycocaFactoryId is a code (out of the KSycocaFactoryId enum) * assigned to each class type derived from KSycocaFactory. * To use it, call the macro K_SYCOCAFACTORY( your_factory_id ) diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu.cpp b/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu.cpp index 123139113f..a2cf05884c 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu.cpp +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu.cpp @@ -1321,10 +1321,13 @@ QStringList VFolderMenu::parseLayoutNode(const QDomElement &docElem) const } if (!mergeTagExists) { + if (!layout.isEmpty()) { + qCWarning(SYCOCA) << "The menu spec file (" << m_docInfo.path + << ") contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix it."; + } + layout.append(QStringLiteral(":M")); layout.append(QStringLiteral(":F")); - qCWarning(SYCOCA) << "The menu spec file (" << m_docInfo.path - << ") contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix it."; } return layout; } diff --git a/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu_p.h b/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu_p.h index fc90455247..67662ff8a8 100644 --- a/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu_p.h +++ b/local/recipes/kde/kf6-kservice/source/src/sycoca/vfolder_menu_p.h @@ -57,16 +57,16 @@ public: VFolderMenu(KServiceFactory *serviceFactory, KBuildSycocaInterface *kbuildsycocaInterface); ~VFolderMenu() override; - /** + /*! * Parses VFolder menu definition and generates a menu layout. * The newService signals is used as callback to load * a specific service description. * - * @param file Menu file to load + * \a file Menu file to load */ SubMenu *parseMenu(const QString &file); - /** + /*! * Returns a list of all directories involved in the last call to * parseMenu(). * @@ -75,7 +75,7 @@ public: */ QStringList allDirectories(); - /** + /*! * Debug function to enable tracking of what happens with a specific * menu item id */ @@ -142,37 +142,37 @@ public: QString m_trackId; private: - /** + /*! * Lookup application by relative path */ KService::Ptr findApplication(const QString &relPath); - /** + /*! * Lookup applications by category */ QList findCategory(const QString &category); - /** + /*! * Add new application */ void addApplication(const QString &id, KService::Ptr service); - /** + /*! * Build application indices */ void buildApplicationIndex(bool unusedOnly); - /** + /*! * Create a AppsInfo frame for current menu */ void createAppsInfo(); - /** + /*! * Load additional AppsInfo frame for current menu */ void loadAppsInfo(); - /** + /*! * Unload additional AppsInfo frame for current menu */ void unloadAppsInfo(); @@ -182,31 +182,31 @@ private: void mergeFile(QDomElement &docElem, const QDomNode &mergeHere); void loadMenu(const QString &filename); - /** + /*! * Merge the items2 set into the items1 set */ void includeItems(QHash &items1, const QHash &items2); - /** + /*! * Remove all items from the items1 set that aren't also in the items2 set */ void matchItems(QHash &items1, const QHash &items2); - /** + /*! * Remove all items in the items2 set from the items1 set */ void excludeItems(QHash &items1, const QHash &items2); - /** + /*! * Search the parentMenu tree for the menu menuName and takes it * out. * * This function returns a pointer to the menu if it was found - * or @c nullptr if it was not found. + * or \c nullptr if it was not found. */ SubMenu *takeSubMenu(SubMenu *parentMenu, const QString &menuName); - /** + /*! * Insert the menu newMenu with name menuName into the parentMenu. * If such menu already exist the result is merged, if any additional * submenus are required they are created. @@ -217,33 +217,33 @@ private: */ void insertSubMenu(VFolderMenu::SubMenu *parentMenu, const QString &menuName, VFolderMenu::SubMenu *newMenu, bool reversePriority = false); - /** + /*! * Merge menu2 and its submenus into menu1 and its submenus * If reversePriority is false, menu2 has priority over menu1 * If reversePriority is true, menu1 has priority over menu2 */ void mergeMenu(SubMenu *menu1, SubMenu *menu2, bool reversePriority = false); - /** + /*! * Inserts service into the menu using name relative to parentMenu * Any missing sub-menus are created. */ void insertService(SubMenu *parentMenu, const QString &name, KService::Ptr newService); - /** - * Register the directory that @p file is in. - * @see allDirectories() + /*! + * Register the directory that \a file is in. + * \sa allDirectories() */ void registerFile(const QString &file); - /** - * Fill m_usedAppsDict with all applications from @p items + /*! + * Fill m_usedAppsDict with all applications from \a items */ void markUsedApplications(const QHash &items); - /** - * Register @p directory - * @see allDirectories() + /*! + * Register \a directory + * \sa allDirectories() */ void registerDirectory(const QString &directory); diff --git a/local/recipes/kde/kf6-kservice/source/tests/findservice.cpp b/local/recipes/kde/kf6-kservice/source/tests/findservice.cpp index e417fc33f8..4225f71a32 100644 --- a/local/recipes/kde/kf6-kservice/source/tests/findservice.cpp +++ b/local/recipes/kde/kf6-kservice/source/tests/findservice.cpp @@ -35,37 +35,51 @@ int main(int argc, char **argv) QCommandLineOption storageId(QStringList() << QStringLiteral("s") << QStringLiteral("storage-id"), QStringLiteral("Find the service by its storage id")); parser.addOption(storageId); + QCommandLineOption all(QStringLiteral("all"), QStringLiteral("List all services")); + parser.addOption(all); + parser.process(app); - if (parser.positionalArguments().count() != 1) { + if (parser.positionalArguments().count() != 1 && !parser.isSet(all)) { QTextStream(stderr) << "Exactly one identifier required\n"; parser.showHelp(1); } - const QString id = parser.positionalArguments().at(0); - - KService::Ptr service; - if (parser.isSet(menuId)) { - service = KService::serviceByMenuId(id); - } else if (parser.isSet(storageId)) { - service = KService::serviceByStorageId(id); - } else if (parser.isSet(desktopPath)) { - service = KService::serviceByDesktopPath(id); - } else { - service = KService::serviceByDesktopName(id); - } - - if (service) { + auto printService = [](const KService::Ptr &service) { QTextStream(stdout) << "Found \"" << service->entryPath() << "\"\n"; QTextStream(stdout) << "Desktop name: \"" << service->desktopEntryName() << "\"\n"; QTextStream(stdout) << "Menu ID: \"" << service->menuId() << "\"\n"; QTextStream(stdout) << "Storage ID: \"" << service->storageId() << "\"\n"; QTextStream(stdout) << "MIME types: \"" << service->mimeTypes().join(QLatin1Char(' ')) << "\"\n"; QTextStream(stdout) << "Supported protocols: \"" << service->supportedProtocols().join(QLatin1Char(' ')) << "\"\n"; + }; + if (parser.isSet(all)) { + const auto services = KService::allServices(); + for (const auto &service : services) { + printService(service); + QTextStream(stdout) << "\n"; + } } else { - QTextStream(stdout) << "Not found\n"; - return 2; + const QString id = parser.positionalArguments().at(0); + + KService::Ptr service; + if (parser.isSet(menuId)) { + service = KService::serviceByMenuId(id); + } else if (parser.isSet(storageId)) { + service = KService::serviceByStorageId(id); + } else if (parser.isSet(desktopPath)) { + service = KService::serviceByDesktopPath(id); + } else { + service = KService::serviceByDesktopName(id); + } + + if (service) { + printService(service); + } else { + QTextStream(stdout) << "Not found\n"; + return 2; + } } return 0; diff --git a/local/recipes/kde/kirigami/source.tar b/local/recipes/kde/kirigami/source.tar index 6eff8d6b7b..f230dcaa4b 100644 Binary files a/local/recipes/kde/kirigami/source.tar and b/local/recipes/kde/kirigami/source.tar differ diff --git a/local/recipes/kde/kirigami/source/.gitlab-ci.yml b/local/recipes/kde/kirigami/source/.gitlab-ci.yml index 34e441e570..d0196bef1e 100644 --- a/local/recipes/kde/kirigami/source/.gitlab-ci.yml +++ b/local/recipes/kde/kirigami/source/.gitlab-ci.yml @@ -5,8 +5,12 @@ include: - project: sysadmin/ci-utilities file: - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/linux-qt6-next.yml - /gitlab-templates/linux-qt6-static.yml - /gitlab-templates/android-qt6.yml + - /gitlab-templates/cppcheck.yml - /gitlab-templates/windows-qt6.yml - /gitlab-templates/freebsd-qt6.yml - - /gitlab-templates/alpine-qt6.yml + # - /gitlab-templates/alpine-qt6.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml diff --git a/local/recipes/kde/kirigami/source/.kde-ci.yml b/local/recipes/kde/kirigami/source/.kde-ci.yml index adafe82dca..7d815b9153 100644 --- a/local/recipes/kde/kirigami/source/.kde-ci.yml +++ b/local/recipes/kde/kirigami/source/.kde-ci.yml @@ -1,10 +1,15 @@ Dependencies: -- 'on': ['Linux', 'FreeBSD', 'Windows', 'Android', 'iOS'] - 'require': + - 'on': ['Linux', 'FreeBSD', 'Windows', 'Android', 'iOS'] + 'require': 'frameworks/extra-cmake-modules': '@same' Options: - test-before-installing: True - require-passing-tests-on: [ 'Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6' ] - cmake-options: -DBUILD_EXAMPLES=ON - cppcheck-ignore-files: ['templates/'] + test-before-installing: True + tests-run-in-parallel: True + require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows'] + cmake-options: -DBUILD_EXAMPLES=ON + cppcheck-ignore-files: ['templates/'] + cppcheck-arguments: + - '--enable=warning,style,performance' + - '--suppress-xml=cppcheck-suppressions.xml' + run-qmllint: true diff --git a/local/recipes/kde/kirigami/source/.redbear-src-version b/local/recipes/kde/kirigami/source/.redbear-src-version new file mode 100644 index 0000000000..2ece8e17b5 --- /dev/null +++ b/local/recipes/kde/kirigami/source/.redbear-src-version @@ -0,0 +1 @@ +6.28.0 diff --git a/local/recipes/kde/kirigami/source/CMakeLists.txt b/local/recipes/kde/kirigami/source/CMakeLists.txt index 475db47652..11764f9d78 100644 --- a/local/recipes/kde/kirigami/source/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/CMakeLists.txt @@ -1,11 +1,11 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.29) -set(KF_VERSION "6.10.0") # handled by release scripts -set(KF_DEP_VERSION "6.10.0") # handled by release scripts +set(KF_VERSION "6.28.0") # handled by release scripts +set(KF_DEP_VERSION "6.28.0") # handled by release scripts project(kirigami2 VERSION ${KF_VERSION}) -set(REQUIRED_QT_VERSION 6.6.0) +set(REQUIRED_QT_VERSION 6.9.0) ################# Disallow in-source build ################# @@ -20,7 +20,7 @@ option(UBUNTU_TOUCH "Build for Ubuntu Touch" OFF) if(DEFINED STATIC_LIBRARY) message(FATAL_ERROR "Use the BUILD_SHARED_LIBS=OFF option to build a static library, STATIC_LIBRARY is no longer a supported option") endif() -find_package(ECM 6.10.0 REQUIRED NO_MODULE) +find_package(ECM 6.28.0 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH}) if (NOT ${BUILD_SHARED_LIBS}) @@ -31,7 +31,12 @@ endif() include(FeatureSummary) include(KDEInstallDirs) -find_package(Qt6 ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE COMPONENTS Core Quick Gui GuiPrivate Network Svg QuickControls2 Concurrent ShaderTools) +find_package(Qt6 ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE COMPONENTS Core Quick Gui Svg QuickControls2 Concurrent ShaderTools) + +if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0") + find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) +endif() + if (BUILD_TESTING) find_package(Qt6QuickTest ${REQUIRED_QT_VERSION} CONFIG QUIET) endif() @@ -52,6 +57,8 @@ if(NOT BUILD_SHARED_LIBS) add_definitions(-DQT_STATICPLUGIN=1) endif() +qt_policy(SET QTP0005 NEW) + ################# set KDE specific information ################# # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") @@ -66,17 +73,14 @@ include(KDEInstallDirs) include(KDECMakeSettings) include(KDEGitCommitHooks) include(ECMQtDeclareLoggingCategory) -include(ECMAddQch) include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(KDEPackageAppTemplates) include(ECMQmlModule) include(ECMDeprecationSettings) +include(ECMGenerateQDoc) set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF6Kirigami") -option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) -add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") - ecm_setup_version(PROJECT VARIABLE_PREFIX KIRIGAMI VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kirigami_version.h" @@ -122,8 +126,8 @@ if (UBUNTU_TOUCH) endif() ecm_set_disabled_deprecation_versions( - QT 5.15.2 - KF 5.95 + QT 6.2 + KF 6.27.0 ) if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") @@ -180,6 +184,6 @@ install( include(ECMFeatureSummary) ecm_feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -# configure_file(qmllint.ini.in -- disabled ${CMAKE_SOURCE_DIR}/.qmllint.ini) +configure_file(qmllint.ini.in ${CMAKE_SOURCE_DIR}/.qmllint.ini) -# kde_configure_git_pre_commit_hook -- disabled(CHECKS CLANG_FORMAT) +kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT) diff --git a/local/recipes/kde/kirigami/source/KF6KirigamiConfig.cmake.in b/local/recipes/kde/kirigami/source/KF6KirigamiConfig.cmake.in index eae80e49ac..9685207892 100644 --- a/local/recipes/kde/kirigami/source/KF6KirigamiConfig.cmake.in +++ b/local/recipes/kde/kirigami/source/KF6KirigamiConfig.cmake.in @@ -22,4 +22,3 @@ endif() set(Kirigami_INSTALL_PREFIX "@PACKAGE_CMAKE_INSTALL_PREFIX@") include("${CMAKE_CURRENT_LIST_DIR}/KF6KirigamiMacros.cmake") -@PACKAGE_INCLUDE_QCHTARGETS@ diff --git a/local/recipes/kde/kirigami/source/KF6KirigamiMacros.cmake b/local/recipes/kde/kirigami/source/KF6KirigamiMacros.cmake index a7569172a5..5acd18af34 100644 --- a/local/recipes/kde/kirigami/source/KF6KirigamiMacros.cmake +++ b/local/recipes/kde/kirigami/source/KF6KirigamiMacros.cmake @@ -1,6 +1,9 @@ -include(CMakeParseArguments) -include(ExternalProject) +# SPDX-FileCopyrightText: 2016 Marco Martin +# SPDX-FileCopyrightText: 2023 Volker Krause +# SPDX-FileCopyrightText: 2025 Carl Schwan +# SPDX-License-Identifier: BSD-2-Clause +include(ExternalProject) function(kirigami_package_breeze_icons) set(_multiValueArgs ICONS) @@ -10,6 +13,10 @@ function(kirigami_package_breeze_icons) message(FATAL_ERROR "No ICONS argument given to kirigami_package_breeze_icons") endif() + if(NOT ANDROID) + return() # not needed on other platforms + endif() + #include icons used by Kirigami components themselves set(ARG_ICONS ${ARG_ICONS} application-exit @@ -37,11 +44,15 @@ function(kirigami_package_breeze_icons) handle-sort mail-sent open-menu-symbolic + open-link-symbolic + open-link-symbolic-rtl overflow-menu-left overflow-menu-right overflow-menu password-show-off password-show-on + process-working-symbolic + search tools-report-bug user view-left-new @@ -50,47 +61,52 @@ function(kirigami_package_breeze_icons) view-right-close ) - function(_find_breeze_icon icon varName) - #HACKY - SET(path "") - file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/48/${icon}.svg ) - - #search in other sizes as well - if (path STREQUAL "") - file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/32/${icon}.svg ) + function(_find_breeze_icon icon) + foreach(_size 48 32 22 16 12) + SET(path "") + file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/${_size}/${icon}.svg) if (path STREQUAL "") - file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/22/${icon}.svg ) - if (path STREQUAL "") - file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/16/${icon}.svg ) - endif() + continue() endif() - endif() - if (path STREQUAL "") - file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/symbolic/${icon}.svg ) - endif() - if (path STREQUAL "") - return() - endif() - list(LENGTH path _count_paths) - if (_count_paths GREATER 1) - message(WARNING "Found more than one version of '${icon}': ${path}") - endif() - list(GET path 0 path) - get_filename_component(path "${path}" REALPATH) + list(LENGTH path _count_paths) + if (_count_paths GREATER 1) + message(WARNING "Found more than one version of '${icon}': ${path}") + endif() + list(GET path 0 path) - SET(${varName} ${path} PARENT_SCOPE) + get_filename_component(realpath "${path}" REALPATH) + if (EXISTS ${realpath}) + install(FILES ${realpath} DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/kirigami/breeze-internal/icons/${_size}) + endif() + + # Create direct symlink if original icon was also a symlink + # We can't reuse the existing symlink because often it's a chain + # of symlink and we can only get the final destination. + if (NOT "${realpath}" MATCHES "${path}") + get_filename_component(filename "${realpath}" NAME) + file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${_size}/") + file(CREATE_LINK ${filename} "${CMAKE_CURRENT_BINARY_DIR}/${_size}/${icon}.svg" SYMBOLIC) + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${_size}/${icon}.svg" + DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/kirigami/breeze-internal/icons/${_size}) + endif() + + endforeach() endfunction() if (BREEZEICONS_DIR AND NOT EXISTS ${BREEZEICONS_DIR}) message(FATAL_ERROR "BREEZEICONS_DIR variable does not point to existing dir: \"${BREEZEICONS_DIR}\"") endif() - set(_BREEZEICONS_DIR "${BREEZEICONS_DIR}") + # We need to expand the 'real' path of the root because if it has relative path + # elements or symlinks in it that breaks the symlink test in _find_breeze_icon. + if (BREEZEICONS_DIR) + file(REAL_PATH "${BREEZEICONS_DIR}" _BREEZEICONS_DIR EXPAND_TILDE) + endif() #FIXME: this is a terrible hack if(NOT _BREEZEICONS_DIR) - set(_BREEZEICONS_DIR "${CMAKE_BINARY_DIR}/breeze-icons/src/breeze-icons") + file(REAL_PATH "${CMAKE_BINARY_DIR}/breeze-icons/src/breeze-icons" _BREEZEICONS_DIR EXPAND_TILDE) # replacement for ExternalProject_Add not yet working # first time config? @@ -98,34 +114,14 @@ function(kirigami_package_breeze_icons) find_package(Git) execute_process(COMMAND ${GIT_EXECUTABLE} clone --depth 1 https://invent.kde.org/frameworks/breeze-icons.git ${_BREEZEICONS_DIR}) endif() - - # external projects are only pulled at make time, not configure time - # so this is too late to work with the _find_breeze_icon() method - # _find_breeze_icon() would need to be turned into a target/command - if (FALSE) - ExternalProject_Add( - breeze-icons - PREFIX breeze-icons - GIT_REPOSITORY https://invent.kde.org/frameworks/breeze-icons.git - CONFIGURE_COMMAND "" - BUILD_COMMAND "" - INSTALL_COMMAND "" - LOG_DOWNLOAD ON - ) - endif() endif() message (STATUS "Found external breeze icons:") foreach(_iconName ${ARG_ICONS}) - set(_iconPath "") - _find_breeze_icon(${_iconName} _iconPath) - message (STATUS ${_iconPath}) - if (EXISTS ${_iconPath}) - install(FILES ${_iconPath} DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/kirigami/breeze-internal/icons/ RENAME ${_iconName}.svg) - endif() + _find_breeze_icon(${_iconName}) endforeach() #generate an index.theme that qiconloader can understand - file(WRITE ${CMAKE_BINARY_DIR}/index.theme "[Icon Theme]\nName=Breeze\nDirectories=icons\nFollowsColorScheme=true\n[icons]\nSize=32\nType=Scalable") + file(WRITE ${CMAKE_BINARY_DIR}/index.theme "[Icon Theme]\nName=Breeze\nDirectories=icons/12,icons/16,icons/22,icons/32,icons/48,icons\nFollowsColorScheme=true\n[icons/12]\nSize=12\nType=Fixed\n[icons/16]\nSize=16\nType=Fixed\n[icons/22]\nSize=22\nType=Fixed\n[icons/32]\nSize=32\nType=Fixed\n[icons/48]\nSize=48\nType=Fixed\n[icons]\nSize=32\nType=Scalable\n") install(FILES ${CMAKE_BINARY_DIR}/index.theme DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/kirigami/breeze-internal/) endfunction() diff --git a/local/recipes/kde/kirigami/source/Mainpage.dox b/local/recipes/kde/kirigami/source/Mainpage.dox deleted file mode 100644 index 3b231fdebf..0000000000 --- a/local/recipes/kde/kirigami/source/Mainpage.dox +++ /dev/null @@ -1,216 +0,0 @@ -/* - * This file is part of Kirigami - * SPDX-FileCopyrightText: 2016 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - - -/** \mainpage kirigami - - -\subsection overview Introduction -Kirigami is a set of QtQuick components for building adaptable UIs based on QtQuick Controls 2. - -Its goal is to enable creation of convergent applications that look and feel great on mobile as well as desktop devices and follow the KDE Human Interface Guidelines while being easy to use and not adding many dependencies. - -Kirigami works on a variety of platforms, such as Plasma Mobile, Desktop Linux, Android, MacOS, and Windows. - -It was introduced in KDE Frameworks 5.37 as a Tier-1 KDE Framework. - -\subsection tutorial Tutorial -A tutorial for Kirigami is available on our developer platform. - -It is possible to make short mockups using QtQuick and Kirigami in the QML Online website and briefly test individual QML files using the qml tool. - -A list of additional QML learning resources is available in the Community Wiki. If you are not familiar with QML at all, the QML book should be a good head start. - -If you have any questions about Kirigami, feel free to drop by the Kirigami group on Matrix. - -\subsection components Main Window Components -- \link ApplicationWindow ApplicationWindow \endlink -- \link Action Action \endlink -- \link GlobalDrawer GlobalDrawer \endlink -- \link ContextDrawer ContextDrawer \endlink -- \link OverlayDrawer OverlayDrawer \endlink -- \link Page Page \endlink -- \link ScrollablePage ScrollablePage \endlink -- \link AboutPage AboutPage \endlink -- \link PageRow PageRow \endlink -- \link FormLayout FormLayout \endlink -- \link CardsLayout CardsLayout \endlink -- \link SizeGroup SizeGroup \endlink -- \link Kirigami::Platform::PlatformTheme Theme \endlink -- \link Kirigami::Platform::Units Units \endlink - -\subsection controls Common Kirigami Controls - -- \link Card Card \endlink -- \link org::kde::kirigami::templates::OverlaySheet OverlaySheet \endlink -- \link SwipeListItem SwipeListItem \endlink -- \link Heading Heading \endlink -- \link PlaceholderMessage PlaceholderMessage \endlink -- \link SearchField SearchField \endlink -- \link Dialog Dialog \endlink -- \link NavigationTabBar NavigationTabBar \endlink -- \link Icon Icon \endlink - -\subsection example Minimal Example - -@code -import QtQuick -import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami - -Kirigami.ApplicationWindow { - id: root - - width: 500 - height: 400 - - globalDrawer: Kirigami.GlobalDrawer { - actions: [ - Kirigami.Action { - text: "View" - icon.name: "view-list-icons" - Kirigami.Action { - text: "action 1" - } - Kirigami.Action { - text: "action 2" - } - Kirigami.Action { - text: "action 3" - } - }, - Kirigami.Action { - text: "action 3" - }, - Kirigami.Action { - text: "action 4" - } - ] - } - contextDrawer: Kirigami.ContextDrawer { - id: contextDrawer - } - pageStack.initialPage: mainPageComponent - Component { - id: mainPageComponent - Kirigami.ScrollablePage { - id: page - title: "Hello" - actions { - main: Kirigami.Action { - icon.name: sheet.sheetOpen ? "dialog-cancel" : "document-edit" - onTriggered: { - print("Action button in buttons page clicked"); - sheet.sheetOpen = !sheet.sheetOpen - } - } - left: Kirigami.Action { - icon.name: "go-previous" - onTriggered: { - print("Left action triggered") - } - } - right: Kirigami.Action { - icon.name: "go-next" - onTriggered: { - print("Right action triggered") - } - } - contextualActions: [ - Kirigami.Action { - text:"Action for buttons" - icon.name: "bookmarks" - onTriggered: print("Action 1 clicked") - }, - Kirigami.Action { - text:"Action 2" - icon.name: "folder" - enabled: false - }, - Kirigami.Action { - text: "Action for Sheet" - visible: sheet.sheetOpen - } - ] - } - Kirigami.OverlaySheet { - id: sheet - onSheetOpenChanged: page.actions.main.checked = sheetOpen - QQC2.Label { - wrapMode: Text.WordWrap - text: "Lorem ipsum dolor sit amet" - } - } - //Page contents... - Rectangle { - anchors.fill: parent - color: "lightblue" - } - } - } -} -@endcode - -@image html MinimalExample.webp - -\subsection deployment Deployment -CMake is used for both building Kirigami and projects using it, allowing for several configurations depending on how the deployment needs to be done. - -Kirigami can be built in two ways: both as a module or statically linked to the application, leading to four combinations: - -- Kirigami built as a module with CMake -- Kirigami statically built with CMake (needed to link statically from applications built with CMake) - -The simplest and recommended way to use Kirigami is to just use the packages provided by your Linux distribution, or build it as a module and deploy it together with the main application. - -For example, when building an application on Android with CMake, if Kirigami for Android is built and installed in the same temporary directory before the application, the create-apk step of the application will include the Kirigami files as well in the APK. - -Statically linked Kirigami will be used only on Android, while on desktop systems it will use the version provided by the distribution. Which platforms use the static version and which use the dynamic one can be freely adjusted. - -The application needs to have a folder called "3rdparty" containing clones of two KDE repositories: kirigami and breeze-icons (available at git://anongit.kde.org/kirigami.git and git://anongit.kde.org/breeze-icons.git). - -The main.cpp file should then have something like: - -@code -#include -#include -#ifdef Q_OS_ANDROID -#include "./3rdparty/kirigami/src/kirigamiplugin.h" -#endif - -int main(int argc, char *argv[]) -{ - QGuiApplication app(argc, argv); - - QQmlApplicationEngine engine; - -#ifdef Q_OS_ANDROID - KirigamiPlugin::getInstance().registerTypes(&engine); -#endif - ... -} -@endcode - -@authors -Marco Martin \
        -Sebastian Kuegler \
        -Aleix Pol Gonzalez \
        -Dirk Hohndel \
        - -@maintainers -Marco Martin \ - -@licenses -@lgpl - -*/ - - -// DOXYGEN_SET_RECURSIVE = YES -// DOXYGEN_SET_EXCLUDE_PATTERNS += *_p.h */private/* */examples/* */doc/* */styles/* -// DOXYGEN_SET_PROJECT_NAME = Kirigami -// vim:ts=4:sw=4:expandtab:filetype=doxygen diff --git a/local/recipes/kde/kirigami/source/README.md b/local/recipes/kde/kirigami/source/README.md index d43528f501..5f97f38c2e 100644 --- a/local/recipes/kde/kirigami/source/README.md +++ b/local/recipes/kde/kirigami/source/README.md @@ -6,7 +6,7 @@ QtQuick plugins to build user interfaces following the [KDE Human Interface Guid Kirigami is a set of [QtQuick](https://doc.qt.io/qt-6/qtquick-index.html) components for building adaptable user interfaces based on [QtQuick Controls 2](https://doc.qt.io/qt-6/qtquickcontrols-index.html). Kirigami makes it easy to create applications that look and feel great on [Plasma Mobile](https://plasma-mobile.org/), Desktop Linux, Android, MacOS, and Windows. -The API can be found in the [KDE API Reference website](https://api.kde.org/frameworks/kirigami/html/index.html) and a Kirigami tutorial is available in the [KDE Developer Platform](https://develop.kde.org/docs/getting-started/kirigami/). +The API can be found in the [KDE API Reference website](https://api.kde.org/kirigami-index.html) and a Kirigami tutorial is available in the [KDE Developer Platform](https://develop.kde.org/docs/getting-started/kirigami/). We also provide [Kirigami Gallery](https://invent.kde.org/sdk/kirigami-gallery) to showcase most Kirigami components. @@ -30,7 +30,7 @@ cmake --build build/ cmake --install build/ ``` -Alternatively, we recommend you use [kdesrc-build](https://community.kde.org/Get_Involved/development#Setting_up_the_development_environment) to build extra-cmake-modules and Kirigami together. +Alternatively, we recommend you use [kde-builder](https://develop.kde.org/docs/getting-started/building) to build extra-cmake-modules and Kirigami together. The provided Kirigami example can be built and run with: @@ -89,3 +89,14 @@ cmake --build build/ --target create-apk-$yourapp ``` Note: `-DCMAKE_INSTALL_PREFIX` directory should be the same as where Kirigami was installed, since you need to create an apk package that contains both the Kirigami build and the build of your application. + +# Adding new components + +When adding new components to Kirigami the following requirements must be fulfilled: + +- Must fit the vision of Kirigami +- Must be documented with appropriate API documentation +- Must come with an autotest +- Must come with a corresponding change that adds it to kirigami-gallery +- Must come with one or more changes that makes use of it in an application +- Must be reviewed so that it does not expose unnecessary API and implementation details (e.g. the base component) diff --git a/local/recipes/kde/kirigami/source/autotests/CMakeLists.txt b/local/recipes/kde/kirigami/source/autotests/CMakeLists.txt index 9dce3b0093..c784cf4a6d 100644 --- a/local/recipes/kde/kirigami/source/autotests/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/autotests/CMakeLists.txt @@ -7,6 +7,7 @@ add_executable(qmltest qmltest.cpp actiondata.cpp) qt_add_qml_module(qmltest URI KirigamiTestUtils) target_link_libraries(qmltest PRIVATE Qt6::Qml Qt6::QuickTest Kirigami) if (NOT QT6_IS_SHARED_LIBS_BUILD OR NOT BUILD_SHARED_LIBS) + target_link_libraries(qmltest PRIVATE KirigamiPolyfillplugin) qt6_import_qml_plugins(qmltest) endif() @@ -30,8 +31,14 @@ macro(kirigami_add_tests) endmacro() kirigami_add_tests( + tst_aboutitem.qml + tst_aboutpage.qml + tst_abstractapplicationheader.qml + tst_abstractapplicationitem.qml + tst_abstractapplicationwindow.qml tst_action.qml tst_actiontoolbar.qml + tst_badge.qml tst_card.qml tst_colorutils.qml tst_columnview.qml @@ -53,11 +60,13 @@ kirigami_add_tests( tst_overlayzstacking.qml tst_padding.qml tst_pagerow.qml + tst_pageStackAttached.qml tst_placeholdermessage.qml tst_sceneposition.qml tst_scrollablepage.qml tst_spellcheck.qml tst_theme.qml + tst_titleSubtitleWithActions.qml mobile/tst_pagerow.qml @@ -84,3 +93,11 @@ set_tests_properties( PROPERTIES ENVIRONMENT "QT_QUICK_CONTROLS_MOBILE=1" ) + +set_tests_properties( + tst_navigationtabbar.qml + wheelhandler/tst_scrolling.qml + + PROPERTIES + RUN_SERIAL ON +) diff --git a/local/recipes/kde/kirigami/source/autotests/actiondata.cpp b/local/recipes/kde/kirigami/source/autotests/actiondata.cpp index 0e1726dca0..f78dc74b91 100644 --- a/local/recipes/kde/kirigami/source/autotests/actiondata.cpp +++ b/local/recipes/kde/kirigami/source/autotests/actiondata.cpp @@ -25,3 +25,5 @@ QAction *ActionData::disabledAction() const { return m_disabledAction; } + +#include "moc_actiondata.cpp" diff --git a/local/recipes/kde/kirigami/source/autotests/pagepool/tst_layers.qml b/local/recipes/kde/kirigami/source/autotests/pagepool/tst_layers.qml index 39842b18a1..ea909e2113 100644 --- a/local/recipes/kde/kirigami/source/autotests/pagepool/tst_layers.qml +++ b/local/recipes/kde/kirigami/source/autotests/pagepool/tst_layers.qml @@ -116,7 +116,7 @@ TestCase { } function tapBack () { - mouseClick(mainWindow, 10, 10) + mouseClick(mainWindow, 15, 15) } function test_pushLayerBackButtonPushAgain() { @@ -147,6 +147,8 @@ TestCase { pushD() compare(layerSpy.count, 2) compare(stackSpy.count, 1) + // The back button is being slided in with the push animation, so wait for it to be done + tryCompare(mainWindow.pageStack.layers, "busy", false) tapBack() compare(layerSpy.count, 3) pushD() @@ -304,6 +306,8 @@ TestCase { layerPageC.trigger() compare(stackPageA.checked, false) compare(layerPageC.checked, true) + // The back button is being slided in with the push animation, so wait for it to be done + tryCompare(mainWindow.pageStack.layers, "busy", false) tapBack() compare(stackPageA.checked, true) compare(layerPageC.checked, false) diff --git a/local/recipes/kde/kirigami/source/autotests/pagepool/tst_pagepool.qml b/local/recipes/kde/kirigami/source/autotests/pagepool/tst_pagepool.qml index a498fa4e8e..874de62453 100644 --- a/local/recipes/kde/kirigami/source/autotests/pagepool/tst_pagepool.qml +++ b/local/recipes/kde/kirigami/source/autotests/pagepool/tst_pagepool.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Controls import QtQuick.Window import org.kde.kirigami as Kirigami import QtTest @@ -57,7 +56,7 @@ TestCase { loadPageAction.trigger() compare(mainWindow.pageStack.depth, 1) verify(pool.lastLoadedUrl.toString().endsWith(expectedUrl)) - compare(mainWindow.pageStack.currentItem.title, "INITIAL TITLE") + compare((mainWindow.pageStack.currentItem as Kirigami.Page).title, "INITIAL TITLE") } Kirigami.PagePoolAction { @@ -76,8 +75,8 @@ TestCase { loadPageActionWithProps.trigger() compare(mainWindow.pageStack.depth, 1) verify(pool.lastLoadedUrl.toString().endsWith(expectedUrl)) - compare(mainWindow.pageStack.currentItem.title, "NEW TITLE") - compare(pool.lastLoadedItem.title, "NEW TITLE") + compare((mainWindow.pageStack.currentItem as Kirigami.Page).title, "NEW TITLE") + compare((pool.lastLoadedItem as Kirigami.Page).title, "NEW TITLE") } Kirigami.PagePoolAction { @@ -98,23 +97,6 @@ TestCase { verify(pool.lastLoadedUrl.toString().endsWith(expectedUrl)) } - Kirigami.PagePoolAction { - id: loadPageActionPropDoesNotExist - pagePool: pool - pageStack: mainWindow.pageStack - page: "TestPage.qml?action=loadPageActionPropDoesNotExist" - initialProperties: { - return { propDoesNotExist: "PROP-NON-EXISTENT" } - } - } - - function test_loadPageInitialPropertyNotExistFails () { - ignoreWarning(/.*Setting initial properties failed: TestPage does not have a property called propDoesNotExist/) - var expectedUrl = "TestPage.qml?action=loadPageActionPropDoesNotExist" - loadPageActionPropDoesNotExist.trigger() - verify(pool.lastLoadedUrl.toString().endsWith(expectedUrl)) - } - function test_contains () { const page = "TestPage.qml?action=contains" let item = pool.loadPage(page) diff --git a/local/recipes/kde/kirigami/source/autotests/tst_action.qml b/local/recipes/kde/kirigami/source/autotests/tst_action.qml index a6fea47a6a..7066959fbd 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_action.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_action.qml @@ -2,7 +2,6 @@ // SPDX-License-Identifier: LGPL-2.0-or-later import QtQuick -import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami import QtTest import KirigamiTestUtils @@ -38,4 +37,4 @@ TestCase { compare(disabledAction.text, 'Disabled Action'); compare(disabledAction.enabled, false); } -} \ No newline at end of file +} diff --git a/local/recipes/kde/kirigami/source/autotests/tst_actiontoolbar.qml b/local/recipes/kde/kirigami/source/autotests/tst_actiontoolbar.qml index dba5c95d80..1e5e23e0d5 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_actiontoolbar.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_actiontoolbar.qml @@ -4,6 +4,7 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls @@ -315,7 +316,7 @@ TestCase { const actionB = createTemporaryObject(actionComponent, this, { text: "Action B" }); verify(actionB) - // shoud not crash + // should not crash toolbar.actions.push(actionB); waitForPolish(toolbar); } @@ -335,7 +336,7 @@ TestCase { const actionB = createTemporaryObject(actionComponent, this, { text: "Action B" }); verify(actionB) - // shoud not crash + // should not crash toolbar.actions.push(actionB); waitForPolish(toolbar); } diff --git a/local/recipes/kde/kirigami/source/autotests/tst_columnview.qml b/local/recipes/kde/kirigami/source/autotests/tst_columnview.qml index 795339e447..dfa67899c1 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_columnview.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_columnview.qml @@ -5,11 +5,11 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami import QtTest TestCase { + id: root name: "ColumnView" visible: true when: windowShown @@ -272,9 +272,9 @@ TestCase { function test_attached_index() { const { view, zero, one, two } = createViewWith3Items(); - compare(zero.Kirigami.ColumnView.index, 0); - compare(one.Kirigami.ColumnView.index, 1); - compare(two.Kirigami.ColumnView.index, 2); + compare((zero as Item).Kirigami.ColumnView.index, 0); + compare((one as Item).Kirigami.ColumnView.index, 1); + compare((two as Item).Kirigami.ColumnView.index, 2); } component Filler : Rectangle { @@ -360,4 +360,74 @@ TestCase { mouseClick(layout, 50); compare(columnView.currentIndex, 1); // moves } + + function test_contentChildren_assign() { + const columnView = createTemporaryObject(columnViewComponent, this); + columnView.width = 800; + columnView.height = 500; + waitForPolish(columnView); + const item1 = createTemporaryObject(emptyItemPageComponent, this); + const item2 = createTemporaryObject(emptyItemPageComponent, this); + const item3 = createTemporaryObject(emptyItemPageComponent, this); + + compare(columnView.count, 0); + + columnView.contentChildren = [item1, item2, item3] + + waitForPolish(columnView); + + compare(item1.visible, true); + compare(item2.visible, true); + compare(item3.visible, true); + + compare(item1.parent, columnView.contentItem); + compare(item2.parent, columnView.contentItem); + compare(item3.parent, columnView.contentItem); + + compare(item1.width, columnView.columnWidth); + compare(item2.width, columnView.columnWidth); + compare(item3.width, columnView.width - columnView.columnWidth); + + compare(item1.height, columnView.height); + compare(item2.height, columnView.height); + compare(item3.height, columnView.height); + + // Switch to [item3, item2] + columnView.contentChildren = [item3, item2] + + waitForPolish(columnView); + + compare(item1.visible, false); + compare(item2.visible, true); + compare(item3.visible, true); + + compare(item1.parent, root); + compare(item2.parent, columnView.contentItem); + compare(item3.parent, columnView.contentItem); + + compare(item2.width, columnView.width - columnView.columnWidth); + compare(item3.width, columnView.columnWidth); + + compare(item2.height, columnView.height); + compare(item3.height, columnView.height); + + // Switch to [item3, item1] + columnView.contentChildren = [item3, item1] + + waitForPolish(columnView); + + compare(item1.visible, true); + compare(item2.visible, false); + compare(item3.visible, true); + + compare(item1.parent, columnView.contentItem); + compare(item2.parent, root); + compare(item3.parent, columnView.contentItem); + + compare(item1.width, columnView.width - columnView.columnWidth); + compare(item3.width, columnView.columnWidth); + + compare(item1.height, columnView.height); + compare(item3.height, columnView.height); + } } diff --git a/local/recipes/kde/kirigami/source/autotests/tst_formlayout.qml b/local/recipes/kde/kirigami/source/autotests/tst_formlayout.qml index d81c255c65..45144d554e 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_formlayout.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_formlayout.qml @@ -3,6 +3,7 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Window @@ -38,12 +39,44 @@ TestCase { } } + Component { + id: multipleElementsComponent + Window { + id: rootWindow + property var item: formLayout + property var expectedMinimumSize: 200 + width: 600 + height: 400 + Kirigami.FormLayout { + id: formLayout + anchors.fill: parent + Repeater { + model: 200 + Item { + implicitWidth: rootWindow.expectedMinimumSize + implicitHeight: 20 + Layout.fillWidth: true + } + } + } + } + } + + function test_quick_relayout() { + let window = createTemporaryObject(multipleElementsComponent); + let item = window.item; + window.show(); + + verify(item.implicitWidth >= window.expectedMinimumSize, "implicit width of layout should match the implicit width of the elements within upon component creation"); + + window.close(); + } + function test_fractional_width_rounding() { let window = createTemporaryObject(fractionalSizeRoundingComponent); let item = window.item; window.show(); - - verify(item.width >= item.implicitWidth, "implicit width should not be rounded down"); + tryVerify(() => {return item.width >= item.implicitWidth}, 1000, "implicit width should not be rounded down"); fuzzyCompare(item.width, item.implicitWidth, 1); window.close(); @@ -145,16 +178,6 @@ TestCase { verify(offset1 < offset2); } - function test_nestedBuddyNotSupported() { - const form = createTemporaryObject(dynamicBuddyFormComponent, this); - compare(form.buddyColumn.Kirigami.FormData.buddyFor, form.buddyColumn); - - ignoreWarning(/FormData.buddyFor must be a direct child of the attachee.*/); - form.buddyColumn.Kirigami.FormData.buddyFor = form.target3; - // shouldn't change - compare(form.buddyColumn.Kirigami.FormData.buddyFor, form.buddyColumn); - } - SignalSpy { id: buddyChangeSpy signalName: "buddyForChanged" @@ -234,7 +257,7 @@ TestCase { readonly property alias buddyColumn: buddyColumn function addBuddyFromComponent(component: Component): Item { - const buddy = component.createObject(buddyColumn); + const buddy = component.createObject(buddyColumn) as Item; buddyColumn.Kirigami.FormData.buddyFor = buddy; return buddy; } @@ -286,4 +309,50 @@ TestCase { compare(form.buddyColumn.Kirigami.FormData.buddyFor, form.buddyColumn); compare(buddyChangeSpy.count, 2); } + + Component { + id: enabledTestFormLayoutComponent + + Kirigami.FormLayout { + property alias normalItem: normalItem + property alias buddyRow: buddyRow + property alias buddyItem: buddyItem + + // Normal case, direct item + Item { + id: normalItem + Kirigami.FormData.label: "Normal case" + } + + RowLayout { + id: buddyRow + Kirigami.FormData.label: "Buddy case" + Kirigami.FormData.buddyFor: buddyItem + + Item { + id: buddyItem + } + } + } + } + + function test_enabledPropagation() { + const form = createTemporaryObject(enabledTestFormLayoutComponent, this); + + const normalLabel = findChildLabel(form, "Normal case"); + verify(normalLabel.enabled); + + form.normalItem.enabled = false; + verify(!normalLabel.enabled); + + const buddyLabel = findChildLabel(form, "Buddy case"); + verify(buddyLabel.enabled); + + form.buddyItem.enabled = false; + verify(!buddyLabel.enabled); + + // Unset buddy, should be enabled again. + form.buddyRow.Kirigami.FormData.buddyFor = null; + verify(buddyLabel.enabled); + } } diff --git a/local/recipes/kde/kirigami/source/autotests/tst_globaldrawer.qml b/local/recipes/kde/kirigami/source/autotests/tst_globaldrawer.qml index 82e088c9e6..380b67da96 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_globaldrawer.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_globaldrawer.qml @@ -21,11 +21,12 @@ TestCase { width: 500 height: 500 - component AppItemComponent : Kirigami.ApplicationItem { + component AppItemComponent : Kirigami.ApplicationWindow { id: app property alias headerItem: headerItem property alias topItem: topItem + property alias sidebarSizeItem: sidebarSizeItemDelegate width: 500 height: 500 @@ -42,6 +43,26 @@ TestCase { radius: 20 // to see its bounds } + actions: [ + Kirigami.Action { + text: "View" + icon.name: "view-list-icons" + Kirigami.Action { + text: "action 1" + } + Kirigami.Action { + text: "action 2" + } + Kirigami.Action { + text: "action 3" + } + }, + Kirigami.Action { + text: "Sync" + icon.name: "folder-sync" + } + ] + // Create some item which we can use to measure actual header height Rectangle { id: topItem @@ -51,6 +72,22 @@ TestCase { radius: 20 // to see its bounds } } + + pageStack.initialPage: startPage + Kirigami.Page { + id: startPage + QQC2.ItemDelegate { + id: sidebarSizeItemDelegate + icon.name: "go-back" + } + } + } + + Component { + id: pageComponent + Kirigami.Page { + title: "Layer 1" + } } Component { @@ -149,4 +186,49 @@ TestCase { compare(app.globalDrawer.parent, app.T.Overlay.overlay); compare(app.contextDrawer.parent, app.T.Overlay.overlay); } + + function test_collapsedColumnSize() { + const app = createTemporaryObject(appItemComponent, this); + verify(app); + app.globalDrawer.open(); + app.globalDrawer.collapsible = true; + app.globalDrawer.collapsed = true; + tryVerify(() => {return app.globalDrawer.width == app.sidebarSizeItem.implicitWidth + app.globalDrawer.leftPadding + app.globalDrawer.rightPadding}); + verify(app.globalDrawer.width > 0); + } + + function test_pageRowSidebar() { + const app = createTemporaryObject(appItemComponent, this); + verify(app) + compare(app.pageStack.columnView.x, 0); + app.pageStack.leftSidebar = app.globalDrawer + app.globalDrawer.modal = false; + compare(app.pageStack.columnView.x, app.globalDrawer.width); + verify(app.globalDrawer.visible); + // Test basic show/hide + app.globalDrawer.close(); + tryVerify(() => {return !app.globalDrawer.visible}); + app.globalDrawer.open(); + tryVerify(() => {return app.globalDrawer.visible}); + + // When we push a new layer, the drawer must become invisible + app.pageStack.layers.push(pageComponent); + tryVerify(() => {return !app.globalDrawer.visible}); + // And get back visible on pop + app.pageStack.layers.pop() + tryVerify(() => {return app.globalDrawer.visible}); + + // Push a layer with the drawer closed + app.globalDrawer.close(); + tryVerify(() => {return !app.globalDrawer.visible}); + app.pageStack.layers.push(pageComponent); + tryVerify(() => {return !app.globalDrawer.visible}); + + // Opening it should stay invisible + app.globalDrawer.open() + tryVerify(() => {return !app.globalDrawer.visible}); + // But when popping it will become visible again as we asked for it + app.pageStack.layers.pop() + tryVerify(() => {return app.globalDrawer.visible}); + } } diff --git a/local/recipes/kde/kirigami/source/autotests/tst_headerfooterlayout.qml b/local/recipes/kde/kirigami/source/autotests/tst_headerfooterlayout.qml index 34120b9501..74d3bdb32d 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_headerfooterlayout.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_headerfooterlayout.qml @@ -6,7 +6,6 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import QtQuick.Layouts import QtTest import org.kde.kirigami as Kirigami @@ -159,6 +158,12 @@ TestCase { compare(layout.implicitHeight, 105); verify(waitForItemPolished(layout)); compare(layout.implicitHeight, 105); + + // Change the spacing + layout.spacing = 5; + verify(waitForItemPolished(layout)); + compare(layout.contentItem.height, 55); + compare(layout.implicitHeight, 115); } function test_implicit_sizes_nested_layout() { diff --git a/local/recipes/kde/kirigami/source/autotests/tst_icon.qml b/local/recipes/kde/kirigami/source/autotests/tst_icon.qml index dd7747f5d9..3d285a42b9 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_icon.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_icon.qml @@ -56,6 +56,8 @@ TestCase { } function test_absolutepath_recoloring() { + skip("This test depends too much on environment and other factors to work reliably") + var icon = createTemporaryObject(absolutePathIcon, testCase) verify(icon) verify(waitForRendering(icon)) @@ -65,6 +67,7 @@ TestCase { imageColors.source = result.image imageColors.update() }) + print(Qt.resolvedUrl("stop-icon.svg")) tryCompare(imageColors, "dominant", "#2980b9") } } diff --git a/local/recipes/kde/kirigami/source/autotests/tst_keynavigation.qml b/local/recipes/kde/kirigami/source/autotests/tst_keynavigation.qml index 97c59d5a50..570e331dbf 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_keynavigation.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_keynavigation.qml @@ -6,9 +6,7 @@ */ import QtQuick -import QtQuick.Controls import QtQuick.Window -import org.kde.kirigami as Kirigami import QtTest import "../tests" diff --git a/local/recipes/kde/kirigami/source/autotests/tst_listskeynavigation.qml b/local/recipes/kde/kirigami/source/autotests/tst_listskeynavigation.qml index a82f31d370..49745d9af8 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_listskeynavigation.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_listskeynavigation.qml @@ -7,9 +7,7 @@ */ import QtQuick -import QtQuick.Controls import QtQuick.Window -import org.kde.kirigami as Kirigami import QtTest import "../tests" diff --git a/local/recipes/kde/kirigami/source/autotests/tst_menudialog.qml b/local/recipes/kde/kirigami/source/autotests/tst_menudialog.qml index 2f9bfdce94..1efebc3315 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_menudialog.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_menudialog.qml @@ -5,6 +5,7 @@ */ import QtQuick +import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami import QtTest diff --git a/local/recipes/kde/kirigami/source/autotests/tst_mnemonicdata.qml b/local/recipes/kde/kirigami/source/autotests/tst_mnemonicdata.qml index 0f36a9907a..346eaee037 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_mnemonicdata.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_mnemonicdata.qml @@ -1,9 +1,7 @@ import QtQuick -import QtQuick.Controls import QtQuick.Window import org.kde.kirigami as Kirigami import QtTest -import "../tests" TestCase { id: testCase diff --git a/local/recipes/kde/kirigami/source/autotests/tst_navigationtabbar.qml b/local/recipes/kde/kirigami/source/autotests/tst_navigationtabbar.qml index b10c508572..2012c6f751 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_navigationtabbar.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_navigationtabbar.qml @@ -27,7 +27,9 @@ TestCase { Component { id: tActionComponent - T.Action {} + T.Action { + text: "Action" + } } Component { @@ -126,4 +128,25 @@ TestCase { compare(bar.position, QQC2.ToolBar.Footer); } } + + SignalSpy { + id: actionTriggeredSpy + signalName: "triggered" + } + + function test_mnemonics() { + const tabbar = createTemporaryObject(emptyComponent, this); + + const action = createTemporaryObject(tActionComponent, this); + + tabbar.actions = [action]; + + actionTriggeredSpy.target = action; + + // action text "Action" should automatically get "A" mnemonic. + keyClick(Qt.Key_A, Qt.AltModifier); + + actionTriggeredSpy.wait(); + compare(actionTriggeredSpy.count, 1); + } } diff --git a/local/recipes/kde/kirigami/source/autotests/tst_overlaysheet.qml b/local/recipes/kde/kirigami/source/autotests/tst_overlaysheet.qml index b025f613f1..f924ea6e79 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_overlaysheet.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_overlaysheet.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import QtQuick.Layouts import QtTest import org.kde.kirigami as Kirigami diff --git a/local/recipes/kde/kirigami/source/autotests/tst_overlayzstacking.qml b/local/recipes/kde/kirigami/source/autotests/tst_overlayzstacking.qml index 7a764bf463..1a80b93372 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_overlayzstacking.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_overlayzstacking.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import QtQuick.Templates as T import QtTest import org.kde.kirigami as Kirigami diff --git a/local/recipes/kde/kirigami/source/autotests/tst_padding.qml b/local/recipes/kde/kirigami/source/autotests/tst_padding.qml index 08e0c6e4b9..6ed1b28fb4 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_padding.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_padding.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami import QtTest @@ -89,13 +88,13 @@ TestCase { compare(item.baselineOffset, 0); item.padding = 1; - compare(paddingSpy.count, 1), paddingSpy.clear(); - compare(topPaddingSpy.count, 1), topPaddingSpy.clear(); - compare(leftPaddingSpy.count, 1), leftPaddingSpy.clear(); - compare(rightPaddingSpy.count, 1), rightPaddingSpy.clear(); - compare(bottomPaddingSpy.count, 1), bottomPaddingSpy.clear(); - compare(verticalPaddingSpy.count, 1), verticalPaddingSpy.clear(); - compare(horizontalPaddingSpy.count, 1), horizontalPaddingSpy.clear(); + compare(paddingSpy.count, 1); paddingSpy.clear(); + compare(topPaddingSpy.count, 1); topPaddingSpy.clear(); + compare(leftPaddingSpy.count, 1); leftPaddingSpy.clear(); + compare(rightPaddingSpy.count, 1); rightPaddingSpy.clear(); + compare(bottomPaddingSpy.count, 1); bottomPaddingSpy.clear(); + compare(verticalPaddingSpy.count, 1); verticalPaddingSpy.clear(); + compare(horizontalPaddingSpy.count, 1); horizontalPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 1); @@ -107,7 +106,7 @@ TestCase { compare(item.baselineOffset, 0); item.leftPadding = 2; - compare(leftPaddingSpy.count, 1), leftPaddingSpy.clear(); + compare(leftPaddingSpy.count, 1); leftPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 1); @@ -117,8 +116,8 @@ TestCase { item.horizontalPadding = 3; compare(leftPaddingSpy.count, 0); - compare(rightPaddingSpy.count, 1), rightPaddingSpy.clear(); - compare(horizontalPaddingSpy.count, 1), horizontalPaddingSpy.clear(); + compare(rightPaddingSpy.count, 1); rightPaddingSpy.clear(); + compare(horizontalPaddingSpy.count, 1); horizontalPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 1); @@ -130,9 +129,9 @@ TestCase { item.verticalPadding = 4; verify(waitForRendering(item)) - compare(topPaddingSpy.count, 1), topPaddingSpy.clear(); - compare(bottomPaddingSpy.count, 1), bottomPaddingSpy.clear(); - compare(verticalPaddingSpy.count, 1), verticalPaddingSpy.clear(); + compare(topPaddingSpy.count, 1); topPaddingSpy.clear(); + compare(bottomPaddingSpy.count, 1); bottomPaddingSpy.clear(); + compare(verticalPaddingSpy.count, 1); verticalPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 4); @@ -144,7 +143,7 @@ TestCase { item.topPadding = 5; verify(waitForRendering(item)) - compare(topPaddingSpy.count, 1), topPaddingSpy.clear(); + compare(topPaddingSpy.count, 1); topPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 5); @@ -156,7 +155,7 @@ TestCase { item.bottomPadding = 6; verify(waitForRendering(item)) - compare(bottomPaddingSpy.count, 1), bottomPaddingSpy.clear(); + compare(bottomPaddingSpy.count, 1); bottomPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 5); @@ -167,7 +166,7 @@ TestCase { compare(item.verticalPadding, 4); item.bottomPadding = undefined; - compare(bottomPaddingSpy.count, 1), bottomPaddingSpy.clear(); + compare(bottomPaddingSpy.count, 1); bottomPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 5); @@ -179,8 +178,8 @@ TestCase { item.verticalPadding = undefined; compare(topPaddingSpy.count, 0); - compare(bottomPaddingSpy.count, 1), bottomPaddingSpy.clear(); - compare(verticalPaddingSpy.count, 1), verticalPaddingSpy.clear(); + compare(bottomPaddingSpy.count, 1); bottomPaddingSpy.clear(); + compare(verticalPaddingSpy.count, 1); verticalPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 5); @@ -192,7 +191,7 @@ TestCase { item.rightPadding = 7; verify(waitForRendering(item)) - compare(rightPaddingSpy.count, 1), rightPaddingSpy.clear(); + compare(rightPaddingSpy.count, 1); rightPaddingSpy.clear(); compare(item.padding, 1); compare(item.topPadding, 5); @@ -232,13 +231,13 @@ TestCase { item.contentItem.implicitWidth = 1000; verify(waitForRendering(item)) - compare(widthSpy.count, 1), widthSpy.clear(); + compare(widthSpy.count, 1); widthSpy.clear(); compare(heightSpy.count, 0); item.contentItem.implicitHeight = 2000; verify(waitForRendering(item)) compare(widthSpy.count, 0); - compare(heightSpy.count, 1), heightSpy.clear(); + compare(heightSpy.count, 1); heightSpy.clear(); compare(item.implicitWidth, 1032); compare(item.implicitHeight, 2041); diff --git a/local/recipes/kde/kirigami/source/autotests/tst_pagerow.qml b/local/recipes/kde/kirigami/source/autotests/tst_pagerow.qml index 286636b388..19a57dd25b 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_pagerow.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_pagerow.qml @@ -3,9 +3,9 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick -import QtQuick.Controls import QtQuick.Window import org.kde.kirigami as Kirigami import QtTest diff --git a/local/recipes/kde/kirigami/source/autotests/tst_sceneposition.qml b/local/recipes/kde/kirigami/source/autotests/tst_sceneposition.qml index 140f47315e..65ac1432e4 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_sceneposition.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_sceneposition.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami import QtTest diff --git a/local/recipes/kde/kirigami/source/autotests/tst_scrollablepage.qml b/local/recipes/kde/kirigami/source/autotests/tst_scrollablepage.qml index a9a0ae872f..dbdbc290bf 100644 --- a/local/recipes/kde/kirigami/source/autotests/tst_scrollablepage.qml +++ b/local/recipes/kde/kirigami/source/autotests/tst_scrollablepage.qml @@ -3,6 +3,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts @@ -24,65 +25,74 @@ TestCase { signalName: "currentItemChanged" } - // Simulate KCM.ScrollViewKCM - Kirigami.ApplicationWindow { - id: mainWindow - width: 480 - height: 360 - pageStack.initialPage: Kirigami.Page { - id: root - function clickFirst() { - userList.itemAtIndex(0).clicked(); - } - property alias view: scroll.view - view: ListView { - id: userList - model: 1 - delegate: QQC.ItemDelegate { - id: delegate - width: ListView.view.width - text: String(index) - onClicked: { - mainWindow.pageStack.pop(); - mainWindow.pageStack.push(subPageComponent); - console.log("clicked") - } + component FirstPage: Kirigami.Page { + id: root + function clickFirst() { + (userList.itemAtIndex(0) as QQC.ItemDelegate).clicked(); + } + property alias view: scroll.view + view: ListView { + id: userList + model: 1 + delegate: QQC.ItemDelegate { + id: delegate + + required property int index + + width: ListView.view.width + text: String(index) + onClicked: { + mainWindow.pageStack.pop(); + mainWindow.pageStack.push(subPageComponent); + console.log("clicked") } } - QQC.ScrollView { - id: scroll - anchors.fill: parent - property Flickable view - activeFocusOnTab: false - contentItem: view - onViewChanged: { - view.parent = scroll; - } - Kirigami.Theme.colorSet: Kirigami.Theme.View - Kirigami.Theme.inherit: false + } + QQC.ScrollView { + id: scroll + anchors.fill: parent + property Flickable view + activeFocusOnTab: false + contentItem: view + onViewChanged: { + view.parent = scroll; + } + Kirigami.Theme.colorSet: Kirigami.Theme.View + Kirigami.Theme.inherit: false + } + } + + component SubPage: Kirigami.ScrollablePage { + readonly property alias success: realNametextField.activeFocus + focus: true + ColumnLayout { + QQC.TextField { + id: realNametextField + focus: true + text: "This item should be focused by default" + } + QQC.TextField { + id: userNameField + text: "ddeeff" } } } Component { id: subPageComponent - Kirigami.ScrollablePage { - readonly property alias success: realNametextField.activeFocus - focus: true - ColumnLayout { - QQC.TextField { - id: realNametextField - focus: true - text: "This item should be focused by default" - } - QQC.TextField { - id: userNameField - text: "ddeeff" - } - } - } + + SubPage { } } + // Simulate KCM.ScrollViewKCM + Kirigami.ApplicationWindow { + id: mainWindow + width: 480 + height: 360 + pageStack.initialPage: FirstPage { } + } + + function initTestCase() { mainWindow.show() mainWindow.requestActivate(); @@ -94,14 +104,14 @@ TestCase { } function test_defaultFocusInScrollablePage() { - mainWindow.pageStack.currentItem.clickFirst(); + (mainWindow.pageStack.currentItem as FirstPage).clickFirst(); if (!(mainWindow.pageStack.currentItem instanceof Kirigami.ScrollablePage)) { currentItemChangedSpy.wait() } verify(mainWindow.pageStack.currentItem instanceof Kirigami.ScrollablePage) // Consolidate the workaround for QTBUG-44043 // https://invent.kde.org/frameworks/kirigami/-/commit/fd253ea5d9fa3f33411e54a596c021f51b5a102a - tryVerify(() => mainWindow.pageStack.currentItem.success) + tryVerify(() => (mainWindow.pageStack.currentItem as SubPage).success) } } diff --git a/local/recipes/kde/kirigami/source/autotests/wheelhandler/ContentFlickable.qml b/local/recipes/kde/kirigami/source/autotests/wheelhandler/ContentFlickable.qml index fe11439ae9..0ddcfc0681 100644 --- a/local/recipes/kde/kirigami/source/autotests/wheelhandler/ContentFlickable.qml +++ b/local/recipes/kde/kirigami/source/autotests/wheelhandler/ContentFlickable.qml @@ -1,6 +1,7 @@ /* SPDX-FileCopyrightText: 2021 Noah Davis * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 @@ -22,10 +23,14 @@ Flickable { Repeater { model: 500 delegate: Rectangle { + id: firstDelegate + + required property int index + implicitWidth: flickable.cellWidth implicitHeight: flickable.cellHeight gradient: Gradient { - orientation: index % 2 ? Gradient.Vertical : Gradient.Horizontal + orientation: firstDelegate.index % 2 ? Gradient.Vertical : Gradient.Horizontal GradientStop { position: 0; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } GradientStop { position: 1; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } } @@ -52,10 +57,14 @@ Flickable { Repeater { model: 500 delegate: Rectangle { + id: secondDelegate + + required property int index + implicitWidth: flickable.cellWidth implicitHeight: flickable.cellHeight gradient: Gradient { - orientation: index % 2 ? Gradient.Vertical : Gradient.Horizontal + orientation: secondDelegate.index % 2 ? Gradient.Vertical : Gradient.Horizontal GradientStop { position: 0; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } GradientStop { position: 1; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } } diff --git a/local/recipes/kde/kirigami/source/autotests/wheelhandler/ScrollableFlickable.qml b/local/recipes/kde/kirigami/source/autotests/wheelhandler/ScrollableFlickable.qml index c8ac2b4750..7980811a10 100644 --- a/local/recipes/kde/kirigami/source/autotests/wheelhandler/ScrollableFlickable.qml +++ b/local/recipes/kde/kirigami/source/autotests/wheelhandler/ScrollableFlickable.qml @@ -4,7 +4,6 @@ import QtQuick import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami ContentFlickable { id: flickable diff --git a/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_invokables.qml b/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_invokables.qml index a4ebd03e1b..9fd0329da3 100644 --- a/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_invokables.qml +++ b/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_invokables.qml @@ -3,7 +3,6 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami import QtTest @@ -18,7 +17,7 @@ TestCase { property alias wheelHandler: wheelHandler property alias flickable: flickable - name: "WheelHandler invokable functions" + name: "WheelHandler invocable functions" visible: true when: windowShown width: flickable.implicitWidth diff --git a/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_scrolling.qml b/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_scrolling.qml index 425dcc9957..3bc0df09d4 100644 --- a/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_scrolling.qml +++ b/local/recipes/kde/kirigami/source/autotests/wheelhandler/tst_scrolling.qml @@ -3,107 +3,76 @@ */ import QtQuick -import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami import QtTest TestCase { id: root + readonly property Kirigami.WheelHandler wheelHandler: (loader.item instanceof ScrollView) ? (loader.item as ScrollViewComponent).wheelHandler : (loader.item as FlickableComponent).wheelHandler + readonly property Flickable flickable: (loader.item instanceof ScrollView) ? (loader.item as ScrollView).contentItem as Flickable : loader.item as Flickable + readonly property Item inputItem: flickable readonly property real hstep: wheelHandler.horizontalStepSize readonly property real vstep: wheelHandler.verticalStepSize readonly property real pageWidth: flickable.width - flickable.leftMargin - flickable.rightMargin readonly property real pageHeight: flickable.height - flickable.topMargin - flickable.bottomMargin readonly property real contentWidth: flickable.contentWidth readonly property real contentHeight: flickable.contentHeight - property alias wheelHandler: wheelHandler - property alias flickable: flickable + readonly property real leftMargin: (loader.item instanceof ScrollView) ? (loader.item as ScrollView).leftPadding : (loader.item as Flickable).leftMargin name: "WheelHandler scrolling" visible: true when: windowShown - width: flickable.implicitWidth - height: flickable.implicitHeight + width: loader.implicitWidth + height: loader.implicitHeight - function wheelScrolling(angleDelta = wheelHandler.verticalStepSize) { + function wheelScrolling(angleDelta = 120) { let x = flickable.contentX let y = flickable.contentY const angleDeltaFactor = angleDelta / 120 - mouseWheel(flickable, flickable.leftMargin, 0, -angleDelta, -angleDelta, Qt.NoButton) - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentX", Math.round(x + hstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+xTick") - } else { - compare(flickable.contentX, Math.round(x + hstep * angleDeltaFactor), "+xTick") - } + mouseWheel(inputItem, leftMargin, 0, -angleDelta, -angleDelta, Qt.NoButton) + tryCompare(flickable, "contentX", Math.round(x + hstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+xTick") x = flickable.contentX - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentY", Math.round(y + vstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+yTick") - } else { - compare(flickable.contentY, Math.round(y + vstep * angleDeltaFactor), "+yTick") - } + tryCompare(flickable, "contentY", Math.round(y + vstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+yTick") y = flickable.contentY - mouseWheel(flickable, flickable.leftMargin, 0, angleDelta, angleDelta, Qt.NoButton) - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentX", Math.round(x - hstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-xTick") - } else { - compare(flickable.contentX, Math.round(x - hstep * angleDeltaFactor), "-xTick") - } + mouseWheel(inputItem, leftMargin, 0, angleDelta, angleDelta, Qt.NoButton) + tryCompare(flickable, "contentX", Math.round(x - hstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-xTick") x = flickable.contentX - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentY", Math.round(y - vstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-yTick") - } else { - compare(flickable.contentY, Math.round(y - vstep * angleDeltaFactor), "-yTick") - } + tryCompare(flickable, "contentY", Math.round(y - vstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-yTick") y = flickable.contentY if (Qt.platform.pluginName !== "xcb") { - mouseWheel(flickable, flickable.leftMargin, 0, 0, -angleDelta, Qt.NoButton, Qt.AltModifier) + mouseWheel(inputItem, leftMargin, 0, 0, -angleDelta, Qt.NoButton, Qt.AltModifier) tryCompare(flickable, "contentX", Math.round(x + hstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+h_yTick") x = flickable.contentX tryCompare(flickable, "contentY", y, Kirigami.Units.longDuration * 2, "no +yTick") - mouseWheel(flickable, flickable.leftMargin, 0, 0, angleDelta, Qt.NoButton, Qt.AltModifier) + mouseWheel(inputItem, leftMargin, 0, 0, angleDelta, Qt.NoButton, Qt.AltModifier) tryCompare(flickable, "contentX", Math.round(x - hstep * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-h_yTick") x = flickable.contentX tryCompare(flickable, "contentY", y, Kirigami.Units.longDuration * 2, "no -yTick") } - mouseWheel(flickable, flickable.leftMargin, 0, -angleDelta, -angleDelta, Qt.NoButton, wheelHandler.pageScrollModifiers) - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentX", Math.round(x + pageWidth * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+xPage") - } else { - compare(flickable.contentX, Math.round(x + pageWidth * angleDeltaFactor), "+xPage") - } + mouseWheel(inputItem, leftMargin, 0, -angleDelta, -angleDelta, Qt.NoButton, wheelHandler.pageScrollModifiers) + tryCompare(flickable, "contentX", Math.round(x + pageWidth * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+xPage") x = flickable.contentX - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentY", Math.round(y + pageHeight * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+yPage") - } else { - compare(flickable.contentY, Math.round(y + pageHeight * angleDeltaFactor), "+yPage") - } + tryCompare(flickable, "contentY", Math.round(y + pageHeight * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+yPage") y = flickable.contentY - mouseWheel(flickable, flickable.leftMargin, 0, angleDelta, angleDelta, Qt.NoButton, wheelHandler.pageScrollModifiers) - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentX", Math.round(x - pageWidth * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-xPage") - } else { - compare(flickable.contentX, Math.round(x - pageWidth * angleDeltaFactor), "-xPage") - } + mouseWheel(inputItem, leftMargin, 0, angleDelta, angleDelta, Qt.NoButton, wheelHandler.pageScrollModifiers) + tryCompare(flickable, "contentX", Math.round(x - pageWidth * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-xPage") x = flickable.contentX - if (angleDelta === wheelHandler.verticalStepSize) { - tryCompare(flickable, "contentY", Math.round(y - pageHeight * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-yPage") - } else { - compare(flickable.contentY, Math.round(y - pageHeight * angleDeltaFactor), "-yPage") - } + tryCompare(flickable, "contentY", Math.round(y - pageHeight * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-yPage") y = flickable.contentY if (Qt.platform.pluginName !== "xcb") { - mouseWheel(flickable, flickable.leftMargin, 0, 0, -angleDelta, Qt.NoButton, + mouseWheel(inputItem, leftMargin, 0, 0, -angleDelta, Qt.NoButton, Qt.AltModifier | wheelHandler.pageScrollModifiers) tryCompare(flickable, "contentX", Math.round(x + pageWidth * angleDeltaFactor), Kirigami.Units.longDuration * 2, "+h_yPage") x = flickable.contentX tryCompare(flickable, "contentY", y, Kirigami.Units.longDuration * 2, "no +yPage") - mouseWheel(flickable, flickable.leftMargin, 0, 0, angleDelta, Qt.NoButton, + mouseWheel(inputItem, leftMargin, 0, 0, angleDelta, Qt.NoButton, Qt.AltModifier | wheelHandler.pageScrollModifiers) tryCompare(flickable, "contentX", Math.round(x - pageWidth * angleDeltaFactor), Kirigami.Units.longDuration * 2, "-h_yPage") x = flickable.contentX @@ -114,18 +83,27 @@ TestCase { function test_WheelScrolling() { // HID 1bcf:08a0 Mouse // Angle delta is 120, like most mice. + loader.sourceComponent = flickableComponent + wheelScrolling() + loader.sourceComponent = scrollViewComponent wheelScrolling() } function test_HiResWheelScrolling() { // Logitech MX Master 3 // Main wheel angle delta is at least 16, plus multiples of 8 when scrolling faster. + loader.sourceComponent = flickableComponent + wheelScrolling(16) + loader.sourceComponent = scrollViewComponent wheelScrolling(16) } function test_TouchpadScrolling() { // UNIW0001:00 093A:0255 Touchpad // 2 finger scroll angle delta is at least 3, but larger increments are used when scrolling faster. + loader.sourceComponent = flickableComponent + wheelScrolling(3) + loader.sourceComponent = scrollViewComponent wheelScrolling(3) } @@ -183,10 +161,14 @@ TestCase { } function test_KeyboardScrolling() { + loader.sourceComponent = flickableComponent + keyboardScrolling() + loader.sourceComponent = scrollViewComponent keyboardScrolling() } function test_StepSize() { + loader.sourceComponent = flickableComponent // 101 is a value unlikely to be used by any user's combination of settings and hardware wheelHandler.verticalStepSize = 101 wheelHandler.horizontalStepSize = 101 @@ -195,18 +177,64 @@ TestCase { // reset to default wheelHandler.verticalStepSize = undefined wheelHandler.horizontalStepSize = undefined - verify(wheelHandler.verticalStepSize == 20 * Qt.styleHints.wheelScrollLines, "default verticalStepSize") - verify(wheelHandler.horizontalStepSize == 20 * Qt.styleHints.wheelScrollLines, "default horizontalStepSize") + verify(wheelHandler.verticalStepSize == 20 * Application.styleHints.wheelScrollLines, "default verticalStepSize") + verify(wheelHandler.horizontalStepSize == 20 * Application.styleHints.wheelScrollLines, "default horizontalStepSize") + + loader.sourceComponent = scrollViewComponent + wheelHandler.verticalStepSize = 101 + wheelHandler.horizontalStepSize = 101 + wheelScrolling() + keyboardScrolling() + wheelHandler.verticalStepSize = undefined + wheelHandler.horizontalStepSize = undefined + verify(wheelHandler.verticalStepSize == 20 * Application.styleHints.wheelScrollLines, "default verticalStepSize") + verify(wheelHandler.horizontalStepSize == 20 * Application.styleHints.wheelScrollLines, "default horizontalStepSize") } - ScrollableFlickable { - id: flickable - focus: true + Loader { + id: loader anchors.fill: parent + focus: true + sourceComponent: flickableComponent + } + + component FlickableComponent: ScrollableFlickable { + id: flickable + readonly property alias wheelHandler: wheelHandler + focus: true Kirigami.WheelHandler { id: wheelHandler target: flickable keyNavigationEnabled: true } } + + Component { + id: flickableComponent + + FlickableComponent { } + } + + component ScrollViewComponent: ScrollView { + readonly property alias wheelHandler: wheelHandler + focus: true + implicitWidth: flickable.implicitWidth + leftPadding + rightPadding + implicitHeight: flickable.implicitHeight + topPadding + bottomPadding + contentItem: ContentFlickable { + id: flickable + } + data: [ + Kirigami.WheelHandler { + id: wheelHandler + target: flickable + keyNavigationEnabled: true + } + ] + } + + Component { + id: scrollViewComponent + + ScrollViewComponent { } + } } diff --git a/local/recipes/kde/kirigami/source/examples/Image Colors/IconPage.qml b/local/recipes/kde/kirigami/source/examples/Image Colors/IconPage.qml index 23072c2c9b..d9765fdf61 100644 --- a/local/recipes/kde/kirigami/source/examples/Image Colors/IconPage.qml +++ b/local/recipes/kde/kirigami/source/examples/Image Colors/IconPage.qml @@ -66,17 +66,13 @@ Kirigami.ScrollablePage { text: "Previous" icon.name: "go-previous-symbolic" displayHint: Kirigami.DisplayHint.KeepVisible - onTriggered: source => { - root.previousIcon(); - } + onTriggered: root.previousIcon(); }, Kirigami.Action { text: "Next" icon.name: "go-next-symbolic" displayHint: Kirigami.DisplayHint.KeepVisible - onTriggered: source => { - root.nextIcon(); - } + onTriggered: root.nextIcon(); } ] } @@ -89,7 +85,7 @@ Kirigami.ScrollablePage { title: "Icon Name" Kirigami.SelectableLabel { - text: currentIcon() + text: root.currentIcon() horizontalAlignment: TextEdit.AlignHCenter Layout.fillWidth: true } diff --git a/local/recipes/kde/kirigami/source/examples/Image Colors/ImagePage.qml b/local/recipes/kde/kirigami/source/examples/Image Colors/ImagePage.qml index 58a174e96e..d30ad03008 100644 --- a/local/recipes/kde/kirigami/source/examples/Image Colors/ImagePage.qml +++ b/local/recipes/kde/kirigami/source/examples/Image Colors/ImagePage.qml @@ -70,17 +70,13 @@ QQC2.Page { icon.name: "shuffle-symbolic" text: "Random Image" displayHint: Kirigami.DisplayHint.KeepVisible - onTriggered: source => { - root.randomizeSource(); - } + onTriggered: root.randomizeSource(); }, Kirigami.Action { icon.name: "insert-image-symbolic" text: "Open Image…" displayHint: Kirigami.DisplayHint.KeepVisible - onTriggered: source => { - root.openChooserDialog(); - } + onTriggered: root.openChooserDialog(); } ] } @@ -90,7 +86,7 @@ QQC2.Page { id: fileDialog title: "Open Image" - nameFilters: "Media Files (*.jpg *.png *.svg)" + nameFilters: ["Media Files (*.jpg *.png *.svg)"] fileMode: QtDialogs.FileDialog.OpenFile options: QtDialogs.FileDialog.ReadOnly diff --git a/local/recipes/kde/kirigami/source/examples/Image Colors/ImageStatsPage.qml b/local/recipes/kde/kirigami/source/examples/Image Colors/ImageStatsPage.qml index 70fddd1e61..ff96adaeb6 100644 --- a/local/recipes/kde/kirigami/source/examples/Image Colors/ImageStatsPage.qml +++ b/local/recipes/kde/kirigami/source/examples/Image Colors/ImageStatsPage.qml @@ -29,9 +29,7 @@ Kirigami.ScrollablePage { text: "Update Palette" icon.name: "view-refresh-symbolic" displayHint: Kirigami.DisplayHint.KeepVisible - onTriggered: source => { - imagePalette.update(); - } + onTriggered: root.imagePalette.update(); } ] } @@ -83,7 +81,7 @@ Kirigami.ScrollablePage { title: "Image Palette" Components.PaletteTable { - swatches: imagePalette.palette + swatches: root.imagePalette.palette } } } diff --git a/local/recipes/kde/kirigami/source/examples/Image Colors/components/PaletteTable.qml b/local/recipes/kde/kirigami/source/examples/Image Colors/components/PaletteTable.qml index 4d1e5ca5aa..55e42b05f4 100644 --- a/local/recipes/kde/kirigami/source/examples/Image Colors/components/PaletteTable.qml +++ b/local/recipes/kde/kirigami/source/examples/Image Colors/components/PaletteTable.qml @@ -75,9 +75,8 @@ ColumnLayout { name: "inside" PropertyChanges { - target: label - anchors.leftMargin: - label.width - Kirigami.Units.largeSpacing - layer.enabled: true + label.anchors.leftMargin: - label.width - Kirigami.Units.largeSpacing + label.layer.enabled: true // The contrast color sometimes isn't really usable // color: delegate.modelData.contrastColor } @@ -87,8 +86,7 @@ ColumnLayout { name: "side-by-side" PropertyChanges { - target: label - anchors.leftMargin: Kirigami.Units.smallSpacing + label.anchors.leftMargin: Kirigami.Units.smallSpacing } } ] diff --git a/local/recipes/kde/kirigami/source/examples/Image Colors/main.qml b/local/recipes/kde/kirigami/source/examples/Image Colors/main.qml index 6649af32bb..50b6ba2683 100644 --- a/local/recipes/kde/kirigami/source/examples/Image Colors/main.qml +++ b/local/recipes/kde/kirigami/source/examples/Image Colors/main.qml @@ -8,11 +8,8 @@ pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 -import QtQuick.Layouts import org.kde.kirigami as Kirigami -import "components" as Components - QQC2.ApplicationWindow { id: root diff --git a/local/recipes/kde/kirigami/source/examples/applicationitemapp/main.qml b/local/recipes/kde/kirigami/source/examples/applicationitemapp/main.qml index 708dfcc701..5d812e46a5 100644 --- a/local/recipes/kde/kirigami/source/examples/applicationitemapp/main.qml +++ b/local/recipes/kde/kirigami/source/examples/applicationitemapp/main.qml @@ -37,7 +37,7 @@ Kirigami.ApplicationItem { contextDrawer: Kirigami.ContextDrawer { id: contextDrawer - actions: (pageStack.currentItem as Kirigami.Page)?.actions ?? [] + actions: (root.pageStack.currentItem as Kirigami.Page)?.actions ?? [] } pageStack.initialPage: mainPageComponent diff --git a/local/recipes/kde/kirigami/source/examples/icon/CustomSource.qml b/local/recipes/kde/kirigami/source/examples/icon/CustomSource.qml deleted file mode 100644 index 4e88532d58..0000000000 --- a/local/recipes/kde/kirigami/source/examples/icon/CustomSource.qml +++ /dev/null @@ -1,5 +0,0 @@ -import org.kde.kirigami as Kirigami - -Kirigami.Icon { - source: "image://provider/kirigami.svg" -} diff --git a/local/recipes/kde/kirigami/source/examples/icon/Fallback.qml b/local/recipes/kde/kirigami/source/examples/icon/Fallback.qml deleted file mode 100644 index d9c60a23b7..0000000000 --- a/local/recipes/kde/kirigami/source/examples/icon/Fallback.qml +++ /dev/null @@ -1,6 +0,0 @@ -import org.kde.kirigami as Kirigami - -Kirigami.Icon { - source: "this-icon-does-not-exist" - fallback: "view-refresh" -} diff --git a/local/recipes/kde/kirigami/source/examples/icon/FilesystemSource.qml b/local/recipes/kde/kirigami/source/examples/icon/FilesystemSource.qml deleted file mode 100644 index 78dda83dda..0000000000 --- a/local/recipes/kde/kirigami/source/examples/icon/FilesystemSource.qml +++ /dev/null @@ -1,5 +0,0 @@ -import org.kde.kirigami as Kirigami - -Kirigami.Icon { - source: "/home/example/cool.svg" -} diff --git a/local/recipes/kde/kirigami/source/examples/icon/IconThemeSource.qml b/local/recipes/kde/kirigami/source/examples/icon/IconThemeSource.qml deleted file mode 100644 index cd53c43682..0000000000 --- a/local/recipes/kde/kirigami/source/examples/icon/IconThemeSource.qml +++ /dev/null @@ -1,5 +0,0 @@ -import org.kde.kirigami as Kirigami - -Kirigami.Icon { - source: "view-refresh" -} diff --git a/local/recipes/kde/kirigami/source/examples/icon/InternetSource.qml b/local/recipes/kde/kirigami/source/examples/icon/InternetSource.qml deleted file mode 100644 index 84526d65d5..0000000000 --- a/local/recipes/kde/kirigami/source/examples/icon/InternetSource.qml +++ /dev/null @@ -1,5 +0,0 @@ -import org.kde.kirigami as Kirigami - -Kirigami.Icon { - source: "https://example.com/kirigami.png" -} diff --git a/local/recipes/kde/kirigami/source/examples/icon/ResourceSource.qml b/local/recipes/kde/kirigami/source/examples/icon/ResourceSource.qml deleted file mode 100644 index e3089961a1..0000000000 --- a/local/recipes/kde/kirigami/source/examples/icon/ResourceSource.qml +++ /dev/null @@ -1,5 +0,0 @@ -import org.kde.kirigami as Kirigami - -Kirigami.Icon { - source: "qrc:/kirigami.svg" -} diff --git a/local/recipes/kde/kirigami/source/examples/multiplatformnotesapp/NotesGeneral.qml b/local/recipes/kde/kirigami/source/examples/multiplatformnotesapp/NotesGeneral.qml index 6ad2b687ec..d5fff47214 100644 --- a/local/recipes/kde/kirigami/source/examples/multiplatformnotesapp/NotesGeneral.qml +++ b/local/recipes/kde/kirigami/source/examples/multiplatformnotesapp/NotesGeneral.qml @@ -156,7 +156,7 @@ Kirigami.ApplicationWindow { icon.height: Kirigami.Units.iconSizes.large } delegate: QQC2.ItemDelegate { - id: delegate + id: listDelegate required property string title required property string description @@ -172,11 +172,11 @@ Kirigami.ApplicationWindow { spacing: Kirigami.Units.smallSpacing KD.TitleSubtitle { Layout.fillWidth: true - title: delegate.title - subtitle: delegate.description + title: listDelegate.title + subtitle: listDelegate.description } QQC2.Button { - text: delegate.buttonText + text: listDelegate.buttonText onClicked: sheet.close() } } diff --git a/local/recipes/kde/kirigami/source/examples/settingscomponents/GeneralSettingsPage.qml b/local/recipes/kde/kirigami/source/examples/settingscomponents/GeneralSettingsPage.qml index abf76cee57..fefa84fa37 100644 --- a/local/recipes/kde/kirigami/source/examples/settingscomponents/GeneralSettingsPage.qml +++ b/local/recipes/kde/kirigami/source/examples/settingscomponents/GeneralSettingsPage.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Layouts import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami diff --git a/local/recipes/kde/kirigami/source/examples/settingscomponents/SettingsPage.qml b/local/recipes/kde/kirigami/source/examples/settingscomponents/SettingsPage.qml index 4deb52e016..1d355f198a 100644 --- a/local/recipes/kde/kirigami/source/examples/settingscomponents/SettingsPage.qml +++ b/local/recipes/kde/kirigami/source/examples/settingscomponents/SettingsPage.qml @@ -5,9 +5,6 @@ */ import QtQuick -import QtQuick.Layouts -import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami import org.kde.kirigamiaddons.settings as AddonsSettings AddonsSettings.CategorizedSettings { diff --git a/local/recipes/kde/kirigami/source/examples/settingscomponents/main.qml b/local/recipes/kde/kirigami/source/examples/settingscomponents/main.qml index 16675ea580..50a95adf26 100644 --- a/local/recipes/kde/kirigami/source/examples/settingscomponents/main.qml +++ b/local/recipes/kde/kirigami/source/examples/settingscomponents/main.qml @@ -5,8 +5,6 @@ */ import QtQuick -import QtQuick.Layouts -import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami Kirigami.ApplicationWindow { @@ -15,7 +13,7 @@ Kirigami.ApplicationWindow { title: qsTr("Hello, World") globalDrawer: Kirigami.GlobalDrawer { - isMenu: !Kirigami.isMobile + isMenu: !Kirigami.Settings.isMobile actions: [ Kirigami.Action { text: qsTr("Settings") diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/AbstractApplicationWindow.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/AbstractApplicationWindow.qml index 444373eb1d..829e1d9721 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/AbstractApplicationWindow.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/AbstractApplicationWindow.qml @@ -57,12 +57,12 @@ Kirigami.AbstractApplicationWindow { icon.name: "configure" checkable: true //Need to do this, otherwise it breaks the bindings - property bool current: pageStack.currentItem?.objectName === "settingsPage" ?? false + property bool current: (root.pageStack as QQC2.StackView).currentItem?.objectName === "settingsPage" ?? false onCurrentChanged: { checked = current; } onTriggered: { - pageStack.push(settingsComponent); + (root.pageStack as QQC2.StackView).push(settingsComponent); } } ] @@ -87,6 +87,7 @@ Kirigami.AbstractApplicationWindow { } pageStack: QQC2.StackView { + id: stackView anchors.fill: parent property int currentIndex: 0 focus: true @@ -110,11 +111,11 @@ Kirigami.AbstractApplicationWindow { root.globalDrawer.close(); } else { var backEvent = {accepted: false} - if (root.pageStack.currentIndex >= 1) { - root.pageStack.currentItem.backRequested(backEvent); + if (stackView.currentIndex >= 1) { + (stackView.currentItem as Kirigami.Page).backRequested(backEvent); if (!backEvent.accepted) { - if (root.pageStack.depth > 1) { - root.pageStack.currentIndex = Math.max(0, root.pageStack.currentIndex - 1); + if ((root.pageStack as QQC2.StackView).depth > 1) { + (root.pageStack as QQC2.StackView).currentIndex = Math.max(0, stackView.currentIndex - 1); backEvent.accepted = true; } else { Qt.quit(); diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/FixedSidebar.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/FixedSidebar.qml index 16c8cc6303..85d2f29a95 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/FixedSidebar.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/FixedSidebar.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Layouts import org.kde.kirigami as Kirigami import QtQuick.Controls as QQC2 diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/MultipleColumnsGallery.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/MultipleColumnsGallery.qml index c047b3e3b6..3a916ef122 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/MultipleColumnsGallery.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/MultipleColumnsGallery.qml @@ -50,12 +50,12 @@ Kirigami.ScrollablePage { QQC2.Button { text: "Push Another Page" Layout.alignment: Qt.AlignHCenter - onClicked: applicationWindow()?.pageStack.push(Qt.resolvedUrl("MultipleColumnsGallery.qml")); + onClicked: Kirigami.PageStack.push(Qt.resolvedUrl("MultipleColumnsGallery.qml")); } QQC2.Button { text: "Pop A Page" Layout.alignment: Qt.AlignHCenter - onClicked: applicationWindow()?.pageStack.pop(); + onClicked: Kirigami.PageStack.pop(); } RowLayout { Layout.alignment: Qt.AlignHCenter diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/Sidebar.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/Sidebar.qml index e230d1e696..1a6156e09f 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/Sidebar.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/Sidebar.qml @@ -29,7 +29,6 @@ Kirigami.ApplicationWindow { Layout.alignment: Qt.AlignHCenter text: "This is a sidebar" Layout.fillWidth: true - width: parent.width - Kirigami.Units.smallSpacing * 2 wrapMode: Text.WordWrap } QQC2.Button { @@ -48,7 +47,7 @@ Kirigami.ApplicationWindow { contextDrawer: Kirigami.OverlayDrawer { id: contextDrawer drawerOpen: true - edge: Qt.application.layoutDirection === Qt.RightToLeft ? Qt.LeftEdge : Qt.RightEdge + edge: Application.layoutDirection === Qt.RightToLeft ? Qt.LeftEdge : Qt.RightEdge modal: false leftPadding: Kirigami.Units.largeSpacing rightPadding: Kirigami.Units.largeSpacing @@ -59,7 +58,6 @@ Kirigami.ApplicationWindow { Layout.alignment: Qt.AlignHCenter text: "This is a sidebar" Layout.fillWidth: true - width: parent.width - Kirigami.Units.smallSpacing * 2 wrapMode: Text.WordWrap } QQC2.Button { diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/dragPageWidth.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/dragPageWidth.qml index 587b77da65..662558a8c6 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/dragPageWidth.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/dragPageWidth.qml @@ -19,12 +19,12 @@ Kirigami.ApplicationWindow { MouseArea { id: dragHandle - visible: pageStack.wideMode + visible: root.pageStack.wideMode anchors.top: parent.top anchors.bottom: parent.bottom - x: columnWidth - (width / 2) + x: root.columnWidth - (width / 2) width: 2 property int dragRange: (Kirigami.Units.gridUnit * 5) @@ -38,11 +38,11 @@ Kirigami.ApplicationWindow { onPositionChanged: mouse => { if (mouse.x > _lastX) { - columnWidth = Math.min((defaultColumnWidth + dragRange), - columnWidth + (mouse.x - _lastX)); + root.columnWidth = Math.min((root.defaultColumnWidth + dragRange), + root.columnWidth + (mouse.x - _lastX)); } else if (mouse.x < _lastX) { - columnWidth = Math.max((defaultColumnWidth - dragRange), - columnWidth - (_lastX - mouse.x)); + root.columnWidth = Math.max((root.defaultColumnWidth - dragRange), + root.columnWidth - (_lastX - mouse.x)); } } diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/layerOverDrawer.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/layerOverDrawer.qml index 5230648574..1d211ee0bb 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/layerOverDrawer.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/layerOverDrawer.qml @@ -8,7 +8,7 @@ import QtQuick import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami -/** +/*! * This example show how to do a sidebar of an application what gets covered by new layers that might get pushed * in the PageRow layer system. * When a drawer is in sidebar mode, when it goes modal (for instance when on mobile) will still behave like a drawer diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/pagePoolFirstColumn.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/pagePoolFirstColumn.qml index 0dc8b1aaee..d149c4d007 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/pagePoolFirstColumn.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/pagePoolFirstColumn.qml @@ -3,6 +3,7 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 @@ -26,31 +27,32 @@ Kirigami.ApplicationWindow { Component { id: firstPage Kirigami.ScrollablePage { - id: root + id: rootPage title: i18n("Sidebar") property list pageActions: [ Kirigami.PagePoolAction { text: i18n("Page1") icon.name: "speedometer" pagePool: mainPagePool - basePage: root + basePage: rootPage page: "SimplePage.qml" }, Kirigami.PagePoolAction { text: i18n("Page2") icon.name: "window-duplicate" pagePool: mainPagePool - basePage: root + basePage: rootPage page: "MultipleColumnsGallery.qml" } ] ListView { - model: pageActions + model: rootPage.pageActions keyNavigationEnabled: true activeFocusOnTab: true reuseItems: true delegate: QQC2.ItemDelegate { id: delegate + required property Kirigami.PagePoolAction modelData action: modelData width: parent.width } diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/pushpopclear.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/pushpopclear.qml index eac83ab798..e1cf5efc31 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/pushpopclear.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/pushpopclear.qml @@ -15,19 +15,19 @@ Kirigami.ApplicationWindow { actions: [ Kirigami.Action { text: "push" - onTriggered: pageStack.push(secondPageComponent) + onTriggered: root.pageStack.push(secondPageComponent) }, Kirigami.Action { text: "pop" - onTriggered: pageStack.pop() + onTriggered: root.pageStack.pop() }, Kirigami.Action { text: "clear" - onTriggered: pageStack.clear() + onTriggered: root.pageStack.clear() }, Kirigami.Action { text: "replace" - onTriggered: pageStack.replace(secondPageComponent) + onTriggered: root.pageStack.replace(secondPageComponent) } ] } diff --git a/local/recipes/kde/kirigami/source/examples/simpleexamples/simpleChatApp.qml b/local/recipes/kde/kirigami/source/examples/simpleexamples/simpleChatApp.qml index bbb06be05b..77cc942bc0 100644 --- a/local/recipes/kde/kirigami/source/examples/simpleexamples/simpleChatApp.qml +++ b/local/recipes/kde/kirigami/source/examples/simpleexamples/simpleChatApp.qml @@ -3,6 +3,7 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts @@ -18,7 +19,7 @@ Kirigami.ApplicationWindow { property int footerHeight: Math.round(Kirigami.Units.gridUnit * 2.5) globalDrawer: Kirigami.GlobalDrawer { - contentItem.implicitWidth: columnWidth + contentItem.implicitWidth: root.columnWidth modal: true drawerOpen: false isMenu: true @@ -41,7 +42,7 @@ Kirigami.ApplicationWindow { contextDrawer: Kirigami.OverlayDrawer { id: contextDrawer //they can depend on the page like that or be defined directly here - edge: Qt.application.layoutDirection === Qt.RightToLeft ? Qt.LeftEdge : Qt.RightEdge + edge: Application.layoutDirection === Qt.RightToLeft ? Qt.LeftEdge : Qt.RightEdge modal: !root.wideScreen onModalChanged: drawerOpen = !modal handleVisible: root.controlsVisible @@ -111,6 +112,8 @@ Kirigami.ApplicationWindow { reuseItems: true model: 50 delegate: QQC2.ItemDelegate { + required property int modelData + text: "Person " + modelData width: parent.width } @@ -124,12 +127,10 @@ Kirigami.ApplicationWindow { QQC2.ItemDelegate { text: "Group call" icon.name: "call-start" - width: parent.width } QQC2.ItemDelegate { text: "Send Attachment" icon.name: "mail-attachment" - width: parent.width } } } @@ -175,6 +176,8 @@ Kirigami.ApplicationWindow { model: 30 reuseItems: true delegate: QQC2.ItemDelegate { + required property int modelData + required property int index text: "#Channel " + modelData checkable: true checked: channelsList.currentIndex === index @@ -226,7 +229,7 @@ Kirigami.ApplicationWindow { color: Kirigami.Theme.backgroundColor } footer: QQC2.Control { - height: footerHeight + height: root.footerHeight padding: Kirigami.Units.smallSpacing background: Rectangle { color: Kirigami.Theme.backgroundColor @@ -265,15 +268,19 @@ Kirigami.ApplicationWindow { model: 30 reuseItems: true delegate: Item { + id: channelDelegate + + required property int modelData + height: Kirigami.Units.gridUnit * 4 ColumnLayout { x: Kirigami.Units.gridUnit anchors.verticalCenter: parent.verticalCenter QQC2.Label { - text: modelData % 2 ? "John Doe" : "John Applebaum" + text: channelDelegate.modelData % 2 ? "John Doe" : "John Applebaum" } QQC2.Label { - text: "Message " + modelData + text: "Message " + channelDelegate.modelData } } } diff --git a/local/recipes/kde/kirigami/source/examples/staticcmake/src/main.qml b/local/recipes/kde/kirigami/source/examples/staticcmake/src/main.qml index 0593f8266b..ac1fd56345 100644 --- a/local/recipes/kde/kirigami/source/examples/staticcmake/src/main.qml +++ b/local/recipes/kde/kirigami/source/examples/staticcmake/src/main.qml @@ -5,7 +5,6 @@ */ import QtQuick -import QtQuick.Layouts import org.kde.kirigami as Kirigami Kirigami.ApplicationWindow { diff --git a/local/recipes/kde/kirigami/source/examples/wheelhandler/FlickableUsage.qml b/local/recipes/kde/kirigami/source/examples/wheelhandler/FlickableUsage.qml index 4144e4df80..24ef7b9800 100644 --- a/local/recipes/kde/kirigami/source/examples/wheelhandler/FlickableUsage.qml +++ b/local/recipes/kde/kirigami/source/examples/wheelhandler/FlickableUsage.qml @@ -1,6 +1,7 @@ /* SPDX-FileCopyrightText: 2021 Noah Davis * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 @@ -57,10 +58,14 @@ QQC2.ApplicationWindow { Repeater { model: 1000 delegate: Rectangle { + id: delegate + + required property int index + implicitWidth: wheelHandler.horizontalStepSize implicitHeight: wheelHandler.verticalStepSize gradient: Gradient { - orientation: index % 2 ? Gradient.Vertical : Gradient.Horizontal + orientation: delegate.index % 2 ? Gradient.Vertical : Gradient.Horizontal GradientStop { position: 0; color: Qt.rgba(Math.random(), Math.random(), Math.random(), 1) } GradientStop { position: 1; color: Qt.rgba(Math.random(), Math.random(), Math.random(), 1) } } diff --git a/local/recipes/kde/kirigami/source/logo.png b/local/recipes/kde/kirigami/source/logo.png index a63448dd83..0a07a04d2c 100644 Binary files a/local/recipes/kde/kirigami/source/logo.png and b/local/recipes/kde/kirigami/source/logo.png differ diff --git a/local/recipes/kde/kirigami/source/metainfo.yaml b/local/recipes/kde/kirigami/source/metainfo.yaml index d67b7f6f21..86fe678cfb 100644 --- a/local/recipes/kde/kirigami/source/metainfo.yaml +++ b/local/recipes/kde/kirigami/source/metainfo.yaml @@ -13,7 +13,7 @@ deprecated: false release: true logo: logo.png libraries: - - cmake: KF6::Kirigami + - cmake: KF6::Kirigami cmakename: KF6Kirigami irc: kde-kirigami mailinglist: plasma-devel diff --git a/local/recipes/kde/kirigami/source/poqm/ar/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ar/libkirigami6_qt.po index 606f3efaa7..4d41326af6 100644 --- a/local/recipes/kde/kirigami/source/poqm/ar/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ar/libkirigami6_qt.po @@ -1,9 +1,9 @@ +# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025, 2026 Zayed Al-Saidi # Safa Alfulaij , 2017, 2018. -# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Zayed Al-Saidi msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-14 11:30+0400\n" +"PO-Revision-Date: 2026-02-19 08:18+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -15,243 +15,216 @@ msgstr "" "X-Generator: Lokalize 23.08.5\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "‏%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "أرسِل بريد الإلكتروني إلى %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "شاركنا" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "تبرّع" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "أبلغ عن علّة" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "حقوق النسخ" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "الرّخصة:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "الترخيص: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "المكتبات المستخدمة" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" -msgstr "المؤلفين" +msgstr "المؤلفون" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "أظهر صور المطور" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "إشادات" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "المترجمون" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "حول %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "أنهِ" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "إجراءات أخرى" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "أزل الوسم" +msgid "Remove" +msgstr "أزِل" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "إجراءات" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "اعرض المساعدة السياقية" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "عُد" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "أغلق الشريط الجانبي" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "افتح الشريط الجانبي" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "يحمّل..." -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" -msgstr "كلمة السّرّ" +msgstr "كلمة السر" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" -msgstr "أخف كلمة السّرّ" +msgstr "أخفِ كلمة السر" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" -msgstr "أظهر كلمة السّرّ" +msgstr "أظهر كلمة السر" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "أغلق القائمة" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "افتح القائمة" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "عُد" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "تَقَدَّم" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "شغّل هذا الإجراء عن طريق %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "‏%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "ابحث..." -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "ابحث" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "مسح سجل البحث" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "انسخ" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "حدّد الكلّ" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "اكتمل" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "تحذير" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "خطأ" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "ملاحظة" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "أغلق" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "أغلق الخزنة" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "افتح الخزنة" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "أغلق" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "تنقّل للخلف" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "تنقّل للأمام" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "افتح الوصلة %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "افتح الوصلة" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "انسخ الوصلة إلى الحافظة" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "أغلق" @@ -273,6 +246,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "كيوت %2 (بني على %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "اكتمل" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "تحذير" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "خطأ" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "ملاحظة" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "أغلق" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "أغلق الخزنة" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "افتح الخزنة" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "أغلق" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "أغلق" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "إعدادات" diff --git a/local/recipes/kde/kirigami/source/poqm/ast/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ast/libkirigami6_qt.po index e3f57c256a..f000fdaec5 100644 --- a/local/recipes/kde/kirigami/source/poqm/ast/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ast/libkirigami6_qt.po @@ -13,166 +13,194 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 23.08.4\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Llicencia:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Llicencia: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Biblioteques n'usu" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Creitos" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Traductores" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Más aiciones" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Aiciones" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Atrás" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Zarrar la barra llateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Abrir la barra llateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Cargando…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Contraseña" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close drawer" +msgctxt "HandleButton|" msgid "Close menu" -msgstr "" +msgstr "Zarrar el caxón" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Buscar…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutItem|" #| msgid "Copyright" @@ -180,79 +208,29 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copyright" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Zarrar el caxón" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Abrir el caxón" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "" @@ -274,6 +252,46 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Zarrar el caxón" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Abrir el caxón" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Configuración" diff --git a/local/recipes/kde/kirigami/source/poqm/az/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/az/libkirigami6_qt.po index 63964db48d..4d67a231e0 100644 --- a/local/recipes/kde/kirigami/source/poqm/az/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/az/libkirigami6_qt.po @@ -13,29 +13,29 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 22.04.3\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1 ünvanına e-poçt göndərin" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Iştirak edin" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Report Bug…" @@ -43,104 +43,107 @@ msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Xəta hesabatı göndərin..." -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Müəllif hüquqları" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Lisenziya:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Lisenziya: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "İstifadə olunan kitabxana" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Müəlliflər" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Müəllifin fotoşəklləri" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Minnətdarlıq" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Tərcüməçilər" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 haqqında" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Çıxış" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Daha Çox Fəaliyyətlər" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Yarlığı silin" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Əməllər" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Geriyə" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Yandakı paneli bağla" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Yan paneli açın" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Yüklənir..." -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Şifrə" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -148,7 +151,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "Şifrə" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -156,38 +159,69 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "Şifrə" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Close" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Bağlamaq" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Open" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Açmaq" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Geriyə hərəkət" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "İrəli hərəkət" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Axtarış" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Axtarış" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutItem|" #| msgid "Copyright" @@ -195,74 +229,18 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "Müəllif hüquqları" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Bağlamaq" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Çəkməcəni bağlayın" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Çəkməcəni açın" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Bağlamaq" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Geriyə hərəkət" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "İrəli hərəkət" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Open" @@ -270,16 +248,16 @@ msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Açmaq" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Keçidi mübadilə yaddaşına kopyalayın" -#: dialogs/Dialog.qml:442 +#: dialogs/DialogHeaderTopContent.qml:104 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Close" -msgctxt "Dialog|@action:button close dialog" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Bağlamaq" @@ -307,6 +285,59 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (%3 versiyadan yığılıb)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Bağlamaq" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Çəkməcəni bağlayın" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Çəkməcəni açın" + +#: templates/OverlaySheet.qml:298 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close" +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Bağlamaq" + +#, fuzzy +#~| msgctxt "OverlayDrawer|" +#~| msgid "Close" +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Bağlamaq" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Ayarlar" diff --git a/local/recipes/kde/kirigami/source/poqm/bg/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/bg/libkirigami6_qt.po index e5cf5a22e7..2a31f500cf 100644 --- a/local/recipes/kde/kirigami/source/poqm/bg/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/bg/libkirigami6_qt.po @@ -1,9 +1,9 @@ -# SPDX-FileCopyrightText: 2022, 2023, 2024 Mincho Kondarev +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025, 2026 Mincho Kondarev msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2024-12-05 22:21+0100\n" +"PO-Revision-Date: 2026-02-16 18:12+0100\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -11,246 +11,219 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" -"X-Generator: Lokalize 25.03.70\n" +"X-Generator: Lokalize 26.03.70\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Изпращане на имейл до %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Включете се" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Дарение" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Подаване на сигнал за грешка" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Авторско право" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Лиценз:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Лиценз: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Използвани библиотеки" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Автори" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Показване на снимки на автора" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Кредити" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Преводачи" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Относно %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Изход" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" -msgstr "Повече действия" +msgstr "Допълнителни действия" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Премахване на етикет" +msgid "Remove" +msgstr "Премахване" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Действия" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Показване на контекстна помощ" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Назад" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Затваряне на страничната лента" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Отваряне на страничната лента" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Зареждане…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Парола" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Скриване на паролата" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Показване на паролата" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Затваряне на меню" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Отваряне на меню" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Навигиране обратно" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Навигиране напред" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Задействане на това действие с %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Търсене…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Търсене" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Изчистване на търсенето" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Копиране" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Избиране на всичко" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Успех" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Предупреждение" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Грешка" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Бележка" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Затваряне" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Затваряне на чекмеджето" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Отваряне на чекмеджето" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Затваряне" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Навигиране обратно" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Навигиране напред" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Отваряне на връзка %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Отваряне на връзка" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Копиране на връзката в клипборда" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Затваряне" @@ -271,3 +244,43 @@ msgstr "Система за прозорци %1" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (изграден върху %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Успех" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Предупреждение" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Грешка" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Бележка" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Затваряне" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Затваряне на чекмеджето" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Отваряне на чекмеджето" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Затваряне" diff --git a/local/recipes/kde/kirigami/source/poqm/ca/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ca/libkirigami6_qt.po index 0cc951463d..42da1cd9cd 100644 --- a/local/recipes/kde/kirigami/source/poqm/ca/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ca/libkirigami6_qt.po @@ -1,16 +1,16 @@ # Translation of libkirigami6_qt.po to Catalan -# Copyright (C) 2016-2024 This_file_is_part_of_KDE +# Copyright (C) 2016-2026 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Josep M. Ferrer -# Antoni Bella Pérez , 2016, 2020, 2021. -# Empar Montoro Martín , 2019. +# SPDX-FileCopyrightText: 2016, 2020, 2021 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín +# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Josep M. Ferrer msgid "" msgstr "" "Project-Id-Version: kirigami\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"PO-Revision-Date: 2024-12-02 08:58+0100\n" +"PO-Revision-Date: 2026-02-16 10:31+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -20,245 +20,218 @@ msgstr "" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.04.0\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Envia un correu a %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Col·laboreu-hi" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" -msgstr "Donatius" +msgstr "Donació" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Informeu d'un error" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Drets d'autor" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Llicència:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Llicència: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Biblioteques en ús" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autors" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Mostra les fotos dels autors" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Atribucions" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Traductors" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Quant al %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Surt" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Més accions" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Elimina l'etiqueta" +msgid "Remove" +msgstr "Elimina" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Accions" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Mostra l'ajuda contextual" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Enrere" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Tanca la barra lateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Obre la barra lateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "S'està carregant…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Contrasenya" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Oculta la contrasenya" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Mostra la contrasenya" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Tanca el menú" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Obre el menú" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navega enrere" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navega endavant" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Activa aquesta acció amb %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Cerca…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Cerca" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Neteja la cerca" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copia" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Selecciona-ho tot" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Correcte" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Avís" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Error" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Nota" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Tanca" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Tanca el calaix" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Obre el calaix" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Tanca" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navega enrere" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navega endavant" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Obre l'enllaç %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Obre l'enllaç" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copia l'enllaç al porta-retalls" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Tanca" @@ -279,3 +252,43 @@ msgstr "El sistema de finestres %1" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (construïdes amb %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Correcte" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Avís" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Error" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Nota" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Tanca" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Tanca el calaix" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Obre el calaix" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Tanca" diff --git a/local/recipes/kde/kirigami/source/poqm/ca@valencia/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ca@valencia/libkirigami6_qt.po index d5fa178209..f90d47d63e 100644 --- a/local/recipes/kde/kirigami/source/poqm/ca@valencia/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ca@valencia/libkirigami6_qt.po @@ -1,16 +1,16 @@ # Translation of libkirigami6_qt.po to Catalan (Valencian) -# Copyright (C) 2016-2024 This_file_is_part_of_KDE +# Copyright (C) 2016-2026 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Josep M. Ferrer -# Antoni Bella Pérez , 2016, 2020, 2021. -# Empar Montoro Martín , 2019. +# SPDX-FileCopyrightText: 2016, 2020, 2021 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín +# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Josep M. Ferrer msgid "" msgstr "" "Project-Id-Version: kirigami\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"PO-Revision-Date: 2024-12-02 08:58+0100\n" +"PO-Revision-Date: 2026-02-16 10:31+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" @@ -20,245 +20,218 @@ msgstr "" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.04.0\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Envia un correu a %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Col·laboreu-hi" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" -msgstr "Donatius" +msgstr "Donació" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Informeu d'un error" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Drets d'autoria" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Llicència:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Llicència: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Biblioteques en ús" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autoria" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Mostra les fotos dels autors" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Atribucions" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Equip de traducció" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Quant a %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Ix" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Més accions" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Elimina l'etiqueta" +msgid "Remove" +msgstr "Elimina" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Accions" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Mostra l'ajuda contextual" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Arrere" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Tanca la barra lateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Obri la barra lateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "S'està carregant…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Contrasenya" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Oculta la contrasenya" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Mostra la contrasenya" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Tanca el menú" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Obri el menú" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navega arrere" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navega avant" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Activa esta acció amb %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Busca…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Busca" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Neteja la busca" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copia" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Selecciona-ho tot" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Correcte" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Avís" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "S'ha produït un error" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Nota" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Tanca" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Tanca el calaix" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Obri el calaix" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Tanca" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navega arrere" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navega avant" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Obri l'enllaç %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Obri l'enllaç" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copia l'enllaç a dins del porta-retalls" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Tanca" @@ -279,3 +252,43 @@ msgstr "El sistema de finestres %1" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (construïdes amb %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Correcte" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Avís" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "S'ha produït un error" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Nota" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Tanca" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Tanca el calaix" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Obri el calaix" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Tanca" diff --git a/local/recipes/kde/kirigami/source/poqm/cs/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/cs/libkirigami6_qt.po index aa1a308973..e0c3c738ae 100644 --- a/local/recipes/kde/kirigami/source/poqm/cs/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/cs/libkirigami6_qt.po @@ -1,259 +1,229 @@ -# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2023, 2024 Vít Pelčák +# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2023, 2024, 2025, 2026 Vít Pelčák # SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Vit Pelcak msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-10-18 11:29+0200\n" -"Last-Translator: Vit Pelcak \n" +"PO-Revision-Date: 2026-02-27 21:21+0100\n" +"Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 24.08.2\n" +"X-Generator: Lokalize 25.12.2\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Odeslat e-mail na %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Zapojte se" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Přispět" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Nahlásit chybu" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Autorská práva" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licence:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licence: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Použité knihovny" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autoři" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Zobrazit fotografie autora" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Poděkování" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Překladatelé" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "O aplikaci %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Ukončit" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Další činnosti" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Odstranit značku" +msgid "Remove" +msgstr "Odstranit" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Činnosti" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Zobrazit kontextovou nápovědu" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Zpět" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Zavřít postranní panel" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Otevřít postranní panel" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Probíhá načítání…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Heslo" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Skrýt heslo" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Zobrazit heslo" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Uzavřít nabídku" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Otevřít nabídku" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Přejít zpět" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Přejít vpřed" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Hledat…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Hledat" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Vyprázdnit hledání" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopírovat" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Vybrat vše" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlaySheet|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Zavřít" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Zavřít šuplík" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Otevřít šuplík" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Zavřít" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Přejít zpět" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Přejít vpřed" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Otevřít odkaz %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Otevřít odkaz" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopírovat odkaz do schránky" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Zavřít" @@ -274,3 +244,43 @@ msgstr "Okenní systém %1" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (sestaveno oproti %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Úspěch" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Varování" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Chyba" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Poznámka" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Zavřít" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Zavřít šuplík" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Otevřít šuplík" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Zavřít" diff --git a/local/recipes/kde/kirigami/source/poqm/da/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/da/libkirigami6_qt.po index 7a9a74886e..29d43f93b7 100644 --- a/local/recipes/kde/kirigami/source/poqm/da/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/da/libkirigami6_qt.po @@ -14,246 +14,236 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 24.08.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Send en e-mail til %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Bliv involveret" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Donér" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Rapportér en fejl" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Ophavsret" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licens:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licens: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Biblioteker i brug" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Ophavsmænd" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Vis fotos af ophavsmænd" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Bidragsydere" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Oversættere" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Om %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Afslut" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Flere handlinger" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Fjern mærke" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Handlinger" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Vis kontekstbaseret hjælp" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Tilbage" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Luk sidepanel" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Åbn sidepanel" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Indlæser…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Adgangskode" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Skjul adgangskode" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Vis adgangskode" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Luk menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Åbn menu" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navigér tilbage" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navigér fremad" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Søg…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Søg" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Ryd søgning" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopiér" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Vælg alle" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlaySheet|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Luk" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Luk skuffe" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Åbn skuffe" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Luk" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigér tilbage" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navigér fremad" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Åbn link %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Åbn link" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopiér link til udklipsholderen" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +#, fuzzy +#| msgctxt "OverlaySheet|@action:button close dialog" +#| msgid "Close" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Luk" @@ -275,6 +265,53 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (bygget op imod %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "OverlaySheet|@action:button close dialog" +#| msgid "Close" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Luk" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Luk skuffe" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Åbn skuffe" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Luk" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Luk" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/de/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/de/libkirigami6_qt.po index 8b39c3a4d3..f9c49bebae 100644 --- a/local/recipes/kde/kirigami/source/poqm/de/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/de/libkirigami6_qt.po @@ -1,258 +1,233 @@ +# SPDX-FileCopyrightText: 2016, 2018, 2020-2023 Frederik Schwarzer +# SPDX-FileCopyrightText: 2017-2021 Burkhard Lück +# SPDX-FileCopyrightText: 2021, 2025, 2026 Alois Spitzbart # SPDX-FileCopyrightText: 2024 Johannes Obermayr -# Frederik Schwarzer , 2016, 2018, 2020, 2021, 2022, 2023. -# Burkhard Lück , 2017, 2018, 2019, 2020, 2021. -# Alois Spitzbart , 2021. +# SPDX-FileCopyrightText: 2025 Flori G +# SPDX-FileCopyrightText: 2026 Alexander Becker msgid "" msgstr "" "Project-Id-Version: libkirigami6_qt\n" -"PO-Revision-Date: 2024-12-23 19:07+0100\n" -"Last-Translator: Johannes Obermayr \n" +"PO-Revision-Date: 2026-03-13 00:13+0100\n" +"Last-Translator: Alexander Becker \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 25.03.70\n" +"X-Generator: Lokalize 25.12.3\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Eine E-Mail an %1 senden" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Machen Sie mit" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Spenden" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" -msgstr "Probleme oder Wünsche berichten" +msgstr "Ein Problem melden" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Lizenz:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Lizenz: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Verwendete Bibliotheken" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autoren" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Fotos von Autoren anzeigen" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Danksagungen" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Übersetzer" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Über %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Beenden" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Weitere Aktionen" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Stichwort entfernen" +msgid "Remove" +msgstr "Entfernen" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Aktionen" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Kontexthilfe anzeigen" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Zurück" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Seitenleiste schließen" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Seitenleiste öffnen" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" -msgstr "Wird geladen ..." +msgstr "Wird geladen …" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Passwort" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Passwort ausblenden" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Passwort anzeigen" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Menü schließen" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Menü öffnen" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" -msgstr "Suchen ..." +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Zurück gehen" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Vorwärts gehen" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Diese Aktion mit %1 auslösen" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "Suchen …" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "Suchen" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Suche leeren" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopieren" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Alles auswählen" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Erfolg" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Warnung" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Fehler" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Anmerkung" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Schließen" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Seitenleiste schließen" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Seitenleiste öffnen" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Schließen" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Zurück gehen" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Vorwärts gehen" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Verknüpfung %1 öffnen" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Verknüpfung öffnen" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Verknüpfung in die Zwischenablage kopieren" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Schließen" @@ -274,6 +249,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (kompiliert gegen %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Erfolg" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Warnung" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Fehler" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Anmerkung" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Schließen" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Seitenleiste schließen" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Seitenleiste öffnen" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Schließen" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Schließen" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Einstellungen" diff --git a/local/recipes/kde/kirigami/source/poqm/el/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/el/libkirigami6_qt.po index 8ab6817621..56aca60caf 100644 --- a/local/recipes/kde/kirigami/source/poqm/el/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/el/libkirigami6_qt.po @@ -13,29 +13,29 @@ msgstr "" "X-Generator: Lokalize 20.04.2\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Αποστολή μηνύματος στο %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Ασχοληθείτε" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Report Bug…" @@ -43,89 +43,89 @@ msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Αναφορά σφάλματος…" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Άδεια χρήσης:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Άδεια χρήσης: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Βιβλιοθήκες σε χρήση" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Συγγραφείς" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Εμφάνιση φωτογραφιών συγγραφέων" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Ευχαριστίες" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Μεταφραστές" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Περίγραμμα %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Έξοδος" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Περισσότερες ενέργειες" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Ενέργειες" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Πίσω" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Κλείσιμο πλευρικής γραμμής" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 #, fuzzy #| msgctxt "GlobalDrawer|" #| msgid "Close Sidebar" @@ -133,17 +133,17 @@ msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Κλείσιμο πλευρικής γραμμής" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Κωδικός πρόσβασης" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -151,7 +151,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "Κωδικός πρόσβασης" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -159,38 +159,67 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "Κωδικός πρόσβασης" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Close" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Κλείσιμο" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Open" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Άνοιγμα" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Πλοήγηση προς τα πίσω" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Πλοήγηση προς τα εμπρός" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Αναζήτηση…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Αναζήτηση" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutItem|" #| msgid "Copyright" @@ -198,74 +227,18 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copyright" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlaySheet|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Κλείσιμο" - -#: controls/templates/OverlayDrawer.qml:128 -#, fuzzy -#| msgctxt "GlobalDrawer|" -#| msgid "Close Sidebar" -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Κλείσιμο πλευρικής γραμμής" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Κλείσιμο" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Πλοήγηση προς τα πίσω" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Πλοήγηση προς τα εμπρός" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Open" @@ -273,13 +246,16 @@ msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Άνοιγμα" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +#, fuzzy +#| msgctxt "InlineMessage|" +#| msgid "Close" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Κλείσιμο" @@ -301,6 +277,53 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (κατασκευάστηκε με βάση το %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Κλείσιμο" + +#: templates/OverlayDrawer.qml:148 +#, fuzzy +#| msgctxt "GlobalDrawer|" +#| msgid "Close Sidebar" +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Κλείσιμο πλευρικής γραμμής" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Κλείσιμο" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Κλείσιμο" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Ρυθμίσεις" diff --git a/local/recipes/kde/kirigami/source/poqm/en_GB/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/en_GB/libkirigami6_qt.po index 7bc63730c2..6d259ef07a 100644 --- a/local/recipes/kde/kirigami/source/poqm/en_GB/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/en_GB/libkirigami6_qt.po @@ -13,246 +13,236 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 24.08.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Send an email to %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Get Involved" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Donate" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Report a Bug" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licence:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licence: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Libraries in use" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Authors" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Show author photos" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Credits" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Translators" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "About %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Quit" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "More Actions" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Remove Tag" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Actions" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Show Contextual Help" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Back" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Close Sidebar" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Open Sidebar" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Loading…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Password" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Hide Password" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Show Password" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Close menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Open menu" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navigate Back" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navigate Forward" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Search…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Search" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Clear search" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copy" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Select All" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlaySheet|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Close" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Close drawer" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Open drawer" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Close" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigate Back" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navigate Forward" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Open link %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Open link" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copy Link to Clipboard" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +#, fuzzy +#| msgctxt "OverlaySheet|@action:button close dialog" +#| msgid "Close" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Close" @@ -274,6 +264,53 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (built against %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "OverlaySheet|@action:button close dialog" +#| msgid "Close" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Close" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Close drawer" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Open drawer" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Close" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Close" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Settings" diff --git a/local/recipes/kde/kirigami/source/poqm/eo/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/eo/libkirigami6_qt.po index 7dc4fb298e..fb8830496f 100644 --- a/local/recipes/kde/kirigami/source/poqm/eo/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/eo/libkirigami6_qt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kirigami\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2016-12-21 04:03+0100\n" -"PO-Revision-Date: 2024-12-27 17:40+0100\n" +"PO-Revision-Date: 2025-03-15 10:38+0100\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: Esperanto \n" "Language: eo\n" @@ -19,243 +19,233 @@ msgstr "" "X-Generator: translate-po (https://github.com/zcribe/translate-po)\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Sendi retmesaĝon al %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Implikiĝi" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Doni" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Raporti Cimon" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Kopirajto" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Permesilo:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Permesilo: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliotekoj en uzo" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Aŭtoroj" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Montri aŭtorajn fotojn" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Kreditoj" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Tradukistoj" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Pri %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Forlasi" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Pli da Agoj" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Forigi Etikedon" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Agoj" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Montri Kuntekstan Helpon" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Reen" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Fermi Flankbreton" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Malfermi Flankbreton" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Ŝargante…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Pasvorto" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Kaŝi Pasvorton" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Malkaŝi Pasvorton" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Fermi menuon" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Malfermi menuon" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navigi Reen" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navigi Antaŭen" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Serĉi" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Serĉi" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Klara serĉo" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopii" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Elekti Ĉiujn" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Sukceso" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Averto" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Eraro" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Noto" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Fermi" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Fermi tirkeston" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Malfermi tirkeston" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Fermi" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigi Reen" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navigi Antaŭen" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Malfermi ligilon %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Malfermi ligilon" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopii Ligilon al Tondujo" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Fermi" @@ -276,3 +266,43 @@ msgstr "La %1 fenestra sistemo" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (konstruita kontraŭ %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Sukceso" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Averto" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Eraro" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Noto" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Fermi" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Fermi tirkeston" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Malfermi tirkeston" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Fermi" diff --git a/local/recipes/kde/kirigami/source/poqm/es/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/es/libkirigami6_qt.po index 75d1e2857c..dafad53777 100644 --- a/local/recipes/kde/kirigami/source/poqm/es/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/es/libkirigami6_qt.po @@ -1,11 +1,14 @@ -# Translation of libkirigami6_qt to Spanish +# Spanish translations for libkirigami6_qt.po package. +# Copyright (C) 2016-2026 This file is copyright: +# This file is distributed under the same license as the kirigami package. # -# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Eloy Cuadra +# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Eloy Cuadra msgid "" msgstr "" "Project-Id-Version: libkirigami6_qt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"PO-Revision-Date: 2024-12-02 02:55+0100\n" +"POT-Creation-Date: 2026-02-16 01:28+0100\n" +"PO-Revision-Date: 2026-02-17 01:41+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -14,245 +17,218 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 25.12.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Enviar un correo electrónico a %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Involucrarse" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Hacer un donativo" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Informar de fallo" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licencia:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licencia: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliotecas en uso" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autores" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Mostrar fotos del autor" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Créditos" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Traductores" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Acerca de %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Salir" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Más acciones" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Eliminar etiqueta" +msgid "Remove" +msgstr "Eliminar" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Acciones" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Mostrar ayuda de contexto" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Atrás" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Cerrar la barra lateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Abrir la barra lateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" -msgstr "Cargando..." +msgstr "Cargando…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Contraseña" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Ocultar contraseña" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Mostrar contraseña" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Cerrar menú" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Abrir menú" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" -msgstr "Buscar..." +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Retroceder una página" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Avanzar una página" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Activar esta acción con %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "Buscar…" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "Buscar" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Borrar la búsqueda" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copiar" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Seleccionar todo" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Éxito" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Advertencia" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Error" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Nota" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Cerrar" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Cerrar cajón" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Abrir cajón" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Cerrar" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Retroceder una página" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Avanzar una página" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Abrir enlace %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Abrir enlace" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copiar enlace en el portapapeles" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Cerrar" @@ -274,66 +250,42 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (compilado para %3)" -#~ msgctxt "CategorizedSettings|" -#~ msgid "Settings" -#~ msgstr "Preferencias" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Éxito" -#~ msgctxt "CategorizedSettings|" -#~ msgid "Settings — %1" -#~ msgstr "Preferencias — %1" +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Advertencia" -#~ msgctxt "Avatar|" -#~ msgid "%1 — %2" -#~ msgstr "%1 — %2" +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Error" -#~ msgctxt "PageTab|" -#~ msgid "Current page. Progress: %1 percent." -#~ msgstr "Página actual. Avance: %1 por ciento." +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Nota" -#~ msgctxt "PageTab|" -#~ msgid "Navigate to %1. Progress: %2 percent." -#~ msgstr "Navegar hasta %1. Avance: %2 por ciento." +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Cerrar" -#~ msgctxt "PageTab|" -#~ msgid "Current page." -#~ msgstr "Página actual." +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Cerrar cajón" -#~ msgctxt "PageTab|" -#~ msgid "Navigate to %1. Demanding attention." -#~ msgstr "Navegar hasta %1. Solicitando atención." +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Abrir cajón" -#~ msgctxt "PageTab|" -#~ msgid "Navigate to %1." -#~ msgstr "Navegar hasta %1." - -#~ msgctxt "ToolBarApplicationHeader|" -#~ msgid "More Actions" -#~ msgstr "Más acciones" - -#~ msgctxt "AboutItem|" -#~ msgid "Visit %1's KDE Store page" -#~ msgstr "Visitar la página de %1 en KDE Store" - -#~ msgctxt "UrlButton|" -#~ msgid "Copy link address" -#~ msgstr "Copiar la dirección del enlace" - -#~ msgctxt "LoadingPlaceholder|" -#~ msgid "Still loading, please wait." -#~ msgstr "Todavía en carga. Espere por favor..." - -#~ msgctxt "AboutItem|" -#~ msgid "(%1)" -#~ msgstr "(%1)" - -#~ msgctxt "SearchField|" -#~ msgid "Search..." -#~ msgstr "Buscar..." - -#~ msgctxt "AboutPage|" -#~ msgid "%1 <%2>" -#~ msgstr "%1 <%2>" - -#~ msgctxt "ToolBarPageHeader|" -#~ msgid "More Actions" -#~ msgstr "Más acciones" +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Cerrar" diff --git a/local/recipes/kde/kirigami/source/poqm/et/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/et/libkirigami6_qt.po index ce4f1038a7..654f90f4ec 100644 --- a/local/recipes/kde/kirigami/source/poqm/et/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/et/libkirigami6_qt.po @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 20.08.1\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, fuzzy, qt-format #| msgctxt "AboutPage|" #| msgid "Send an email to %1" @@ -28,22 +28,22 @@ msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Saada e-kiri aadressile %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Copyright" @@ -51,7 +51,7 @@ msgctxt "AboutItem|" msgid "Copyright" msgstr "Autoriõigus" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 #, fuzzy #| msgctxt "AboutPage|" #| msgid "License:" @@ -59,7 +59,7 @@ msgctxt "AboutItem|" msgid "License:" msgstr "Litsents:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, fuzzy, qt-format #| msgctxt "AboutPage|" #| msgid "License: %1" @@ -67,7 +67,7 @@ msgctxt "AboutItem|" msgid "License: %1" msgstr "Litsents: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Libraries in use" @@ -75,7 +75,7 @@ msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Kasutatavad teegid" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Authors" @@ -83,12 +83,12 @@ msgctxt "AboutItem|" msgid "Authors" msgstr "Autorid" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Credits" @@ -96,7 +96,7 @@ msgctxt "AboutItem|" msgid "Credits" msgstr "Tunnustus" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Translators" @@ -104,7 +104,7 @@ msgctxt "AboutItem|" msgid "Translators" msgstr "Tõlkijad" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, fuzzy, qt-format #| msgctxt "AboutPage|" #| msgid "About" @@ -112,42 +112,42 @@ msgctxt "AboutPage|" msgid "About %1" msgstr "Teave" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Veel toiminguid" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Toimingud" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Tagasi" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Sulge külgriba" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 #, fuzzy #| msgctxt "GlobalDrawer|" #| msgid "Close Sidebar" @@ -155,17 +155,17 @@ msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Sulge külgriba" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Parool" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -173,7 +173,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "Parool" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -181,20 +181,52 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "Parool" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "GlobalDrawer|" #| msgid "Close Sidebar" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Sulge külgriba" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "GlobalDrawer|" +#| msgid "Close Sidebar" +msgctxt "HandleButton|" msgid "Open menu" +msgstr "Sulge külgriba" + +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Liigu tagasi" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Liigu edasi" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" msgstr "" -#: controls/SearchField.qml:86 +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "" + +#: controls/SearchField.qml:88 #, fuzzy #| msgctxt "SearchField|" #| msgid "Search" @@ -202,17 +234,17 @@ msgctxt "SearchField|" msgid "Search…" msgstr "Otsi" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Otsi" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Copyright" @@ -220,91 +252,32 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "Autoriõigus" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "GlobalDrawer|" -#| msgid "Close Sidebar" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Sulge külgriba" - -#: controls/templates/OverlayDrawer.qml:128 -#, fuzzy -#| msgctxt "GlobalDrawer|" -#| msgid "Close Sidebar" -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Sulge külgriba" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "GlobalDrawer|" -#| msgid "Close Sidebar" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Sulge külgriba" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Liigu tagasi" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Liigu edasi" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 +#: dialogs/DialogHeaderTopContent.qml:104 #, fuzzy #| msgctxt "GlobalDrawer|" #| msgid "Close Sidebar" -msgctxt "Dialog|@action:button close dialog" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Sulge külgriba" @@ -332,6 +305,62 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (ehitatud %3 peale)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "GlobalDrawer|" +#| msgid "Close Sidebar" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Sulge külgriba" + +#: templates/OverlayDrawer.qml:148 +#, fuzzy +#| msgctxt "GlobalDrawer|" +#| msgid "Close Sidebar" +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Sulge külgriba" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +#, fuzzy +#| msgctxt "GlobalDrawer|" +#| msgid "Close Sidebar" +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Sulge külgriba" + +#, fuzzy +#~| msgctxt "GlobalDrawer|" +#~| msgid "Close Sidebar" +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Sulge külgriba" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/eu/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/eu/libkirigami6_qt.po index 9021d453c8..01824de9c2 100644 --- a/local/recipes/kde/kirigami/source/poqm/eu/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/eu/libkirigami6_qt.po @@ -1,14 +1,14 @@ # Translation for libkirigami6_qt.po to Euskara/Basque (eu). -# Copyright (C) 2017-2024 This file is copyright: +# Copyright (C) 2017-2026 This file is copyright: # This file is distributed under the same license as the original file. -# SPDX-FileCopyrightText: 2023, 2024 KDE euskaratzeko proiektuko arduraduna +# SPDX-FileCopyrightText: 2023, 2024, 2025, 2026 KDE euskaratzeko proiektuaren arduraduna # # Translators: -# Iñigo Salvador Azurmendi , 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. +# Iñigo Salvador Azurmendi , 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026. msgid "" msgstr "" "Project-Id-Version: kirigami\n" -"PO-Revision-Date: 2024-12-02 23:03+0100\n" +"PO-Revision-Date: 2026-02-28 23:18+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" "Language: eu\n" @@ -17,245 +17,218 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 25.12.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Bidali e-posta honi: %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Engaia zaitez" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Egin dohaintza" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Akats baten berri ematea" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Lizentzia:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Lizentzia: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Erabiltzen ari diren liburutegiak" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Egileak" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Erakutsi egilearen argazkiak" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Merituak" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Itzultzaileak" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1(e)ri buruz" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Irten" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Ekintza gehiago" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Kendu etiketa" +msgid "Remove" +msgstr "Kendu" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Ekintzak" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Erakutsi testuinguru laguntza" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Atzera" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" -msgstr "Itxi alboko-barra" +msgstr "Itxi alboko barra" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" -msgstr "Itxi alboko-barra" +msgstr "Itxi alboko barra" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Zamatzen…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Pasahitza" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Ezkutatu pasahitza" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Erakutsi pasahitza" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Itxi menua" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Ireki menua" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Nabigatu atzera" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Nabigatu aurrera" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Eragin ekintza hau %1 erabiliz" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Bilatu..." -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Bilatu..." -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Garbitu bilaketa" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopiatu" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Hautatu dena" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Arrakasta" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Abisua" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Errorea" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Oharra" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Itxi" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Itxi tiradera" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Ireki tiradera" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Itxi" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Nabigatu atzera" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Nabigatu aurrera" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Iriki esteka, %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Ireki esteka" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopiatu esteka arbelera" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Itxi" @@ -277,6 +250,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (%3 erabiliz eraikia)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Arrakasta" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Abisua" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Errorea" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Oharra" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Itxi" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Itxi tiradera" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Ireki tiradera" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Itxi" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Itxi" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Ezarpenak" diff --git a/local/recipes/kde/kirigami/source/poqm/fi/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/fi/libkirigami6_qt.po index 71adbc4dd9..6ea6dd6403 100644 --- a/local/recipes/kde/kirigami/source/poqm/fi/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/fi/libkirigami6_qt.po @@ -14,246 +14,236 @@ msgstr "" "X-Generator: Lokalize 23.08.5\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Lähetä sähköpostia: %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Ota osaa" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Lahjoita" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Ilmoita viasta" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Tekijänoikeudet" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Lisenssi:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Lisenssi: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Käytetyt kirjastot" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Tekijät" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Näytä tekijöiden valokuvat" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Kiitokset" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Kääntäjät" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Tietoa – %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Lopeta" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Lisää toimintoja" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Poista luokitus" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Toiminnot" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Näytä kontekstiohje" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Takaisin" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Sulje sivupaneeli" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Avaa sivupaneeli" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Ladataan…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Salasana" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Piilota salasana" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Näytä salasana" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Sulje valikko" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Avaa valikko" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Siirry taaksepäin" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Siirry eteenpäin" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Etsi…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Etsi" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Tyhjennä haku" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopioi" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Valitse kaikki" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlaySheet|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Sulje" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Sulje laatikko" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Avaa laatikko" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Sulje" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Siirry taaksepäin" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Siirry eteenpäin" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Avaa linkki %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Avaa linkki" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopioi linkki leikepöydälle" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +#, fuzzy +#| msgctxt "OverlaySheet|@action:button close dialog" +#| msgid "Close" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Sulje" @@ -275,6 +265,53 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (koostettu kirjastolla %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "OverlaySheet|@action:button close dialog" +#| msgid "Close" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Sulje" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Sulje laatikko" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Avaa laatikko" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Sulje" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Sulje" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Asetukset" diff --git a/local/recipes/kde/kirigami/source/poqm/fr/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/fr/libkirigami6_qt.po index ae023f6a32..d07895c9d5 100644 --- a/local/recipes/kde/kirigami/source/poqm/fr/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/fr/libkirigami6_qt.po @@ -1,12 +1,12 @@ -# SPDX-FileCopyrightText: 2020, 2021, 2022, 2023, 2024 Xavier Besnard +# SPDX-FileCopyrightText: 2020, 2021, 2022, 2023, 2024, 2025, 2026 Xavier Besnard # Vincent Pinon , 2016, 2017. # Simon Depiets , 2018, 2019. msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-03 10:27+0100\n" +"PO-Revision-Date: 2026-02-20 16:17+0100\n" "Last-Translator: Xavier Besnard \n" -"Language-Team: French >\n" +"Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,247 +14,220 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: &\n" "X-Environment: kde\n" -"X-Generator: Lokalize 24.11.90\n" +"X-Generator: Lokalize 25.12.2\n" "X-Qt-Contexts: true\n" "X-Text-Markup: qtrich\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Envoyer un courriel à %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Impliquez vous" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Faire un don" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Signaler un bogue" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Droit d'auteur" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licence :" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licence : %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliothèques en cours d'utilisation" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Auteurs" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Afficher les photos des auteurs" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Crédits" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Traducteurs" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "À propos de %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Quitter" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Plus d'actions" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Supprimer une étiquette" +msgid "Remove" +msgstr "Supprimer" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Actions" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Afficher l'aide contextuelle" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Retour" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Fermer la barre latérale" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Ouvrir une barre latérale" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Chargement en cours..." -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Mot de passe" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Masquer un mot de passe" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Afficher un mot de passe" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Fermer le menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Ouvrir le menu" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Naviguer en arrière" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Naviguer en avant" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Déclencher cette action avec %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Rechercher…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Rechercher" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Effacer une recherche" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copier" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Tout sélectionner" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Réussite" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Avertissement" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Erreur" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Remarque" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Fermer" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Fermer un tiroir" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Ouvrir un tiroir" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Fermer" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigation arrière" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navigation avant" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Ouvrir le lien %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Ouvrir un lien" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copier un lien dans le presse-papier" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Fermer" @@ -276,6 +249,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (Compilé avec %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Réussite" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Avertissement" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Erreur" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Remarque" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Fermer" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Fermer un tiroir" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Ouvrir un tiroir" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Fermer" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Fermer" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Configuration" diff --git a/local/recipes/kde/kirigami/source/poqm/gl/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/gl/libkirigami6_qt.po index 021660addc..f9e7fd4f3c 100644 --- a/local/recipes/kde/kirigami/source/poqm/gl/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/gl/libkirigami6_qt.po @@ -1,256 +1,246 @@ -# SPDX-FileCopyrightText: 2023, 2024 Adrián Chaves (Gallaecio) +# SPDX-FileCopyrightText: 2023, 2024, 2025 Adrián Chaves (Gallaecio) # Adrián Chaves Fernández (Gallaecio) , 2017. msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-04 09:41+0100\n" -"Last-Translator: Adrián Chaves (Gallaecio) \n" +"PO-Revision-Date: 2025-03-19 13:12+0100\n" +"Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 24.12.3\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Enviar unha mensaxe de correo electrónico a %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Involucrarse" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Doar" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Informar dun fallo" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Dereitos de copia" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licenza:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licenza: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliotecas usadas" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autoría" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Amosar fotos das persoas autoras" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Recoñecementos" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Tradución" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Sobre %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Saír" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Máis accións" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Retirar a etiqueta" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Accións" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Amosar a axuda contextual" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Atrás" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Pechar a barra lateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Abrir a barra lateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Cargando…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Contrasinal" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Agochar o contrasinal" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Amosar o contrasinal" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Pechar o menú" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Abre o menú" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Volver" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Continuar" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Buscar…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Buscar" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Borrar a busca" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copiar" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Seleccionar todo" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Éxito" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Aviso" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Erro" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Nota" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Pechar" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Pechar o caixón" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Abrir o caixón" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Pechar" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Volver" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Continuar" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Abrir a ligazón %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Abrir a ligazón." -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copiar a ligazón no portapapeis" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Pechar" @@ -272,6 +262,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (construído sobre %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Éxito" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Aviso" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Erro" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Nota" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Pechar" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Pechar o caixón" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Abrir o caixón" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Pechar" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Pechar" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Configuración" diff --git a/local/recipes/kde/kirigami/source/poqm/he/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/he/libkirigami6_qt.po index fc2465d2c4..d6a5d26d7c 100644 --- a/local/recipes/kde/kirigami/source/poqm/he/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/he/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2024 Yaron Shahrabani +# SPDX-FileCopyrightText: 2024, 2025, 2026 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-02 07:26+0200\n" +"PO-Revision-Date: 2026-02-15 07:57+0200\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" @@ -12,245 +12,218 @@ msgstr "" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 25.12.1\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "שליחת דוא״ל אל %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "הצטרפות" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "תרומה" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "דיווח על תקלה" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "זכויות יוצרים" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "רישיון:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "רישיון: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "ספריות בשימוש" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "יוצרים" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "הצגת תמונות היוצרים" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "תודות" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "מתרגמים" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "על %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "יציאה" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "פעולות נוספות" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "הסרת תגית" +msgid "Remove" +msgstr "הסרה" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "פעולות" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "הצגת עזרה בהקשר" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "חזרה" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "סגירת סרגל צד" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "פתיחת סרגל צד" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "בטעינה…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "סיסמה" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "הסתרת סיסמה" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "הצגת סיסמה" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "סגירת התפריט" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "פתיחת התפריט" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "ניווט אחורה" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "ניווט קדימה" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "הזנקת הפעולה הזאת עם %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "חיפוש…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "חיפוש" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "פינוי החיפוש" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "העתקה" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "בחירה בהכול" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "הצלחה" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "אזהרה" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "שגיאה" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "הערה" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "סגירה" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "סגירת המגירה" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "פתיחת המגירה" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "סגירה" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "ניווט אחורה" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "ניווט קדימה" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "פתיחת הקישור %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "פתיחת קישור" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "העתקת הקישור ללוח הגזירים" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "סגירה" @@ -271,3 +244,47 @@ msgstr "מערכת החלונות %1" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (נבנה כנגד %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "הצלחה" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "אזהרה" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "שגיאה" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "הערה" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "סגירה" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "סגירת המגירה" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "פתיחת המגירה" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "סגירה" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "סגירה" diff --git a/local/recipes/kde/kirigami/source/poqm/hi/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/hi/libkirigami6_qt.po index 88c53da90d..ce7b33b85c 100644 --- a/local/recipes/kde/kirigami/source/poqm/hi/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/hi/libkirigami6_qt.po @@ -13,13 +13,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 21.08.0\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, fuzzy, qt-format #| msgctxt "AboutPage|" #| msgid "Send an email to %1" @@ -27,7 +27,7 @@ msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1 को ईमेल भेजें" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Get Involved" @@ -35,17 +35,17 @@ msgctxt "AboutItem|" msgid "Get Involved" msgstr "सहभाग लें" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Copyright" @@ -53,7 +53,7 @@ msgctxt "AboutItem|" msgid "Copyright" msgstr "सर्वाधिकार" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 #, fuzzy #| msgctxt "AboutPage|" #| msgid "License:" @@ -61,7 +61,7 @@ msgctxt "AboutItem|" msgid "License:" msgstr "अनुज्ञापत्र :" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, fuzzy, qt-format #| msgctxt "AboutPage|" #| msgid "License: %1" @@ -69,7 +69,7 @@ msgctxt "AboutItem|" msgid "License: %1" msgstr "अनुज्ञापत्र : %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Libraries in use" @@ -77,7 +77,7 @@ msgctxt "AboutItem|" msgid "Libraries in use" msgstr "उपयोग किए गए संग्रह" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Authors" @@ -85,7 +85,7 @@ msgctxt "AboutItem|" msgid "Authors" msgstr "लेखक" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Show author photos" @@ -93,7 +93,7 @@ msgctxt "AboutItem|" msgid "Show author photos" msgstr "लेखक की फोटोओं को दिखाएँ" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Credits" @@ -101,7 +101,7 @@ msgctxt "AboutItem|" msgid "Credits" msgstr "आभार सूची" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Translators" @@ -109,48 +109,48 @@ msgctxt "AboutItem|" msgid "Translators" msgstr "अनुवादक" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 के बारे में" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "बाहर जाएँ" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "अधिक क्रियाएँ" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "क्रियाएं" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "पीछे" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "बाजूपट्टी बंद करें" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 #, fuzzy #| msgctxt "GlobalDrawer|" #| msgid "Close Sidebar" @@ -158,17 +158,17 @@ msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "बाजूपट्टी बंद करें" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "कूटशब्द" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -176,7 +176,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "कूटशब्द" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -184,38 +184,67 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "कूटशब्द" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Close" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Close menu" msgstr "बंद करें" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Open" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Open menu" msgstr "खोलें" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "पीछे जाएँ" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "आगे जाएँ" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "खोजें…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "खोजें" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Copyright" @@ -223,77 +252,18 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "सर्वाधिकार" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "बंद करें" - -#: controls/templates/OverlayDrawer.qml:128 -#, fuzzy -#| msgctxt "GlobalDrawer|" -#| msgid "Close Sidebar" -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "बाजूपट्टी बंद करें" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "बंद करें" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "पीछे जाएँ" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "आगे जाएँ" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Open" @@ -301,16 +271,16 @@ msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "खोलें" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 +#: dialogs/DialogHeaderTopContent.qml:104 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Close" -msgctxt "Dialog|@action:button close dialog" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "बंद करें" @@ -338,6 +308,62 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "क्यूट %2 (%3 के प्रती निर्मित)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "बंद करें" + +#: templates/OverlayDrawer.qml:148 +#, fuzzy +#| msgctxt "GlobalDrawer|" +#| msgid "Close Sidebar" +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "बाजूपट्टी बंद करें" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close" +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "बंद करें" + +#, fuzzy +#~| msgctxt "OverlayDrawer|" +#~| msgid "Close" +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "बंद करें" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "विन्यास" diff --git a/local/recipes/kde/kirigami/source/poqm/hu/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/hu/libkirigami6_qt.po index 1483efc3da..8ab23ebf6e 100644 --- a/local/recipes/kde/kirigami/source/poqm/hu/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/hu/libkirigami6_qt.po @@ -1,9 +1,9 @@ # Kiszel Kristóf , 2017, 2018, 2020, 2021. -# SPDX-FileCopyrightText: 2021, 2022, 2024 Kristof Kiszel +# SPDX-FileCopyrightText: 2021-2022, 2024-2026 Kristof Kiszel msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-11-16 20:20+0100\n" +"PO-Revision-Date: 2026-06-28 22:14+0200\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -12,248 +12,218 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 26.04.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "E-mail küldése neki: %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Közreműködés" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Támogatás" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Hibabejelentés" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licenc:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licenc: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Felhasznált függvénykönyvtárak" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Szerzők" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "A szerző fényképének megjelenítése" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Köszönetnyilvánítás" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Fordítók" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Névjegy: %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Kilépés" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "További műveletek" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Címke eltávolítása" +msgid "Remove" +msgstr "Eltávolítás" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Műveletek" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Környezetfüggő súgó megjelenítése" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Vissza" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Oldalsáv bezárása" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Oldalsáv megnyitása" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Betöltés…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Jelszó" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Jelszó elrejtése" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Jelszó megjelenítése" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Menü bezárása" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Menü megnyitása" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Vissza" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Előre" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "A művelet a(z) %1 billentyű-kombinációval indítható el" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Keresés…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Keresés" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Keresés törlése" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Másolás" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Összes kijelölése" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlaySheet|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Bezárás" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Csúszómenü bezárása" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Csúszómenü megnyitása" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Bezárás" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Vissza" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Előre" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Hivatkozás megnyitása: %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Hivatkozás megnyitása" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Hivatkozás másolása a vágólapra" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Bezárás" @@ -275,6 +245,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (fordítva ezzel: %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Sikeres" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Figyelmeztetés" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Hiba" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Megjegyzés" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Bezárás" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Csúszómenü bezárása" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Csúszómenü megnyitása" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Bezárás" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Bezárás" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Beállítások" diff --git a/local/recipes/kde/kirigami/source/poqm/ia/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ia/libkirigami6_qt.po index e4acdd3136..2725e677db 100644 --- a/local/recipes/kde/kirigami/source/poqm/ia/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ia/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2017, 2019, 2020, 2021, 2022, 2023, 2024 giovanni +# SPDX-FileCopyrightText: 2017, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 giovanni msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-03 16:54+0100\n" +"PO-Revision-Date: 2026-02-16 12:26+0100\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" "Language: ia\n" @@ -13,243 +13,216 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 23.08.5\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Invia un message de e-posta a %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Sea involvite" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Dona" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Reporta un bug" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licentia:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licentia: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliothecas in uso" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autores" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Monstra photos de autor" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Gratias" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Traductores" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "A proposito de %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Abandona" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Ulterior Actiones" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Remove etiquetta" +msgid "Remove" +msgstr "Remove" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Actiones" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Monstra adjuta de contexto" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Retro" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Claude barra lateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Aperi barra lateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Cargante..." -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Contrasigno" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Cela Contrasigno" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Monstra Contrasigno" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Claude menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Aperi menu" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navigation de retro" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Naviga Avante" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Discatena iste action con %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Cerca…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Cerca" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Netta cerca" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copia" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Selige toto" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Successo" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Aviso" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Error" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Nota" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Claude" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Claude designator" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Aperi designator" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Claude" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigation de retro" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Naviga Avante" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Aperi ligamine %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Aperi ligamine" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copia ligame a area de transferentia" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Claude" @@ -271,6 +244,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (construite sur %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Successo" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Aviso" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Error" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Nota" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Claude" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Claude designator" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Aperi designator" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Claude" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Claude" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Preferentias" diff --git a/local/recipes/kde/kirigami/source/poqm/id/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/id/libkirigami6_qt.po index b660f93879..c57191627a 100644 --- a/local/recipes/kde/kirigami/source/poqm/id/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/id/libkirigami6_qt.po @@ -13,29 +13,29 @@ msgstr "" "X-Generator: Lokalize 21.12.3\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Kirim sebuah email ke %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Ikut Terlibat" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Report Bug…" @@ -43,104 +43,107 @@ msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Laporkan Bug..." -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Hak Cipta" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Lisensi:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Lisensi: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Pustaka lib yang digunakan" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Penulis" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Tampilkan foto penulis" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Kredit" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Penerjemah" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Tentang %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Berhenti" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Aksi Selebihnya" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Hapus Tag" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Aksi" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Mundur" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Tutup Bilah Sisi" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Buka Bilah Sisi" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Memuat..." -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Password" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -148,7 +151,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "Password" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -156,35 +159,69 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "Password" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 +#: controls/private/globaltoolbar/HandleButton.qml:24 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Close drawer" -msgctxt "PageRowGlobalToolBarUI|" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Tutup penggambar" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close drawer" +msgctxt "HandleButton|" msgid "Open menu" +msgstr "Tutup penggambar" + +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navigasi Mundur" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navigasi Maju" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" msgstr "" -#: controls/SearchField.qml:86 +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Cari..." -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Cari" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutItem|" #| msgid "Copyright" @@ -192,88 +229,32 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "Hak Cipta" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close drawer" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Tutup penggambar" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Tutup penggambar" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Buka penggambar" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close drawer" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Tutup penggambar" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigasi Mundur" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navigasi Maju" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Salin Tautan ke Papan Klip" -#: dialogs/Dialog.qml:442 +#: dialogs/DialogHeaderTopContent.qml:104 #, fuzzy #| msgctxt "OverlayDrawer|" #| msgid "Close drawer" -msgctxt "Dialog|@action:button close dialog" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Tutup penggambar" @@ -301,6 +282,59 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (dibangun terhadap %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close drawer" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Tutup penggambar" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Tutup penggambar" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Buka penggambar" + +#: templates/OverlaySheet.qml:298 +#, fuzzy +#| msgctxt "OverlayDrawer|" +#| msgid "Close drawer" +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Tutup penggambar" + +#, fuzzy +#~| msgctxt "OverlayDrawer|" +#~| msgid "Close drawer" +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Tutup penggambar" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Pengaturan" diff --git a/local/recipes/kde/kirigami/source/poqm/is/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/is/libkirigami6_qt.po index c9ab7a60e6..3b81af712f 100644 --- a/local/recipes/kde/kirigami/source/poqm/is/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/is/libkirigami6_qt.po @@ -1,10 +1,11 @@ -# SPDX-FileCopyrightText: 2024 Guðmundur Erlingsson +# SPDX-FileCopyrightText: 2024, 2025 Guðmundur Erlingsson +# SPDX-FileCopyrightText: 2025 Sveinn í Felli msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-08 17:44+0000\n" -"Last-Translator: Gummi \n" -"Language-Team: Icelandic \n" +"PO-Revision-Date: 2025-12-03 17:53+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -13,243 +14,218 @@ msgstr "" "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 23.08.5\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Senda tölvupóst til %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Taka þátt" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Styrkja" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Senda villutilkynningu" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Höfundarréttur" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Notkunarleyfi:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Notkunarleyfi: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Hugbúnaðarsöfn í notkun" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Höfundar" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Sýna myndir af höfundi" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Þátttakendur" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Þýðendur" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Um %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Hætta" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Fleiri aðgerðir" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Fjarlægja merki" +msgid "Remove" +msgstr "Fjarlægja" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Aðgerðir" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Sýna samhengishjálp" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Til baka" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Loka hliðarstiku" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Opna hliðarstiku" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Hleð inn…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Lykilorð" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Fela lykilorð" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Sýna lykilorð" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Loka valmynd" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Opna valmynd" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Fletta til baka" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Fletta áfram" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Leita…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Leita" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Hreinsa leit" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Afrita" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Velja allt" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Tókst" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Viðvörun" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Villa" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Athugasemd" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Loka" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Loka skúffu" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Opna skúffu" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Loka" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Fletta til baka" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Fletta áfram" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Opna tengil %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Opna tengil" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Afrita tengil á klippispjald" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Loka" @@ -270,3 +246,47 @@ msgstr "%1 gluggakerfið" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (byggt út frá %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Tókst" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Viðvörun" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Villa" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Athugasemd" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Loka" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Loka skúffu" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Opna skúffu" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Loka" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Loka" diff --git a/local/recipes/kde/kirigami/source/poqm/it/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/it/libkirigami6_qt.po index bfebb019a8..ddbb7bdc1f 100644 --- a/local/recipes/kde/kirigami/source/poqm/it/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/it/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Vincenzo Reale +# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Vincenzo Reale msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-02 18:47+0100\n" +"PO-Revision-Date: 2026-02-16 18:31+0100\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" "Language: it\n" @@ -10,246 +10,219 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 25.12.2\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Invia un messaggio di posta elettronica a %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Partecipa" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Fai una donazione" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Segnala un bug" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licenza:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licenza: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Librerie in uso" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autori" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Mostra le foto degli autori" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Riconoscimenti" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Traduttori" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Informazioni su %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Esci" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Altre azioni" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Rimuovi etichetta" +msgid "Remove" +msgstr "Rimuovi" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Azioni" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Mostra la guida contestuale" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Indietro" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Chiudi la barra laterale" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Apri la barra laterale" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Caricamento…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Password" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Nascondi la password" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Mostra la password" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Chiudi il menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Apri il menu" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Naviga indietro" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Naviga in avanti" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Attiva questa azione con %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Cerca…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Cerca" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Cancella la ricerca" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Copia" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Seleziona tutto" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Successo" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Avviso" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Errore" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Nota" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Chiudi" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Chiudi il cassetto" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Apri il cassetto" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Chiudi" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Naviga indietro" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Naviga in avanti" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Apri il collegamento %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Apri il collegamento" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copia il collegamento negli appunti" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Chiudi" @@ -271,6 +244,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (compilato con %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Successo" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Avviso" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Errore" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Nota" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Chiudi" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Chiudi il cassetto" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Apri il cassetto" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Chiudi" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Chiudi" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Impostazioni" diff --git a/local/recipes/kde/kirigami/source/poqm/ja/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ja/libkirigami6_qt.po index 1a781d38a0..72fcddefea 100644 --- a/local/recipes/kde/kirigami/source/poqm/ja/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ja/libkirigami6_qt.po @@ -1,10 +1,11 @@ +# SPDX-FileCopyrightText: 2026 Mint <5602mint@gmail.com> # Ryuichi Yamada , 2023. msgid "" msgstr "" "Project-Id-Version: libkirigamiplugin_qt\n" -"PO-Revision-Date: 2023-02-22 22:44+0900\n" -"Last-Translator: Ryuichi Yamada \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2026-05-10 19:26+0900\n" +"Last-Translator: Mint <5602mint@gmail.com>\n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -13,174 +14,205 @@ msgstr "" "X-Accelerator-Marker: &\n" "X-Text-Markup: qtrich\n" "X-Qt-Contexts: true\n" -"X-Generator: Lokalize 22.12.2\n" +"X-Generator: Lokalize 26.04.1\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1 にメールを送る" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "参加する" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "寄付する" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "バグを報告" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "著作権について" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "ライセンス:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "ライセンス: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "使用されているライブラリ" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "作者" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "作者の写真を表示" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "クレジット" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "翻訳者" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 について" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "終了" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "その他のアクション" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "タグを削除" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "アクション" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "戻る" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "サイドバーを閉じる" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "サイドバーを開く" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "読み込み中..." -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "パスワード" -#: controls/PasswordField.qml:45 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" -msgstr "パスワード" +msgstr "パスワードを非表示" -#: controls/PasswordField.qml:45 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" -msgstr "パスワード" +msgstr "パスワードを表示" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "メニューを閉じる" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "メニューを開く" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "戻る" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "進む" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "検索..." -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "検索" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "検索をクリア" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutItem|" #| msgid "Copyright" @@ -188,74 +220,18 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "著作権について" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "メニューを閉じる" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "ドロアを閉じる" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "ドロアを開く" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "メニューを閉じる" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "戻る" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "進む" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 #, fuzzy #| msgctxt "PageRowGlobalToolBarUI|" #| msgid "Open menu" @@ -263,16 +239,16 @@ msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "メニューを開く" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "リンクをクリップボードにコピー" -#: dialogs/Dialog.qml:442 +#: dialogs/DialogHeaderTopContent.qml:104 #, fuzzy #| msgctxt "PageRowGlobalToolBarUI|" #| msgid "Close menu" -msgctxt "Dialog|@action:button close dialog" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "メニューを閉じる" @@ -299,3 +275,49 @@ msgstr "%1 ウィンドウシステム" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (%3 を用いてビルドされました)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "メニューを閉じる" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "ドロアを閉じる" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "ドロアを開く" + +#: templates/OverlaySheet.qml:298 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "メニューを閉じる" diff --git a/local/recipes/kde/kirigami/source/poqm/ka/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ka/libkirigami6_qt.po index f4a6444688..1b5e763cfa 100644 --- a/local/recipes/kde/kirigami/source/poqm/ka/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ka/libkirigami6_qt.po @@ -11,245 +11,218 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Qt-Contexts: true\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.8\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1-სთვის ელფოსტის გაგზავნა" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "შემოგვიერთდით" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "შემოწირულობა" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "შეცდომის პატაკი" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "საავტორო უფლებები" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "ლიცენზია:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "ლიცენზია: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "გამოყენებული ბიბლიოთეკები" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "ავტორები" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "ავტორის ფოტოების ჩვენება" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "კრედიტები" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "მთარგმნელები" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1-ის შესახებ" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "დასრულება" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "მეტი ქმედება" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "ჭდის წაშლა" +msgid "Remove" +msgstr "წაშლა" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "ქმედებები" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "კონტექსტური დახმარების ჩვენება" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "უკან" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "გვერდითი ზოლის დახურვა" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "გვერდითი ზოლის გახსნა" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "ჩატვირთვა…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "პაროლი" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "პაროლის დამალვა" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "პაროლის ჩვენება" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "მენიუს დახურვა" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "მენიუს გახსნა" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "უკან გადასვლა" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "წინ გადასვლა" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "ამ ქმედების დატრიგერება %1-ით" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "ძებნა…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "ძებნა" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "ძიების გასუფთავება" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "კოპირება" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "ყველას მონიშვნა" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "წარმატება" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "გაფრთხილება" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "შეცდომა" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "შენიშვნა" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "დახურვა" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "უჯრის დახურვა" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "უჯრის გახსნა" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "დახურვა" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "უკან გადასვლა" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "წინ გადასვლა" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "ბმულის გახსნა %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "ბმულის გახსნა" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "ბმულის ბმულის ბაფერში კოპირება" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "დახურვა" @@ -271,6 +244,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (აგებულია %3-ით)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "წარმატება" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "გაფრთხილება" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "შეცდომა" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "შენიშვნა" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "დახურვა" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "უჯრის დახურვა" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "უჯრის გახსნა" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "დახურვა" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "დახურვა" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "&მორგება" diff --git a/local/recipes/kde/kirigami/source/poqm/ko/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ko/libkirigami6_qt.po index 5bfe1c1175..929e0618e6 100644 --- a/local/recipes/kde/kirigami/source/poqm/ko/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ko/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Shinjo Park +# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Shinjo Park msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-24 16:59+0100\n" +"PO-Revision-Date: 2026-04-26 21:35+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -10,246 +10,219 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.08.1\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1(%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1(으)로 이메일 보내기" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "참여하기" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "기부하기" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "버그 보고" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "저작권" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "라이선스:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "라이선스: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "사용하는 라이브러리" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "작성자" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "작성자 사진 표시" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "제작진" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "번역자" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 정보" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "끝내기" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "더 많은 동작" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "태그 삭제" +msgid "Remove" +msgstr "삭제" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "동작" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "문맥 도움말 표시" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "뒤로" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "사이드바 닫기" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "사이드바 열기" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "불러오는 중…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "암호" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "암호 숨기기" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "암호 표시" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "메뉴 닫기" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "메뉴 열기" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "이전 탐색" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "다음 탐색" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "%1 키로 이 동작 트리거" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1(%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "검색…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "검색" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "검색 지우기" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "복사" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "모두 선택" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "성공" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "경고" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "오류" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "메모" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "닫기" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "서랍 닫기" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "서랍 열기" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "닫기" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "이전 탐색" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "다음 탐색" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "%1 링크 열기" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "링크 열기" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "클립보드에 링크 복사" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "닫기" @@ -271,6 +244,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2(%3(으)로 빌드됨)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "성공" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "경고" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "오류" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "메모" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "닫기" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "서랍 닫기" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "서랍 열기" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "닫기" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "닫기" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "설정" diff --git a/local/recipes/kde/kirigami/source/poqm/lt/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/lt/libkirigami6_qt.po index 84c160ce70..f2019fb22c 100644 --- a/local/recipes/kde/kirigami/source/poqm/lt/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/lt/libkirigami6_qt.po @@ -12,254 +12,218 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" "X-Qt-Contexts: true\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.8\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Siųsti el. laišką, adresu %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Įsitraukti" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Paremti" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Pranešti apie klaidą" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Autorių teisės" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licencija:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licencija: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Naudojamos bibliotekos" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autoriai" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Rodyti autorių nuotraukas" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Padėkos" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Vertėjai" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Apie %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Išeiti" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Daugiau veiksmų" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Šalinti žymę" +msgid "Remove" +msgstr "Šalinti" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Veiksmai" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Rodyti kontekstinę pagalbą" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Atgal" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Užverti šoninę juostą" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Atverti šoninę juostą" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Įkeliama…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Slaptažodis" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Slėpti slaptažodį" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Rodyti slaptažodį" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Užverti meniu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Atverti meniu" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Naršyti atgal" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Naršyti pirmyn" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Paleiskite šį veiksmą naudodami %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Ieškoti…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Paieška" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Išvalyti paiešką" -#: controls/SelectableLabel.qml:179 -#, fuzzy -#| msgctxt "AboutItem|" -#| msgid "Copyright" +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" -msgstr "Autorių teisės" +msgstr "Kopijuoti" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" -msgstr "" +msgstr "Žymėti viską" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "Dialog|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Užverti" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Uždaryti stalčių" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Atidaryti stalčių" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "Dialog|@action:button close dialog" -#| msgid "Close" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Užverti" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Naršyti atgal" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Naršyti pirmyn" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Atverti nuorodą %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Atverti nuorodą" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopijuoti nuorodą į iškarpinę" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Užverti" @@ -281,6 +245,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (sudaryta remiantis %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Pavyko" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Įspėjimas" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Klaida" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Pastaba" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Užverti" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Uždaryti stalčių" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Atidaryti stalčių" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Užverti" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Užverti" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/lv/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/lv/libkirigami6_qt.po index 03d3f0526a..942efd91f7 100644 --- a/local/recipes/kde/kirigami/source/poqm/lv/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/lv/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2024 Toms Trasuns +# SPDX-FileCopyrightText: 2024, 2025, 2026 Toms Trasuns msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-10-14 14:32+0300\n" +"PO-Revision-Date: 2026-02-06 14:14+0200\n" "Last-Translator: Toms Trasuns \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -12,248 +12,220 @@ msgstr "" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -"X-Generator: Lokalize 24.08.1\n" +"X-Generator: Lokalize 25.12.1\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Sūtīt e-pasta vēstuli „%1“" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Iesaistīties" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Ziedot" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Ziņot par kļūdu" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Autortiesības" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licence:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licence: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Izmantotās bibliotēkas" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autori" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Rādīt autoru fotogrāfijas" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Veidotāji" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Tulkotāji" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Par „%1“" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Iziet" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Vairāk darbību" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Noņemt birku" +msgid "Remove" +msgstr "Noņemt" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Darbības" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Rādīt kontekstuālu palīdzību" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Atpakaļ" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Aizvērt sānu joslu" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Atvērt sānu joslu" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Ielādē…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Parole" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Slēpt paroli" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Rādīt paroli" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Aizvērt izvēlni" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Atvērt izvēlni" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Iet atpakaļ" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Iet uz priekšu" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Meklēt…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Meklēt" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Notīrīt meklēšanu" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopēt" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Atlasīt visu" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlaySheet|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Aizvērt" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Aizvērt atvilktni" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Atvērt atvilktni" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Aizvērt" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Iet atpakaļ" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Iet uz priekšu" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Atvērt saiti %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Atvērt saiti" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopēt saiti starpliktuvē" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Aizvērt" @@ -274,3 +246,47 @@ msgstr "„%1“ logu sistēma" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (būvēts pret %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Izdevās" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Uzmanību" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Kļūda" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Piezīme" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Aizvērt" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Aizvērt atvilktni" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Atvērt atvilktni" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Aizvērt" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Aizvērt" diff --git a/local/recipes/kde/kirigami/source/poqm/ml/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ml/libkirigami6_qt.po index 44fccb531e..88325daca5 100644 --- a/local/recipes/kde/kirigami/source/poqm/ml/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ml/libkirigami6_qt.po @@ -11,243 +11,216 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" msgstr "" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "" @@ -268,3 +241,43 @@ msgstr "" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "" diff --git a/local/recipes/kde/kirigami/source/poqm/nb/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/nb/libkirigami6_qt.po index 671b16cfa1..e8f6fbf3c1 100644 --- a/local/recipes/kde/kirigami/source/poqm/nb/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/nb/libkirigami6_qt.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "PO-Revision-Date: 2026-03-03 12:14+0100\n" "Last-Translator: Kjetil Sorlund \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/local/recipes/kde/kirigami/source/poqm/nl/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/nl/libkirigami6_qt.po index 453ca196b9..22d9a83519 100644 --- a/local/recipes/kde/kirigami/source/poqm/nl/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/nl/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Freek de Kruijf +# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Freek de Kruijf msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-02 13:29+0100\n" +"PO-Revision-Date: 2026-02-16 10:14+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" "Language: nl\n" @@ -11,245 +11,218 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 25.12.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Een e-mail sturen naar %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Doe mee" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Doneren" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Een bug rapporteren" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licentie:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licentie: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliotheken in gebruik" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Auteurs" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Foto's van auteurs tonen" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Dankbetuigingen" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Vertalers" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Info over %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Afsluiten" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Meer acties" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Tag verwijderen" +msgid "Remove" +msgstr "Verwijderen" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Acties" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Contextuele hulp tonen" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Terug" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Zijbalk sluiten" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Zijbalk openen" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Bezig met laden…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Wachtwoord" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Wachtwoord verbergen" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Wachtwoord tonen" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Menu sluiten" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Menu openen" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Naar achteren navigeren" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Naar voren navigeren" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Activeer deze actie met %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Zoeken…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Zoeken" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Zoeken wissen" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopie" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Alles selecteren" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Succes" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Waarschuwing" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Fout" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Notitie" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Sluiten" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Schuiflade sluiten" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Schuiflade openen" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Sluiten" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Naar achteren navigeren" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Naar voren navigeren" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Koppeling %1 openen" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Koppeling openen" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Koppeling naar klembord kopiëren" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Sluiten" @@ -271,6 +244,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (gebouwd tegen %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Succes" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Waarschuwing" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Fout" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Notitie" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Sluiten" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Schuiflade sluiten" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Schuiflade openen" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Sluiten" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Sluiten" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Instellingen" diff --git a/local/recipes/kde/kirigami/source/poqm/nn/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/nn/libkirigami6_qt.po index 23cc8e4666..cc1d199909 100644 --- a/local/recipes/kde/kirigami/source/poqm/nn/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/nn/libkirigami6_qt.po @@ -3,258 +3,230 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-10-27 14:43+0100\n" +"PO-Revision-Date: 2026-02-26 18:46+0100\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 26.03.70\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: qtrich\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Send e-post til %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Vert med" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Gje pengegåve" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Meld frå om feil" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Opphavsrett" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Lisens:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Lisens: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Brukte bibliotek" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Opphavspersonar" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Vis bilete av opphavspersonane" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Kreditering" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Omsetjarar" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Om %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Avslutt" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Fleire handlingar" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Fjern merkelapp" +msgid "Remove" +msgstr "Fjern" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Handlingar" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Vis emnehjelp" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Tilbake" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Lukk sidestolpen" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Opna sidestolpe" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Lastar …" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Passord" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Gøym passord" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Vis passord" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Lukk meny" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Opna meny" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Naviger tilbake" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Naviger fram" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Utløys handlinga med %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Søk …" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Søk" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Tøm søkjefelt" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopier" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Merk alle" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Lukk" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Lukk skuff" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Opna skuff" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Lukk" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Naviger tilbake" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Naviger fram" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Opna lenkja %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Opna lenkja" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopier lenkja til utklippstavla" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Lukk" @@ -275,3 +247,43 @@ msgstr "Vindaugssystemet %1" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (bygd mot %3)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Vellukka" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Åtvaring" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Feil" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Merknad" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Lukk" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Lukk skuff" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Opna skuff" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Lukk" diff --git a/local/recipes/kde/kirigami/source/poqm/pa/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/pa/libkirigami6_qt.po index b7bb7fca4f..d1b2f03356 100644 --- a/local/recipes/kde/kirigami/source/poqm/pa/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/pa/libkirigami6_qt.po @@ -13,131 +13,134 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 22.12.3\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1 ਨੂੰ ਈਮੇਲ ਭੇਜੋ" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "ਹਿੱਸਾ ਲਵੋ" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "ਦਾਨ ਕਰੋ" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "ਬੱਗ ਦੀ ਜਾਣਕਾਰੀ ਦਿਓ" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "ਕਾਪੀਰਾਈਟ" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "ਲਸੰਸ" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "ਲਸੰਸ: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "ਵਰਤਣ ਲਈ ਲਾਇਬਰੇਰੀਆਂ" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "ਲੇਖਕ" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "ਲੇਖਕ ਦੀ ਫ਼ੋਟੋ ਵੇਖਾਓ" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "ਮਾਣ" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "ਉਲੱਥਾਕਾਰ" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 ਬਾਰੇ" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "ਬਾਹਰ" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "ਹੋਰ ਕਾਰਵਾਈਆਂ" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "ਟੈਗ ਹਟਾਓ" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "ਕਾਰਵਾਈਆਂ" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "ਪਿੱਛੇ" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "ਬਾਹੀ ਬੰਦ ਕਰੋ" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "ਬਾਹੀ ਖੋਲ੍ਹੋ" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "…ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "ਪਾਸਵਰਡ" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -145,7 +148,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "ਪਾਸਵਰਡ" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -153,32 +156,69 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "ਪਾਸਵਰਡ" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "ਮੇਨੂ ਬੰਦ ਕਰੋ" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "ਮੇਨੂ ਖੋਲ੍ਹੋ" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "ਪਿੱਛੇ ਜਾਓ" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "ਅੱਗੇ ਜਾਓ" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "…ਖੋਜੋ" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "ਖੋਜੋ" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "ਖੋਜ ਮਿਟਾਓ" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutItem|" #| msgid "Copyright" @@ -186,74 +226,18 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "ਕਾਪੀਰਾਈਟ" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "ਮੇਨੂ ਬੰਦ ਕਰੋ" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "ਦਰਾਜ ਬੰਦ ਕਰੋ" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "ਦਰਾਜ ਖੋਲ੍ਹੋ" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "ਮੇਨੂ ਬੰਦ ਕਰੋ" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "ਪਿੱਛੇ ਜਾਓ" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "ਅੱਗੇ ਜਾਓ" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 #, fuzzy #| msgctxt "PageRowGlobalToolBarUI|" #| msgid "Open menu" @@ -261,16 +245,16 @@ msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "ਮੇਨੂ ਖੋਲ੍ਹੋ" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "ਲਿੰਕ ਕਲਿੱਪਬੋਰਡ ਵਿੱਚ ਕਾਪੀ ਕਰੋ" -#: dialogs/Dialog.qml:442 +#: dialogs/DialogHeaderTopContent.qml:104 #, fuzzy #| msgctxt "PageRowGlobalToolBarUI|" #| msgid "Close menu" -msgctxt "Dialog|@action:button close dialog" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "ਮੇਨੂ ਬੰਦ ਕਰੋ" @@ -298,6 +282,59 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (%3 ਨਾਲ ਬਣਾਇਆ)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "ਮੇਨੂ ਬੰਦ ਕਰੋ" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "ਦਰਾਜ ਬੰਦ ਕਰੋ" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "ਦਰਾਜ ਖੋਲ੍ਹੋ" + +#: templates/OverlaySheet.qml:298 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "ਮੇਨੂ ਬੰਦ ਕਰੋ" + +#, fuzzy +#~| msgctxt "PageRowGlobalToolBarUI|" +#~| msgid "Close menu" +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "ਮੇਨੂ ਬੰਦ ਕਰੋ" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "ਸੈਟਿੰਗਾਂ" diff --git a/local/recipes/kde/kirigami/source/poqm/pl/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/pl/libkirigami6_qt.po index b17f1e9f12..905afa965d 100644 --- a/local/recipes/kde/kirigami/source/poqm/pl/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/pl/libkirigami6_qt.po @@ -1,256 +1,229 @@ -# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2021, 2022, 2023, 2024 Łukasz Wojniłowicz +# SPDX-FileCopyrightText: 2016-2019, 2021-2026 Łukasz Wojniłowicz msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-07 12:24+0100\n" +"PO-Revision-Date: 2026-05-09 16:56+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" -"Language-Team: Polish \n" +"Language-Team: pl\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 26.04.0\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Wyślij wiadomość do %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" -msgstr "Współtwórz" +msgstr "Zacznij współtworzyć" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Darowizna" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Zgłoś błąd" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Prawa autorskie" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licencja:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licencja: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Używane biblioteki" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autorzy" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Pokaż zdjęcia autorów" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Zasługi" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Tłumacze" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" -msgstr "O %1" +msgstr "Przeczytaj o %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Zakończ" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Więcej działań" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Usuń znacznik" +msgid "Remove" +msgstr "Usuń" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Działania" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Pokaż pomoc podręczną" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Wstecz" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Zamknij pasek boczny" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Otwórz pasek boczny" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" -msgstr "Wczytywanie..." +msgstr "Wczytywanie…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Hasło" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Ukryj hasło" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Pokaż hasło" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Zamknij menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Otwórz menu" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" -msgstr "Poszukaj..." +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Przejdź wstecz" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Przejdź naprzód" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Wywołaj to działanie przy użyciu %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" #: controls/SearchField.qml:88 msgctxt "SearchField|" -msgid "Search" -msgstr "Szukaj" +msgid "Search…" +msgstr "Poszukaj…" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:90 +msgctxt "SearchField|" +msgid "Search" +msgstr "Poszukaj" + +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Wyczyść wyszukiwanie" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Skopiuj" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Zaznacz wszystko" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Powodzenie" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Ostrzeżenie" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Błąd" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Uwaga" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Zamknij" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Zamknij szufladę" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Otwórz szufladę" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Zamknij" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Przejdź wstecz" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Przejdź naprzód" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Otwórz odnośnik %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Otwórz odnośnik" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Skopiuj odnośnik do schowka" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Zamknij" @@ -272,6 +245,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (zbudowany na %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Powodzenie" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Ostrzeżenie" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Błąd" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Uwaga" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Zamknij" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Zamknij szufladę" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Otwórz szufladę" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Zamknij" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Zamknij" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Ustawienia" diff --git a/local/recipes/kde/kirigami/source/poqm/pt/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/pt/libkirigami6_qt.po index 0101f6a6fe..71afdfc5e6 100644 --- a/local/recipes/kde/kirigami/source/poqm/pt/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/pt/libkirigami6_qt.po @@ -15,131 +15,134 @@ msgstr "" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Enviar um e-mail para %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Envolva-se" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Doar" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Comunicar um Erro" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "'Copyright'" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licença:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licença: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliotecas usadas" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autores" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Mostrar as fotografias dos autores" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Créditos" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Tradutores" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Acerca do %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Sair" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Mais Acções" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Remover a Marca" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Acções" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Recuar" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Fechar a Barra Lateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Abrir a Barra Lateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "A carregar…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Senha" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -147,7 +150,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "Senha" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -155,32 +158,69 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "Senha" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "Fechar o menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "Abrir o menu" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navegar para Trás" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navegar para a Frente" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Procurar…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Procurar" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Limpar a pesquisa" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutItem|" #| msgid "Copyright" @@ -188,74 +228,18 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "'Copyright'" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Fechar o menu" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Fechar a área" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Abrir a área" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Fechar o menu" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navegar para Trás" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navegar para a Frente" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 #, fuzzy #| msgctxt "PageRowGlobalToolBarUI|" #| msgid "Open menu" @@ -263,16 +247,16 @@ msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Abrir o menu" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copiar a Ligação para a Área de Transferência" -#: dialogs/Dialog.qml:442 +#: dialogs/DialogHeaderTopContent.qml:104 #, fuzzy #| msgctxt "PageRowGlobalToolBarUI|" #| msgid "Close menu" -msgctxt "Dialog|@action:button close dialog" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Fechar o menu" @@ -300,6 +284,59 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (compilado com o %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Fechar o menu" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Fechar a área" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Abrir a área" + +#: templates/OverlaySheet.qml:298 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Fechar o menu" + +#, fuzzy +#~| msgctxt "PageRowGlobalToolBarUI|" +#~| msgid "Close menu" +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Fechar o menu" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Configuração" diff --git a/local/recipes/kde/kirigami/source/poqm/pt_BR/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/pt_BR/libkirigami6_qt.po index d8b6b21a02..f820ac7f51 100644 --- a/local/recipes/kde/kirigami/source/poqm/pt_BR/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/pt_BR/libkirigami6_qt.po @@ -6,12 +6,14 @@ # André Marcelo Alvarenga , 2018, 2019. # Thiago Masato Costa Sueto , 2021. # SPDX-FileCopyrightText: 2023 Geraldo Simiao +# SPDX-FileCopyrightText: 2025, 2026 Guilherme Marçal Silva +# SPDX-FileCopyrightText: 2025, 2026 Marcus Gama msgid "" msgstr "" "Project-Id-Version: libkirigami2plugin_qt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"PO-Revision-Date: 2023-10-28 00:30-0300\n" -"Last-Translator: Geraldo Simiao \n" +"PO-Revision-Date: 2026-04-17 02:43-0300\n" +"Last-Translator: Guilherme Marçal Silva \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -19,259 +21,220 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 23.08.1\n" +"X-Generator: Lokalize 25.12.3\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Enviar e-mail para %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Participe" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Doar" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Relatar erro" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licença:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licença: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Bibliotecas em uso" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autores" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Mostrar as fotos dos autores" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Créditos" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Tradutores" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Sobre %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Sair" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Mais ações" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Remover etiqueta" +msgid "Remove" +msgstr "Remover" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Ações" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" -msgstr "" +msgstr "Exibir ajuda contextual" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Voltar" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Fechar barra lateral" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Abrir barra lateral" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" -msgstr "Carregando..." +msgstr "Carregando…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Senha" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Ocultar senha" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Mostrar senha" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Fechar menu" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Abrir menu" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" -msgstr "Pesquisar..." +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Voltar" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Avançar" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Ative esta ação com %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "Pesquisar…" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "Pesquisar" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Limpar pesquisa" -#: controls/SelectableLabel.qml:179 -#, fuzzy -#| msgctxt "AboutItem|" -#| msgid "Copyright" +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" -msgstr "Copyright" +msgstr "Copiar" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" -msgstr "" +msgstr "Selecionar tudo" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Fechar menu" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Fechar gaveta" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Abrir gaveta" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Fechar menu" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Voltar" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Avançar" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Abrir link %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" -msgstr " Abrir link" +msgstr "Abrir link" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copiar link para a área de transferência" -#: dialogs/Dialog.qml:442 -#, fuzzy -#| msgctxt "PageRowGlobalToolBarUI|" -#| msgid "Close menu" -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" -msgstr "Fechar menu" +msgstr "Fechar" #: platform/settings.cpp:219 #, qt-format @@ -291,6 +254,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (compilado com %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Sucesso" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Aviso" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Erro" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Nota" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Fechar" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Fechar gaveta" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Abrir gaveta" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Fechar" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Fechar" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Configurações" diff --git a/local/recipes/kde/kirigami/source/poqm/ro/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ro/libkirigami6_qt.po index 2e942ef74c..4cbf572527 100644 --- a/local/recipes/kde/kirigami/source/poqm/ro/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ro/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# Sergiu Bivol , 2020, 2021, 2022. +# SPDX-FileCopyrightText: 2020, 2021, 2022, 2026 Sergiu Bivol msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2022-12-28 20:59+0000\n" +"PO-Revision-Date: 2026-03-31 13:55+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -11,303 +11,287 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 25.12.3\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Trimite scrisoare către %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Implică-te" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" -msgstr "" +msgstr "Donați" -#: controls/AboutItem.qml:245 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Report Bug…" +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" -msgstr "Raportează defect…" +msgstr "Raportați un defect" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Drept de autor" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licență:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licență: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Biblioteci folosite" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autori" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Arată pozele autorilor" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Mulțumiri" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Traducători" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Despre %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Termină" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Acțiuni suplimentare" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Elimină marcajul" +msgid "Remove" +msgstr "Elimină" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Acțiuni" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" -msgstr "" +msgstr "Arată ajutor contextual" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Înapoi" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Închide bara laterală" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Deschide bara laterală" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Se încarcă…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Parolă" -#: controls/PasswordField.qml:45 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" -msgstr "Parolă" +msgstr "Ascunde parola" -#: controls/PasswordField.qml:45 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" -msgstr "Parolă" +msgstr "Arată parola" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" -msgstr "Închide" +msgstr "Închide meniul" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Open" -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" -msgstr "Deschide" +msgstr "Deschide meniul" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navighează înapoi" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navighează înainte" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Declanșați această acțiune cu %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Caută…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Caută" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" -msgstr "" +msgstr "Șterge căutarea" -#: controls/SelectableLabel.qml:179 -#, fuzzy -#| msgctxt "AboutItem|" -#| msgid "Copyright" +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" -msgstr "Drept de autor" +msgstr "Copiază" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" -msgstr "" +msgstr "Selectează tot" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Închide" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Închide sertarul" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Deschide sertarul" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Închide" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navighează înapoi" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navighează înainte" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" -msgstr "" +msgstr "Deschide legătura %1" -#: controls/UrlButton.qml:35 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Open" +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" -msgstr "Deschide" +msgstr "Deschide legătura" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Copiază legătura în clipboard" -#: dialogs/Dialog.qml:442 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Închide" #: platform/settings.cpp:219 -#, fuzzy, qt-format -#| msgctxt "Settings|" -#| msgid "KDE Frameworks %1" +#, qt-format msgctxt "Kirigami::Platform::Settings|" msgid "KDE Frameworks %1" msgstr "KDE Frameworks %1" #: platform/settings.cpp:221 -#, fuzzy, qt-format -#| msgctxt "Settings|" -#| msgid "The %1 windowing system" +#, qt-format msgctxt "Kirigami::Platform::Settings|" msgid "The %1 windowing system" msgstr "Sistemul de ferestre %1" #: platform/settings.cpp:222 -#, fuzzy, qt-format -#| msgctxt "Settings|" -#| msgid "Qt %2 (built against %3)" +#, qt-format msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (construit cu %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Succes" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Avertisment" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Eroare" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Notă" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Închide" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Închide sertarul" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Deschide sertarul" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Închide" + +#, fuzzy +#~| msgctxt "OverlayDrawer|" +#~| msgid "Close" +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Închide" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Configurări" diff --git a/local/recipes/kde/kirigami/source/poqm/ru/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ru/libkirigami6_qt.po index 31fd970ce6..6f7085b9ad 100644 --- a/local/recipes/kde/kirigami/source/poqm/ru/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ru/libkirigami6_qt.po @@ -1,13 +1,13 @@ # Alexander Potashev , 2016, 2017, 2019. -# Alexander Yavorsky , 2019, 2020, 2021, 2024. +# SPDX-FileCopyrightText: 2019, 2020, 2021, 2024, 2025, 2026 Alexander Yavorsky # Мария Шикунова , 2022, 2023. -# SPDX-FileCopyrightText: 2024 Olesya Gerasimenko +# SPDX-FileCopyrightText: 2024, 2025 Olesya Gerasimenko msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-09-05 15:47+0300\n" -"Last-Translator: Olesya Gerasimenko \n" -"Language-Team: Basealt Translation Team\n" +"PO-Revision-Date: 2026-02-17 18:49+0200\n" +"Last-Translator: Alexander Yavorskiy \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,254 +15,218 @@ msgstr "" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.12.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Отправить письмо по адресу %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Присоединиться к команде" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Сделать пожертвование" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Сообщить об ошибке" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Авторские права" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Лицензия:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Лицензия: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Используемые библиотеки" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Авторы" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Показать фотографии авторов" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Благодарности" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Переводчики" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "О программе %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Выход" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Больше действий" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Удаление метки" +msgid "Remove" +msgstr "Убрать" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Действия" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Показать контекстную справку" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Назад" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Закрыть боковую панель" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Открыть боковую панель" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Загрузка…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Пароль" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Скрыть пароль" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Показать пароль" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Закрыть меню" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Открыть меню" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Перейти назад" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Перейти вперёд" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Вызвать это действие комбинацией клавиш %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Поиск…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Поиск" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Очистить поиск" -#: controls/SelectableLabel.qml:179 -#, fuzzy -#| msgctxt "AboutItem|" -#| msgid "Copyright" +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" -msgstr "Авторские права" +msgstr "Копировать" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" -msgstr "" +msgstr "Выбрать все" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "Dialog|@action:button close dialog" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Закрыть" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Закрыть панель" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Открыть панель" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "Dialog|@action:button close dialog" -#| msgid "Close" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Закрыть" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Перейти назад" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Перейти вперёд" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Открыть ссылку %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Открыть ссылку" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Копировать ссылку в буфер обмена" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Закрыть" @@ -284,6 +248,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (собрана с версией %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Успешно" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Предупреждение" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Ошибка" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Примечание" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Закрыть" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Закрыть панель" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Открыть панель" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Закрыть" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Закрыть" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Параметры" diff --git a/local/recipes/kde/kirigami/source/poqm/sa/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sa/libkirigami6_qt.po index a18d58e20c..2e1327b472 100644 --- a/local/recipes/kde/kirigami/source/poqm/sa/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sa/libkirigami6_qt.po @@ -13,243 +13,236 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n>1);\n" "X-Generator: Lokalize 24.08.2\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1 इत्यस्मै ईमेल प्रेषयन्तु" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "सम्मिलित हो जाओ" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "वितरणं" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "एकं दोषं प्रतिवेदयतु" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "प्रतिलिपि अधिकार" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "अनुज्ञापत्रम् :" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "अनुज्ञापत्रम् : %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "प्रयुक्ताः पुस्तकालयाः" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "लेखकाः" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "लेखकस्य छायाचित्रं दर्शयतु" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "श्रेयः" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "अनुवादकाः" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 इत्यस्य विषये" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "परिजहातु" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "अधिकानि क्रियाः" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "टैग हटाएँ" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "कर्माणि" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "सन्दर्भसहायतां दर्शयतु" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "पृष्ठभागः" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "पार्श्वपट्टिकां बन्दं कुर्वन्तु" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "पार्श्वपट्टिका उद्घाटयन्तु" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "लोडिंग…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "समाभाष्" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "गुप्तशब्दं गोपयन्तु" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "गुप्तशब्दं दर्शयतु" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Close menu" +msgctxt "HandleButton|" msgid "Close menu" msgstr "मेनू बन्दं कुर्वन्तु" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +#, fuzzy +#| msgctxt "PageRowGlobalToolBarUI|" +#| msgid "Open menu" +msgctxt "HandleButton|" msgid "Open menu" msgstr "मेनू उद्घाटयन्तु" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Back इति नेविगेट् कुर्वन्तु" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "अग्रे गच्छन्तु" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "अन्वेषण…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "अन्वेषण" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "अन्वेषणं स्पष्टं कुरुत" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "प्रतिलिपि" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "All इति चिनोतु" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "सफलता" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "चेतवानी" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "त्रुटि" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "टीका" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "पिधानं करोतु" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "दराजं बन्दं कुर्वन्तु" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "दराजं उद्घाटयन्तु" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "पिधानं करोतु" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Back इति नेविगेट् कुर्वन्तु" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "अग्रे गच्छन्तु" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "%1 इति लिङ्क् उद्घाटयन्तु" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "लिङ्कं उद्घाटयन्तु" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "क्लिप्बोर्ड् मध्ये लिङ्कं प्रतिलिख्यताम्" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +#, fuzzy +#| msgctxt "InlineMessage|" +#| msgid "Close" +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "पिधानं करोतु" @@ -270,3 +263,47 @@ msgstr "%1 विण्डोिंग् प्रणाली" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (%3 विरुद्धं निर्मितम्) ." + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "सफलता" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "चेतवानी" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "त्रुटि" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "टीका" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "पिधानं करोतु" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "दराजं बन्दं कुर्वन्तु" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "दराजं उद्घाटयन्तु" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "पिधानं करोतु" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "पिधानं करोतु" diff --git a/local/recipes/kde/kirigami/source/poqm/sk/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sk/libkirigami6_qt.po index ed562d5196..03528773fe 100644 --- a/local/recipes/kde/kirigami/source/poqm/sk/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sk/libkirigami6_qt.po @@ -14,345 +14,291 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Lokalize 21.08.1\n" "X-Qt-Contexts: true\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" -msgstr "" +msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 -#, fuzzy, qt-format -#| msgctxt "AboutPage|" -#| msgid "Send an email to %1" +#: controls/AboutItem.qml:186 +#, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Odoslať email na adresu %1" -#: controls/AboutItem.qml:222 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Get Involved" +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Zapojiť sa" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" -msgstr "" +msgstr "Donate" -#: controls/AboutItem.qml:245 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Report Bug…" +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Nahlásiť chybu..." -#: controls/AboutItem.qml:258 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Copyright" +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "License:" +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licencia:" -#: controls/AboutItem.qml:324 -#, fuzzy, qt-format -#| msgctxt "AboutPage|" -#| msgid "License: %1" +#: controls/AboutItem.qml:336 +#, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licencia: %1" -#: controls/AboutItem.qml:335 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Libraries in use" +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Použité knižnice" -#: controls/AboutItem.qml:365 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Authors" +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Autori" -#: controls/AboutItem.qml:375 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Show author photos" +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Zobraziť fotografie autora" -#: controls/AboutItem.qml:386 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Credits" +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Zásluhy" -#: controls/AboutItem.qml:398 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Translators" +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Preklady" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "O %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Ukončiť" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Viac akcií" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "" +msgid "Remove" +msgstr "Odstrániť" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Akcie" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" -msgstr "" +msgstr "Zobraziť kontextovú nápovedu" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Späť" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Zatvoriť bočný panel" -#: controls/GlobalDrawer.qml:620 -#, fuzzy -#| msgctxt "GlobalDrawer|" -#| msgid "Close Sidebar" +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Zatvoriť bočný panel" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" -msgstr "" +msgstr "Načítava sa…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Heslo" -#: controls/PasswordField.qml:45 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Heslo" -#: controls/PasswordField.qml:45 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Heslo" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Zatvoriť" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Open" -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Otvoriť" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navigovať späť" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navigovať dopredu" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Trigger this action with %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Hľadať..." -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Hľadať" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" -msgstr "" +msgstr "Vymazať hľadanie" -#: controls/SelectableLabel.qml:179 -#, fuzzy -#| msgctxt "AboutPage|" -#| msgid "Copyright" +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" -msgstr "Copyright" +msgstr "Kopírovať" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" -msgstr "" +msgstr "Vybrať všetko" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Zatvoriť" - -#: controls/templates/OverlayDrawer.qml:128 -#, fuzzy -#| msgctxt "GlobalDrawer|" -#| msgid "Close Sidebar" -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Zatvoriť bočný panel" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Zatvoriť" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigovať späť" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navigovať dopredu" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" -msgstr "" +msgstr "Open link %1" -#: controls/UrlButton.qml:35 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Open" +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Otvoriť" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" -msgstr "" +msgstr "Kopírovať do schránky" -#: dialogs/Dialog.qml:442 -#, fuzzy -#| msgctxt "OverlayDrawer|" -#| msgid "Close" -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Zatvoriť" #: platform/settings.cpp:219 -#, fuzzy, qt-format -#| msgctxt "Settings|" -#| msgid "KDE Frameworks %1" +#, qt-format msgctxt "Kirigami::Platform::Settings|" msgid "KDE Frameworks %1" msgstr "KDE Frameworky %1" #: platform/settings.cpp:221 -#, fuzzy, qt-format -#| msgctxt "Settings|" -#| msgid "The %1 windowing system" +#, qt-format msgctxt "Kirigami::Platform::Settings|" msgid "The %1 windowing system" msgstr "The %1 systém okien" #: platform/settings.cpp:222 -#, fuzzy, qt-format -#| msgctxt "Settings|" -#| msgid "Qt %2 (built against %3)" +#, qt-format msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (zostavené s %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Úspech" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Varovanie" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Chyba" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Poznámka" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Zatvoriť" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Zatvoriť bočný panel" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Otvoriť vysuvaciu ponuku" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Zatvoriť" + +#, fuzzy +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Zatvoriť" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Nastavenia" #, fuzzy -#~| msgctxt "CategorizedSettings|" -#~| msgid "Settings" #~ msgctxt "CategorizedSettings|" #~ msgid "Settings — %1" #~ msgstr "Nastavenia" @@ -386,8 +332,6 @@ msgstr "Qt %2 (zostavené s %3)" #~ msgstr "Viac akcií" #, fuzzy -#~| msgctxt "AboutPage|" -#~| msgid "Visit %1's KDE Store page" #~ msgctxt "AboutItem|" #~ msgid "Visit %1's KDE Store page" #~ msgstr "Navštívte stránku obchodu KDE %1" @@ -397,8 +341,6 @@ msgstr "Qt %2 (zostavené s %3)" #~ msgstr "Skopírovať adresu odkazu" #, fuzzy -#~| msgctxt "AboutPage|" -#~| msgid "(%1)" #~ msgctxt "AboutItem|" #~ msgid "(%1)" #~ msgstr "(%1)" diff --git a/local/recipes/kde/kirigami/source/poqm/sl/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sl/libkirigami6_qt.po index 4f6e7bf0d4..ef5d1458f0 100644 --- a/local/recipes/kde/kirigami/source/poqm/sl/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sl/libkirigami6_qt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2024-12-02 06:34+0100\n" +"PO-Revision-Date: 2026-02-16 06:55+0100\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" "Language: sl\n" @@ -17,245 +17,218 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n" "%100<=4 ? 2 : 3);\n" "X-Qt-Contexts: true\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.8\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Pošljite e-pošto za %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Sodelujte" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Donirajte" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Poročajte o napaki" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Dovoljenje:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Dovoljenje: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Knjižnice v rabi" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Avtorji" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Prikaži fotografije avtorjev" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Zasluge" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Prevajalci" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "O programu %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Zapusti" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Več dejanj" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Odstrani značko" +msgid "Remove" +msgstr "Odstrani" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Dejanja" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Prikaži kontekstno pomoč" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Nazaj" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Zapri stransko letvico" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Odpri stransko letvico" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Nalaganje…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Geslo" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Skrij geslo" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Prikaži geslo" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Zapri meni" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Odpri meni" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Krmari nazaj" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Krmari naprej" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Sproži to dejavnost s %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Poišči …" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Išči" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Počisti iskanje" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopiraj" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Izberi vse" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Uspeh" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Opozorilo" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Napaka" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Opomba" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Zapri" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Zapri predal" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Odpri predal" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Zapri" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Krmari nazaj" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Krmari naprej" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Odpri povezavo %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Odpri povezavo" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopiraj povezavo na odložišče" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Zapri" @@ -277,6 +250,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (izgradnja za %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Uspeh" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Opozorilo" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Napaka" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Opomba" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Zapri" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Zapri predal" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Odpri predal" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Zapri" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Zapri" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Nastavitve" diff --git a/local/recipes/kde/kirigami/source/poqm/sr/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sr/libkirigami6_qt.po index a2947eca9d..93cfaf840f 100644 --- a/local/recipes/kde/kirigami/source/poqm/sr/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sr/libkirigami6_qt.po @@ -17,86 +17,86 @@ msgstr "" "X-Environment: kde\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 #, fuzzy #| msgctxt "ContextDrawer|" #| msgid "Actions" @@ -104,159 +104,138 @@ msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Радње" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Радње" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Назад" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Иди назад" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Иди напред" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" msgstr "" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Иди назад" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Иди напред" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "" @@ -278,6 +257,46 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/sr@ijekavian/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sr@ijekavian/libkirigami6_qt.po index 700fc4b484..ece908f12c 100644 --- a/local/recipes/kde/kirigami/source/poqm/sr@ijekavian/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sr@ijekavian/libkirigami6_qt.po @@ -17,86 +17,86 @@ msgstr "" "X-Environment: kde\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 #, fuzzy #| msgctxt "ContextDrawer|" #| msgid "Actions" @@ -104,159 +104,138 @@ msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Радње" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Радње" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Назад" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Иди назад" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Иди напред" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" msgstr "" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Иди назад" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Иди напред" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "" @@ -278,6 +257,46 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/sr@ijekavianlatin/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sr@ijekavianlatin/libkirigami6_qt.po index f8affaa4c4..167ef49642 100644 --- a/local/recipes/kde/kirigami/source/poqm/sr@ijekavianlatin/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sr@ijekavianlatin/libkirigami6_qt.po @@ -17,86 +17,86 @@ msgstr "" "X-Environment: kde\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 #, fuzzy #| msgctxt "ContextDrawer|" #| msgid "Actions" @@ -104,159 +104,138 @@ msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Radnje" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Radnje" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Nazad" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Idi nazad" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Idi napred" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" msgstr "" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Idi nazad" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Idi napred" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "" @@ -278,6 +257,46 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/sr@latin/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sr@latin/libkirigami6_qt.po index edd504cca7..292732e36e 100644 --- a/local/recipes/kde/kirigami/source/poqm/sr@latin/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sr@latin/libkirigami6_qt.po @@ -17,86 +17,86 @@ msgstr "" "X-Environment: kde\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 #, fuzzy #| msgctxt "ContextDrawer|" #| msgid "Actions" @@ -104,159 +104,138 @@ msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Radnje" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Radnje" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Nazad" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "" -#: controls/SearchField.qml:86 -msgctxt "SearchField|" -msgid "Search…" +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Idi nazad" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Idi napred" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" msgstr "" #: controls/SearchField.qml:88 msgctxt "SearchField|" +msgid "Search…" +msgstr "" + +#: controls/SearchField.qml:90 +msgctxt "SearchField|" msgid "Search" msgstr "" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Idi nazad" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Idi napred" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "" @@ -278,6 +257,46 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/sv/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/sv/libkirigami6_qt.po index 156f834b63..4107e8dd7e 100644 --- a/local/recipes/kde/kirigami/source/poqm/sv/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/sv/libkirigami6_qt.po @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2024 Stefan Asserhäll +# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2024, 2025 Stefan Asserhäll msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-03 20:40+0100\n" +"PO-Revision-Date: 2025-11-21 01:45+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -11,245 +11,223 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 25.08.3\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Skicka e-post till %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Engagera dig" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Ge bidrag" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Rapportera ett fel" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Copyright" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Licens:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Licens: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Använda bibliotek" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Upphovsmän" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Visa foton av upphovsmän" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Tack till" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Översättare" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Om %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Avsluta" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Fler åtgärder" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 +#, fuzzy +#| msgctxt "Chip|" +#| msgid "Remove Tag" msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "Ta bort etikett" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Åtgärder" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Visa sammanhangsberoende hjälp" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Tillbaka" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Stäng sidorad" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Öppna sidorad" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Läser in…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Lösenord" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Dölj lösenord" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Visa lösenord" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Stäng meny" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Visa meny" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Navigera bakåt" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Navigera framåt" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Sök…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Sök" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Rensa sökning" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopiera" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Markera alla" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Lyckades" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Varning" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Fel" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Notera" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Stäng" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Stäng låda" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Öppna låda" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Stäng" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Navigera bakåt" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Navigera framåt" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Öppna länk %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Öppna länk" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Kopiera länk till klippbordet" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Stäng" @@ -271,6 +249,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (byggt för %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Lyckades" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Varning" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Fel" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Notera" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Stäng" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Stäng låda" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Öppna låda" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Stäng" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Stäng" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Inställningar" diff --git a/local/recipes/kde/kirigami/source/poqm/ta/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/ta/libkirigami6_qt.po index 07f9a1c46c..c8c64fa242 100644 --- a/local/recipes/kde/kirigami/source/poqm/ta/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/ta/libkirigami6_qt.po @@ -1,255 +1,230 @@ -# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Kishore G +# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025, 2026 Kishore G msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-08 12:31+0530\n" +"PO-Revision-Date: 2026-01-04 15:49+0530\n" "Last-Translator: Kishore G \n" -"Language-Team: Tamil \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.08.3\n" +"X-Generator: Lokalize 25.12.0\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1 என்பவருக்கு மின்னஞ்சல் அனுப்பு" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "பங்களித்தல்" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "நன்கொடை அளி" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "பிழையை தெரிவி" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "பதிப்புரிமை" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "உரிமம்:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "உரிமம்: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "பயன்படுத்தும் நிரலகங்கள்" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "இயற்றியவர்கள்" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "இயற்றியவர்களின் படங்களைக் காட்டு" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "நன்றி" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "மொழிபெயர்ப்பாளர்கள்" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 பற்றி " -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "வெளியேறு" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "மேலும் செயல்கள்" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "குறிச்சொல்லை நீக்கு" +msgid "Remove" +msgstr "நீக்கு" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "செயல்கள்" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "சூழல்சார் உதவியைக் காட்டு" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "பின்னே" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "ஓரப்பட்டையை மூடு" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "ஓரப்பட்டையை திற" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "ஏற்றப்படுகிறது…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "கடவுச்சொல்" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "கடவுச்சொல்லை மறை" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "கடவுச்சொல்லை காட்டு" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "பட்டியை மூடு" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "பட்டியைத் திற" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "முந்தையதற்கு செல்" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "பின்தையதற்கு செல்" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, fuzzy, qt-format +#| msgctxt "AboutItem|" +#| msgid "%1 (%2)" +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "தேடு..." -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "தேடல்" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "தேடலை காலியாக்கு" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "நகலெடு" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "அனைத்தையும் தேர்ந்தெடு" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "வெற்றி" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "எச்சரிக்கை" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "சிக்கல்" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "குறிப்பு" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "மூடு" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "மேல்தோன்றும் பலகையை மூடு" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "மேல்தோன்றும் பலகையைத் திற" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "மூடு" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "பின்னே செல்" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "முன்னே செல்" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "%1 இணைப்பைத் திற" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "இணைப்பைத் திற" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "இணைப்பை பிடிப்புப்பலகைக்கு நகலெடு" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "மூடு" @@ -271,6 +246,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (%3 கொண்டு தொகுக்கப்பட்டது)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "வெற்றி" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "எச்சரிக்கை" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "சிக்கல்" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "குறிப்பு" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "மூடு" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "மேல்தோன்றும் பலகையை மூடு" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "மேல்தோன்றும் பலகையைத் திற" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "மூடு" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "மூடு" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "அமைப்புகள்" diff --git a/local/recipes/kde/kirigami/source/poqm/tg/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/tg/libkirigami6_qt.po index 71ee9a0026..1edf90031a 100644 --- a/local/recipes/kde/kirigami/source/poqm/tg/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/tg/libkirigami6_qt.po @@ -13,34 +13,34 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 19.04.3\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Copyright" @@ -48,7 +48,7 @@ msgctxt "AboutItem|" msgid "Copyright" msgstr "Ҳуқуқи муаллиф" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 #, fuzzy #| msgctxt "AboutPage|" #| msgid "License:" @@ -56,7 +56,7 @@ msgctxt "AboutItem|" msgid "License:" msgstr "Иҷозатнома:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, fuzzy, qt-format #| msgctxt "AboutPage|" #| msgid "License: %1" @@ -64,7 +64,7 @@ msgctxt "AboutItem|" msgid "License: %1" msgstr "Иҷозатнома: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Libraries in use" @@ -72,7 +72,7 @@ msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Китобхонаҳое, ки истифода мешаванд" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Authors" @@ -80,12 +80,12 @@ msgctxt "AboutItem|" msgid "Authors" msgstr "Муаллифон" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Credits" @@ -93,7 +93,7 @@ msgctxt "AboutItem|" msgid "Credits" msgstr "Сипосгузорӣ" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Translators" @@ -101,7 +101,7 @@ msgctxt "AboutItem|" msgid "Translators" msgstr "Тарҷумонон" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, fuzzy, qt-format #| msgctxt "AboutPage|" #| msgid "About" @@ -109,12 +109,12 @@ msgctxt "AboutPage|" msgid "About %1" msgstr "Дар бораи барнома" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 #, fuzzy #| msgctxt "ToolBarApplicationHeader|" #| msgid "More Actions" @@ -122,47 +122,47 @@ msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Амалҳои бештар" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" +msgid "Remove" msgstr "" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Амалҳо" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Ба қафо" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Ниҳонвожа" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -170,7 +170,7 @@ msgctxt "PasswordField|" msgid "Hide Password" msgstr "Ниҳонвожа" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 #, fuzzy #| msgctxt "PasswordField|" #| msgid "Password" @@ -178,17 +178,46 @@ msgctxt "PasswordField|" msgid "Show Password" msgstr "Ниҳонвожа" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +#, fuzzy +#| msgctxt "BackButton|" +#| msgid "Navigate Back" +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Ба қафо паймудан" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +#, fuzzy +#| msgctxt "ForwardButton|" +#| msgid "Navigate Forward" +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Ба пеш паймудан" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "" + +#: controls/SearchField.qml:88 #, fuzzy #| msgctxt "SearchField|" #| msgid "Search..." @@ -196,7 +225,7 @@ msgctxt "SearchField|" msgid "Search…" msgstr "Ҷустуҷӯ..." -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 #, fuzzy #| msgctxt "SearchField|" #| msgid "Search..." @@ -204,12 +233,12 @@ msgctxt "SearchField|" msgid "Search" msgstr "Ҷустуҷӯ..." -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 #, fuzzy #| msgctxt "AboutPage|" #| msgid "Copyright" @@ -217,79 +246,29 @@ msgctxt "SelectableLabel|" msgid "Copy" msgstr "Ҳуқуқи муаллиф" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Ба қафо паймудан" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Ба пеш паймудан" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "" @@ -311,6 +290,46 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "" + #, fuzzy #~| msgctxt "ForwardButton|" #~| msgid "Navigate Forward" diff --git a/local/recipes/kde/kirigami/source/poqm/tr/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/tr/libkirigami6_qt.po index ae4ccd7dfb..45ce50682e 100644 --- a/local/recipes/kde/kirigami/source/poqm/tr/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/tr/libkirigami6_qt.po @@ -1,257 +1,230 @@ # Volkan Gezer , 2021. -# SPDX-FileCopyrightText: 2022, 2023, 2024 Emir SARI +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025, 2026 Emir SARI msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2024-12-21 15:24+0300\n" +"PO-Revision-Date: 2026-02-16 16:28+0300\n" "Last-Translator: Emir SARI \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 25.03.70\n" +"X-Generator: Lokalize 25.07.70\n" "X-Qt-Contexts: true\n" "X-POOTLE-MTIME: 1497529432.000000\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "%1 kişisine bir e-posta gönder" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Katıl" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Bağış Yap" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Hata Bildir" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Telif Hakkı" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Lisans:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Lisans: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Kullanımdaki Kitaplıklar" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Yazarlar" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Yazar fotoğraflarını göster" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Emeği Geçenler" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Çevirmenler" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "%1 Hakkında" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Çık" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" -msgstr "Daha Fazla Eylem" +msgstr "Daha fazla eylem" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Etiketi Kaldır" +msgid "Remove" +msgstr "Kaldır" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Eylemler" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Bağlamsal Yardımı Göster" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Geri" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" -msgstr "Kenar Çubuğunu Kapat" +msgstr "Kenar çubuğunu kapat" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" -msgstr "Kenar Çubuğunu Aç" +msgstr "Kenar çubuğunu aç" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Yükleniyor…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Parola" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Parolayı Gizle" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Parolayı Göster" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Menüyü kapat" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Menüyü aç" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Geri Git" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "İleri Git" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Bu eylemi %1 kısayolu ile tetikle" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Ara…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Ara" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Aramayı temizle" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Kopyala" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Tümünü Seç" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Başarılı" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Uyarı" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Hata" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Not" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Kapat" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Çekmeceyi kapat" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Çekmeceyi aç" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Kapat" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Geri Git" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "İleri Git" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "%1 bağlantısını aç" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Bağlantıyı aç" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Bağlantıyı Panoya Kopyala" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Kapat" @@ -272,3 +245,43 @@ msgstr "%1 pencereleme sistemi" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (%3 üzerine yapılı)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Başarılı" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Uyarı" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Hata" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Not" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Kapat" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Çekmeceyi kapat" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Çekmeceyi aç" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Kapat" diff --git a/local/recipes/kde/kirigami/source/poqm/uk/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/uk/libkirigami6_qt.po index df4ca98c9c..5a50645b5f 100644 --- a/local/recipes/kde/kirigami/source/poqm/uk/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/uk/libkirigami6_qt.po @@ -3,11 +3,11 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Yuri Chornoivan , 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. +# Yuri Chornoivan , 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026. msgid "" msgstr "" "Project-Id-Version: libkirigami2plugin_qt\n" -"PO-Revision-Date: 2024-12-02 22:08+0200\n" +"PO-Revision-Date: 2026-02-16 08:26+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -20,243 +20,216 @@ msgstr "" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Lokalize 23.04.3\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "Надіслати повідомлення ел. пошти до %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "Участь у команді" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "Підтримати фінансово" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "Повідомити про ваду" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "Авторські права" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "Ліцензування:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "Ліцензування: %1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "Використані бібліотеки" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "Автори" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "Показати фотографії авторів" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "Подяки" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "Перекладачі" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "Про %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "Вийти" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "Інші дії" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "Вилучити мітку" +msgid "Remove" +msgstr "Вилучити" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "Дії" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "Показати контекстну довідку" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "Назад" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "Закрити бічну панель" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "Відкрити бічну панель" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "Завантаження…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "Пароль" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "Приховати пароль" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "Показати пароль" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "Закрити меню" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "Відкрити меню" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "Перейти назад" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "Перейти далі" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "Виконати цю дію у відповідь на %1" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "Шукати…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "Пошук" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "Спорожнити поле пошуку" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "Копіювати" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "Вибрати все" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "Успіх" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "Попередження" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "Помилка" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "Нотатка" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "Закрити" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "Закрити висувну панель" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "Відкрити висувну панель" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "Закрити" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "Перейти назад" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "Перейти далі" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "Відкрити посилання %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "Відкрити посилання" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "Копіювати посилання до буфера" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "Закрити" @@ -278,6 +251,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (зібрано з використанням %3)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "Успіх" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "Попередження" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "Помилка" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "Нотатка" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "Закрити" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "Закрити висувну панель" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "Відкрити висувну панель" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "Закрити" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "Закрити" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "Параметри" diff --git a/local/recipes/kde/kirigami/source/poqm/zh_CN/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/zh_CN/libkirigami6_qt.po index 1f8d39d7eb..f81b66f4ea 100644 --- a/local/recipes/kde/kirigami/source/poqm/zh_CN/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/zh_CN/libkirigami6_qt.po @@ -15,243 +15,216 @@ msgstr "" "X-Crowdin-File: /kf6-trunk/messages/kirigami/libkirigami6_qt.pot\n" "X-Crowdin-File-ID: 42919\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1 (%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "发送电子邮件到 %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "参与贡献" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "捐款" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "报告程序缺陷" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "版权信息" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "许可证:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "许可证:%1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "使用的程序库" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "作者" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "显示作者照片" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "致谢" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "翻译人员" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "关于 %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "退出" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "更多操作" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "移除标签" +msgid "Remove" +msgstr "移除" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "操作" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "显示相关帮助" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "返回" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "隐藏侧边栏" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "显示侧边栏" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "正在加载…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "密码" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "隐藏密码" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "显示密码" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "关闭菜单" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "打开菜单" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "后退" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "前进" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "使用 %1 触发此操作" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "搜索…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "搜索" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "清除搜索内容" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "复制" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "全部选择" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "成功" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "警告" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "错误" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "注意" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "关闭" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "关闭抽屉栏" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "打开抽屉栏" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "关闭" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "后退" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "前进" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "打开链接 %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "打开链接" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "复制链接至剪贴板" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "关闭" @@ -272,3 +245,43 @@ msgstr "%1 窗口系统" msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (使用 %3 构建)" + +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "成功" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "警告" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "错误" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "注意" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "关闭" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "关闭抽屉栏" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "打开抽屉栏" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "关闭" diff --git a/local/recipes/kde/kirigami/source/poqm/zh_TW/libkirigami6_qt.po b/local/recipes/kde/kirigami/source/poqm/zh_TW/libkirigami6_qt.po index f0fc1c64e3..9beceb49d1 100644 --- a/local/recipes/kde/kirigami/source/poqm/zh_TW/libkirigami6_qt.po +++ b/local/recipes/kde/kirigami/source/poqm/zh_TW/libkirigami6_qt.po @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022, 2023, 2024 Kisaragi Hiu +# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025, 2026 Kisaragi Hiu # Jeff Huang , 2016. # Franklin Weng , 2017. # pan93412 , 2018, 2019. @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libkirigamiplugin_qt\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-09-22 20:41+0800\n" -"PO-Revision-Date: 2024-12-29 01:34+0900\n" +"PO-Revision-Date: 2026-03-02 05:40+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" "Language: zh_TW\n" @@ -16,246 +16,219 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 24.12.0\n" +"X-Generator: Lokalize 25.11.70\n" "X-Qt-Contexts: true\n" -#: controls/AboutItem.qml:163 +#: controls/AboutItem.qml:166 #, qt-format msgctxt "AboutItem|" msgid "%1 (%2)" msgstr "%1(%2)" -#: controls/AboutItem.qml:172 +#: controls/AboutItem.qml:186 #, qt-format msgctxt "AboutItem|" msgid "Send an email to %1" msgstr "傳送電子郵件給 %1" -#: controls/AboutItem.qml:222 +#: controls/AboutItem.qml:228 msgctxt "AboutItem|" msgid "Get Involved" msgstr "參與" -#: controls/AboutItem.qml:228 +#: controls/AboutItem.qml:234 msgctxt "AboutItem|" msgid "Donate" msgstr "贊助" -#: controls/AboutItem.qml:245 +#: controls/AboutItem.qml:251 msgctxt "AboutItem|" msgid "Report a Bug" msgstr "回報問題" -#: controls/AboutItem.qml:258 +#: controls/AboutItem.qml:264 msgctxt "AboutItem|" msgid "Copyright" msgstr "著作權" -#: controls/AboutItem.qml:302 +#: controls/AboutItem.qml:313 msgctxt "AboutItem|" msgid "License:" msgstr "授權條款:" -#: controls/AboutItem.qml:324 +#: controls/AboutItem.qml:336 #, qt-format msgctxt "AboutItem|" msgid "License: %1" msgstr "授權條款:%1" -#: controls/AboutItem.qml:335 +#: controls/AboutItem.qml:347 msgctxt "AboutItem|" msgid "Libraries in use" msgstr "使用函式庫" -#: controls/AboutItem.qml:365 +#: controls/AboutItem.qml:379 msgctxt "AboutItem|" msgid "Authors" msgstr "作者群" -#: controls/AboutItem.qml:375 +#: controls/AboutItem.qml:389 msgctxt "AboutItem|" msgid "Show author photos" msgstr "顯示作者照片" -#: controls/AboutItem.qml:386 +#: controls/AboutItem.qml:400 msgctxt "AboutItem|" msgid "Credits" msgstr "致謝" -#: controls/AboutItem.qml:398 +#: controls/AboutItem.qml:412 msgctxt "AboutItem|" msgid "Translators" msgstr "翻譯者" -#: controls/AboutPage.qml:100 +#: controls/AboutPage.qml:102 #, qt-format msgctxt "AboutPage|" msgid "About %1" msgstr "關於 %1" -#: controls/AbstractApplicationWindow.qml:176 +#: controls/AbstractApplicationWindow.qml:177 msgctxt "AbstractApplicationWindow|" msgid "Quit" msgstr "離開" -#: controls/ActionToolBar.qml:195 +#: controls/ActionToolBar.qml:209 msgctxt "ActionToolBar|" msgid "More Actions" msgstr "更多動作" -#: controls/Chip.qml:86 +#: controls/Chip.qml:45 msgctxt "Chip|" -msgid "Remove Tag" -msgstr "移除標籤" +msgid "Remove" +msgstr "移除" -#: controls/ContextDrawer.qml:59 +#: controls/ContextDrawer.qml:64 msgctxt "ContextDrawer|" msgid "Actions" msgstr "動作" -#: controls/ContextualHelpButton.qml:50 +#: controls/ContextualHelpButton.qml:60 msgctxt "ContextualHelpButton|" msgid "Show Contextual Help" msgstr "顯示內文說明" -#: controls/GlobalDrawer.qml:306 +#: controls/GlobalDrawer.qml:365 msgctxt "GlobalDrawer|" msgid "Back" msgstr "返回" -#: controls/GlobalDrawer.qml:615 +#: controls/GlobalDrawer.qml:718 msgctxt "GlobalDrawer|" msgid "Close Sidebar" msgstr "關閉側邊欄" -#: controls/GlobalDrawer.qml:620 +#: controls/GlobalDrawer.qml:723 msgctxt "GlobalDrawer|" msgid "Open Sidebar" msgstr "開啟側邊欄" -#: controls/LoadingPlaceholder.qml:54 +#: controls/LoadingPlaceholder.qml:58 msgctxt "LoadingPlaceholder|" msgid "Loading…" msgstr "載入中…" -#: controls/PasswordField.qml:42 +#: controls/PasswordField.qml:43 msgctxt "PasswordField|" msgid "Password" msgstr "密碼" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Hide Password" msgstr "隱藏密碼" -#: controls/PasswordField.qml:45 +#: controls/PasswordField.qml:46 msgctxt "PasswordField|" msgid "Show Password" msgstr "顯示密碼" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Close menu" msgstr "關閉選單" -#: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:83 -msgctxt "PageRowGlobalToolBarUI|" +#: controls/private/globaltoolbar/HandleButton.qml:24 +msgctxt "HandleButton|" msgid "Open menu" msgstr "開啟選單" -#: controls/SearchField.qml:86 +#: controls/private/globaltoolbar/NavigationButtons.qml:102 +msgctxt "NavigationButtons|" +msgid "Navigate Back" +msgstr "返回" + +#: controls/private/globaltoolbar/NavigationButtons.qml:119 +msgctxt "NavigationButtons|" +msgid "Navigate Forward" +msgstr "往前" + +#: controls/private/PrivateActionToolButton.qml:118 +#, qt-format +msgctxt "@info:tooltip %1 is a keyboard shorcut|" +msgid "Trigger this action with %1" +msgstr "用 %1 觸發此動作" + +#: controls/private/PrivateActionToolButton.qml:125 +#, qt-format +msgctxt "" +"@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut|" +msgid "%1 (%2)" +msgstr "%1(%2)" + +#: controls/SearchField.qml:88 msgctxt "SearchField|" msgid "Search…" msgstr "搜尋…" -#: controls/SearchField.qml:88 +#: controls/SearchField.qml:90 msgctxt "SearchField|" msgid "Search" msgstr "搜尋" -#: controls/SearchField.qml:99 +#: controls/SearchField.qml:100 msgctxt "SearchField|" msgid "Clear search" msgstr "清除搜尋" -#: controls/SelectableLabel.qml:179 +#: controls/SelectableLabel.qml:297 msgctxt "SelectableLabel|" msgid "Copy" msgstr "複製" -#: controls/SelectableLabel.qml:192 +#: controls/SelectableLabel.qml:310 msgctxt "SelectableLabel|" msgid "Select All" msgstr "全部選取" -#: controls/templates/InlineMessage.qml:288 -msgctxt "InlineMessage|" -msgid "Success" -msgstr "成功" - -#: controls/templates/InlineMessage.qml:290 -msgctxt "InlineMessage|" -msgid "Warning" -msgstr "警告" - -#: controls/templates/InlineMessage.qml:292 -msgctxt "InlineMessage|" -msgid "Error" -msgstr "錯誤" - -#: controls/templates/InlineMessage.qml:294 -msgctxt "InlineMessage|" -msgid "Note" -msgstr "備註" - -#: controls/templates/InlineMessage.qml:400 -msgctxt "InlineMessage|" -msgid "Close" -msgstr "關閉" - -#: controls/templates/OverlayDrawer.qml:128 -msgctxt "OverlayDrawer|" -msgid "Close drawer" -msgstr "關閉抽屜" - -#: controls/templates/OverlayDrawer.qml:134 -msgctxt "OverlayDrawer|" -msgid "Open drawer" -msgstr "開啟抽屜" - -#: controls/templates/OverlaySheet.qml:290 -msgctxt "OverlaySheet|@action:button close dialog" -msgid "Close" -msgstr "關閉" - -#: controls/templates/private/BackButton.qml:50 -msgctxt "BackButton|" -msgid "Navigate Back" -msgstr "返回" - -#: controls/templates/private/ForwardButton.qml:27 -msgctxt "ForwardButton|" -msgid "Navigate Forward" -msgstr "往前" - -#: controls/UrlButton.qml:34 +#: controls/UrlButton.qml:52 #, qt-format msgctxt "UrlButton|@info:whatsthis" msgid "Open link %1" msgstr "開啟連結 %1" -#: controls/UrlButton.qml:35 +#: controls/UrlButton.qml:53 msgctxt "UrlButton|@info:whatsthis" msgid "Open link" msgstr "開啟連結" -#: controls/UrlButton.qml:58 +#: controls/UrlButton.qml:101 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" msgstr "複製連結至剪貼簿" -#: dialogs/Dialog.qml:442 -msgctxt "Dialog|@action:button close dialog" +#: dialogs/DialogHeaderTopContent.qml:104 +msgctxt "DialogHeaderTopContent|@action:button close dialog" msgid "Close" msgstr "關閉" @@ -277,6 +250,50 @@ msgctxt "Kirigami::Platform::Settings|" msgid "Qt %2 (built against %3)" msgstr "Qt %2 (建置於 %3 上)" +#: templates/InlineMessage.qml:351 +msgctxt "InlineMessage|" +msgid "Success" +msgstr "成功" + +#: templates/InlineMessage.qml:353 +msgctxt "InlineMessage|" +msgid "Warning" +msgstr "警告" + +#: templates/InlineMessage.qml:355 +msgctxt "InlineMessage|" +msgid "Error" +msgstr "錯誤" + +#: templates/InlineMessage.qml:357 +msgctxt "InlineMessage|" +msgid "Note" +msgstr "備註" + +#: templates/InlineMessage.qml:444 +msgctxt "InlineMessage|" +msgid "Close" +msgstr "關閉" + +#: templates/OverlayDrawer.qml:148 +msgctxt "OverlayDrawer|" +msgid "Close drawer" +msgstr "關閉抽屜" + +#: templates/OverlayDrawer.qml:154 +msgctxt "OverlayDrawer|" +msgid "Open drawer" +msgstr "開啟抽屜" + +#: templates/OverlaySheet.qml:298 +msgctxt "OverlaySheet|@action:button close dialog" +msgid "Close" +msgstr "關閉" + +#~ msgctxt "Dialog|@action:button close dialog" +#~ msgid "Close" +#~ msgstr "關閉" + #~ msgctxt "CategorizedSettings|" #~ msgid "Settings" #~ msgstr "設定" diff --git a/local/recipes/kde/kirigami/source/src/CMakeLists.txt b/local/recipes/kde/kirigami/source/src/CMakeLists.txt index 56e7ac3c71..5b523bf818 100644 --- a/local/recipes/kde/kirigami/source/src/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/src/CMakeLists.txt @@ -1,8 +1,12 @@ add_subdirectory(platform) +add_subdirectory(layouts) add_subdirectory(primitives) +add_subdirectory(templates) +add_subdirectory(controls) add_subdirectory(delegates) add_subdirectory(dialogs) -add_subdirectory(layouts) +add_subdirectory(polyfill) +add_subdirectory(forms) add_library(Kirigami) add_library(KF6::Kirigami ALIAS Kirigami) @@ -57,13 +61,16 @@ ecm_add_qml_module(Kirigami URI "org.kde.kirigami" VERSION 2.0 INSTALLED_PLUGIN_TARGET KF6Kirigamiplugin DEPENDENCIES "QtQuick.Controls" - "org.kde.kirigami.private" + TARGET KirigamiPrivate + TARGET KirigamiPolyfill IMPORTS - "org.kde.kirigami.platform" - "org.kde.kirigami.primitives" - "org.kde.kirigami.delegates" - "org.kde.kirigami.dialogs" - "org.kde.kirigami.layouts" + TARGET KirigamiControls + TARGET KirigamiPlatform + TARGET KirigamiPrimitives + TARGET KirigamiDelegates + TARGET KirigamiDialogs + TARGET KirigamiLayouts + TARGET KirigamiForms ${_extra_options} ) @@ -75,7 +82,6 @@ ecm_qt_declare_logging_category(Kirigami IDENTIFIER KirigamiLog CATEGORY_NAME kf.kirigami DESCRIPTION "Kirigami" - DEFAULT_SEVERITY Warning EXPORT KIRIGAMI ) @@ -91,17 +97,10 @@ target_include_directories(Kirigami PRIVATE ) target_sources(Kirigami PRIVATE - enums.h imagecolors.cpp imagecolors.h - mnemonicattached.cpp - mnemonicattached.h overlayzstackingattached.cpp overlayzstackingattached.h - pagepool.cpp - pagepool.h - scenepositionattached.cpp - scenepositionattached.h spellcheckattached.cpp spellcheckattached.h wheelhandler.cpp @@ -113,136 +112,15 @@ target_sources(Kirigamiplugin PRIVATE kirigamiplugin.h ) -ecm_target_qml_sources(Kirigami SOURCES - controls/Action.qml - controls/AbstractApplicationHeader.qml - controls/AbstractApplicationWindow.qml - controls/ApplicationWindow.qml - controls/OverlayDrawer.qml - controls/ContextDrawer.qml - controls/GlobalDrawer.qml - controls/Heading.qml - controls/PageRow.qml - controls/OverlaySheet.qml - controls/Page.qml - controls/ScrollablePage.qml - controls/SwipeListItem.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.1 SOURCES - controls/AbstractApplicationItem.qml - controls/ApplicationItem.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.4 SOURCES - controls/AbstractCard.qml - controls/Card.qml - controls/CardsListView.qml - controls/CardsLayout.qml - controls/InlineMessage.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.5 SOURCES - controls/ListItemDragHandle.qml - controls/ActionToolBar.qml -) - +# TODO AboutPage and AboutItem won't be moved to controls submodule but rather to the future forms one ecm_target_qml_sources(Kirigami VERSION 2.6 SOURCES controls/AboutPage.qml - controls/LinkButton.qml - controls/UrlButton.qml ) - -ecm_target_qml_sources(Kirigami VERSION 2.7 SOURCES - controls/ActionTextField.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.8 SOURCES - controls/SearchField.qml - controls/PasswordField.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.10 SOURCES - controls/ListSectionHeader.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.11 SOURCES - controls/PagePoolAction.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.12 SOURCES - controls/PlaceholderMessage.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.14 SOURCES - controls/FlexColumn.qml -) - ecm_target_qml_sources(Kirigami VERSION 2.19 SOURCES controls/AboutItem.qml - controls/NavigationTabBar.qml - controls/NavigationTabButton.qml - controls/Chip.qml - controls/LoadingPlaceholder.qml -) - -ecm_target_qml_sources(Kirigami VERSION 2.20 SOURCES - controls/SelectableLabel.qml - controls/InlineViewHeader.qml - controls/ContextualHelpButton.qml -) - -ecm_target_qml_sources(Kirigami PRIVATE PATH private SOURCES - controls/private/ActionIconGroup.qml - controls/private/ActionMenuItem.qml - controls/private/ActionsMenu.qml - controls/private/BannerImage.qml - controls/private/ContextDrawerActionItem.qml - controls/private/DefaultCardBackground.qml - controls/private/DefaultChipBackground.qml - controls/private/DefaultPageTitleDelegate.qml - controls/private/EdgeShadow.qml - controls/private/GlobalDrawerActionItem.qml - controls/private/MobileDialogLayer.qml - controls/private/PrivateActionToolButton.qml - controls/private/PullDownIndicator.qml - controls/private/SwipeItemEventFilter.qml -) - -ecm_target_qml_sources(Kirigami PRIVATE PATH private/globaltoolbar SOURCES - controls/private/globaltoolbar/AbstractPageHeader.qml - controls/private/globaltoolbar/BreadcrumbControl.qml - controls/private/globaltoolbar/PageRowGlobalToolBarStyleGroup.qml - controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml - controls/private/globaltoolbar/TitlesPageHeader.qml - controls/private/globaltoolbar/ToolBarPageHeader.qml - controls/private/globaltoolbar/ToolBarPageFooter.qml -) - -ecm_target_qml_sources(Kirigami PRIVATE PATH templates SOURCES - controls/templates/AbstractApplicationHeader.qml - controls/templates/AbstractCard.qml - controls/templates/Chip.qml - controls/templates/InlineMessage.qml - controls/templates/OverlayDrawer.qml - controls/templates/OverlaySheet.qml - controls/templates/SingletonHeaderSizeGroup.qml - controls/templates/qmldir -) - -ecm_target_qml_sources(Kirigami PRIVATE PATH templates/private SOURCES - controls/templates/private/BackButton.qml - controls/templates/private/BorderPropertiesGroup.qml - controls/templates/private/ContextIcon.qml - controls/templates/private/DrawerHandle.qml - controls/templates/private/ForwardButton.qml - controls/templates/private/GenericDrawerIcon.qml - controls/templates/private/IconPropertiesGroup.qml - controls/templates/private/MenuIcon.qml - controls/templates/private/PassiveNotificationsManager.qml - controls/templates/private/qmldir ) +# TODO Styles will become proper imports in the future qt_target_qml_sources(Kirigami RESOURCES styles/Material/InlineMessage.qml styles/Material/Theme.qml @@ -277,12 +155,19 @@ if (NOT BUILD_SHARED_LIBS) # against for static builds to work properly target_link_libraries(Kirigamiplugin PRIVATE + KirigamiControlsplugin KirigamiPlatformplugin KirigamiDelegatesplugin KirigamiPrimitivesplugin KirigamiDialogsplugin KirigamiLayoutsplugin + KirigamiLayoutsPrivateplugin KirigamiPrivateplugin + KirigamiTemplatesplugin + KirigamiFormsplugin + KirigamiFormsPrivateTemplatesplugin + KirigamiFormsPrivateFlatplugin + KirigamiFormsPrivateCardsplugin ) # for tests to find this under the name it's actually installed with' add_library(KF6Kirigamiplugin ALIAS Kirigamiplugin) @@ -291,11 +176,17 @@ else() PUBLIC KirigamiPlatform PRIVATE + KirigamiControls KirigamiDelegates KirigamiPrimitives KirigamiDialogs KirigamiLayouts KirigamiPrivate + KirigamiTemplates + KirigamiForms + KirigamiFormsPrivateTemplates + KirigamiFormsPrivateFlat + KirigamiFormsPrivateCards ) endif() @@ -320,3 +211,5 @@ ecm_qt_install_logging_categories( FILE kirigami.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR} ) + +ecm_generate_qdoc(Kirigami kirigami.qdocconf) diff --git a/local/recipes/kde/kirigami/source/src/actionhelper.cpp b/local/recipes/kde/kirigami/source/src/actionhelper.cpp index d1150e00d8..c537298d73 100644 --- a/local/recipes/kde/kirigami/source/src/actionhelper.cpp +++ b/local/recipes/kde/kirigami/source/src/actionhelper.cpp @@ -21,3 +21,5 @@ QList ActionHelper::alternateShortcuts(QAction *action) const return action->shortcuts().mid(1); } } + +#include "moc_actionhelper.cpp" diff --git a/local/recipes/kde/kirigami/source/src/controls/AboutItem.qml b/local/recipes/kde/kirigami/source/src/controls/AboutItem.qml index 177f396a60..310fe63189 100644 --- a/local/recipes/kde/kirigami/source/src/controls/AboutItem.qml +++ b/local/recipes/kde/kirigami/source/src/controls/AboutItem.qml @@ -4,31 +4,36 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.layouts as KL +import org.kde.kirigami.controls as KC //TODO: Kf6: move somewhere else which can depend from KAboutData? -/** - * @brief An about item that displays the about data - * - * Allows to show the copyright notice of the application - * together with the contributors and some information of which platform it's - * running on. - * - * @since 5.87 - * @since org.kde.kirigami 2.19 +/*! + \qmltype AboutItem + \inqmlmodule org.kde.kirigami + \brief An about item that displays the about data. + + Allows to show the copyright notice of the application + together with the contributors and some information of which platform it's + running on. + + \since 5.87 */ Item { id: aboutItem - /** - * @brief This property holds an object with the same shape as KAboutData. - * - * Example usage: - * @code{json} - * aboutData: { + /*! + \brief This property holds an object with the same shape as KAboutData. + + Example usage: + \badcode + aboutData: { "displayName" : "KirigamiApp", "productName" : "kirigami/app", "componentName" : "kirigamiapp", @@ -58,36 +63,34 @@ Item { "copyrightStatement" : "© 2010-2018 Plasma Development Team", "desktopFileName" : "org.kde.kirigamiapp" } - @endcode - * - * @see KAboutData + \endcode + + \sa KAboutData */ property var aboutData - /** - * @brief This property holds a link to a "Get Involved" page. - * - * default: `"https://community.kde.org/Get_Involved" when application id starts with "org.kde.", otherwise it is empty.` + /*! + \brief This property holds a link to a "Get Involved" page. + + default: "https://community.kde.org/Get_Involved" when application id starts with "org.kde.", otherwise it is empty. */ property url getInvolvedUrl: aboutData.desktopFileName.startsWith("org.kde.") ? "https://community.kde.org/Get_Involved" : "" - /** - * @brief This property holds a link to a "Donate" page. - * - * default: `"https://kde.org/community/donations" when application id starts with "org.kde.", otherwise it is empty.` + /*! + \brief This property holds a link to a "Donate" page. + + default: "https://kde.org/community/donations" when application id starts with "org.kde.", otherwise it is empty. */ property url donateUrl: aboutData.desktopFileName.startsWith("org.kde.") ? "https://kde.org/community/donations" : "" - /** @internal */ property bool _usePageStack: false - /** - * @see org::kde::kirigami::FormLayout::wideMode - * @property bool wideMode + /*! + \qmlproperty bool wideMode + \sa FormLayout::wideMode */ property alias wideMode: form.wideMode - /** @internal */ default property alias _content: form.data // if aboutData is a native KAboutData object, avatarUrl should be a proper url instance, @@ -99,12 +102,12 @@ Item { && person.avatarUrl.toString().length > 0; } - /** - * @brief This property controls whether to load avatars by URL. - * - * If set to false, a fallback "user" icon will be displayed. - * - * default: ``false`` + /*! + \brief This property controls whether to load avatars by URL. + + If set to false, a fallback "user" icon will be displayed. + + default: false */ property bool loadAvatars: false @@ -124,19 +127,19 @@ Item { Layout.fillWidth: true - spacing: Kirigami.Units.smallSpacing * 2 + spacing: Platform.Units.smallSpacing * 2 - Kirigami.Icon { + Primitives.Icon { id: avatarIcon - implicitWidth: Kirigami.Units.iconSizes.medium + implicitWidth: Platform.Units.iconSizes.medium implicitHeight: implicitWidth fallback: "user" source: { if (delegate.hasAvatar && aboutItem.loadAvatars) { // Appending to the params of the url does not work, thus the search is set - const url = new URL(modelData.avatarUrl); + const url = new URL(delegate.modelData.avatarUrl); const params = new URLSearchParams(url.search); params.append("s", width); url.search = params.toString(); @@ -145,46 +148,48 @@ Item { return "user" } } - visible: status !== Kirigami.Icon.Loading + visible: status !== Primitives.Icon.Loading } // So it's clear that something is happening while avatar images are loaded QQC2.BusyIndicator { - implicitWidth: Kirigami.Units.iconSizes.medium + implicitWidth: Platform.Units.iconSizes.medium implicitHeight: implicitWidth - visible: avatarIcon.status === Kirigami.Icon.Loading + visible: avatarIcon.status === Primitives.Icon.Loading running: visible } QQC2.Label { Layout.fillWidth: true - readonly property bool withTask: typeof(modelData.task) !== "undefined" && modelData.task.length > 0 - text: withTask ? qsTr("%1 (%2)").arg(modelData.name).arg(modelData.task) : modelData.name + readonly property bool withTask: typeof(delegate.modelData.task) !== "undefined" && delegate.modelData.task.length > 0 + text: withTask ? qsTr("%1 (%2)").arg(delegate.modelData.name).arg(delegate.modelData.task) : delegate.modelData.name wrapMode: Text.WordWrap } QQC2.ToolButton { - visible: typeof(modelData.emailAddress) !== "undefined" && modelData.emailAddress.length > 0 - icon.name: "mail-sent" - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay + enabled: typeof(delegate.modelData.webAddress) !== "undefined" && delegate.modelData.webAddress.length > 0 + opacity: enabled ? 1 : 0 + icon.name: "globe" + QQC2.ToolTip.delay: Platform.Units.toolTipDelay QQC2.ToolTip.visible: hovered - QQC2.ToolTip.text: qsTr("Send an email to %1").arg(modelData.emailAddress) - onClicked: Qt.openUrlExternally("mailto:%1".arg(modelData.emailAddress)) + QQC2.ToolTip.text: (typeof(delegate.modelData.webAddress) === "undefined" && delegate.modelData.webAddress.length > 0) ? "" : delegate.modelData.webAddress + onClicked: Qt.openUrlExternally(delegate.modelData.webAddress) } QQC2.ToolButton { - visible: typeof(modelData.webAddress) !== "undefined" && modelData.webAddress.length > 0 - icon.name: "globe" - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay + enabled: typeof(delegate.modelData.emailAddress) !== "undefined" && delegate.modelData.emailAddress.length > 0 + opacity: enabled ? 1 : 0 + icon.name: "mail-sent" + QQC2.ToolTip.delay: Platform.Units.toolTipDelay QQC2.ToolTip.visible: hovered - QQC2.ToolTip.text: (typeof(modelData.webAddress) === "undefined" && modelData.webAddress.length > 0) ? "" : modelData.webAddress - onClicked: Qt.openUrlExternally(modelData.webAddress) + QQC2.ToolTip.text: qsTr("Send an email to %1").arg(delegate.modelData.emailAddress) + onClicked: Qt.openUrlExternally("mailto:%1".arg(delegate.modelData.emailAddress)) } } } - Kirigami.FormLayout { + KL.FormLayout { id: form anchors.fill: parent @@ -193,30 +198,31 @@ Item { columns: 2 Layout.fillWidth: true - Kirigami.Icon { + Primitives.Icon { Layout.rowSpan: 3 - Layout.preferredHeight: Kirigami.Units.iconSizes.huge + Layout.preferredHeight: Platform.Units.iconSizes.huge Layout.preferredWidth: height Layout.maximumWidth: aboutItem.width / 3; - Layout.rightMargin: Kirigami.Units.largeSpacing - source: Kirigami.Settings.applicationWindowIcon || aboutItem.aboutData.programLogo || aboutItem.aboutData.programIconName || aboutItem.aboutData.componentName + Layout.rightMargin: Platform.Units.largeSpacing + source: aboutItem.aboutData.programLogo || Platform.Settings.applicationWindowIcon || aboutItem.aboutData.componentName } - Kirigami.Heading { + KC.Heading { Layout.fillWidth: true text: aboutItem.aboutData.displayName + " " + aboutItem.aboutData.version wrapMode: Text.WordWrap } - Kirigami.Heading { + KC.Heading { Layout.fillWidth: true - level: 2 + level: 3 + type: KC.Heading.Type.Secondary wrapMode: Text.WordWrap text: aboutItem.aboutData.shortDescription } RowLayout { - spacing: Kirigami.Units.largeSpacing * 2 + spacing: Platform.Units.largeSpacing * 2 UrlButton { text: qsTr("Get Involved") @@ -249,17 +255,17 @@ Item { } } - Separator { + Primitives.Separator { Layout.fillWidth: true } - Kirigami.Heading { - Kirigami.FormData.isSection: true + KC.Heading { + KL.FormData.isSection: true text: qsTr("Copyright") } QQC2.Label { - Layout.leftMargin: Kirigami.Units.gridUnit + Layout.leftMargin: Platform.Units.gridUnit text: aboutItem.aboutData.otherText visible: text.length > 0 wrapMode: Text.WordWrap @@ -267,7 +273,7 @@ Item { } QQC2.Label { - Layout.leftMargin: Kirigami.Units.gridUnit + Layout.leftMargin: Platform.Units.gridUnit text: aboutItem.aboutData.copyrightStatement visible: text.length > 0 wrapMode: Text.WordWrap @@ -275,18 +281,19 @@ Item { } UrlButton { - Layout.leftMargin: Kirigami.Units.gridUnit + Layout.leftMargin: Platform.Units.gridUnit url: aboutItem.aboutData.homepage visible: url.length > 0 - wrapMode: Text.WordWrap + wrapMode: Text.Wrap Layout.fillWidth: true + Layout.maximumWidth: aboutItem.width } OverlaySheet { id: licenseSheet property alias text: bodyLabel.text - contentItem: SelectableLabel { + SelectableLabel { id: bodyLabel text: licenseSheet.text wrapMode: Text.Wrap @@ -297,17 +304,21 @@ Item { id: licenseLinkButton RowLayout { - Layout.leftMargin: Kirigami.Units.smallSpacing + id: licenseLinkLayout + + required property var modelData + + Layout.leftMargin: Platform.Units.smallSpacing QQC2.Label { text: qsTr("License:") } LinkButton { Layout.fillWidth: true wrapMode: Text.WordWrap - text: modelData.name + text: licenseLinkLayout.modelData.name onClicked: mouse => { - licenseSheet.text = modelData.text - licenseSheet.title = modelData.name + licenseSheet.text = licenseLinkLayout.modelData.text + licenseSheet.title = licenseLinkLayout.modelData.name licenseSheet.open() } } @@ -318,7 +329,8 @@ Item { id: licenseTextItem QQC2.Label { - Layout.leftMargin: Kirigami.Units.smallSpacing + required property var modelData + Layout.leftMargin: Platform.Units.smallSpacing Layout.fillWidth: true wrapMode: Text.WordWrap text: qsTr("License: %1").arg(modelData.name) @@ -327,21 +339,22 @@ Item { Repeater { model: aboutItem.aboutData.licenses - delegate: _usePageStack ? licenseLinkButton : licenseTextItem + delegate: aboutItem._usePageStack ? licenseLinkButton : licenseTextItem } - Kirigami.Heading { - Kirigami.FormData.isSection: visible + KC.Heading { + KL.FormData.isSection: visible text: qsTr("Libraries in use") Layout.fillWidth: true wrapMode: Text.WordWrap - visible: Kirigami.Settings.information + visible: Platform.Settings.information } Repeater { - model: Kirigami.Settings.information + model: Platform.Settings.information delegate: QQC2.Label { - Layout.leftMargin: Kirigami.Units.gridUnit + required property string modelData + Layout.leftMargin: Platform.Units.gridUnit Layout.fillWidth: true wrapMode: Text.WordWrap id: libraries @@ -352,16 +365,17 @@ Item { Repeater { model: aboutItem.aboutData.components delegate: QQC2.Label { + required property var modelData Layout.fillWidth: true wrapMode: Text.WordWrap - Layout.leftMargin: Kirigami.Units.gridUnit + Layout.leftMargin: Platform.Units.gridUnit text: modelData.name + (modelData.version.length === 0 ? "" : " %1".arg(modelData.version)) } } - Kirigami.Heading { + KC.Heading { Layout.fillWidth: true - Kirigami.FormData.isSection: visible + KL.FormData.isSection: visible text: qsTr("Authors") wrapMode: Text.WordWrap visible: aboutItem.aboutData.authors.length > 0 @@ -381,8 +395,8 @@ Item { delegate: personDelegate } - Kirigami.Heading { - Kirigami.FormData.isSection: visible + KC.Heading { + KL.FormData.isSection: visible text: qsTr("Credits") visible: repCredits.count > 0 } @@ -393,8 +407,8 @@ Item { delegate: personDelegate } - Kirigami.Heading { - Kirigami.FormData.isSection: visible + KC.Heading { + KL.FormData.isSection: visible text: qsTr("Translators") visible: repTranslators.count > 0 } diff --git a/local/recipes/kde/kirigami/source/src/controls/AboutPage.qml b/local/recipes/kde/kirigami/source/src/controls/AboutPage.qml index 3d05d50843..03ef40231d 100644 --- a/local/recipes/kde/kirigami/source/src/controls/AboutPage.qml +++ b/local/recipes/kde/kirigami/source/src/controls/AboutPage.qml @@ -6,30 +6,31 @@ */ import QtQuick -import org.kde.kirigami as Kirigami //TODO KF6: move somewhere else? kirigami addons? -/** - * @brief An "About" page that is ready to integrate in a Kirigami app. - * - * Allows to have a page that will show the copyright notice of the application - * together with the contributors and some information of which platform it's - * running on. - * - * @since 5.52 - * @since org.kde.kirigami 2.6 - * @inherit org::kde::kirigami::ScrollablePage +/*! + \qmltype AboutPage + \inqmlmodule org.kde.kirigami + + \brief An "About" page that is ready to integrate in a Kirigami app. + + Allows to have a page that will show the copyright notice of the application + together with the contributors and some information of which platform it's + running on. + + \since 5.52 */ -Kirigami.ScrollablePage { +ScrollablePage { id: page //BEGIN properties - /** - * @brief This property holds an object with the same shape as KAboutData. - * - * For example: - * @code{json} - * aboutData: { + /*! + \qmlproperty KAboutData AboutPage::aboutData + \brief This property holds an object with the same shape as KAboutData. + + For example: + \qml + aboutData: { "displayName" : "KirigamiApp", "productName" : "kirigami/app", "componentName" : "kirigamiapp", @@ -59,47 +60,48 @@ Kirigami.ScrollablePage { "copyrightStatement" : "© 2010-2018 Plasma Development Team", "desktopFileName" : "org.kde.kirigamiapp" } - @endcode - * - * @see KAboutData - * @see org::kde::kirigami::AboutItem::aboutData - * @property KAboutData aboutData + \endqml + + \sa KAboutData */ property alias aboutData: aboutItem.aboutData - /** - * @brief This property holds a link to a "Get Involved" page. - * - * default: `"https://community.kde.org/Get_Involved" when your application id starts with "org.kde.", otherwise is empty` - * - * @property url getInvolvedUrl + /*! + \qmlproperty url AboutPage::getInvolvedUrl + + \brief This property holds a link to a "Get Involved" page. + + default: "https://community.kde.org/Get_Involved when your application id starts with "org.kde.", otherwise is empty */ property alias getInvolvedUrl: aboutItem.getInvolvedUrl - /** - * @brief This property holds a link to a "Donate" page. - * @since 5.101 - * - * default: `"https://kde.org/community/donations" when application id starts with "org.kde.", otherwise it is empty.` + /*! + \qmlproperty url AboutPage::donateUrl + + \brief This property holds a link to a "Donate" page. + \since 5.101 + + default: "https://kde.org/community/donations" when application id starts with "org.kde.", otherwise it is empty. */ property alias donateUrl: aboutItem.donateUrl - /** - * @brief This property controls whether to load avatars by URL. - * - * If set to false, a fallback "user" icon will be displayed. - * - * default: ``false`` + /*! + \qmlproperty bool AboutPage::loadAvatars + + \brief This property controls whether to load avatars by URL. + + If set to false, a fallback "user" icon will be displayed. + + default: \c false */ property alias loadAvatars: aboutItem.loadAvatars - /** @internal */ default property alias _content: aboutItem._content //END properties title: qsTr("About %1").arg(page.aboutData.displayName) - Kirigami.AboutItem { + AboutItem { id: aboutItem wideMode: page.width >= aboutItem.implicitWidth diff --git a/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationHeader.qml b/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationHeader.qml index 4172fb09ce..36981e2577 100644 --- a/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationHeader.qml +++ b/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationHeader.qml @@ -5,34 +5,19 @@ */ import QtQuick -import org.kde.kirigami as Kirigami import "private" as P -import "templates" as T - +import org.kde.kirigami.templates as T +import org.kde.kirigami.platform as Platform //TODO KF6: remove -/** - * @brief An item that can be used as a title for the application. - * - * Scrolling the main page will make it taller or shorter (through the point of going away) - * It's a behavior similar to the typical mobile web browser addressbar - * the minimum, preferred and maximum heights of the item can be controlled with - * * ``minimumHeight``: default is 0, i.e. hidden - * * ``preferredHeight``: default is Kirigami.Units.gridUnit * 1.6 - * * ``maximumHeight``: default is Kirigami.Units.gridUnit * 3 - * - * To achieve a titlebar that stays completely fixed just set the 3 sizes as the same - * - * @inherit org::kde::kirigami::templates::AbstractApplicationHeader - */ T.AbstractApplicationHeader { id: root - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.Header + Platform.Theme.inherit: false + Platform.Theme.colorSet: Platform.Theme.Header background: Rectangle { - color: Kirigami.Theme.backgroundColor + color: Platform.Theme.backgroundColor P.EdgeShadow { id: shadow visible: root.separatorVisible @@ -45,14 +30,14 @@ T.AbstractApplicationHeader { opacity: (!root.page || !root.page.header || root.page.header.toString().indexOf("ToolBar") === -1) Behavior on opacity { OpacityAnimator { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } } Behavior on opacity { OpacityAnimator { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } diff --git a/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationItem.qml b/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationItem.qml index e0673cf894..499d05ae14 100644 --- a/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationItem.qml +++ b/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationItem.qml @@ -6,214 +6,205 @@ import QtQuick import QtQuick.Templates as T +import "private" as P +import org.kde.kirigami.templates as KT +import org.kde.kirigami.platform as Platform -import org.kde.kirigami as Kirigami -import "templates/private" as TP -import "templates" as KT +/*! + \qmltype AbstractApplicationItem + \inqmlmodule org.kde.kirigami -/** - * @brief An item that provides the features of AbstractApplicationWindow without the window itself. - * - * This allows embedding into a larger application. - * Unless you need extra flexibility it is recommended to use ApplicationItem instead. - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.AbstractApplicationItem { - * [...] - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [ - * Kirigami.Action { - * text: "View" - * icon.name: "view-list-icons" - * Kirigami.Action { - * text: "action 1" - * } - * Kirigami.Action { - * text: "action 2" - * } - * Kirigami.Action { - * text: "action 3" - * } - * }, - * Kirigami.Action { - * text: "Sync" - * icon.name: "folder-sync" - * } - * ] - * } - * - * contextDrawer: Kirigami.ContextDrawer { - * id: contextDrawer - * } - * - * pageStack: Kirigami.PageRow { - * ... - * } - * [...] - * } - * @endcode - * - * @inherit QtQuick.Item + \brief An item that provides the features of AbstractApplicationWindow without the window itself. + + This allows embedding into a larger application. + Unless you need extra flexibility it is recommended to use ApplicationItem instead. + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.AbstractApplicationItem { + [...] + globalDrawer: Kirigami.GlobalDrawer { + actions: [ + Kirigami.Action { + text: "View" + icon.name: "view-list-icons" + Kirigami.Action { + text: "action 1" + } + Kirigami.Action { + text: "action 2" + } + Kirigami.Action { + text: "action 3" + } + }, + Kirigami.Action { + text: "Sync" + icon.name: "folder-sync" + } + ] + } + + contextDrawer: Kirigami.ContextDrawer { + id: contextDrawer + } + + pageStack: Kirigami.PageRow { + ... + } + [...] + } + \endcode */ Item { id: root //BEGIN properties - /** - * @brief This property holds the stack used to allocate the pages and to manage the - * transitions between them. - * - * Put a container here, such as QtQuick.Controls.StackView. + /*! + \brief This property holds the stack used to allocate the pages and to manage the + transitions between them. + + Put a container here, such as QtQuick.Controls.StackView. */ property Item pageStack - /** - * @brief This property holds the font for this item. - * - * default: ``Kirigami.Theme.defaultFont`` - */ - property font font: Kirigami.Theme.defaultFont + /*! + \brief This property holds the font for this item. - /** - * @brief This property holds the locale for this item. + default: Kirigami.Theme.defaultFont + */ + property font font: Platform.Theme.defaultFont + + /*! + \brief This property holds the locale for this item. */ property Locale locale - /** - * @brief This property holds an item that can be used as a menuBar for the application. + /*! + \brief This property holds an item that can be used as a menuBar for the application. */ property T.MenuBar menuBar - /** - * @brief This property holds an item that can be used as a title for the application. - * - * Scrolling the main page will make it taller or shorter (through the point of going away). - * - * It's a behavior similar to the typical mobile web browser addressbar. - * - * The minimum, preferred and maximum heights of the item can be controlled with - * - * * ``Layout.minimumHeight``: default is 0, i.e. hidden - * * ``Layout.preferredHeight``: default is Kirigami.Units.gridUnit * 1.6 - * * ``Layout.maximumHeight``: default is Kirigami.Units.gridUnit * 3 - * - * To achieve a titlebar that stays completely fixed, just set the 3 sizes as the same. - * - * @property kirigami::templates::AbstractApplicationHeader header + /*! + \qmlproperty AbstractApplicationHeader header + \brief This property holds an item that can be used as a title for the application. + + Scrolling the main page will make it taller or shorter (through the point of going away). + + It's a behavior similar to the typical mobile web browser addressbar. + + The minimum, preferred and maximum heights of the item can be controlled with: + \list + \li Layout.minimumHeight: default is 0, i.e. hidden + \li Layout.preferredHeight: default is Kirigami.Units.gridUnit * 1.6 + \li Layout.maximumHeight: default is Kirigami.Units.gridUnit * 3 + \endlist + To achieve a titlebar that stays completely fixed, just set the 3 sizes as the same. */ property KT.AbstractApplicationHeader header - /** - * @brief This property holds an item that can be used as a footer for the application. + /*! + \brief This property holds an item that can be used as a footer for the application. */ property Item footer - /** - * @brief This property sets whether the standard chrome of the app is visible. - * - * These are the action button, the drawer handles and the application header. - * - * default: ``true`` + /*! + \brief This property sets whether the standard chrome of the app is visible. + + These are the action button, the drawer handles and the application header. + + default: true */ property bool controlsVisible: true - /** - * @brief This property holds the drawer for global actions. - * - * Thos drawer can be opened by sliding from the left screen edge - * or by dragging the ActionButton to the right. - * - * @note It is recommended to use the GlobalDrawer here. - * @property org::kde::kirigami::OverlayDrawer globalDrawer + /*! + \brief This property holds the drawer for global actions. + + This drawer can be opened by sliding from the left screen edge + or by dragging the ActionButton to the right. + + \note It is recommended to use the GlobalDrawer here. */ property OverlayDrawer globalDrawer - /** - * @brief This property tells us whether the application is in "widescreen" mode. - * - * This is enabled on desktops or horizontal tablets. - * - * @note Different styles can have their own logic for deciding this. - */ - property bool wideScreen: width >= Kirigami.Units.gridUnit * 60 + /*! + \brief This property tells us whether the application is in "widescreen" mode. - /** - * @brief This property holds the drawer for context-dependent actions. - * - * The drawer that will be opened by sliding from the right screen edge - * or by dragging the ActionButton to the left. - * - * @note It is recommended to use the ContextDrawer type here. - * - * The contents of the context drawer should depend from what page is - * loaded in the main pageStack - * - * Example usage: - * - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * contextDrawer: Kirigami.ContextDrawer { - * enabled: true - * actions: [ - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * }, - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * } - * ] - * } - * } - * @endcode - * - * @property org::kde::kirigami::ContextDrawer contextDrawer + This is enabled on desktops or horizontal tablets. + + \note Different styles can have their own logic for deciding this. + */ + property bool wideScreen: width >= Platform.Units.gridUnit * 60 + + /*! + \brief This property holds the drawer for context-dependent actions. + + The drawer that will be opened by sliding from the right screen edge + or by dragging the ActionButton to the left. + + \note It is recommended to use the ContextDrawer type here. + + The contents of the context drawer should depend from what page is + loaded in the main pageStack. + + Example usage: + + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + contextDrawer: Kirigami.ContextDrawer { + enabled: true + actions: [ + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + }, + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + } + ] + } + } + \endcode */ property OverlayDrawer contextDrawer - /** - * @brief This property holds the list of all children of this item. - * @internal - * @property list __data - */ default property alias __data: contentItemRoot.data - /** - * @brief This property holds the Item of the main part of the Application UI. + /*! + \brief This property holds the Item of the main part of the Application UI. */ readonly property Item contentItem: Item { id: contentItemRoot parent: root anchors { fill: parent - topMargin: controlsVisible ? (root.header ? root.header.height : 0) + (root.menuBar ? root.menuBar.height : 0) : 0 - bottomMargin: controlsVisible && root.footer ? root.footer.height : 0 + topMargin: root.controlsVisible ? (root.header ? root.header.height : 0) + (root.menuBar ? root.menuBar.height : 0) : 0 + bottomMargin: root.controlsVisible && root.footer ? root.footer.height : 0 leftMargin: root.globalDrawer && root.globalDrawer.modal === false ? root.globalDrawer.contentItem.width * root.globalDrawer.position : 0 rightMargin: root.contextDrawer && root.contextDrawer.modal === false ? root.contextDrawer.contentItem.width * root.contextDrawer.position : 0 } } - /** - * @brief This property holds the color for the background. - * - * default: ``Kirigami.Theme.backgroundColor`` - */ - property color color: Kirigami.Theme.backgroundColor + /*! + \brief This property holds the color for the background. - /** - * @brief This property holds the background of the Application UI. + default: Kirigami.Theme.backgroundColor + */ + property color color: Platform.Theme.backgroundColor + + /*! + \brief This property holds the background of the Application UI. */ property Item background @@ -221,32 +212,36 @@ Item { //END properties //BEGIN functions - /** - * @brief This function shows a little passive notification at the bottom of the app window - * lasting for few seconds, with an optional action button. - * - * @param message The text message to be shown to the user. - * @param timeout How long to show the message: - * possible values: "short", "long" or the number of milliseconds - * @param actionText Text in the action button, if any. - * @param callBack A JavaScript function that will be executed when the - * user clicks the button. + /*! + \brief This function shows a little passive notification at the bottom of the app window + lasting for few seconds, with an optional action button. + + \a message The text message to be shown to the user. + + \a timeout How long to show the message: + possible values: "short", "long", or the number of milliseconds. + + \a actionText Text in the action button, if any. + + \a callBack A JavaScript function that will be executed when the + user clicks the button. */ function showPassiveNotification(message, timeout, actionText, callBack) { notificationsObject.showNotification(message, timeout, actionText, callBack); } - /** - * @brief This function hides the passive notification at specified index, if any is shown. - * @param index Index of the notification to hide. Default is 0 (oldest notification). + /*! + \brief This function hides the passive notification at specified index, if any is shown. + + \a index Index of the notification to hide. Default is 0 (oldest notification). */ function hidePassiveNotification(index = 0) { notificationsObject.hideNotification(index); } - /** - * @brief This property gets application windows object anywhere in the application. - * @returns a pointer to this item. + /*! + \brief This property gets application windows object anywhere in the application. + Returns a pointer to this item. */ function applicationWindow() { return root; @@ -304,14 +299,17 @@ Item { onPageStackChanged: pageStack.parent = root.contentItem; //END signals handlers - LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft + LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft LayoutMirroring.childrenInherit: true - TP.PassiveNotificationsManager { + P.PassiveNotificationsManager { id: notificationsObject + anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter - z: 1 + + parent: root.T.Overlay.overlay || root + z: 99999 } Item { @@ -349,7 +347,7 @@ Item { } } - implicitWidth: Kirigami.Settings.isMobile ? Kirigami.Units.gridUnit * 30 : Kirigami.Units.gridUnit * 55 - implicitHeight: Kirigami.Settings.isMobile ? Kirigami.Units.gridUnit * 45 : Kirigami.Units.gridUnit * 40 + implicitWidth: Platform.Settings.isMobile ? Platform.Units.gridUnit * 30 : Platform.Units.gridUnit * 55 + implicitHeight: Platform.Settings.isMobile ? Platform.Units.gridUnit * 45 : Platform.Units.gridUnit * 40 visible: true } diff --git a/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationWindow.qml b/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationWindow.qml index 319523c4d8..5aa5228bed 100644 --- a/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationWindow.qml +++ b/local/recipes/kde/kirigami/source/src/controls/AbstractApplicationWindow.qml @@ -7,241 +7,253 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami -import "templates/private" as TP +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as Controls +import "private" as P + +/*! + \qmltype AbstractApplicationWindow + \inqmlmodule org.kde.kirigami + \inherits QQC2.ApplicationWindow + + \brief A window that provides some basic features needed for all apps. + + Use this class only if you are implementing a custom content item and don’t need + any of the standard semantics and features of ApplicationWindow. + + Otherwise, use ApplicationWindow. + + It's usually used as a root QML component for the application. + It provides support for a central page stack, side drawers, and + basic support for the Android back button. + + Setting a width and height property on the ApplicationWindow + will set its initial size, but it won't set it as an automatically binding. + to resize programmatically the ApplicationWindow they need to + be assigned again in an imperative fashion + + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + [...] + globalDrawer: Kirigami.GlobalDrawer { + actions: [ + Kirigami.Action { + text: "View" + icon.name: "view-list-icons" + Kirigami.Action { + text: "action 1" + } + Kirigami.Action { + text: "action 2" + } + Kirigami.Action { + text: "action 3" + } + }, + Kirigami.Action { + text: "Sync" + icon.name: "folder-sync" + } + ] + } + + contextDrawer: Kirigami.ContextDrawer { + id: contextDrawer + } + + pageStack: PageStack { + ... + } + [...] + } + \endcode -/** - * A window that provides some basic features needed for all apps - * Use this class only if you need a custom content for your application, - * different from the Page Row behavior recommended by the HIG and provided - * by ApplicationWindow. - * It is recommended to use ApplicationWindow instead - * @see ApplicationWindow - * - * It's usually used as a root QML component for the application. - * It provides support for a central page stack, side drawers, and - * basic support for the Android back button. - * - * Setting a width and height property on the ApplicationWindow - * will set its initial size, but it won't set it as an automatically binding. - * to resize programmatically the ApplicationWindow they need to - * be assigned again in an imperative fashion - * - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * [...] - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [ - * Kirigami.Action { - * text: "View" - * icon.name: "view-list-icons" - * Kirigami.Action { - * text: "action 1" - * } - * Kirigami.Action { - * text: "action 2" - * } - * Kirigami.Action { - * text: "action 3" - * } - * }, - * Kirigami.Action { - * text: "Sync" - * icon.name: "folder-sync" - * } - * ] - * } - * - * contextDrawer: Kirigami.ContextDrawer { - * id: contextDrawer - * } - * - * pageStack: PageStack { - * ... - * } - * [...] - * } - * @endcode - * - * @inherit QtQuick.Controls.ApplicationWindow */ QQC2.ApplicationWindow { id: root //BEGIN properties - /** - * @brief This property holds the stack used to allocate the pages and to manage the - * transitions between them. - * - * Put a container here, such as QtQuick.Controls.StackView. + /*! + \brief This property holds the stack used to allocate the pages and to manage the + transitions between them. + + Put a container here, such as QtQuick.Controls.StackView. */ property Item pageStack - /** - * @brief This property sets whether the standard chrome of the app is visible. - * - * These are the action button, the drawer handles, and the application header. - * - * default: ``true`` + /*! + \brief This property sets whether the standard chrome of the app is visible. + + These are the action button, the drawer handles, and the application header. + + \default true */ property bool controlsVisible: true - /** - * @brief This property holds the drawer for global actions. - * - * This drawer can be opened by sliding from the left screen edge - * or by dragging the ActionButton to the right. - * - * @note It is recommended to use the GlobalDrawer here. - * @property org::kde::kirigami::OverlayDrawer globalDrawer + /*! + \brief This property holds the drawer for global actions. + + This drawer can be opened by sliding from the left screen edge + or by dragging the ActionButton to the right. + + \note It is recommended to use the GlobalDrawer here. */ property OverlayDrawer globalDrawer - /** - * @brief This property tells whether the application is in "widescreen" mode. - * - * This is enabled on desktops or horizontal tablets. - * - * @note Different styles can have their own logic for deciding this. - */ - property bool wideScreen: width >= Kirigami.Units.gridUnit * 60 + /*! + \brief This property tells whether the application is in "widescreen" mode. - /** - * @brief This property holds the drawer for context-dependent actions. - * - * The drawer that will be opened by sliding from the right screen edge - * or by dragging the ActionButton to the left. - * - * @note It is recommended to use the ContextDrawer type here. - * - * The contents of the context drawer should depend from what page is - * loaded in the main pageStack - * - * Example usage: - * - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * contextDrawer: Kirigami.ContextDrawer { - * enabled: true - * actions: [ - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * }, - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * } - * ] - * } - * } - * @endcode - * - * @property org::kde::kirigami::ContextDrawer contextDrawer + This is enabled on desktops or horizontal tablets. + + \note Different styles can have their own logic for deciding this. + */ + property bool wideScreen: width >= Platform.Units.gridUnit * 60 + + /*! + \brief This property holds the drawer for context-dependent actions. + + The drawer that will be opened by sliding from the right screen edge + or by dragging the ActionButton to the left. + + \note It is recommended to use the ContextDrawer type here. + + The contents of the context drawer should depend from what page is + loaded in the main pageStack. + + Example usage: + + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + contextDrawer: Kirigami.ContextDrawer { + enabled: true + actions: [ + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + }, + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + } + ] + } + } + \endcode */ property OverlayDrawer contextDrawer - /** - * Effectively the same as T.Overlay.overlay + /*! + The same as Overlay.overlay. */ readonly property Item overlay: T.Overlay.overlay - /** - * This property holds a standard action that will quit the application when triggered. - * Its properties have the following values: - * - * @code - * Action { - * text: "Quit" - * icon.name: "application-exit-symbolic" - * shortcut: StandardKey.Quit - * // ... - * } - * @endcode - * @since 5.76 + /*! + This property holds a standard action that will quit the application when triggered. + Its properties have the following values: + + \code + Action { + text: "Quit" + icon.name: "application-exit-symbolic" + shortcut: StandardKey.Quit + // ... + } + \endcode + \since 5.76 */ - readonly property Kirigami.Action quitAction: Kirigami.Action { + readonly property Controls.Action quitAction: Controls.Action { text: qsTr("Quit") icon.name: "application-exit"; shortcut: StandardKey.Quit - onTriggered: source => root.close(); + onTriggered: root.close(); } //END properties //BEGIN functions - /** - * @brief This function shows a little passive notification at the bottom of the app window - * lasting for few seconds, with an optional action button. - * - * @param message The text message to be shown to the user. - * @param timeout How long to show the message: - * possible values: "short", "long" or the number of milliseconds - * @param actionText Text in the action button, if any. - * @param callBack A JavaScript function that will be executed when the - * user clicks the button. + /*! + \qmlmethod void showPassiveNotification(string message, int timeout, string actionText, var callBack) + + \brief This function shows a little passive notification at the bottom of the app window + lasting for few seconds, with an optional action button. + + \a message The text message to be shown to the user. + + \a timeout How long to show the message: + possible values: "short", "long", or the number of milliseconds. + + \a actionText Text in the action button, if any. + + \a callBack A JavaScript function that will be executed when the + user clicks the button. */ function showPassiveNotification(message, timeout, actionText, callBack) { notificationsObject.showNotification(message, timeout, actionText, callBack); } - /** - * @brief This function hides the passive notification at specified index, if any is shown. - * @param index Index of the notification to hide. Default is 0 (oldest notification). + /*! + \brief This function hides the passive notification at specified index, if any is shown. + + \a index Index of the notification to hide. Default is 0 (oldest notification). */ function hidePassiveNotification(index = 0) { notificationsObject.hideNotification(index); } - /** - * @brief This function returns application window's object anywhere in the application. - * @returns a pointer to this application window - * can be used anywhere in the application. + /*! + \brief This function returns application window's object anywhere in the application. + Returns a pointer to this application window + can be used anywhere in the application. */ function applicationWindow() { return root; } //END functions - LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft + LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft LayoutMirroring.childrenInherit: true - color: Kirigami.Theme.backgroundColor + color: Platform.Theme.backgroundColor - TP.PassiveNotificationsManager { + P.PassiveNotificationsManager { id: notificationsObject + anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter - z: 1 + + parent: T.Overlay.overlay || root + z: 99999 } + // This is to make ApplicationWindow actually assign pageStack, as it replaces the property + property alias __pageStackAlias: root.pageStack contentItem.z: 1 - contentItem.anchors.left: contentItem.parent.left - contentItem.anchors.right: contentItem.parent.right - contentItem.anchors.topMargin: root.wideScreen && header && controlsVisible ? header.height : 0 + contentItem.anchors.fill: contentItem.parent + contentItem.anchors.topMargin: header?.visible ? header.height : 0 contentItem.anchors.leftMargin: root.globalDrawer && root.globalDrawer.modal === false && (!root.pageStack || root.pageStack.leftSidebar !== root.globalDrawer) ? root.globalDrawer.width * root.globalDrawer.position : 0 contentItem.anchors.rightMargin: root.contextDrawer && root.contextDrawer.modal === false ? root.contextDrawer.width * root.contextDrawer.position : 0 + contentItem.anchors.bottomMargin: footer && footer.visible ? footer.height : 0 Binding { target: root.header property: "x" - value: -contentItem.x + value: -root.contentItem.x } Binding { target: root.footer property: "x" - value: -contentItem.x + value: -root.contentItem.x } // Don't use root.overlay property here. For one, we know that in a window @@ -264,24 +276,14 @@ QQC2.ApplicationWindow { } } - width: Kirigami.Settings.isMobile ? Kirigami.Units.gridUnit * 30 : Kirigami.Units.gridUnit * 55 - height: Kirigami.Settings.isMobile ? Kirigami.Units.gridUnit * 45 : Kirigami.Units.gridUnit * 40 + width: Platform.Settings.isMobile ? Platform.Units.gridUnit * 30 : Platform.Units.gridUnit * 55 + height: Platform.Settings.isMobile ? Platform.Units.gridUnit * 45 : Platform.Units.gridUnit * 40 visible: true - Component.onCompleted: { - // Explicitly break the binding as we need this to be set only at startup. - // if the bindings are active, after this the window is resized by the - // compositor and then the bindings are reevaluated, then the window - // size would reset ignoring what the compositor asked. - // see BUG 433849 - root.width = root.width; - root.height = root.height; - } - // This is needed because discover in mobile mode does not // close with the global drawer open. Shortcut { - sequence: root.quitAction.shortcut + sequences: [root.quitAction.shortcut] enabled: root.quitAction.enabled context: Qt.ApplicationShortcut onActivated: root.close(); diff --git a/local/recipes/kde/kirigami/source/src/controls/AbstractCard.qml b/local/recipes/kde/kirigami/source/src/controls/AbstractCard.qml index 8284cc2907..67a9e5b94f 100644 --- a/local/recipes/kde/kirigami/source/src/controls/AbstractCard.qml +++ b/local/recipes/kde/kirigami/source/src/controls/AbstractCard.qml @@ -4,23 +4,9 @@ * SPDX-License-Identifier: LGPL-2.0-or-later */ -import "templates" as T +import org.kde.kirigami.templates as T import "private" as P -/** - * @brief AbstractCard is the base for cards. - * - * A Card is a visual object that serves as an entry point for more detailed information. - * An abstractCard is empty, providing just the look and the base properties and signals - * for an ItemDelegate. It can be filled with any custom layout of items, - * its content is organized in 3 properties: header, contentItem and footer. - * Use this only when you need particular custom contents, for a standard layout - * for cards, use the Card component. - * - * @see org::kde::kirigami::Card - * @inherit org::kde::kirigami::templates::AbstractCard - * @since 2.4 - */ T.AbstractCard { id: root diff --git a/local/recipes/kde/kirigami/source/src/controls/Action.qml b/local/recipes/kde/kirigami/source/src/controls/Action.qml index 655a1c23a6..1f5a1dedb7 100644 --- a/local/recipes/kde/kirigami/source/src/controls/Action.qml +++ b/local/recipes/kde/kirigami/source/src/controls/Action.qml @@ -9,143 +9,162 @@ import QtQml import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KC +import org.kde.kirigami.layouts as KL import org.kde.kirigami.private as P -/** - * @brief An item that represents an abstract Action - * @inherit QtQuick.QQC2.Action +/*! + \qmltype Action + \inqmlmodule org.kde.kirigami + + \brief An item that represents an abstract Action. */ QQC2.Action { + id: action + //BEGIN properties - /** - * @brief This property holds whether the graphic representation of the action - * is supposed to be visible. - * - * It's up to the action representation to honor this property. - * - * default: ``true`` + /*! + \brief This property holds whether the graphic representation of the action + is supposed to be visible. + + It's up to the action representation to honor this property. + + default: \c true */ property bool visible: !fromQAction || fromQAction.visible - /** - * @brief This property holds the tooltip text that is shown when the cursor is hovering over the control. - * - * Leaving this undefined or setting it to an empty string means that no tooltip will be shown when - * the cursor is hovering over the control that triggers the tooltip. - * @warning Tooltips may not be supported on all platforms. - */ - property string tooltip + /*! + \brief This property holds the tooltip text that is shown when the cursor is hovering over the control. - /** - * @brief This property sets whether this action is a separator action. - * - * default: ``false`` + Leaving this undefined or setting it to an empty string means that no tooltip will be shown when + the cursor is hovering over the control that triggers the tooltip. + \warning Tooltips may not be supported on all platforms. + */ + property string tooltip: fromQAction?.toolTip ?? "" + + /*! + \brief This property sets whether this action is a separator action. + + default: \c false */ property bool separator: false - /** - * @brief This property holds whether auto-exclusivity is enabled. - * - * If auto-exclusivity is enabled, checkable actions that belong to the - * same parent item behave as if they were part of the same ButtonGroup. - * Only one action can be checked at any time; checking another action - * automatically unchecks the previously checked one. - * - * default: ``false`` + /*! + \brief This property holds whether auto-exclusivity is enabled. + + If auto-exclusivity is enabled, checkable actions that belong to the + same parent item behave as if they were part of the same ButtonGroup. + Only one action can be checked at any time; checking another action + automatically unchecks the previously checked one. + + default: \c false */ property bool autoExclusive: false - /** - * @brief This property sets whether this action becomes a title displaying - * its child actions as sub-items in GlobalDrawers and ContextDrawers. - * - * default: ``false`` - * - * @since 2.6 + /*! + \brief This property sets whether this action becomes a title displaying + its child actions as sub-items in GlobalDrawers and ContextDrawers. + + default: \c false + + \since 2.6 */ property bool expandible: false - /** - * @brief This property holds the parent action. + /*! + \qmlproperty Action parent + \brief This property holds the parent action. */ property T.Action parent - /** - * @brief This property sets this action's display type. - * - * These are provided to implementations to indicate a preference for certain display - * styles. - * - * default: ``Kirigami.DisplayHint.NoPreference`` - * - * @note This property contains only preferences, implementations may choose to disregard them. - * @see org::kde::kirigami::DisplayHint - * @since 2.12 - */ - property int displayHint: Kirigami.DisplayHint.NoPreference + /*! + \qmlproperty enumeration Action::displayHint - /** - * @brief This property holds the component that should be used for displaying this action. - * @note This can be used to display custom components in the toolbar. - * @since 5.65 - * @since 2.12 + \brief This property sets this action's display type. + + These are provided to implementations to indicate a preference for certain display + styles. + + default: \c Kirigami.DisplayHint.NoPreference + + \note This property contains only preferences, implementations may choose to disregard them. + \sa DisplayHint + \since 2.12 + */ + property int displayHint: KL.DisplayHint.NoPreference + + /*! + \brief This property holds the component that should be used for displaying this action. + \note This can be used to display custom components in the toolbar. + \since 5.65 */ property Component displayComponent - /** - * @brief This property holds a list of child actions. - * - * This is useful for tree-like menus, such as the GlobalDrawer. - * - * Example usage: - * @code - * import QtQuick.Controls as QQC2 - * import org.kde.kirigami as Kirigami - * - * Kirigami.Action { - * text: "Tools" - * - * QQC2.Action { - * text: "Action1" - * } - * Kirigami.Action { - * text: "Action2" - * } - * } - * @endcode - * @property list children + /*! + \qmlproperty list children + \brief This property holds a list of child actions. + + This is useful for tree-like menus, such as the GlobalDrawer. + + Example usage: + \code + import QtQuick.Controls as QQC2 + import org.kde.kirigami as Kirigami + + Kirigami.Action { + text: "Tools" + + QQC2.Action { + text: "Action1" + } + Kirigami.Action { + text: "Action2" + } + } + \endcode */ default property list children - /** - * This property holds a QAction - * - * When provided Kirigami.Action will be initialized from the given QAction. - * - * @since Kirigami 6.4.0 + /*! + This property holds a QAction. + + When provided Kirigami.Action will be initialized from the given QAction. + + \since Kirigami 6.4 */ property QtObject fromQAction //END properties onChildrenChanged: { children - .filter(action => action instanceof Kirigami.Action) + .filter(action => action instanceof Action) .forEach(action => { action.parent = this; }); } - /** - * @brief This property holds the action's visible child actions. - * @property list visibleChildren + /*! + \qmlproperty list visibleChildren + \brief This property holds the action's visible child actions. */ readonly property list visibleChildren: children - .filter(action => !(action instanceof Kirigami.Action) || action.visible) + .filter(action => !(action instanceof Action) || action.visible) shortcut: fromQAction?.shortcut text: fromQAction?.text ?? '' - icon.name: fromQAction ? P.ActionHelper.iconName(fromQAction.icon) : '' + icon.name: { + if (!fromQAction) { + return ""; + } + // Need to check this as fromQAction.icon?.name || P.ActionHelper.iconName(fromQAction.icon) + // might end up calling P.ActionHelper.iconName() with something that is not a QIcon + if (fromQAction.icon?.hasOwnProperty("name")) { + return fromQAction.icon.name + } + return P.ActionHelper.iconName(fromQAction.icon); + } + onTriggered: if (fromQAction) { fromQAction.trigger(); } @@ -153,8 +172,15 @@ QQC2.Action { checked: fromQAction?.checked ?? false enabled: !fromQAction || fromQAction.enabled + readonly property Connections __changeConnection: Connections { + target: action.fromQAction + function onChanged() { + action.fromQActionChanged() + } + } readonly property Shortcut alternateShortcut : Shortcut { - sequences: P.ActionHelper.alternateShortcuts(fromQAction) - onActivated: root.trigger() + enabled: action.enabled + sequences: P.ActionHelper.alternateShortcuts(action.fromQAction) + onActivated: action.trigger() } } diff --git a/local/recipes/kde/kirigami/source/src/controls/ActionTextField.qml b/local/recipes/kde/kirigami/source/src/controls/ActionTextField.qml index 7e446e0509..27baba04e4 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ActionTextField.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ActionTextField.qml @@ -5,66 +5,90 @@ */ import QtQuick +import QtQuick.Layouts import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KC -/** - * This is advanced textfield. It is recommended to use this class when there - * is a need to create a create a textfield with action buttons (e.g a clear - * action). - * - * Example usage for a search field: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ActionTextField { - * id: searchField - * - * placeholderText: i18n("Search…") - * - * focusSequence: StandardKey.Find - * - * rightActions: Kirigami.Action { - * icon.name: "edit-clear" - * visible: searchField.text.length > 0 - * onTriggered: { - * searchField.clear(); - * searchField.accepted(); - * } - * } - * - * onAccepted: console.log("Search text is " + searchField.text); - * } - * @endcode - * - * @since 5.56 - * @inherit QtQuick.Controls.TextField +/*! + \qmltype ActionTextField + \inqmlmodule org.kde.kirigami + + \brief An advanced control to create custom textfields with inline buttons. + + ActionTextField can display inline action buttons on the leading or trailing + sides, and is used as the base class for other kinds of specialized text + fields, including \l SearchField and \l PasswordField. + + Each action's \c {text} property will be displayed in a tooltip on hover. + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.ActionTextField { + id: inputField + + placeholderText: i18n("Enter name") + + rightActions: Kirigami.Action { + icon.name: "edit-clear" + visible: inputField.text.length > 0 + onTriggered: { + inputField.clear(); + inputField.accepted(); + } + } + + onAccepted: console.log("Entered text is " + inputField.text); + } + \endcode + + \since 5.56 */ QQC2.TextField { id: root - /** - * @brief This property holds a shortcut sequence that will focus the text field. - * @since 5.56 + /*! + \qmlproperty keysequence ActionTextField::focusSequence + This property holds a shortcut sequence that will focus the text field. + \since 5.56 + + By default no shortcut is set. */ property alias focusSequence: focusShortcut.sequence - /** - * @brief This property holds a list of actions that will be displayed on the left side of the text field. - * - * By default this list is empty. - * - * @since 5.56 + /*! + \qmlproperty list ActionTextField::focusSequences + This property holds multiple shortcut sequences that will focus the text field. + \since 6.18 + + By default no shortcut is set. + */ + property alias focusSequences: focusShortcut.sequences + + /*! + \qmlproperty list leftActions + + This property holds a list of actions that will be displayed on the + leading side of the text field. + + By default this list is empty. + + \since 5.56 */ property list leftActions - /** - * @brief This property holds a list of actions that will be displayed on the right side of the text field. - * - * By default this list is empty. - * - * @since 5.56 + /*! + \qmlproperty list rightActions + + This property holds a list of actions that will be displayed on the + trailing side of the text field. + + By default this list is empty. + + \since 5.56 */ property list rightActions @@ -73,22 +97,25 @@ QQC2.TextField { hoverEnabled: true - // Manually setting this fixes alignment in RTL layouts - horizontalAlignment: TextInput.AlignLeft + horizontalAlignment: Qt.AlignLeft + LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft + LayoutMirroring.childrenInherit: true - leftPadding: Kirigami.Units.smallSpacing + (root.effectiveHorizontalAlignment === TextInput.AlignRight ? rightActionsRow : leftActionsRow).width - rightPadding: Kirigami.Units.smallSpacing + (root.effectiveHorizontalAlignment === TextInput.AlignRight ? leftActionsRow : rightActionsRow).width + leftPadding: Platform.Units.smallSpacing + (LayoutMirroring.enabled ? rightActionsRow : leftActionsRow).width + rightPadding: Platform.Units.smallSpacing + (LayoutMirroring.enabled ? leftActionsRow : rightActionsRow).width Behavior on leftPadding { + enabled: Platform.Units.longDuration > 0 NumberAnimation { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } Behavior on rightPadding { + enabled: Platform.Units.longDuration > 0 NumberAnimation { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } @@ -100,89 +127,73 @@ QQC2.TextField { root.forceActiveFocus(Qt.ShortcutFocusReason) root.selectAll() } - } - QQC2.ToolTip { - visible: focusShortcut.nativeText.length > 0 && root.text.length === 0 && root.hovered - text: focusShortcut.nativeText - } + // here to make it private + component InlineActionIcon: QQC2.ToolButton { + required property T.Action modelData - component InlineActionIcon: Kirigami.Icon { - id: iconDelegate + icon.width: Platform.Units.iconSizes.sizeForLabels + icon.height: Platform.Units.iconSizes.sizeForLabels - required property T.Action modelData + Layout.fillHeight: true + Layout.preferredWidth: implicitHeight - implicitWidth: Kirigami.Units.iconSizes.sizeForLabels - implicitHeight: Kirigami.Units.iconSizes.sizeForLabels + icon.name: modelData.icon.name.length > 0 ? modelData.icon.name : modelData.icon.source + text: modelData.text + display: QQC2.ToolButton.IconOnly - anchors.verticalCenter: parent.verticalCenter + visible: (modelData as KC.Action)?.visible ?? true + enabled: modelData.enabled + focusPolicy: Qt.TabFocus - source: modelData.icon.name.length > 0 ? modelData.icon.name : modelData.icon.source - visible: !(modelData instanceof Kirigami.Action) || modelData.visible - active: actionArea.containsPress || actionArea.activeFocus - enabled: modelData.enabled + onClicked: modelData.trigger() - MouseArea { - id: actionArea - - anchors.fill: parent - activeFocusOnTab: true - cursorShape: Qt.PointingHandCursor - hoverEnabled: true - - Accessible.name: iconDelegate.modelData.text - Accessible.role: Accessible.Button - - Keys.onPressed: event => { - switch (event.key) { - case Qt.Key_Space: - case Qt.Key_Enter: - case Qt.Key_Return: - case Qt.Key_Select: - clicked(null); - event.accepted = true; - break; - } - } - onClicked: mouse => iconDelegate.modelData.trigger() - } - - QQC2.ToolTip { - visible: (actionArea.containsMouse || actionArea.activeFocus) && (iconDelegate.modelData.text.length > 0) - text: iconDelegate.modelData.text + QQC2.ToolTip.visible: (hovered || activeFocus) && (text.length > 0) + QQC2.ToolTip.text: text } } - Row { + QQC2.ToolTip.visible: focusShortcut.nativeText.length > 0 && root.text.length === 0 && !rightActionsRow.hovered && !leftActionsRow.hovered && hovered + QQC2.ToolTip.text: focusShortcut.nativeText + QQC2.ToolTip.delay: Platform.Settings.tabletMode ? Application.styleHints.mousePressAndHoldInterval : Platform.Units.toolTipDelay + + + RowLayout { id: leftActionsRow - padding: Kirigami.Units.smallSpacing - spacing: Kirigami.Units.smallSpacing + + anchors { + margins: 1 + top: parent.top + left: parent.left + bottom: parent.bottom + } + + visible: root.leftActions.length > 0 + + spacing: Platform.Units.smallSpacing layoutDirection: Qt.LeftToRight - LayoutMirroring.enabled: root.effectiveHorizontalAlignment === TextInput.AlignRight - anchors.left: parent.left - anchors.leftMargin: Kirigami.Units.smallSpacing - anchors.top: parent.top - anchors.topMargin: parent.topPadding - anchors.bottom: parent.bottom - anchors.bottomMargin: parent.bottomPadding + Repeater { model: root.leftActions InlineActionIcon { } } } - Row { + RowLayout { id: rightActionsRow - padding: Kirigami.Units.smallSpacing - spacing: Kirigami.Units.smallSpacing + + anchors { + margins: 1 + top: parent.top + right: parent.right + bottom: parent.bottom + } + + visible: root.rightActions.length > 0 + + spacing: Platform.Units.smallSpacing layoutDirection: Qt.RightToLeft - LayoutMirroring.enabled: root.effectiveHorizontalAlignment === TextInput.AlignRight - anchors.right: parent.right - anchors.rightMargin: Kirigami.Units.smallSpacing - anchors.top: parent.top - anchors.topMargin: parent.topPadding - anchors.bottom: parent.bottom - anchors.bottomMargin: parent.bottomPadding + Repeater { model: root.rightActions InlineActionIcon { } diff --git a/local/recipes/kde/kirigami/source/src/controls/ActionToolBar.qml b/local/recipes/kde/kirigami/source/src/controls/ActionToolBar.qml index 77833cc107..3a6fdd4e9c 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ActionToolBar.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ActionToolBar.qml @@ -3,140 +3,151 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQml import QtQuick.Layouts import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KC +import org.kde.kirigami.layouts as KL import "private" as P -/** - * @brief A toolbar built out of a list of actions. - * - * The default representation for visible actions is a QtQuick.Controls.ToolButton, but - * it can be changed by setting the `Action.displayComponent` for an action. - * The default behavior of ActionToolBar is to display as many actions as possible, - * placing those that will not fit into an overflow menu. This can be changed by - * setting the `displayHint` property on an Action. For example, when setting the - * `DisplayHint.KeepVisible` display hint, ActionToolBar will try to keep that action - * in view as long as possible, using an icon-only button if a button with text - * does not fit. - * - * @inherit QtQuick.Controls.Control - * @since 2.5 +/*! + \qmltype ActionToolBar + \inqmlmodule org.kde.kirigami + + \brief A toolbar built from a list of actions. + + Creates a toolbar out of a list of \l actions. Each item is a + QtQuick.Controls.ToolButton by default, but this can be overridden by setting + the Action.displayComponent property on that item's Action. + + The default behavior of ActionToolBar is to display as many items as possible, + placing the ones that don't fit into an overflow menu. You can control this + behavior by setting the displayHint property on an item's Action. For example, + when setting the DisplayHint.KeepVisible display hint, ActionToolBar will try + to keep that action's item in view as long as possible, transforming it into + an icon-only button if a button with an icon and text doesn't fit. + + \since 2.5 */ QQC2.Control { id: root //BEGIN properties - /** - * @brief This property holds a list of visible actions. - * - * The ActionToolBar will try to display as many actions as possible. - * Those that won't fit will go into an overflow menu. - * - * @property list actions + /*! + \qmlproperty list ActionToolBar::actions + + \brief This property holds a list of visible actions. + + The ActionToolBar will try to display as many actions as possible. + The ones that don't fit will go into an overflow menu. */ readonly property alias actions: layout.actions - /** - * @brief This property holds whether the buttons will have a flat appearance. - * - * default: ``true`` + /*! + This property holds whether the buttons will have a flat/ToolButton style + appearance. + + default: \c true */ property bool flat: true - /** - * @brief This property determines how the icon and text are displayed within the button. - * - * Permitted values are: - * * ``Button.IconOnly`` - * * ``Button.TextOnly`` - * * ``Button.TextBesideIcon`` - * * ``Button.TextUnderIcon`` - * - * default: ``Controls.Button.TextBesideIcon`` - * - * @see QtQuick.Controls.AbstractButton - * @property int display + /*! + This property determines how the icon and text are displayed within the button. + + Permitted values are: + \list + \li Button.IconOnly + \li Button.TextOnly + \li Button.TextBesideIcon + \li Button.TextUnderIcon + \endlist + + default: \c Controls.Button.TextBesideIcon + + \sa AbstractButton */ property int display: QQC2.Button.TextBesideIcon - /** - * @brief This property holds the alignment of the buttons. - * - * When there is more space available than required by the visible delegates, - * we need to determine how to place the delegates. - * - * When there is more space available than required by the visible action delegates, - * we need to determine where to position them. - * - * default: ``Qt.AlignLeft`` - * - * @see Qt::AlignmentFlag - * @property int alignment + /*! + \qmlproperty Qt::Alignment ActionToolBar::alignment + + \brief This property holds the alignment of the buttons. + + When there is more space available than required by the visible delegates, + we need to determine how to place the delegates. + + When there is more space available than required by the visible action delegates, + we need to determine where to position them. + + default: \c Qt.AlignLeft + + \sa Qt::AlignmentFlag */ property alias alignment: layout.alignment - /** - * @brief This property holds the position of the toolbar. - * - * If this ActionToolBar is the contentItem of a QQC2 Toolbar, the position is bound to the ToolBar's position - * - * Permitted values are: - * * ``ToolBar.Header``: The toolbar is at the top, as a window or page header. - * * ``ToolBar.Footer``: The toolbar is at the bottom, as a window or page footer. - * - * @property int position - */ - property int position: parent instanceof T.ToolBar ? parent.position : QQC2.ToolBar.Header + /*! + \brief This property holds the position of the toolbar. - /** - * @brief This property holds the maximum width of the content of this ToolBar. - * - * If the toolbar's width is larger than this value, empty space will - * be added on the sides, according to the Alignment property. - * - * The value of this property is derived from the ToolBar's actions and their properties. - * - * @property int maximumContentWidth + If this ActionToolBar is the contentItem of a QQC2 ToolBar, the position + is automatically bound to the ToolBar's position. + + Permitted values are: + \list + \li ToolBar.Header: The toolbar is at the top, as a window or page header. + \li ToolBar.Footer: The toolbar is at the bottom, as a window or page footer. + \endlist + + default: \c QQC2.ToolBar.Header + */ + property int position: (parent as T.ToolBar)?.position ?? QQC2.ToolBar.Header + + /*! + \qmlproperty int ActionToolBar::maximumContentWidth + + \brief This property holds the maximum width of the content. + + If the ActionToolBar's width is larger than this value, empty space will + be added on the sides, according to the Alignment property. + + The value of this property is derived from the ActionToolBar's actions and + their properties. */ readonly property alias maximumContentWidth: layout.implicitWidth - /** - * @brief This property holds the name of the icon to use for the overflow menu button. - * - * default: ``"overflow-menu"`` - * - * @since 5.65 - * @since 2.12 + /*! + This property holds the name of the icon to use for the overflow menu button. + + default: \c overflow-menu + + \since 5.65 */ property string overflowIconName: "overflow-menu" - /** - * @brief This property holds the combined width of all visible delegates. - * @property int visibleWidth + /*! + \qmlproperty int ActionToolbar::visibleWidth + This property holds the combined width of all visible delegates. */ readonly property alias visibleWidth: layout.visibleWidth - /** - * @brief This property sets the handling method for items that do not match the toolbar's height. - * - * When toolbar items do not match the height of the toolbar, there are - * several ways we can deal with this. This property sets the preferred way. - * - * Permitted values are: - * * ``HeightMode.AlwaysCenter`` - * * ``HeightMode.AlwaysFill`` - * * ``AlwaysFill.ConstrainIfLarger`` - * - * default: ``HeightMode::ConstrainIfLarger`` - * - * @see ToolBarLayout::heightMode - * @see ToolBarLayout::HeightMode - * @property ToolBarLayout::HeightMode heightMode + /*! + \qmlproperty enumeration ActionToolBar::heightMode + + \brief This property determines how to handle items that do not match + the ActionToolBar's height. + + Permitted values are: + \list + \li HeightMode.AlwaysCenter + \li HeightMode.AlwaysFill + \li HeightMode.ConstrainIfLarger + \endlist + + default: \c HeightMode::ConstrainIfLarger */ property alias heightMode: layout.heightMode //END properties @@ -153,33 +164,34 @@ QQC2.Control { topPadding: 0 bottomPadding: 0 - Accessible.role: Accessible.ToolBar - - contentItem: Kirigami.ToolBarLayout { + contentItem: KL.ToolBarLayout { id: layout - spacing: Kirigami.Units.smallSpacing + spacing: Platform.Units.smallSpacing layoutDirection: root.mirrored ? Qt.RightToLeft : Qt.LeftToRight fullDelegate: P.PrivateActionToolButton { flat: root.flat display: root.display - action: Kirigami.ToolBarLayout.action + position: root.position + action: KL.ToolBarLayout.action as T.Action } iconDelegate: P.PrivateActionToolButton { flat: root.flat display: QQC2.Button.IconOnly - action: Kirigami.ToolBarLayout.action + position: root.position + action: KL.ToolBarLayout.action as T.Action showMenuArrow: false menuActions: { - if (action.displayComponent) { + const kAction = action as KC.Action + if (kAction?.displayComponent) { return [action] } - if (action instanceof Kirigami.Action) { - return action.children; + if (kAction) { + return kAction.children; } return [] @@ -190,52 +202,57 @@ QQC2.Control { moreButton: P.PrivateActionToolButton { flat: root.flat + Accessible.role: Accessible.ButtonMenu + position: root.position - action: Kirigami.Action { + action: KC.Action { tooltip: qsTr("More Actions") icon.name: root.overflowIconName - displayHint: Kirigami.DisplayHint.IconOnly | Kirigami.DisplayHint.HideChildIndicator + displayHint: KL.DisplayHint.IconOnly | KL.DisplayHint.HideChildIndicator } - Accessible.name: action.tooltip + Accessible.name: (action as KC.Action).tooltip menuActions: root.actions menuComponent: P.ActionsMenu { + y: root.position === QQC2.ToolBar.Footer ? -height : 0 submenuComponent: P.ActionsMenu { + id: actionsMenu + Binding { - target: parentItem + target: actionsMenu.parentItem property: "visible" - value: layout.hiddenActions.includes(parentAction) - && (!(parentAction instanceof Kirigami.Action) || parentAction.visible) + value: layout.hiddenActions.includes(actionsMenu.parentAction) + && ((actionsMenu.parentAction as KC.Action)?.visible ?? true) restoreMode: Binding.RestoreBinding } Binding { - target: parentItem + target: actionsMenu.parentItem property: "autoExclusive" - value: action instanceof Kirigami.Action && action.autoExclusive + value: (action as KC.Action)?.autoExclusive ?? false restoreMode: Binding.RestoreBinding } } itemDelegate: P.ActionMenuItem { visible: layout.hiddenActions.includes(action) - && (!(action instanceof Kirigami.Action) || action.visible) - autoExclusive: action instanceof Kirigami.Action && action.autoExclusive + && ((action as KC.Action)?.visible ?? true) + autoExclusive: (action as KC.Action).autoExclusive ?? false } loaderDelegate: Loader { property T.Action action height: visible ? implicitHeight : 0 visible: layout.hiddenActions.includes(action) - && (!(action instanceof Kirigami.Action) || action.visible) + && ((action as KC.Action)?.visible ?? true) } separatorDelegate: QQC2.MenuSeparator { property T.Action action visible: layout.hiddenActions.includes(action) - && (!(action instanceof Kirigami.Action) || action.visible) + && ((action as KC.Action)?.visible ?? true) } } } diff --git a/local/recipes/kde/kirigami/source/src/controls/ApplicationItem.qml b/local/recipes/kde/kirigami/source/src/controls/ApplicationItem.qml index fbc0841c59..ac5df68726 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ApplicationItem.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ApplicationItem.qml @@ -5,86 +5,90 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KC -/** - * @brief An item that provides the features of ApplicationWindow without the window itself. - * - * This allows embedding into a larger application. - * It's based around the PageRow component that allows adding/removing of pages. - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationItem { - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [ - * Kirigami.Action { - * text: "View" - * icon.name: "view-list-icons" - * Kirigami.Action { - * text: "action 1" - * } - * Kirigami.Action { - * text: "action 2" - * } - * Kirigami.Action { - * text: "action 3" - * } - * }, - * Kirigami.Action { - * text: "Sync" - * icon.name: "folder-sync" - * } - * ] - * } - * - * contextDrawer: Kirigami.ContextDrawer { - * id: contextDrawer - * } - * - * pageStack.initialPage: Kirigami.Page { - * mainAction: Kirigami.Action { - * icon.name: "edit" - * onTriggered: { - * // do stuff - * } - * } - * contextualActions: [ - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * }, - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * } - * ] - * // ... - * } - * } - * @endcode +/*! + \qmltype ApplicationItem + \inqmlmodule org.kde.kirigami + + \brief An item that provides the features of ApplicationWindow without the window itself. + + This allows embedding into a larger application. + It's based around the PageRow component that allows adding/removing of pages. + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationItem { + globalDrawer: Kirigami.GlobalDrawer { + actions: [ + Kirigami.Action { + text: "View" + icon.name: "view-list-icons" + Kirigami.Action { + text: "action 1" + } + Kirigami.Action { + text: "action 2" + } + Kirigami.Action { + text: "action 3" + } + }, + Kirigami.Action { + text: "Sync" + icon.name: "folder-sync" + } + ] + } + + contextDrawer: Kirigami.ContextDrawer { + id: contextDrawer + } + + pageStack.initialPage: Kirigami.Page { + mainAction: Kirigami.Action { + icon.name: "edit" + onTriggered: { + // do stuff + } + } + contextualActions: [ + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + }, + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + } + ] + // ... + } + } + \endcode */ -Kirigami.AbstractApplicationItem { +KC.AbstractApplicationItem { id: root - /** - * @brief This property holds the PageRow used to allocate the pages and - * manage the transitions between them. - * - * It's using a PageRow, while having the same API as PageStack, - * it positions the pages as adjacent columns, with as many columns - * as can fit in the screen. An handheld device would usually have a single - * fullscreen column, a tablet device would have many tiled columns. - * - * @property org::kde::kirigami::PageRow pageStack + /*! + \qmlproperty PageRow ApplicationItem::pageStack + + \brief This property holds the PageRow used to allocate the pages and + manage the transitions between them. + + It's using a PageRow, while having the same API as PageStack, + it positions the pages as adjacent columns, with as many columns + as can fit in the screen. An handheld device would usually have a single + fullscreen column, a tablet device would have many tiled columns. */ readonly property alias pageStack: __pageStack @@ -95,7 +99,7 @@ Kirigami.AbstractApplicationItem { pageStack.currentItem?.forceActiveFocus(); } - Kirigami.PageRow { + KC.PageRow { id: __pageStack anchors { fill: parent @@ -105,14 +109,14 @@ Kirigami.AbstractApplicationItem { // NOTE: drawers are handling the back button by themselves const backEvent = {accepted: false} if (root.pageStack.currentIndex >= 1) { - root.pageStack.currentItem.backRequested(backEvent); + (root.pageStack.currentItem as Page).backRequested(backEvent); if (!backEvent.accepted) { root.pageStack.flickBack(); backEvent.accepted = true; } } - if (Kirigami.Settings.isMobile && !backEvent.accepted && Qt.platform.os !== "ios") { + if (Platform.Settings.isMobile && !backEvent.accepted && Qt.platform.os !== "ios") { Qt.quit(); } } diff --git a/local/recipes/kde/kirigami/source/src/controls/ApplicationWindow.qml b/local/recipes/kde/kirigami/source/src/controls/ApplicationWindow.qml index b98803469f..2bf7e0cc25 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ApplicationWindow.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ApplicationWindow.qml @@ -5,112 +5,118 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC + +/*! + \qmltype ApplicationWindow + \inqmlmodule org.kde.kirigami + + \brief A window that provides some basic features needed for all apps. + + It's usually used as a root QML component for the application. + It's based around the PageRow component, the application will be + about pages adding and removal. + For most of the usages, this class should be used instead + of AbstractApplicationWindow + + Setting a width and height property on the ApplicationWindow + will set its initial size, but it won't set it as an automatically binding. + to resize programmatically the ApplicationWindow they need to + be assigned again in an imperative fashion + + Example usage: + \qml + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + [...] + globalDrawer: Kirigami.GlobalDrawer { + actions: [ + Kirigami.Action { + text: "View" + icon.name: "view-list-icons" + Kirigami.Action { + text: "action 1" + } + Kirigami.Action { + text: "action 2" + } + Kirigami.Action { + text: "action 3" + } + }, + Kirigami.Action { + text: "Sync" + icon.name: "folder-sync" + } + ] + } + + contextDrawer: Kirigami.ContextDrawer { + id: contextDrawer + } + + pageStack.initialPage: Kirigami.Page { + mainAction: Kirigami.Action { + icon.name: "edit" + onTriggered: { + // do stuff + } + } + contextualActions: [ + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + }, + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + } + ] + [...] + } + [...] + } + \endqml -/** - * @brief A window that provides some basic features needed for all apps - * - * It's usually used as a root QML component for the application. - * It's based around the PageRow component, the application will be - * about pages adding and removal. - * For most of the usages, this class should be used instead - * of AbstractApplicationWindow - * @see AbstractApplicationWindow - * - * Setting a width and height property on the ApplicationWindow - * will set its initial size, but it won't set it as an automatically binding. - * to resize programmatically the ApplicationWindow they need to - * be assigned again in an imperative fashion - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * [...] - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [ - * Kirigami.Action { - * text: "View" - * icon.name: "view-list-icons" - * Kirigami.Action { - * text: "action 1" - * } - * Kirigami.Action { - * text: "action 2" - * } - * Kirigami.Action { - * text: "action 3" - * } - * }, - * Kirigami.Action { - * text: "Sync" - * icon.name: "folder-sync" - * } - * ] - * } - * - * contextDrawer: Kirigami.ContextDrawer { - * id: contextDrawer - * } - * - * pageStack.initialPage: Kirigami.Page { - * mainAction: Kirigami.Action { - * icon.name: "edit" - * onTriggered: { - * // do stuff - * } - * } - * contextualActions: [ - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * }, - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * } - * ] - * [...] - * } - * [...] - * } - * @endcode - * */ -Kirigami.AbstractApplicationWindow { +KC.AbstractApplicationWindow { id: root - /** - * @brief This property holds the stack used to allocate the pages and to - * manage the transitions between them. - * - * It's using a PageRow, while having the same API as PageStack, - * it positions the pages as adjacent columns, with as many columns - * as can fit in the screen. An handheld device would usually have a single - * fullscreen column, a tablet device would have many tiled columns. - * - * @property org::kde::kirigami::PageRow pageStack + /*! + \qmlproperty PageRow ApplicationWindow::pageStack + + \brief This property holds the stack used to allocate the pages and to + manage the transitions between them. + + It's using a PageRow, while having the same API as PageStack, + it positions the pages as adjacent columns, with as many columns + as can fit in the screen. An handheld device would usually have a single + fullscreen column, a tablet device would have many tiled columns. */ readonly property alias pageStack: __pageStack + // Since out pageStack property replaces the one in AbstractApplicationWindow, + // this is the only way to actually assign it + __pageStackAlias: __pageStack + // Redefined here as here we can know a pointer to PageRow. // We negate the canBeEnabled check because we don't want to factor in the automatic drawer provided by Kirigami for page actions for our calculations - wideScreen: width >= (root.pageStack.defaultColumnWidth) + ((contextDrawer && !(contextDrawer instanceof Kirigami.ContextDrawer)) ? contextDrawer.width : 0) + (globalDrawer ? globalDrawer.width : 0) + wideScreen: width >= (root.pageStack.defaultColumnWidth) + ((contextDrawer && !(contextDrawer instanceof KC.ContextDrawer)) ? contextDrawer.width : 0) + (globalDrawer ? globalDrawer.width : 0) Component.onCompleted: { pageStack.currentItem?.forceActiveFocus() } - Kirigami.PageRow { + KC.PageRow { id: __pageStack - globalToolBar.style: Kirigami.ApplicationHeaderStyle.Auto + globalToolBar.style: KC.ApplicationHeaderStyle.Auto anchors { fill: parent } diff --git a/local/recipes/kde/kirigami/source/src/controls/Card.qml b/local/recipes/kde/kirigami/source/src/controls/Card.qml index 23bce66fb9..9b93aaad87 100644 --- a/local/recipes/kde/kirigami/source/src/controls/Card.qml +++ b/local/recipes/kde/kirigami/source/src/controls/Card.qml @@ -8,66 +8,77 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.layouts as KL import "private" as P -/** - * @brief This is the standard layout of a Card. - * - * It is recommended to use this class when the concept of Cards is needed - * in the application. - * - * This Card has default items as header and footer. The header is an - * image that can contain an optional title and icon, accessible via the - * banner grouped property. - * - * The footer will show a series of toolbuttons (and eventual overflow menu) - * representing the actions list accessible with the list property actions. - * It is possible even tough is discouraged to override the footer: - * in this case the actions property shouldn't be used. - * - * @inherit org::kde::kirigami::AbstractCard - * @since 2.4 +/*! + \qmltype Card + \inqmlmodule org.kde.kirigami + + \brief Card with a standard layout. + + Card implements a particular standardized layout inside an AbstractCard, with + pre-defined header and footer items. + + The header is an image that can contain an optional title and icon, accessible + via the \l banner grouped property. + + The footer will show a series of ToolButtons (and eventually an overflow menu) + representing the \c action property's actions. + + Override the \c contentItem with the content you want to be displayed in the + card between the pre-made header and footer. + + Overriding the \c header and \c footer properties is discouraged, as this will + result in the \c title, \c icon, and \c actions properties having no effect. + + If you want to make your own completely custom layout, use \l AbstractCard + instead. + + \since 2.4 */ -Kirigami.AbstractCard { +KC.AbstractCard { id: root - /** - * @brief This property holds the clickable actions that will be available in the footer - * of the card. - * - * The actions will be represented by a list of ToolButtons with an optional overflow - * menu, when not all of them will fit in the available Card width. - * - * @property list actions + /*! + \brief This property holds the clickable actions that will be available in + the footer. + + The actions will be represented by a list of ToolButtons with an overflow + menu when not all of them will fit in the available space. */ property list actions - /** - * @brief This grouped property controls the banner image present in the header. - * - * This grouped property has the following sub-properties: - * * ``source: url``: The source for the image. It understands any URL valid for an Image component. - * * ``titleIcon: string``: The optional icon to put in the banner, either a freedesktop-compatible - * icon name (recommended) or any URL supported by QtQuick.Image. - * * ``title: string``: The title for the banner, shown as contrasting text over the image. - * * ``titleAlignment: Qt::Alignment``: The alignment of the title inside the image. - * default: ``Qt.AlignTop | Qt.AlignLeft`` - * * ``titleLevel: int``: The Kirigami.Heading level for the title, which controls the font size. - * default: ``1``, which is the largest size. - * * ``titleWrapMode: QtQuick.Text::wrapMode``: Whether the header text should be able to wrap. - * default: ``Text.NoWrap`` - * - * It also has the full set of properties that QtQuick.Image has, such as sourceSize and fillMode. - * - * @see org::kde::kirigami::private::BannerImage - * @property Image banner + /*! + \qmlproperty url Card::banner.source + \qmlproperty string Card::banner.titleIcon + \qmlproperty string Card::banner.title + \qmlproperty Qt.Alignment Card::banner.titleAlignment + \qmlproperty int Card::banner.titleLevel + \qmlproperty QtQuick.Text.wrapMode Card::banner.titleWrapMode + + \brief This grouped property controls the banner image present in the header. + + It also has the full set of properties that QtQuick.Image has, such as sourceSize and fillMode. + + \list + \li source: The source for the image. It understands any URL valid for an Image component. + \li titleIcon: The optional icon to put in the banner, either a freedesktop-compatible + icon name (recommended) or any URL supported by QtQuick.Image. + \li title: The title for the banner, shown as contrasting text over the image. + \li titleAlignment: The alignment of the title inside the image. Default: \c {Qt.AlignTop | Qt.AlignLeft}. + \li titleLevel: The Kirigami.Heading level for the title, ranging from 1 (big) to 5 (small). Default: \c 1. + \li titleWrapMode: Whether the header text should be able to wrap. Default: \c Text.NoWrap. + \endlist + */ readonly property alias banner: bannerImage Accessible.name: banner.title - header: Kirigami.Padding { + header: KL.Padding { + id: headerItem topPadding: -root.topPadding + root.background.border.width leftPadding: -root.leftPadding + root.background.border.width rightPadding: -root.rightPadding + root.background.border.width @@ -77,7 +88,7 @@ Kirigami.AbstractCard { id: bannerImage implicitWidth: Layout.preferredWidth - implicitHeight: (source.toString().length > 0 && sourceSize.width > 0 && sourceSize.height > 0 ? width / (sourceSize.width / sourceSize.height) : Layout.minimumHeight) + parent.topPadding + parent.bottomPadding + implicitHeight: (source.toString().length > 0 && sourceSize.width > 0 && sourceSize.height > 0 ? width / (sourceSize.width / sourceSize.height) : Layout.minimumHeight) + headerItem.topPadding + headerItem.bottomPadding readonly property real widthWithBorder: width + root.background.border.width * 2 readonly property real heightWithBorder: height + root.background.border.width * 2 @@ -109,7 +120,7 @@ Kirigami.AbstractCard { header.anchors.bottomMargin = Qt.binding(() => 0); } - footer: Kirigami.ActionToolBar { + footer: KC.ActionToolBar { id: actionsToolBar actions: root.actions position: QQC2.ToolBar.Footer diff --git a/local/recipes/kde/kirigami/source/src/controls/CardsLayout.qml b/local/recipes/kde/kirigami/source/src/controls/CardsLayout.qml index 1fe00e045c..0d78a8a8f1 100644 --- a/local/recipes/kde/kirigami/source/src/controls/CardsLayout.qml +++ b/local/recipes/kde/kirigami/source/src/controls/CardsLayout.qml @@ -6,77 +6,79 @@ import QtQuick import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform -/** - * @brief A GridLayout optimized for showing one or two columns of cards, - * depending on the available space. - * - * It Should be used when the cards are not instantiated by a model or by a - * model which has always very few items. - * - * They are presented as a grid of two columns which will remain - * centered if the application is really wide, or become a single - * column if there is not enough space for two columns, - * such as a mobile phone screen. - * - * A CardsLayout should always be contained within a ColumnLayout. - * - * @since 2.4 - * @inherit QtQuick.Layouts.GridLayout +/*! + \qmltype CardsLayout + \inqmlmodule org.kde.kirigami + + \brief A GridLayout optimized for showing one or two columns of cards, + depending on the available space. + + It Should be used when the cards are not instantiated by a model or by a + model which has always very few items. + + They are presented as a grid of two columns which will remain + centered if the application is really wide, or become a single + column if there is not enough space for two columns, + such as a mobile phone screen. + + A CardsLayout should always be contained within a ColumnLayout. + + \since 2.4 */ GridLayout { - /** - * @brief This property holds the maximum number of columns. - * - * This layout will never lay out the items in more columns than maximumColumns - * - * default: ``2`` - * - * @since 2.5 + /*! + \brief This property holds the maximum number of columns. + + This layout will never lay out the items in more columns than maximumColumns + + default: 2 + + \since 2.5 */ property int maximumColumns: 2 - /** - * @brief This property holds the maximum width the columns may have. - * - * The cards will never become wider than this size; when the GridLayout is wider than - * maximumColumnWidth, it will switch from one to two columns. - * - * If the default needs to be overridden for some reason, - * it is advised to express this unit as a multiple - * of Kirigami.Units.gridUnit. - * - * default: ``20 * Kirigami.Units.gridUnit`` - */ - property int maximumColumnWidth: Kirigami.Units.gridUnit * 20 + /*! + \brief This property holds the maximum width the columns may have. - /** - * @brief This property holds the minimum width the columns may have. - * - * The layout will try to dispose of items - * in a number of columns that will respect this size constraint. - * - * default: ``12 * Kirigami.Units.gridUnit`` - * - * @since 2.5 + The cards will never become wider than this size; when the GridLayout is wider than + maximumColumnWidth, it will switch from one to two columns. + + If the default needs to be overridden for some reason, + it is advised to express this unit as a multiple + of Kirigami.Units.gridUnit. + + default: 20 * Kirigami.Units.gridUnit */ - property int minimumColumnWidth: Kirigami.Units.gridUnit * 12 + property int maximumColumnWidth: Platform.Units.gridUnit * 20 + + /*! + \brief This property holds the minimum width the columns may have. + + The layout will try to dispose of items + in a number of columns that will respect this size constraint. + + default: 12 * Kirigami.Units.gridUnit + + \since 2.5 + */ + property int minimumColumnWidth: Platform.Units.gridUnit * 12 columns: Math.max(1, Math.min(maximumColumns > 0 ? maximumColumns : Infinity, Math.floor(width/minimumColumnWidth), Math.ceil(width/maximumColumnWidth))); - rowSpacing: Kirigami.Units.largeSpacing - columnSpacing: Kirigami.Units.largeSpacing + rowSpacing: Platform.Units.largeSpacing + columnSpacing: Platform.Units.largeSpacing // NOTE: this default width which defaults to 2 columns is just to remove a binding loop on columns - width: maximumColumnWidth*2 + Kirigami.Units.largeSpacing + width: maximumColumnWidth*2 + Platform.Units.largeSpacing // same computation of columns, but on the parent size Layout.preferredWidth: maximumColumnWidth * Math.max(1, Math.min(maximumColumns > 0 ? maximumColumns : Infinity, Math.floor(parent.width/minimumColumnWidth), - Math.ceil(parent.width/maximumColumnWidth))) + Kirigami.Units.largeSpacing * (columns - 1) + Math.ceil(parent.width/maximumColumnWidth))) + Platform.Units.largeSpacing * (columns - 1) Layout.maximumWidth: Layout.preferredWidth Layout.alignment: Qt.AlignHCenter diff --git a/local/recipes/kde/kirigami/source/src/controls/CardsListView.qml b/local/recipes/kde/kirigami/source/src/controls/CardsListView.qml index cf8a2e3e21..9d4866f3fb 100644 --- a/local/recipes/kde/kirigami/source/src/controls/CardsListView.qml +++ b/local/recipes/kde/kirigami/source/src/controls/CardsListView.qml @@ -5,33 +5,37 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform -/** - * CardsListView is a ListView which can have AbstractCard as its delegate: it will - * automatically assign the proper spacings and margins around the cards adhering - * to the design guidelines. - * - * CardsListView should be used only with cards which can look good at any - * horizontal size, so it is recommended to directly use AbstractCard with an - * appropriate layout inside, because they are stretching for the whole list width. - * - * Therefore, it is discouraged to use it with the Card type. - * - * The choice between using this view with AbstractCard or a normal ListView - * is purely a choice based on aesthetics alone. - * - * It is recommended to use default values. - * - * @inherit QtQuick.ListView - * @since 2.4 +/*! + \qmltype CardsListView + \inqmlmodule org.kde.kirigami + + \brief A ListView that can have AbstractCard as its delegate. + + This control will automatically assign the proper spacings + and margins around the cards adhering to the design guidelines. + + CardsListView should be used only with cards which can look good at any + horizontal size, so it is recommended to directly use AbstractCard with an + appropriate layout inside, because they are stretching for the whole list width. + + Therefore, it is discouraged to use it with the Card type. + + The choice between using this view with AbstractCard or a normal ListView + is purely a choice based on aesthetics alone. + + It is recommended to use default values. + + \since 2.4 */ ListView { id: root - spacing: Kirigami.Units.largeSpacing * 2 + spacing: Platform.Units.largeSpacing * 2 topMargin: headerPositioning !== ListView.InlineHeader ? spacing : 0 - rightMargin: Kirigami.Units.largeSpacing * 2 - leftMargin: Kirigami.Units.largeSpacing * 2 + rightMargin: Platform.Units.largeSpacing * 2 + leftMargin: Platform.Units.largeSpacing * 2 + contentWidth: width - rightMargin - leftMargin reuseItems: true headerPositioning: ListView.OverlayHeader diff --git a/local/recipes/kde/kirigami/source/src/controls/Chip.qml b/local/recipes/kde/kirigami/source/src/controls/Chip.qml index 8f74073359..2b2b18a538 100644 --- a/local/recipes/kde/kirigami/source/src/controls/Chip.qml +++ b/local/recipes/kde/kirigami/source/src/controls/Chip.qml @@ -4,92 +4,74 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts -import org.kde.kirigami as Kirigami -import "templates" as KT +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.templates as KT import "private" as P -/** - * @brief A compact element that represents an attribute, action, or filter. - * - * Should be used in a group of multiple elements. e.g when displaying tags in a image viewer. - * - * Example usage: - * * @code - * import org.kde.kirigami as Kirigami - * - * Flow { - * Repeater { - * model: chipsModel - * - * Kirigami.Chip { - * text: model.text - * icon.name: "tag-symbolic" - * closable: model.closable - * onClicked: { - * [...] - * } - * onRemoved: { - * [...] - * } - * } - * } - * } - * @endcode - * - * @since 2.19 - */ KT.Chip { id: chip - implicitWidth: layout.implicitWidth - implicitHeight: toolButton.implicitHeight + implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, + implicitContentWidth + leftPadding + rightPadding, + implicitIndicatorWidth) + implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, + implicitContentHeight + topPadding + bottomPadding, + implicitIndicatorHeight) - checkable: !closable - hoverEnabled: true + checkable: chip.interactive && !closable + hoverEnabled: chip.interactive + down: chip.interactive && pressed - /** - * @brief This property holds the label item; used for accessing the usual Text properties. - * @property QtQuick.Controls.Label labelItem - */ property alias labelItem: label - contentItem: RowLayout { - id: layout - spacing: 0 + icon.width: Platform.Units.iconSizes.small + icon.height: Platform.Units.iconSizes.small + spacing: Platform.Units.smallSpacing + leftPadding: Platform.Units.smallSpacing + + ((!iconItem.visible && !mirrored) || (!indicator.visible && mirrored) + ? Platform.Units.smallSpacing : 0) + + (indicator.visible && mirrored ? implicitIndicatorWidth : 0) + rightPadding: Platform.Units.smallSpacing + + ((!iconItem.visible && mirrored) || (!indicator.visible && !mirrored) + ? Platform.Units.smallSpacing : 0) + + (indicator.visible && !mirrored ? implicitIndicatorWidth : 0) - Kirigami.Icon { - id: icon - visible: icon.valid - Layout.preferredWidth: Kirigami.Units.iconSizes.small - Layout.preferredHeight: Kirigami.Units.iconSizes.small - Layout.leftMargin: Kirigami.Units.smallSpacing + indicator: QQC2.ToolButton { + x: chip.mirrored ? 0 : parent.width - width + y: Math.round((parent.height - height) / 2) + visible: chip.closable + text: qsTr("Remove") + icon.name: "edit-delete-remove" + icon.width: Platform.Units.iconSizes.sizeForLabels + icon.height: Platform.Units.iconSizes.sizeForLabels + display: QQC2.AbstractButton.IconOnly + onClicked: chip.removed() + } + + contentItem: RowLayout { + spacing: chip.spacing + + Primitives.Icon { + id: iconItem + visible: valid && chip.display !== QQC2.AbstractButton.TextOnly + implicitWidth: chip.icon.width + implicitHeight: chip.icon.height color: chip.icon.color isMask: chip.iconMask source: chip.icon.name || chip.icon.source } QQC2.Label { id: label + visible: text.length > 0 && chip.display !== QQC2.AbstractButton.IconOnly Layout.fillWidth: true - Layout.minimumWidth: Kirigami.Units.gridUnit * 1.5 - Layout.leftMargin: icon.visible ? Kirigami.Units.smallSpacing : Kirigami.Units.largeSpacing - Layout.rightMargin: chip.closable ? Kirigami.Units.smallSpacing : Kirigami.Units.largeSpacing verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter text: chip.text - color: Kirigami.Theme.textColor + color: Platform.Theme.textColor elide: Text.ElideRight } - QQC2.ToolButton { - id: toolButton - visible: chip.closable - text: qsTr("Remove Tag") - icon.name: "edit-delete-remove" - icon.width: Kirigami.Units.iconSizes.sizeForLabels - icon.height: Kirigami.Units.iconSizes.sizeForLabels - display: QQC2.AbstractButton.IconOnly - onClicked: chip.removed() - } } background: P.DefaultChipBackground {} diff --git a/local/recipes/kde/kirigami/source/src/controls/ContextDrawer.qml b/local/recipes/kde/kirigami/source/src/controls/ContextDrawer.qml index 5232bb7385..1da27d4bac 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ContextDrawer.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ContextDrawer.qml @@ -4,98 +4,101 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.controls as KC import "private" as KP -/** - * A specialized type of drawer that will show a list of actions - * relevant to the application's current page. - * - * Example usage: - * - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * contextDrawer: Kirigami.ContextDrawer { - * enabled: true - * actions: [ - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * }, - * Kirigami.Action { - * icon.name: "edit" - * text: "Action text" - * onTriggered: { - * // do stuff - * } - * } - * ] - * } - * } - * @endcode - * - * @inherit OverlayDrawer +/*! + \qmltype ContextDrawer + \inqmlmodule org.kde.kirigami + + \brief A specialized type of drawer that will show a list of actions + relevant to the application's current page. + + Example usage: + + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + contextDrawer: Kirigami.ContextDrawer { + enabled: true + actions: [ + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + }, + Kirigami.Action { + icon.name: "edit" + text: "Action text" + onTriggered: { + // do stuff + } + } + ] + } + } + \endcode + */ -Kirigami.OverlayDrawer { +KC.OverlayDrawer { id: root - handleClosedIcon.source: null - handleOpenIcon.source: null + handleOpenIcon.name: "window-close-symbolic" + handleClosedIcon.name: "overflow-menu-symbolic" - /** - * @brief A title for the action list that will be shown to the user when opens the drawer - * - * default: ``qsTr("Actions")`` + /*! + \brief A title for the action list that will be shown to the user when opens the drawer + + default: qsTr("Actions") */ property string title: qsTr("Actions") - /** - * List of contextual actions to be displayed in a ListView. - * - * @see QtQuick.Action - * @see org::kde::kirigami::Action - * @property list actions + /*! + \qmlproperty list actions + List of contextual actions to be displayed in a ListView. */ property list actions - /** - * @brief Arbitrary content to show above the list view. - * - * default: `an Item containing a Kirigami.Heading that displays a title whose text is - * controlled by the title property.` - * - * @property Component header - * @since 2.7 + /*! + \qmlproperty Component ContextDrawer::header + + \brief Arbitrary content to show above the list view. + + default: an Item containing a Kirigami.Heading that displays a title whose text is + controlled by the title property. + + \since 2.7 */ property alias header: menu.header - /** - * @brief Arbitrary content to show below the list view. - * @property Component footer - * @since 2.7 + /*! + \qmlproperty Component ContextDrawer::footer + \brief Arbitrary content to show below the list view. + \since 2.7 */ property alias footer: menu.footer // Not stored in a property, so we don't have to waste memory on an extra list. function visibleActions() { return actions.filter( - action => !(action instanceof Kirigami.Action) || action.visible + action => !(action instanceof KC.Action) || action.visible ); } // Disable for empty menus or when we have a global toolbar enabled: { const pageStack = typeof applicationWindow !== "undefined" ? applicationWindow().pageStack : null; - const itemExistsButStyleIsNotToolBar = item => item && item.globalToolBarStyle !== Kirigami.ApplicationHeaderStyle.ToolBar; + const itemExistsButStyleIsNotToolBar = item => item && item.globalToolBarStyle !== KC.ApplicationHeaderStyle.ToolBar; return menu.count > 0 && (!pageStack || !pageStack.globalToolBar @@ -104,14 +107,14 @@ Kirigami.OverlayDrawer { || itemExistsButStyleIsNotToolBar(pageStack.trailingVisibleItem)); } - edge: Qt.application.layoutDirection === Qt.RightToLeft ? Qt.LeftEdge : Qt.RightEdge + edge: Application.layoutDirection === Qt.RightToLeft ? Qt.LeftEdge : Qt.RightEdge drawerOpen: false // list items go to edges, have their own padding - topPadding: 0 - leftPadding: 0 - rightPadding: 0 - bottomPadding: 0 + topPadding: parent.SafeArea.margins.top + leftPadding: root.edge === Qt.LeftEdge ? parent.SafeArea.margins.left : 0 + rightPadding: root.edge === Qt.RightEdge ? parent.SafeArea.margins.right : 0 + bottomPadding: parent.SafeArea.margins.bottom property bool handleVisible: { if (typeof applicationWindow === "function") { @@ -126,8 +129,8 @@ Kirigami.OverlayDrawer { contentItem: QQC2.ScrollView { // this just to create the attached property - Kirigami.Theme.inherit: true - implicitWidth: Kirigami.Units.gridUnit * 20 + Platform.Theme.inherit: true + implicitWidth: Platform.Units.gridUnit * 20 ListView { id: menu interactive: contentHeight > height @@ -136,10 +139,10 @@ Kirigami.OverlayDrawer { topMargin: root.handle.y > 0 ? menu.height - menu.contentHeight : 0 header: QQC2.ToolBar { - height: pageStack.globalToolBar.preferredHeight + Primitives.AlignedSize.height: pageStack.globalToolBar.preferredHeight width: parent.width - Kirigami.Heading { + KC.Heading { id: heading elide: Text.ElideRight text: root.title @@ -148,8 +151,8 @@ Kirigami.OverlayDrawer { verticalCenter: parent.verticalCenter left: parent.left right: parent.right - leftMargin: Kirigami.Units.largeSpacing - rightMargin: Kirigami.Units.largeSpacing + leftMargin: Platform.Units.largeSpacing + rightMargin: Platform.Units.largeSpacing } } } @@ -167,12 +170,12 @@ Kirigami.OverlayDrawer { } Repeater { - model: delegate.modelData instanceof Kirigami.Action && delegate.modelData.expandible - ? delegate.modelData.children : null + model: (delegate.modelData as KC.Action)?.expandible + ? (delegate.modelData as KC.Action).children : null delegate: KP.ContextDrawerActionItem { width: parent.width - leftPadding: Kirigami.Units.gridUnit + leftPadding: Platform.Units.gridUnit opacity: !root.collapsed } } diff --git a/local/recipes/kde/kirigami/source/src/controls/ContextualHelpButton.qml b/local/recipes/kde/kirigami/source/src/controls/ContextualHelpButton.qml index d98db0adaa..99f3b3e584 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ContextualHelpButton.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ContextualHelpButton.qml @@ -10,67 +10,79 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform -/** - * @brief An inline help button that shows a tooltip when clicked. - * - * Use this component when you want to explain details or usage of a feature of - * the UI, but the explanation is too long to fit in an inline label, and too - * important to put in a hover tooltip and risk the user missing it. - * - * @image html ContextualHelpButton.png "Example of ContextualHelpButton usage" - * - * Example usage: - * @code{.qml} - * import QtQuick.Controls as QQC2 - * import QtQuick.Layouts - * import org.kde.kirigami as Kirigami - * - * RowLayout { - * spacing: Kirigami.Units.smallSpacing - * - * QQC2.CheckBox { - * text: i18n("Allow screen tearing in fullscreen windows") - * } - * - * Kirigami.ContextualHelpButton { - * toolTipText: i18n("With most displays, screen tearing reduces latency at the cost of some visual fidelity at high framerates. Note that not all graphics drivers support this setting.") - * } - * } - * - * @endcode +/*! + \qmltype ContextualHelpButton + \inqmlmodule org.kde.kirigami + + \brief An inline help button that shows a tooltip when clicked. + + Use this component when you want to explain details or usage of a feature of + the UI, but the explanation is too long to fit in an inline label, and too + important to put in a hover tooltip and risk the user missing it. + + \image ContextualHelpButton.png "Example of ContextualHelpButton usage" + + Example usage: + \qml + import QtQuick.Controls as QQC2 + import QtQuick.Layouts + import org.kde.kirigami as Kirigami + + RowLayout { + spacing: Kirigami.Units.smallSpacing + + QQC2.CheckBox { + text: i18n("Allow screen tearing in fullscreen windows") + } + + Kirigami.ContextualHelpButton { + toolTipText: i18n("With most displays, screen tearing reduces latency at the cost of some visual fidelity at high framerates. Note that not all graphics drivers support this setting.") + } + } + + \endqml */ QQC2.ToolButton { id: root + /*! + \qmlproperty string ContextualHelpButton::toolTipText + */ property alias toolTipText: toolTip.text + + /*! + */ property bool toolTipVisible: false text: qsTr("Show Contextual Help") icon.name: "help-contextual-symbolic" display: QQC2.ToolButton.IconOnly - + Accessible.description: toolTipText onReleased: { - toolTip.delay = toolTipVisible ? Kirigami.Units.toolTipDelay : 0; + toolTip.delay = toolTipVisible ? Platform.Units.toolTipDelay : 0; toolTipVisible = !toolTipVisible; } onActiveFocusChanged: { - toolTip.delay = Kirigami.Units.toolTipDelay; + toolTip.delay = Platform.Units.toolTipDelay; toolTipVisible = false; } - Layout.maximumHeight: parent?.height ?? -1 + Layout.maximumHeight: implicitHeight + Layout.fillHeight: true QQC2.ToolTip { id: toolTip clip: true + z: Kirigami.OverlayZStacking.z visible: root.hovered || root.toolTipVisible || toolTipHandler.hovered onVisibleChanged: { if (!visible && root.toolTipVisible) { root.toolTipVisible = false; - delay = Kirigami.Units.toolTipDelay; + delay = Platform.Units.toolTipDelay; } } timeout: -1 // Don't disappear while the user might still be reading it! diff --git a/local/recipes/kde/kirigami/source/src/controls/FlexColumn.qml b/local/recipes/kde/kirigami/source/src/controls/FlexColumn.qml index 37a5d3ded8..25bfdd0c0f 100644 --- a/local/recipes/kde/kirigami/source/src/controls/FlexColumn.qml +++ b/local/recipes/kde/kirigami/source/src/controls/FlexColumn.qml @@ -6,46 +6,48 @@ import QtQuick import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform //TODO KF6: how much is this used? can be removed? -/** - * @brief FlexColumn is a column that grows in width to a fixed cap. - * @inherit QtQuick.Layouts.ColumnLayout +/*! + \qmltype FlexColumn + \inqmlmodule org.kde.kirigami + + \brief FlexColumn is a column that grows in width to a fixed cap. */ ColumnLayout { id: __outer default property alias columnChildren: __inner.children - /** - * @brief This property holds the column's offset from the cross axis. - * - * Note that padding is applied on both sides - * when the column is aligned to a centered cross axis. - * - * default: ``Kirigami.Units.largeSpacing`` - */ - property real padding: Kirigami.Units.largeSpacing + /*! + \brief This property holds the column's offset from the cross axis. - /** - * @brief This property holds maximum column width. - * - * default: ``Kirigami.Units.gridUnit * 50`` - */ - property real maximumWidth: Kirigami.Units.gridUnit * 50 + Note that padding is applied on both sides + when the column is aligned to a centered cross axis. - /** - * @brief This property sets column's alignment when it hits its maximum width. - * - * default: ``Qt.AlignHCenter | Qt.AlignTop`` - * - * @property Qt::Alignment alignment + default: Kirigami.Units.largeSpacing + */ + property real padding: Platform.Units.largeSpacing + + /*! + \brief This property holds maximum column width. + + default: Kirigami.Units.gridUnit * 50 + */ + property real maximumWidth: Platform.Units.gridUnit * 50 + + /*! + \brief This property sets column's alignment when it hits its maximum width. + + default: Qt.AlignHCenter | Qt.AlignTop + + \sa Qt.Alignment */ property int alignment: Qt.AlignHCenter | Qt.AlignTop - /** - * @brief This property holds the inner column's width. + /*! + \brief This property holds the inner column's width. */ property real innerWidth: __inner.width diff --git a/local/recipes/kde/kirigami/source/src/controls/GlobalDrawer.qml b/local/recipes/kde/kirigami/source/src/controls/GlobalDrawer.qml index fe7c4a4860..93ee232a72 100644 --- a/local/recipes/kde/kirigami/source/src/controls/GlobalDrawer.qml +++ b/local/recipes/kde/kirigami/source/src/controls/GlobalDrawer.qml @@ -10,51 +10,63 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.layouts as KL +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.platform as Platform import "private" as KP -/** - * A specialized form of the Drawer intended for showing an application's - * always-available global actions. Think of it like a mobile version of - * a desktop application's menubar. - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [ - * Kirigami.Action { - * text: "View" - * icon.name: "view-list-icons" - * Kirigami.Action { - * text: "action 1" - * } - * Kirigami.Action { - * text: "action 2" - * } - * Kirigami.Action { - * text: "action 3" - * } - * }, - * Kirigami.Action { - * text: "Sync" - * icon.name: "folder-sync" - * } - * ] - * } - * } - * @endcode +/*! + \qmltype GlobalDrawer + \inqmlmodule org.kde.kirigami + + \brief A specialized form of the Drawer intended for showing an application's + always-available global actions. + + Think of it like a mobile version of a desktop application's menubar. + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + globalDrawer: Kirigami.GlobalDrawer { + actions: [ + Kirigami.Action { + text: "View" + icon.name: "view-list-icons" + Kirigami.Action { + text: "action 1" + } + Kirigami.Action { + text: "action 2" + } + Kirigami.Action { + text: "action 3" + } + }, + Kirigami.Action { + text: "Sync" + icon.name: "folder-sync" + } + ] + } + } + \endcode */ -Kirigami.OverlayDrawer { +KC.OverlayDrawer { id: root - edge: Qt.application.layoutDirection === Qt.RightToLeft ? Qt.RightEdge : Qt.LeftEdge + edge: Application.layoutDirection === Qt.RightToLeft ? Qt.RightEdge : Qt.LeftEdge handleClosedIcon.source: null handleOpenIcon.source: null + leftPadding: root.edge === Qt.LeftEdge ? parent.SafeArea.margins.left : 0 + topPadding: parent.SafeArea.margins.top + rightPadding: root.edge === Qt.RightEdge ? parent.SafeArea.margins.right : 0 + bottomPadding: parent.SafeArea.margins.bottom + handleVisible: { // When drawer is inline with content and opened, there is no point is showing handle. if (!modal && drawerOpen) { @@ -70,202 +82,201 @@ Kirigami.OverlayDrawer { } // ...but it still performs additional checks. - return !isMenu || Kirigami.Settings.isMobile; + return !isMenu || Platform.Settings.isMobile; } - enabled: !isMenu || Kirigami.Settings.isMobile + enabled: !isMenu || Platform.Settings.isMobile //BEGIN properties - /** - * @brief This property holds the title displayed at the top of the drawer. - * @see org::kde::kirigami::private::BannerImage::title - * @property string title + /*! + \brief This property holds the title displayed at the top of the drawer. */ property string title - /** - * @brief This property holds an icon to be displayed alongside the title. - * @see org::kde::kirigami::private::BannerImage::titleIcon - * @see org::kde::kirigami::Icon::source - * @property var titleIcon + /*! + \brief This property holds an icon to be displayed alongside the title. + \sa Icon::source */ property var titleIcon - /** - * @brief This property holds the actions displayed in the drawer. - * - * The list of actions can be nested having a tree structure. - * A tree depth bigger than 2 is discouraged. - * - * Example usage: - * - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [ - * Kirigami.Action { - * text: "View" - * icon.name: "view-list-icons" - * Kirigami.Action { - * text: "action 1" - * } - * Kirigami.Action { - * text: "action 2" - * } - * Kirigami.Action { - * text: "action 3" - * } - * }, - * Kirigami.Action { - * text: "Sync" - * icon.name: "folder-sync" - * } - * ] - * } - * } - * @endcode - * @property list actions + /*! + \qmlproperty list GlobalDrawer::actions + \brief This property holds the actions displayed in the drawer. + + The list of actions can be nested having a tree structure. + A tree depth bigger than 2 is discouraged. + + Example usage: + + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + globalDrawer: Kirigami.GlobalDrawer { + actions: [ + Kirigami.Action { + text: "View" + icon.name: "view-list-icons" + Kirigami.Action { + text: "action 1" + } + Kirigami.Action { + text: "action 2" + } + Kirigami.Action { + text: "action 3" + } + }, + Kirigami.Action { + text: "Sync" + icon.name: "folder-sync" + } + ] + } + } + \endcode */ property list actions - /** - * @brief This property holds an item that will always be displayed at the top of the drawer. - * - * If the drawer contents can be scrolled, this item will stay still and won't scroll. - * - * @note This property is mainly intended for toolbars. - * @since 2.12 + /*! + \qmlproperty Item GlobalDrawer::header + \brief This property holds an item that will always be displayed at the top of the drawer. + + If the drawer contents can be scrolled, this item will stay still and won't scroll. + + \note This property is mainly intended for toolbars. + \since 2.12 */ property alias header: mainLayout.header - /** - * @brief This property holds an item that will always be displayed at the bottom of the drawer. - * - * If the drawer contents can be scrolled, this item will stay still and won't scroll. - * - * @note This property is mainly intended for toolbars. - * @since 6.0 + /*! + \qmlproperty Item GlobalDrawer::footer + + \brief This property holds an item that will always be displayed at the bottom of the drawer. + + If the drawer contents can be scrolled, this item will stay still and won't scroll. + + \note This property is mainly intended for toolbars. */ property alias footer: mainLayout.footer - /** - * @brief This property holds items that are displayed above the actions. - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * [...] - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [...] - * topContent: [Button { - * text: "Button" - * onClicked: //do stuff - * }] - * } - * [...] - * } - * @endcode - * @property list topContent + /*! + \qmlproperty list GlobalDrawer::topContent + \brief This property holds items that are displayed above the actions. + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + [...] + globalDrawer: Kirigami.GlobalDrawer { + actions: [...] + topContent: [Button { + text: "Button" + onClicked: //do stuff + }] + } + [...] + } + \endcode */ property alias topContent: topContent.data - /** - * @brief This property holds items that are displayed under the actions. - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * [...] - * globalDrawer: Kirigami.GlobalDrawer { - * actions: [...] - * Button { - * text: "Button" - * onClicked: //do stuff - * } - * } - * [...] - * } - * @endcode - * @note This is a `default` property. - * @property list content + /*! + \qmlproperty list GlobalDrawer::content + + \brief This property holds items that are displayed under the actions. + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.ApplicationWindow { + [...] + globalDrawer: Kirigami.GlobalDrawer { + actions: [...] + Button { + text: "Button" + onClicked: //do stuff + } + } + [...] + } + \endcode */ default property alias content: mainContent.data - /** - * @brief This property sets whether content items at the top should be shown. - * when the drawer is collapsed as a sidebar. - * - * If you want to keep some items visible and some invisible, set this to - * false and control the visibility/opacity of individual items, - * binded to the collapsed property - * - * default: ``false`` - * - * @since 2.5 + /*! + \brief This property sets whether content items at the top should be shown. + when the drawer is collapsed as a sidebar. + + If you want to keep some items visible and some invisible, set this to + false and control the visibility/opacity of individual items, + binded to the collapsed property. + + default: false + + \since 2.5 */ property bool showTopContentWhenCollapsed: false - /** - * @brief This property sets whether content items at the bottom should be shown. - * when the drawer is collapsed as a sidebar. - * - * If you want to keep some items visible and some invisible, set this to - * false and control the visibility/opacity of individual items, - * binded to the collapsed property - * - * default: ``false`` - * - * @see content - * @since 2.5 + /*! + \brief This property sets whether content items at the bottom should be shown. + when the drawer is collapsed as a sidebar. + + If you want to keep some items visible and some invisible, set this to + false and control the visibility/opacity of individual items, + binded to the collapsed property. + + default: false + + \sa content + \since 2.5 */ property bool showContentWhenCollapsed: false // TODO property bool showHeaderWhenCollapsed: false - /** - * @brief This property sets whether activating a leaf action resets the - * menu to show leaf's parent actions. - * - * A leaf action is an action without any child actions. - * - * default: ``true`` + /*! + \brief This property sets whether activating a leaf action resets the + menu to show leaf's parent actions. + + A leaf action is an action without any child actions. + + default: true */ property bool resetMenuOnTriggered: true - /** - * @brief This property points to the action acting as a submenu + /*! + \brief This property points to the action acting as a submenu */ readonly property T.Action currentSubMenu: stackView.currentItem?.current ?? null - /** - * @brief This property sets whether the drawer becomes a menu on the desktop. - * - * default: ``false`` - * - * @since 2.11 + /*! + \brief This property sets whether the drawer becomes a menu on the desktop. + + default: \c false + + \since 2.11 */ property bool isMenu: false - /** - * @brief This property sets the visibility of the collapse button - * when the drawer collapsible. - * - * default: ``true`` - * - * @since 2.12 + /*! + \brief This property sets the visibility of the collapse button + when the drawer collapsible. + + default: true + + \since 2.12 */ property bool collapseButtonVisible: true //END properties - /** - * @brief This function reverts the menu back to its initial state + /*! + \qmlmethod void GlobalDrawer::resetMenu() + \brief This function reverts the menu back to its initial state. */ function resetMenu() { stackView.pop(stackView.get(0, T.StackView.DontLoad)); @@ -274,16 +285,63 @@ Kirigami.OverlayDrawer { } } - // rightPadding: !Kirigami.Settings.isMobile && mainFlickable.contentHeight > mainFlickable.height ? Kirigami.Units.gridUnit : Kirigami.Units.smallSpacing + //BEGIN FUNCTIONS + /*! + \brief This method checks whether a particular drawer entry is in view, and scrolls + the drawer to center the item if it is not. - Kirigami.Theme.colorSet: modal ? Kirigami.Theme.Window : Kirigami.Theme.View + Drawer items supplied through the actions property will handle this automatically, + but items supplied in topContent will need to call this explicitly on receiving focus + Otherwise, if the user passes focus to the item with e.g. keyboard navigation, it may + be outside the visible area. + + When called, this method will place the visible area such that the item at the + center if any part of it is currently outside. + + \code + QQC2.ItemDelegate { + id: item + // ... + onFocusChanged: if (focus) drawer.ensureVisible(item) + } + \endcode + + \a item The item that should be in the visible area of the drawer. Item coordinates need to be in the coordinate system of the drawer's flickable. + + \a yOffset Offset to align the item's and the flickable's coordinate system (optional) + */ + //END FUNCTIONS + + function ensureVisible(item: Item, yOffset: int) { + var actualItemY = item.y + (yOffset ?? 0) + var viewYPosition = (item.height <= mainFlickable.height) + ? Math.round(actualItemY + item.height / 2 - mainFlickable.height / 2) + : actualItemY + if (actualItemY < mainFlickable.contentY) { + mainFlickable.contentY = Math.max(0, viewYPosition) + } else if ((actualItemY + item.height) > (mainFlickable.contentY + mainFlickable.height)) { + mainFlickable.contentY = Math.min(mainFlickable.contentHeight - mainFlickable.height, viewYPosition) + } + mainFlickable.returnToBounds() + } + + // rightPadding: !Platform.Settings.isMobile && mainFlickable.contentHeight > mainFlickable.height ? Kirigami.Units.gridUnit : Kirigami.Units.smallSpacing + + Platform.Theme.colorSet: modal ? Platform.Theme.Window : Platform.Theme.View onIsMenuChanged: drawerOpen = false + collapsedSize: collapsedSizeHint.implicitWidth + + handleOpenIcon.name: "window-close-symbolic" + handleClosedIcon.name: "application-menu-symbolic" + Component { id: menuComponent - Column { + ColumnLayout { + id: menuColumn + property alias model: actionsRepeater.model property T.Action current property int level: 0 @@ -294,16 +352,17 @@ Kirigami.OverlayDrawer { QQC2.ItemDelegate { id: backItem - visible: level > 0 - width: parent.width + Layout.fillWidth: true + visible: menuColumn.level > 0 icon.name: mirrored ? "go-previous-symbolic-rtl" : "go-previous-symbolic" - text: Kirigami.MnemonicData.richTextLabel + text: Primitives.MnemonicData.richTextLabel + Accessible.name: Primitives.MnemonicData.plainTextLabel activeFocusOnTab: true - Kirigami.MnemonicData.enabled: enabled && visible - Kirigami.MnemonicData.controlType: Kirigami.MnemonicData.MenuItem - Kirigami.MnemonicData.label: qsTr("Back") + Primitives.MnemonicData.enabled: enabled && visible + Primitives.MnemonicData.controlType: Primitives.MnemonicData.MenuItem + Primitives.MnemonicData.label: qsTr("Back") onClicked: stackView.pop() @@ -315,7 +374,7 @@ Kirigami.OverlayDrawer { } Shortcut { - sequence: backItem.Kirigami.MnemonicData.sequence + sequence: backItem.Primitives.MnemonicData.sequence onActivated: backItem.clicked() } @@ -338,20 +397,22 @@ Kirigami.OverlayDrawer { tAction: modelData withSections: actionsRepeater.withSections + backItem: backItem } } } } - component ActionDelegate : Column { + component ActionDelegate : ColumnLayout { id: delegate required property int index required property T.Action tAction required property bool withSections - // `as` case operator is still buggy - readonly property Kirigami.Action kAction: tAction instanceof Kirigami.Action ? tAction : null + property Item backItem + + readonly property KC.Action kAction: tAction as KC.Action readonly property bool isExpanded: { return !root.collapsed @@ -362,43 +423,48 @@ Kirigami.OverlayDrawer { visible: kAction?.visible ?? true - width: parent.width - KP.GlobalDrawerActionItem { - Kirigami.Theme.colorSet: !root.modal && !root.collapsed && delegate.withSections - ? Kirigami.Theme.Window : parent.Kirigami.Theme.colorSet + Layout.fillWidth: true + Platform.Theme.colorSet: !root.modal && !root.collapsed && delegate.withSections + ? Platform.Theme.Window : parent.Platform.Theme.colorSet visible: !delegate.isExpanded - width: parent.width + implicitWidth: parent.implicitWidth tAction: delegate.tAction onCheckedChanged: { // move every checked item into view - if (checked && topContent.height + backItem.height + (delegate.index + 1) * height - mainFlickable.contentY > mainFlickable.height) { + if (checked && topContent.height + delegate.backItem.height + (delegate.index + 1) * height - mainFlickable.contentY > mainFlickable.height) { mainFlickable.contentY += height } } + + onFocusChanged: { + if (focus) { + root.ensureVisible (delegate, topContent.height + (delegate.backItem.visible ? delegate.backItem.height : 0)) + } + } } Item { id: headerItem visible: delegate.isExpanded - height: sectionHeader.implicitHeight - width: parent.width + implicitHeight: sectionHeader.implicitHeight + Layout.fillWidth: true - Kirigami.ListSectionHeader { + KC.ListSectionHeader { id: sectionHeader anchors.fill: parent - Kirigami.Theme.colorSet: root.modal ? Kirigami.Theme.View : Kirigami.Theme.Window + Platform.Theme.colorSet: root.modal ? Platform.Theme.View : Platform.Theme.Window contentItem: RowLayout { spacing: sectionHeader.spacing - Kirigami.Icon { - property int size: Kirigami.Units.iconSizes.smallMedium + Primitives.Icon { + property int size: Platform.Units.iconSizes.smallMedium Layout.minimumHeight: size Layout.maximumHeight: size Layout.minimumWidth: size @@ -406,7 +472,7 @@ Kirigami.OverlayDrawer { source: delegate.tAction.icon.name || delegate.tAction.icon.source } - Kirigami.Heading { + KC.Heading { level: 4 text: delegate.tAction.text elide: Text.ElideRight @@ -431,35 +497,38 @@ Kirigami.OverlayDrawer { component NestedActionDelegate : KP.GlobalDrawerActionItem { required property bool withSections - width: parent.width + Layout.fillWidth: true opacity: !root.collapsed leftPadding: withSections && !root.collapsed && !root.modal ? padding * 2 : padding * 4 } - contentItem: Kirigami.HeaderFooterLayout { + contentItem: KL.HeaderFooterLayout { id: mainLayout anchors { fill: parent - topMargin: root.collapsed && !showHeaderWhenCollapsed ? -contentItem.y : 0 + topMargin: (root.collapsed && !root.showHeaderWhenCollapsed ? -contentItem.y : 0) + root.topPadding + bottomMargin: root.bottomPadding + leftMargin: root.leftPadding + rightMargin: root.rightPadding } Behavior on anchors.topMargin { NumberAnimation { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } header: RowLayout { visible: root.title.length > 0 || Boolean(root.titleIcon) - spacing: Kirigami.Units.largeSpacing + spacing: Platform.Units.largeSpacing - Kirigami.Icon { + Primitives.Icon { source: root.titleIcon } - Kirigami.Heading { + KC.Heading { text: root.title elide: Text.ElideRight visible: !root.collapsed @@ -471,13 +540,18 @@ Kirigami.OverlayDrawer { id: scrollView //ensure the attached property exists - Kirigami.Theme.inherit: true + Platform.Theme.inherit: true // HACK: workaround for https://bugreports.qt.io/browse/QTBUG-83890 QQC2.ScrollBar.horizontal.policy: QQC2.ScrollBar.AlwaysOff - implicitWidth: Math.min(Kirigami.Units.gridUnit * 20, root.parent.width * 0.8) - + implicitWidth: Math.min(mainColumn.implicitWidth, root.parent.width * 0.8) + Behavior on implicitWidth { + NumberAnimation { + duration: Platform.Units.longDuration + easing.type: Easing.InOutQuad + } + } Flickable { id: mainFlickable @@ -492,15 +566,25 @@ Kirigami.OverlayDrawer { spacing: 0 height: Math.max(scrollView.height, Layout.minimumHeight) + // This item exists only as size hint for the collapsed size + // In order to be sure on the collapsed width we want, + // we need an actual dummy item that can be referenced to get a size hint + QQC2.ItemDelegate { + id: collapsedSizeHint + icon.name: "sidebar-expand-left" + visible: false + Accessible.ignored: true + } + ColumnLayout { id: topContent spacing: 0 - Layout.alignment: Qt.AlignHCenter + Layout.alignment: Qt.AlignHCenter | Qt.AlignTop Layout.leftMargin: root.leftPadding Layout.rightMargin: root.rightPadding - Layout.bottomMargin: Kirigami.Units.smallSpacing + Layout.bottomMargin: Platform.Units.smallSpacing Layout.topMargin: root.topPadding Layout.fillWidth: true Layout.fillHeight: true @@ -510,12 +594,12 @@ Kirigami.OverlayDrawer { Layout.minimumWidth: parent.width - root.leftPadding - root.rightPadding visible: children.length > 0 && childrenRect.height > 0 && opacity > 0 - opacity: !root.collapsed || showTopContentWhenCollapsed + opacity: !root.collapsed || root.showTopContentWhenCollapsed Behavior on opacity { // not an animator as is binded NumberAnimation { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } @@ -532,39 +616,58 @@ Kirigami.OverlayDrawer { Layout.maximumHeight: Layout.minimumHeight initialItem: menuComponent + implicitWidth: currentItem.implicitWidth // NOTE: it's important those are NumberAnimation and not XAnimators // as while the animation is running the drawer may close, and // the animator would stop when not drawing see BUG 381576 popEnter: Transition { - NumberAnimation { property: "x"; from: (stackView.mirrored ? -1 : 1) * -stackView.width; to: 0; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.OutCubic } + ParallelAnimation { + NumberAnimation { property: "x"; from: (stackView.mirrored ? -1 : 1) * -stackView.width; to: 0; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + NumberAnimation { property: "opacity"; from: 0; to: 1; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + } } popExit: Transition { - NumberAnimation { property: "x"; from: 0; to: (stackView.mirrored ? -1 : 1) * stackView.width; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.OutCubic } + ParallelAnimation { + NumberAnimation { property: "x"; from: 0; to: (stackView.mirrored ? -1 : 1) * stackView.width; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + NumberAnimation { property: "opacity"; from: 1; to: 0; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + } } pushEnter: Transition { - NumberAnimation { property: "x"; from: (stackView.mirrored ? -1 : 1) * stackView.width; to: 0; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.OutCubic } + ParallelAnimation { + NumberAnimation { property: "x"; from: (stackView.mirrored ? -1 : 1) * stackView.width; to: 0; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + NumberAnimation { property: "opacity"; from: 0; to: 1; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + } } pushExit: Transition { - NumberAnimation { property: "x"; from: 0; to: (stackView.mirrored ? -1 : 1) * -stackView.width; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.OutCubic } + ParallelAnimation { + NumberAnimation { property: "x"; from: 0; to: (stackView.mirrored ? -1 : 1) * -stackView.width; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + NumberAnimation { property: "opacity"; from: 1; to: 0; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + } } replaceEnter: Transition { - NumberAnimation { property: "x"; from: (stackView.mirrored ? -1 : 1) * stackView.width; to: 0; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.OutCubic } + ParallelAnimation { + NumberAnimation { property: "x"; from: (stackView.mirrored ? -1 : 1) * stackView.width; to: 0; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + NumberAnimation { property: "opacity"; from: 0; to: 1; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + } } replaceExit: Transition { - NumberAnimation { property: "x"; from: 0; to: (stackView.mirrored ? -1 : 1) * -stackView.width; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.OutCubic } + ParallelAnimation { + NumberAnimation { property: "x"; from: 0; to: (stackView.mirrored ? -1 : 1) * -stackView.width; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + NumberAnimation { property: "opacity"; from: 0; to: 1; duration: Platform.Units.veryLongDuration; easing.type: Easing.OutCubic } + } } } Item { Layout.fillWidth: true Layout.fillHeight: root.actions.length > 0 - Layout.minimumHeight: Kirigami.Units.smallSpacing + Layout.minimumHeight: Platform.Units.smallSpacing } ColumnLayout { @@ -578,18 +681,18 @@ Kirigami.OverlayDrawer { // as items are added only after this column creation Layout.minimumWidth: parent.width - root.leftPadding - root.rightPadding visible: children.length > 0 && (opacity > 0 || mainContentAnimator.running) - opacity: !root.collapsed || showContentWhenCollapsed + opacity: !root.collapsed || root.showContentWhenCollapsed Behavior on opacity { OpacityAnimator { id: mainContentAnimator - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } } Item { - Layout.minimumWidth: Kirigami.Units.smallSpacing + Layout.minimumWidth: Platform.Units.smallSpacing Layout.minimumHeight: root.bottomPadding } @@ -616,9 +719,9 @@ Kirigami.OverlayDrawer { onClicked: root.collapsed = !root.collapsed - QQC2.ToolTip.visible: root.collapsed && (Kirigami.Settings.tabletMode ? pressed : hovered) + QQC2.ToolTip.visible: root.collapsed && (Platform.Settings.tabletMode ? pressed : hovered) QQC2.ToolTip.text: qsTr("Open Sidebar") - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay + QQC2.ToolTip.delay: Platform.Units.toolTipDelay } } } diff --git a/local/recipes/kde/kirigami/source/src/controls/Heading.qml b/local/recipes/kde/kirigami/source/src/controls/Heading.qml index 80a380db3c..7ec9bbb5d6 100644 --- a/local/recipes/kde/kirigami/source/src/controls/Heading.qml +++ b/local/recipes/kde/kirigami/source/src/controls/Heading.qml @@ -5,98 +5,34 @@ */ import QtQuick -import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.templates as KT -/** - * @brief A heading label used for subsections of texts. - * - * The characteristics of the text will be automatically set according to the - * Kirigami.Theme. Use this components for section titles or headings in your UI, - * for example page or section titles. - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * [...] - * Column { - * Kirigami.Heading { - * text: "Apples in the sunlight" - * level: 2 - * } - * [...] - * } - * @endcode - * - * The most important property is "text", which applies to the text property of - * Label. See the Label component from QtQuick.Controls 2 and primitive QML Text - * element API for additional properties, methods and signals. - * - * @inherit QtQuick.Controls.Label - */ -QQC2.Label { +KT.Heading { id: heading - /** - * @brief This property holds the level of the heading, which determines its size. - * - * This property holds the level, which determines how large the header is. - * - * Acceptable values range from 1 (big) to 5 (small). - * - * default: ``1`` - */ - property int level: 1 - - /** - * @brief This enumeration defines heading types. - * - * This enum helps with heading visibility (making it less or more important). - */ - enum Type { - Normal, - Primary, - Secondary - } - - /** - * @brief This property holds the heading type. - * - * The type of the heading. This can be: - * * ``Kirigami.Heading.Type.Normal``: Create a normal heading (default) - * * ``Kirigami.Heading.Type.Primary``: Makes the heading more prominent. Useful - * when making the heading bigger is not enough. - * * ``Kirigami.Heading.Type.Secondary``: Makes the heading less prominent. - * Useful when an heading is for a less important section in an application. - * - * @property Heading::Type type - * @since 5.82 - */ - property int type: Heading.Type.Normal - font.pointSize: { - let factor = 1; - switch (heading.level) { - case 1: - factor = 1.35; - break; - case 2: - factor = 1.20; - break; - case 3: - factor = 1.15; - break; - case 4: - factor = 1.10; - break; - default: - break; - } - return Kirigami.Theme.defaultFont.pointSize * factor; + let factor = 1; + switch (heading.level) { + case 1: + factor = 1.35; + break; + case 2: + factor = 1.20; + break; + case 3: + factor = 1.15; + break; + case 4: + factor = 1.10; + break; + default: + break; + } + return Platform.Theme.defaultFont.pointSize * factor; } + font.weight: type === Heading.Type.Primary ? Font.DemiBold : Font.Normal - opacity: type === Heading.Type.Secondary ? 0.7 : 1 - - Accessible.role: Accessible.Heading + opacity: type === Heading.Type.Secondary ? 0.75 : 1 } diff --git a/local/recipes/kde/kirigami/source/src/controls/InlineMessage.qml b/local/recipes/kde/kirigami/source/src/controls/InlineMessage.qml index 3846a6effd..04b5b292a5 100644 --- a/local/recipes/kde/kirigami/source/src/controls/InlineMessage.qml +++ b/local/recipes/kde/kirigami/source/src/controls/InlineMessage.qml @@ -7,79 +7,30 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform import org.kde.kirigami.templates as KT -/** - * An inline message item with support for informational, positive, - * warning and error types, and with support for associated actions. - * - * InlineMessage can be used to give information to the user or - * interact with the user, without requiring the use of a dialog. - * - * The InlineMessage item is hidden by default. It also manages its - * height (and implicitHeight) during an animated reveal when shown. - * You should avoid setting height on an InlineMessage unless it is - * already visible. - * - * Optionally an icon can be set, defaulting to an icon appropriate - * to the message type otherwise. - * - * Optionally a close button can be shown. - * - * Actions are added from left to right. If more actions are set than - * can fit, an overflow menu is provided. - * - * Example usage: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.InlineMessage { - * type: Kirigami.MessageType.Error - * - * text: i18n("My error message") - * - * actions: [ - * Kirigami.Action { - * icon.name: "list-add" - * text: i18n("Add") - * onTriggered: source => { - * // do stuff - * } - * }, - * Kirigami.Action { - * icon.name: "edit" - * text: i18n("Edit") - * onTriggered: source => { - * // do stuff - * } - * } - * ] - * } - * @endcode - * @inherit org::kde::kirigami::templates::InlineMessage - * @since 5.45 - */ KT.InlineMessage { id: root // a rectangle padded with anchors.margins is used to simulate a border - leftPadding: bgFillRect.anchors.leftMargin + Kirigami.Units.smallSpacing - topPadding: bgFillRect.anchors.topMargin + Kirigami.Units.smallSpacing - rightPadding: bgFillRect.anchors.rightMargin + Kirigami.Units.smallSpacing - bottomPadding: bgFillRect.anchors.bottomMargin + Kirigami.Units.smallSpacing + leftPadding: bgFillRect.anchors.leftMargin + Platform.Units.smallSpacing + topPadding: bgFillRect.anchors.topMargin + Platform.Units.smallSpacing + rightPadding: bgFillRect.anchors.rightMargin + Platform.Units.smallSpacing + bottomPadding: bgFillRect.anchors.bottomMargin + Platform.Units.smallSpacing background: Rectangle { id: bgBorderRect color: switch (root.type) { - case Kirigami.MessageType.Positive: return Kirigami.Theme.positiveTextColor; - case Kirigami.MessageType.Warning: return Kirigami.Theme.neutralTextColor; - case Kirigami.MessageType.Error: return Kirigami.Theme.negativeTextColor; - default: return Kirigami.Theme.activeTextColor; + case KC.MessageType.Positive: return Platform.Theme.positiveTextColor; + case KC.MessageType.Warning: return Platform.Theme.neutralTextColor; + case KC.MessageType.Error: return Platform.Theme.negativeTextColor; + default: return Platform.Theme.activeTextColor; } - radius: root.position === KT.InlineMessage.Position.Inline ? Kirigami.Units.cornerRadius : 0 + radius: root.position === KT.InlineMessage.Position.Inline ? Platform.Units.cornerRadius : 0 Rectangle { id: bgFillRect @@ -92,7 +43,7 @@ KT.InlineMessage { bottomMargin: root.position === KT.InlineMessage.Position.Footer ? 0 : 1 } - color: Kirigami.Theme.backgroundColor + color: Platform.Theme.backgroundColor radius: bgBorderRect.radius * 0.60 } diff --git a/local/recipes/kde/kirigami/source/src/controls/InlineViewHeader.qml b/local/recipes/kde/kirigami/source/src/controls/InlineViewHeader.qml index 857a3099b9..10a1177322 100644 --- a/local/recipes/kde/kirigami/source/src/controls/InlineViewHeader.qml +++ b/local/recipes/kde/kirigami/source/src/controls/InlineViewHeader.qml @@ -8,65 +8,14 @@ pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.templates as KT +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives -/** - * @brief A fancy inline view header showing a title and optional actions. - * - * Designed to be set as the header: property of a ListView or GridView, this - * component provides a fancy inline header suitable for explaining the contents - * of its view to the user in an attractive and standardized way. Actions globally - * relevant to the view can be defined using the actions: property. They will - * appear on the right side of the header as buttons, and collapse into an - * overflow menu when there isn't room to show them all. - * - * The width: property must be manually set to the parent view's width. - * - * Example usage: - * @code{.qml} - * import org.kde.kirigami as Kirigami - * - * ListView { - * id: listView - * - * headerPositioning: ListView.OverlayHeader - * header: InlineViewHeader { - * width: listView.width - * text: "My amazing view" - * actions: [ - * Kirigami.Action { - * icon.name: "list-add-symbolic" - * text: "Add item" - * onTriggered: { - * // do stuff - * } - * } - * ] - * } - * - * model: [...] - * delegate: [...] - * } - * @endcode - * @inherit QtQuick.QQC2.ToolBar - */ -T.ToolBar { +KT.InlineViewHeader { id: root -//BEGIN properties - /** - * @brief This property holds the title text. - */ - property string text - - /** - * This property holds the list of actions to show on the header. Actions - * are added from left to right. If more actions are set than can fit, an - * overflow menu is provided. - */ - property list actions -//END properties - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, Math.ceil(label.implicitWidth) + rowLayout.spacing @@ -75,34 +24,23 @@ T.ToolBar { implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, implicitContentHeight + topPadding + bottomPadding) - topPadding: Kirigami.Units.smallSpacing + (root.position === T.ToolBar.Footer ? separator.implicitHeight : 0) - leftPadding: Kirigami.Units.largeSpacing - rightPadding: Kirigami.Units.smallSpacing - bottomPadding: Kirigami.Units.smallSpacing + (root.position === T.ToolBar.Header ? separator.implicitHeight : 0) + topPadding: Platform.Units.smallSpacing + (root.position === T.ToolBar.Footer ? separator.implicitHeight : 0) + leftPadding: Platform.Units.largeSpacing + rightPadding: Platform.Units.smallSpacing + bottomPadding: Platform.Units.smallSpacing + (root.position === T.ToolBar.Header ? separator.implicitHeight : 0) - z: 999 // don't let content overlap it - - // HACK Due to the lack of a GridView.headerPositioning property, - // we need to "stick" ourselves to the top manually by translating Y accordingly. - // see see https://bugreports.qt.io/browse/QTBUG-117035. - // Conveniently, GridView is only attached to the root of the delegate (or headerItem), - // so this will only be done if the InlineViewHeader itself is the header item. - // And of course it won't be there for ListView either, where we have headerPositioning. - transform: Translate { - y: root.GridView.view ? root.GridView.view.contentY + root.height : 0 - } background: Rectangle { - Kirigami.Theme.colorSet: Kirigami.Theme.View - Kirigami.Theme.inherit: false + Platform.Theme.colorSet: Platform.Theme.View + Platform.Theme.inherit: false // We want a color that's basically halfway between the view background // color and the window background color. But due to the use of color // scopes, only one will be available at a time. So to get basically the // same thing, we blend the view background color with a smidgen of the // text color. - color: Qt.tint(Kirigami.Theme.backgroundColor, Qt.alpha(Kirigami.Theme.textColor, 0.03)) + color: Qt.tint(Platform.Theme.backgroundColor, Qt.alpha(Platform.Theme.textColor, 0.03)) - Kirigami.Separator { + Primitives.Separator { id: separator anchors { @@ -119,7 +57,7 @@ T.ToolBar { spacing: 0 - Kirigami.Heading { + KC.Heading { id: label Layout.fillWidth: !buttonsLoader.active @@ -144,9 +82,9 @@ T.ToolBar { Layout.fillWidth: true Layout.alignment: Qt.AlignVCenter - Layout.minimumWidth: item?.Layout.minimumWidth ?? 0 + Layout.minimumWidth: (item as Item)?.Layout.minimumWidth ?? 0 active: root.actions.length > 0 - sourceComponent: Kirigami.ActionToolBar { + sourceComponent: KC.ActionToolBar { actions: root.actions alignment: Qt.AlignRight } diff --git a/local/recipes/kde/kirigami/source/src/controls/LinkButton.qml b/local/recipes/kde/kirigami/source/src/controls/LinkButton.qml index ee318ba712..ed366b6e9d 100644 --- a/local/recipes/kde/kirigami/source/src/controls/LinkButton.qml +++ b/local/recipes/kde/kirigami/source/src/controls/LinkButton.qml @@ -5,83 +5,12 @@ */ import QtQuick -import QtQuick.Controls as QQC2 -import QtQuick.Templates as T -import org.kde.kirigami as Kirigami - -/** - * @brief A button that looks like a link. - * - * It uses the link color settings and triggers an action when clicked. - * - * Maps to the Command Link in the HIG: - * https://develop.kde.org/hig/components/navigation/commandlink/ - * - * @since 5.52 - * @since org.kde.kirigami 2.6 - * @inherit QtQuick.Controls.Label - */ -QQC2.Label { - id: control - - property T.Action action - - /** - * @brief This property holds the mouse buttons that the mouse area reacts to. - * @see QtQuick.MouseArea::acceptedButtons - * @property Qt::MouseButtons acceptedButtons - */ - property alias acceptedButtons: area.acceptedButtons - - /** - * @brief This property holds the mouse area element covering the button. - * @property MouseArea area - */ - property alias mouseArea: area - - activeFocusOnTab: true - Accessible.role: Accessible.Button - Accessible.name: text - Accessible.onPressAction: clicked({ button: Qt.LeftButton }) - - text: action?.text ?? "" - enabled: action?.enabled ?? true - - onClicked: action?.trigger() +import org.kde.kirigami.templates as KT +KT.LinkButton { font.bold: activeFocus font.underline: enabled - color: enabled ? Kirigami.Theme.linkColor : Kirigami.Theme.textColor horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter elide: Text.ElideRight - - signal pressed(var mouse) - signal clicked(var mouse) - - Keys.onPressed: event => { - switch (event.key) { - case Qt.Key_Space: - case Qt.Key_Enter: - case Qt.Key_Return: - case Qt.Key_Select: - control.clicked({ button: Qt.LeftButton }); - event.accepted = true; - break; - case Qt.Key_Menu: - control.pressed({ button: Qt.RightButton }); - event.accepted = true; - break; - } - } - - MouseArea { - id: area - anchors.fill: parent - hoverEnabled: true - cursorShape: Qt.PointingHandCursor - - onClicked: mouse => control.clicked(mouse) - onPressed: mouse => control.pressed(mouse) - } } diff --git a/local/recipes/kde/kirigami/source/src/controls/ListItemDragHandle.qml b/local/recipes/kde/kirigami/source/src/controls/ListItemDragHandle.qml index f000561e4e..4624e62ad0 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ListItemDragHandle.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ListItemDragHandle.qml @@ -1,114 +1,134 @@ /* * SPDX-FileCopyrightText: 2018 Marco Martin + * SPDX-FileCopyrightText: 2024 Filipe Azevedo * * SPDX-License-Identifier: LGPL-2.0-or-later */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +/*! + \qmltype ListItemDragHandle + \inqmlmodule org.kde.kirigami -/** - * Implements a drag handle supposed to be in items in ListViews to reorder items - * The ListView must visualize a model which supports item reordering, - * such as ListModel.move() or QAbstractItemModel instances with moveRows() correctly implemented. - * In order for ListItemDragHandle to work correctly, the listItem that is being dragged - * should not directly be the delegate of the ListView, but a child of it. - * - * It is recommended to use DelagateRecycler as base delegate like the following code: - * @code - * import QtQuick - * import QtQuick.Layouts - * import QtQuick.Controls as QQC2 - * import org.kde.kirigami as Kirigami - * ... - * Component { - * id: delegateComponent - * QQC2.ItemDelegate { - * id: listItem - * contentItem: RowLayout { - * Kirigami.ListItemDragHandle { - * listItem: listItem - * listView: mainList - * onMoveRequested: (oldIndex, newIndex) => { - * listModel.move(oldIndex, newIndex, 1); - * } - * } - * QQC2.Label { - * text: model.label - * } - * } - * } - * } - * ListView { - * id: mainList - * - * model: ListModel { - * id: listModel - * ListElement { - * label: "Item 1" - * } - * ListElement { - * label: "Item 2" - * } - * ListElement { - * label: "Item 3" - * } - * } - * //this is optional to make list items animated when reordered - * moveDisplaced: Transition { - * YAnimator { - * duration: Kirigami.Units.longDuration - * easing.type: Easing.InOutQuad - * } - * } - * delegate: Loader { - * width: mainList.width - * sourceComponent: delegateComponent - * } - * } - * ... - * @endcode - * - * @since 2.5 - * @inherit QtQuick.Item + \brief A handle to reorder items in a view. + + Implements a drag handle supposed to be in items in ListViews to reorder items. + + The ListView must visualize a model which supports item reordering, + such as ListModel.move() or QAbstractItemModel instances with moveRows() correctly implemented. + + In order for ListItemDragHandle to work correctly, the listItem that is being dragged + should not directly be the delegate of the ListView, but a child of it. + + \code + import QtQuick + import QtQuick.Layouts + import QtQuick.Controls as QQC2 + import org.kde.kirigami as Kirigami + ... + Component { + id: delegateComponent + QQC2.ItemDelegate { + id: listItem + contentItem: RowLayout { + Kirigami.ListItemDragHandle { + listItem: listItem + listView: mainList + onMoveRequested: (oldIndex, newIndex) => { + listModel.move(oldIndex, newIndex, 1); + } + } + QQC2.Label { + text: model.label + } + } + } + } + ListView { + id: mainList + + model: ListModel { + id: listModel + ListElement { + label: "Item 1" + } + ListElement { + label: "Item 2" + } + ListElement { + label: "Item 3" + } + } + //this is optional to make list items animated when reordered + moveDisplaced: Transition { + YAnimator { + duration: Kirigami.Units.longDuration + easing.type: Easing.InOutQuad + } + } + delegate: Loader { + width: mainList.width + sourceComponent: delegateComponent + } + } + ... + \endcode */ Item { id: root - /** - * @brief This property holds the delegate that will be dragged around. - * - * This item *must* be a child of the actual ListView's delegate. + /*! + \brief This property holds the delegate that will be dragged around. + + \note This item must be a child of the actual ListView's delegate. */ property Item listItem - /** - * @brief This property holds the ListView that the delegate belong to. + /*! + \brief This property holds the ListView that the delegate belong to. */ property ListView listView - /** - * @brief This signal is emitted when the drag handle wants to move the item in the model. - * - * The following example does the move in the case a ListModel is used: - * @code - * onMoveRequested: (oldIndex, newIndex) => { - * listModel.move(oldIndex, newIndex, 1); - * } - * @endcode - * @param oldIndex the index the item is currently at - * @param newIndex the index we want to move the item to + /*! + \brief This property holds the fact that we are doing incremental move requests or not. + */ + property bool incrementalMoves: true + + /*! + \brief This property holds the fact that the handle is being dragged. + */ + readonly property alias dragActive: mouseArea.drag.active + + /*! + \brief This signal is emitted when the drag handle wants to move the item in the model. + + The following example does the move in the case a ListModel is used: + \code + onMoveRequested: (oldIndex, newIndex) => { + listModel.move(oldIndex, newIndex, 1); + } + \endcode + + \a oldIndex The index the item is currently at. + + \a newIndex The index we want to move the item to. */ signal moveRequested(int oldIndex, int newIndex) - /** - * @brief This signal is emitted when the drag operation is complete and the item has been - * dropped in the new final position. - */ - signal dropped() + /*! + \brief This signal is emitted when the drag operation is complete and the item has been + dropped in the new final position. - implicitWidth: Kirigami.Units.iconSizes.smallMedium - implicitHeight: Kirigami.Units.iconSizes.smallMedium + \a oldIndex The index the item is currently at. + + \a newIndex The index we want to drop the item to. + */ + signal dropped(int oldIndex, int newIndex) + + implicitWidth: Platform.Units.iconSizes.smallMedium + implicitHeight: Platform.Units.iconSizes.smallMedium MouseArea { id: mouseArea @@ -116,7 +136,7 @@ Item { anchors.fill: parent drag { - target: listItem + target: root.listItem axis: Drag.YAxis minimumY: 0 } @@ -124,80 +144,102 @@ Item { cursorShape: pressed ? Qt.ClosedHandCursor : Qt.OpenHandCursor preventStealing: true - Kirigami.Icon { + QtObject { + id: _previousMove + + property int oldIndex: -1 + property int newIndex: -1 + + function reset() { + _previousMove.oldIndex = -1; + _previousMove.newIndex = -1; + } + } + + Primitives.Icon { id: internal anchors.fill: parent source: "handle-sort" - opacity: mouseArea.pressed || (!Kirigami.Settings.tabletMode && listItem.hovered) ? 1 : 0.6 + opacity: mouseArea.pressed || (!Platform.Settings.tabletMode && root.listItem.hovered) ? 1 : 0.6 - property int startY - property int mouseDownY + property real startY + property real mouseDownY property Item originalParent - property int listItemLastY + property real listItemLastY property bool draggingUp function arrangeItem() { - const newIndex = listView.indexAt(1, listView.contentItem.mapFromItem(mouseArea, 0, internal.mouseDownY).y); + const newIndex = root.listView.indexAt(1, root.listView.contentItem.mapFromItem(root.listItem, 0, root.listItem.height / 2).y); + + if (newIndex > -1 && ((root.incrementalMoves && internal.draggingUp && newIndex < index) || + (root.incrementalMoves && !internal.draggingUp && newIndex > index) || + (!root.incrementalMoves && newIndex < root.listView.count))) { + if (_previousMove.oldIndex === index && _previousMove.newIndex === newIndex) { + return; + } + + _previousMove.oldIndex = index; + _previousMove.newIndex = newIndex; - if (newIndex > -1 && ((internal.draggingUp && newIndex < index) || (!internal.draggingUp && newIndex > index))) { root.moveRequested(index, newIndex); } } } onPressed: mouse => { - internal.originalParent = listItem.parent; - listItem.parent = listView; - listItem.y = internal.originalParent.mapToItem(listItem.parent, listItem.x, listItem.y).y; + internal.originalParent = root.listItem.parent; + root.listItem.parent = root.listView; + root.listItem.y = internal.originalParent.mapToItem(root.listItem.parent, root.listItem.x, root.listItem.y).y; internal.originalParent.z = 99; - internal.startY = listItem.y; - internal.listItemLastY = listItem.y; + internal.startY = root.listItem.y; + internal.listItemLastY = root.listItem.y; internal.mouseDownY = mouse.y; // while dragging listItem's height could change // we want a const maximumY during the dragging time - mouseArea.drag.maximumY = listView.height - listItem.height; + mouseArea.drag.maximumY = root.listView.height - root.listItem.height; } onPositionChanged: mouse => { - if (!pressed || listItem.y === internal.listItemLastY) { + if (!pressed || root.listItem.y === internal.listItemLastY) { return; } - internal.draggingUp = listItem.y < internal.listItemLastY - internal.listItemLastY = listItem.y; + internal.draggingUp = root.listItem.y < internal.listItemLastY + internal.listItemLastY = root.listItem.y; internal.arrangeItem(); // autoscroll when the dragging item reaches the listView's top/bottom boundary - scrollTimer.running = (listView.contentHeight > listView.height) - && ((listItem.y === 0 && !listView.atYBeginning) - || (listItem.y === mouseArea.drag.maximumY && !listView.atYEnd)); + scrollTimer.running = (root.listView.contentHeight > root.listView.height) + && ((root.listItem.y === 0 && !root.listView.atYBeginning) + || (root.listItem.y === mouseArea.drag.maximumY && !root.listView.atYEnd)); } onReleased: mouse => dropped() onCanceled: dropped() function dropped() { - listItem.y = internal.originalParent.mapFromItem(listItem, 0, 0).y; - listItem.parent = internal.originalParent; + root.listItem.y = internal.originalParent.mapFromItem(root.listItem, 0, 0).y; + root.listItem.parent = internal.originalParent; dropAnimation.running = true; scrollTimer.running = false; - root.dropped(); + root.dropped(_previousMove.oldIndex, _previousMove.newIndex); + _previousMove.reset(); } SequentialAnimation { id: dropAnimation YAnimator { - target: listItem - from: listItem.y + target: root.listItem + from: root.listItem.y to: 0 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } PropertyAction { - target: listItem.parent + target: root.listItem.parent property: "z" value: 0 } @@ -211,15 +253,15 @@ Item { onTriggered: { if (internal.draggingUp) { - listView.contentY -= Kirigami.Units.gridUnit; - if (listView.atYBeginning) { - listView.positionViewAtBeginning(); + root.listView.contentY -= Platform.Units.gridUnit; + if (root.listView.atYBeginning) { + root.listView.positionViewAtBeginning(); stop(); } } else { - listView.contentY += Kirigami.Units.gridUnit; - if (listView.atYEnd) { - listView.positionViewAtEnd(); + root.listView.contentY += Platform.Units.gridUnit; + if (root.listView.atYEnd) { + root.listView.positionViewAtEnd(); stop(); } } diff --git a/local/recipes/kde/kirigami/source/src/controls/ListSectionHeader.qml b/local/recipes/kde/kirigami/source/src/controls/ListSectionHeader.qml index 21e45fc794..fc576dff69 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ListSectionHeader.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ListSectionHeader.qml @@ -7,43 +7,50 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.controls as KC -/** - * @brief A section delegate for the primitive ListView component. - * - * It's intended to make all listviews look coherent. - * - * Any additional content items will be positioned in a row at the trailing side - * of this component. - * - * Example usage: - * @code - * import QtQuick - * import QtQuick.Controls as QQC2 - * import org.kde.kirigami as Kirigami - * - * ListView { - * section.delegate: Kirigami.ListSectionHeader { - * text: section - * - * QQC2.Button { - * text: "Button 1" - * } - * QQC2.Button { - * text: "Button 2" - * } - * } - * } - * @endcode +/*! + \qmltype ListSectionHeader + \inqmlmodule org.kde.kirigami + + \brief A section delegate for the primitive ListView component. + + It's intended to make all listviews look coherent. + + Any additional content items will be positioned in a row at the trailing side + of this component. + + Example usage: + \code + import QtQuick + import QtQuick.Controls as QQC2 + import org.kde.kirigami as Kirigami + + ListView { + section.delegate: Kirigami.ListSectionHeader { + text: section + + QQC2.Button { + text: "Button 1" + } + QQC2.Button { + text: "Button 2" + } + } + } + \endcode */ QQC2.ItemDelegate { id: listSection - /** - * @brief This property sets the text of the ListView's section header. - * @property string label - * @deprecated since 6.2 Use base type's AbstractButton::text property directly + /*! + \brief This property sets the text of the ListView's section header. + + \a string label + + \deprecated[6.2] Use base type's AbstractButton::text property directly */ @Deprecated { reason: "Use base type's AbstractButton::text property directly" } property alias label: listSection.text @@ -54,24 +61,37 @@ QQC2.ItemDelegate { activeFocusOnTab: false + icon { + width: Platform.Units.iconSizes.smallMedium + height: Platform.Units.iconSizes.smallMedium + } + // we do not need a background background: Item {} - topPadding: Kirigami.Units.largeSpacing + Kirigami.Units.smallSpacing + topPadding: Platform.Units.largeSpacing + Platform.Units.smallSpacing Accessible.role: Accessible.Heading contentItem: RowLayout { id: rowLayout - spacing: Kirigami.Units.largeSpacing + spacing: Platform.Units.largeSpacing - Kirigami.Heading { + Primitives.Icon { + Layout.alignment: Qt.AlignVCenter + implicitWidth: listSection.icon.width + implicitHeight: listSection.icon.height + color: listSection.icon.color + source: listSection.icon.name.length > 0 ? listSection.icon.name : listSection.icon.source + visible: valid + } + KC.Heading { Layout.maximumWidth: rowLayout.width Layout.alignment: Qt.AlignVCenter - opacity: 0.7 + opacity: 0.75 level: 5 - type: Kirigami.Heading.Primary + type: KC.Heading.Primary text: listSection.text elide: Text.ElideRight @@ -81,7 +101,7 @@ QQC2.ItemDelegate { Accessible.ignored: true } - Kirigami.Separator { + Primitives.Separator { Layout.fillWidth: true Layout.alignment: Qt.AlignVCenter Accessible.ignored: true diff --git a/local/recipes/kde/kirigami/source/src/controls/LoadingPlaceholder.qml b/local/recipes/kde/kirigami/source/src/controls/LoadingPlaceholder.qml index 750da85c54..5d29b9d5ba 100644 --- a/local/recipes/kde/kirigami/source/src/controls/LoadingPlaceholder.qml +++ b/local/recipes/kde/kirigami/source/src/controls/LoadingPlaceholder.qml @@ -4,50 +4,54 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KC -/** - * @brief A placeholder for loading pages. - * - * Example usage: - * @code{.qml} - * Kirigami.Page { - * Kirigami.LoadingPlaceholder { - * anchors.centerIn: parent - * } - * } - * @endcode - * @code{.qml} - * Kirigami.Page { - * Kirigami.LoadingPlaceholder { - * anchors.centerIn: parent - * determinate: true - * progressBar.value: loadingValue - * } - * } - * @endcode - * @inherit org::kde::kirigami::PlaceholderMessage +/*! + \qmltype PlaceholderMessage + \inqmlmodule org.kde.kirigami + + \brief A placeholder for loading pages. + + Example usage: + \qml + Kirigami.Page { + Kirigami.LoadingPlaceholder { + anchors.centerIn: parent + } + } + \endqml + + \qml + Kirigami.Page { + Kirigami.LoadingPlaceholder { + anchors.centerIn: parent + determinate: true + progressBar.value: loadingValue + } + } + \endqml */ -Kirigami.PlaceholderMessage { +KC.PlaceholderMessage { id: loadingPlaceholder - /** - * @brief This property holds whether the loading message shows a - * determinate progress bar or not. - * - * This should be true if you want to display the actual - * percentage when it's loading. - * - * default: ``false`` + /*! + \brief This property holds whether the loading message shows a + determinate progress bar or not. + + This should be true if you want to display the actual + percentage when it's loading. + + \default false */ property bool determinate: false - /** - * @brief This property holds a progress bar. - * - * This should be used to access the progress bar to change its value. - * - * @property QtQuick.Controls.ProgressBar _progressBar + /*! + \qmlproperty ProgressBar LoadingPlaceholder::progressBar + + \brief This property holds a progress bar. + + This should be used to access the progress bar to change its value. */ property alias progressBar: _progressBar @@ -57,8 +61,8 @@ Kirigami.PlaceholderMessage { id: _progressBar Layout.alignment: Qt.AlignHCenter Layout.fillWidth: true - Layout.maximumWidth: Kirigami.Units.gridUnit * 20 - indeterminate: !determinate + Layout.maximumWidth: Platform.Units.gridUnit * 20 + indeterminate: !loadingPlaceholder.determinate from: 0 to: 100 } diff --git a/local/recipes/kde/kirigami/source/src/controls/NavigationTabBar.qml b/local/recipes/kde/kirigami/source/src/controls/NavigationTabBar.qml index 84dc2dc315..c3cdeedf37 100644 --- a/local/recipes/kde/kirigami/source/src/controls/NavigationTabBar.qml +++ b/local/recipes/kde/kirigami/source/src/controls/NavigationTabBar.qml @@ -7,274 +7,21 @@ pragma ComponentBehavior: Bound import QtQuick -import QtQml -import QtQuick.Layouts -import QtQuick.Controls as QQC2 -import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import QtQuick.Controls as QQC +import org.kde.kirigami.templates as KT -/** - * @brief Page navigation tab-bar, used as an alternative to sidebars for 3-5 elements. - * - * Can be combined with secondary toolbars above (if in the footer) to provide page actions. - * - * Example usage: - * @code{.qml} - * import QtQuick - * import org.kde.kirigami as Kirigami - * - * Kirigami.ApplicationWindow { - * title: "Clock" - * - * pageStack.initialPage: worldPage - * - * Kirigami.Page { - * id: worldPage - * title: "World" - * visible: false - * } - * Kirigami.Page { - * id: timersPage - * title: "Timers" - * visible: false - * } - * Kirigami.Page { - * id: stopwatchPage - * title: "Stopwatch" - * visible: false - * } - * Kirigami.Page { - * id: alarmsPage - * title: "Alarms" - * visible: false - * } - * - * footer: Kirigami.NavigationTabBar { - * actions: [ - * Kirigami.Action { - * icon.name: "globe" - * text: "World" - * checked: worldPage.visible - * onTriggered: { - * if (!worldPage.visible) { - * while (pageStack.depth > 0) { - * pageStack.pop(); - * } - * pageStack.push(worldPage); - * } - * } - * }, - * Kirigami.Action { - * icon.name: "player-time" - * text: "Timers" - * checked: timersPage.visible - * onTriggered: { - * if (!timersPage.visible) { - * while (pageStack.depth > 0) { - * pageStack.pop(); - * } - * pageStack.push(timersPage); - * } - * } - * }, - * Kirigami.Action { - * icon.name: "chronometer" - * text: "Stopwatch" - * checked: stopwatchPage.visible - * onTriggered: { - * if (!stopwatchPage.visible) { - * while (pageStack.depth > 0) { - * pageStack.pop(); - * } - * pageStack.push(stopwatchPage); - * } - * } - * }, - * Kirigami.Action { - * icon.name: "notifications" - * text: "Alarms" - * checked: alarmsPage.visible - * onTriggered: { - * if (!alarmsPage.visible) { - * while (pageStack.depth > 0) { - * pageStack.pop(); - * } - * pageStack.push(alarmsPage); - * } - * } - * } - * ] - * } - * } - * @endcode - * - * @see NavigationTabButton - * @since 5.87 - * @since org.kde.kirigami 2.19 - * @inherit QtQuick.Templates.Toolbar - */ - -QQC2.ToolBar { +KT.NavigationTabBar { id: root -//BEGIN properties - /** - * @brief This property holds the list of actions to be displayed in the toolbar. - */ - property list actions - - /** - * @brief This property holds a subset of visible actions of the list of actions. - * - * An action is considered visible if it is either a Kirigami.Action with - * ``visible`` property set to true, or it is a plain QQC2.Action. - */ - readonly property list visibleActions: actions - // Note: instanceof check implies `!== null` - .filter(action => action instanceof Kirigami.Action - ? action.visible - : action !== null - ) - - /** - * @brief The property holds the maximum width of the toolbar actions, before margins are added. - */ - property real maximumContentWidth: { - const minDelegateWidth = Kirigami.Units.gridUnit * 5; - // Always have at least the width of 5 items, so that small amounts of actions look natural. - return minDelegateWidth * Math.max(visibleActions.length, 5); - } - - /** - * @brief This property holds the index of currently checked tab. - * - * If the index set is out of bounds, or the triggered signal did not change any checked property of an action, the index - * will remain the same. - */ - property int currentIndex: tabGroup.checkedButton && tabGroup.buttons.length > 0 ? tabGroup.checkedButton.tabIndex : -1 - - /** - * @brief This property holds the number of tab buttons. - */ - readonly property int count: tabGroup.buttons.length - - /** - * @brief This property holds the ButtonGroup used to manage the tabs. - */ - readonly property T.ButtonGroup tabGroup: tabGroup - - /** - * @brief This property holds the calculated width that buttons on the tab bar use. - * - * @since 5.102 - */ - property real buttonWidth: { - // Counting buttons because Repeaters can be counted among visibleChildren - let visibleButtonCount = 0; - const minWidth = contentItem.height * 0.75; - for (const visibleChild of contentItem.visibleChildren) { - if (contentItem.width / visibleButtonCount >= minWidth && // make buttons go off the screen if there is physically no room for them - visibleChild instanceof T.AbstractButton) { // Checking for AbstractButtons because any AbstractButton can act as a tab - ++visibleButtonCount; - } - } - - return Math.round(contentItem.width / visibleButtonCount); - } -//END properties - - onCurrentIndexChanged: { - if (currentIndex === -1) { - if (tabGroup.checkState !== Qt.Unchecked) { - tabGroup.checkState = Qt.Unchecked; - } - return; - } - if (!tabGroup.checkedButton || tabGroup.checkedButton.tabIndex !== currentIndex) { - const buttonForCurrentIndex = tabGroup.buttons[currentIndex] - if (buttonForCurrentIndex.action) { - // trigger also toggles and causes clicked() to be emitted - buttonForCurrentIndex.action.trigger(); - } else { - // toggle() does not trigger the action, - // so don't use it if you want to use an action. - // It also doesn't cause clicked() to be emitted. - buttonForCurrentIndex.toggle(); - } - } - } - // ensure that by default, we do not have unintended padding and spacing from the style spacing: 0 - padding: 0 - topPadding: undefined - leftPadding: undefined - rightPadding: undefined - bottomPadding: undefined - verticalPadding: undefined + topPadding: (root.position === QQC.ToolBar.Header && parent) ? parent.SafeArea.margins.top : 0 + bottomPadding: (root.position === QQC.ToolBar.Footer && parent) ? parent.SafeArea.margins.bottom : 0 // Using Math.round() on horizontalPadding can cause the contentItem to jitter left and right when resizing the window. - horizontalPadding: Math.floor(Math.max(0, width - root.maximumContentWidth) / 2) + leftPadding: Math.floor(Math.max(0, width - root.maximumContentWidth) / 2) + (parent ? parent.SafeArea.margins.left : 0) + rightPadding: Math.floor(Math.max(0, width - root.maximumContentWidth) / 2) + (parent ? parent.SafeArea.margins.right : 0) - contentWidth: Math.ceil(Math.min(root.availableWidth, root.maximumContentWidth)) - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, contentWidth + leftPadding + rightPadding) + implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, contentWidth) implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, contentHeight + topPadding + bottomPadding) - position: { - if (QQC2.ApplicationWindow.window?.footer === root) { - return QQC2.ToolBar.Footer - } else if (parent?.footer === root) { - return QQC2.ToolBar.Footer - } else if (parent?.parent?.footer === parent) { - return QQC2.ToolBar.Footer - } else { - return QQC2.ToolBar.Header - } - } - contentItem: RowLayout { - id: rowLayout - spacing: root.spacing - } - - // Used to manage which tab is checked and change the currentIndex - T.ButtonGroup { - id: tabGroup - exclusive: true - buttons: root.contentItem.children.filter((child) => child !== instantiator) - - onCheckedButtonChanged: { - if (!checkedButton) { - return - } - if (root.currentIndex !== checkedButton.tabIndex) { - root.currentIndex = checkedButton.tabIndex; - } - } - } - - // Using a Repeater here because Instantiator was causing issues: - // NavigationTabButtons that were supposed to be destroyed were still - // registered as buttons in tabGroup. - // NOTE: This will make Repeater show up as child through visibleChildren - Repeater { - id: instantiator - model: root.visibleActions - delegate: NavigationTabButton { - id: delegate - - required property T.Action modelData - - parent: root.contentItem - action: modelData - // Workaround setting the action when checkable is not explicitly set making tabs uncheckable - onActionChanged: action.checkable = true - - Layout.minimumWidth: root.buttonWidth - Layout.maximumWidth: root.buttonWidth - Layout.fillHeight: true - - Kirigami.Theme.textColor: root.Kirigami.Theme.textColor - Kirigami.Theme.backgroundColor: root.Kirigami.Theme.backgroundColor - Kirigami.Theme.highlightColor: root.Kirigami.Theme.highlightColor - } - } } diff --git a/local/recipes/kde/kirigami/source/src/controls/NavigationTabButton.qml b/local/recipes/kde/kirigami/source/src/controls/NavigationTabButton.qml index 2200175a2f..f04137f77f 100644 --- a/local/recipes/kde/kirigami/source/src/controls/NavigationTabButton.qml +++ b/local/recipes/kde/kirigami/source/src/controls/NavigationTabButton.qml @@ -7,97 +7,25 @@ import QtQuick import QtQuick.Layouts import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.templates as KT +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives -/** - * @brief Navigation buttons to be used for the NavigationTabBar component. - * - * It supplies its own padding, and also supports using the QQC2 AbstractButton ``display`` property to be used in column lists. - * - * Alternative way to the "actions" property on NavigationTabBar, as it can be used - * with Repeater to generate buttons from models. - * - * Example usage: - * @code{.qml} - * Kirigami.NavigationTabBar { - * id: navTabBar - * Kirigami.NavigationTabButton { - * visible: true - * icon.name: "document-save" - * text: `test ${tabIndex + 1}` - * QQC2.ButtonGroup.group: navTabBar.tabGroup - * } - * Kirigami.NavigationTabButton { - * visible: false - * icon.name: "document-send" - * text: `test ${tabIndex + 1}` - * QQC2.ButtonGroup.group: navTabBar.tabGroup - * } - * actions: [ - * Kirigami.Action { - * visible: true - * icon.name: "edit-copy" - * icon.height: 32 - * icon.width: 32 - * text: `test 3` - * checked: true - * }, - * Kirigami.Action { - * visible: true - * icon.name: "edit-cut" - * text: `test 4` - * checkable: true - * }, - * Kirigami.Action { - * visible: false - * icon.name: "edit-paste" - * text: `test 5` - * }, - * Kirigami.Action { - * visible: true - * icon.source: "../logo.png" - * text: `test 6` - * checkable: true - * } - * ] - * } - * @endcode - * - * @since 5.87 - * @since org.kde.kirigami 2.19 - * @inherit QtQuick.Templates.TabButton - */ -T.TabButton { + +KT.NavigationTabButton { id: control - /** - * @brief This property tells the index of this tab within the tab bar. - */ - readonly property int tabIndex: { - let tabIdx = 0 - for (const child of parent.children) { - if (child === this) { - return tabIdx - } - // Checking for AbstractButtons because any AbstractButton can act as a tab - if (child instanceof T.AbstractButton) { - ++tabIdx - } - } - return -1 - } - // FIXME: all those internal properties should go, and the button should style itself in a more standard way // probably similar to view items - readonly property color __foregroundColor: Kirigami.Theme.textColor - readonly property color __highlightForegroundColor: Kirigami.Theme.textColor + readonly property color __foregroundColor: Platform.Theme.textColor + readonly property color __highlightForegroundColor: Platform.Theme.textColor - readonly property color __pressedColor: Qt.alpha(Kirigami.Theme.highlightColor, 0.3) - readonly property color __hoverSelectColor: Qt.alpha(Kirigami.Theme.highlightColor, 0.2) - readonly property color __checkedBorderColor: Qt.alpha(Kirigami.Theme.highlightColor, 0.7) - readonly property color __pressedBorderColor: Qt.alpha(Kirigami.Theme.highlightColor, 0.9) + readonly property color __pressedColor: Qt.alpha(Platform.Theme.highlightColor, 0.3) + readonly property color __hoverSelectColor: Qt.alpha(Platform.Theme.highlightColor, 0.2) + readonly property color __borderColor: Platform.Theme.highlightColor + readonly property color __selectedOutlineBorderColor: Qt.alpha(__borderColor, 0.5) - readonly property real __verticalMargins: (display === T.AbstractButton.TextBesideIcon) ? Kirigami.Units.largeSpacing : 0 + readonly property real __verticalMargins: (display === T.AbstractButton.TextBesideIcon) ? Platform.Units.largeSpacing : 0 implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, implicitContentWidth + leftPadding + rightPadding) @@ -106,45 +34,54 @@ T.TabButton { display: T.AbstractButton.TextUnderIcon - Kirigami.Theme.colorSet: Kirigami.Theme.Window - Kirigami.Theme.inherit: false + Platform.Theme.colorSet: Platform.Theme.Window + Platform.Theme.inherit: false hoverEnabled: true - padding: Kirigami.Units.smallSpacing - spacing: Kirigami.Units.smallSpacing + padding: Platform.Units.smallSpacing + spacing: Platform.Units.smallSpacing - icon.height: display === T.AbstractButton.TextBesideIcon ? Kirigami.Units.iconSizes.small : Kirigami.Units.iconSizes.smallMedium - icon.width: display === T.AbstractButton.TextBesideIcon ? Kirigami.Units.iconSizes.small : Kirigami.Units.iconSizes.smallMedium + leftInset: Platform.Units.smallSpacing + rightInset: Platform.Units.smallSpacing + topInset: Platform.Units.smallSpacing + bottomInset: Platform.Units.smallSpacing + + icon.height: display === T.AbstractButton.TextBesideIcon ? Platform.Units.iconSizes.small : Platform.Units.iconSizes.smallMedium + icon.width: display === T.AbstractButton.TextBesideIcon ? Platform.Units.iconSizes.small : Platform.Units.iconSizes.smallMedium icon.color: checked ? __highlightForegroundColor : __foregroundColor - Kirigami.MnemonicData.enabled: enabled && visible - Kirigami.MnemonicData.controlType: Kirigami.MnemonicData.MenuItem - Kirigami.MnemonicData.label: text + background: Item { + Platform.Theme.colorSet: Platform.Theme.Button + Platform.Theme.inherit: false - Accessible.onPressAction: control.action.trigger() + implicitHeight: control.display === T.AbstractButton.TextBesideIcon ? 0 : Platform.Units.gridUnit * 3 - background: Rectangle { - Kirigami.Theme.colorSet: Kirigami.Theme.Button - Kirigami.Theme.inherit: false + // Outline for keyboard navigation + Rectangle { + id: outline + anchors.fill: buttonBackground + anchors.margins: -2 // Needs to lie outside of the button border, and not overlap into the button - implicitHeight: (control.display === T.AbstractButton.TextBesideIcon) ? 0 : (Kirigami.Units.gridUnit * 3 + Kirigami.Units.smallSpacing * 2) + radius: Platform.Units.cornerRadius + color: 'transparent' - color: "transparent" + border.color: control.visualFocus ? control.__selectedOutlineBorderColor : "transparent" + border.width: 3 + } Rectangle { - width: parent.width - Kirigami.Units.largeSpacing - height: parent.height - Kirigami.Units.largeSpacing - anchors.centerIn: parent + id: buttonBackground + anchors.fill: parent - radius: Kirigami.Units.cornerRadius + radius: Platform.Units.cornerRadius color: control.down ? control.__pressedColor : (control.checked || control.hovered ? control.__hoverSelectColor : "transparent") - border.color: control.visualFocus ? control.__checkedBorderColor : (control.down ? control.__pressedBorderColor : color) + border.color: (control.checked || control.down) ? control.__borderColor : color border.width: 1 - Behavior on color { ColorAnimation { duration: Kirigami.Units.shortDuration } } - Behavior on border.color { ColorAnimation { duration: Kirigami.Units.shortDuration } } + Behavior on color { ColorAnimation { duration: Platform.Units.shortDuration } } + Behavior on border.color { ColorAnimation { duration: Platform.Units.shortDuration } } } } @@ -155,7 +92,7 @@ T.TabButton { // if this is a row or a column columns: control.display !== T.AbstractButton.TextBesideIcon ? 1 : 2 - Kirigami.Icon { + Primitives.Icon { id: icon source: control.icon.name || control.icon.source visible: (control.icon.name.length > 0 || control.icon.source.toString().length > 0) && control.display !== T.AbstractButton.TextOnly @@ -163,8 +100,8 @@ T.TabButton { Layout.topMargin: control.__verticalMargins Layout.bottomMargin: control.__verticalMargins - Layout.leftMargin: (control.display === T.AbstractButton.TextBesideIcon) ? Kirigami.Units.gridUnit : 0 - Layout.rightMargin: (control.display === T.AbstractButton.TextBesideIcon) ? Kirigami.Units.gridUnit : 0 + Layout.leftMargin: (control.display === T.AbstractButton.TextBesideIcon) ? Platform.Units.gridUnit : 0 + Layout.rightMargin: (control.display === T.AbstractButton.TextBesideIcon) ? Platform.Units.gridUnit : 0 Layout.alignment: { if (control.display === T.AbstractButton.TextBesideIcon) { @@ -178,12 +115,13 @@ T.TabButton { implicitHeight: source ? control.icon.height : 0 implicitWidth: source ? control.icon.width : 0 - Behavior on color { ColorAnimation { duration: Kirigami.Units.shortDuration } } + Behavior on color { ColorAnimation { duration: Platform.Units.shortDuration } } } QQC2.Label { id: label - text: control.Kirigami.MnemonicData.richTextLabel + text: control.Primitives.MnemonicData.richTextLabel + Accessible.name: control.Primitives.MnemonicData.plainTextLabel horizontalAlignment: (control.display === T.AbstractButton.TextBesideIcon) ? Text.AlignLeft : Text.AlignHCenter visible: control.display !== T.AbstractButton.IconOnly @@ -191,12 +129,11 @@ T.TabButton { elide: Text.ElideMiddle color: control.checked ? control.__highlightForegroundColor : control.__foregroundColor - font.bold: control.checked - font.pointSize: !icon.visible && control.display === T.AbstractButton.TextBelowIcon - ? Kirigami.Theme.defaultFont.pointSize * 1.20 // 1.20 is equivalent to level 2 heading - : Kirigami.Theme.defaultFont.pointSize + font.pointSize: !icon.visible && control.display === T.AbstractButton.TextUnderIcon + ? Platform.Theme.defaultFont.pointSize * 1.20 // 1.20 is equivalent to level 2 heading + : Platform.Theme.defaultFont.pointSize - Behavior on color { ColorAnimation { duration: Kirigami.Units.shortDuration } } + Behavior on color { ColorAnimation { duration: Platform.Units.shortDuration } } Layout.topMargin: control.__verticalMargins Layout.bottomMargin: control.__verticalMargins diff --git a/local/recipes/kde/kirigami/source/src/controls/OverlayDrawer.qml b/local/recipes/kde/kirigami/source/src/controls/OverlayDrawer.qml index 7fcd56e6d0..3b986867e3 100644 --- a/local/recipes/kde/kirigami/source/src/controls/OverlayDrawer.qml +++ b/local/recipes/kde/kirigami/source/src/controls/OverlayDrawer.qml @@ -7,19 +7,12 @@ import QtQuick import QtQuick.Layouts import QtQuick.Templates as T -import org.kde.kirigami as Kirigami import "private" as KP -import "templates" as KT +import org.kde.kirigami.templates as KT +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.controls as KC -/** - * Overlay Drawers are used to expose additional UI elements needed for - * small secondary tasks for which the main UI elements are not needed. - * For example in Okular Mobile, an Overlay Drawer is used to display - * thumbnails of all pages within a document along with a search field. - * This is used for the distinct task of navigating to another page. - * - * @inherit org::kde::kirigami::templates::OverlayDrawer - */ KT.OverlayDrawer { id: root @@ -41,84 +34,9 @@ KT.OverlayDrawer { } background: Rectangle { - color: Kirigami.Theme.backgroundColor + color: Platform.Theme.backgroundColor - Item { - parent: root.handle - anchors.fill: parent - - Kirigami.ShadowedRectangle { - id: handleGraphics - anchors.centerIn: parent - - Kirigami.Theme.colorSet: parent.parent.handleAnchor && parent.parent.handleAnchor.visible ? parent.parent.handleAnchor.Kirigami.Theme.colorSet : Kirigami.Theme.Button - - Kirigami.Theme.backgroundColor: parent.parent.handleAnchor && parent.parent.handleAnchor.visible ? parent.parent.handleAnchor.Kirigami.Theme.backgroundColor : undefined - - Kirigami.Theme.textColor: parent.parent.handleAnchor && parent.parent.handleAnchor.visible ? parent.parent.handleAnchor.Kirigami.Theme.textColor : undefined - - Kirigami.Theme.inherit: false - color: root.handle.pressed ? Kirigami.Theme.highlightColor : Kirigami.Theme.backgroundColor - - visible: !parent.parent.handleAnchor || !parent.parent.handleAnchor.visible || root.handle.pressed || (root.modal && root.position > 0) - - shadow.color: Qt.rgba(0, 0, 0, root.handle.pressed ? 0.6 : 0.4) - shadow.yOffset: 1 - shadow.size: Kirigami.Units.gridUnit / 2 - - width: Kirigami.Units.iconSizes.smallMedium + Kirigami.Units.smallSpacing * 2 - height: width - radius: Kirigami.Units.cornerRadius - Behavior on color { - ColorAnimation { - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutQuad - } - } - } - Loader { - anchors.centerIn: handleGraphics - width: height - height: Kirigami.Units.iconSizes.smallMedium - - Kirigami.Theme.colorSet: handleGraphics.Kirigami.Theme.colorSet - Kirigami.Theme.backgroundColor: handleGraphics.Kirigami.Theme.backgroundColor - Kirigami.Theme.textColor: handleGraphics.Kirigami.Theme.textColor - - asynchronous: true - - source: { - let edge = root.edge; - if (Qt.application.layoutDirection === Qt.RightToLeft) { - if (edge === Qt.LeftEdge) { - edge = Qt.RightEdge; - } else { - edge = Qt.LeftEdge; - } - } - - if ((root.handleClosedIcon.source || root.handleClosedIcon.name) - && (root.handleOpenIcon.source || root.handleOpenIcon.name)) { - return Qt.resolvedUrl("templates/private/GenericDrawerIcon.qml"); - } else if (edge === Qt.LeftEdge) { - return Qt.resolvedUrl("templates/private/MenuIcon.qml"); - } else if (edge === Qt.RightEdge && root instanceof Kirigami.ContextDrawer) { - return Qt.resolvedUrl("templates/private/ContextIcon.qml"); - } else { - return ""; - } - } - onItemChanged: { - if (item) { - item.drawer = root; - item.color = Qt.binding(() => root.handle.pressed - ? Kirigami.Theme.highlightedTextColor : Kirigami.Theme.textColor); - } - } - } - } - - Kirigami.Separator { + Primitives.Separator { id: separator LayoutMirroring.enabled: false @@ -133,8 +51,8 @@ KT.OverlayDrawer { visible: !root.modal - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.Header + Platform.Theme.inherit: false + Platform.Theme.colorSet: Platform.Theme.Header } Item { @@ -149,7 +67,7 @@ KT.OverlayDrawer { return false; } // compatible header - const header = root.header ?? null; + const header = (root as KC.GlobalDrawer)?.header ?? null; if (header instanceof T.ToolBar || header instanceof KT.AbstractApplicationHeader) { return true; } @@ -184,31 +102,31 @@ KT.OverlayDrawer { visible: separator.visible - Kirigami.Separator { + Primitives.Separator { LayoutMirroring.enabled: false anchors { fill: parent - topMargin: segmentedSeparator.shouldUseSegmentedStyle ? Kirigami.Units.largeSpacing : 0 - bottomMargin: segmentedSeparator.shouldUseSegmentedStyle ? Kirigami.Units.largeSpacing : 0 + topMargin: segmentedSeparator.shouldUseSegmentedStyle ? Platform.Units.largeSpacing : 0 + bottomMargin: segmentedSeparator.shouldUseSegmentedStyle ? Platform.Units.largeSpacing : 0 } Behavior on anchors.topMargin { NumberAnimation { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } Behavior on anchors.bottomMargin { NumberAnimation { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.Header + Platform.Theme.inherit: false + Platform.Theme.colorSet: Platform.Theme.Header } } @@ -227,7 +145,7 @@ KT.OverlayDrawer { Behavior on opacity { NumberAnimation { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } diff --git a/local/recipes/kde/kirigami/source/src/controls/OverlaySheet.qml b/local/recipes/kde/kirigami/source/src/controls/OverlaySheet.qml index 03be40f7c0..8fa8a7c640 100644 --- a/local/recipes/kde/kirigami/source/src/controls/OverlaySheet.qml +++ b/local/recipes/kde/kirigami/source/src/controls/OverlaySheet.qml @@ -4,25 +4,15 @@ * SPDX-License-Identifier: LGPL-2.0-or-later */ -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform import "private" as P -import "templates" as T +import org.kde.kirigami.templates as T -/** - * @brief An overlay sheet that covers the current Page content. - * - * Its contents can be scrolled up or down, scrolling all the way up or - * all the way down, dismisses it. - * Use this for big, modal dialogs or information display, that can't be - * logically done as a new separate Page, even if potentially - * are taller than the screen space. - * @inherit org::kde::kirigami::templates::OverlaySheet - */ T.OverlaySheet { id: root background: P.DefaultCardBackground { - Kirigami.Theme.colorSet: root.Kirigami.Theme.colorSet - Kirigami.Theme.inherit: false + Platform.Theme.colorSet: root.Platform.Theme.colorSet + Platform.Theme.inherit: false } } diff --git a/local/recipes/kde/kirigami/source/src/controls/Page.qml b/local/recipes/kde/kirigami/source/src/controls/Page.qml index 29dcf2bbc1..be0f35f6cd 100644 --- a/local/recipes/kde/kirigami/source/src/controls/Page.qml +++ b/local/recipes/kde/kirigami/source/src/controls/Page.qml @@ -3,111 +3,126 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts import QtQuick.Templates as T import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.layouts as KL +import org.kde.kirigami.controls as KC import "private" as P -/** - * Page is a container for all the app pages: everything pushed to the - * ApplicationWindow's pageStack should be a Page. - * - * @see ScrollablePage - * For content that should be scrollable, such as ListViews, use ScrollablePage instead. - * @inherit QtQuick.Controls.Page +/*! + \qmltype Page + \inqmlmodule org.kde.kirigami + + \brief A container for all the app pages. + + Everything pushed to the ApplicationWindow's pageStack should be a Page. + + \sa ScrollablePage + For content that should be scrollable, such as ListViews, use ScrollablePage instead. */ QQC2.Page { id: root //BEGIN properties - padding: Kirigami.Units.gridUnit + padding: Platform.Units.gridUnit + topPadding: padding + SafeArea.margins.top + bottomPadding: padding + (footer && footer.visible ? 0 : SafeArea.margins.bottom) + leftPadding: padding + SafeArea.margins.left + rightPadding: padding + SafeArea.margins.right - /** - * @brief If the central element of the page is a Flickable - * (ListView and Gridview as well) you can set it there. - * - * Normally, you wouldn't need to do that, but just use the - * ScrollablePage element instead. - * - * Use this if your flickable has some non standard properties, such as not covering the whole Page. - * - * @see ScrollablePage + /*! + \brief If the central element of the page is a Flickable + (ListView and Gridview as well) you can set it there. + + Normally, you wouldn't need to do that, but just use the + ScrollablePage element instead. + + Use this if your flickable has some non standard properties, such as not covering the whole Page. + + \sa ScrollablePage */ property Flickable flickable - /** - * @brief This property holds the actions for the page. - * - * These actions will be displayed in the toolbar on the desktop and inside - * the ContextDrawer on mobile. - * - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.Page { - * actions: [ - * Kirigami.Action {...}, - * Kirigami.Action {...} - * } - * } - * @endcode + /*! + \qmlproperty list actions + \brief This property holds the actions for the page. + + These actions will be displayed in the toolbar on the desktop and inside + the ContextDrawer on mobile. + + \code + import org.kde.kirigami as Kirigami + + Kirigami.Page { + actions: [ + Kirigami.Action {...}, + Kirigami.Action {...} + } + } + \endcode */ property list actions - /** - * @brief This property tells us if it is the currently active page. - * - * Specifies if it's the currently selected page in the window's pages row, or if layers - * are used whether this is the topmost item on the layers stack. If the page is - * not attached to either a column view or a stack view, expect this to be true. - * - * @since 2.1 + /*! + \brief This property tells us if it is the currently active page. + + Specifies if it's the currently selected page in the window's pages row, or if layers + are used whether this is the topmost item on the layers stack. If the page is + not attached to either a column view or a stack view, expect this to be true. + + \since 2.1 */ //TODO KF6: remove this or at least all the assumptions about the internal tree structure of items // Kirigami.ColumnView.view.parent.parent is the StackView in which the ColumnView is, the condition means "is the ColumnView the current layer of the pagerow" - readonly property bool isCurrentPage: Kirigami.ColumnView.view - ? (Kirigami.ColumnView.index === Kirigami.ColumnView.view.currentIndex && Kirigami.ColumnView.view.parent.parent.currentItem === Kirigami.ColumnView.view.parent) + readonly property bool isCurrentPage: KL.ColumnView.view + ? (KL.ColumnView.index === KL.ColumnView.view.currentIndex && KL.ColumnView.view.parent.parent.currentItem === KL.ColumnView.view.parent) : (parent && parent instanceof QQC2.StackView ? parent.currentItem === root : true) - /** - * An item which stays on top of every other item in the page, - * if you want to make sure some elements are completely in a - * layer on top of the whole content, parent items to this one. - * It's a "local" version of ApplicationWindow's overlay - * - * @property Item overlay - * @since 2.5 + /*! + \qmlproperty Item overlay + + An item which stays on top of every other item in the page, + if you want to make sure some elements are completely in a + layer on top of the whole content, parent items to this one. + It's a "local" version of ApplicationWindow's overlay + */ readonly property alias overlay: overlayItem - /** - * @brief This holds the icon that represents this page. - * @property var icon - */ - property P.ActionIconGroup icon: P.ActionIconGroup {} + /*! + \qmlproperty string Page::icon.name + \qmlproperty string Page::icon.source + \qmlproperty int Page::icon.width + \qmlproperty int Page::icon.height + \qmlproperty color Page::icon.color - /** - * @brief Progress of a task this page is doing. - * - * Set to undefined to indicate that there are no ongoing tasks. - * - * default: ``undefined`` - * - * @property real progress + \brief This holds the icon that represents this page. + */ + property Primitives.IconPropertiesGroup icon: Primitives.IconPropertiesGroup {} + + /*! + \brief Progress of a task this page is doing. + + Set to undefined to indicate that there are no ongoing tasks. + + default: \c undefined */ property var progress: undefined - /** - * @brief The delegate which will be used to draw the page title. - * - * It can be customized to put any kind of Item in there. - * - * @since 2.7 + /*! + \brief The delegate which will be used to draw the page title. + + It can be customized to put any kind of Item in there. + + \since 2.7 */ property Component titleDelegate: Component { id: defaultTitleDelegate @@ -116,49 +131,53 @@ QQC2.Page { } } - /** - * The item used as global toolbar for the page - * present only if we are in a PageRow as a page or as a layer, - * and the style is either Titles or ToolBar. - * - * @since 2.5 + /*! + The item used as global toolbar for the page + present only if we are in a PageRow as a page or as a layer, + and the style is either Titles or ToolBar. + + \since 2.5 */ readonly property Item globalToolBarItem: globalToolBar.item - /** - * The style for the automatically generated global toolbar: by default the Page toolbar is the one set globally in the PageRow in its globalToolBar.style property. - * A single page can override the application toolbar style for itself. - * It is discouraged to use this, except very specific exceptions, like a chat - * application which can't have controls on the bottom except the text field. - * If the Page is not in a PageRow, by default the toolbar will be invisible, - * so has to be explicitly set to Kirigami.ApplicationHeaderStyle.ToolBar if - * desired to be used in that case. + /*! + The style for the automatically generated global toolbar. + + By default the Page toolbar is the one set globally in the PageRow in its globalToolBar.style property. + + A single page can override the application toolbar style for itself. + It is discouraged to use this, except very specific exceptions, like a chat + application which can't have controls on the bottom except the text field. + + If the Page is not in a PageRow, by default the toolbar will be invisible, + so has to be explicitly set to Kirigami.ApplicationHeaderStyle.ToolBar if + desired to be used in that case. */ property int globalToolBarStyle: { if (globalToolBar.row && !globalToolBar.stack) { return globalToolBar.row.globalToolBar.actualStyle; } else if (globalToolBar.stack) { - return Kirigami.ApplicationHeaderStyle.ToolBar; + return Platform.Settings.isMobile ? KC.ApplicationHeaderStyle.Titles : KC.ApplicationHeaderStyle.ToolBar; } else { - return Kirigami.ApplicationHeaderStyle.None; + return KC.ApplicationHeaderStyle.None; } } //END properties //BEGIN signal and signal handlers - /** - * @brief Emitted when the application requests a Back action. - * - * For instance a global "back" shortcut or the Android - * Back button has been pressed. - * The page can manage the back event by itself, - * and if it set event.accepted = true, it will stop the main - * application to manage the back event. + /*! + \brief Emitted when the application requests a Back action. + + For instance a global "back" shortcut or the Android + Back button has been pressed. + The page can manage the back event by itself, + and if it set event.accepted = true, it will stop the main + application to manage the back event. */ signal backRequested(var event); background: Rectangle { - color: Kirigami.Theme.backgroundColor + color: Platform.Theme.backgroundColor } // FIXME: on material the shadow would bleed over @@ -178,12 +197,12 @@ QQC2.Page { globalToolBar.stack = null; globalToolBar.row = null; - if (root.Kirigami.ColumnView.view) { - globalToolBar.row = root.Kirigami.ColumnView.view.__pageRow; + if (root.KL.ColumnView.view) { + globalToolBar.row = root.KL.ColumnView.view.__pageRow ?? null; } if (root.T.StackView.view) { globalToolBar.stack = root.T.StackView.view; - globalToolBar.row = root.T.StackView.view.parent instanceof Kirigami.PageRow ? root.T.StackView.view.parent : null; + globalToolBar.row = root.T.StackView.view.parent instanceof KC.PageRow ? root.T.StackView.view.parent : null; } if (globalToolBar.row) { root.globalToolBarStyleChanged.connect(globalToolBar.syncSource); @@ -200,18 +219,20 @@ QQC2.Page { z: 9997 anchors { fill: parent - topMargin: globalToolBar.height + topMargin: globalToolBar.row ? 0 : globalToolBar.height } } ] // global top toolbar if we are in a PageRow (in the row or as a layer) - Kirigami.ColumnView.globalHeader: Loader { + KL.ColumnView.globalHeader: Loader { id: globalToolBar z: 9999 - height: item ? item.implicitHeight : 0 + Primitives.AlignedSize.height: item ? item.implicitHeight : 0 width: root.width - property Kirigami.PageRow row + // NOTE: This is an Item instead of a Kirigami.PageRow as a workaround for QTBUG-120189 + // Once Frameworks can depend from Qt 6.9, this property can be a PageRow again + property Item row property T.StackView stack // don't load async so that on slower devices we don't have the page content height changing while loading in @@ -219,7 +240,7 @@ QQC2.Page { asynchronous: false visible: active - active: (root.titleDelegate !== defaultTitleDelegate || root.globalToolBarStyle === Kirigami.ApplicationHeaderStyle.ToolBar || root.globalToolBarStyle === Kirigami.ApplicationHeaderStyle.Titles) + active: root.parent && root.visible && (root.titleDelegate !== defaultTitleDelegate || root.globalToolBarStyle === KC.ApplicationHeaderStyle.ToolBar || root.globalToolBarStyle === KC.ApplicationHeaderStyle.Titles) onActiveChanged: { if (active) { syncSource(); @@ -227,39 +248,31 @@ QQC2.Page { } function syncSource() { - if (root.globalToolBarStyle !== Kirigami.ApplicationHeaderStyle.ToolBar && - root.globalToolBarStyle !== Kirigami.ApplicationHeaderStyle.Titles && + if (!row) { + return; + } + if (root.globalToolBarStyle !== KC.ApplicationHeaderStyle.ToolBar && + root.globalToolBarStyle !== KC.ApplicationHeaderStyle.Titles && root.titleDelegate !== defaultTitleDelegate) { sourceComponent = root.titleDelegate; } else if (active) { - const url = root.globalToolBarStyle === Kirigami.ApplicationHeaderStyle.ToolBar - ? "private/globaltoolbar/ToolBarPageHeader.qml" - : "private/globaltoolbar/TitlesPageHeader.qml"; - // TODO: find container reliably, remove assumption + const url = "private/globaltoolbar/ToolBarPageHeader.qml"; setSource(Qt.resolvedUrl(url), { pageRow: Qt.binding(() => row), - page: root, - current: Qt.binding(() => { - if (!row && !stack) { - return true; - } else if (stack) { - return stack; - } else { - return row.currentIndex === root.Kirigami.ColumnView.level; - } - }), + page: root }); } } } // bottom action buttons - Kirigami.ColumnView.globalFooter: Loader { + KL.ColumnView.globalFooter: Loader { id: bottomToolBar property T.Page page: root property bool pageComplete: false visible: active + height: visible ? bottomToolBar.item.implicitHeight : 0 active: { // Important! Do not do anything until the page has been @@ -269,9 +282,9 @@ QQC2.Page { return false; } - if ((globalToolBar.row && globalToolBar.row.globalToolBar.actualStyle === Kirigami.ApplicationHeaderStyle.ToolBar) - || root.globalToolBarStyle === Kirigami.ApplicationHeaderStyle.ToolBar - || root.globalToolBarStyle === Kirigami.ApplicationHeaderStyle.None) { + if ((globalToolBar.row && globalToolBar.row.globalToolBar.actualStyle === KC.ApplicationHeaderStyle.ToolBar) + || root.globalToolBarStyle === KC.ApplicationHeaderStyle.ToolBar + || root.globalToolBarStyle === KC.ApplicationHeaderStyle.None) { return false; } diff --git a/local/recipes/kde/kirigami/source/src/controls/PagePoolAction.qml b/local/recipes/kde/kirigami/source/src/controls/PagePoolAction.qml index 1ad39d6561..e09b05e005 100644 --- a/local/recipes/kde/kirigami/source/src/controls/PagePoolAction.qml +++ b/local/recipes/kde/kirigami/source/src/controls/PagePoolAction.qml @@ -7,95 +7,102 @@ import QtQuick import QtQml import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC -/** - * An action used to load Pages coming from a common PagePool - * in a PageRow or QtQuickControls2 StackView. - * - * @see PagePool +/*! + \qmltype PagePoolAction + \inqmlmodule org.kde.kirigami + + \brief An action used to load Pages coming from a common PagePool + in a PageRow or QtQuickControls2 StackView. + + \sa PagePool */ -Kirigami.Action { +KC.Action { id: root //BEGIN properties - /** - * @brief This property holds the url or filename of the page that this action will load. + /*! + \brief This property holds the url or filename of the page that this action will load. */ property string page - /** - * @brief This property holds the PagePool object used by this PagePoolAction. - * - * PagePool will make sure only one instance of the page identified by the page url will be created and reused. - * PagePool's lastLoaderUrl property will be used to control the mutual exclusivity of the checked - * state of the PagePoolAction instances sharing the same PagePool. - */ - property Kirigami.PagePool pagePool + /*! + \brief This property holds the PagePool object used by this PagePoolAction. - /** - * The pageStack property accepts either a Kirigami.PageRow or a QtQuickControls2 StackView. - * The component that will instantiate the pages, which has to work with a stack logic. - * Kirigami.PageRow is recommended, but will work with QtQuicControls2 StackView as well. - * - * default: `bound to ApplicationWindow's global pageStack, which is a PageRow by default` + PagePool will make sure only one instance of the page identified by the page url will be created and reused. + + PagePool's lastLoaderUrl property will be used to control the mutual exclusivity of the checked + state of the PagePoolAction instances sharing the same PagePool. + */ + property KC.PagePool pagePool + + /*! + The pageStack property accepts either a Kirigami.PageRow or a QtQuickControls2 StackView; + the component that will instantiate the pages, which has to work with a stack logic. + + Kirigami.PageRow is recommended, but will work with QtQuicControls2 StackView as well. + + default: bound to ApplicationWindow's global pageStack, which is a PageRow by default */ property Item pageStack: typeof applicationWindow !== 'undefined' ? applicationWindow().pageStack : null - /** - * @brief This property sets the page in the pageStack after which - * new pages will be pushed. - * - * All pages present after the given basePage will be removed from the pageStack + /*! + \qmlproperty Page basePage + \brief This property sets the page in the pageStack after which + new pages will be pushed. + + All pages present after the given basePage will be removed from the pageStack */ property T.Page basePage - /** - * This property holds a function that generate the property values for the created page - * when it is pushed onto the Kirigami.PagePool. - * - * Example usage: - * @code{.qml} - * Kirigami.PagePoolAction { - * text: i18n("Security") - * icon.name: "security-low" - * page: Qt.resolvedUrl("Security.qml") - * initialProperties: { - * return { - * room: root.room - * } - * } - * } - * @endcode - * @property QVariantMap initialProperties + /*! + This property holds a function that generate the property values for the created page + when it is pushed onto the Kirigami.PagePool. + + Example usage: + \qml + Kirigami.PagePoolAction { + text: i18n("Security") + icon.name: "security-low" + page: Qt.resolvedUrl("Security.qml") + initialProperties: { + return { + room: root.room + } + } + } + \endqml */ property var initialProperties - /** - * @brief This property sets whether PagePoolAction will use the layers property - * implemented by the pageStack. - * - * This is intended for use with PageRow layers to allow PagePoolActions to - * push context-specific pages onto the layers stack. - * - * default: ``false`` - * - * @since 5.70 - * @since org.kde.kirigami 2.12 + /*! + \brief This property sets whether PagePoolAction will use the layers property + implemented by the pageStack. + + This is intended for use with PageRow layers to allow PagePoolActions to + push context-specific pages onto the layers stack. + + default: \c false + + \since 5.70 */ property bool useLayers: false //END properties - /** - * @returns the page item held in the PagePool or null if it has not been loaded yet. + /*! + \qmlmethod Item PagePoolAction::pageItem() + + Returns the page item held in the PagePool or null if it has not been loaded yet. */ function pageItem(): Item { return pagePool.pageForUrl(page) } - /** - * @returns true if the page has been loaded and placed on pageStack.layers - * and useLayers is true, otherwise returns null. + /*! + \qmlmethod bool PagePoolAction::layerContainsPage() + Returns \c true if the page has been loaded and placed on \c pageStack.layers + and useLayers is true, otherwise returns \c null. */ function layerContainsPage(): bool { if (!useLayers || !pageStack.hasOwnProperty("layers")) { @@ -107,9 +114,11 @@ Kirigami.Action { return item !== null; } - /** - * @returns true if the page has been loaded and placed on the pageStack, - * otherwise returns null. + /*! + \qmlmethod bool PagePoolAction::stackContainsPage() + + Returns \c true if the page has been loaded and placed on the pageStack, + otherwise returns \c null. */ function stackContainsPage(): bool { if (useLayers) { diff --git a/local/recipes/kde/kirigami/source/src/controls/PageRow.qml b/local/recipes/kde/kirigami/source/src/controls/PageRow.qml index 787862e28b..ce13ac5423 100644 --- a/local/recipes/kde/kirigami/source/src/controls/PageRow.qml +++ b/local/recipes/kde/kirigami/source/src/controls/PageRow.qml @@ -3,219 +3,232 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick -import QtQuick.Layouts import QtQuick.Templates as QT import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.layouts as KL import "private/globaltoolbar" as GlobalToolBar -import "templates" as KT -/** - * PageRow implements a row-based navigation model, which can be used - * with a set of interlinked information pages. Pages are pushed in the - * back of the row and the view scrolls until that row is visualized. - * A PageRow can show a single page or a multiple set of columns, depending - * on the window width: on a phone a single column should be fullscreen, - * while on a tablet or a desktop more than one column should be visible. - * - * @inherits QtQuick.Templates.Control +/*! + \qmltype PageRow + \inqmlmodule org.kde.kirigami + + \brief A row-based navigation model that can be used + with a set of interlinked information pages. + + Pages are pushed in the back of the row and the view scrolls + until that row is visualized. + A PageRow can show a single page or a multiple set of columns, depending + on the window width: on a phone a single column should be fullscreen, + while on a tablet or a desktop more than one column should be visible. + */ QT.Control { id: root //BEGIN PROPERTIES - /** - * @brief This property holds the number of pages currently pushed onto the view. - * @property int depth + /*! + \qmlproperty int PageRow::depth + \brief This property holds the number of pages currently pushed onto the view. */ readonly property alias depth: columnView.count - /** - * @brief This property holds the last page in the row. - * @property Page lastItem + /*! + \qmlproperty Page PageRow::lastItem + \brief This property holds the last page in the row. */ readonly property Item lastItem: columnView.contentChildren.length > 0 ? columnView.contentChildren[columnView.contentChildren.length - 1] : null - /** - * @brief This property holds the currently visible/active page. - * - * Because of the ability to display multiple pages, it will hold the currently active page. - * - * @property Page currentItem + /*! + \qmlproperty Page PageRow::currentItem + \brief This property holds the currently visible/active page. + + Because of the ability to display multiple pages, it will hold the currently active page. + */ readonly property alias currentItem: columnView.currentItem - /** - * @brief This property holds the index of the currently active page. - * @see currentItem - * @property int currentIndex + /*! + \qmlproperty int PageRow::currentIndex + \brief This property holds the index of the currently active page. + \sa currentItem */ property alias currentIndex: columnView.currentIndex - /** - * @brief This property sets the initial page for this PageRow. - * @property Page initialPage + /*! + \qmlproperty Page PageRow::initialPage + \brief This property sets the initial page for this PageRow. */ property var initialPage - /** - * @brief This property holds the main ColumnView of this Row. - * @property ColumnView contentItem - */ contentItem: columnView - /** - * @brief This property holds the ColumnView that this PageRow owns. - * - * Generally, you shouldn't need to change the value of this property. - * - * @property ColumnView columnView - * @since 2.12 + /*! + \qmlproperty ColumnView PageRow::columnView + \brief This property holds the ColumnView that this PageRow owns. + + Generally, you shouldn't need to change the value of this property. + + \since 2.12 */ property alias columnView: columnView - /** - * @brief This property holds the present pages in the PageRow. - * @property list items - * @since 2.6 + /*! + \qmlproperty list PageRow::items + \brief This property holds the present pages in the PageRow. + \since 2.6 */ readonly property alias items: columnView.contentChildren - /** - * @brief This property holds all visible pages in the PageRow, - * excluding those which are scrolled away. - * @property list visibleItems - * @since 2.6 + /*! + \qmlproperty list PageRow::visibleItems + \brief This property holds all visible pages in the PageRow, + excluding those which are scrolled away. + \since 2.6 */ readonly property alias visibleItems: columnView.visibleItems - /** - * @brief This property holds the first page in the PageRow that is at least partially visible. - * @note Pages before that one (the one contained in the property) will be out of the viewport. - * @see ColumnView::leadingVisibleItem - * @property Item leadingVisibleItem - * @since 2.6 + /*! + \qmlproperty Item PageRow::leadingVisibleItem + \brief This property holds the first page in the PageRow that is at least partially visible. + \note Pages before that one (the one contained in the property) will be out of the viewport. + \sa ColumnView::leadingVisibleItem + \since 2.6 */ readonly property alias leadingVisibleItem: columnView.leadingVisibleItem - /** - * @brief This property holds the last page in the PageRow that is at least partially visible. - * @note Pages after that one (the one contained in the property) will be out of the viewport. - * @see ColumnView::trailingVisibleItem - * @property Item trailingVisibleItem - * @since 2.6 + /*! + \qmlproperty Item PageRow::trailingVisibleItem + \brief This property holds the last page in the PageRow that is at least partially visible. + \note Pages after that one (the one contained in the property) will be out of the viewport. + \sa ColumnView::trailingVisibleItem + \since 2.6 */ readonly property alias trailingVisibleItem: columnView.trailingVisibleItem - /** - * @brief This property holds the default width for a column. - * - * default: ``20 * Kirigami.Units.gridUnit`` - * - * @note Pages can override it using implicitWidth, Layout.fillWidth, Layout.minimumWidth etc. - */ - property int defaultColumnWidth: Kirigami.Units.gridUnit * 20 + /*! + \brief This property holds the default width for a column. + + default: \c{20 * Kirigami.Units.gridUnit} + + \note Pages can override it using implicitWidth, Layout.fillWidth, Layout.minimumWidth etc. + */ + property int defaultColumnWidth: Platform.Units.gridUnit * 20 + + /*! + \qmlproperty bool PageRow::interactive + + \brief This property sets whether it is possible to go back/forward + by swiping with a gesture on the content view. + + default: \c true, except on Android where it conflicts with native + back/forward swipe gestures. - /** - * @brief This property sets whether it is possible to go back/forward - * by swiping with a gesture on the content view. - * - * default: ``true`` - * - * @property bool interactive */ property alias interactive: columnView.interactive - /** - * @brief This property tells whether the PageRow is wide enough to show multiple pages. - * @since 5.37 + /*! + \brief This property tells whether the PageRow is wide enough to show multiple pages. + \since 5.37 */ readonly property bool wideMode: width >= defaultColumnWidth * 2 && depth >= 2 - /** - * @brief This property sets whether the separators between pages should be displayed. - * - * default: ``true`` - * - * @property bool separatorVisible - * @since 5.38 + /*! + \qmlproperty bool PageRow::separatorVisible + + \brief This property sets whether the separators between pages should be displayed. + + default: \c true + + \since 5.38 */ property alias separatorVisible: columnView.separatorVisible - /** - * @brief This property sets the appearance of an optional global toolbar for the whole PageRow. - * - * It's a grouped property comprised of the following properties: - * * style (``Kirigami.ApplicationHeaderStyle``): can have the following values: - * * ``Auto``: Depending on application formfactor, it can behave automatically like other values, such as a Breadcrumb on mobile and ToolBar on desktop. - * * ``Breadcrumb``: It will show a breadcrumb of all the page titles in the stack, for easy navigation. - * * ``Titles``: Each page will only have its own title on top. - * * ``ToolBar``: Each page will have the title on top together buttons and menus to represent all of the page actions. Not available on Mobile systems. - * * ``None``: No global toolbar will be shown. - * - * * ``actualStyle``: This will represent the actual style of the toolbar; it can be different from style in the case style is Auto. - * * ``showNavigationButtons``: OR flags combination of Kirigami.ApplicationHeaderStyle.ShowBackButton and Kirigami.ApplicationHeaderStyle.ShowForwardButton. - * * ``toolbarActionAlignment: Qt::Alignment``: How to horizontally align the actions when using the ToolBar style. Note that anything but Qt.AlignRight will cause the title to be hidden (default: ``Qt.AlignRight``). - * * ``minimumHeight: int`` Minimum height of the header, which will be resized when scrolling. Only in Mobile mode (default: ``preferredHeight``, sliding but no scaling). - * * ``preferredHeight: int`` The height the toolbar will usually have. - * * ``leftReservedSpace: int, readonly`` How many pixels of extra space are reserved at the left of the page toolbar (typically for navigation buttons or a drawer handle). - * * ``rightReservedSpace: int, readonly`` How many pixels of extra space are reserved at the right of the page toolbar (typically for a drawer handle). - * - * @property org::kde::kirigami::private::globaltoolbar::PageRowGlobalToolBarStyleGroup globalToolBar - * @since 5.48 + /*! + \qmlproperty var PageRow::globalToolBar + + \brief This property sets the appearance of an optional global toolbar for the whole PageRow. + + It's a grouped property comprised of the following properties: + \list + \li style (Kirigami.ApplicationHeaderStyle): can have the following values: + \list + \li Auto: Depending on application formfactor, it can behave automatically like other values, such as a Breadcrumb on mobile and ToolBar on desktop. + \li Breadcrumb: It will show a breadcrumb of all the page titles in the stack, for easy navigation. + \li Titles: Each page will only have its own title on top. + \li ToolBar: Each page will have the title on top together buttons and menus to represent all of the page actions. Not available on Mobile systems. + \li None: No global toolbar will be shown. + \endlist + + \li actualStyle: This will represent the actual style of the toolbar; it can be different from style in the case style is Auto. + \li showNavigationButtons: OR flags combination of Kirigami.ApplicationHeaderStyle.ShowBackButton and Kirigami.ApplicationHeaderStyle.ShowForwardButton. + \li toolbarActionAlignment (Qt::Alignment): How to horizontally align the actions when using the ToolBar style. Note that anything but Qt.AlignRight will cause the title to be hidden (default: Qt.AlignRight). + \li minimumHeight: int Minimum height of the header, which will be resized when scrolling. Only in Mobile mode (default: preferredHeight, sliding but no scaling). + \li preferredHeight: int The height the toolbar will usually have. + \li leftReservedSpace: int, readonly How many pixels of extra space are reserved at the left of the page toolbar (typically for navigation buttons or a drawer handle). + \li rightReservedSpace: int, readonly How many pixels of extra space are reserved at the right of the page toolbar (typically for a drawer handle). + \endlist + + \since 5.48 */ readonly property alias globalToolBar: globalToolBar - /** - * @brief This property assigns a drawer as an internal left sidebar for this PageRow. - * - * In this case, when open and not modal, the drawer contents will be in the same layer as the base pagerow. - * Pushing any other layer on top will cover the sidebar. - * - * @since 5.84 + /*! + \brief This property assigns a drawer as an internal left sidebar for this PageRow. + + In this case, when open and not modal, the drawer contents will be in the same layer as the base pagerow. + Pushing any other layer on top will cover the sidebar. + + \since 5.84 */ // TODO KF6: globaldrawer should use actions also used by this sidebar instead of reparenting globaldrawer contents? property OverlayDrawer leftSidebar - /** - * @brief This property holds the modal layers. - * - * Sometimes an application needs a modal page that always covers all the rows. - * For instance the full screen image of an image viewer or a settings page. - * - * @property QtQuick.Controls.StackView layers - * @since 5.38 + /*! + \qmlproperty QtQuick.Controls.StackView PageRow::layers + \brief This property holds the modal layers. + + Sometimes an application needs a modal page that always covers all the rows. + For instance the full screen image of an image viewer or a settings page. + + \since 5.38 */ property alias layers: layersStack - /** - * @brief This property holds whether to automatically pop pages at the top of the stack if they are not visible. - * - * If a user navigates to a previous page on the stack (ex. pressing back button) and pages above - * it on the stack are not visible, they will be popped if this property is true. - * - * @since 5.101 + /*! + \brief This property holds whether to automatically pop pages at the top of the stack if they are not visible. + + If a user navigates to a previous page on the stack (ex. pressing back button) and pages above + it on the stack are not visible, they will be popped if this property is true. + + \since 5.101 */ property bool popHiddenPages: false //END PROPERTIES //BEGIN FUNCTIONS - /** - * @brief This method pushes a page on the stack. - * - * A single page can be defined as an url, a component, or an object. It can - * also be an array of the above said types, but in that case, the - * properties' array length must match pages' array length or it must be - * empty. Failing to comply with the following rules will make the method - * return null before doing anything. - * - * @param page A single page or an array of pages. - * @param properties A single property object or an array of property - * objects. - * - * @return The new created page (or the last one if it was an array). + /*! + \qmlmethod Page PageRow::push(var page, var properties) + + \brief This method pushes a page on the stack. + + A single page can be defined as an url, a component, or an object. It can + also be an array of the above said types, but in that case, the + properties' array length must match pages' array length or it must be + empty. Failing to comply with the following rules will make the method + return null before doing anything. + + \a page A single page or an array of pages. + + \a properties A single property object or an array of property + objects. + + Returns The new created page (or the last one if it was an array). */ function push(page, properties): QT.Page { if (!pagesLogic.verifyPages(page, properties)) { @@ -229,18 +242,24 @@ QT.Control { return item } - /** - * @brief Pushes a page as a new dialog on desktop and as a layer on mobile. - * - * @param page A single page defined as either a string url, a component or - * an object (which will be reparented). The following page gains - * `closeDialog()` method allowing to make it indistinguishable to - * close/hide it when in desktop or mobile mode. Note that Kiriami supports - * calling `closeDialog()` only once. - * - * @param properties The properties given when initializing the page. - * @param windowProperties The properties given to the initialized window on desktop. - * @return Returns a newly created page. + /*! + \qmlmethod Page PageRow::pushDialogLayer(var page, var properties, var windowProperties) + + \brief Pushes a page as a new dialog on desktop and as a layer on mobile. + + \a page A single page defined as either a string url, a component or + an object (which will be reparented). The following page can then be closed + by calling `Kirigami.PageStack.closeDialog()` at most once to close/hide + it when in desktop or mobile mode. + + \note: You can also call a closeDialog() method directly on the page to close/hide + it but this behavior is deprecated since 6.18 and replaced with the attached property. + + \a properties The properties given when initializing the page. + + \a windowProperties The properties given to the initialized window on desktop. + + Returns a newly created page. */ function pushDialogLayer(page, properties = {}, windowProperties = {}): QT.Page { if (!pagesLogic.verifyPages(page, properties)) { @@ -249,15 +268,15 @@ QT.Control { return null } let item; - if (Kirigami.Settings.isMobile) { - if (QQC2.ApplicationWindow.window.width > Kirigami.Units.gridUnit * 40) { + if (Platform.Settings.isMobile) { + if (QQC2.ApplicationWindow.window.width > Platform.Units.gridUnit * 40) { // open as a QQC2.Dialog const component = pagesLogic.getMobileDialogLayerComponent(); const dialog = component.createObject(QQC2.Overlay.overlay, { - width: Qt.binding(() => QQC2.ApplicationWindow.window.width - Kirigami.Units.gridUnit * 5), - height: Qt.binding(() => QQC2.ApplicationWindow.window.height - Kirigami.Units.gridUnit * 5), - x: Kirigami.Units.gridUnit * 2.5, - y: Kirigami.Units.gridUnit * 2.5, + width: Qt.binding(() => QQC2.ApplicationWindow.window.width - Platform.Units.gridUnit * 5), + height: Qt.binding(() => QQC2.ApplicationWindow.window.height - Platform.Units.gridUnit * 5), + x: Platform.Units.gridUnit * 2.5, + y: Platform.Units.gridUnit * 2.5, }); if (typeof page === "string") { @@ -282,19 +301,26 @@ QT.Control { // Pushing a PageRow is supported but without PageRow toolbar if (item.globalToolBar && item.globalToolBar.style) { - item.globalToolBar.style = Kirigami.ApplicationHeaderStyle.None + item.globalToolBar.style = KC.ApplicationHeaderStyle.None } Object.defineProperty(item, 'closeDialog', { value: function() { + console.warn("Calling closeDialog is deprecated. Use Kirigami.PageStack.closeDialog instead."); dialog.close(); } }); + (item as Item).KL.PageStack.closeDialog.connect(() => dialog.close()); dialog.open(); } else { // open as a layer + if (root.globalToolBar.style !== KC.ApplicationHeaderStyle.Breadcrumb) { + properties.globalToolBarStyle = root.globalToolBar.style + } item = layers.push(page, properties); + item.KL.PageStack.closeDialog.connect(() => layers.pop()); Object.defineProperty(item, 'closeDialog', { value: function() { + console.warn("Calling closeDialog is deprecated. Use Kirigami.PageStack.closeDialog instead."); layers.pop(); } }); @@ -305,16 +331,16 @@ QT.Control { windowProperties.modality = Qt.WindowModal; } if (!("height" in windowProperties)) { - windowProperties.height = Kirigami.Units.gridUnit * 30; + windowProperties.height = Platform.Units.gridUnit * 30; } if (!("width" in windowProperties)) { - windowProperties.width = Kirigami.Units.gridUnit * 50; + windowProperties.width = Platform.Units.gridUnit * 50; } if (!("minimumWidth" in windowProperties)) { - windowProperties.minimumWidth = Kirigami.Units.gridUnit * 20; + windowProperties.minimumWidth = Platform.Units.gridUnit * 20; } if (!("minimumHeight" in windowProperties)) { - windowProperties.minimumHeight = Kirigami.Units.gridUnit * 15; + windowProperties.minimumHeight = Platform.Units.gridUnit * 15; } if (!("flags" in windowProperties)) { windowProperties.flags = Qt.Dialog | Qt.CustomizeWindowHint | Qt.WindowTitleHint | Qt.WindowCloseButtonHint; @@ -323,31 +349,43 @@ QT.Control { const window = windowComponent.createObject(root, windowProperties); windowComponent.destroy(); item = window.pageStack.push(page, properties); + (item as Item).KL.PageStack.closeDialog.connect(() => window.close()); Object.defineProperty(item, 'closeDialog', { value: function() { + console.warn("Calling closeDialog is deprecated. Use Kirigami.PageStack.closeDialog instead."); window.close(); } }); + window.visibleChanged.connect(() => { + if (!window.visible) { + window.destroy(); + } + }); } + // Escape is considered a shortcut, so we need to override it. Or else we don't get any events! + item.Keys.shortcutOverride.connect(event => event.accepted = (event.key === Qt.Key_Escape)); item.Keys.escapePressed.connect(event => item.closeDialog()); return item; } - /** - * @brief Inserts a new page or a list of new pages at an arbitrary position. - * - * A single page can be defined as an url, a component, or an object. It can - * also be an array of the above said types, but in that case, the - * properties' array length must match pages' array length or it must be - * empty. Failing to comply with the following rules will make the method - * return null before doing anything. - * - * @param page A single page or an array of pages. - * @param properties A single property object or an array of property - * objects. - * - * @return The new created page (or the last one if it was an array). - * @since 2.7 + /*! + \qmlmethod Page PageRow::insertPage(int position, var page, var properties) + + \brief Inserts a new page or a list of new pages at an arbitrary position. + + A single page can be defined as an url, a component, or an object. It can + also be an array of the above said types, but in that case, the + properties' array length must match pages' array length or it must be + empty. Failing to comply with the following rules will make the method + return null before doing anything. + + \a page A single page or an array of pages. + + \a properties A single property object or an array of property + objects. + + Returns the new created page (or the last one if it was an array). + \since 2.7 */ function insertPage(position, page, properties): QT.Page { if (!pagesLogic.verifyPages(page, properties)) { @@ -364,54 +402,66 @@ QT.Control { return pagesLogic.insertPage_unchecked(position, page, properties) } - /** - * Move the page at position fromPos to the new position toPos - * If needed, currentIndex will be adjusted - * in order to keep the same current page. - * @since 2.7 + /*! + \qmlmethod void PageRow::movePage(int fromPos, int toPos) + + Move the page at position fromPos to the new position toPos + If needed, currentIndex will be adjusted + in order to keep the same current page. + \since 2.7 */ function movePage(fromPos, toPos): void { columnView.moveItem(fromPos, toPos); } - /** - * @brief Remove the given page. - * @param page The page can be given both as integer position or by reference - * @return The page that has just been removed - * @since 2.7 + /*! + \qmlmethod Page PageRow::removePage(var page) + + \brief Remove the given page. + + \a page The page can be given both as integer position or by reference + + Returns the page that has just been removed + \since 2.7 */ function removePage(page): QT.Page { if (depth > 0) { - return columnView.removeItem(page); + return columnView.removeItem(page) as QT.Page; } return null } - /** - * @brief Pops a page off the stack. - * @param page If page is specified then the stack is unwound to that page, - * to unwind to the first page specify page as null. - * @return The page instance that was popped off the stack. + /*! + \qmlmethod Page PageRow::pop(var page) + + \brief Pops a page off the stack. + \a page If page is specified then the stack is unwound to that page, + to unwind to the first page specify page as null. + + Returns the page instance that was popped off the stack. */ function pop(page): QT.Page { - return columnView.pop(page); + return columnView.pop(page) as QT.Page; } - /** - * @brief Replaces a page on the current index. - * - * A single page can be defined as an url, a component, or an object. It can - * also be an array of the above said types, but in that case, the - * properties' array length must match pages' array length or it must be - * empty. Failing to comply with the following rules will make the method - * return null before doing anything. - * - * @param page A single page or an array of pages. - * @param properties A single property object or an array of property - * objects. - * - * @return The new created page (or the last one if it was an array). - * @see push() for details. + /*! + \qmlmethod Page PageRow::replace(var page, var properties) + + \brief Replaces a page on the current index. + + A single page can be defined as an url, a component, or an object. It can + also be an array of the above said types, but in that case, the + properties' array length must match pages' array length or it must be + empty. Failing to comply with the following rules will make the method + return null before doing anything. + + \a page A single page or an array of pages. + + \a properties A single property object or an array of property + objects. + + Returns the new created page (or the last one if it was an array). + See push() for details. */ function replace(page, properties): QT.Page { if (!pagesLogic.verifyPages(page, properties)) { @@ -467,25 +517,31 @@ QT.Control { return pageItem; } - /** - * @brief Clears the page stack. - * - * Destroy (or reparent) all the pages contained. + /*! + \qmlmethod void PageRow::clear() + \brief Clears the page stack. + + Destroy (or reparent) all the pages contained. */ function clear(): void { columnView.clear(); } - /** - * @return the page at idx - * @param idx the depth of the page we want + /*! + \qmlmethod Page PageRow::get(int idx) + + \a idx the depth of the page we want + + Returns the page at idx */ function get(idx): QT.Page { return items[idx]; } - /** - * Go back to the previous index and scroll to the left to show one more column. + /*! + \qmlmethod void PageRow::flickBack() + + Go back to the previous index and scroll to the left to show one more column. */ function flickBack(): void { if (depth > 1) { @@ -493,13 +549,15 @@ QT.Control { } } - /** - * Acts as if you had pressed the "back" button on Android or did Alt-Left on desktop, - * "going back" in the layers and page row. Results in a layer being popped if available, - * or the currentIndex being set to currentIndex-1 if not available. - * - * @param event Optional, an event that will be accepted if a page is successfully - * "backed" on + /*! + \qmlmethod void PageRow::goBack(var event = null) + + Acts as if you had pressed the "back" button on Android or did Alt-Left on desktop, + "going back" in the layers and page row. Results in a layer being popped if available, + or the currentIndex being set to currentIndex-1 if not available. + + \a event Optional, an event that will be accepted if a page is successfully + "backed" on */ function goBack(event = null): void { const backEvent = {accepted: false} @@ -536,11 +594,13 @@ QT.Control { } } - /** - * Acts as if you had pressed the "forward" shortcut on desktop, - * "going forward" in the page row. Results in the active page - * becoming the next page in the row from the current active page, - * i.e. currentIndex + 1. + /*! + \qmlmethod void goForward() + + Acts as if you had pressed the "forward" shortcut on desktop, + "going forward" in the page row. Results in the active page + becoming the next page in the row from the current active page, + i.e. currentIndex + 1. */ function goForward(): void { currentIndex = Math.min(depth - 1, currentIndex + 1) @@ -548,26 +608,26 @@ QT.Control { //END FUNCTIONS //BEGIN signals & signal handlers - /** - * @brief Emitted when a page has been inserted anywhere. - * @param position where the page has been inserted - * @param page the new page - * @since 2.7 + /*! + \brief Emitted when a page has been inserted anywhere. + \a position where the page has been inserted + \a page the new page + \since 2.7 */ signal pageInserted(int position, Item page) - /** - * @brief Emitted when a page has been pushed to the bottom. - * @param page the new page - * @since 2.5 + /*! + \brief Emitted when a page has been pushed to the bottom. + \a page the new page + \since 2.5 */ signal pagePushed(Item page) - /** - * @brief Emitted when a page has been removed from the row. - * @param page the page that has been removed: at this point it's still valid, - * but may be auto deleted soon. - * @since 2.5 + /*! + \brief Emitted when a page has been removed from the row. + \a page the page that has been removed: at this point it's still valid, + but may be auto deleted soon. + \since 2.5 */ signal pageRemoved(Item page) @@ -577,12 +637,6 @@ QT.Control { } } - Keys.onReleased: event => { - if (event.key === Qt.Key_Back) { - this.goBack(event) - } - } - onInitialPageChanged: { if (initialPage) { clear(); @@ -604,234 +658,87 @@ QT.Control { Connections { id: modalConnection - target: leftSidebar + target: root.leftSidebar function onModalChanged(): void { - if (leftSidebar.modal) { - const sidebar = sidebarControl.contentItem; - const background = sidebarControl.background; - sidebarControl.contentItem = null; - leftSidebar.contentItem = sidebar; - sidebarControl.background = null; - leftSidebar.background = background; - - sidebar.visible = true; - background.visible = true; + if (root.leftSidebar.modal) { + root.leftSidebar.parent = root.QQC2.Overlay.overlay + root.leftSidebar.background.parent.parent = null } else { - const sidebar = leftSidebar.contentItem - const background = leftSidebar.background - leftSidebar.contentItem=null - sidebarControl.contentItem = sidebar - leftSidebar.background=null - sidebarControl.background = background - - sidebar.visible = true; - background.visible = true; + root.leftSidebar.parent = sidebarControl + root.leftSidebar.background.parent.parent = sidebarControl } } } + // Enforce the parent when we are in sidebar mode + Connections { + enabled: root.leftSidebar && root.leftSidebar.contentItem && !root.leftSidebar.modal + target: root.leftSidebar?.contentItem.parent ?? null + function onParentChanged () { + root.leftSidebar.contentItem.parent.parent = sidebarControl + } + } implicitWidth: contentItem.implicitWidth + leftPadding + rightPadding implicitHeight: contentItem.implicitHeight + topPadding + bottomPadding Shortcut { sequences: [ StandardKey.Back ] - onActivated: goBack() + onActivated: root.goBack() } Shortcut { sequences: [ StandardKey.Forward ] - onActivated: goForward() + onActivated: root.goForward() } Keys.forwardTo: [currentItem] GlobalToolBar.PageRowGlobalToolBarStyleGroup { id: globalToolBar - readonly property int leftReservedSpace: globalToolBarUI.item ? globalToolBarUI.item.leftReservedSpace : 0 - readonly property int rightReservedSpace: globalToolBarUI.item ? globalToolBarUI.item.rightReservedSpace : 0 + readonly property int leftReservedSpace: (globalToolBarUI.item as GlobalToolBar.PageRowGlobalToolBarUI)?.leftReservedSpace ?? 0 + readonly property int rightReservedSpace: (globalToolBarUI.item as GlobalToolBar.PageRowGlobalToolBarUI)?.rightReservedSpace ?? 0 readonly property int height: globalToolBarUI.height - readonly property Item leftHandleAnchor: globalToolBarUI.item ? globalToolBarUI.item.leftHandleAnchor : null - readonly property Item rightHandleAnchor: globalToolBarUI.item ? globalToolBarUI.item.rightHandleAnchor : null - } - - QQC2.StackView { - id: layerToolbarStack - anchors { - left: parent.left - top: parent.top - right: parent.right - } - z: 100 // 100 is layersStack.z + 1 - height: currentItem?.implicitHeight ?? 0 - initialItem: Item {implicitHeight: 0} - - Component { - id: emptyToolbar - Item { - implicitHeight: 0 - } - } - popEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - popExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - pushEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - pushExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - replaceEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - replaceExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - } - - QQC2.StackView { - id: layerFooterStack - anchors { - left: parent.left - bottom: parent.bottom - right: parent.right - } - z: 100 // 100 is layersStack.z + 1 - height: currentItem?.implicitHeight ?? 0 - initialItem: Item {implicitHeight: 0} - - popEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - popExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - pushEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - pushExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - replaceEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } - replaceExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - } + readonly property Item leftHandleAnchor: (globalToolBarUI.item as GlobalToolBar.PageRowGlobalToolBarUI)?.leftHandleAnchor ?? null + readonly property Item rightHandleAnchor: (globalToolBarUI.item as GlobalToolBar.PageRowGlobalToolBarUI)?.rightHandleAnchor ?? null + safeArea: root.SafeArea } QQC2.StackView { id: layersStack z: 99 + Accessible.role: Accessible.Pane anchors { left: parent.left - top: layerToolbarStack.bottom + top: parent.top right: parent.right - bottom: layerFooterStack.top + bottom: parent.bottom + topMargin: depth < 2 + ? globalToolBarUI.height + : currentItem.KL.ColumnView.globalHeader?.height ?? 0 + bottomMargin: currentItem.KL.ColumnView.globalFooter?.height ?? 0 } // placeholder as initial item initialItem: columnViewLayout onDepthChanged: { + if (depth < 2) { + return; + } let item = layersStack.get(depth - 1) + // headers are parented to items in layers, so items can't clip otherwise headers become invisible + item.clip = false - if (layerToolbarStack.depth > depth) { - while (layerToolbarStack.depth > depth) { - layerToolbarStack.pop(); - } - } else if (layerToolbarStack.depth < depth) { - for (let i = layerToolbarStack.depth; i < depth; ++i) { - const toolBar = layersStack.get(i).Kirigami.ColumnView.globalHeader; - layerToolbarStack.push(toolBar || emptyToolbar); - } - } - let toolBarItem = layerToolbarStack.get(layerToolbarStack.depth - 1) - if (item.Kirigami.ColumnView.globalHeader != toolBarItem) { - const toolBar = item.Kirigami.ColumnView.globalHeader; - layerToolbarStack.replace(toolBar ?? emptyToolbar); - } - // WORKAROUND: the second time the transition on opacity doesn't seem to be executed - toolBarItem = layerToolbarStack.get(layerToolbarStack.depth - 1) - toolBarItem.opacity = 1; + // For layers reparent the global header to the page + const header = item.KL.ColumnView.globalHeader + header.parent = item + header.anchors.bottom = item.top + header.anchors.left = item.left + header.anchors.right = item.right - if (layerFooterStack.depth > depth) { - while (layerFooterStack.depth > depth) { - layerFooterStack.pop(); - } - } else if (layerFooterStack.depth < depth) { - for (let i = layerFooterStack.depth; i < depth; ++i) { - const footer = layersStack.get(i).Kirigami.ColumnView.globalFooter; - layerFooterStack.push(footer ?? emptyToolbar); - } - } - let footerItem = layerFooterStack.get(layerFooterStack.depth - 1) - if (item.Kirigami.ColumnView.globalHeader != footerItem) { - const footer = item.Kirigami.ColumnView.globalFooter; - layerFooterStack.replace(footer ?? emptyToolbar); - } - footerItem = layerFooterStack.get(layerFooterStack.depth - 1) - footerItem.opacity = 1; + const footer = item.KL.ColumnView.globalFooter + footer.parent = item + footer.anchors.top = item.bottom + footer.anchors.left = item.left + footer.anchors.right = item.right } function clear(): void { @@ -843,11 +750,12 @@ QT.Control { } popEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic + PauseAnimation { + duration: Platform.Units.longDuration + } + PropertyAction { + property: "opacity" + value: 1 } } popExit: Transition { @@ -855,13 +763,13 @@ QT.Control { OpacityAnimator { from: 1 to: 0 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutCubic } YAnimator { from: 0 to: height/2 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InCubic } } @@ -874,25 +782,23 @@ QT.Control { property: "opacity" from: 0 to: 1 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutCubic } YAnimator { from: height/2 to: 0 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.OutCubic } } } + pushExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic + PauseAnimation { + duration: Platform.Units.longDuration } } @@ -901,13 +807,13 @@ QT.Control { OpacityAnimator { from: 0 to: 1 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutCubic } YAnimator { from: height/2 to: 0 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.OutCubic } } @@ -918,13 +824,13 @@ QT.Control { OpacityAnimator { from: 1 to: 0 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InCubic } YAnimator { from: 0 to: -height/2 - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutCubic } } @@ -940,8 +846,7 @@ QT.Control { } z: 100 property QT.Control pageRow: root - active: (!leadingVisibleItem || leadingVisibleItem.globalToolBarStyle !== Kirigami.ApplicationHeaderStyle.None) && - (globalToolBar.actualStyle !== Kirigami.ApplicationHeaderStyle.None || (leadingVisibleItem && leadingVisibleItem.globalToolBarStyle === Kirigami.ApplicationHeaderStyle.ToolBar)) + active: globalToolBar.actualStyle !== KC.ApplicationHeaderStyle.None || (root.leadingVisibleItem && root.leadingVisibleItem.globalToolBarStyle === KC.ApplicationHeaderStyle.ToolBar) visible: active height: active ? implicitHeight : 0 // If load is asynchronous, it will fail to compute the initial implicitHeight @@ -987,7 +892,7 @@ QT.Control { } } - // check properties obejct/array object validity + // check properties object/array object validity const isProp = typeof properties === 'object'; const propsIsArr = Array.isArray(properties) && properties.length > 0 let isValidPropArr = propsIsArr; @@ -1037,7 +942,7 @@ QT.Control { // initialize the page const pageItem = pagesLogic.initAndInsertPage(position, page, properties); - pagePushed(pageItem); + root.pagePushed(pageItem); return pageItem; } @@ -1080,7 +985,7 @@ QT.Control { } else { // copy properties to the page for (const prop in properties) { - if (properties.hasOwnProperty(prop)) { + if (page.hasOwnProperty(prop)) { page[prop] = properties[prop]; } } @@ -1095,79 +1000,153 @@ QT.Control { } } - RowLayout { - id: columnViewLayout - spacing: 1 - readonly property alias columnView: columnView - anchors { - fill: parent - topMargin: -layersStack.y - } - QQC2.Control { - id: sidebarControl - Layout.fillHeight: true - visible: contentItem !== null - leftPadding: root.leftSidebar ? root.leftSidebar.leftPadding : 0 - topPadding: root.leftSidebar ? root.leftSidebar.topPadding : 0 - rightPadding: root.leftSidebar ? root.leftSidebar.rightPadding : 0 - bottomPadding: root.leftSidebar ? root.leftSidebar.bottomPadding : 0 - } - Kirigami.ColumnView { - id: columnView - Layout.fillWidth: true - Layout.fillHeight: true + Item { + Item { + id: columnViewLayout + anchors { + fill: parent + // Use this instead Layout.topMargin in RowLayout seems to be unreliable + topMargin: -layersStack.y + } + readonly property alias columnView: columnView + // set the pagestack of this and all children to root, otherwise + // they would automatically resolve to the layer's stackview + KL.PageStack.pageStack: root - topPadding: globalToolBarUI.item && globalToolBarUI.item.breadcrumbVisible - ? globalToolBarUI.height : 0 + Item { + id: sidebarControl + anchors { + left: parent.left + top: parent.top + bottom: parent.bottom + } + transform: Translate { + x: root.mirrored ? -sidebarControl.Primitives.ScenePosition.x : 0 + } + z: 1 + width: visible ? root.leftSidebar.width * root.leftSidebar.position : 0 + // Using leftSidebar.position instead of visible because leftSidebar.visible depends from its main item visibility which is our child so would be a loop + visible: root.leftSidebar && children.length > 0 + } - // Internal hidden api for Page - readonly property Item __pageRow: root - acceptsMouse: Kirigami.Settings.isMobile - columnResizeMode: root.wideMode ? Kirigami.ColumnView.FixedColumns : Kirigami.ColumnView.SingleColumn - columnWidth: root.defaultColumnWidth - interactive: Qt.platform.os !== 'android' + KL.ColumnView { + id: columnView + anchors { + left: sidebarControl.right + top: parent.top + right: parent.right + bottom: parent.bottom + } - onItemInserted: (position, item) => root.pageInserted(position, item); - onItemRemoved: item => root.pageRemoved(item); + topPadding: (globalToolBarUI.item as GlobalToolBar.PageRowGlobalToolBarUI)?.breadcrumbVisible + ? globalToolBarUI.height : 0 - onVisibleItemsChanged: { - // implementation of `popHiddenPages` option - if (root.popHiddenPages) { - // manually fetch lastItem here rather than use root.lastItem property, since that binding may not have updated yet - let lastItem = columnView.contentChildren[columnView.contentChildren.length - 1]; - let trailingVisibleItem = columnView.trailingVisibleItem; + Component { + id: pageTranslation + Translate { + id: transitionTransform + required property Item page + property bool wasDragging + readonly property bool active: columnView.moving + && columnView.columnResizeMode === KL.ColumnView.SingleColumn + && page.background + && (page.background?.color.a === 1 ?? true) + && (columnView.trailingVisibleItem?.background ?? false) + && (columnView.trailingVisibleItem?.background?.color.a === 1 ?? true) + readonly property real progress: Math.max(-1, Math.min(1, (page.x - columnView.contentX) / columnView.width)) + x: { + if (!active) { + return 0; + } - // pop every page that isn't visible and at the top of the stack - while (lastItem && columnView.trailingVisibleItem && - lastItem !== columnView.trailingVisibleItem && columnView.containsItem(lastItem)) { - root.pop(); + const animDistance = Platform.Units.gridUnit * 4; + if (!wasDragging && Math.abs(progress) > 1e-9) { + // Cancel the natural full‑width slide and add a partial offset + return (columnView.contentX - page.x) + animDistance * progress; + } + return 0; + } + + // Opacity binding: crossfade both pages. + // Fade out when being pushed away, fade in when returning from pop. + component OpacityBinding: Binding { + target: transitionTransform.page + property: "opacity" + value: { + if (transitionTransform.wasDragging || !transitionTransform.active) { + return 1; + } + var animProgress = transitionTransform.progress; + if (animProgress > 0) { + return 1 - Math.min(1, animProgress); + } else if (animProgress < 0) { + return 1 + Math.min(1, animProgress); + } + return 1; + } + } + // NOTE: We use list here instead of list to work around QTBUG-144092 + readonly property list __opacityBindings: [ + OpacityBinding { + target: transitionTransform.page + }, + OpacityBinding { + target: transitionTransform.page.KL.ColumnView.globalHeader + }, + OpacityBinding { + target: transitionTransform.page.KL.ColumnView.globalFooter + } + ] + readonly property Connections __draggingConnection: Connections { + target: columnView + function onMovingChanged() { + if (columnView.moving) { + if (columnView.dragging) { + transitionTransform.wasDragging = true; + } + } else { + transitionTransform.wasDragging = false; + } + } + } + } + } + + // Internal hidden api for Page + readonly property Item __pageRow: root + acceptsMouse: Platform.Settings.isMobile + columnResizeMode: root.wideMode ? KL.ColumnView.FixedColumns : KL.ColumnView.SingleColumn + columnWidth: root.defaultColumnWidth + interactive: Qt.platform.os !== 'android' + + onItemInserted: (position, item) => { + item.transform = pageTranslation.createObject(item, {page: item}); + item.KL.ColumnView.globalHeader.transform = item.transform; + item.KL.ColumnView.globalFooter.transform = item.transform; + root.pageInserted(position, item); + } + onItemRemoved: item => { + item.transform = null; + item.KL.ColumnView.globalHeader.transform = null; + item.KL.ColumnView.globalFooter.transform = null; + root.pageRemoved(item); + } + + onVisibleItemsChanged: { + // implementation of `popHiddenPages` option + if (root.popHiddenPages) { + // manually fetch lastItem here rather than use root.lastItem property, since that binding may not have updated yet + let lastItem = columnView.contentChildren[columnView.contentChildren.length - 1]; + let trailingVisibleItem = columnView.trailingVisibleItem; + + // pop every page that isn't visible and at the top of the stack + while (lastItem && columnView.trailingVisibleItem && + lastItem !== columnView.trailingVisibleItem && columnView.containsItem(lastItem)) { + root.pop(); + } } } } } } - - Rectangle { - anchors.bottom: parent.bottom - height: Kirigami.Units.smallSpacing - x: (columnView.width - width) * (columnView.contentX / (columnView.contentWidth - columnView.width)) - width: columnView.width * (columnView.width/columnView.contentWidth) - color: Kirigami.Theme.textColor - opacity: 0 - onXChanged: { - opacity = 0.3 - scrollIndicatorTimer.restart(); - } - Behavior on opacity { - OpacityAnimator { - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutQuad - } - } - Timer { - id: scrollIndicatorTimer - interval: Kirigami.Units.longDuration * 4 - onTriggered: parent.opacity = 0; - } - } } diff --git a/local/recipes/kde/kirigami/source/src/controls/PasswordField.qml b/local/recipes/kde/kirigami/source/src/controls/PasswordField.qml index bc3e837c40..c70ec587a0 100644 --- a/local/recipes/kde/kirigami/source/src/controls/PasswordField.qml +++ b/local/recipes/kde/kirigami/source/src/controls/PasswordField.qml @@ -5,43 +5,44 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC -/** - * @brief This is a standard password text field. - * - * Example usage: - * @code{.qml} - * import org.kde.kirigami as Kirigami - * - * Kirigami.PasswordField { - * id: passwordField - * onAccepted: { - * // check if passwordField.text is valid - * } - * } - * @endcode - * - * @inherit org::kde::kirgami::ActionTextField - * @since 5.57 - * @author Carl Schwan +/*! + \qmltype PasswordField + \inqmlmodule org.kde.kirigami + + \brief This is a standard password text field. + + Example usage: + \code + import org.kde.kirigami as Kirigami + + Kirigami.PasswordField { + id: passwordField + onAccepted: { + // check if passwordField.text is valid + } + } + \endcode + + \since 5.57 */ -Kirigami.ActionTextField { +KC.ActionTextField { id: root - /** - * @brief This property tells whether the password will be displayed in cleartext rather than obfuscated. - * - * default: ``false`` - * - * @since 5.57 + /*! + \brief This property tells whether the password will be displayed in cleartext rather than obfuscated. + + default: \c false + + \since 5.57 */ property bool showPassword: false echoMode: root.showPassword ? TextInput.Normal : TextInput.Password placeholderText: qsTr("Password") inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText | Qt.ImhSensitiveData - rightActions: Kirigami.Action { + rightActions: KC.Action { text: root.showPassword ? qsTr("Hide Password") : qsTr("Show Password") icon.name: root.showPassword ? "password-show-off" : "password-show-on" onTriggered: root.showPassword = !root.showPassword diff --git a/local/recipes/kde/kirigami/source/src/controls/PlaceholderMessage.qml b/local/recipes/kde/kirigami/source/src/controls/PlaceholderMessage.qml index eac747b75f..35d40dd620 100644 --- a/local/recipes/kde/kirigami/source/src/controls/PlaceholderMessage.qml +++ b/local/recipes/kde/kirigami/source/src/controls/PlaceholderMessage.qml @@ -7,118 +7,124 @@ import QtQuick import QtQuick.Layouts import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami -import "private" as P +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives -/** - * @brief A placeholder message indicating that a view is empty. - * - * The message comprises a label with text, an optional explanation below the main text, - * an optional icon above all the text, and an optional button below all the text which - * can be used to easily show the user what to do next to add content to the view. - * - * The explanatory text is selectable and can contain clickable links. In this latter - * case, client code must implement an ``onLinkactivated:`` signal handler or the links - * will not work. - * - * The top-level component is a ColumnLayout, so additional components items can - * simply be added as child items and they will be positioned sanely. - * - * Example usage: - * @code{.qml} - ** used as a "this view is empty" message - * import org.kde.kirigami as Kirigami - * - * ListView { - * id: listView - * model: [...] - * delegate: [...] - * - * Kirigami.PlaceholderMessage { - * anchors.centerIn: parent - * width: parent.width - (Kirigami.Units.largeSpacing * 4) - * - * visible: listView.count === 0 - * - * text: "There are no items in this list" - * } - * } - * @endcode - * @code{.qml} - ** Used as a "here's how to proceed" message - * import org.kde.kirigami as Kirigami - * - * ListView { - * id: listView - * model: [...] - * delegate: [...] - * - * Kirigami.PlaceholderMessage { - * anchors.centerIn: parent - * width: parent.width - (Kirigami.Units.largeSpacing * 4) - * - * visible: listView.count === 0 - * - * text: "Add an item to proceed" - * - * helpfulAction: Kirigami.Action { - * icon.name: "list-add" - * text: "Add item..." - * onTriggered: { - * [...] - * } - * } - * } - * [...] - * } - * @endcode - * @code{.qml} - ** Used as a "there was a problem here" message - * import org.kde.kirigami as Kirigami - * - * Kirigami.Page { - * id: root - * readonly property bool networkConnected: [...] - * - * Kirigami.PlaceholderMessage { - * anchors.centerIn: parent - * width: parent.width - (Kirigami.Units.largeSpacing * 4) - * - * visible: root.networkConnected - * - * icon.name: "network-disconnect" - * text: "Unable to load content" - * explanation: "Please try again later." - * " Visit Qt.openUrlExternally(link) - * } - * } - * @endcode - * @code{.qml} - * import org.kde.kirigami as Kirigami - * - ** Used as a "Here's what you do next" button - * Kirigami.Page { - * id: root - * - * Kirigami.PlaceholderMessage { - * anchors.centerIn: parent - * width: parent.width - (Kirigami.Units.largeSpacing * 4) - * - * visible: root.loading - * - * helpfulAction: Kirigami.Action { - * icon.name: "list-add" - * text: "Add item..." - * onTriggered: { - * [...] - * } - * } - * } - * } - * @endcode - * @inherit QtQuick.Layouts.ColumnLayout - * @since 2.12 +/*! + \qmltype PlaceholderMessage + \inqmlmodule org.kde.kirigami + + \brief A placeholder message indicating that a view is empty. + + The message comprises a label with text, an optional explanation below the main text, + an optional icon above all the text, and an optional button below all the text which + can be used to easily show the user what to do next to add content to the view. + + The explanatory text is selectable and can contain clickable links. In this latter + case, client code must implement an \c onLinkactivated: signal handler or the links + will not work. + + The top-level component is a ColumnLayout, so additional components items can + simply be added as child items and they will be positioned sanely. + + Example usage: + + Used as a "this view is empty" message: + \qml + import org.kde.kirigami as Kirigami + + ListView { + id: listView + model: [...] + delegate: [...] + + Kirigami.PlaceholderMessage { + anchors.centerIn: parent + width: parent.width - (Kirigami.Units.largeSpacing * 4) + + visible: listView.count === 0 + + text: "There are no items in this list" + } + } + \endqml + + Used as a "here's how to proceed" message: + \qml + import org.kde.kirigami as Kirigami + + ListView { + id: listView + model: [...] + delegate: [...] + + Kirigami.PlaceholderMessage { + anchors.centerIn: parent + width: parent.width - (Kirigami.Units.largeSpacing * 4) + + visible: listView.count === 0 + + text: "Add an item to proceed" + + helpfulAction: Kirigami.Action { + icon.name: "list-add" + text: "Add item..." + onTriggered: { + [...] + } + } + } + [...] + } + \endqml + + Used as a "there was a problem here" message: + \qml + import org.kde.kirigami as Kirigami + + Kirigami.Page { + id: root + readonly property bool networkConnected: [...] + + Kirigami.PlaceholderMessage { + anchors.centerIn: parent + width: parent.width - (Kirigami.Units.largeSpacing * 4) + + visible: root.networkConnected + + icon.name: "network-disconnect" + text: "Unable to load content" + explanation: "Please try again later." + " Visit Qt.openUrlExternally(link) + } + } + \endqml + + Used as a "Here's what you do next" button: + \qml + import org.kde.kirigami as Kirigami + + Kirigami.Page { + id: root + + Kirigami.PlaceholderMessage { + anchors.centerIn: parent + width: parent.width - (Kirigami.Units.largeSpacing * 4) + + visible: root.loading + + helpfulAction: Kirigami.Action { + icon.name: "list-add" + text: "Add item..." + onTriggered: { + [...] + } + } + } + } + \endqml */ ColumnLayout { id: root @@ -129,97 +135,111 @@ ColumnLayout { } //BEGIN properties - /** - * @brief This property holds the PlaceholderMessage type. - * - * The type of the message. This can be: - * * ``Kirigami.PlaceholderMessage.Type.Actionable``: Makes it more attention-getting. Useful when the user is expected to interact with the message. - * * ``Kirigami.PlaceholderMessage.Type.Informational``: Makes it less prominent. Useful when the message in only informational. - * - * default: `if a helpfulAction is provided this will be of type Actionable otherwise of type Informational.` - * - * @since 5.94 + /*! + \qmlproperty enumeration PlaceholderMessage::type + + \brief This property holds the PlaceholderMessage type. + + The type of the message. This can be: + \list + \li Kirigami.PlaceholderMessage.Type.Actionable: Makes it more attention-getting. Useful when the user is expected to interact with the message. + \li Kirigami.PlaceholderMessage.Type.Informational: Makes it less prominent. Useful when the message in only informational. + \endlist + default: if a helpfulAction is provided this will be of type Actionable otherwise of type Informational. + + \since 5.94 */ property int type: actionButton.action?.enabled ? PlaceholderMessage.Type.Actionable : PlaceholderMessage.Type.Informational - /** - * @brief This property holds the text to show in the placeholder label. - * - * Optional; if not defined, the message will have no large text label - * text. If both text: and explanation: are omitted, the message will have - * no text and only an icon, action button, and/or other custom content. - * - * @since 5.70 + /*! + \brief This property holds the text to show in the placeholder label. + + Optional; if not defined, the message will have no large text label + text. If both text and explanation are omitted, the message will have + no text and only an icon, action button, and/or other custom content. + + \since 5.70 */ property string text - /** - * @brief This property holds the smaller explanatory text to show below the larger title-style text - * - * Useful for providing a user-friendly explanation on how to proceed. - * - * Optional; if not defined, the message will have no supplementary - * explanatory text. - * - * @since 5.80 + /*! + \brief This property holds the smaller explanatory text to show below the larger title-style text + + Useful for providing a user-friendly explanation on how to proceed. + + Optional; if not defined, the message will have no supplementary + explanatory text. + + \since 5.80 */ property string explanation - /** - * @brief This property provides an icon to display above the top text label. - * @note It accepts ``icon.name`` and ``icon.source`` to set the icon source. - * It is suggested to use ``icon.name``. - * - * Optional; if undefined, the message will have no icon. - * Falls back to `undefined` if the specified icon is not valid or cannot - * be loaded. - * - * @see org::kde::kirigami::private::ActionIconGroup - * @since 5.70 + /*! + \qmlproperty string PlaceholderMessage::icon.name + \qmlproperty string PlaceholderMessage::icon.source + \qmlproperty int PlaceholderMessage::icon.width + \qmlproperty int PlaceholderMessage::icon.height + \qmlproperty color PlaceholderMessage::icon.color + + \brief This property provides an icon to display above the top text label. + + \note It accepts icon.name and icon.source to set the icon source. + It is suggested to use icon.name. + + Optional; if undefined, the message will have no icon. + Falls back to \c undefined if the specified icon is not valid or cannot + be loaded. + + \since 5.70 */ - readonly property P.ActionIconGroup icon: P.ActionIconGroup { - width: Math.round(Kirigami.Units.iconSizes.huge * 1.5) - height: Math.round(Kirigami.Units.iconSizes.huge * 1.5) - color: Kirigami.Theme.textColor + property Primitives.IconPropertiesGroup icon: Primitives.IconPropertiesGroup { + width: Math.round(Platform.Units.iconSizes.huge * 1.5) + height: Math.round(Platform.Units.iconSizes.huge * 1.5) + color: Platform.Theme.textColor } - /** - * @brief This property holds an action that helps the user proceed. - * - * Typically used to guide the user to the next step for adding - * content or items to an empty view. - * - * Optional; if undefined, no button will appear below the text label. - * - * @property QtQuick.Controls.Action helpfulAction - * @since 5.70 + /*! + \qmlproperty QtQuick.Controls.Action PlaceholderMessage::helpfulAction + + \brief This property holds an action that helps the user proceed. + + Typically used to guide the user to the next step for adding + content or items to an empty view. + + Optional; if undefined, no button will appear below the text label. + + \since 5.70 */ property alias helpfulAction: actionButton.action - /** - * This property holds the link embedded in the explanatory message text that - * the user is hovering over. + /*! + \qmlproperty string PlaceholderMessage::hoveredLink + + This property holds the link embedded in the explanatory message text that + the user is hovering over. */ readonly property alias hoveredLink: label.hoveredLink - /** - * This signal is emitted when a link is hovered in the explanatory message - * text. - * @param The hovered link. + /*! + This signal is emitted when a link is hovered in the explanatory message + text. + + \a link The hovered link. */ signal linkHovered(string link) - /** - * This signal is emitted when a link is clicked or tapped in the explanatory - * message text. - * @param The clicked or tapped link. + /*! + This signal is emitted when a link is clicked or tapped in the explanatory + message text. + + \a link The clicked or tapped link. */ signal linkActivated(string link) //END properties - spacing: Kirigami.Units.largeSpacing + spacing: Platform.Units.largeSpacing Component.onCompleted: _announce(); onVisibleChanged: { @@ -236,9 +256,9 @@ ColumnLayout { } } - Kirigami.Icon { + Primitives.Icon { visible: source !== undefined - opacity: root.type === PlaceholderMessage.Type.Actionable ? 1 : 0.5 + opacity: root.type === PlaceholderMessage.Type.Actionable ? 1 : 0.75 Layout.alignment: Qt.AlignHCenter Layout.preferredWidth: root.icon.width @@ -247,7 +267,7 @@ ColumnLayout { color: root.icon.color source: { - if (root.icon.source.length > 0) { + if (root.icon.source?.length > 0) { return root.icon.source } else if (root.icon.name.length > 0) { return root.icon.name @@ -256,30 +276,30 @@ ColumnLayout { } } - Kirigami.Heading { + KC.Heading { text: root.text visible: text.length > 0 - type: Kirigami.Heading.Primary - opacity: root.type === PlaceholderMessage.Type.Actionable ? 1 : 0.65 + type: KC.Heading.Primary + opacity: root.type === PlaceholderMessage.Type.Actionable ? 1 : 0.75 Layout.fillWidth: true horizontalAlignment: Qt.AlignHCenter verticalAlignment: Qt.AlignVCenter - wrapMode: Text.WordWrap + wrapMode: Text.Wrap } - Kirigami.SelectableLabel { + KC.SelectableLabel { id: label text: root.explanation visible: root.explanation.length > 0 - opacity: root.type === PlaceholderMessage.Type.Actionable ? 1 : 0.65 + opacity: root.type === PlaceholderMessage.Type.Actionable ? 1 : 0.75 horizontalAlignment: Qt.AlignHCenter - wrapMode: Text.WordWrap + wrapMode: Text.Wrap Layout.fillWidth: true @@ -291,7 +311,9 @@ ColumnLayout { id: actionButton Layout.alignment: Qt.AlignHCenter - Layout.topMargin: Kirigami.Units.gridUnit + Layout.topMargin: Platform.Units.gridUnit + Layout.maximumWidth: implicitWidth + Layout.fillWidth: true visible: action?.enabled ?? false } diff --git a/local/recipes/kde/kirigami/source/src/controls/ScrollablePage.qml b/local/recipes/kde/kirigami/source/src/controls/ScrollablePage.qml index 05595dcea2..a519d5468a 100644 --- a/local/recipes/kde/kirigami/source/src/controls/ScrollablePage.qml +++ b/local/recipes/kde/kirigami/source/src/controls/ScrollablePage.qml @@ -3,127 +3,148 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQml import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform import org.kde.kirigami.templates as KT import "private" // TODO KF6: undo many workarounds to make existing code work? -/** - * @brief ScrollablePage is a Page that holds scrollable content, such as a ListView. - * - * Scrolling and scrolling indicators will be automatically managed. - * - * Example usage: - * @code - * ScrollablePage { - * id: root - * // The page will automatically be scrollable - * Rectangle { - * width: root.width - * height: 99999 - * } - * } - * @endcode - * - * @warning Do not put a ScrollView inside of a ScrollablePage; children of a ScrollablePage are already inside a ScrollView. - * - * Another behavior added by this class is a "scroll down to refresh" behavior - * It also can give the contents of the flickable to have more top margins in order - * to make possible to scroll down the list to reach it with the thumb while using the - * phone with a single hand. - * - * Implementations should handle the refresh themselves as follows - * - * Example usage: - * @code - * Kirigami.ScrollablePage { - * id: view - * supportsRefreshing: true - * onRefreshingChanged: { - * if (refreshing) { - * myModel.refresh(); - * } - * } - * ListView { - * // NOTE: MyModel doesn't come from the components, - * // it's purely an example on how it can be used together - * // some application logic that can update the list model - * // and signals when it's done. - * model: MyModel { - * onRefreshDone: view.refreshing = false; - * } - * delegate: ItemDelegate {} - * } - * } - * [...] - * @endcode +/*! + \qmltype ScrollablePage + \inqmlmodule org.kde.kirigami + + \brief ScrollablePage is a Page that holds scrollable content, such as a ListView. + + Scrolling and scrolling indicators will be automatically managed. + + Example usage: + \code + ScrollablePage { + id: root + // The page will automatically be scrollable + Rectangle { + width: root.width + height: 99999 + } + } + \endcode + + \warning Do not put a ScrollView inside of a ScrollablePage; children of a ScrollablePage are already inside a ScrollView. + + Another behavior added by this class is a "scroll down to refresh" behavior + It also can give the contents of the flickable to have more top margins in order + to make possible to scroll down the list to reach it with the thumb while using the + phone with a single hand. + + Implementations should handle the refresh themselves as follows. + + Example usage: + \code + Kirigami.ScrollablePage { + id: view + supportsRefreshing: true + onRefreshingChanged: { + if (refreshing) { + myModel.refresh(); + } + } + ListView { + // NOTE: MyModel doesn't come from the components, + // it's purely an example on how it can be used together + // some application logic that can update the list model + // and signals when it's done. + model: MyModel { + onRefreshDone: view.refreshing = false; + } + delegate: ItemDelegate {} + } + } + [...] + \endcode */ -Kirigami.Page { +KC.Page { id: root //BEGIN properties - /** - * @brief This property tells whether the list is asking for a refresh. - * - * This property will automatically be set to true when the user pulls the list down enough, - * which in return, shows a loading spinner. When this is set to true, it signals - * the application logic to start its refresh procedure. - * - * default: ``false`` - * - * @note The application itself will have to set back this property to false when done. + /*! + \brief This property tells whether the list is asking for a refresh. + + This property will automatically be set to true when the user pulls the list down enough, + which in return, shows a loading spinner. When this is set to true, it signals + the application logic to start its refresh procedure. + + default: \c false + + \note The application itself will have to set back this property to false when done. */ property bool refreshing: false - /** - * @brief This property sets whether scrollable page supports "pull down to refresh" behaviour. - * - * default: ``false`` + /*! + \brief This property sets whether scrollable page supports "pull down to refresh" behaviour. + + default: \c false */ property bool supportsRefreshing: false - /** - * @brief This property holds the main Flickable item of this page. - * @deprecated here for compatibility; will be removed in KF6. + /*! + \brief This property holds the main Flickable item of this page. + + here for compatibility; will be removed in KF6. + + \deprecated */ property Flickable flickable: Flickable {} // FIXME KF6: this empty flickable exists for compatibility reasons. some apps assume flickable exists right from the beginning but ScrollView internally assumes it does not onFlickableChanged: scrollView.contentItem = flickable; - /** - * @brief This property sets the vertical scrollbar policy. - * @property Qt::ScrollBarPolicy verticalScrollBarPolicy + /*! + \brief This property sets the vertical scrollbar policy. + + \sa Qt.ScrollBarPolicy + + Possible values: + \value QQC2.ScrollBar.AsNeeded The scroll bar is only shown when the content is too large to fit. + \value QQC2.ScrollBar.AlwaysOff The scroll bar is never shown. + \value QQC2.ScrollBar.AlwaysOn The scroll bar is always shown. */ property int verticalScrollBarPolicy - /** - * @brief Set if the vertical scrollbar should be interactable. - * @property bool verticalScrollBarInteractive + /*! + \brief Set if the vertical scrollbar should be interactable. */ property bool verticalScrollBarInteractive: true - /** - * @brief This property sets the horizontal scrollbar policy. - * @property Qt::ScrollBarPolicy horizontalScrollBarPolicy + /*! + \brief This property sets the horizontal scrollbar policy. + + \sa Qt::ScrollBarPolicy + + Possible values: + \value QQC2.ScrollBar.AsNeeded The scroll bar is only shown when the content is too large to fit. + \value QQC2.ScrollBar.AlwaysOff The scroll bar is never shown. + \value QQC2.ScrollBar.AlwaysOn The scroll bar is always shown. + + The default value is ScrollBar.AlwaysOff */ property int horizontalScrollBarPolicy: QQC2.ScrollBar.AlwaysOff - /** - * @brief Set if the horizontal scrollbar should be interactable. - * @property bool horizontalScrollBarInteractive + /*! + \brief Set if the horizontal scrollbar should be interactable. */ property bool horizontalScrollBarInteractive: true default property alias scrollablePageData: itemsParent.data property alias scrollablePageChildren: itemsParent.children - /* - * @deprecated here for compatibility; will be removed in KF6. + /*! + \deprecated + here for compatibility; will be removed in KF6. */ property QtObject mainItem onMainItemChanged: { @@ -131,18 +152,77 @@ Kirigami.Page { scrollablePageData.push(mainItem); } - /** - * @brief This property sets whether it is possible to navigate the items in a view that support it. - * - * If true, and if flickable is an item view (e.g. ListView, GridView), it will be possible - * to navigate the view current items with keyboard up/down arrow buttons. - * Also, any key event will be forwarded to the current list item. - * - * default: ``true`` + /*! + \brief This property sets whether it is possible to navigate the items in a view that support it. + + If true, and if flickable is an item view (e.g. ListView, GridView), it will be possible + to navigate the view current items with keyboard up/down arrow buttons. + Also, any key event will be forwarded to the current list item. + + default: \c true */ property bool keyboardNavigationEnabled: true //END properties +//BEGIN FUNCTIONS +/*! + This method checks whether a particular child item is in view, and scrolls + the page to center the item if it is not. + + If the page is a View, the view should handle this by itself, but if the page is a + manually handled layout, this needs to be done manually. Otherwise, if the user + passes focus to an item with e.g. keyboard navigation, this may be outside the + visible area. + + When called, this method will place the visible area such that the item at the + center if any part of it is currently outside. If the item is larger than the viewable + area in either direction, the area will be scrolled such that the top left corner + is visible. + + \qml + Kirigami.ScrollablePage { + id: page + ColumnLayout { + Repeater { + model: 100 + delegate: QQC2.Button { + text: modelData + onFocusChanged: if (focus) page.ensureVisible(this) + } + } + } + } + \endqml + + \a item The item that should be in the visible area of the flickable. Item coordinates need to be in the flickable's coordinate system. + + \a xOffset (optional) Offsets to align the item's and the flickable's coordinate system + + \a yOffset (optional) Offsets to align the item's and the flickable's coordinate system + */ + function ensureVisible(item: Item, xOffset: int, yOffset: int) { + var actualItemX = item.x + (xOffset ?? 0) + var actualItemY = item.y + (yOffset ?? 0) + var viewXPosition = (item.width <= root.flickable.width) + ? Math.round(actualItemX + item.width / 2 - root.flickable.width / 2) + : actualItemX + var viewYPosition = (item.height <= root.flickable.height) + ? Math.round(actualItemY + item.height / 2 - root.flickable.height / 2) + : actualItemY + if (actualItemX < root.flickable.contentX) { + root.flickable.contentX = Math.max(0, viewXPosition) + } else if ((actualItemX + item.width) > (root.flickable.contentX + root.flickable.width)) { + root.flickable.contentX = Math.min(root.flickable.contentWidth - root.flickable.width, viewXPosition) + } + if (actualItemY < root.flickable.contentY) { + root.flickable.contentY = Math.max(0, viewYPosition) + } else if ((actualItemY + item.height) > (root.flickable.contentY + root.flickable.height)) { + root.flickable.contentY = Math.min(root.flickable.contentHeight - root.flickable.height, viewYPosition) + } + root.flickable.returnToBounds() + } +//END FUNCTIONS + implicitWidth: flickable?.contentItem?.implicitWidth ?? Math.max(implicitBackgroundWidth + leftInset + rightInset, contentWidth + leftPadding + rightPadding, @@ -156,8 +236,8 @@ Kirigami.Page { contentHeight: flickable?.contentHeight ?? 0 - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: flickable?.hasOwnProperty("model") ? Kirigami.Theme.View : Kirigami.Theme.Window + Platform.Theme.inherit: false + Platform.Theme.colorSet: flickable?.hasOwnProperty("model") ? Platform.Theme.View : Platform.Theme.Window Keys.forwardTo: { if (root.keyboardNavigationEnabled && root.flickable) { @@ -194,23 +274,10 @@ Kirigami.Page { id: scrollingArea width: root.horizontalScrollBarPolicy === QQC2.ScrollBar.AlwaysOff ? root.flickable.width : Math.max(root.flickable.width, implicitWidth) height: Math.max(root.flickable.height, implicitHeight) - implicitWidth: { - let implicit = 0; - for (const child of itemsParent.visibleChildren) { - if (child.implicitWidth <= 0) { - implicit = Math.max(implicit, child.width); - } else { - implicit = Math.max(implicit, child.implicitWidth); - } - } - return implicit + itemsParent.anchors.leftMargin + itemsParent.anchors.rightMargin; - } implicitHeight: { let implicit = 0; for (const child of itemsParent.visibleChildren) { - if (child.implicitHeight <= 0) { - implicit = Math.max(implicit, child.height); - } else { + if (child.implicitHeight > 0) { implicit = Math.max(implicit, child.implicitHeight); } } @@ -247,6 +314,7 @@ Kirigami.Page { sourceComponent: PullDownIndicator { parent: root active: root.refreshing + refreshing: root.refreshing onTriggered: root.refreshing = true } } @@ -297,7 +365,6 @@ Kirigami.Page { scrollingArea.parent = root.flickable.contentItem; scrollingArea.visible = true; root.flickable.contentHeight = Qt.binding(() => scrollingArea.implicitHeight - root.flickable.topMargin - root.flickable.bottomMargin); - root.flickable.contentWidth = Qt.binding(() => scrollingArea.implicitWidth); scrollView.forceActiveFocus(Qt.TabFocusReason); // QTBUG-44043 : Focus on currentItem instead of pageStack itself } root.flickable.flickableDirection = Flickable.VerticalFlick; diff --git a/local/recipes/kde/kirigami/source/src/controls/SearchField.qml b/local/recipes/kde/kirigami/source/src/controls/SearchField.qml index 1e4d2d282d..46d26246f9 100644 --- a/local/recipes/kde/kirigami/source/src/controls/SearchField.qml +++ b/local/recipes/kde/kirigami/source/src/controls/SearchField.qml @@ -6,78 +6,80 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives + +/*! + \qmltype SearchField + \inqmlmodule org.kde.kirigami + + \brief Standard TextField following the KDE HIG. + + By default uses Ctrl+F as the focus keyboard shortcut and "Search…" as a placeholder text. + + Example usage for the search field component: + \code + import org.kde.kirigami as Kirigami + + Kirigami.SearchField { + id: searchField + onAccepted: console.log("Search text is " + searchField.text) + } + \endcode -/** - * @brief This is a standard TextField following the KDE HIG, which, by default, - * uses Ctrl+F as the focus keyboard shortcut and "Search…" as a placeholder text. - * - * Example usage for the search field component: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.SearchField { - * id: searchField - * onAccepted: console.log("Search text is " + searchField.text) - * } - * @endcode - * - * @inherit org::kde::kirigami::ActionTextField */ -Kirigami.ActionTextField { +KC.ActionTextField { id: root - /** - * @brief This property sets whether the accepted signal is fired automatically - * when the text is changed. - * - * Setting this to false will require that the user presses return or enter - * (the same way a QtQuick.Controls.TextInput works). - * - * default: ``true`` - * - * @since 5.81 - * @since org.kde.kirigami 2.16 + /*! + \brief This property sets whether the accepted signal is fired automatically + when the text is changed. + + Setting this to false will require that the user presses return or enter + (the same way a TextInput works). + + default: \c true + + \since 5.81 */ property bool autoAccept: true - /** - * @brief This property sets whether to delay automatic acceptance of the search input. - * - * Set this to true if your search is expensive (such as for online - * operations or in exceptionally slow data sets) and want to delay it - * for 2.5 seconds. - * - * @note If you must have immediate feedback (filter-style), use the - * text property directly instead of accepted() - * - * default: ``false`` - * - * @since 5.81 - * @since org.kde.kirigami 2.16 + /*! + \brief This property sets whether to delay automatic acceptance of the search input. + + Set this to true if your search is expensive (such as for online + operations or in exceptionally slow data sets) and want to delay it + for 2.5 seconds. + + \note If you must have immediate feedback (filter-style), use the + text property directly instead of accepted() + + default: \c false + + \since 5.81 */ property bool delaySearch: false // padding to accommodate search icon nicely - leftPadding: if (effectiveHorizontalAlignment === TextInput.AlignRight) { - return _rightActionsRow.width + Kirigami.Units.smallSpacing + leftPadding: if (Application.layoutDirection === Qt.RightToLeft) { + return _rightActionsRow.width + Platform.Units.smallSpacing } else { - return searchIcon.width + Kirigami.Units.smallSpacing * 3 + return searchIcon.width + Platform.Units.smallSpacing * 3 } - rightPadding: if (effectiveHorizontalAlignment === TextInput.AlignRight) { - return searchIcon.width + Kirigami.Units.smallSpacing * 3 + rightPadding: if (Application.layoutDirection === Qt.RightToLeft) { + return searchIcon.width + Platform.Units.smallSpacing * 3 } else { - return _rightActionsRow.width + Kirigami.Units.smallSpacing + return _rightActionsRow.width + Platform.Units.smallSpacing } - Kirigami.Icon { + Primitives.Icon { id: searchIcon - LayoutMirroring.enabled: root.effectiveHorizontalAlignment === TextInput.AlignRight anchors.left: root.left - anchors.leftMargin: Kirigami.Units.smallSpacing * 2 + anchors.leftMargin: Platform.Units.smallSpacing * 2 anchors.verticalCenter: root.verticalCenter anchors.verticalCenterOffset: Math.round((root.topPadding - root.bottomPadding) / 2) - implicitHeight: Kirigami.Units.iconSizes.sizeForLabels - implicitWidth: Kirigami.Units.iconSizes.sizeForLabels + implicitHeight: Platform.Units.iconSizes.sizeForLabels + implicitWidth: Platform.Units.iconSizes.sizeForLabels color: root.placeholderTextColor source: "search" @@ -88,13 +90,12 @@ Kirigami.ActionTextField { Accessible.name: qsTr("Search") Accessible.searchEdit: true - focusSequence: StandardKey.Find + focusSequences: [StandardKey.Find] inputMethodHints: Qt.ImhNoPredictiveText EnterKey.type: Qt.EnterKeySearch rightActions: [ - Kirigami.Action { - //ltr confusingly refers to the direction of the arrow in the icon, not the text direction which it should be used in - icon.name: root.effectiveHorizontalAlignment === TextInput.AlignRight ? "edit-clear-locationbar-ltr" : "edit-clear-locationbar-rtl" + KC.Action { + icon.name: root.LayoutMirroring.enabled ? "edit-clear-locationbar-ltr" : "edit-clear-locationbar-rtl" visible: root.text.length > 0 text: qsTr("Clear search") onTriggered: { @@ -110,7 +111,7 @@ Kirigami.ActionTextField { Timer { id: fireSearchDelay - interval: root.delaySearch ? Kirigami.Units.humanMoment : Kirigami.Units.shortDuration + interval: root.delaySearch ? Platform.Units.humanMoment : Platform.Units.shortDuration running: false repeat: false onTriggered: { diff --git a/local/recipes/kde/kirigami/source/src/controls/SelectableLabel.qml b/local/recipes/kde/kirigami/source/src/controls/SelectableLabel.qml index ee1fdee8ac..8dcc6c8e23 100644 --- a/local/recipes/kde/kirigami/source/src/controls/SelectableLabel.qml +++ b/local/recipes/kde/kirigami/source/src/controls/SelectableLabel.qml @@ -6,30 +6,32 @@ * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound + import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform import QtQuick.Controls as QQC2 import QtQuick.Templates as T -/** - * @brief This is a label which supports text selection. - * - * The label uses TextEdit component, which is wrapped inside a Control component. - * - * - * Example usage: - * @code{.qml} - * Kirigami.SelectableLabel { - * text: "Label" - * } - * @endcode - * - * @see https://bugreports.qt.io/browse/QTBUG-14077 - * @since org.kde.kirigami 2.20 - * @since 5.95 - * @inherit QtQuick.Control - */ +/*! + \qmltype SelectableLabel + \inqmlmodule org.kde.kirigami + \brief This is a label which supports text selection. + + The label uses TextEdit component, which is wrapped inside a Control component. + + + Example usage: + \code + Kirigami.SelectableLabel { + text: "Label" + } + \endcode + + \sa https://bugreports.qt.io/browse/QTBUG-14077 + \since 5.95 + */ QQC2.Control { id: root @@ -47,55 +49,184 @@ QQC2.Control { Accessible.selectableText: true Accessible.editable: false - property bool contextMenuEnabled: true - + /*! + */ property alias readOnly: textEdit.readOnly + + /*! + */ property alias selectByMouse: textEdit.selectByMouse + + /*! + */ property alias color: textEdit.color + + /*! + */ property alias selectedTextColor: textEdit.selectedTextColor + + /*! + */ property alias selectionColor: textEdit.selectionColor + + /*! + */ property alias text: textEdit.text + + /*! + */ property alias baseUrl: textEdit.baseUrl + + /*! + */ property var cursorShape + + /*! + */ property alias horizontalAlignment: textEdit.horizontalAlignment + + /*! + */ property alias verticalAlignment: textEdit.verticalAlignment + + /*! + */ property alias textFormat: textEdit.textFormat + + /*! + */ property alias wrapMode: textEdit.wrapMode + /*! + */ property alias activeFocusOnPress: textEdit.activeFocusOnPress + + /*! + */ property alias cursorDelegate: textEdit.cursorDelegate + + /*! + */ property alias cursorPosition: textEdit.cursorPosition + + /*! + */ property alias cursorVisible: textEdit.cursorVisible + + /*! + */ property alias inputMethodHints: textEdit.inputMethodHints + + /*! + */ property alias mouseSelectionMode: textEdit.mouseSelectionMode + + /*! + */ property alias overwriteMode: textEdit.overwriteMode + + /*! + */ property alias persistentSelection: textEdit.persistentSelection + + /*! + */ property alias renderType: textEdit.renderType + + /*! + */ property alias selectByKeyboard: textEdit.selectByKeyboard + + /*! + */ property alias tabStopDistance: textEdit.tabStopDistance + + /*! + */ property alias textMargin: textEdit.textMargin + /*! + */ readonly property alias canPaste: textEdit.canPaste + + /*! + */ readonly property alias canRedo: textEdit.canRedo + + /*! + */ readonly property alias canUndo: textEdit.canUndo + + /*! + */ readonly property alias inputMethodComposing: textEdit.inputMethodComposing + + /*! + */ readonly property alias length: textEdit.length + + /*! + */ readonly property alias lineCount: textEdit.lineCount + + /*! + */ readonly property alias selectionEnd: textEdit.selectionEnd + + /*! + */ readonly property alias selectionStart: textEdit.selectionStart + + /*! + */ readonly property alias contentHeight: textEdit.contentHeight + + /*! + */ readonly property alias contentWidth: textEdit.contentWidth + + /*! + */ readonly property alias hoveredLink: textEdit.hoveredLink + + /*! + */ readonly property alias preeditText: textEdit.preeditText + + /*! + */ readonly property alias selectedText: textEdit.selectedText + + /*! + */ readonly property alias cursorRectangle: textEdit.cursorRectangle + + /*! + */ readonly property alias cursorSelection: textEdit.cursorSelection + + /*! + */ readonly property alias effectiveHorizontalAlignment: textEdit.effectiveHorizontalAlignment + + /*! + */ readonly property alias textDocument: textEdit.textDocument + /*! + */ signal editingFinished() + + /*! + */ signal clicked() + + /*! + */ signal linkActivated(string link) + + /*! + */ signal linkHovered(string link) //BEGIN TextArea dummy entries @@ -111,23 +242,15 @@ QQC2.Control { contentItem: TextEdit { id: textEdit - /** - * @brief This property holds the cursor shape that will appear whenever - * the mouse is hovering over the label. - * - * default: @c Qt.IBeamCursor - * - * @property Qt::CursorShape cursorShape - */ property alias cursorShape: hoverHandler.cursorShape activeFocusOnTab: root.activeFocusOnTab - color: Kirigami.Theme.textColor + color: Platform.Theme.textColor readOnly: true selectByMouse: true padding: 0 - selectedTextColor: Kirigami.Theme.highlightedTextColor - selectionColor: Kirigami.Theme.highlightColor + selectedTextColor: Platform.Theme.highlightedTextColor + selectionColor: Platform.Theme.highlightColor textFormat: TextEdit.AutoText verticalAlignment: TextEdit.AlignTop wrapMode: TextEdit.WordWrap @@ -140,17 +263,12 @@ QQC2.Control { HoverHandler { id: hoverHandler - // By default HoverHandler accepts the left button while it shouldn't accept anything, - // causing https://bugreports.qt.io/browse/QTBUG-106489. - // Qt.NoButton unfortunately is not a valid value for acceptedButtons. - // Disabling masks the problem, but - // there is no proper workaround other than an upstream fix - // See qqc2-desktop-style Label.qml - enabled: false cursorShape: root.cursorShape ? root.cursorShape : (textEdit.hoveredLink ? Qt.PointingHandCursor : Qt.IBeamCursor) } TapHandler { + id: leftClickAndPressTapHandler + // For custom click actions we want selection to be turned off enabled: !textEdit.selectByMouse @@ -161,7 +279,7 @@ QQC2.Control { } TapHandler { - enabled: textEdit.selectByMouse && root.contextMenuEnabled + enabled: textEdit.selectByMouse acceptedDevices: PointerDevice.Mouse | PointerDevice.TouchPad | PointerDevice.Stylus acceptedButtons: Qt.RightButton @@ -178,8 +296,8 @@ QQC2.Control { icon.name: "edit-copy-symbolic" text: qsTr("Copy") shortcut: StandardKey.Copy + enabled: root.visible && textEdit.selectedText.length > 0 && (textEdit.activeFocus || contextMenu.activeFocus) } - enabled: textEdit.selectedText.length > 0 onTriggered: { textEdit.copy(); textEdit.deselect(); @@ -191,11 +309,53 @@ QQC2.Control { icon.name: "edit-select-all-symbolic" text: qsTr("Select All") shortcut: StandardKey.SelectAll + enabled: root.visible && (textEdit.activeFocus || contextMenu.activeFocus) } onTriggered: { textEdit.selectAll(); } } } + + QQC2.ToolTip.delay: Platform.Units.toolTipDelay + QQC2.ToolTip.visible: textEdit.hoveredLink + + Binding { + id: toolTipXBinding + + // QQC2.ToolTip.toolTip is global and we don't own it. We need to make sure that our x and y bindings are active only when *we* are showing tooltip + readonly property bool overrideToolTipCoordinates: textEdit.QQC2.ToolTip.toolTip.parent === textEdit + // Cursor x position at which the tooltip is shown. Written once when tooltip is shown + property int toolTipOriginX: 0 + + target: textEdit.QQC2.ToolTip.toolTip + property: "x" + value: toolTipOriginX - Math.round(textEdit.QQC2.ToolTip.toolTip.implicitWidth / 2) + when: overrideToolTipCoordinates + } + + Binding { + id: toolTipYBinding + + // Cursor y position at which the tooltip is shown. Written once when tooltip is shown + property int toolTipOriginY: 0 + + target: textEdit.QQC2.ToolTip.toolTip + property: "y" + value: toolTipOriginY - textEdit.QQC2.ToolTip.toolTip.implicitHeight - Platform.Units.gridUnit + when: toolTipXBinding.overrideToolTipCoordinates + } + + onHoveredLinkChanged: { + if (textEdit.hoveredLink) { + // Don't reset tooltip text when it's empty so that it doesn't disappear immediately while tooltip is fading out + QQC2.ToolTip.text = textEdit.hoveredLink + // hoverHandler.point.position is not updated yet when onHoveredLinkChanged is called, delay using callLater + Qt.callLater(() => { + toolTipXBinding.toolTipOriginX = hoverHandler.point.position.x + toolTipYBinding.toolTipOriginY = hoverHandler.point.position.y + }) + } + } } } diff --git a/local/recipes/kde/kirigami/source/src/controls/SwipeListItem.qml b/local/recipes/kde/kirigami/source/src/controls/SwipeListItem.qml index f291e3ea5c..4330812948 100644 --- a/local/recipes/kde/kirigami/source/src/controls/SwipeListItem.qml +++ b/local/recipes/kde/kirigami/source/src/controls/SwipeListItem.qml @@ -3,211 +3,228 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.controls as KC import "private" -/** - * An item delegate intended to support extra actions obtainable - * by uncovering them by dragging away the item with the handle. - * - * This acts as a container for normal list items. - * - * Example usage: - * @code - * ListView { - * model: myModel - * delegate: SwipeListItem { - * QQC2.Label { - * text: model.text - * } - * actions: [ - * Action { - * icon.name: "document-decrypt" - * onTriggered: print("Action 1 clicked") - * }, - * Action { - * icon.name: model.action2Icon - * onTriggered: //do something - * } - * ] - * } - * - * } - * @endcode - * - * @inherit QtQuick.Templates.SwipeDelegate - */ +/*! + \qmltype SwipeListItem + \inqmlmodule org.kde.kirigami + + An item delegate intended to support extra actions obtainable + by uncovering them by dragging away the item with the handle. + + This acts as a container for normal list items. + + Example usage: + \code + ListView { + model: myModel + delegate: SwipeListItem { + QQC2.Label { + text: model.text + } + actions: [ + Action { + icon.name: "document-decrypt" + onTriggered: print("Action 1 clicked") + }, + Action { + icon.name: model.action2Icon + onTriggered: //do something + } + ] + } + + } + \endcode +*/ QQC2.SwipeDelegate { id: listItem //BEGIN properties - /** - * @brief This property sets whether the item should emit signals related to mouse interaction. - * - * default: ``true`` - * - * @deprecated Use hoverEnabled instead. - * @property bool supportsMouseEvents + /*! + \qmlproperty bool SwipeListItem::supportsMouseEvents + \brief This property sets whether the item should emit signals related to mouse interaction. + + \default true + + \deprecated Use hoverEnabled instead. */ property alias supportsMouseEvents: listItem.hoverEnabled - /** - * @brief This property tells whether the cursor is currently hovering over the item. - * - * On mobile touch devices, this will be true only when pressed. - * - * @see QtQuick.Templates.ItemDelegate::hovered - * @deprecated This will be removed in KF6; use the ``hovered`` property instead. - * @property bool containsMouse + /*! + \qmlproperty bool SwipeListItem::containsMouse + \brief This property tells whether the cursor is currently hovering over the item. + + On mobile touch devices, this will be true only when pressed. + + \sa ItemDelegate::hovered + \deprecated use the hovered property instead. */ readonly property alias containsMouse: listItem.hovered - /** - * @brief This property sets whether instances of this list item will alternate - * between two colors, helping readability. - * - * It is suggested to use this only when implementing a view with multiple columns. - * - * default: ``false`` - * - * @since 2.7 + /*! + \brief This property sets whether instances of this list item will alternate + between two colors, helping readability. + + It is suggested to use this only when implementing a view with multiple columns. + + \default false */ property bool alternatingBackground: false - /** - * @brief This property sets whether this item is a section delegate. - * - * Setting this to true will make the list item look like a "title" for items under it. - * - * default: ``false`` - * - * @see ListSectionHeader + /*! + \brief This property sets whether this item is a section delegate. + + Setting this to true will make the list item look like a "title" for items under it. + + \default false + + \sa ListSectionHeader */ property bool sectionDelegate: false - /** - * @brief This property sets whether the separator is visible. - * - * The separator is a line between this and the item under it. - * - * default: ``false`` + /*! + \brief This property sets whether the separator is visible. + + The separator is a line between this and the item under it. + + \default false */ property bool separatorVisible: false - /** - * @brief This property holds the background color of the list item. - * - * It is advised to use the default value. - * default: ``Kirigami.Theme.backgroundColor`` - */ - property color backgroundColor: Kirigami.Theme.backgroundColor + /*! + \brief This property holds the background color of the list item. - /** - * @brief This property holds the background color to be used when - * background alternating is enabled. - * - * It is advised to use the default value. - * default: ``Kirigami.Theme.alternateBackgroundColor`` - * - * @since 2.7 - */ - property color alternateBackgroundColor: Kirigami.Theme.alternateBackgroundColor + It is advised to use the default value. - /** - * @brief This property holds the color of the background - * when the item is pressed or selected. - * - * It is advised to use the default value. - * default: ``Kirigami.Theme.highlightColor`` + \default Kirigami.Theme.backgroundColor */ - property color activeBackgroundColor: Kirigami.Theme.highlightColor + property color backgroundColor: Platform.Theme.backgroundColor + + /*! + \brief This property holds the background color to be used when + background alternating is enabled. + + It is advised to use the default value. + \default: Kirigami.Theme.alternateBackgroundColor - /** - * @brief This property holds the color of the text in the item. - * - * It is advised to use the default value. - * default: ``Theme.textColor`` - * - * If custom text elements are inserted in a SwipeListItem, - * their color will have to be manually set with this property. */ - property color textColor: Kirigami.Theme.textColor + property color alternateBackgroundColor: Platform.Theme.alternateBackgroundColor - /** - * @brief This property holds the color of the text when the item is pressed or selected. - * - * It is advised to use the default value. - * default: ``Kirigami.Theme.highlightedTextColor`` - * - * If custom text elements are inserted in a SwipeListItem, - * their color property will have to be manually bound with this property + /*! + \brief This property holds the color of the background + when the item is pressed or selected. + + It is advised to use the default value. + \default Kirigami.Theme.highlightColor */ - property color activeTextColor: Kirigami.Theme.highlightedTextColor + property color activeBackgroundColor: Platform.Theme.highlightColor + + /*! + \brief This property holds the color of the text in the item. + + It is advised to use the default value. + \default Theme.textColor + + If custom text elements are inserted in a SwipeListItem, + their color will have to be manually set with this property. + */ + property color textColor: Platform.Theme.textColor + + /*! + \brief This property holds the color of the text when the item is pressed or selected. + + It is advised to use the default value. + default: Kirigami.Theme.highlightedTextColor + + If custom text elements are inserted in a SwipeListItem, + their color property will have to be manually bound with this property + */ + property color activeTextColor: Platform.Theme.highlightedTextColor + + /*! + \brief This property tells whether actions are visible and interactive. + + True if it's possible to see and interact with the item's actions. + + Actions become hidden while editing of an item, for example. - /** - * @brief This property tells whether actions are visible and interactive. - * - * True if it's possible to see and interact with the item's actions. - * - * Actions become hidden while editing of an item, for example. - * - * @since 2.5 */ readonly property bool actionsVisible: actionsLayout.hasVisibleActions - /** - * @brief This property sets whether actions behind this SwipeListItem will always be visible. - * - * default: `true in desktop and tablet mode` - * - * @since 2.15 - */ - property bool alwaysVisibleActions: !Kirigami.Settings.isMobile + /*! + \brief This property sets whether actions behind this SwipeListItem will always be visible. - /** - * @brief This property holds actions of the list item. - * - * At most 4 actions can be revealed when sliding away the list item; - * others will be shown in the overflow menu. + default: true in desktop and tablet mode + + */ + property bool alwaysVisibleActions: !Platform.Settings.isMobile + + /*! + \brief This property holds actions of the list item. + + At most 4 actions can be revealed when sliding away the list item; + others will be shown in the overflow menu. */ property list actions - /** - * @brief This property holds the width of the overlay. - * - * The value can represent the width of the handle component or the action layout. - * - * @since 2.19 - * @property real overlayWidth + /*! + \qmlproperty real SwipeListItem::overlayWidth + + \brief This property holds the width of the overlay. + + The value can represent the width of the handle component or the action layout. */ readonly property alias overlayWidth: overlayLoader.width //END properties + property ListView listView; + LayoutMirroring.childrenInherit: true hoverEnabled: true - implicitWidth: contentItem ? implicitContentWidth : Kirigami.Units.gridUnit * 12 + implicitHeight: Math.max(actionsLayout.implicitHeight, implicitContentHeight) + topPadding + bottomPadding + implicitWidth: Math.max(actionsLayout.implicitWidth, implicitContentWidth) + leftPadding + rightPadding width: parent ? parent.width : implicitWidth - implicitHeight: Math.max(Kirigami.Units.gridUnit * 2, implicitContentHeight) + topPadding + bottomPadding - padding: !listItem.alwaysVisibleActions && Kirigami.Settings.tabletMode ? Kirigami.Units.largeSpacing : Kirigami.Units.smallSpacing + Keys.onTabPressed: (event) => { + if (actionsLayout.hasVisibleActions) { + actionsLayout.children[0].tabbedFromDelegate = true + actionsLayout.children[0].forceActiveFocus(Qt.TabFocusReason) + } else { + event.accepted = false + } + } - leftPadding: padding * 2 + (mirrored ? overlayLoader.paddingOffset : 0) - rightPadding: padding * 2 + (mirrored ? 0 : overlayLoader.paddingOffset) - - topPadding: padding - bottomPadding: padding + Keys.onPressed: (event) => { + if ((actionsLayout.hasVisibleActions && activeFocus && event.key == Qt.Key_Right && Application.layoutDirection == Qt.LeftToRight) || + (actionsLayout.hasVisibleActions && activeFocus && event.key == Qt.Key_Left && Application.layoutDirection == Qt.RightToLeft)) { + for (var target = 0; target < actionsRep.count; target ++) { + if (actionsLayout.children[target].visible) { + break + } + } + if (target < actionsRep.count) { + actionsLayout.children[target].forceActiveFocus(Qt.TabFocusReason) + event.accepted = true + } + } + } QtObject { id: internal - property Flickable view: listItem.ListView.view || (listItem.parent ? (listItem.parent.ListView.view || (listItem.parent instanceof Flickable ? listItem.parent : null)) : null) + property Flickable view: listItem.ListView.view || (listItem.parent ? (listItem.parent.ListView.view || (listItem.parent instanceof Flickable ? listItem.parent : null)) : null) as Flickable function viewHasPropertySwipeFilter(): bool { return view && view.parent && view.parent.parent && "_swipeFilter" in view.parent.parent; @@ -219,10 +236,10 @@ QQC2.SwipeDelegate { // install the SwipeItemEventFilter onViewChanged: { - if (listItem.alwaysVisibleActions || !Kirigami.Settings.tabletMode) { + if (listItem.alwaysVisibleActions || !Platform.Settings.tabletMode) { return; } - if (viewHasPropertySwipeFilter() && Kirigami.Settings.tabletMode && !internal.view.parent.parent._swipeFilter) { + if (viewHasPropertySwipeFilter() && Platform.Settings.tabletMode && !internal.view.parent.parent._swipeFilter) { const component = Qt.createComponent(Qt.resolvedUrl("../private/SwipeItemEventFilter.qml")); internal.view.parent.parent._swipeFilter = component.createObject(internal.view.parent.parent); component.destroy(); @@ -231,12 +248,12 @@ QQC2.SwipeDelegate { } Connections { - target: Kirigami.Settings + target: Platform.Settings function onTabletModeChanged() { if (!internal.viewHasPropertySwipeFilter()) { return; } - if (Kirigami.Settings.tabletMode) { + if (Platform.Settings.tabletMode) { if (!internal.swipeFilterItem) { const component = Qt.createComponent(Qt.resolvedUrl("../private/SwipeItemEventFilter.qml")); listItem.ListView.view.parent.parent._swipeFilter = component.createObject(listItem.ListView.view.parent.parent); @@ -255,50 +272,39 @@ QQC2.SwipeDelegate { //BEGIN items Loader { id: overlayLoader - readonly property int paddingOffset: (visible ? width : 0) + Kirigami.Units.smallSpacing + readonly property int paddingOffset: (visible ? width : 0) + Platform.Units.smallSpacing readonly property var theAlias: anchors - function validate(want, defaultValue) { - const expectedLeftPadding = () => listItem.padding * 2 + (listItem.mirrored ? overlayLoader.paddingOffset : 0) - const expectedRightPadding = () => listItem.padding * 2 + (listItem.mirrored ? 0 : overlayLoader.paddingOffset) - const warningText = - `Don't override the leftPadding or rightPadding on a SwipeListItem!\n` + - `This makes it impossible for me to adjust my layout as I need to for various usecases.\n` + - `I'll try to fix the mistake for you, but you should remove your overrides from your app's code entirely.\n` + - `If I can't fix the paddings, I'll fall back to a default layout, but it'll be slightly incorrect and lacks\n` + - `adaptations needed for touch screens and right-to-left languages, among other things.` - - if (listItem.leftPadding != expectedLeftPadding() || listItem.rightPadding != expectedRightPadding()) { - listItem.leftPadding = Qt.binding(expectedLeftPadding) - listItem.rightPadding = Qt.binding(expectedRightPadding) - console.warn(warningText) - return defaultValue + states: State { + name: "reanchored" + AnchorChanges { + target: overlayLoader + anchors.right: listItem.mirrored ? undefined : listItem.contentItem.right + anchors.left: listItem.mirrored ? listItem.contentItem.left : undefined + anchors.top: parent.top + anchors.bottom: parent.bottom } + PropertyChanges { + overlayLoader.anchors.topMargin: listItem.topPadding + overlayLoader.anchors.bottomMargin: listItem.bottomPadding + } + } + Component.onCompleted: overlayLoader.state = "reanchored" - return want - } - anchors { - right: validate(listItem.mirrored ? undefined : (contentItem ? contentItem.right : undefined), contentItem ? contentItem.right : undefined) - rightMargin: validate(-paddingOffset, 0) - left: validate(!listItem.mirrored ? undefined : (contentItem ? contentItem.left : undefined), undefined) - leftMargin: validate(-paddingOffset, 0) - top: parent.top - bottom: parent.bottom - } LayoutMirroring.enabled: false parent: listItem - z: contentItem ? contentItem.z + 1 : 0 + z: listItem.contentItem ? listItem.contentItem.z + 1 : 0 width: item ? item.implicitWidth : actionsLayout.implicitWidth - active: !listItem.alwaysVisibleActions && Kirigami.Settings.tabletMode + active: !listItem.alwaysVisibleActions && Platform.Settings.tabletMode visible: listItem.actionsVisible && opacity > 0 asynchronous: true sourceComponent: handleComponent - opacity: listItem.alwaysVisibleActions || Kirigami.Settings.tabletMode || listItem.hovered ? 1 : 0 + opacity: listItem.alwaysVisibleActions || Platform.Settings.tabletMode || listItem.hovered ? 1 : 0 Behavior on opacity { OpacityAnimator { id: opacityAnim - duration: Kirigami.Units.veryShortDuration + duration: Platform.Units.veryShortDuration easing.type: Easing.InOutQuad } } @@ -309,10 +315,7 @@ QQC2.SwipeDelegate { MouseArea { id: dragButton - anchors { - right: parent.right - } - implicitWidth: Kirigami.Units.iconSizes.smallMedium + implicitWidth: Platform.Units.iconSizes.smallMedium preventStealing: true readonly property real openPosition: (listItem.width - width - listItem.leftPadding * 2)/listItem.width @@ -324,7 +327,7 @@ QQC2.SwipeDelegate { startX = mapToItem(listItem, 0, 0).x; } onClicked: mouse => { - if (Math.abs(mapToItem(listItem, 0, 0).x - startX) > Qt.styleHints.startDragDistance) { + if (Math.abs(mapToItem(listItem, 0, 0).x - startX) > Application.styleHints.startDragDistance) { return; } if (listItem.mirrored) { @@ -349,7 +352,7 @@ QQC2.SwipeDelegate { listItem.swipe.position = Math.max(0, Math.min(openPosition, (pos.x / listItem.width))); openIntention = listItem.swipe.position > lastPosition; } else { - listItem.swipe.position = Math.min(0, Math.max(-openPosition, (pos.x / (listItem.width -listItem.rightPadding) - 1))); + listItem.swipe.position = Math.min(0, Math.max(-openPosition, (pos.x / (listItem.width - listItem.rightPadding) - 1))); openIntention = listItem.swipe.position < lastPosition; } lastPosition = listItem.swipe.position; @@ -371,7 +374,7 @@ QQC2.SwipeDelegate { slideAnim.restart(); } - Kirigami.Icon { + Primitives.Icon { id: handleIcon anchors.fill: parent selected: listItem.checked || (listItem.down && !listItem.checked && !listItem.sectionDelegate) @@ -404,7 +407,7 @@ QQC2.SwipeDelegate { } } function onClicked(mouse) { - if (Math.abs(listItem.background.x) < Kirigami.Units.gridUnit && internal.edgeEnabled) { + if (Math.abs(listItem.background.x) < Platform.Units.gridUnit && internal.edgeEnabled) { dragButton.clicked(mouse); } } @@ -438,7 +441,7 @@ QQC2.SwipeDelegate { bottom: parent.bottom } clip: true - color: parent.pressed ? Qt.darker(Kirigami.Theme.backgroundColor, 1.1) : Qt.darker(Kirigami.Theme.backgroundColor, 1.05) + color: parent.pressed ? Qt.darker(Platform.Theme.backgroundColor, 1.1) : Qt.darker(Platform.Theme.backgroundColor, 1.05) x: listItem.mirrored ? listItem.background.x - width : (listItem.background.x + listItem.background.width) width: listItem.mirrored ? parent.width - (parent.width - x) : parent.width - x @@ -478,64 +481,140 @@ QQC2.SwipeDelegate { right: parent.right top: parent.top bottom: parent.bottom - rightMargin: Kirigami.Units.smallSpacing } visible: parent !== listItem - parent: !listItem.alwaysVisibleActions && Kirigami.Settings.tabletMode + parent: !listItem.alwaysVisibleActions && Platform.Settings.tabletMode ? listItem.swipe.leftItem?.contentItem || listItem.swipe.rightItem?.contentItem || listItem : overlayLoader property bool hasVisibleActions: false + property int indexInListView: (typeof index !== 'undefined' && index !== null) ? index : -1 // might not be set if using required properties function updateVisibleActions(definitelyVisible: bool) { hasVisibleActions = definitelyVisible || listItem.actions.some(isActionVisible); } function isActionVisible(action: T.Action): bool { - return (action instanceof Kirigami.Action) ? action.visible : true; + return (action as KC.Action)?.visible ?? true; } Repeater { + id: actionsRep model: listItem.actions delegate: QQC2.ToolButton { required property T.Action modelData + required property int index + + property bool tabbedFromDelegate: false action: modelData display: T.AbstractButton.IconOnly - visible: actionsLayout.isActionVisible(action) + visible: { + let newVisible = actionsLayout.isActionVisible(action) + actionsLayout.updateVisibleActions(newVisible) + return newVisible + } - onVisibleChanged: actionsLayout.updateVisibleActions(visible); Component.onCompleted: actionsLayout.updateVisibleActions(visible); Component.onDestruction: actionsLayout.updateVisibleActions(visible); - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay - QQC2.ToolTip.visible: (Kirigami.Settings.tabletMode ? pressed : hovered) && QQC2.ToolTip.text.length > 0 - QQC2.ToolTip.text: (action as Kirigami.Action)?.tooltip ?? action?.text ?? "" + QQC2.ToolTip.delay: Platform.Units.toolTipDelay + QQC2.ToolTip.visible: (Platform.Settings.tabletMode ? pressed : hovered) && QQC2.ToolTip.text.length > 0 + QQC2.ToolTip.text: (action as KC.Action)?.tooltip ?? action?.text ?? "" onClicked: { slideAnim.to = 0; slideAnim.restart(); } + Keys.onBacktabPressed: (event) => { + if (tabbedFromDelegate) { + listItem.forceActiveFocus(Qt.BacktabFocusReason) + } else { + event.accepted = false + } + } + + Keys.onPressed: (event) => { + if ((Application.layoutDirection == Qt.LeftToRight && event.key == Qt.Key_Left) || + (Application.layoutDirection == Qt.RightToLeft && event.key == Qt.Key_Right)) { + for (var target = index -1; target>=0; target--) { + if (target == -1 || actionsLayout.children[target].visible) { + break + } + } + if (target == -1) { + listItem.forceActiveFocus(Qt.BacktabFocusReason) + } else { + actionsLayout.children[target].tabbedFromDelegate = tabbedFromDelegate + actionsLayout.children[target].forceActiveFocus(Qt.TabFocusReason) + } + event.accepted = true + } else if ((Application.layoutDirection == Qt.LeftToRight && event.key == Qt.Key_Right) || + (Application.layoutDirection == Qt.RightToLeft && event.key == Qt.Key_Left)) { + var found=false + for (var target = index +1; target { + if (listItem.listView && actionsLayout.indexInListView >= 0) { + listItem.listView.currentIndex = actionsLayout.indexInListView + } + event.accepted = false // pass to ListView + } + + Keys.onDownPressed: (event) => { + if (listItem.listView && actionsLayout.indexInListView >= 0) { + listItem.listView.currentIndex = actionsLayout.indexInListView + } + event.accepted = false // pass to ListView + } + + onActiveFocusChanged: { + if (focus && listItem.listView) { + listItem.listView.positionViewAtIndex(actionsLayout.indexInListView, ListView.Contain) + } else if (!focus) { + tabbedFromDelegate = false + } + } + Accessible.name: text - Accessible.description: (action as Kirigami.Action)?.tooltip ?? "" + Accessible.description: (action as KC.Action)?.tooltip ?? "" } } } swipe { enabled: false - right: listItem.alwaysVisibleActions || listItem.mirrored || !Kirigami.Settings.tabletMode ? null : actionsBackgroundDelegate - left: listItem.alwaysVisibleActions || listItem.mirrored && Kirigami.Settings.tabletMode ? actionsBackgroundDelegate : null + right: listItem.alwaysVisibleActions || listItem.mirrored || !Platform.Settings.tabletMode ? null : actionsBackgroundDelegate + left: listItem.alwaysVisibleActions || listItem.mirrored && Platform.Settings.tabletMode ? actionsBackgroundDelegate : null } NumberAnimation { id: slideAnim - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad target: listItem.swipe property: "position" from: listItem.swipe.position } //END items + + Component.onCompleted: { + listView: { + for (var targetItem = listItem; (targetItem.ListView.view === null); targetItem = targetItem.parent) { + } + listView = targetItem.ListView.view + } + } } diff --git a/local/recipes/kde/kirigami/source/src/controls/UrlButton.qml b/local/recipes/kde/kirigami/source/src/controls/UrlButton.qml index 91a3085ddf..75e709955e 100644 --- a/local/recipes/kde/kirigami/source/src/controls/UrlButton.qml +++ b/local/recipes/kde/kirigami/source/src/controls/UrlButton.qml @@ -5,25 +5,43 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives import org.kde.kirigami.private as KirigamiPrivate import QtQuick.Controls as QQC2 -/** - * @brief A link button that contains a URL. - * - * It will open the url by default, allow to copy it if triggered with the - * secondary mouse button. - * - * @since 5.63 - * @since org.kde.kirigami 2.6 - * @inherit QtQuick.LinkButton +/*! + \qmltype UrlButton + \inqmlmodule org.kde.kirigami + \brief A link to a URL or other remote resource. + + UrlButton will open the URL when left-clicked, tapped, or activated with the + keyboard. It will show a context menu with a "Copy" action when right-clicked. + + \since 5.63 */ -Kirigami.LinkButton { +KC.LinkButton { id: button + /*! + This property holds the URL to open when clicked or tapped. + + default: empty string; set a URL to make it work. + */ property string url + /*! + This property holds whether the URL is an external link. + + External links will have a small icon on their right to show that the + link goes to an external website. + + default: \c true + \since 6.11 + */ + property bool externalLink: true + text: url enabled: url.length > 0 visible: text.length > 0 @@ -34,6 +52,33 @@ Kirigami.LinkButton { ? qsTr("Open link %1", "@info:whatsthis").arg(url) : qsTr("Open link", "@info:whatsthis") + rightPadding: icon.visible && !LayoutMirroring.enabled + ? icon.size + Platform.Units.smallSpacing + : 0 + leftPadding: icon.visible && LayoutMirroring.enabled + ? icon.size + Platform.Units.smallSpacing + : 0 + + LayoutMirroring.childrenInherit: true + + Primitives.Icon { + id: icon + + readonly property int size: Platform.Units.iconSizes.sizeForLabels + + width: size + height: size + + visible: button.externalLink && button.url.length > 0 + + source: LayoutMirroring.enabled ? "open-link-symbolic-rtl" : "open-link-symbolic" + fallback: "link-symbolic" + color: button.color + + anchors.right: button.mouseArea.right + anchors.verticalCenter: button.verticalCenter + } + onPressed: mouse => { if (mouse.button === Qt.RightButton) { menu.popup(); @@ -46,11 +91,9 @@ Kirigami.LinkButton { } } - QQC2.ToolTip { - // If button's text has been overridden, show a tooltip to expose the raw URL - visible: button.text !== button.url && button.mouseArea.containsMouse - text: button.url - } + QQC2.ToolTip.visible: button.text !== button.url && button.url.length > 0 && button.mouseArea.containsMouse + QQC2.ToolTip.delay: Platform.Units.toolTipDelay + QQC2.ToolTip.text: button.url QQC2.Menu { id: menu diff --git a/local/recipes/kde/kirigami/source/src/controls/private/ActionIconGroup.qml b/local/recipes/kde/kirigami/source/src/controls/private/ActionIconGroup.qml deleted file mode 100644 index 2531b0eddb..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/private/ActionIconGroup.qml +++ /dev/null @@ -1,17 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2017 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQml -import QtQuick - -QtObject { - property string name - property string source - property int width - property int height - property color color: Qt.rgba(0, 0, 0, 0) -} - diff --git a/local/recipes/kde/kirigami/source/src/controls/private/ActionMenuItem.qml b/local/recipes/kde/kirigami/source/src/controls/private/ActionMenuItem.qml index 96a0472a8d..5f01ec6000 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/ActionMenuItem.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/ActionMenuItem.qml @@ -7,16 +7,17 @@ import QtQuick import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform QQC2.MenuItem { - visible: !(action instanceof Kirigami.Action) || action.visible - autoExclusive: action instanceof Kirigami.Action && action.autoExclusive + visible: (action as KC.Action)?.visible ?? true + autoExclusive: (action as KC.Action)?.autoExclusive ?? false height: visible ? implicitHeight : 0 - QQC2.ToolTip.text: (action instanceof Kirigami.Action) ? action.tooltip : "" + QQC2.ToolTip.text: (action as KC.Action)?.tooltip ?? "" QQC2.ToolTip.visible: hovered && QQC2.ToolTip.text.length > 0 - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay + QQC2.ToolTip.delay: Platform.Units.toolTipDelay Accessible.onPressAction: action.trigger() } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/ActionsMenu.qml b/local/recipes/kde/kirigami/source/src/controls/private/ActionsMenu.qml index 829035df51..e2019a7c9c 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/ActionsMenu.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/ActionsMenu.qml @@ -3,11 +3,12 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC QQC2.Menu { id: root @@ -30,20 +31,22 @@ QQC2.Menu { active: root.visible delegate: QtObject { + required property T.Action modelData + readonly property T.Action action: modelData property QtObject item: null property bool isSubMenu: false Component.onCompleted: { - const isKirigamiAction = action instanceof Kirigami.Action; - if (!isKirigamiAction || action.children.length === 0) { - if (isKirigamiAction && action.separator) { + const asKirigamiAction = action as KC.Action; + if (!asKirigamiAction || asKirigamiAction.children.length === 0) { + if (asKirigamiAction?.separator) { item = root.separatorDelegate.createObject(null, { action }); - } else if (action.displayComponent) { + } else if (asKirigamiAction?.displayComponent) { item = root.loaderDelegate.createObject(null, { action, - sourceComponent: action.displayComponent, + sourceComponent: asKirigamiAction.displayComponent, }); } else { item = root.itemDelegate.createObject(null, { action }); @@ -51,14 +54,15 @@ QQC2.Menu { root.addItem(item) } else if (root.submenuComponent) { item = root.submenuComponent.createObject(null, { - parentAction: action, - title: action.text, - actions: action.children, + parentAction: asKirigamiAction, + icon: asKirigamiAction.icon, + title: asKirigamiAction.text, + actions: asKirigamiAction.children, + submenuComponent: root.submenuComponent, }); root.insertMenu(root.count, item); item.parentItem = root.contentData[root.contentData.length - 1]; - item.parentItem.icon = action.icon; isSubMenu = true; } } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/BannerImage.qml b/local/recipes/kde/kirigami/source/src/controls/private/BannerImage.qml index 65ea9a6d7e..22ba71892e 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/BannerImage.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/BannerImage.qml @@ -3,106 +3,104 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives -/** - * This Component is used as the header of GlobalDrawer and as the header - * of Card, It can be accessed there as a grouped property but can never - * be instantiated directly. - * \private +/*! + This Component is used as the header of GlobalDrawer and as the header + of Card, It can be accessed there as a grouped property but can never + be instantiated directly. + \internal */ -Kirigami.ShadowedImage { +Primitives.ShadowedImage { id: root //BEGIN properties - /** - * @brief This property holds an icon to be displayed alongside the title. - * - * It can be a QIcon, a FreeDesktop-compatible icon name, or any URL understood by QtQuick.Image. - * - * @property var titleIcon + /*! + \brief This property holds an icon to be displayed alongside the title. + + It can be a QIcon, a FreeDesktop-compatible icon name, or any URL understood by QtQuick.Image. */ property alias titleIcon: headingIcon.source - /** - * @brief This property holds the title's text which is to be displayed on top. - * of the image. - * @see QtQuick.Text::text - * @property string title + /*! + \brief This property holds the minimum size of the icon displayed alongside the title. + + \default Kirigami.Units.iconSizes.large + */ + property real titleMinimumIconSize: Platform.Units.iconSizes.large + + /*! + \brief This property holds the title's text which is to be displayed on top. + of the image. */ property alias title: heading.text - /** - * @brief This property holds the title's position. - * - * default: ``Qt.AlignTop | Qt.AlignLeft`` - * - * @property Qt::Alignment titleAlignment + /*! + \brief This property holds the title's position. + + default: Qt.AlignTop | Qt.AlignLeft */ property int titleAlignment: Qt.AlignTop | Qt.AlignLeft - /** - * @brief This property holds the title's level. - * - * Available text size values range from 1 (largest) to 5 (smallest). - * - * default: ``1`` - * - * @see org::kde::kirigami::Heading::level - * @property int titleLevel + /*! + \brief This property holds the title's level. + + Available text size values range from 1 (largest) to 5 (smallest). + + default: 1 + + \sa Heading::level */ property alias titleLevel: heading.level - /** - * @brief This property holds the title's wrap mode. - * - * default: ``Text.NoWrap`` - * - * @see QtQuick.Text::wrapMode - * @property int titleWrapMode + /*! + \brief This property holds the title's wrap mode. + + default: Text.NoWrap + + \sa Text::wrapMode */ property alias titleWrapMode: heading.wrapMode - /** - * @brief This property holds whether the title is part of an item considered - * checkable. - * - * If true, a checkbox will appear in the top-right corner of the title area. - * - * default: false - * - * @property bool checkable + /*! + \brief This property holds whether the title is part of an item considered + checkable. + + If true, a checkbox will appear in the top-right corner of the title area. + + default: false */ property bool checkable: false - /** - * @brief This property holds whether the title's checkbox is currently checked. - * - * If using this outside of a GlobalDrawer or a Card, you must manually bind - * this to the checked condition of the parent item, or whatever else in your - * UI signals checkability. You must also handle the `toggled` signal when - * the user manually clicks the checkbox. - * - * default: false - * - * @property bool checked + /*! + \brief This property holds whether the title's checkbox is currently checked. + + If using this outside of a GlobalDrawer or a Card, you must manually bind + this to the checked condition of the parent item, or whatever else in your + UI signals checkability. You must also handle the `toggled` signal when + the user manually clicks the checkbox. + + default: false */ property bool checked: false - property int leftPadding: headingIcon.valid ? Kirigami.Units.smallSpacing * 2 : Kirigami.Units.largeSpacing - property int topPadding: headingIcon.valid ? Kirigami.Units.smallSpacing * 2 : Kirigami.Units.largeSpacing - property int rightPadding: headingIcon.valid ? Kirigami.Units.smallSpacing * 2 : Kirigami.Units.largeSpacing - property int bottomPadding: headingIcon.valid ? Kirigami.Units.smallSpacing * 2 : Kirigami.Units.largeSpacing + property int leftPadding: headingIcon.valid ? Platform.Units.smallSpacing * 2 : Platform.Units.largeSpacing + property int topPadding: headingIcon.valid ? Platform.Units.smallSpacing * 2 : Platform.Units.largeSpacing + property int rightPadding: headingIcon.valid ? Platform.Units.smallSpacing * 2 : Platform.Units.largeSpacing + property int bottomPadding: headingIcon.valid ? Platform.Units.smallSpacing * 2 : Platform.Units.largeSpacing - property int implicitWidth: Layout.preferredWidth + implicitWidth: Layout.preferredWidth readonly property bool empty: title.length === 0 && // string source.toString().length === 0 && // QUrl - !titleIcon // QVariant hanled by Kirigami.Icon + !titleIcon // QVariant handled by Primitives.Icon //END properties signal toggled(bool checked) @@ -111,7 +109,7 @@ Kirigami.ShadowedImage { Layout.preferredWidth: titleLayout.implicitWidth || sourceSize.width Layout.preferredHeight: titleLayout.completed && source.toString().length > 0 ? width/(sourceSize.width / sourceSize.height) : Layout.minimumHeight - Layout.minimumHeight: titleLayout.implicitHeight > 0 ? titleLayout.implicitHeight + Kirigami.Units.smallSpacing * 2 : 0 + Layout.minimumHeight: titleLayout.implicitHeight > 0 ? titleLayout.implicitHeight + Platform.Units.smallSpacing * 2 : 0 onTitleAlignmentChanged: { // VERTICAL ALIGNMENT @@ -158,7 +156,7 @@ Kirigami.ShadowedImage { titleLayout.completed = true; } - Kirigami.ShadowedRectangle { + Primitives.ShadowedRectangle { id: shadowedRectangle anchors { left: parent.left @@ -186,23 +184,23 @@ Kirigami.ShadowedImage { rightMargin: root.rightPadding bottomMargin: root.bottomPadding } - width: Math.min(implicitWidth, parent.width -root.leftPadding -root.rightPadding - (checkboxLoader.active ? Kirigami.Units.largeSpacing : 0)) + width: Math.min(implicitWidth, parent.width -root.leftPadding -root.rightPadding - (checkboxLoader.active ? Platform.Units.largeSpacing : 0)) height: Math.min(implicitHeight, parent.height -root.topPadding -root.bottomPadding) - Kirigami.Icon { + Primitives.Icon { id: headingIcon - Layout.minimumWidth: Kirigami.Units.iconSizes.large + Layout.minimumWidth: root.titleMinimumIconSize Layout.minimumHeight: width visible: valid isMask: false } - Kirigami.Heading { + KC.Heading { id: heading Layout.fillWidth: true Layout.fillHeight: true verticalAlignment: Text.AlignVCenter visible: text.length > 0 level: 1 - color: root.source.toString().length > 0 ? "white" : Kirigami.Theme.textColor + color: root.source.toString().length > 0 ? "white" : Platform.Theme.textColor wrapMode: Text.NoWrap elide: Text.ElideRight } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/ContextDrawerActionItem.qml b/local/recipes/kde/kirigami/source/src/controls/private/ContextDrawerActionItem.qml index 0b334e4488..203214c8c5 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/ContextDrawerActionItem.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/ContextDrawerActionItem.qml @@ -9,14 +9,16 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Templates as T import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives QQC2.ItemDelegate { id: listItem required property T.Action tAction - readonly property Kirigami.Action kAction: tAction instanceof Kirigami.Action ? tAction : null + readonly property KC.Action kAction: tAction as KC.Action readonly property bool isSeparator: kAction?.separator ?? false readonly property bool isExpandable: kAction?.expandible ?? false @@ -24,18 +26,19 @@ QQC2.ItemDelegate { checked: tAction.checked || (actionsMenu && actionsMenu.visible) highlighted: checked icon.name: tAction.icon.name + icon.source: tAction.icon.source - text: tAction.text ? tAction.text : tAction.tooltip - hoverEnabled: (!isExpandable || root.collapsed) && !Kirigami.Settings.tabletMode && !isSeparator - font.pointSize: Kirigami.Theme.defaultFont.pointSize * (isExpandable ? 1.30 : 1) + text: tAction.text ? tAction.text : kAction?.tooltip ?? "" + hoverEnabled: (!isExpandable || root.collapsed) && !Platform.Settings.tabletMode && !isSeparator + font.pointSize: Platform.Theme.defaultFont.pointSize * (isExpandable ? 1.30 : 1) enabled: !isExpandable && tAction.enabled visible: kAction?.visible ?? true - opacity: enabled || isExpandable ? 1.0 : 0.6 + opacity: enabled || isExpandable ? 1.0 : 0.75 Accessible.onPressAction: listItem.clicked() - Kirigami.Separator { + Primitives.Separator { id: separatorAction visible: listItem.isSeparator @@ -44,15 +47,15 @@ QQC2.ItemDelegate { ActionsMenu { id: actionsMenu - y: Kirigami.Settings.isMobile ? -height : listItem.height - actions: kAction?.children ?? [] + y: Platform.Settings.isMobile ? -height : listItem.height + actions: listItem.kAction?.children ?? [] submenuComponent: ActionsMenu {} } Loader { Layout.fillWidth: true Layout.fillHeight: true - sourceComponent: kAction?.displayComponent ?? null + sourceComponent: listItem.kAction?.displayComponent ?? null onStatusChanged: { for (const child of parent.children) { if (child === this) { diff --git a/local/recipes/kde/kirigami/source/src/controls/private/DefaultCardBackground.qml b/local/recipes/kde/kirigami/source/src/controls/private/DefaultCardBackground.qml index 24c5f59300..069d92f730 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/DefaultCardBackground.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/DefaultCardBackground.qml @@ -5,86 +5,90 @@ * SPDX-License-Identifier: LGPL-2.0-or-later */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.templates as KT -/** - * @brief This is the default background for Cards. - * - * It provides background feedback on hover and click events, border customizability, and the ability to change the radius of each individual corner. - * - * @inherit org::kde::kirigami::ShadowedRectangle +/*! + \brief This is the default background for Cards. + + It provides background feedback on hover and click events, border customizability, and the ability to change the radius of each individual corner. + + \internal */ -Kirigami.ShadowedRectangle { +Primitives.ShadowedRectangle { id: root //BEGIN properties - /** - * @brief This property sets whether there should be a background change on a click event. - * - * default: ``false`` + /*! + \brief This property sets whether there should be a background change on a click event. + + default: false */ property bool clickFeedback: false - /** - * @brief This property sets whether there should be a background change on a click event. - * - * default: ``false`` + /*! + \brief This property sets whether there should be a background change on a hover event. + + default: false */ property bool hoverFeedback: false - /** - * @brief This property holds the card's normal background color. - * - * default: ``Kirigami.Theme.backgroundColor`` - */ - property color defaultColor: Kirigami.Theme.backgroundColor + /*! + \brief This property holds the card's normal background color. - /** - * @brief This property holds the color displayed when a click event is triggered. - * @see DefaultCardBackground::clickFeedback + default: Kirigami.Theme.backgroundColor */ - property color pressedColor: Kirigami.ColorUtils.tintWithAlpha( + property color defaultColor: Platform.Theme.backgroundColor + + /*! + \brief This property holds the color displayed when a click event is triggered. + \sa DefaultCardBackground::clickFeedback + */ + property color pressedColor: Platform.ColorUtils.tintWithAlpha( defaultColor, - Kirigami.Theme.highlightColor, 0.3) + Platform.Theme.highlightColor, 0.3) - /** - * @brief This property holds the color displayed when a hover event is triggered. - * @see DefaultCardBackground::hoverFeedback + /*! + \brief This property holds the color displayed when a hover event is triggered. + \sa DefaultCardBackground::hoverFeedback */ - property color hoverColor: Kirigami.ColorUtils.tintWithAlpha( + property color hoverColor: Platform.ColorUtils.tintWithAlpha( defaultColor, - Kirigami.Theme.highlightColor, 0.1) + Platform.Theme.highlightColor, 0.1) - /** - * @brief This property holds the border width which is displayed at the edge of DefaultCardBackground. - * - * default: ``1`` + /*! + \brief This property holds the border width which is displayed at the edge of DefaultCardBackground. + + default: 1 */ property int borderWidth: 1 - /** - * @brief This property holds the border color which is displayed at the edge of DefaultCardBackground. + /*! + \brief This property holds the border color which is displayed at the edge of DefaultCardBackground. */ - property color borderColor: Kirigami.ColorUtils.linearInterpolation(Kirigami.Theme.backgroundColor, Kirigami.Theme.textColor, Kirigami.Theme.frameContrast) + property color borderColor: Platform.ColorUtils.linearInterpolation(Platform.Theme.backgroundColor, Platform.Theme.textColor, Platform.Theme.frameContrast) //END properties color: { - if (root.parent.checked || (root.clickFeedback && (root.parent.down || root.parent.highlighted))) + // Also used for OverlaySheet, but that supports none ot these states so always defaultColor + const card = root.parent as KT.AbstractCard + if (card?.checked || (root.clickFeedback && (card?.down || card?.highlighted))) return root.pressedColor - else if (root.hoverFeedback && root.parent.hovered) + else if (root.hoverFeedback && card?.hovered) return root.hoverColor return root.defaultColor } - radius: Kirigami.Units.cornerRadius + radius: Platform.Units.cornerRadius border { width: root.borderWidth color: root.borderColor } shadow { - size: Kirigami.Units.gridUnit + size: Platform.Units.gridUnit color: Qt.rgba(0, 0, 0, 0.05) yOffset: 2 } @@ -94,12 +98,12 @@ Kirigami.ShadowedRectangle { anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top - anchors.topMargin: Math.round(Kirigami.Units.smallSpacing / 4) + anchors.topMargin: Math.round(Platform.Units.smallSpacing / 4) radius: root.radius height: root.height - color: Qt.darker(Qt.rgba(Kirigami.Theme.backgroundColor.r, Kirigami.Theme.backgroundColor.g, Kirigami.Theme.backgroundColor.b, 0.6), 1.1) - visible: !root.clickFeedback || !root.parent.down + color: Qt.darker(Qt.rgba(Platform.Theme.backgroundColor.r, Platform.Theme.backgroundColor.g, Platform.Theme.backgroundColor.b, 0.6), 1.1) + visible: !root.clickFeedback || !(root.parent as KT.AbstractCard)?.down z: -1 } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/DefaultChipBackground.qml b/local/recipes/kde/kirigami/source/src/controls/private/DefaultChipBackground.qml index 2a2ecc3055..faed41cf1f 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/DefaultChipBackground.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/DefaultChipBackground.qml @@ -2,73 +2,73 @@ // SPDX-License-Identifier: LGPL-2.0-or-later import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.templates as KT Rectangle { - /** - * @brief This property holds the chip's default background color. + /*! + \brief This property holds the chip's default background color. */ - property color defaultColor: Kirigami.Theme.backgroundColor + property color defaultColor: Platform.Theme.backgroundColor - /** - * @brief This property holds the color of the Chip's background when it is being pressed. - * @see QtQuick.AbstractButton::down + /*! + \brief This property holds the color of the Chip's background when it is being pressed. + \sa QtQuick.AbstractButton::down */ - property color pressedColor: Qt.rgba(Kirigami.Theme.highlightColor.r, Kirigami.Theme.highlightColor.g, Kirigami.Theme.highlightColor.b, 0.3) + property color pressedColor: Qt.rgba(Platform.Theme.highlightColor.r, Platform.Theme.highlightColor.g, Platform.Theme.highlightColor.b, 0.3) - /** - * @brief This property holds the color of the Chip's background when it is checked. - * @see QtQuick.AbstractButton::checked + /*! + \brief This property holds the color of the Chip's background when it is checked. + \sa QtQuick.AbstractButton::checked */ - property color checkedColor: Qt.rgba(Kirigami.Theme.highlightColor.r, Kirigami.Theme.highlightColor.g, Kirigami.Theme.highlightColor.b, 0.2) + property color checkedColor: Qt.rgba(Platform.Theme.highlightColor.r, Platform.Theme.highlightColor.g, Platform.Theme.highlightColor.b, 0.2) - /** - * @brief This property holds the chip's default border color. + /*! + \brief This property holds the chip's default border color. */ - property color defaultBorderColor: Kirigami.ColorUtils.linearInterpolation(Kirigami.Theme.backgroundColor, Kirigami.Theme.textColor, Kirigami.Theme.frameContrast) + property color defaultBorderColor: Platform.ColorUtils.linearInterpolation(Platform.Theme.backgroundColor, Platform.Theme.textColor, Platform.Theme.frameContrast) - /** - * @brief This property holds the color of the Chip's border when it is checked. - * @see QtQuick.AbstractButton::checked + /*! + \brief This property holds the color of the Chip's border when it is checked. + \sa QtQuick.AbstractButton::checked */ - property color checkedBorderColor: Qt.rgba(Kirigami.Theme.highlightColor.r, Kirigami.Theme.highlightColor.g, Kirigami.Theme.highlightColor.b, 0.9) + property color checkedBorderColor: Qt.rgba(Platform.Theme.highlightColor.r, Platform.Theme.highlightColor.g, Platform.Theme.highlightColor.b, 0.9) - /** - * @brief This property holds the color of the Chip's border when it is being pressed. - * @see QtQuick.AbstractButton::down + /*! + \brief This property holds the color of the Chip's border when it is being pressed. + \sa QtQuick.AbstractButton::down */ - property color pressedBorderColor: Qt.rgba(Kirigami.Theme.highlightColor.r, Kirigami.Theme.highlightColor.g, Kirigami.Theme.highlightColor.b, 0.7) + property color pressedBorderColor: Qt.rgba(Platform.Theme.highlightColor.r, Platform.Theme.highlightColor.g, Platform.Theme.highlightColor.b, 0.7) - /** - * @brief This property holds the color of the Chip's border when it is hovered. - * @see QtQuick.Control::hovered + /*! + * \brief This property holds the color of the Chip's border when it is hovered. + * \sa QtQuick.Control::hovered */ - property color hoveredBorderColor: Kirigami.Theme.hoverColor - - Kirigami.Theme.colorSet: Kirigami.Theme.Header - Kirigami.Theme.inherit: false + property color hoveredBorderColor: Platform.Theme.hoverColor color: { - if (parent.down) { + const chip = parent as KT.Chip + if (chip.down) { return pressedColor - } else if (parent.checked) { + } else if (chip.checked) { return checkedColor } else { return defaultColor } } border.color: { - if (parent.down) { + const chip = parent as KT.Chip + if (chip.down) { return pressedBorderColor - } else if (parent.checked) { + } else if (chip.checked) { return checkedBorderColor - } else if (parent.hovered) { + } else if (chip.hovered) { return hoveredBorderColor } else { return defaultBorderColor } } border.width: 1 - radius: Kirigami.Units.cornerRadius + radius: Platform.Units.cornerRadius } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/DefaultPageTitleDelegate.qml b/local/recipes/kde/kirigami/source/src/controls/private/DefaultPageTitleDelegate.qml index 1c875cf73e..b7b707f6a3 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/DefaultPageTitleDelegate.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/DefaultPageTitleDelegate.qml @@ -6,14 +6,14 @@ import QtQuick import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC -/** +/*! * This component is used as a default representation for a page title within * page's header/toolbar. It is just a Heading item with shrinking + eliding * behavior. * - * \private + * \internal */ Item { property alias text: heading.text @@ -25,7 +25,7 @@ Item { implicitWidth: Math.ceil(heading.implicitWidth) implicitHeight: Math.ceil(heading.implicitHeight) - Kirigami.Heading { + KC.Heading { id: heading anchors.fill: parent diff --git a/local/recipes/kde/kirigami/source/src/controls/private/EdgeShadow.qml b/local/recipes/kde/kirigami/source/src/controls/private/EdgeShadow.qml index 523e7a405e..213e1415b2 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/EdgeShadow.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/EdgeShadow.qml @@ -5,23 +5,23 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform Item { id: shadow - /** - * @brief This property holds the edge of the shadow that will determine the direction of the gradient. - * The acceptable values are: - * * ``Qt.TopEdge``: the top edge of the content item. - * * ``Qt.LeftEdge``: the left edge of the content item - * * ``Qt.RightEdge``: the right edge of the content item. - * * ``Qt.BottomEdge``: the bottom edge of the content item. - * - * @see Qt::Edges + /*! + \brief This property holds the edge of the shadow that will determine the direction of the gradient. + The acceptable values are: + - Qt.TopEdge: the top edge of the content item. + - Qt.LeftEdge: the left edge of the content item + - Qt.RightEdge: the right edge of the content item. + - Qt.BottomEdge: the bottom edge of the content item. + + \sa Qt::Edges */ property int edge: Qt.LeftEdge - property int radius: Kirigami.Units.cornerRadius + property int radius: Platform.Units.cornerRadius implicitWidth: radius implicitHeight: radius diff --git a/local/recipes/kde/kirigami/source/src/controls/private/GlobalDrawerActionItem.qml b/local/recipes/kde/kirigami/source/src/controls/private/GlobalDrawerActionItem.qml index 0fa6d0ca36..95d2db3b62 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/GlobalDrawerActionItem.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/GlobalDrawerActionItem.qml @@ -11,14 +11,16 @@ import QtQuick.Controls as QQC2 import QtQuick.Controls.impl as QQC2Impl import QtQuick.Layouts import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.controls as KC QQC2.ItemDelegate { id: listItem required property T.Action tAction // `as` case operator is still buggy - readonly property Kirigami.Action kAction: tAction instanceof Kirigami.Action ? tAction : null + readonly property KC.Action kAction: tAction as KC.Action readonly property bool actionVisible: kAction?.visible ?? true readonly property bool isSeparator: kAction?.separator ?? false @@ -31,17 +33,15 @@ QQC2.ItemDelegate { highlighted: checked activeFocusOnTab: true - width: parent.width - contentItem: RowLayout { - spacing: Kirigami.Units.largeSpacing + spacing: Platform.Units.largeSpacing - Kirigami.Icon { + Primitives.Icon { id: iconItem color: listItem.tAction.icon.color source: listItem.tAction.icon.name || listItem.tAction.icon.source - readonly property int size: Kirigami.Units.iconSizes.smallMedium + readonly property int size: Platform.Units.iconSizes.smallMedium Layout.minimumHeight: size Layout.maximumHeight: size Layout.minimumWidth: size @@ -54,48 +54,56 @@ QQC2.ItemDelegate { QQC2Impl.MnemonicLabel { id: labelItem visible: !listItem.isSeparator - text: width > height * 2 ? listItem.Kirigami.MnemonicData.mnemonicLabel : "" - + text: width > height * 2 ? listItem.Primitives.MnemonicData.mnemonicLabel : "" + Accessible.name: listItem.Primitives.MnemonicData.plainTextLabel + Layout.preferredWidth: metrics.width + Layout.preferredHeight: metrics.height + Layout.minimumWidth: 0 // Work around Qt bug where left aligned text is not right aligned // in RTL mode unless horizontalAlignment is explicitly set. // https://bugreports.qt.io/browse/QTBUG-95873 horizontalAlignment: Text.AlignLeft Layout.fillWidth: true - mnemonicVisible: listItem.Kirigami.MnemonicData.active - color: (listItem.highlighted || listItem.checked || listItem.down) ? Kirigami.Theme.highlightedTextColor : Kirigami.Theme.textColor + mnemonicVisible: listItem.Primitives.MnemonicData.active + color: (listItem.highlighted || listItem.checked || listItem.down) ? Platform.Theme.highlightedTextColor : Platform.Theme.textColor elide: Text.ElideRight font: listItem.font opacity: { if (root.collapsed) { return 0; } else if (!listItem.enabled) { - return 0.6; + return 0.75; } else { return 1.0; } } + TextMetrics { + id: metrics + text: listItem.Primitives.MnemonicData.mnemonicLabel + font: labelItem.font + } Behavior on opacity { NumberAnimation { - duration: Kirigami.Units.longDuration/2 + duration: Platform.Units.longDuration/2 easing.type: Easing.InOutQuad } } } - Kirigami.Separator { + Primitives.Separator { id: separatorAction visible: listItem.isSeparator Layout.fillWidth: true } - Kirigami.Icon { + Primitives.Icon { isMask: true Layout.alignment: Qt.AlignVCenter Layout.leftMargin: !root.collapsed ? 0 : -width - Layout.preferredHeight: !root.collapsed ? Kirigami.Units.iconSizes.small : Kirigami.Units.iconSizes.small/2 - opacity: 0.7 + Layout.preferredHeight: !root.collapsed ? Platform.Units.iconSizes.small : Platform.Units.iconSizes.small/2 + opacity: 0.75 selected: listItem.checked || listItem.down Layout.preferredWidth: Layout.preferredHeight source: listItem.mirrored ? "go-next-symbolic-rtl" : "go-next-symbolic" @@ -103,18 +111,18 @@ QQC2.ItemDelegate { } } - Accessible.name: listItem.tAction?.text ?? "" - Kirigami.MnemonicData.enabled: enabled && visible - Kirigami.MnemonicData.controlType: Kirigami.MnemonicData.MenuItem - Kirigami.MnemonicData.label: tAction?.text ?? "" + Accessible.name: Primitives.MnemonicData.plainTextLabel + Primitives.MnemonicData.enabled: enabled && visible + Primitives.MnemonicData.controlType: Primitives.MnemonicData.MenuItem + Primitives.MnemonicData.label: tAction?.text ?? "" Shortcut { - sequence: listItem.Kirigami.MnemonicData.sequence + sequence: listItem.Primitives.MnemonicData.sequence onActivated: listItem.clicked() } property ActionsMenu actionsMenu: ActionsMenu { - x: Qt.application.layoutDirection === Qt.RightToLeft ? -width : listItem.width + x: Application.layoutDirection === Qt.RightToLeft ? -width : listItem.width actions: listItem.kAction?.children ?? [] submenuComponent: ActionsMenu {} @@ -133,15 +141,15 @@ QQC2.ItemDelegate { Behavior on opacity { NumberAnimation { - duration: Kirigami.Units.longDuration / 2 + duration: Platform.Units.longDuration / 2 easing.type: Easing.InOutQuad } } enabled: tAction?.enabled ?? false - hoverEnabled: (!isExpandable || root.collapsed) && !Kirigami.Settings.tabletMode && !isSeparator - font.pointSize: isExpandable ? Kirigami.Theme.defaultFont.pointSize * 1.30 : Kirigami.Theme.defaultFont.pointSize + hoverEnabled: (!isExpandable || root.collapsed) && !Platform.Settings.tabletMode && !isSeparator + font.pointSize: isExpandable ? Platform.Theme.defaultFont.pointSize * 1.30 : Platform.Theme.defaultFont.pointSize height: implicitHeight * opacity QQC2.ToolTip { @@ -152,9 +160,9 @@ QQC2.ItemDelegate { && text.length > 0 text: (listItem.kAction?.tooltip || listItem.tAction?.text) ?? "" - delay: Kirigami.Units.toolTipDelay + delay: Platform.Units.toolTipDelay y: (listItem.height - height) / 2 - x: Qt.application.layoutDirection === Qt.RightToLeft ? -width : listItem.width + x: Application.layoutDirection === Qt.RightToLeft ? -width : listItem.width } onHoveredChanged: { diff --git a/local/recipes/kde/kirigami/source/src/controls/private/MobileDialogLayer.qml b/local/recipes/kde/kirigami/source/src/controls/private/MobileDialogLayer.qml index 7348fa498b..f1e86f7632 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/MobileDialogLayer.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/MobileDialogLayer.qml @@ -7,9 +7,11 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives -Kirigami.Dialog { +QQC2.Dialog { id: dialog clip: true @@ -20,13 +22,13 @@ Kirigami.Dialog { rightPadding: 0 bottomPadding: 0 - header: Kirigami.AbstractApplicationHeader { + header: KC.AbstractApplicationHeader { pageRow: null page: null - minimumHeight: Kirigami.Units.gridUnit * 1.6 - maximumHeight: Kirigami.Units.gridUnit * 1.6 - preferredHeight: Kirigami.Units.gridUnit * 1.6 + minimumHeight: Platform.Units.gridUnit * 1.6 + maximumHeight: Platform.Units.gridUnit * 1.6 + preferredHeight: Platform.Units.gridUnit * 1.6 Keys.onEscapePressed: event => { if (dialog.opened) { @@ -38,20 +40,20 @@ Kirigami.Dialog { contentItem: RowLayout { width: parent.width - Kirigami.Heading { - Layout.leftMargin: Kirigami.Units.largeSpacing + KC.Heading { + Layout.leftMargin: Platform.Units.largeSpacing text: dialog.title elide: Text.ElideRight } Item { Layout.fillWidth: true } - Kirigami.Icon { + Primitives.Icon { id: closeIcon Layout.alignment: Qt.AlignVCenter - Layout.rightMargin: Kirigami.Units.largeSpacing - Layout.preferredHeight: Kirigami.Units.iconSizes.smallMedium - Layout.preferredWidth: Kirigami.Units.iconSizes.smallMedium + Layout.rightMargin: Platform.Units.largeSpacing + Layout.preferredHeight: Platform.Units.iconSizes.smallMedium + Layout.preferredWidth: Platform.Units.iconSizes.smallMedium source: closeMouseArea.containsMouse ? "window-close" : "window-close-symbolic" active: closeMouseArea.containsMouse MouseArea { diff --git a/local/recipes/kde/kirigami/source/src/controls/private/PrivateActionToolButton.qml b/local/recipes/kde/kirigami/source/src/controls/private/PrivateActionToolButton.qml index b7a38eb81c..0016c63aa4 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/PrivateActionToolButton.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/PrivateActionToolButton.qml @@ -3,13 +3,16 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQml import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.layouts as KL +import org.kde.kirigami.platform as Platform QQC2.ToolButton { id: control @@ -20,16 +23,16 @@ QQC2.ToolButton { display: QQC2.ToolButton.TextBesideIcon - property bool showMenuArrow: !Kirigami.DisplayHint.displayHintSet(action, Kirigami.DisplayHint.HideChildIndicator) + property bool showMenuArrow: !KL.DisplayHint.displayHintSet(action, KL.DisplayHint.HideChildIndicator) + + property int position: QQC2.ToolBar.Header property list menuActions: { - if (action instanceof Kirigami.Action) { - return action.children; - } - return [] + return (action as KC.Action)?.children ?? [] } property Component menuComponent: ActionsMenu { + y: control.position === QQC2.ToolBar.Footer ? -height : 0 submenuComponent: ActionsMenu { } } @@ -64,8 +67,8 @@ QQC2.ToolButton { } } - visible: action instanceof Kirigami.Action ? action.visible : true - autoExclusive: action instanceof Kirigami.Action ? action.autoExclusive : false + visible: (action as KC.Action)?.visible ?? true + autoExclusive: (action as KC.Action)?.autoExclusive ?? false // Workaround for QTBUG-85941 Binding { @@ -99,15 +102,29 @@ QQC2.ToolButton { } QQC2.ToolTip { - visible: control.hovered && text.length > 0 && !(control.menu && control.menu.visible) && !control.pressed + visible: control.hovered && text.length > 0 && !(control.menu && control.menu.visible) && !control.pressed && !Platform.Settings.hasTransientTouchInput text: { const a = control.action; + const ka = a as KC.Action if (a) { - if (a.tooltip) { - return a.tooltip; - } else if (control.display === QQC2.Button.IconOnly) { - return a.text; + let tooltip; + // Use the defiend tooltip, otherwise fallback to the action's text where applicable. + // If the action has no text (bad!) then display the shortcut if defined. Ultimately display no tooltip in the worst case. + if (ka?.tooltip && ka?.tooltip !== ka.text) { + tooltip = ka.tooltip; + } else if (a.text && control.display === QQC2.Button.IconOnly) { + tooltip = a.text; + } else if (a.shortcut) { + return qsTranslate("@info:tooltip %1 is a keyboard shorcut", "Trigger this action with %1").arg(a.shortcut); + } else { + return ""; } + + // Add shortcut to an existing tooltip if defined. + if (a.shortcut) { + tooltip = qsTranslate("@info:tooltip %1 is the tooltip of an action, %2 is its keyboard shorcut", "%1 (%2)").arg(tooltip).arg(a.shortcut); + } + return tooltip; } return ""; } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/PullDownIndicator.qml b/local/recipes/kde/kirigami/source/src/controls/private/PullDownIndicator.qml index ea1dac5747..1f80a698eb 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/PullDownIndicator.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/PullDownIndicator.qml @@ -6,59 +6,68 @@ import QtQuick import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami import QtQuick.Shapes as QQShapes +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform -/** - * @brief A pull-down to refresh indicator that can be added to any Flickable or ScrollablePage. +/*! + \brief A pull-down to refresh indicator that can be added to any Flickable or ScrollablePage. + \internal */ Item { id: root //BEGIN properties - /** - * @brief The flickable that this indicator is attached to. - * - * If this is not set, the indicator will search for a Flickable in its parent chain. + /*! + \brief The flickable that this indicator is attached to. + + If this is not set, the indicator will search for a Flickable in its parent chain. */ property Flickable flickable: { let candidate = parent while (candidate) { if (candidate instanceof Flickable) { - return candidate - } else if (candidate instanceof Kirigami.ScrollablePage) { - return candidate.flickable + return candidate as Flickable + } else if (candidate instanceof KC.ScrollablePage) { + return (candidate as KC.ScrollablePage).flickable as Flickable } candidate = candidate.parent } return null; } - /** - * @brief Whether to show the busy indicator at the top of the flickable - * - * This should be set to true whenever a refresh is in progress. It should typically - * be set to true whe triggered() is emitted, and set to false when the refresh is - * complete. This is not done automatically because the refresh may be triggered - * from outside the indicator. + /*! + \brief Whether to show the busy indicator at the top of the flickable + + This should be set to true whenever a refresh is in progress. It should typically + be set to true when triggered() is emitted, and set to false when the refresh is + complete. This is not done automatically because the refresh may be triggered + from outside the indicator. */ property bool active: false - /** - * @brief How far the flickable has been pulled down, between 0 (not at all) and 1 (where a refresh is triggered). + /*! + \brief How far the flickable has been pulled down, between 0 (not at all) and 1 (where a refresh is triggered). */ readonly property real progress: !refreshing ? Math.min(-Math.min(flickable?.verticalOvershoot ?? 0, 0) / indicatorContainer.height, 1) : 0 - /** - * @brief Time to wait after the flickable has been pulled down before triggering a refresh - * - * This gives the user a chance to back out of the refresh if they release the flickable - * before the refreshDelay has elapsed. + /*! + \brief Whether the Flickable or ScrollablePage is actively asking for a refresh + + This should be bound to a ScrollablePage's refreshing value. + */ + property bool refreshing: false + + /*! + \brief Time to wait after the flickable has been pulled down before triggering a refresh + + This gives the user a chance to back out of the refresh if they release the flickable + before the refreshDelay has elapsed. */ property int refreshDelay: 500 - /** - * @brief emitted when the flickable is pulled down far enough to trigger a refresh + /*! + \brief emitted when the flickable is pulled down far enough to trigger a refresh */ signal triggered() //END properties @@ -67,12 +76,12 @@ Item { id: indicatorContainer parent: root.flickable anchors { - bottom: parent?.contentItem?.top + bottom: (parent as Flickable)?.contentItem?.top bottomMargin: root.flickable.topMargin } - width: flickable?.width - height: Kirigami.Units.gridUnit * 4 + width: root.flickable?.width + height: Platform.Units.gridUnit * 4 QQC2.BusyIndicator { id: busyIndicator z: 1 @@ -85,18 +94,18 @@ Item { id: spinnerProgress anchors { fill: busyIndicator - margins: Kirigami.Units.smallSpacing + margins: Platform.Units.smallSpacing } visible: !root.active && root.progress > 0 QQShapes.ShapePath { - strokeWidth: Kirigami.Units.smallSpacing - strokeColor: Kirigami.Theme.highlightColor + strokeWidth: Platform.Units.smallSpacing + strokeColor: Platform.Theme.highlightColor fillColor: "transparent" PathAngleArc { centerX: spinnerProgress.width / 2 centerY: spinnerProgress.height / 2 - radiusX: spinnerProgress.width / 2 - Kirigami.Units.smallSpacing / 2 - radiusY: spinnerProgress.height / 2 - Kirigami.Units.smallSpacing / 2 + radiusX: spinnerProgress.width / 2 - Platform.Units.smallSpacing / 2 + radiusY: spinnerProgress.height / 2 - Platform.Units.smallSpacing / 2 startAngle: 0 sweepAngle: 360 * root.progress } @@ -118,18 +127,16 @@ Item { name: "active" when: root.active PropertyChanges { - target: indicatorContainer - anchors.bottomMargin: root.flickable.topMargin - indicatorContainer.height + indicatorContainer.anchors.bottomMargin: root.flickable.topMargin - indicatorContainer.height } PropertyChanges { - target: root.flickable explicit: true // this is not a loop because of explicit:true above // It adds the height of the indicator to the topMargin of the flickable // when we enter the active state; the change is automatically reversed // when returning to the base state. - topMargin: indicatorContainer.height + root.flickable.topMargin + root.flickable.topMargin: indicatorContainer.height + root.flickable.topMargin } } ] @@ -144,7 +151,7 @@ Item { target: root.flickable properties: "topMargin" easing.type: Easing.InOutQuad - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration } } ] diff --git a/local/recipes/kde/kirigami/source/src/controls/private/SwipeItemEventFilter.qml b/local/recipes/kde/kirigami/source/src/controls/private/SwipeItemEventFilter.qml index 24f2d9a0ae..ecf17c9edc 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/SwipeItemEventFilter.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/SwipeItemEventFilter.qml @@ -5,7 +5,7 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform MouseArea { @@ -21,7 +21,7 @@ MouseArea { property real peek preventStealing: true - width: Kirigami.Units.gridUnit + width: Platform.Units.gridUnit onPressed: mouse => { const mapped = mapToItem(parent.flickableItem.contentItem, mouse.x, mouse.y); currentItem = parent.flickableItem.itemAt(mapped.x, mapped.y); diff --git a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/AbstractPageHeader.qml b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/AbstractPageHeader.qml deleted file mode 100644 index 49c378c5b9..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/AbstractPageHeader.qml +++ /dev/null @@ -1,55 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2018 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import org.kde.kirigami as Kirigami - -Kirigami.AbstractApplicationHeader { - id: root - // anchors.fill: parent - property Item container - property bool current - - minimumHeight: pageRow ? pageRow.globalToolBar.minimumHeight : Kirigami.Units.iconSizes.medium + Kirigami.Units.smallSpacing * 2 - maximumHeight: pageRow ? pageRow.globalToolBar.maximumHeight : minimumHeight - preferredHeight: pageRow ? pageRow.globalToolBar.preferredHeight : minimumHeight - - separatorVisible: pageRow ? pageRow.globalToolBar.separatorVisible : true - - Kirigami.Theme.colorSet: pageRow ? pageRow.globalToolBar.colorSet : Kirigami.Theme.Header - - leftPadding: pageRow - ? Math.min( - width / 2, - Math.max( - (page.title.length > 0 ? pageRow.globalToolBar.titleLeftPadding : 0), - Qt.application.layoutDirection === Qt.LeftToRight - ? Math.min(pageRow.globalToolBar.leftReservedSpace, - pageRow.Kirigami.ScenePosition.x - - page.Kirigami.ScenePosition.x - + pageRow.globalToolBar.leftReservedSpace) - + Kirigami.Units.smallSpacing - : Math.min(pageRow.globalToolBar.leftReservedSpace, - -pageRow.width - + pageRow.Kirigami.ScenePosition.x - + page.Kirigami.ScenePosition.x - + page.width - + pageRow.globalToolBar.leftReservedSpace) - + Kirigami.Units.smallSpacing)) - : Kirigami.Units.smallSpacing - rightPadding: pageRow - ? Math.max(0, - Qt.application.layoutDirection === Qt.LeftToRight - ? (-pageRow.width - - pageRow.Kirigami.ScenePosition.x - + page.width - + page.Kirigami.ScenePosition.x - + pageRow.globalToolBar.rightReservedSpace) - : (pageRow.Kirigami.ScenePosition.x - - page.Kirigami.ScenePosition.x - + pageRow.globalToolBar.rightReservedSpace)) - : 0 -} diff --git a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/BreadcrumbControl.qml b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/BreadcrumbControl.qml index a21822808b..314fd2b772 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/BreadcrumbControl.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/BreadcrumbControl.qml @@ -4,171 +4,209 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick +import QtQuick.Controls as QQC import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives -ListView { +RowLayout { id: root - readonly property Kirigami.PageRow pageRow: { + readonly property KC.PageRow pageRow: { // This is fetched from breadcrumbLoader in PageRowGlobalToolBarUI.qml const pr = parent?.pageRow ?? null; - return pr as Kirigami.PageRow; + return pr as KC.PageRow; } - currentIndex: { - if (!pageRow) { - return -1; - } - // This ListView is eventually consistent with PageRow, so it has to - // force-refresh currentIndex when its count finally catches up, - // otherwise currentIndex might get reset and stuck at -1. - void count; - // TODO: This "eventual consistency" causes Behavior on contentX to - // scroll from the start each time a page is added. Besides, simple - // number is not the most efficient model, because ListView - // recreates all delegates when number changes. + // No spacing as the separator will be the thing that visually clips the ListView + spacing: 0 - if (pageRow.layers.depth > 1) { - // First layer (index 0) is the main columnView. - // Since it is ignored, depth has to be adjusted by 1. - // In case of layers, current index is always the last one, - // which is one less than their count, thus minus another 1. - return pageRow.layers.depth - 2; - } else { - return pageRow.currentIndex; - } + HandleButton { + drawer: QQC.ApplicationWindow.window?.globalDrawer + visible: drawer !== null } - // This function exists outside of delegate, so that when popping layers - // the JavaScript execution context won't be destroyed along with delegate. - function selectIndex(index: int) { - if (!pageRow) { - return; - } - if (pageRow.layers.depth > 1) { - // First layer (index 0) is the main columnView. - // Since it is ignored, index has to be adjusted by 1. - // We want to pop anything after selected index, - // turning selected layer into current one, thus plus another 1. - while (pageRow.layers.depth > index + 2) { - pageRow.layers.pop(); - } - } else { - pageRow.currentIndex = index; - } + NavigationButtons { + id: navButtons + pageStack: root.pageRow + page: root.pageRow.currentItem } - contentHeight: height - clip: true - orientation: ListView.Horizontal - boundsBehavior: Flickable.StopAtBounds - interactive: Kirigami.Settings.hasTransientTouchInput - - contentX: { - if (!currentItem) { - return 0; - } - // preferred position: current item is centered within viewport - const preferredPosition = currentItem.x + (currentItem.width - width) / 2; - - // Note: Order of min/max is important. Make sure to test on all sorts - // and sizes before committing changes to this formula. - if (LayoutMirroring.enabled) { - // In a mirrored ListView contentX starts from left edge and increases to the left. - const maxLeftPosition = -contentWidth; - const minRightPosition = -width; - return Math.round(Math.min(minRightPosition, Math.max(preferredPosition, maxLeftPosition))); - } else { - const minLeftPosition = 0; - const maxRightPosition = contentWidth - width; - return Math.round(Math.max(minLeftPosition, Math.min(preferredPosition, maxRightPosition))); - } + Primitives.Separator { + Layout.fillHeight: true + Layout.topMargin: Platform.Units.largeSpacing + Layout.bottomMargin: Platform.Units.largeSpacing + Platform.Theme.colorSet: Platform.Theme.Header + Platform.Theme.inherit: false + visible: navButtons.visible } - Behavior on contentX { - NumberAnimation { - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutQuad - } - } + ListView { + id: list + Layout.fillWidth: true + Layout.fillHeight: true - model: { - if (!root.pageRow) { - return null; - } - if (root.pageRow.layers.depth > 1) { - // First layer (index 0) is the main columnView; ignore it. - return root.pageRow.layers.depth - 1; - } else { - return root.pageRow.depth; - } - } - - delegate: MouseArea { - id: delegate - - required property int index - - // We can't use Kirigami.Page here instead of Item since we now accept - // pushing PageRow to a new layer. - readonly property Item page: { + currentIndex: { if (!root.pageRow) { - return null; + return -1; + } + // This ListView is eventually consistent with PageRow, so it has to + // force-refresh currentIndex when its count finally catches up, + // otherwise currentIndex might get reset and stuck at -1. + void count; + // TODO: This "eventual consistency" causes Behavior on contentX to + // scroll from the start each time a page is added. Besides, simple + // number is not the most efficient model, because ListView + // recreates all delegates when number changes. + + if (root.pageRow.layers.depth > 1) { + // First layer (index 0) is the main columnView. + // Since it is ignored, depth has to be adjusted by 1. + // In case of layers, current index is always the last one, + // which is one less than their count, thus minus another 1. + return root.pageRow.layers.depth - 2; + } else { + return root.pageRow.currentIndex; + } + } + + // This function exists outside of delegate, so that when popping layers + // the JavaScript execution context won't be destroyed along with delegate. + function selectIndex(index: int) { + if (!root.pageRow) { + return; } if (root.pageRow.layers.depth > 1) { // First layer (index 0) is the main columnView. // Since it is ignored, index has to be adjusted by 1. - return pageRow.layers.get(index + 1); + // We want to pop anything after selected index, + // turning selected layer into current one, thus plus another 1. + while (root.pageRow.layers.depth > index + 2) { + root.pageRow.layers.pop(); + } } else { - return pageRow.get(index); + root.pageRow.currentIndex = index; } } + contentHeight: height + clip: true + orientation: ListView.Horizontal + boundsBehavior: Flickable.StopAtBounds + interactive: Platform.Settings.hasTransientTouchInput - width: Math.ceil(layout.implicitWidth) - height: ListView.view?.height ?? 0 - - hoverEnabled: !Kirigami.Settings.tabletMode - - onClicked: mouse => { - root.selectIndex(index); - } - - // background - Rectangle { - color: Kirigami.Theme.highlightColor - anchors.fill: parent - radius: Kirigami.Units.cornerRadius - opacity: root.count > 1 && parent.containsMouse ? 0.1 : 0 - } - - // content - RowLayout { - id: layout - anchors.fill: parent - spacing: 0 - - Kirigami.Icon { - visible: delegate.index > 0 - Layout.alignment: Qt.AlignVCenter - Layout.preferredHeight: Kirigami.Units.iconSizes.small - Layout.preferredWidth: Kirigami.Units.iconSizes.small - isMask: true - color: Kirigami.Theme.textColor - source: LayoutMirroring.enabled ? "go-next-symbolic-rtl" : "go-next-symbolic" + contentX: { + if (!currentItem) { + return 0; } - Kirigami.Heading { - Layout.leftMargin: Kirigami.Units.largeSpacing - Layout.rightMargin: Kirigami.Units.largeSpacing - color: Kirigami.Theme.textColor - verticalAlignment: Text.AlignVCenter - wrapMode: Text.NoWrap - text: delegate.page?.title ?? "" - opacity: delegate.ListView.isCurrentItem ? 1 : 0.4 + // preferred position: current item is centered within viewport + const preferredPosition = currentItem.x + (currentItem.width - width) / 2; + + // Note: Order of min/max is important. Make sure to test on all sorts + // and sizes before committing changes to this formula. + if (LayoutMirroring.enabled) { + // In a mirrored ListView contentX starts from left edge and increases to the left. + const maxLeftPosition = -contentWidth; + const minRightPosition = -width; + return Math.round(Math.min(minRightPosition, Math.max(preferredPosition, maxLeftPosition))); + } else { + const minLeftPosition = 0; + const maxRightPosition = contentWidth - width; + return Math.round(Math.max(minLeftPosition, Math.min(preferredPosition, maxRightPosition))); + } + } + + Behavior on contentX { + NumberAnimation { + duration: Platform.Units.longDuration + easing.type: Easing.InOutQuad + } + } + + model: { + if (!root.pageRow) { + return null; + } + if (root.pageRow.layers.depth > 1) { + // First layer (index 0) is the main columnView; ignore it. + return root.pageRow.layers.depth - 1; + } else { + return root.pageRow.depth; + } + } + + delegate: MouseArea { + id: delegate + + required property int index + + // We can't use KC.Page here instead of Item since we now accept + // pushing PageRow to a new layer. + readonly property Item page: { + if (!root.pageRow) { + return null; + } + if (root.pageRow.layers.depth > 1) { + // First layer (index 0) is the main columnView. + // Since it is ignored, index has to be adjusted by 1. + return root.pageRow.layers.get(index + 1); + } else { + return root.pageRow.get(index); + } + } + + + width: Math.ceil(layout.implicitWidth) + height: ListView.view?.height ?? 0 + + hoverEnabled: !Platform.Settings.tabletMode + + onClicked: mouse => { + list.selectIndex(index); + } + + // background + Rectangle { + color: Platform.Theme.highlightColor + anchors.fill: parent + radius: Platform.Units.cornerRadius + opacity: list.count > 1 && parent.containsMouse ? 0.1 : 0 + } + + // content + RowLayout { + id: layout + anchors.fill: parent + spacing: 0 + + Primitives.Icon { + visible: delegate.index > 0 + Layout.alignment: Qt.AlignVCenter + Layout.preferredHeight: Platform.Units.iconSizes.small + Layout.preferredWidth: Platform.Units.iconSizes.small + isMask: true + color: Platform.Theme.textColor + source: LayoutMirroring.enabled ? "go-next-symbolic-rtl" : "go-next-symbolic" + } + KC.Heading { + Layout.leftMargin: Platform.Units.largeSpacing + Layout.rightMargin: Platform.Units.largeSpacing + color: Platform.Theme.textColor + verticalAlignment: Text.AlignVCenter + wrapMode: Text.NoWrap + text: delegate.page?.title ?? "" + opacity: delegate.ListView.isCurrentItem ? 1 : 0.4 + } } } } + + HandleButton { + drawer: QQC.ApplicationWindow.window?.contextDrawer + visible: drawer !== null + } } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarStyleGroup.qml b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarStyleGroup.qml index 7798f98126..5570bc75a6 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarStyleGroup.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarStyleGroup.qml @@ -5,50 +5,54 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.layouts as KL QtObject { id: globalToolBar - property int style: Kirigami.ApplicationHeaderStyle.None + property int style: KC.ApplicationHeaderStyle.None readonly property int actualStyle: { - if (style === Kirigami.ApplicationHeaderStyle.Auto) { - if (!Kirigami.Settings.isMobile) { - return Kirigami.ApplicationHeaderStyle.ToolBar + if (style === KC.ApplicationHeaderStyle.Auto) { + if (!Platform.Settings.isMobile) { + return KC.ApplicationHeaderStyle.ToolBar } else if (root.wideMode) { - return Kirigami.ApplicationHeaderStyle.Titles + return KC.ApplicationHeaderStyle.Titles } else { - return Kirigami.ApplicationHeaderStyle.Breadcrumb + return KC.ApplicationHeaderStyle.Breadcrumb } } return style; } - /** @property kirigami::ApplicationHeaderStyle::NavigationButtons */ - property int showNavigationButtons: (!Kirigami.Settings.isMobile || Qt.platform.os === "ios") - ? (Kirigami.ApplicationHeaderStyle.ShowBackButton | Kirigami.ApplicationHeaderStyle.ShowForwardButton) - : Kirigami.ApplicationHeaderStyle.NoNavigationButtons + /*! @property kirigami::ApplicationHeaderStyle::NavigationButtons */ + property int showNavigationButtons: (!Platform.Settings.isMobile || Qt.platform.os === "ios") + ? (KC.ApplicationHeaderStyle.ShowBackButton | KC.ApplicationHeaderStyle.ShowForwardButton) + : KC.ApplicationHeaderStyle.NoNavigationButtons property bool separatorVisible: true - //Unfortunately we can't access pageRow.globalToolbar.Kirigami.Theme directly in a declarative way - property int colorSet: Kirigami.Theme.Header + //Unfortunately we can't access pageRow.globalToolbar.Platform.Theme directly in a declarative way + property int colorSet: Platform.Theme.Header // whether or not the header should be // "pushed" back when scrolling using the // touch screen property bool hideWhenTouchScrolling: false - /** + /*! * If true, when any kind of toolbar is shown, the drawer handles will be shown inside the toolbar, if they're present */ property bool canContainHandles: true property int toolbarActionAlignment: Qt.AlignRight - property int toolbarActionHeightMode: Kirigami.ToolBarLayout.ConstrainIfLarger + property int toolbarActionHeightMode: KL.ToolBarLayout.ConstrainIfLarger - property int minimumHeight: 0 - // FIXME: Figure out the exact standard size of a Toolbar - property int preferredHeight: (actualStyle === Kirigami.ApplicationHeaderStyle.ToolBar - ? Kirigami.Units.iconSizes.medium - : Kirigami.Units.gridUnit * 1.8) + Kirigami.Units.smallSpacing * 2 - property int maximumHeight: preferredHeight + property real minimumHeight: 0 + + // NOTE: This 40 comes from Breeze but there are not magic units to get it from for now + property real preferredHeight: 40 + 6 + (safeArea ? safeArea.margins.top : 0) // 6 is ToolBar_ItemMargin in BreezeMetrics + property real maximumHeight: preferredHeight // Sets the minimum leading padding for the title in a page header - property int titleLeftPadding: Kirigami.Units.gridUnit + property int titleLeftPadding: Platform.Units.gridUnit + + // safe area margins from the item containing the toolbar + property SafeArea safeArea } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml index 5d14fce107..ff1ad13491 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml @@ -5,19 +5,21 @@ */ import QtQuick -import QtQuick.Controls as QQC2 -import QtQuick.Layouts -import org.kde.kirigami as Kirigami -import "../../templates" as KT -import "../../templates/private" as TP -import "../" as P +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.templates as KT -Kirigami.AbstractApplicationHeader { +KC.AbstractApplicationHeader { id: header - readonly property int leftReservedSpace: (buttonsLayout.visible && buttonsLayout.visibleChildren.length > 0 ? buttonsLayout.width + Kirigami.Units.smallSpacing : 0) // Take into account the layout margins the nav buttons have - + (leftHandleAnchor.visible ? leftHandleAnchor.width : 0) - + (menuButton.visible ? menuButton.width : 0) - readonly property int rightReservedSpace: rightHandleAnchor.visible ? rightHandleAnchor.width + Kirigami.Units.smallSpacing : 0 + readonly property int leftReservedSpace: { + let space = Platform.Units.smallSpacing; + if (leftHandleAnchor.visible) { + space += leftHandleAnchor.width; + } + return space + } + readonly property int rightReservedSpace: rightHandleAnchor.visible ? rightHandleAnchor.width + Platform.Units.smallSpacing : 0 readonly property alias leftHandleAnchor: leftHandleAnchor readonly property alias rightHandleAnchor: rightHandleAnchor @@ -39,119 +41,48 @@ Kirigami.AbstractApplicationHeader { return false; } const item = breadcrumbLoader.pageRow?.[itemProperty] as Item; - const style = item?.globalToolBarStyle ?? Kirigami.ApplicationHeaderStyle.None; - return globalToolBar.canContainHandles || style === Kirigami.ApplicationHeaderStyle.ToolBar; + const style = item?.globalToolBarStyle ?? KC.ApplicationHeaderStyle.None; + return globalToolBar.canContainHandles || style === KC.ApplicationHeaderStyle.ToolBar; } - height: visible ? implicitHeight : 0 + Primitives.AlignedSize.height: visible ? implicitHeight : 0 minimumHeight: globalToolBar.minimumHeight preferredHeight: globalToolBar.preferredHeight maximumHeight: globalToolBar.maximumHeight separatorVisible: globalToolBar.separatorVisible + background.visible: breadcrumbLoader.active + Platform.Theme.colorSet: globalToolBar.colorSet - Kirigami.Theme.colorSet: globalToolBar.colorSet + Item { + id: leftHandleAnchor + anchors.left: parent.left + visible: header.__shouldHandleAnchorBeVisible(leftHandleAnchor, "globalDrawer", "leadingVisibleItem") - RowLayout { - anchors.fill: parent - spacing: 0 - - Item { - Layout.preferredWidth: applicationWindow().pageStack.globalToolBar.leftReservedSpace - visible: applicationWindow().pageStack !== root - } - - Item { - id: leftHandleAnchor - visible: header.__shouldHandleAnchorBeVisible(leftHandleAnchor, "globalDrawer", "leadingVisibleItem") - - Layout.preferredHeight: Math.max(backButton.implicitHeight, parent.height) - Layout.preferredWidth: height - } - - P.PrivateActionToolButton { - id: menuButton - visible: !Kirigami.Settings.isMobile && applicationWindow().globalDrawer && "isMenu" in applicationWindow().globalDrawer && applicationWindow().globalDrawer.isMenu - icon.name: "open-menu-symbolic" - showMenuArrow: false - - Layout.preferredHeight: Math.min(backButton.implicitHeight, parent.height) - Layout.preferredWidth: height - Layout.leftMargin: Kirigami.Units.smallSpacing - - action: Kirigami.Action { - children: applicationWindow().globalDrawer && applicationWindow().globalDrawer.actions ? applicationWindow().globalDrawer.actions : [] - tooltip: checked ? qsTr("Close menu") : qsTr("Open menu") - } - Accessible.name: action.tooltip - - Connections { - // Only target the GlobalDrawer when it *is* a GlobalDrawer, since - // it can be something else, and that something else probably - // doesn't have an isMenuChanged() signal. - target: applicationWindow().globalDrawer as Kirigami.GlobalDrawer - function onIsMenuChanged() { - if (!applicationWindow().globalDrawer.isMenu && menuButton.menu) { - menuButton.menu.dismiss() - } - } - } - } - - RowLayout { - id: buttonsLayout - Layout.fillHeight: true - Layout.preferredHeight: Math.max(backButton.visible ? backButton.implicitHeight : 0, forwardButton.visible ? forwardButton.implicitHeight : 0) - - Layout.leftMargin: leftHandleAnchor.visible ? Kirigami.Units.smallSpacing : 0 - - visible: (globalToolBar.showNavigationButtons !== Kirigami.ApplicationHeaderStyle.NoNavigationButtons || applicationWindow().pageStack.layers.depth > 1 && !(applicationWindow().pageStack.layers.currentItem instanceof Kirigami.PageRow || header.layerIsMainRow)) - && globalToolBar.actualStyle !== Kirigami.ApplicationHeaderStyle.None - - Layout.maximumWidth: visibleChildren.length > 0 ? Layout.preferredWidth : 0 - - TP.BackButton { - id: backButton - Layout.leftMargin: leftHandleAnchor.visible ? 0 : Kirigami.Units.smallSpacing - Layout.minimumWidth: implicitHeight - Layout.minimumHeight: implicitHeight - Layout.maximumHeight: buttonsLayout.height - } - TP.ForwardButton { - id: forwardButton - Layout.minimumWidth: implicitHeight - Layout.minimumHeight: implicitHeight - Layout.maximumHeight: buttonsLayout.height - } - } - - QQC2.ToolSeparator { - visible: (menuButton.visible || (buttonsLayout.visible && buttonsLayout.visibleChildren.length > 0)) && breadcrumbVisible && pageRow.depth > 1 - } - - Loader { - id: breadcrumbLoader - Layout.fillWidth: true - Layout.fillHeight: true - Layout.minimumHeight: -1 - Layout.preferredHeight: -1 - property Kirigami.PageRow pageRow: root - - asynchronous: true - - active: globalToolBar.actualStyle === Kirigami.ApplicationHeaderStyle.Breadcrumb - && header.currentItem - && header.currentItem.globalToolBarStyle !== Kirigami.ApplicationHeaderStyle.None - - source: Qt.resolvedUrl("BreadcrumbControl.qml") - } - - Item { - id: rightHandleAnchor - visible: header.__shouldHandleAnchorBeVisible(rightHandleAnchor, "contextDrawer", "trailingVisibleItem") - - Layout.preferredHeight: Math.max(backButton.implicitHeight, parent.height) - Layout.preferredWidth: height - } + width: height + height: parent.height + } + + Item { + id: rightHandleAnchor + visible: header.__shouldHandleAnchorBeVisible(rightHandleAnchor, "contextDrawer", "trailingVisibleItem") + + width: height + height: parent.height + } + + Loader { + id: breadcrumbLoader + anchors.fill: parent + + property KC.PageRow pageRow: root + + asynchronous: true + + active: header.layerIsMainRow + && globalToolBar.actualStyle === KC.ApplicationHeaderStyle.Breadcrumb + && header.currentItem + && header.currentItem.globalToolBarStyle !== KC.ApplicationHeaderStyle.None + + source: Qt.resolvedUrl("BreadcrumbControl.qml") } - background.opacity: breadcrumbLoader.active ? 1 : 0 } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/TitlesPageHeader.qml b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/TitlesPageHeader.qml deleted file mode 100644 index c14d7804df..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/TitlesPageHeader.qml +++ /dev/null @@ -1,30 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2018 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Layouts - -AbstractPageHeader { - id: root - - Loader { - id: titleLoader - - anchors { - verticalCenter: parent.verticalCenter - left: parent.left - right: parent.right - } - height: Math.min(root.height, item - ? (item.Layout.preferredHeight > 0 ? item.Layout.preferredHeight : item.implicitHeight) - : 0) - - // Don't load async to prevent jumpy behaviour on slower devices as it loads in. - // If the title delegate really needs to load async, it should be its responsibility to do it itself. - asynchronous: false - sourceComponent: page ? page.titleDelegate : null - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageFooter.qml b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageFooter.qml index bee6f392c3..d723e2776e 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageFooter.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageFooter.qml @@ -6,7 +6,8 @@ import QtQuick import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.platform as Platform QQC2.ToolBar { id: root @@ -16,7 +17,7 @@ QQC2.ToolBar { id: appearAnim target: root property: "height" - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } @@ -34,8 +35,9 @@ QQC2.ToolBar { } } - contentItem: Kirigami.ActionToolBar { + contentItem: KC.ActionToolBar { display: QQC2.Button.TextUnderIcon + position: QQC2.ToolBar.Footer alignment: Qt.AlignCenter actions: root.parent.page.actions } diff --git a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageHeader.qml b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageHeader.qml index 62711ae201..2f824057d3 100644 --- a/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageHeader.qml +++ b/local/recipes/kde/kirigami/source/src/controls/private/globaltoolbar/ToolBarPageHeader.qml @@ -5,20 +5,43 @@ */ import QtQuick +import QtQuick.Controls as QQC +import QtQuick.Window import QtQml import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KC +import org.kde.kirigami.layouts as KL +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.templates as KT +import ".." as KP -AbstractPageHeader { +KC.AbstractApplicationHeader { id: root - implicitWidth: layout.implicitWidth + Kirigami.Units.smallSpacing * 2 - implicitHeight: Math.max(titleLoader.implicitHeight, toolBar.implicitHeight) + Kirigami.Units.smallSpacing * 2 + // pageRow.globalToolBar.*Height already include the paddings + minimumHeight: pageRow ? pageRow.globalToolBar.minimumHeight : Platform.Units.iconSizes.medium + Platform.Units.smallSpacing * 2 + maximumHeight: pageRow ? pageRow.globalToolBar.maximumHeight : minimumHeight + preferredHeight: pageRow ? pageRow.globalToolBar.preferredHeight : minimumHeight + + separatorVisible: pageRow ? pageRow.globalToolBar.separatorVisible : true + + Platform.Theme.colorSet: pageRow ? pageRow.globalToolBar.colorSet : Platform.Theme.Header + + implicitWidth: layout.implicitWidth + Platform.Units.smallSpacing * 2 + implicitHeight: Math.max(titleLoader.implicitHeight, toolBar.implicitHeight) + Platform.Units.smallSpacing * 2 + + onActiveFocusChanged: if (activeFocus && toolBar.actions.length > 0) { + toolBar.contentItem.visibleChildren[0].forceActiveFocus(Qt.TabFocusReason) + } + + leftPadding: Platform.Units.mediumSpacing + rightPadding: Platform.Units.mediumSpacing MouseArea { anchors.fill: parent onPressed: mouse => { - page.forceActiveFocus() + root.page.forceActiveFocus() mouse.accepted = false } } @@ -26,36 +49,91 @@ AbstractPageHeader { RowLayout { id: layout anchors.fill: parent - anchors.rightMargin: Kirigami.Units.smallSpacing - spacing: Kirigami.Units.smallSpacing + spacing: Platform.Units.smallSpacing + + Primitives.Separator { + id: separator + Layout.fillHeight: true + // This must appear at the control edges, disregarding the padding + Layout.leftMargin: -root.leftPadding + Platform.Theme.colorSet: Platform.Theme.Header + Platform.Theme.inherit: false + visible: root.pageRow?.separatorVisible && !navButtons.visible && root.page?.KL.ColumnView.view?.leadingVisibleItem !== root.page + } + + HandleButton { + id: leadingHandle + drawer: QQC.ApplicationWindow.window?.globalDrawer ?? null + visible: { + if (!root.pageRow) { + return false; + } + let firstVisible = false; + const previousPage = root.pageRow.get(root.page.KL.ColumnView.index - 1); + if (previousPage) { + firstVisible = previousPage.x - root.pageRow.columnView.contentX < -previousPage.width / 2; + } else { + firstVisible = true; + } + + return drawer !== null + && ((drawer.handleVisible && drawer.enabled) || ((drawer as KC.GlobalDrawer)?.isMenu ?? false)) + && (root.pageRow.columnView.columnResizeMode === KL.ColumnView.SingleColumn + || firstVisible); + } + } + + NavigationButtons { + id: navButtons + page: root.page + pageStack: root.pageRow + } Loader { id: titleLoader - + // Don't need space on the first item Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter - Layout.fillWidth: item?.Layout.fillWidth ?? false - Layout.minimumWidth: item?.Layout.minimumWidth ?? -1 - Layout.preferredWidth: item?.Layout.preferredWidth ?? -1 - Layout.maximumWidth: item?.Layout.maximumWidth ?? -1 + Layout.fillWidth: (item as Item)?.Layout.fillWidth ?? false + Layout.minimumWidth: (item as Item)?.Layout.minimumWidth ?? -1 + Layout.preferredWidth: (item as Item)?.Layout.preferredWidth ?? -1 + Layout.maximumWidth: (item as Item)?.Layout.maximumWidth ?? -1 + Layout.leftMargin: { + if (!(item instanceof KP.DefaultPageTitleDelegate)) { + return 0; + } + if (!root.pageRow || navButtons.visible || leadingHandle.visible) { + return 0; + } else if (separator.visible) { + return root.pageRow.globalToolBar.titleLeftPadding - layout.spacing - root.leftPadding; + } + return root.pageRow.globalToolBar.titleLeftPadding - root.leftPadding; + } // Don't load async to prevent jumpy behaviour on slower devices as it loads in. // If the title delegate really needs to load async, it should be its responsibility to do it itself. asynchronous: false - sourceComponent: page?.titleDelegate ?? null + sourceComponent: root.page?.titleDelegate ?? null } - Kirigami.ActionToolBar { + KC.ActionToolBar { id: toolBar Layout.alignment: Qt.AlignVCenter Layout.fillWidth: true Layout.fillHeight: true - visible: actions.length > 0 - alignment: pageRow?.globalToolBar.toolbarActionAlignment ?? Qt.AlignRight - heightMode: pageRow?.globalToolBar.toolbarActionHeightMode ?? Kirigami.ToolBarLayout.ConstrainIfLarger + alignment: root.pageRow?.globalToolBar.toolbarActionAlignment ?? Qt.AlignRight + heightMode: root.pageRow?.globalToolBar.toolbarActionHeightMode ?? KL.ToolBarLayout.ConstrainIfLarger - actions: page?.actions ?? [] + actions: root.page && root.page.globalToolBarStyle === KC.ApplicationHeaderStyle.ToolBar ? root.page?.actions : [] + } + + HandleButton { + drawer: QQC.ApplicationWindow.window?.contextDrawer ?? null + visible: drawer !== null + && drawer.handleVisible && drawer.enabled + && (pageStack.columnView.columnResizeMode === KL.ColumnView.SingleColumn + || root.page.KL.ColumnView.view?.trailingVisibleItem === root.page) } } } diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/AbstractApplicationHeader.qml b/local/recipes/kde/kirigami/source/src/controls/templates/AbstractApplicationHeader.qml deleted file mode 100644 index 88f6f7317b..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/AbstractApplicationHeader.qml +++ /dev/null @@ -1,201 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2015 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Layouts -import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami - -/** - * @brief An item that can be used as a title for the application. - * - * Scrolling the main page will make it taller or shorter (through the point of going away) - * It's a behavior similar to the typical mobile web browser addressbar - * the minimum, preferred and maximum heights of the item can be controlled with - * * minimumHeight: default is 0, i.e. hidden - * * preferredHeight: default is Units.gridUnit * 1.6 - * * maximumHeight: default is Units.gridUnit * 3 - * - * To achieve a titlebar that stays completely fixed just set the 3 sizes as the same - * - * @inherit QtQuick.Item - */ -Item { - id: root - z: 90 - property int minimumHeight: 0 - // Use an inline arrow function, referring to an external normal function makes QV4 crash, see https://bugreports.qt.io/browse/QTBUG-119395 - property int preferredHeight: mainItem.children.reduce((accumulator, item) => { - return Math.max(accumulator, item.implicitHeight); - }, 0) + topPadding + bottomPadding - property int maximumHeight: Kirigami.Units.gridUnit * 3 - - property int position: QQC2.ToolBar.Header - - property Kirigami.PageRow pageRow: __appWindow?.pageStack ?? null - property Kirigami.Page page: pageRow?.currentItem as Kirigami.Page ?? null - - default property alias contentItem: mainItem.data - readonly property int paintedHeight: headerItem.y + headerItem.height - 1 - - property int leftPadding: 0 - property int topPadding: 0 - property int rightPadding: 0 - property int bottomPadding: 0 - property bool separatorVisible: true - - /** - * This property specifies whether the header should be pushed back when - * scrolling using the touch screen. - */ - property bool hideWhenTouchScrolling: root.pageRow?.globalToolBar.hideWhenTouchScrolling ?? false - - LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft - LayoutMirroring.childrenInherit: true - - Kirigami.Theme.inherit: true - - // FIXME: remove - property QtObject __appWindow: typeof applicationWindow !== "undefined" ? applicationWindow() : null - implicitHeight: preferredHeight - height: Layout.preferredHeight - - /** - * @brief This property holds the background item. - * @note the background will be automatically sized to fill the whole control - */ - property Item background - - onBackgroundChanged: { - background.z = -1; - background.parent = headerItem; - background.anchors.fill = headerItem; - } - - Component.onCompleted: AppHeaderSizeGroup.items.push(this) - - onMinimumHeightChanged: implicitHeight = preferredHeight; - onPreferredHeightChanged: implicitHeight = preferredHeight; - - opacity: height > 0 ? 1 : 0 - - NumberAnimation { - id: heightAnim - target: root - property: "implicitHeight" - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutQuad - } - - Connections { - target: root.__appWindow - - function onControlsVisibleChanged() { - heightAnim.from = root.implicitHeight; - heightAnim.to = root.__appWindow.controlsVisible ? root.preferredHeight : 0; - heightAnim.restart(); - } - } - - Connections { - target: root.page?.Kirigami.ColumnView ?? null - - function onScrollIntention(event) { - headerItem.scrollIntentHandler(event); - } - } - - Item { - id: headerItem - anchors { - left: parent.left - right: parent.right - bottom: !Kirigami.Settings.isMobile || root.position === QQC2.ToolBar.Header ? parent.bottom : undefined - top: !Kirigami.Settings.isMobile || root.position === QQC2.ToolBar.Footer ? parent.top : undefined - } - - height: Math.max(root.height, root.minimumHeight > 0 ? root.minimumHeight : root.preferredHeight) - - function scrollIntentHandler(event) { - if (!root.hideWhenTouchScrolling) { - return - } - - if (root.pageRow - && root.pageRow.globalToolBar.actualStyle !== Kirigami.ApplicationHeaderStyle.Breadcrumb) { - return; - } - if (!root.page.flickable || (root.page.flickable.atYBeginning && root.page.flickable.atYEnd)) { - return; - } - - root.implicitHeight = Math.max(0, Math.min(root.preferredHeight, root.implicitHeight + event.delta.y)) - event.accepted = root.implicitHeight > 0 && root.implicitHeight < root.preferredHeight; - slideResetTimer.restart(); - if ((root.page.flickable instanceof ListView) && root.page.flickable.verticalLayoutDirection === ListView.BottomToTop) { - root.page.flickable.contentY -= event.delta.y; - } - } - - Connections { - target: root.page?.globalToolBarItem ?? null - enabled: target - function onImplicitHeightChanged() { - root.implicitHeight = root.page.globalToolBarItem.implicitHeight; - } - } - - Timer { - id: slideResetTimer - interval: 500 - onTriggered: { - if ((root.pageRow?.wideMode ?? (root.__appWindow?.wideScreen ?? false)) || !Kirigami.Settings.isMobile) { - return; - } - if (root.height > root.minimumHeight + (root.preferredHeight - root.minimumHeight) / 2) { - heightAnim.to = root.preferredHeight; - } else { - heightAnim.to = root.minimumHeight; - } - heightAnim.from = root.implicitHeight - heightAnim.restart(); - } - } - - Connections { - target: pageRow - function onCurrentItemChanged() { - if (!root.page) { - return; - } - - heightAnim.from = root.implicitHeight; - heightAnim.to = root.preferredHeight; - - heightAnim.restart(); - } - } - - Item { - id: mainItem - clip: childrenRect.width > width - - onChildrenChanged: { - for (const child of children) { - child.anchors.verticalCenter = verticalCenter; - } - } - - anchors { - fill: parent - topMargin: root.topPadding - leftMargin: root.leftPadding - rightMargin: root.rightPadding - bottomMargin: root.bottomPadding - } - } - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/AbstractCard.qml b/local/recipes/kde/kirigami/source/src/controls/templates/AbstractCard.qml deleted file mode 100644 index 5ccd6b3420..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/AbstractCard.qml +++ /dev/null @@ -1,128 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2018 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Layouts -import QtQuick.Templates as T -import org.kde.kirigami as Kirigami - -/** - * A AbstractCard is the base for cards. A Card is a visual object that serves - * as an entry point for more detailed information. An abstractCard is empty, - * providing just the look and the base properties and signals for an ItemDelegate. - * It can be filled with any custom layout of items, its content is organized - * in 3 properties: header, contentItem and footer. - * Use this only when you need particular custom contents, for a standard layout - * for cards, use the Card component. - * - * @see Card - * @inherit QtQuick.Controls.ItemDelegate - * @since 2.4 - */ -T.ItemDelegate { - id: root - -//BEGIN properties - /** - * @brief This property holds an item that serves as a header. - * - * This item will be positioned on top if headerOrientation is ``Qt.Vertical`` - * or on the left if it is ``Qt.Horizontal``. - */ - property alias header: headerFooterLayout.header - - /** - * @brief This property sets the card's orientation. - * - * * ``Qt.Vertical``: the header will be positioned on top - * * ``Qt.Horizontal``: the header will be positioned on the left (or right if an RTL layout is used) - * - * default: ``Qt.Vertical`` - * - * @property Qt::Orientation headerOrientation - */ - property int headerOrientation: Qt.Vertical - - /** - * @brief This property holds an item that serves as a footer. - * - * This item will be positioned at the bottom if headerOrientation is ``Qt.Vertical`` - * or on the right if it is ``Qt.Horizontal``. - */ - property alias footer: headerFooterLayout.footer - - /** - * @brief This property sets whether clicking or tapping on the card area shows a visual click feedback. - * - * Use this if you want to do an action in the onClicked signal handler of the card. - * - * default: ``false`` - */ - property bool showClickFeedback: false - -//END properties - - Layout.fillWidth: true - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - outerPaddingLayout.implicitWidth) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - outerPaddingLayout.implicitHeight) - - hoverEnabled: !Kirigami.Settings.tabletMode && showClickFeedback - - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.View - - width: ListView.view ? ListView.view.width - ListView.view.leftMargin - ListView.view.rightMargin : undefined - padding: Kirigami.Units.largeSpacing - - // Card component repurposes control's contentItem property, so it has to - // reimplement content layout and its padding manually. - Kirigami.Padding { - id: outerPaddingLayout - - anchors.fill: parent - - topPadding: root.topPadding - leftPadding: root.leftPadding - rightPadding: root.rightPadding - bottomPadding: root.bottomPadding - - contentItem: Kirigami.HeaderFooterLayout { - id: headerFooterLayout - - contentItem: Kirigami.Padding { - id: innerPaddingLayout - - contentItem: root.contentItem - - // Hide it altogether, so that vertical padding won't be - // included in control's total implicit height. - visible: contentItem !== null - - topPadding: headerFooterLayout.header ? Kirigami.Units.largeSpacing : 0 - bottomPadding: headerFooterLayout.footer ? Kirigami.Units.largeSpacing : 0 - } - } - } - - // HACK: A Control like this ItemDelegate tries to manage its - // contentItem's positioning, so we need to override that. This is - // equivalent to declaring x/y/width/height bindings in QQC2 style - // implementations. - Connections { - target: root.contentItem - - function onXChanged() { - root.contentItem.x = 0; - } - - function onYChanged() { - root.contentItem.y = Qt.binding(() => innerPaddingLayout.topPadding); - } - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/Chip.qml b/local/recipes/kde/kirigami/source/src/controls/templates/Chip.qml deleted file mode 100644 index 59716f722d..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/Chip.qml +++ /dev/null @@ -1,37 +0,0 @@ -// SPDX-FileCopyrightText: 2022 Felipe Kinoshita -// SPDX-License-Identifier: LGPL-2.0-or-later - -import QtQuick -import QtQuick.Templates as T - -/** - * @brief Chip is a visual object based on AbstractButton - * that provides a friendly way to display predetermined elements - * with the visual styling of "tags" or "tokens." - * - * @see Chip - * @since 2.19 - * @inherit QtQuick.Controls.AbstractButton - */ -T.AbstractButton { - id: chip - - /** - * @brief This property holds whether or not to display a close button. - * - * default: ``true`` - */ - property bool closable: true - - /** - * @brief This property holds whether the icon should be masked or not. This controls the Kirigami.Icon.isMask property. - * - * default: ``false`` - */ - property bool iconMask: false - - /** - * @brief This signal is emitted when the close button has been clicked. - */ - signal removed() -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/InlineMessage.qml b/local/recipes/kde/kirigami/source/src/controls/templates/InlineMessage.qml deleted file mode 100644 index 6781c437e3..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/InlineMessage.qml +++ /dev/null @@ -1,411 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2018 Eike Hein - * SPDX-FileCopyrightText: 2022 ivan tkachenko - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Controls as QQC2 -import QtQuick.Templates as T -import org.kde.kirigami as Kirigami -import org.kde.kirigami.templates.private as TP - -/** - * An inline message item with support for informational, positive, - * warning and error types, and with support for associated actions. - * - * InlineMessage can be used to give information to the user or - * interact with the user, without requiring the use of a dialog. - * - * The InlineMessage item is hidden by default. It also manages its - * height (and implicitHeight) during an animated reveal when shown. - * You should avoid setting height on an InlineMessage unless it is - * already visible. - * - * Optionally an icon can be set, defaulting to an icon appropriate - * to the message type otherwise. - * - * Optionally a close button can be shown. - * - * Actions are added from left to right. If more actions are set than - * can fit, an overflow menu is provided. - * - * Example: - * @code - * import org.kde.kirigami as Kirigami - * - * Kirigami.InlineMessage { - * type: Kirigami.MessageType.Error - * - * text: i18n("My error message") - * - * actions: [ - * Kirigami.Action { - * icon.name: "list-add" - * text: i18n("Add") - * onTriggered: source => { - * // do stuff - * } - * }, - * Kirigami.Action { - * icon.name: "edit" - * text: i18n("Edit") - * onTriggered: source => { - * // do stuff - * } - * } - * ] - * } - * @endcode - * - * @since 5.45 - * @inherit QtQuick.Templates.Control - */ -T.Control { - id: root - - visible: false - - /** - * Defines a position for the message: whether it's to be used as an inline component inside the page, - * a page header, or a page footer. - */ - enum Position { - Inline, - Header, - Footer - } - - /** - * Adjust the look of the message based upon the position. - * If a message is positioned in the header area or in the footer area - * of a page, it might be desirable to not have borders but just a line - * separating it from the content area. In this case, use the Header or - * Footer position. - * Default is InlineMessage.Position.Inline - */ - property int position: InlineMessage.Position.Inline - - /** - * This signal is emitted when a link is hovered in the message text. - * @param The hovered link. - */ - signal linkHovered(string link) - - /** - * This signal is emitted when a link is clicked or tapped in the message text. - * @param The clicked or tapped link. - */ - signal linkActivated(string link) - - /** - * This property holds the link embedded in the message text that the user is hovering over. - */ - readonly property alias hoveredLink: label.hoveredLink - - /** - * This property holds the message type. One of Information, Positive, Warning or Error. - * - * The default is Kirigami.MessageType.Information. - */ - property int type: Kirigami.MessageType.Information - - /** - * This grouped property holds the description of an optional icon. - * - * * source: The source of the icon, a freedesktop-compatible icon name is recommended. - * * color: An optional tint color for the icon. - * - * If no custom icon is set, an icon appropriate to the message type - * is shown. - */ - property TP.IconPropertiesGroup icon: TP.IconPropertiesGroup {} - - /** - * This property holds the message text. - */ - property string text - - /** - * This property holds whether the close button is displayed. - * - * The default is false. - */ - property bool showCloseButton: false - - /** - * This property holds the list of actions to show. Actions are added from left to - * right. If more actions are set than can fit, an overflow menu is - * provided. - */ - property list actions - - /** - * This property holds whether the current message item is animating. - */ - readonly property bool animating: _animating - - property bool _animating: false - - implicitHeight: visible ? (contentLayout.implicitHeight + topPadding + bottomPadding) : 0 - - padding: Kirigami.Units.smallSpacing - - Accessible.role: Accessible.AlertMessage - Accessible.ignored: !visible - - Behavior on implicitHeight { - enabled: !root.visible - - SequentialAnimation { - PropertyAction { targets: root; property: "_animating"; value: true } - NumberAnimation { duration: Kirigami.Units.longDuration } - } - } - - onVisibleChanged: { - if (!visible) { - contentLayout.opacity = 0; - } - } - - opacity: visible ? 1 : 0 - - Behavior on opacity { - enabled: !root.visible - - NumberAnimation { duration: Kirigami.Units.shortDuration } - } - - onOpacityChanged: { - if (opacity === 0) { - contentLayout.opacity = 0; - } else if (opacity === 1) { - contentLayout.opacity = 1; - } - } - - onImplicitHeightChanged: { - height = implicitHeight; - } - - contentItem: Item { - id: contentLayout - - // Used to defer opacity animation until we know if InlineMessage was - // initialized visible. - property bool complete: false - - Behavior on opacity { - enabled: root.visible && contentLayout.complete - - SequentialAnimation { - NumberAnimation { duration: Kirigami.Units.shortDuration * 2 } - PropertyAction { targets: root; property: "_animating"; value: false } - } - } - - implicitHeight: { - if (atBottom) { - return label.implicitHeight + actionsLayout.implicitHeight + actionsLayout.anchors.topMargin - } else { - return Math.max(icon.implicitHeight, label.implicitHeight, closeButton.implicitHeight, actionsLayout.implicitHeight) - } - } - - Accessible.ignored: true - - readonly property real remainingWidth: width - ( - icon.width - + label.anchors.leftMargin + label.implicitWidth + label.anchors.rightMargin - + (root.showCloseButton ? closeButton.width : 0) - ) - readonly property bool multiline: remainingWidth <= 0 || atBottom - - readonly property bool atBottom: (root.actions.length > 0) && (label.lineCount > 1 || actionsLayout.implicitWidth > remainingWidth) - - Kirigami.Icon { - id: icon - - width: Kirigami.Units.iconSizes.smallMedium - height: Kirigami.Units.iconSizes.smallMedium - - anchors { - left: parent.left - leftMargin: Kirigami.Units.smallSpacing - topMargin: Kirigami.Units.smallSpacing - } - - states: [ - State { - name: "multi-line" - when: contentLayout.atBottom || label.height > icon.height * 1.7 - AnchorChanges { - target: icon - anchors.top: icon.parent.top - anchors.verticalCenter: undefined - } - }, - // States are evaluated in the order they are declared. - // This is a fallback state. - State { - name: "single-line" - when: true - AnchorChanges { - target: icon - anchors.top: undefined - anchors.verticalCenter: parent.verticalCenter - } - } - ] - - source: { - if (root.icon.name) { - return root.icon.name; - } else if (root.icon.source) { - return root.icon.source; - } - - switch (root.type) { - case Kirigami.MessageType.Positive: - return "emblem-success"; - case Kirigami.MessageType.Warning: - return "emblem-warning"; - case Kirigami.MessageType.Error: - return "emblem-error"; - default: - return "emblem-information"; - } - } - - color: root.icon.color - - Accessible.ignored: !root.visible - Accessible.name: { - switch (root.type) { - case Kirigami.MessageType.Positive: - return qsTr("Success"); - case Kirigami.MessageType.Warning: - return qsTr("Warning"); - case Kirigami.MessageType.Error: - return qsTr("Error"); - default: - return qsTr("Note"); - } - } - } - - Kirigami.SelectableLabel { - id: label - - anchors { - left: icon.right - leftMargin: Kirigami.Units.largeSpacing - right: root.showCloseButton ? closeButton.left : parent.right - rightMargin: root.showCloseButton ? Kirigami.Units.smallSpacing : 0 - top: parent.top - } - - color: Kirigami.Theme.textColor - wrapMode: Text.WordWrap - - text: root.text - - verticalAlignment: Text.AlignVCenter - - // QTBUG-117667 TextEdit (super-type of SelectableLabel) needs - // very specific state-management trick so it doesn't get stuck. - // State names serve purely as a description. - states: [ - State { - name: "multi-line" - when: contentLayout.multiline - AnchorChanges { - target: label - anchors.bottom: undefined - } - PropertyChanges { - target: label - height: label.implicitHeight - } - }, - // States are evaluated in the order they are declared. - // This is a fallback state. - State { - name: "single-line" - when: true - AnchorChanges { - target: label - anchors.bottom: label.parent.bottom - } - } - ] - - onLinkHovered: link => root.linkHovered(link) - onLinkActivated: link => root.linkActivated(link) - - Accessible.ignored: !root.visible - } - - Kirigami.ActionToolBar { - id: actionsLayout - - flat: false - actions: root.actions - visible: root.actions.length > 0 - Accessible.ignored: !visible || !root.visible - alignment: Qt.AlignRight - - anchors { - left: parent.left - top: contentLayout.atBottom ? label.bottom : parent.top - topMargin: contentLayout.atBottom ? Kirigami.Units.largeSpacing : 0 - right: (!contentLayout.atBottom && root.showCloseButton) ? closeButton.left : parent.right - rightMargin: !contentLayout.atBottom && root.showCloseButton ? Kirigami.Units.smallSpacing : 0 - } - } - - QQC2.ToolButton { - id: closeButton - - visible: root.showCloseButton - - anchors.right: parent.right - - // Incompatible anchors need to be evaluated in a given order, - // which simple declarative bindings cannot assure - states: [ - State { - name: "onTop" - when: contentLayout.atBottom - AnchorChanges { - target: closeButton - anchors.top: parent.top - anchors.verticalCenter: undefined - } - } , - State { - name: "centered" - AnchorChanges { - target: closeButton - anchors.top: undefined - anchors.verticalCenter: parent.verticalCenter - } - } - ] - - height: contentLayout.atBottom ? implicitHeight : implicitHeight - - text: qsTr("Close") - display: QQC2.ToolButton.IconOnly - icon.name: "dialog-close" - - onClicked: root.visible = false - - Accessible.ignored: !root.visible - } - - Component.onCompleted: complete = true - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/OverlayDrawer.qml b/local/recipes/kde/kirigami/source/src/controls/templates/OverlayDrawer.qml deleted file mode 100644 index 6867e60386..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/OverlayDrawer.qml +++ /dev/null @@ -1,385 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2012 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami -import "private" as KTP - -/** - * Overlay Drawers are used to expose additional UI elements needed for - * small secondary tasks for which the main UI elements are not needed. - * For example in Okular Mobile, an Overlay Drawer is used to display - * thumbnails of all pages within a document along with a search field. - * This is used for the distinct task of navigating to another page. - * - * @inherit QtQuick.Controls.Drawer - */ -T.Drawer { - id: root - -//BEGIN properties - /** - * @brief This property tells whether the drawer is open and visible. - * - * default: ``false`` - */ - property bool drawerOpen: false - - /** - * @brief This property tells whether the drawer is in a state between open - * and closed. - * - * The drawer is visible but not completely open. This is usually the case when - * the user is dragging the drawer from a screen edge, so the user is "peeking" - * at what's in the drawer. - * - * default: ``false`` - */ - property bool peeking: false - - /** - * @brief This property tells whether the drawer is currently opening or closing itself. - */ - readonly property bool animating : enterAnimation.animating || exitAnimation.animating || positionResetAnim.running - - /** - * @brief This property holds whether the drawer can be collapsed to a - * very thin, usually icon only sidebar. - * - * Only modal drawers are collapsible. Collapsible is not supported in - * the mobile mode. - * - * @since 2.5 - */ - property bool collapsible: false - - /** - * @brief This property tells whether the drawer is collapsed to a - * very thin sidebar, usually icon only. - * - * When true, the drawer will be collapsed to a very thin sidebar, - * usually icon only. - * - * default: ``false`` - * - * @see collapsible Only collapsible drawers can be collapsed. - */ - property bool collapsed: false - - /** - * @brief This property holds the size of the collapsed drawer. - * - * For vertical drawers this will be the width of the drawer and for horizontal - * drawers this will be the height of the drawer. - * - * default: ``Units.iconSizes.medium``, just enough to accommodate medium sized icons - */ - property int collapsedSize: Kirigami.Units.iconSizes.medium - - /** - * @brief This property holds the options for handle's open icon. - * - * This is a grouped property with following components: - * - * * ``source: var``: The name of a freedesktop-compatible icon. - * * ``color: color``: An optional tint color for the icon. - * - * If no custom icon is set, a menu icon is shown for the application globalDrawer - * and an overflow menu icon is shown for the contextDrawer. - * That's the default for the GlobalDrawer and ContextDrawer components respectively. - * - * For OverlayDrawer the default is view-right-close or view-left-close depending on - * the drawer location - * - * @since 2.5 - */ - readonly property KTP.IconPropertiesGroup handleOpenIcon: KTP.IconPropertiesGroup { - source: root.edge === Qt.RightEdge ? "view-right-close" : "view-left-close" - } - - /** - * @brief This property holds the options for the handle's close icon. - * - * This is a grouped property with the following components: - * * ``source: var``: The name of a freedesktop-compatible icon. - * * ``color: color``: An optional tint color for the icon. - * - * If no custom icon is set, an X icon is shown, - * which will morph into the Menu or overflow icons. - * - * For OverlayDrawer the default is view-right-new or view-left-new depending on - * the drawer location. - * - * @since 2.5 - */ - property KTP.IconPropertiesGroup handleClosedIcon: KTP.IconPropertiesGroup { - source: root.edge === Qt.RightEdge ? "view-right-new" : "view-left-new" - } - - /** - * @brief This property holds the tooltip displayed when the drawer is open. - * @since 2.15 - */ - property string handleOpenToolTip: qsTr("Close drawer") - - /** - * @brief This property holds the tooltip displayed when the drawer is closed. - * @since 2.15 - */ - property string handleClosedToolTip: qsTr("Open drawer") - - /** - * @brief This property holds whether the handle is visible, to make opening the - * drawer easier. - * - * Currently supported only on left and right drawers. - */ - property bool handleVisible: { - if (typeof applicationWindow === "function") { - const w = applicationWindow(); - if (w) { - return w.controlsVisible; - } - } - // For a generic-purpose OverlayDrawer its handle is visible by default - return true; - } - - /** - * @brief Readonly property that points to the item that will act as a physical - * handle for the Drawer. - * @property MouseArea handle - **/ - readonly property Item handle: KTP.DrawerHandle { - drawer: root - } -//END properties - - interactive: modal - - z: Kirigami.OverlayZStacking.z - - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: modal ? Kirigami.Theme.View : Kirigami.Theme.Window - Kirigami.Theme.onColorSetChanged: { - contentItem.Kirigami.Theme.colorSet = Kirigami.Theme.colorSet - background.Kirigami.Theme.colorSet = Kirigami.Theme.colorSet - } - -//BEGIN reassign properties - //default paddings - leftPadding: Kirigami.Units.smallSpacing - topPadding: Kirigami.Units.smallSpacing - rightPadding: Kirigami.Units.smallSpacing - bottomPadding: Kirigami.Units.smallSpacing - - y: modal ? 0 : ((T.ApplicationWindow.menuBar && T.ApplicationWindow.menuBar.visible ? T.ApplicationWindow.menuBar.height : 0) + (T.ApplicationWindow.header && T.ApplicationWindow.header.visible ? T.ApplicationWindow.header.height : 0)) - - height: parent && (root.edge === Qt.LeftEdge || root.edge === Qt.RightEdge) ? (modal ? parent.height : (parent.height - y - (T.ApplicationWindow.footer ? T.ApplicationWindow.footer.height : 0))) : implicitHeight - - parent: modal || edge === Qt.LeftEdge || edge === Qt.RightEdge ? T.ApplicationWindow.overlay : T.ApplicationWindow.contentItem - - edge: Qt.LeftEdge - modal: true - dim: modal - QQC2.Overlay.modal: Rectangle { - color: Qt.rgba(0, 0, 0, 0.35) - } - - dragMargin: enabled && (edge === Qt.LeftEdge || edge === Qt.RightEdge) ? Math.min(Kirigami.Units.gridUnit, Qt.styleHints.startDragDistance) : 0 - - contentWidth: contentItem.implicitWidth || (contentChildren.length === 1 ? contentChildren[0].implicitWidth : 0) - contentHeight: contentItem.implicitHeight || (contentChildren.length === 1 ? contentChildren[0].implicitHeight : 0) - - implicitWidth: contentWidth + leftPadding + rightPadding - implicitHeight: contentHeight + topPadding + bottomPadding - - enter: Transition { - SequentialAnimation { - id: enterAnimation - /* NOTE: why this? the running status of the enter transition is not relaible and - * the SmoothedAnimation is always marked as non running, - * so the only way to get to a reliable animating status is with this - */ - property bool animating - ScriptAction { - script: { - enterAnimation.animating = true - // on non modal dialog we don't want drawers in the overlay - if (!root.modal) { - root.background.parent.parent = applicationWindow().overlay.parent - } - } - } - SmoothedAnimation { - velocity: 5 - } - ScriptAction { - script: enterAnimation.animating = false - } - } - } - - exit: Transition { - SequentialAnimation { - id: exitAnimation - property bool animating - ScriptAction { - script: exitAnimation.animating = true - } - SmoothedAnimation { - velocity: 5 - } - ScriptAction { - script: exitAnimation.animating = false - } - } - } -//END reassign properties - - -//BEGIN signal handlers - onCollapsedChanged: { - if (Kirigami.Settings.isMobile) { - collapsed = false; - } - if (!__internal.completed) { - return; - } - if ((!collapsible || modal) && collapsed) { - collapsed = true; - } - } - onCollapsibleChanged: { - if (Kirigami.Settings.isMobile) { - collapsible = false; - } - if (!__internal.completed) { - return; - } - if (!collapsible) { - collapsed = false; - } else if (modal) { - collapsible = false; - } - } - onModalChanged: { - if (!__internal.completed) { - return; - } - if (modal) { - collapsible = false; - } - } - - onPositionChanged: { - if (peeking) { - visible = true - } - } - onVisibleChanged: { - if (peeking) { - visible = true - } else { - drawerOpen = visible; - } - } - onPeekingChanged: { - if (peeking) { - root.enter.enabled = false; - root.exit.enabled = false; - } else { - drawerOpen = position > 0.5 ? 1 : 0; - positionResetAnim.running = true - root.enter.enabled = true; - root.exit.enabled = true; - } - } - onDrawerOpenChanged: { - // sync this property only when the component is properly loaded - if (!__internal.completed) { - return; - } - positionResetAnim.running = false; - if (drawerOpen) { - open(); - } else { - close(); - } - Qt.callLater(() => root.handle.displayToolTip = true) - } - - Component.onCompleted: { - // if defined as drawerOpen by default in QML, don't animate - if (root.drawerOpen) { - root.enter.enabled = false; - root.visible = true; - root.position = 1; - root.enter.enabled = true; - } - __internal.completed = true; - contentItem.Kirigami.Theme.colorSet = Kirigami.Theme.colorSet; - background.Kirigami.Theme.colorSet = Kirigami.Theme.colorSet; - } -//END signal handlers - - // this is as hidden as it can get here - property QtObject __internal: QtObject { - //here in order to not be accessible from outside - property bool completed: false - property SequentialAnimation positionResetAnim: SequentialAnimation { - id: positionResetAnim - property alias to: internalAnim.to - NumberAnimation { - id: internalAnim - target: root - to: drawerOpen ? 1 : 0 - property: "position" - duration: (root.position)*Kirigami.Units.longDuration - } - ScriptAction { - script: { - root.drawerOpen = internalAnim.to !== 0; - } - } - } - readonly property Item statesItem: Item { - states: [ - State { - when: root.collapsed - PropertyChanges { - target: root - implicitWidth: edge === Qt.TopEdge || edge === Qt.BottomEdge ? applicationWindow().width : Math.min(collapsedSize + leftPadding + rightPadding, Math.round(applicationWindow().width*0.8)) - - implicitHeight: edge === Qt.LeftEdge || edge === Qt.RightEdge ? applicationWindow().height : Math.min(collapsedSize + topPadding + bottomPadding, Math.round(applicationWindow().height*0.8)) - } - }, - State { - when: !root.collapsed - PropertyChanges { - target: root - implicitWidth: edge === Qt.TopEdge || edge === Qt.BottomEdge ? applicationWindow().width : Math.min(contentItem.implicitWidth, Math.round(applicationWindow().width*0.8)) - - implicitHeight: edge === Qt.LeftEdge || edge === Qt.RightEdge ? applicationWindow().height : Math.min(contentHeight + topPadding + bottomPadding, Math.round(applicationWindow().height*0.4)) - - contentWidth: contentItem.implicitWidth || (contentChildren.length === 1 ? contentChildren[0].implicitWidth : 0) - contentHeight: contentItem.implicitHeight || (contentChildren.length === 1 ? contentChildren[0].implicitHeight : 0) - } - } - ] - transitions: Transition { - reversible: true - NumberAnimation { - properties: root.edge === Qt.TopEdge || root.edge === Qt.BottomEdge ? "implicitHeight" : "implicitWidth" - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutQuad - } - } - } - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/OverlaySheet.qml b/local/recipes/kde/kirigami/source/src/controls/templates/OverlaySheet.qml deleted file mode 100644 index c420b3d747..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/OverlaySheet.qml +++ /dev/null @@ -1,437 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2016-2023 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Layouts -import QtQuick.Controls as QQC2 -import QtQuick.Templates as T -import org.kde.kirigami as Kirigami - -/** - * @brief An overlay sheet that covers the current Page content. - * - * Its contents can be scrolled up or down, scrolling all the way up or - * all the way down, dismisses it. - * Use this for big, modal dialogs or information display, that can't be - * logically done as a new separate Page, even if potentially - * are taller than the screen space. - * - * Example usage: - * @code - * Kirigami.OverlaySheet { - * ColumnLayout { ... } - * } - * Kirigami.OverlaySheet { - * ListView { ... } - * } - * @endcode - * - * It needs a single element declared inside, do *not* override its contentItem - * - * @inherit QtQuick.Templates.Popup - */ -T.Popup { - id: root - - Kirigami.OverlayZStacking.layer: Kirigami.OverlayZStacking.FullScreen - z: Kirigami.OverlayZStacking.z - - Kirigami.Theme.colorSet: Kirigami.Theme.View - Kirigami.Theme.inherit: false - -//BEGIN Own Properties - - /** - * @brief A title to be displayed in the header of this Sheet - */ - property string title - - /** - * @brief This property sets the visibility of the close button in the top-right corner. - * - * default: `Only shown in desktop mode` - * - */ - property bool showCloseButton: !Kirigami.Settings.isMobile - - /** - * @brief This property holds an optional item which will be used as the sheet's header, - * and will always be displayed. - */ - property Item header: Kirigami.Heading { - level: 2 - text: root.title - verticalAlignment: Text.AlignVCenter - elide: Text.ElideRight - - // use tooltip for long text that is elided - T.ToolTip.visible: truncated && titleHoverHandler.hovered - T.ToolTip.text: root.title - HoverHandler { - id: titleHoverHandler - } - } - - /** - * @brief An optional item which will be used as the sheet's footer, - * always kept on screen. - */ - property Item footer - - default property alias flickableContentData: scrollView.contentData -//END Own Properties - -//BEGIN Reimplemented Properties - QQC2.Overlay.modal: Rectangle { - color: Qt.rgba(0, 0, 0, 0.3) - - // the opacity of the item is changed internally by QQuickPopup on open/close - Behavior on opacity { - OpacityAnimator { - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutQuad - } - } - } - - modal: true - dim: true - - leftInset: -1 - rightInset: -1 - topInset: -1 - bottomInset: -1 - - closePolicy: T.Popup.CloseOnEscape - x: parent ? Math.round(parent.width / 2 - width / 2) : 0 - y: { - if (!parent) { - return 0; - } - const visualParentAdjust = sheetHandler.visualParent?.y ?? 0; - const wantedPosition = parent.height / 2 - implicitHeight / 2; - return Math.round(Math.max(visualParentAdjust, wantedPosition, Kirigami.Units.gridUnit * 3)); - } - - width: root.parent ? Math.min(root.parent.width, implicitWidth) : implicitWidth - implicitWidth: { - let width = parent?.width ?? 0; - if (!scrollView.itemForSizeHints) { - return width; - } else if (scrollView.itemForSizeHints.Layout.preferredWidth > 0) { - return Math.min(width, scrollView.itemForSizeHints.Layout.preferredWidth); - } else if (scrollView.itemForSizeHints.implicitWidth > 0) { - return Math.min(width, scrollView.itemForSizeHints.implicitWidth); - } else { - return width; - } - } - implicitHeight: { - let h = parent?.height ?? 0; - if (!scrollView.itemForSizeHints) { - return h - y; - } else if (scrollView.itemForSizeHints.Layout.preferredHeight > 0) { - h = scrollView.itemForSizeHints.Layout.preferredHeight; - } else if (scrollView.itemForSizeHints.implicitHeight > 0) { - h = scrollView.itemForSizeHints.implicitHeight + Kirigami.Units.largeSpacing * 2; - } else if (scrollView.itemForSizeHints instanceof Flickable && scrollView.itemForSizeHints.contentHeight > 0) { - h = scrollView.itemForSizeHints.contentHeight + Kirigami.Units.largeSpacing * 2; - } else { - h = scrollView.itemForSizeHints.height; - } - h += headerItem.implicitHeight + footerParent.implicitHeight + topPadding + bottomPadding; - return parent ? Math.min(h, parent.height - y) : h - } -//END Reimplemented Properties - -//BEGIN Signal handlers - onVisibleChanged: { - const flickable = scrollView.contentItem; - flickable.contentY = flickable.originY - flickable.topMargin; - } - - Component.onCompleted: { - Qt.callLater(() => { - if (!root.parent && typeof applicationWindow !== "undefined") { - root.parent = applicationWindow().overlay - } - }); - } - - Connections { - target: parent - function onVisibleChanged() { - if (!parent.visible) { - root.close(); - } - } - } -//END Signal handlers - -//BEGIN UI - contentItem: MouseArea { - implicitWidth: mainLayout.implicitWidth - implicitHeight: mainLayout.implicitHeight - Kirigami.Theme.colorSet: root.Kirigami.Theme.colorSet - Kirigami.Theme.inherit: false - - property real scenePressY - property real lastY - property bool dragStarted - drag.filterChildren: true - DragHandler { - id: mouseDragBlocker - target: null - dragThreshold: 0 - acceptedDevices: PointerDevice.Mouse - onActiveChanged: { - if (active) { - parent.dragStarted = false; - } - } - } - - onPressed: mouse => { - scenePressY = mapToItem(null, mouse.x, mouse.y).y; - lastY = scenePressY; - dragStarted = false; - } - onPositionChanged: mouse => { - if (mouseDragBlocker.active) { - return; - } - const currentY = mapToItem(null, mouse.x, mouse.y).y; - - if (dragStarted && currentY !== lastY) { - translation.y += currentY - lastY; - } - if (Math.abs(currentY - scenePressY) > Qt.styleHints.startDragDistance) { - dragStarted = true; - } - lastY = currentY; - } - onCanceled: restoreAnim.restart(); - onReleased: mouse => { - if (mouseDragBlocker.active) { - return; - } - if (Math.abs(mapToItem(null, mouse.x, mouse.y).y - scenePressY) > Kirigami.Units.gridUnit * 5) { - root.close(); - } else { - restoreAnim.restart(); - } - } - - ColumnLayout { - id: mainLayout - anchors.fill: parent - spacing: 0 - - // Even though we're not actually using any shadows here, - // we're using a ShadowedRectangle instead of a regular - // rectangle because it allows fine-grained control over which - // corners to round, which we need here - Item { - id: headerItem - Layout.fillWidth: true - Layout.alignment: Qt.AlignTop - //Layout.margins: 1 - visible: root.header || root.showCloseButton - implicitHeight: Math.max(headerParent.implicitHeight, closeIcon.height)// + Kirigami.Units.smallSpacing * 2 - z: 2 - - Rectangle { - anchors { - top: parent.top - horizontalCenter: parent.horizontalCenter - topMargin: Kirigami.Units.smallSpacing - } - width: Math.round(Kirigami.Units.gridUnit * 3) - height: Math.round(Kirigami.Units.gridUnit / 4) - radius: height - color: Kirigami.Theme.textColor - opacity: 0.4 - visible: Kirigami.Settings.hasTransientTouchInput - } - Kirigami.Padding { - id: headerParent - - readonly property real leadingPadding: Kirigami.Units.largeSpacing - readonly property real trailingPadding: (root.showCloseButton ? closeIcon.width : 0) + Kirigami.Units.smallSpacing - - anchors.fill: parent - verticalPadding: Kirigami.Units.largeSpacing - leftPadding: root.mirrored ? trailingPadding : leadingPadding - rightPadding: root.mirrored ? leadingPadding : trailingPadding - - contentItem: root.header - } - QQC2.ToolButton { - id: closeIcon - - // We want to position the close button in the top-right - // corner if the header is very tall, but we want to - // vertically center it in a short header - readonly property bool tallHeader: parent.height > (Kirigami.Units.iconSizes.smallMedium + Kirigami.Units.largeSpacing * 2) - Layout.alignment: tallHeader ? Qt.AlignRight | Qt.AlignTop : Qt.AlignRight | Qt.AlignVCenter - Layout.topMargin: tallHeader ? Kirigami.Units.largeSpacing : 0 - anchors { - verticalCenter: !tallHeader ? undefined : parent.verticalCenter - right: parent.right - margins: Kirigami.Units.largeSpacing - } - z: 3 - - visible: root.showCloseButton - icon.name: closeIcon.hovered ? "window-close" : "window-close-symbolic" - text: qsTr("Close", "@action:button close dialog") - onClicked: root.close() - display: QQC2.AbstractButton.IconOnly - } - Kirigami.Separator { - anchors { - right: parent.right - left: parent.left - top: parent.bottom - } - visible: scrollView.T.ScrollBar.vertical.visible - } - } - - // Here goes the main Sheet content - QQC2.ScrollView { - id: scrollView - Layout.fillWidth: true - Layout.fillHeight: true - clip: true - T.ScrollBar.horizontal.policy: T.ScrollBar.AlwaysOff - - property bool initialized: false - property Item itemForSizeHints - - // Important to not even access contentItem before it has been spontaneously created - contentWidth: initialized ? contentItem.width : width - contentHeight: itemForSizeHints?.implicitHeight ?? 0 - - onContentItemChanged: { - initialized = true; - const flickable = contentItem as Flickable; - flickable.boundsBehavior = Flickable.StopAtBounds; - if ((flickable instanceof ListView) || (flickable instanceof GridView)) { - itemForSizeHints = flickable; - return; - } - const content = flickable.contentItem; - content.childrenChanged.connect(() => { - for (const item of content.children) { - item.anchors.margins = Kirigami.Units.largeSpacing; - item.anchors.top = content.top; - item.anchors.left = content.left; - item.anchors.right = content.right; - } - itemForSizeHints = content.children?.[0] ?? null; - }); - } - } - - // Optional footer - Kirigami.Separator { - Layout.fillWidth: true - visible: footerParent.visible - } - Kirigami.Padding { - id: footerParent - Layout.fillWidth: true - padding: Kirigami.Units.smallSpacing - contentItem: root.footer - visible: contentItem !== null - } - } - Translate { - id: translation - } - MouseArea { - id: sheetHandler - readonly property Item visualParent: root.parent?.contentItem ?? root.parent - x: -root.x - y: -root.y - z: -1 - width: visualParent?.width ?? 0 - height: (visualParent?.height ?? 0) * 2 - - property var pressPos - onPressed: mouse => { - pressPos = mapToItem(null, mouse.x, mouse.y) - } - onReleased: mouse => { - // onClicked is emitted even if the mouse was dragged a lot, so we have to check the Manhattan length by hand - // https://en.wikipedia.org/wiki/Taxicab_geometry - let pos = mapToItem(null, mouse.x, mouse.y) - if (Math.abs(pos.x - pressPos.x) + Math.abs(pos.y - pressPos.y) < Qt.styleHints.startDragDistance) { - root.close(); - } - } - - NumberAnimation { - id: restoreAnim - target: translation - property: "y" - from: translation.y - to: 0 - easing.type: Easing.InOutQuad - duration: Kirigami.Units.longDuration - } - Component.onCompleted: { - root.contentItem.parent.transform = translation - root.contentItem.parent.clip = false - } - } - } -//END UI - -//BEGIN Transitions - enter: Transition { - ParallelAnimation { - NumberAnimation { - property: "opacity" - from: 0 - to: 1 - easing.type: Easing.InOutQuad - duration: Kirigami.Units.longDuration - } - NumberAnimation { - target: translation - property: "y" - from: Kirigami.Units.gridUnit * 5 - to: 0 - easing.type: Easing.InOutQuad - duration: Kirigami.Units.longDuration - } - } - } - - exit: Transition { - ParallelAnimation { - NumberAnimation { - property: "opacity" - from: 1 - to: 0 - easing.type: Easing.InOutQuad - duration: Kirigami.Units.longDuration - } - NumberAnimation { - target: translation - property: "y" - from: translation.y - to: translation.y >= 0 ? translation.y + Kirigami.Units.gridUnit * 5 : translation.y - Kirigami.Units.gridUnit * 5 - easing.type: Easing.InOutQuad - duration: Kirigami.Units.longDuration - } - } - } -//END Transitions -} - diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/SingletonHeaderSizeGroup.qml b/local/recipes/kde/kirigami/source/src/controls/templates/SingletonHeaderSizeGroup.qml deleted file mode 100644 index 93736b5b9a..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/SingletonHeaderSizeGroup.qml +++ /dev/null @@ -1,13 +0,0 @@ -pragma Singleton - -/* - * SPDX-FileCopyrightText: 2020 Carson Black - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import org.kde.kirigami as Kirigami - -Kirigami.SizeGroup { - mode: Kirigami.SizeGroup.Height -} \ No newline at end of file diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/BackButton.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/BackButton.qml deleted file mode 100644 index 9739b255ad..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/BackButton.qml +++ /dev/null @@ -1,60 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2016 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami - -QQC2.ToolButton { - id: button - - icon.name: (LayoutMirroring.enabled ? "go-previous-symbolic-rtl" : "go-previous-symbolic") - - enabled: { - const pageStack = applicationWindow().pageStack; - - if (pageStack.layers.depth > 1) { - return true; - } - - if (pageStack.depth > 1) { - if (pageStack.currentIndex > 0) { - return true; - } - - const view = pageStack.columnView; - if (LayoutMirroring.enabled) { - return view.contentWidth - view.width < view.contentX - } else { - return view.contentX > 0; - } - } - - return false; - } - - // The gridUnit wiggle room is used to not flicker the button visibility during an animated resize for instance due to a sidebar collapse - visible: { - const pageStack = applicationWindow().pageStack; - const showNavButtons = globalToolBar?.showNavigationButtons ?? Kirigami.ApplicationHeaderStyle.NoNavigationButtons; - return pageStack.layers.depth > 1 || (pageStack.contentItem.contentWidth > pageStack.width + Kirigami.Units.gridUnit && (showNavButtons & Kirigami.ApplicationHeaderStyle.ShowBackButton)); - } - - onClicked: { - applicationWindow().pageStack.goBack(); - } - - text: qsTr("Navigate Back") - display: QQC2.ToolButton.IconOnly - - QQC2.ToolTip { - visible: button.hovered - text: button.text - delay: Kirigami.Units.toolTipDelay - timeout: 5000 - y: button.height - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/BorderPropertiesGroup.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/BorderPropertiesGroup.qml deleted file mode 100644 index 3d36982bc4..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/BorderPropertiesGroup.qml +++ /dev/null @@ -1,19 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Carson Black - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick - -QtObject { - /** - * @brief This property holds the color of this border. - */ - property color color - - /** - * @brief This property holds the width of this border. - */ - property real width -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/ContextIcon.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/ContextIcon.qml deleted file mode 100644 index 1431cdc3e8..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/ContextIcon.qml +++ /dev/null @@ -1,68 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2015 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import org.kde.kirigami as Kirigami - -Item { - id: canvas - - property Kirigami.OverlayDrawer drawer - property color color: Kirigami.Theme.textColor - property int thickness: 2 - - property real position: drawer?.position ?? 0 - - width: Kirigami.Units.iconSizes.smallMedium - height: Kirigami.Units.iconSizes.smallMedium - opacity: 0.8 - layer.enabled: true - - LayoutMirroring.enabled: false - LayoutMirroring.childrenInherit: true - - Item { - id: iconRoot - anchors { - fill: parent - margins: Kirigami.Units.smallSpacing - } - Rectangle { - anchors { - horizontalCenter: parent.horizontalCenter - top: parent.top - topMargin: (parent.height / 2 - canvas.thickness / 2) * canvas.position - } - antialiasing: canvas.position !== 0 - transformOrigin: Item.Center - width: (1 - canvas.position) * height + canvas.position * Math.sqrt(2 * parent.width * parent.width) - height: canvas.thickness - color: canvas.color - rotation: 45 * canvas.position - } - - Rectangle { - anchors.centerIn: parent - width: height - height: canvas.thickness - color: canvas.color - } - - Rectangle { - anchors { - horizontalCenter: parent.horizontalCenter - bottom: parent.bottom - bottomMargin: (parent.height / 2 - canvas.thickness / 2) * canvas.position - } - antialiasing: canvas.position !== 0 - transformOrigin: Item.Center - width: (1 - canvas.position) * height + canvas.position * Math.sqrt(2 * parent.width * parent.width) - height: canvas.thickness - color: canvas.color - rotation: -45 * canvas.position - } - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/DrawerHandle.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/DrawerHandle.qml deleted file mode 100644 index d9779854b1..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/DrawerHandle.qml +++ /dev/null @@ -1,208 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2023 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Controls as QQC2 -import QtQuick.Templates as T -import org.kde.kirigami as Kirigami - -MouseArea { - id: root - - /* - * This property is used to set when the tooltip is visible. - * It exists because the text is changed while the tooltip is still visible. - */ - property bool displayToolTip: true - - /** - * The drawer this handle will control - */ - // Should be KT.OverlayDrawer, but can't due to "Cyclic dependency" - property T.Drawer drawer - - readonly property T.Overlay overlay: drawer.T.Overlay.overlay - - // Above the Overlay when modal but below when non-modal and when the drawer is closed - // so that other overlays can be above it. - parent: overlay?.parent ?? null - z: overlay ? overlay.z + (drawer?.modal && drawer?.drawerOpen ? 1 : - 1) : 0 - - preventStealing: true - hoverEnabled: handleAnchor?.visible ?? false - - QQC2.ToolButton { - anchors.centerIn: parent - width: parent.height - Kirigami.Units.smallSpacing * 1.5 - height: parent.height - Kirigami.Units.smallSpacing * 1.5 - visible: !Kirigami.Settings.tabletMode && !Kirigami.Settings.hasTransientTouchInput - - Accessible.name: root.drawer.drawerOpen ? root.drawer.handleOpenToolTip : root.drawer.handleClosedToolTip - - onClicked: { - root.displayToolTip = false; - Qt.callLater(() => { - root.drawer.drawerOpen = !root.drawer.drawerOpen; - }) - } - Keys.onEscapePressed: { - if (root.drawer.closePolicy & T.Popup.CloseOnEscape) { - root.drawer.drawerOpen = false; - } - } - } - - QQC2.ToolTip.visible: displayToolTip && containsMouse - QQC2.ToolTip.text: drawer.drawerOpen ? handleOpenToolTip : handleClosedToolTip - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay - - property Item handleAnchor: { - if (typeof applicationWindow === "undefined") { - return null; - } - const window = applicationWindow(); - const globalToolBar = window.pageStack?.globalToolBar; - if (!globalToolBar) { - return null; - } - return (drawer.edge === Qt.LeftEdge && !drawer.mirrored) || (drawer.edge === Qt.RightEdge && drawer.mirrored) - ? globalToolBar.leftHandleAnchor - : globalToolBar.rightHandleAnchor; - } - - property int startX - property int mappedStartX - - enabled: drawer.handleVisible - - onPressed: mouse => { - drawer.peeking = true; - startX = mouse.x; - mappedStartX = mapToItem(parent, startX, 0).x; - } - - onPositionChanged: mouse => { - if (!pressed) { - return; - } - const pos = mapToItem(parent, mouse.x - startX, mouse.y); - switch (drawer.edge) { - case Qt.LeftEdge: - drawer.position = pos.x / drawer.contentItem.width; - break; - case Qt.RightEdge: - drawer.position = (drawer.parent.width - pos.x - width) / drawer.contentItem.width; - break; - default: - } - } - - onReleased: mouse => { - drawer.peeking = false; - if (Math.abs(mapToItem(parent, mouse.x, 0).x - mappedStartX) < Qt.styleHints.startDragDistance) { - if (!drawer.drawerOpen) { - drawer.close(); - } - drawer.drawerOpen = !drawer.drawerOpen; - } - } - - onCanceled: { - drawer.peeking = false - } - - x: { - switch (drawer.edge) { - case Qt.LeftEdge: - return drawer.background.width * drawer.position + Kirigami.Units.smallSpacing; - case Qt.RightEdge: - return parent.width - (drawer.background.width * drawer.position) - width - Kirigami.Units.smallSpacing; - default: - return 0; - } - } - - Binding { - when: root.handleAnchor && root.anchors.bottom - target: root - property: "y" - value: root.handleAnchor ? root.handleAnchor.Kirigami.ScenePosition.y : 0 - restoreMode: Binding.RestoreBinding - } - - anchors { - bottom: handleAnchor ? undefined : parent.bottom - bottomMargin: { - if (typeof applicationWindow === "undefined") { - return undefined; - } - const window = applicationWindow(); - - let margin = Kirigami.Units.smallSpacing; - if (window.footer) { - margin = window.footer.height + Kirigami.Units.smallSpacing; - } - - if (drawer.parent && drawer.height < drawer.parent.height) { - margin = drawer.parent.height - drawer.height - drawer.y + Kirigami.Units.smallSpacing; - } - - if (!window || !window.pageStack || - !window.pageStack.contentItem || - !window.pageStack.contentItem.itemAt) { - return margin; - } - - let item; - if (window.pageStack.layers.depth > 1) { - item = window.pageStack.layers.currentItem; - } else { - item = window.pageStack.contentItem.itemAt(window.pageStack.contentItem.contentX + x, 0); - } - - // try to take the last item - if (!item) { - item = window.pageStack.lastItem; - } - - let pageFooter = item && item.page ? item.page.footer : (item ? item.footer : undefined); - if (pageFooter && drawer.parent) { - margin = drawer.height < drawer.parent.height ? margin : margin + pageFooter.height - } - - return margin; - } - - Behavior on bottomMargin { - NumberAnimation { - duration: Kirigami.Units.shortDuration - easing.type: Easing.InOutQuad - } - } - } - - visible: drawer.enabled && (drawer.edge === Qt.LeftEdge || drawer.edge === Qt.RightEdge) && opacity > 0 - width: handleAnchor?.visible ? handleAnchor.width : Kirigami.Units.iconSizes.smallMedium + Kirigami.Units.smallSpacing * 2 - height: handleAnchor?.visible ? handleAnchor.height : width - opacity: drawer.handleVisible ? 1 : 0 - - Behavior on opacity { - NumberAnimation { - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutQuad - } - } - - transform: Translate { - x: root.drawer.handleVisible ? 0 : (root.drawer.edge === Qt.LeftEdge ? -root.width : root.width) - Behavior on x { - NumberAnimation { - duration: Kirigami.Units.longDuration - easing.type: !root.drawer.handleVisible ? Easing.OutQuad : Easing.InQuad - } - } - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/ForwardButton.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/ForwardButton.qml deleted file mode 100644 index 18e7075c90..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/ForwardButton.qml +++ /dev/null @@ -1,36 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2016 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami - -QQC2.ToolButton { - id: button - - icon.name: (LayoutMirroring.enabled ? "go-next-symbolic-rtl" : "go-next-symbolic") - - enabled: applicationWindow().pageStack.currentIndex < applicationWindow().pageStack.depth-1 - - // The gridUnit wiggle room is used to not flicker the button visibility during an animated resize for instance due to a sidebar collapse - visible: { - const pageStack = applicationWindow().pageStack; - const showNavButtons = globalToolBar?.showNavigationButtons ?? Kirigami.ApplicationHeaderStyle.NoNavigationButtons; - return pageStack.layers.depth === 1 && pageStack.contentItem.contentWidth > pageStack.width + Kirigami.Units.gridUnit && (showNavButtons & Kirigami.ApplicationHeaderStyle.ShowForwardButton); - } - - onClicked: applicationWindow().pageStack.goForward(); - - text: qsTr("Navigate Forward") - display: QQC2.ToolButton.IconOnly - - QQC2.ToolTip { - visible: button.hovered - text: button.text - delay: Kirigami.Units.toolTipDelay - y: button.height - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/GenericDrawerIcon.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/GenericDrawerIcon.qml deleted file mode 100644 index ac9ad9b4fd..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/GenericDrawerIcon.qml +++ /dev/null @@ -1,33 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2015 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import org.kde.kirigami as Kirigami - -Item { - width: height - height: Kirigami.Units.iconSizes.smallMedium - property Kirigami.OverlayDrawer drawer - property color color: Kirigami.Theme.textColor - opacity: 0.8 - layer.enabled: true - - Kirigami.Icon { - selected: drawer.handle.pressed - opacity: 1 - drawer.position - anchors.fill: parent - source: drawer.handleClosedIcon.name ? drawer.handleClosedIcon.name : drawer.handleClosedIcon.source - color: drawer.handleClosedIcon.color - } - Kirigami.Icon { - selected: drawer.handle.pressed - opacity: drawer.position - anchors.fill: parent - source: drawer.handleOpenIcon.name ? drawer.handleOpenIcon.name : drawer.handleOpenIcon.source - color: drawer.handleOpenIcon.color - } -} - diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/IconPropertiesGroup.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/IconPropertiesGroup.qml deleted file mode 100644 index 4539f03464..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/IconPropertiesGroup.qml +++ /dev/null @@ -1,69 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2017 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQml - -/** - * @brief Group of icon properties. - * - * This is a subset of those used in QQC2, Kirigami.Action still needs the full one as needs 100% api compatibility - */ -QtObject { - /** - * @brief This property holds icon name. - * - * The icon will be loaded from the platform theme. If the icon is found - * in the theme, it will always be used; even if icon.source is also set. - * If the icon is not found, icon.source will be used instead. - */ - property string name - - /** - * @brief This property holds the icon source. - * - * The icon will be loaded as a regular image. - * - * @see QtQuick.Image::source - */ - property var source - - /** - * @brief This property holds the icon tint color. - * - * The icon is tinted with the specified color, unless the color is set to "transparent". - */ - property color color: Qt.rgba(0, 0, 0, 0) - - /** - * This property holds the width of the icon. - */ - property real width - - /** - * This property holds the height of the icon. - */ - property real height - - /** - * Bind this icon to all matching properties of a Controls icon group. - * - * This function automatically binds all properties to matching properties - * of a controls icon group, since we cannot just reuse the Controls icon - * group. - * - * To use it, you can assign the result to an IconPropertiesGroup, like so: - * `icon: icon.fromControlsIcon(control.icon)`. - */ - function fromControlsIcon(icon) { - name = Qt.binding(() => icon.name) - source = Qt.binding(() => icon.source) - color = Qt.binding(() => icon.color) - width = Qt.binding(() => icon.width) - height = Qt.binding(() => icon.height) - return this - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/MenuIcon.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/MenuIcon.qml deleted file mode 100644 index 0dddcfb597..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/MenuIcon.qml +++ /dev/null @@ -1,65 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2015 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import org.kde.kirigami as Kirigami - -Item { - id: canvas - width: height - height: Kirigami.Units.iconSizes.smallMedium - property Kirigami.OverlayDrawer drawer - property color color: Kirigami.Theme.textColor - opacity: 0.8 - layer.enabled: true - - LayoutMirroring.enabled: false - LayoutMirroring.childrenInherit: true - Item { - id: iconRoot - anchors { - fill: parent - margins: Kirigami.Units.smallSpacing - } - readonly property int thickness: 2 - readonly property real drawerPosition: drawer ? drawer.position : 0 - - Rectangle { - anchors { - right: parent.right - top: parent.top - topMargin: -iconRoot.thickness/2 * iconRoot.drawerPosition - } - antialiasing: iconRoot.drawerPosition !== 0 - transformOrigin: Item.Right - width: (1 - iconRoot.drawerPosition) * parent.width + iconRoot.drawerPosition * (Math.sqrt(2*(parent.width*parent.width))) - height: iconRoot.thickness - color: canvas.color - rotation: -45 * iconRoot.drawerPosition - } - - Rectangle { - anchors.centerIn: parent - width: parent.width - parent.width * iconRoot.drawerPosition - height: iconRoot.thickness - color: canvas.color - } - - Rectangle { - anchors { - right: parent.right - bottom: parent.bottom - bottomMargin: -iconRoot.thickness/2 * iconRoot.drawerPosition - } - antialiasing: iconRoot.drawerPosition !== 0 - transformOrigin: Item.Right - width: (1 - iconRoot.drawerPosition) * parent.width + iconRoot.drawerPosition * (Math.sqrt(2*(parent.width*parent.width))) - height: iconRoot.thickness - color: canvas.color - rotation: 45 * iconRoot.drawerPosition - } - } -} diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/PassiveNotificationsManager.qml b/local/recipes/kde/kirigami/source/src/controls/templates/private/PassiveNotificationsManager.qml deleted file mode 100644 index e351869aa3..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/PassiveNotificationsManager.qml +++ /dev/null @@ -1,262 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2015 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -import QtQuick -import QtQuick.Controls as QQC2 -import QtQuick.Layouts -import org.kde.kirigami as Kirigami - -/** - * @brief PassiveNotificationManager is meant to display small, passive and inline notifications in the app. - * - * It is used to show messages of limited importance that make sense only when - * the user is using the application and wouldn't be suited as a global - * system-wide notification. -*/ -Item { - id: root - - readonly property int maximumNotificationWidth: { - if (Kirigami.Settings.isMobile) { - return applicationWindow().width - Kirigami.Units.largeSpacing * 4 - } else { - return Math.min(Kirigami.Units.gridUnit * 25, applicationWindow().width / 1.5) - } - } - - readonly property int maximumNotificationCount: 4 - - function showNotification(message, timeout, actionText, callBack) { - if (!message) { - return; - } - - let interval = 7000; - - if (timeout === "short") { - interval = 4000; - } else if (timeout === "long") { - interval = 12000; - } else if (timeout > 0) { - interval = timeout; - } - - // this wrapper is necessary because of Qt casting a function into an object - const callBackWrapperObj = callBackWrapper.createObject(listView, { callBack }) - - // set empty string & function for qml not to complain - notificationsModel.append({ - text: message, - actionButtonText: actionText || "", - closeInterval: interval, - callBackWrapper: callBackWrapperObj - }) - // remove the oldest notification if new notification count would exceed 3 - if (notificationsModel.count === maximumNotificationCount) { - if (listView.itemAtIndex(0).hovered === true) { - hideNotification(1) - } else { - hideNotification() - } - } - } - - /** - * @brief Remove a notification at specific index. By default, index is set to 0. - */ - function hideNotification(index = 0) { - if (index >= 0 && notificationsModel.count > index) { - const callBackWrapperObj = notificationsModel.get(index).callBackWrapper - if (callBackWrapperObj) { - callBackWrapperObj.destroy() - } - notificationsModel.remove(index) - } - } - - // we have to set height to show more than one notification - height: Math.min(applicationWindow().height, Kirigami.Units.gridUnit * 10) - - implicitHeight: listView.implicitHeight - implicitWidth: listView.implicitWidth - - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.Complementary - - ListModel { - id: notificationsModel - } - - ListView { - id: listView - - anchors.fill: parent - anchors.bottomMargin: Kirigami.Units.largeSpacing - - implicitWidth: root.maximumNotificationWidth - spacing: Kirigami.Units.smallSpacing - model: notificationsModel - verticalLayoutDirection: ListView.BottomToTop - keyNavigationEnabled: false - reuseItems: false // do not resue items, otherwise delegates do not hide themselves properly - focus: false - interactive: false - - add: Transition { - id: addAnimation - ParallelAnimation { - alwaysRunToEnd: true - NumberAnimation { - property: "opacity" - from: 0 - to: 1 - duration: Kirigami.Units.longDuration - easing.type: Easing.OutCubic - } - NumberAnimation { - property: "y" - from: addAnimation.ViewTransition.destination.y - Kirigami.Units.gridUnit * 3 - duration: Kirigami.Units.longDuration - easing.type: Easing.OutCubic - } - } - } - displaced: Transition { - ParallelAnimation { - alwaysRunToEnd: true - NumberAnimation { - property: "y" - duration: Kirigami.Units.longDuration - easing.type: Easing.InOutCubic - } - NumberAnimation { - property: "opacity" - duration: 0 - to: 1 - } - } - } - remove: Transition { - ParallelAnimation { - alwaysRunToEnd: true - NumberAnimation { - property: "opacity" - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InCubic - } - NumberAnimation { - property: "y" - to: Kirigami.Units.gridUnit * 3 - duration: Kirigami.Units.longDuration - easing.type: Easing.InCubic - } - PropertyAction { - property: "transformOrigin" - value: Item.Bottom - } - PropertyAnimation { - property: "scale" - from: 1 - to: 0 - duration: Kirigami.Units.longDuration - easing.type: Easing.InCubic - } - } - } - delegate: QQC2.Control { - id: delegate - - hoverEnabled: true - - anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined - width: Math.min(implicitWidth, maximumNotificationWidth) - implicitHeight: { - // HACK: contentItem.implicitHeight needs to be updated manually for some reason - void contentItem.implicitHeight; - return Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding); - } - z: { - if (delegate.hovered) { - return 2; - } else if (delegate.index === 0) { - return 1; - } else { - return 0; - } - } - - leftPadding: Kirigami.Units.largeSpacing - rightPadding: Kirigami.Units.largeSpacing - topPadding: Kirigami.Units.largeSpacing - bottomPadding: Kirigami.Units.largeSpacing - - contentItem: RowLayout { - id: mainLayout - - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: root.Kirigami.Theme.colorSet - - spacing: Kirigami.Units.mediumSpacing - - TapHandler { - acceptedButtons: Qt.LeftButton - onTapped: eventPoint => hideNotification(index) - } - Timer { - id: timer - interval: model.closeInterval - running: !delegate.hovered - onTriggered: hideNotification(index) - } - - QQC2.Label { - id: label - text: model.text - elide: Text.ElideRight - wrapMode: Text.Wrap - Layout.fillWidth: true - Layout.alignment: Qt.AlignVCenter - } - - QQC2.Button { - id: actionButton - text: model.actionButtonText - visible: text.length > 0 - Layout.alignment: Qt.AlignVCenter - onClicked: { - const callBack = model.callBackWrapper.callBack - hideNotification(index) - if (callBack && (typeof callBack === "function")) { - callBack(); - } - } - } - } - background: Kirigami.ShadowedRectangle { - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: root.Kirigami.Theme.colorSet - shadow { - size: Kirigami.Units.gridUnit/2 - color: Qt.rgba(0, 0, 0, 0.4) - yOffset: 2 - } - radius: Kirigami.Units.cornerRadius - color: Kirigami.Theme.backgroundColor - opacity: 0.9 - } - } - } - Component { - id: callBackWrapper - QtObject { - property var callBack - } - } -} - diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/private/qmldir b/local/recipes/kde/kirigami/source/src/controls/templates/private/qmldir deleted file mode 100644 index b5e899d6e2..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/private/qmldir +++ /dev/null @@ -1,11 +0,0 @@ -module org.kde.kirigami.templates.private - -BackButton 1.0 BackButton.qml -BorderPropertiesGroup 1.0 BorderPropertiesGroup.qml -ContextIcon 1.0 ContextIcon.qml -DrawerHandle 1.0 DrawerHandle.qml -ForwardButton 1.0 ForwardButton.qml -GenericDrawerIcon 1.0 GenericDrawerIcon.qml -IconPropertiesGroup 1.0 IconPropertiesGroup.qml -MenuIcon 1.0 MenuIcon.qml -PassiveNotificationsManager 1.0 PassiveNotificationsManager.qml diff --git a/local/recipes/kde/kirigami/source/src/controls/templates/qmldir b/local/recipes/kde/kirigami/source/src/controls/templates/qmldir deleted file mode 100644 index 9b9e53e313..0000000000 --- a/local/recipes/kde/kirigami/source/src/controls/templates/qmldir +++ /dev/null @@ -1,9 +0,0 @@ -module org.kde.kirigami.templates - -AbstractApplicationHeader 2.2 AbstractApplicationHeader.qml -AbstractCard 2.4 AbstractCard.qml -singleton AppHeaderSizeGroup 2.2 SingletonHeaderSizeGroup.qml -Chip 2.19 Chip.qml -InlineMessage 2.4 InlineMessage.qml -OverlayDrawer 2.2 OverlayDrawer.qml -OverlaySheet 2.2 OverlaySheet.qml diff --git a/local/recipes/kde/kirigami/source/src/copyhelper.cpp b/local/recipes/kde/kirigami/source/src/copyhelper.cpp index 92dcd28ab5..20bd7fca2a 100644 --- a/local/recipes/kde/kirigami/source/src/copyhelper.cpp +++ b/local/recipes/kde/kirigami/source/src/copyhelper.cpp @@ -15,3 +15,5 @@ void CopyHelperPrivate::copyTextToClipboard(const QString &text) { qGuiApp->clipboard()->setText(text); } + +#include "moc_copyhelper.cpp" diff --git a/local/recipes/kde/kirigami/source/src/delegates/CMakeLists.txt b/local/recipes/kde/kirigami/source/src/delegates/CMakeLists.txt index 0fcefe4ede..ef428a91d3 100644 --- a/local/recipes/kde/kirigami/source/src/delegates/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/src/delegates/CMakeLists.txt @@ -3,12 +3,17 @@ add_library(KirigamiDelegates) ecm_add_qml_module(KirigamiDelegates URI "org.kde.kirigami.delegates" GENERATE_PLUGIN_SOURCE INSTALLED_PLUGIN_TARGET KF6KirigamiDelegates - DEPENDENCIES QtQuick org.kde.kirigami.platform org.kde.kirigami.primitives + DEPENDENCIES + QtQuick + TARGET KirigamiPlatform + TARGET KirigamiPrimitives + TARGET KirigamiControls ) ecm_target_qml_sources(KirigamiDelegates SOURCES IconTitleSubtitle.qml TitleSubtitle.qml + TitleSubtitleWithActions.qml SubtitleDelegate.qml CheckSubtitleDelegate.qml diff --git a/local/recipes/kde/kirigami/source/src/delegates/CheckSubtitleDelegate.qml b/local/recipes/kde/kirigami/source/src/delegates/CheckSubtitleDelegate.qml index d2c8e1c9c2..dafae403b6 100644 --- a/local/recipes/kde/kirigami/source/src/delegates/CheckSubtitleDelegate.qml +++ b/local/recipes/kde/kirigami/source/src/delegates/CheckSubtitleDelegate.qml @@ -8,28 +8,31 @@ import QtQuick import QtQuick.Controls as QQC2 import org.kde.kirigami.platform as Platform -/** - * A convenience wrapper combining QtQuick Controls CheckDelegate and IconTitleSubtitle - * - * This is an intentionally minimal wrapper that replaces the CheckDelegate's - * contentItem with an IconTitleSubtitle and adds a subtitle property. - * - * If you wish to customize the layout further, create your own `CheckDelegate` - * subclass with the `contentItem:` property set to the content of your choice. - * This can include `IconTitleSubtitle` inside a Layout, for example. - * - * \note If you don't need a subtitle, use `CheckDelegate` directly. - * - * \sa Kirigami::Delegates::TitleSubtitle - * \sa Kirigami::Delegates::IconTitleSubtitle +/*! + \qmltype CheckSubtitleDelegate + \inqmlmodule org.kde.kirigami.delegates + + \brief A convenience wrapper combining QtQuick Controls CheckDelegate and IconTitleSubtitle. + + This is an intentionally minimal wrapper that replaces the CheckDelegate's + contentItem with an IconTitleSubtitle and adds a subtitle property. + + If you wish to customize the layout further, create your own CheckDelegate + subclass with the contentItem property set to the content of your choice. + This can include IconTitleSubtitle inside a Layout, for example. + + \note If you don't need a subtitle, use CheckDelegate directly. + + \sa TitleSubtitle + \sa IconTitleSubtitle */ QQC2.CheckDelegate { id: delegate // Please see the developer note in ItemDelegate - /** - * The subtitle to display. + /*! + The subtitle to display. */ property string subtitle diff --git a/local/recipes/kde/kirigami/source/src/delegates/IconTitleSubtitle.qml b/local/recipes/kde/kirigami/source/src/delegates/IconTitleSubtitle.qml index 580799d3fd..88097a69c6 100644 --- a/local/recipes/kde/kirigami/source/src/delegates/IconTitleSubtitle.qml +++ b/local/recipes/kde/kirigami/source/src/delegates/IconTitleSubtitle.qml @@ -9,120 +9,147 @@ import QtQuick import org.kde.kirigami.platform as Platform import org.kde.kirigami.primitives as Primitives -import org.kde.kirigami.templates.private as KTP -/** - * A simple item containing an icon, title and subtitle. - * - * This is an extension of TitleSubtitle that adds an icon to the side. - * It is intended as a contentItem for ItemDelegate and related controls. - * - * When using it as a contentItem, make sure to bind the appropriate properties - * to those of the Control. Prefer binding to the Control's properties over - * setting the properties directly, as the Control's properties may affect other - * things like setting accessible names. - * - * This (and TitleSubtitle) can be combined with other controls in a layout to - * create complex content items for controls. - * - * Example usage creating a CheckDelegate with an extra button on the side: - * - * ```qml - * CheckDelegate { - * id: delegate - * - * text: "Example" - * icon.name: "document-new" - * - * contentItem: RowLayout { - * spacing: Kirigami.Units.smallSpacing - * - * Kirigami.IconTitleSubtitle { - * Layout.fillWidth: true - * - * icon: icon.fromControlsIcon(delegate.icon) - * title: delegate.text - * selected: delegate.highlighted || delegate.down - * font: delegate.font - * } - * - * Button { - * icon.name: "document-open" - * text: "Extra Action" - * } - * } - * } - * ``` - * - * \sa Kirigami::Delegates::TitleSubtitle - * \sa Kirigami::Delegates::ItemDelegate +/*! + \qmltype IconTitleSubtitle + \inqmlmodule org.kde.kirigami.delegates + + \brief A simple item containing an icon, title and subtitle. + + This is an extension of TitleSubtitle that adds an icon to the side. + It is intended as a contentItem for ItemDelegate and related controls. + + When using it as a contentItem, make sure to bind the appropriate properties + to those of the Control. Prefer binding to the Control's properties over + setting the properties directly, as the Control's properties may affect other + things like setting accessible names. + + This (and TitleSubtitle) can be combined with other controls in a layout to + create complex content items for controls. + + Example usage creating a CheckDelegate with an extra button on the side: + + \qml + CheckDelegate { + id: delegate + + text: "Example" + icon.name: "document-new" + + contentItem: RowLayout { + spacing: Kirigami.Units.smallSpacing + + Kirigami.IconTitleSubtitle { + Layout.fillWidth: true + + icon: icon.fromControlsIcon(delegate.icon) + title: delegate.text + selected: delegate.highlighted || delegate.down + font: delegate.font + } + + Button { + icon.name: "document-open" + text: "Extra Action" + } + } + } + \endqml + + \sa TitleSubtitle + \sa ItemDelegate */ Item { id: root - /** - * @copydoc Kirigami::TitleSubtitle::title + /*! + The title to display. */ required property string title - /** - * @copydoc Kirigami::TitleSubtitle::subtitle + /*! + \qmlproperty string subtitle + The subtitle to display. */ property alias subtitle: titleSubtitle.subtitle - /** - * @copydoc Kirigami::TitleSubtitle::color + /*! + \qmlproperty color color + The color to use for the title. + + By default this is `Kirigami.Theme.textColor` unless `selected` is true + in which case this is `Kirigami.Theme.highlightedTextColor`. */ property alias color: titleSubtitle.color - /** - * @copydoc Kirigami::TitleSubtitle::subtitleColor + /*! + \qmlproperty color subtitleColor + + The color to use for the subtitle. + + By default this is color mixed with the background color. */ property alias subtitleColor: titleSubtitle.subtitleColor - /** - * @copydoc Kirigami::TitleSubtitle::font + /*! + \qmlproperty font font + The font used to display the title. */ property alias font: titleSubtitle.font - /** - * @copydoc Kirigami::TitleSubtitle::subtitleFont + /*! + \qmlproperty font subtitleFont + The font used to display the subtitle. */ property alias subtitleFont: titleSubtitle.subtitleFont - /** - * @copydoc Kirigami::TitleSubtitle::reserveSpaceForSubtitle + /*! + \qmlproperty bool reserveSpaceForSubtitle + Make the implicit height use the subtitle's height even if no subtitle is set. */ property alias reserveSpaceForSubtitle: titleSubtitle.reserveSpaceForSubtitle - /** - * @copydoc Kirigami::TitleSubtitle::selected + /*! + \qmlproperty bool selected + Should this item be displayed in a selected style? */ property alias selected: titleSubtitle.selected - /** - * @copydoc Kirigami::TitleSubtitle::elide + /*! + \qmlproperty int elide + The text elision mode used for both the title and subtitle. */ property alias elide: titleSubtitle.elide - /** - * @copydoc Kirigami::TitleSubtitle::wrapMode + /*! + \qmlproperty int wrapMode + The text wrap mode used for both the title and subtitle. */ property alias wrapMode: titleSubtitle.wrapMode - /** - * @copydoc Kirigami::TitleSubtitle::truncated + /*! + \qmlproperty bool truncated + Is the title or subtitle truncated? */ property alias truncated: titleSubtitle.truncated - /** - * Grouped property for icon properties. - * - * \note By default, IconTitleSubtitle will reserve the space for the icon, - * even if it is not set. To remove that space, set `icon.width` to 0. + /*! + \qmlproperty string icon.name + \qmlproperty var icon.source + \qmlproperty color icon.color + \qmlproperty real icon.width + \qmlproperty real icon.height + \qmlproperty function icon.fromControlsIcon + + Grouped property for icon properties. + + \note By default, IconTitleSubtitle will reserve the space for the icon, + even if it is not set. To remove that space, set `icon.width` to 0. + + \include iconpropertiesgroup.qdocinc grouped-properties */ - property KTP.IconPropertiesGroup icon: KTP.IconPropertiesGroup { + property Primitives.IconPropertiesGroup icon: Primitives.IconPropertiesGroup { width: titleSubtitle.subtitleVisible ? Platform.Units.iconSizes.medium : Platform.Units.iconSizes.smallMedium height: width } - /** - * @copydoc Kirigami::TitleSubtitle::linkActivated + /*! + \brief Emitted when the user clicks on a link embedded in the text of the title or subtitle. */ signal linkActivated(string link) - /** - * @copydoc Kirigami::TitleSubtitle::linkHovered + /*! + \brief Emitted when the user hovers on a link embedded in the text of the title or subtitle. */ signal linkHovered(string link) diff --git a/local/recipes/kde/kirigami/source/src/delegates/RadioSubtitleDelegate.qml b/local/recipes/kde/kirigami/source/src/delegates/RadioSubtitleDelegate.qml index 20722c27a7..072efb4283 100644 --- a/local/recipes/kde/kirigami/source/src/delegates/RadioSubtitleDelegate.qml +++ b/local/recipes/kde/kirigami/source/src/delegates/RadioSubtitleDelegate.qml @@ -9,28 +9,31 @@ import QtQuick.Controls as QQC2 import org.kde.kirigami.platform as Platform -/** - * A convenience wrapper combining QtQuick Controls RadioDelegate and IconTitleSubtitle - * - * This is an intentionally minimal wrapper that replaces the RadioDelegate's - * contentItem with an IconTitleSubtitle and adds a subtitle property. - * - * If you wish to customize the layout further, create your own `RadioDelegate` - * subclass with the `contentItem:` property set to the content of your choice. - * This can include `IconTitleSubtitle` inside a Layout, for example. - * - * \note If you don't need a subtitle, use `RadioDelegate` directly. - * - * \sa Kirigami::Delegates::TitleSubtitle - * \sa Kirigami::Delegates::IconTitleSubtitle +/*! + \qmltype RadioSubtitleDelegate + \inqmlmodule org.kde.kirigami.delegates + + \brief A convenience wrapper combining QtQuick Controls RadioDelegate and IconTitleSubtitle. + + This is an intentionally minimal wrapper that replaces the RadioDelegate's + contentItem with an IconTitleSubtitle and adds a subtitle property. + + If you wish to customize the layout further, create your own RadioDelegate + subclass with the contentItem property set to the content of your choice. + This can include IconTitleSubtitle inside a Layout, for example. + + \note If you don't need a subtitle, use RadioDelegate directly. + + \sa TitleSubtitle + \sa IconTitleSubtitle */ QQC2.RadioDelegate { id: delegate // Please see the developer note in ItemDelegate - /** - * The subtitle to display. + /*! + The subtitle to display. */ property string subtitle diff --git a/local/recipes/kde/kirigami/source/src/delegates/SubtitleDelegate.qml b/local/recipes/kde/kirigami/source/src/delegates/SubtitleDelegate.qml index a6a898cc29..a47492ce77 100644 --- a/local/recipes/kde/kirigami/source/src/delegates/SubtitleDelegate.qml +++ b/local/recipes/kde/kirigami/source/src/delegates/SubtitleDelegate.qml @@ -8,20 +8,23 @@ import QtQuick import QtQuick.Controls as QQC2 import org.kde.kirigami.platform as Platform -/** - * A convenience wrapper combining QtQuick Controls ItemDelegate and IconTitleSubtitle - * - * This is an intentionally minimal wrapper that replaces the ItemDelegate's - * contentItem with an IconTitleSubtitle and adds a subtitle property. - * - * If you wish to customize the layout further, create your own `ItemDelegate` - * subclass with the `contentItem:` property set to the content of your choice. - * This can include `IconTitleSubtitle` inside a Layout, for example. - * - * \note If you don't need a subtitle, use `ItemDelegate` directly. - * - * \sa Kirigami::Delegates::TitleSubtitle - * \sa Kirigami::Delegates::IconTitleSubtitle +/*! + \qmltype SubtitleDelegate + \inqmlmodule org.kde.kirigami.delegates + + \brief A convenience wrapper combining QtQuick Controls ItemDelegate and IconTitleSubtitle. + + This is an intentionally minimal wrapper that replaces the ItemDelegate's + contentItem with an IconTitleSubtitle and adds a subtitle property. + + If you wish to customize the layout further, create your own ItemDelegate + subclass with the contentItem property set to the content of your choice. + This can include IconTitleSubtitle inside a Layout, for example. + + \note If you don't need a subtitle, use ItemDelegate directly. + + \sa TitleSubtitle + \sa IconTitleSubtitle */ QQC2.ItemDelegate { id: delegate @@ -32,8 +35,8 @@ QQC2.ItemDelegate { // these controls will be removed in favour of using upstream's implementation // directly. - /** - * The subtitle to display. + /*! + The subtitle to display. */ property string subtitle diff --git a/local/recipes/kde/kirigami/source/src/delegates/SwitchSubtitleDelegate.qml b/local/recipes/kde/kirigami/source/src/delegates/SwitchSubtitleDelegate.qml index c73ab11759..e1e1dd2730 100644 --- a/local/recipes/kde/kirigami/source/src/delegates/SwitchSubtitleDelegate.qml +++ b/local/recipes/kde/kirigami/source/src/delegates/SwitchSubtitleDelegate.qml @@ -8,28 +8,31 @@ import QtQuick import QtQuick.Controls as QQC2 import org.kde.kirigami.platform as Platform -/** - * A convenience wrapper combining QtQuick Controls SwitchDelegate and IconTitleSubtitle - * - * This is an intentionally minimal wrapper that replaces the SwitchDelegate's - * contentItem with an IconTitleSubtitle and adds a subtitle property. - * - * If you wish to customize the layout further, create your own `SwitchDelegate` - * subclass with the `contentItem:` property set to the content of your choice. - * This can include `IconTitleSubtitle` inside a Layout, for example. - * - * \note If you don't need a subtitle, use `SwitchDelegate` directly. - * - * \sa Kirigami::Delegates::TitleSubtitle - * \sa Kirigami::Delegates::IconTitleSubtitle +/*! + \qmltype SwitchSubtitleDelegate + \inqmlmodule org.kde.kirigami.delegates + + \brief A convenience wrapper combining QtQuick Controls SwitchDelegate and IconTitleSubtitle. + + This is an intentionally minimal wrapper that replaces the SwitchDelegate's + contentItem with an IconTitleSubtitle and adds a subtitle property. + + If you wish to customize the layout further, create your own SwitchDelegate + subclass with the \c contentItem: property set to the content of your choice. + This can include IconTitleSubtitle inside a Layout, for example. + + \note If you don't need a subtitle, use SwitchDelegate directly. + + \sa TitleSubtitle + \sa IconTitleSubtitle */ QQC2.SwitchDelegate { id: delegate // Please see the developer note in ItemDelegate - /** - * The subtitle to display. + /*! + The subtitle to display. */ property string subtitle diff --git a/local/recipes/kde/kirigami/source/src/delegates/TitleSubtitle.qml b/local/recipes/kde/kirigami/source/src/delegates/TitleSubtitle.qml index 0276c28284..1b96344884 100644 --- a/local/recipes/kde/kirigami/source/src/delegates/TitleSubtitle.qml +++ b/local/recipes/kde/kirigami/source/src/delegates/TitleSubtitle.qml @@ -9,106 +9,113 @@ import QtQuick import org.kde.kirigami.platform as Platform -/** - * A simple item containing a title and subtitle label. - * - * This is mainly intended as a replacement for a list delegate content item, - * but can be used as a replacement for other content items as well. - * - * When using it as a contentItem, make sure to bind the appropriate properties - * to those of the Control. Prefer binding to the Control's properties over - * setting the properties directly, as the Control's properties may affect other - * things like setting accessible names. - * - * Example usage as contentItem of an ItemDelegate: - * - * ```qml - * ItemDelegate { - * id: delegate - * - * text: "Example" - * - * contentItem: Kirigami.TitleSubtitle { - * title: delegate.text - * subtitle: "This is an example." - * font: delegate.font - * selected: delegate.highlighted || delegate.down - * } - * } - * ``` - * - * \sa Kirigami::Delegates::IconTitleSubtitle - * \sa Kirigami::Delegates::ItemDelegate +/*! + \qmltype TitleSubtitle + \inqmlmodule org.kde.kirigami.delegates + + \brief A simple item containing a title and subtitle label. + + This is mainly intended as a replacement for a list delegate content item, + but can be used as a replacement for other content items as well. + + When using it as a contentItem, make sure to bind the appropriate properties + to those of the Control. Prefer binding to the Control's properties over + setting the properties directly, as the Control's properties may affect other + things like setting accessible names. + + Example usage as contentItem of an ItemDelegate: + + \qml + ItemDelegate { + id: delegate + + text: "Example" + + contentItem: Kirigami.TitleSubtitle { + title: delegate.text + subtitle: "This is an example." + font: delegate.font + selected: delegate.highlighted || delegate.down + } + } + \endqml + + \sa IconTitleSubtitle + \sa ItemDelegate */ Item { id: root - /** - * The title to display. + /*! + The title to display. */ required property string title - /** - * The subtitle to display. + /*! + The subtitle to display. */ property string subtitle - /** - * The color to use for the title. - * - * By default this is `Kirigami.Theme.textColor` unless `selected` is true - * in which case this is `Kirigami.Theme.highlightedTextColor`. + /*! + The color to use for the title. + + By default this is Kirigami.Theme.textColor unless selected is true + in which case this is Kirigami.Theme.highlightedTextColor. */ property color color: selected ? Platform.Theme.highlightedTextColor : Platform.Theme.textColor - /** - * The color to use for the subtitle. - * - * By default this is `color` mixed with the background color. + /*! + The color to use for the subtitle. + + By default this is color mixed with the background color. */ property color subtitleColor: selected ? Platform.Theme.highlightedTextColor - : Platform.ColorUtils.linearInterpolation(color, Platform.Theme.backgroundColor, 0.3) - /** - * The font used to display the title. + : Platform.ColorUtils.linearInterpolation(color, Platform.Theme.backgroundColor, 0.25) + /*! + The font used to display the title. */ property font font: Platform.Theme.defaultFont - /** - * The font used to display the subtitle. + /*! + The font used to display the subtitle. */ property font subtitleFont: Platform.Theme.smallFont - /** - * The text elision mode used for both the title and subtitle. + /*! + The text elision mode used for both the title and subtitle. */ property int elide: Text.ElideRight - /** - * The text wrap mode used for both the title and subtitle. + /*! + The text wrap mode used for both the title and subtitle. */ property int wrapMode: Text.NoWrap - /** - * Make the implicit height use the subtitle's height even if no subtitle is set. + /*! + Make the implicit height use the subtitle's height even if no subtitle is set. */ property bool reserveSpaceForSubtitle: false - /** - * Should this item be displayed in a selected style? + /*! + Should this item be displayed in a selected style? */ property bool selected: false - /** - * Is the subtitle visible? + /*! + The way the text property for the title and subtitle should be displayed. + */ + property int textFormat: Text.AutoText + /*! + Is the subtitle visible? */ // Note: Don't rely on subtitleItem.visible because visibility is an // implicitly propagated property, and we don't wanna re-layout on // hide/show events. Copy-paste its bound expression instead. readonly property bool subtitleVisible: subtitle.length > 0 || reserveSpaceForSubtitle - /** - * Is the title or subtitle truncated? + /*! + Is the title or subtitle truncated? */ readonly property bool truncated: labelItem.truncated || subtitleItem.truncated - /** - * @brief Emitted when the user clicks on a link embedded in the text of the title or subtitle. + /*! + \brief Emitted when the user clicks on a link embedded in the text of the title or subtitle. */ signal linkActivated(string link) - /** - * @brief Emitted when the user hovers on a link embedded in the text of the title or subtitle. + /*! + \brief Emitted when the user hovers on a link embedded in the text of the title or subtitle. */ signal linkHovered(string link) @@ -132,6 +139,7 @@ Item { font: root.font elide: root.elide wrapMode: root.wrapMode + textFormat: root.textFormat onLinkActivated: link => root.linkActivated(link) onLinkHovered: link => root.linkHovered(link) @@ -169,6 +177,7 @@ Item { font: root.subtitleFont elide: root.elide wrapMode: root.wrapMode + textFormat: root.textFormat visible: text.length > 0 diff --git a/local/recipes/kde/kirigami/source/src/dialogs/CMakeLists.txt b/local/recipes/kde/kirigami/source/src/dialogs/CMakeLists.txt index c35896c322..519b2b0eca 100644 --- a/local/recipes/kde/kirigami/source/src/dialogs/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/src/dialogs/CMakeLists.txt @@ -4,12 +4,16 @@ ecm_add_qml_module(KirigamiDialogs URI "org.kde.kirigami.dialogs" VERSION 2.0 GENERATE_PLUGIN_SOURCE INSTALLED_PLUGIN_TARGET KF6KirigamiDialogsplugin - DEPENDENCIES QtQuick org.kde.kirigami.platform + DEPENDENCIES + QtQuick + TARGET KirigamiPlatform ) ecm_target_qml_sources(KirigamiDialogs SOURCES + DialogHeader.qml + DialogHeaderTopContent.qml Dialog.qml MenuDialog.qml PromptDialog.qml diff --git a/local/recipes/kde/kirigami/source/src/dialogs/Dialog.qml b/local/recipes/kde/kirigami/source/src/dialogs/Dialog.qml index d09a0f8acf..3401c2ccee 100644 --- a/local/recipes/kde/kirigami/source/src/dialogs/Dialog.qml +++ b/local/recipes/kde/kirigami/source/src/dialogs/Dialog.qml @@ -12,247 +12,253 @@ import QtQuick.Layouts import QtQuick.Templates as T import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KirigamiControls +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.dialogs as KDialogs + +/*! + \qmltype Dialog + \inqmlmodule org.kde.kirigami.dialogs + \inherits Dialog + + \brief Popup dialog that is used for short tasks and user interaction. + + Dialog consists of three components: the header, the content, + and the footer. + + By default, the header is a heading with text specified by the + title property. + + By default, the footer consists of a row of buttons specified by + the standardButtons and customFooterActions properties. + + The implicitHeight and implicitWidth of the dialog contentItem is + the primary hint used for the dialog size. The dialog will be the + minimum size required for the header, footer and content unless + it is larger than maximumHeight and maximumWidth. Use + preferredHeight and preferredWidth in order to manually specify + a size for the dialog. + + If the content height exceeds the maximum height of the dialog, the + dialog's contents will become scrollable. + + If the contentItem is a ListView, the dialog will take care of the + necessary scrollbars and scrolling behaviour. Do not attempt + to nest ListViews (it must be the top level item), as the scrolling + behaviour will not be handled. Use ListView's header and footer instead. + + Example for a selection dialog: + + \qml + import QtQuick + import QtQuick.Layouts + import QtQuick.Controls as QQC2 + import org.kde.kirigami as Kirigami + + Kirigami.Dialog { + title: i18n("Dialog") + padding: 0 + preferredWidth: Kirigami.Units.gridUnit * 16 + + standardButtons: Kirigami.Dialog.Ok | Kirigami.Dialog.Cancel + + onAccepted: console.log("OK button pressed") + onRejected: console.log("Rejected") + + ColumnLayout { + spacing: 0 + Repeater { + model: 5 + delegate: QQC2.CheckDelegate { + topPadding: Kirigami.Units.smallSpacing * 2 + bottomPadding: Kirigami.Units.smallSpacing * 2 + Layout.fillWidth: true + text: modelData + } + } + } + } + \endqml + + Example with scrolling (ListView scrolling behaviour is handled by the Dialog): + + \qml + import QtQuick + import QtQuick.Layouts + import QtQuick.Controls as QQC2 + import org.kde.kirigami as Kirigami + + Kirigami.Dialog { + id: scrollableDialog + title: i18n("Select Number") + + ListView { + id: listView + // hints for the dialog dimensions + implicitWidth: Kirigami.Units.gridUnit * 16 + implicitHeight: Kirigami.Units.gridUnit * 16 + + model: 100 + delegate: QQC2.RadioDelegate { + topPadding: Kirigami.Units.smallSpacing * 2 + bottomPadding: Kirigami.Units.smallSpacing * 2 + implicitWidth: listView.width + text: modelData + } + } + } + \endqml + + There are also sub-components of the Dialog that target specific usecases, + and can reduce boilerplate code if used. + + \sa PromptDialog + \sa MenuDialog -/** - * @brief Popup dialog that is used for short tasks and user interaction. - * - * Dialog consists of three components: the header, the content, - * and the footer. - * - * By default, the header is a heading with text specified by the - * `title` property. - * - * By default, the footer consists of a row of buttons specified by - * the `standardButtons` and `customFooterActions` properties. - * - * The `implicitHeight` and `implicitWidth` of the dialog contentItem is - * the primary hint used for the dialog size. The dialog will be the - * minimum size required for the header, footer and content unless - * it is larger than `maximumHeight` and `maximumWidth`. Use - * `preferredHeight` and `preferredWidth` in order to manually specify - * a size for the dialog. - * - * If the content height exceeds the maximum height of the dialog, the - * dialog's contents will become scrollable. - * - * If the contentItem is a ListView, the dialog will take care of the - * necessary scrollbars and scrolling behaviour. Do not attempt - * to nest ListViews (it must be the top level item), as the scrolling - * behaviour will not be handled. Use ListView's `header` and `footer` instead. - * - * Example for a selection dialog: - * - * @code{.qml} - * import QtQuick - * import QtQuick.Layouts - * import QtQuick.Controls as QQC2 - * import org.kde.kirigami as Kirigami - * - * Kirigami.Dialog { - * title: i18n("Dialog") - * padding: 0 - * preferredWidth: Kirigami.Units.gridUnit * 16 - * - * standardButtons: Kirigami.Dialog.Ok | Kirigami.Dialog.Cancel - * - * onAccepted: console.log("OK button pressed") - * onRejected: console.log("Rejected") - * - * ColumnLayout { - * spacing: 0 - * Repeater { - * model: 5 - * delegate: QQC2.CheckDelegate { - * topPadding: Kirigami.Units.smallSpacing * 2 - * bottomPadding: Kirigami.Units.smallSpacing * 2 - * Layout.fillWidth: true - * text: modelData - * } - * } - * } - * } - * @endcode - * - * Example with scrolling (ListView scrolling behaviour is handled by the Dialog): - * - * @code{.qml} - * import QtQuick - * import QtQuick.Layouts - * import QtQuick.Controls as QQC2 - * import org.kde.kirigami as Kirigami - * - * Kirigami.Dialog { - * id: scrollableDialog - * title: i18n("Select Number") - * - * ListView { - * id: listView - * // hints for the dialog dimensions - * implicitWidth: Kirigami.Units.gridUnit * 16 - * implicitHeight: Kirigami.Units.gridUnit * 16 - * - * model: 100 - * delegate: QQC2.RadioDelegate { - * topPadding: Kirigami.Units.smallSpacing * 2 - * bottomPadding: Kirigami.Units.smallSpacing * 2 - * implicitWidth: listView.width - * text: modelData - * } - * } - * } - * @endcode - * - * There are also sub-components of the Dialog that target specific usecases, - * and can reduce boilerplate code if used: - * - * @see PromptDialog - * @see MenuDialog - * - * @inherit QtQuick.QtObject */ T.Dialog { id: root - /** - * @brief This property holds the dialog's contents; includes Items and QtObjects. - * @property list dialogData + /*! + \qmlproperty list Dialog::dialogData + \brief This property holds the dialog's contents; includes Items and QtObjects. */ default property alias dialogData: contentControl.contentData - /** - * @brief This property holds the content items of the dialog. - * - * The initial height and width of the dialog is calculated from the - * `implicitWidth` and `implicitHeight` of the content. - * - * @property list dialogChildren + /*! + \qmlproperty list Dialog::dialogChildren + \brief This property holds the content items of the dialog. + + The initial height and width of the dialog is calculated from the + implicitWidth and implicitHeight of the content. */ property alias dialogChildren: contentControl.contentChildren - /** - * @brief This property sets the absolute maximum height the dialog can have. - * - * The height restriction is solely applied on the content, so if the - * maximum height given is not larger than the height of the header and - * footer, it will be ignored. - * - * This is the window height, subtracted by largeSpacing on both the top - * and bottom. + /*! + \brief This property sets the absolute maximum height the dialog can have. + + The height restriction is solely applied on the content, so if the + maximum height given is not larger than the height of the header and + footer, it will be ignored. + + This is the window height, subtracted by largeSpacing on both the top + and bottom. */ - readonly property real absoluteMaximumHeight: parent ? (parent.height - Kirigami.Units.largeSpacing * 2) : Infinity + readonly property real absoluteMaximumHeight: ((parent && parent.height) || Infinity) - Platform.Units.largeSpacing * 2 - /** - * @brief This property holds the absolute maximum width the dialog can have. - * - * By default, it is the window width, subtracted by largeSpacing on both - * the top and bottom. + /*! + \brief This property holds the absolute maximum width the dialog can have. + + By default, it is the window width, subtracted by largeSpacing on both + the top and bottom. */ - readonly property real absoluteMaximumWidth: parent ? (parent.width - Kirigami.Units.largeSpacing * 2) : Infinity + readonly property real absoluteMaximumWidth: ((parent && parent.width) || Infinity) - Platform.Units.largeSpacing * 2 - readonly property real __borderWidth: 1 + readonly property real __borderWidth: !root.hasOwnProperty("popupType") || popupType === T.Popup.Item ? 1 : 0 - /** - * @brief This property holds the maximum height the dialog can have - * (including the header and footer). - * - * The height restriction is solely enforced on the content, so if the - * maximum height given is not larger than the height of the header and - * footer, it will be ignored. - * - * By default, this is `absoluteMaximumHeight`. + /*! + \brief This property holds the maximum height the dialog can have + (including the header and footer). + + The height restriction is solely enforced on the content, so if the + maximum height given is not larger than the height of the header and + footer, it will be ignored. + + By default, this is absoluteMaximumHeight. */ property real maximumHeight: absoluteMaximumHeight - /** - * @brief This property holds the maximum width the dialog can have. - * - * By default, this is `absoluteMaximumWidth`. + /*! + \brief This property holds the maximum width the dialog can have. + + By default, this is absoluteMaximumWidth. */ property real maximumWidth: absoluteMaximumWidth - /** - * @brief This property holds the preferred height of the dialog. - * - * The content will receive a hint for how tall it should be to have - * the dialog to be this height. - * - * If the content, header or footer require more space, then the height - * of the dialog will expand to the necessary amount of space. + /*! + \brief This property holds the preferred height of the dialog. + + The content will receive a hint for how tall it should be to have + the dialog to be this height. + + If the content, header or footer require more space, then the height + of the dialog will expand to the necessary amount of space. */ property real preferredHeight: -1 - /** - * @brief This property holds the preferred width of the dialog. - * - * The content will receive a hint for how wide it should be to have - * the dialog be this wide. - * - * If the content, header or footer require more space, then the width - * of the dialog will expand to the necessary amount of space. + /*! + \brief This property holds the preferred width of the dialog. + + The content will receive a hint for how wide it should be to have + the dialog be this wide. + + If the content, header or footer require more space, then the width + of the dialog will expand to the necessary amount of space. */ property real preferredWidth: -1 - /** - * @brief This property holds the component to the left of the footer buttons. + /*! + \brief This property holds the component to the left of the footer buttons. */ property Component footerLeadingComponent - /** - * @brief his property holds the component to the right of the footer buttons. + /*! + \brief his property holds the component to the right of the footer buttons. */ property Component footerTrailingComponent - /** - * @brief This property sets whether to show the close button in the header. + /*! + \brief This property sets whether to show the close button in the header. */ property bool showCloseButton: true - /** - * @brief This property sets whether the footer button style should be flat. + /*! + \brief This property sets whether the footer button style should be flat. */ property bool flatFooterButtons: false - /** - * @brief This property holds the custom actions displayed in the footer. - * - * Example usage: - * @code{.qml} - * import QtQuick - * import org.kde.kirigami as Kirigami - * - * Kirigami.PromptDialog { - * id: dialog - * title: i18n("Confirm Playback") - * subtitle: i18n("Are you sure you want to play this song? It's really loud!") - * - * standardButtons: Kirigami.Dialog.Cancel - * customFooterActions: [ - * Kirigami.Action { - * text: i18n("Play") - * icon.name: "media-playback-start" - * onTriggered: { - * //... - * dialog.close(); - * } - * } - * ] - * } - * @endcode - * - * @see org::kde::kirigami::Action + /*! + \brief This property holds the custom actions displayed in the footer. + + Example usage: + \code + import QtQuick + import org.kde.kirigami as Kirigami + + Kirigami.PromptDialog { + id: dialog + title: i18n("Confirm Playback") + subtitle: i18n("Are you sure you want to play this song? It's really loud!") + + standardButtons: Kirigami.Dialog.Cancel + customFooterActions: [ + Kirigami.Action { + text: i18n("Play") + icon.name: "media-playback-start" + onTriggered: { + //... + dialog.close(); + } + } + ] + } + \endcode + + \sa Action */ property list customFooterActions // DialogButtonBox should NOT contain invisible buttons, because in Qt 6 // ListView preserves space even for invisible items. readonly property list __visibleCustomFooterActions: customFooterActions - .filter(action => !(action instanceof Kirigami.Action) || action?.visible) + .filter(action => !(action instanceof KirigamiControls.Action) || action?.visible) function standardButton(button): T.AbstractButton { // in case a footer is redefined if (footer instanceof T.DialogButtonBox) { - return footer.standardButton(button); + return (footer as T.DialogButtonBox).standardButton(button); } else if (footer === footerToolBar) { return dialogButtonBox.standardButton(button); } else { @@ -276,8 +282,8 @@ T.Dialog { z: Kirigami.OverlayZStacking.z // calculate dimensions and in case footer is wider than content, use that - implicitWidth: Math.max(contentItem.implicitWidth, footerToolBar.implicitWidth, heading.implicitWidth) + leftPadding + rightPadding // maximum width enforced from our content (one source of truth) to avoid binding loops - implicitHeight: contentItem.implicitHeight + topPadding + bottomPadding + implicitWidth: Math.max(implicitContentWidth, implicitFooterWidth, implicitHeaderWidth) + leftPadding + rightPadding // maximum width enforced from our content (one source of truth) to avoid binding loops + implicitHeight: implicitContentHeight + topPadding + bottomPadding + (implicitHeaderHeight > 0 ? implicitHeaderHeight + spacing : 0) + (implicitFooterHeight > 0 ? implicitFooterHeight + spacing : 0); @@ -290,22 +296,18 @@ T.Dialog { // determine parent so that popup knows which window to popup in // we want to open the dialog in the center of the window, if possible - Component.onCompleted: { - if (typeof applicationWindow !== "undefined") { - parent = applicationWindow().overlay; - } - } + parent: typeof applicationWindow !== "undefined" ? applicationWindow().overlay : undefined // center dialog - x: parent ? Math.round((parent.width - width) / 2) : 0 - y: parent ? Math.round((parent.height - height) / 2) + Kirigami.Units.gridUnit * 2 * (1 - opacity) : 0 // move animation + x: parent ? Math.round(((parent && parent.width) - width) / 2) : 0 + y: parent ? Math.round(((parent && parent.height) - height) / 2) + Platform.Units.gridUnit * 2 * (1 - opacity) : 0 // move animation // dialog enter and exit transitions enter: Transition { - NumberAnimation { property: "opacity"; from: 0; to: 1; easing.type: Easing.InOutQuad; duration: Kirigami.Units.longDuration } + NumberAnimation { property: "opacity"; from: 0; to: 1; easing.type: Easing.InOutQuad; duration: Platform.Units.longDuration } } exit: Transition { - NumberAnimation { property: "opacity"; from: 1; to: 0; easing.type: Easing.InOutQuad; duration: Kirigami.Units.longDuration } + NumberAnimation { property: "opacity"; from: 1; to: 0; easing.type: Easing.InOutQuad; duration: Platform.Units.longDuration } } // black background, fades in and out @@ -315,19 +317,19 @@ T.Dialog { // the opacity of the item is changed internally by QQuickPopup on open/close Behavior on opacity { OpacityAnimator { - duration: Kirigami.Units.longDuration + duration: Platform.Units.longDuration easing.type: Easing.InOutQuad } } } // dialog view background - background: Kirigami.ShadowedRectangle { + background: Primitives.ShadowedRectangle { id: rect - Kirigami.Theme.colorSet: Kirigami.Theme.View - Kirigami.Theme.inherit: false - color: Kirigami.Theme.backgroundColor - radius: Kirigami.Units.cornerRadius + Platform.Theme.colorSet: Platform.Theme.View + Platform.Theme.inherit: false + color: Platform.Theme.backgroundColor + radius: !root.hasOwnProperty("popupType") || root.popupType === T.Popup.Item ? Platform.Units.cornerRadius : 0 shadow { size: radius * 2 color: Qt.rgba(0, 0, 0, 0.3) @@ -336,7 +338,7 @@ T.Dialog { border { width: root.__borderWidth - color: Kirigami.ColorUtils.linearInterpolation(Kirigami.Theme.backgroundColor, Kirigami.Theme.textColor, Kirigami.Theme.frameContrast); + color: Platform.ColorUtils.linearInterpolation(Platform.Theme.backgroundColor, Platform.Theme.textColor, Platform.Theme.frameContrast); } } @@ -345,8 +347,8 @@ T.Dialog { id: contentControl // ensure view colour scheme, and background color - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.View + Platform.Theme.inherit: false + Platform.Theme.colorSet: Platform.Theme.View QQC2.ScrollBar.horizontal.policy: QQC2.ScrollBar.AlwaysOff @@ -355,15 +357,15 @@ T.Dialog { property real calculatedMaximumWidth: Math.min(root.absoluteMaximumWidth, root.maximumWidth) - root.leftPadding - root.rightPadding property real calculatedMaximumHeight: Math.min(root.absoluteMaximumHeight, root.maximumHeight) - root.topPadding - root.bottomPadding - property real calculatedImplicitWidth: (contentChildren.length === 1 && contentChildren[0].implicitWidth > 0 ? contentChildren[0].implicitWidth : contentItem.implicitWidth) + leftPadding + rightPadding - property real calculatedImplicitHeight: (contentChildren.length === 1 && contentChildren[0].implicitHeight > 0? contentChildren[0].implicitHeight: contentItem.implicitHeight) + topPadding + bottomPadding + property real calculatedImplicitWidth: implicitContentWidth + leftPadding + rightPadding + property real calculatedImplicitHeight: implicitContentHeight + topPadding + bottomPadding onContentItemChanged: { const contentFlickable = contentItem as Flickable; if (contentFlickable) { /* Why this is necessary? A Flickable mainItem syncs its size with the contents only on startup, - and if the contents can change their size dinamically afterwards (wrapping text does that), + and if the contents can change their size dynamically afterwards (wrapping text does that), the contentsize will be wrong see BUG 477257. We also don't do this declaratively but only we are sure a contentItem is declared/created as just @@ -397,62 +399,16 @@ T.Dialog { property var widthHint: Binding { target: contentControl.contentChildren[0] || null property: "width" - value: contentControl.width + contentControl.leftPadding + contentControl.rightPadding + value: contentControl.width - contentControl.leftPadding - contentControl.rightPadding restoreMode: Binding.RestoreBinding } } - header: T.Control { - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - padding: Kirigami.Units.largeSpacing - bottomPadding: verticalPadding + headerSeparator.implicitHeight // add space for bottom separator - - contentItem: RowLayout { - spacing: Kirigami.Units.smallSpacing - - Kirigami.Heading { - id: heading - Layout.fillWidth: true - Layout.alignment: Qt.AlignVCenter - text: root.title.length === 0 ? " " : root.title // always have text to ensure header height - elide: Text.ElideRight - - // use tooltip for long text that is elided - QQC2.ToolTip.visible: truncated && titleHoverHandler.hovered - QQC2.ToolTip.text: root.title - HoverHandler { id: titleHoverHandler } - } - - QQC2.ToolButton { - id: closeIcon - - // We want to position the close button in the top-right - // corner if the header is very tall, but we want to - // vertically center it in a short header - readonly property bool tallHeader: parent.height > (Kirigami.Units.iconSizes.smallMedium + Kirigami.Units.largeSpacing * 2) - Layout.alignment: tallHeader ? Qt.AlignRight | Qt.AlignTop : Qt.AlignRight | Qt.AlignVCenter - Layout.topMargin: tallHeader ? Kirigami.Units.largeSpacing : 0 - - visible: root.showCloseButton - icon.name: closeIcon.hovered ? "window-close" : "window-close-symbolic" - text: qsTr("Close", "@action:button close dialog") - onClicked: root.reject() - display: QQC2.AbstractButton.IconOnly - } - } - - // header background - background: Item { - Kirigami.Separator { - id: headerSeparator - width: parent.width - anchors.bottom: parent.bottom - visible: contentControl.contentHeight > contentControl.implicitHeight - } + header: KDialogs.DialogHeader { + visible: !root.hasOwnProperty("popupType") || root.popupType === T.Popup.Item + dialog: root + contentItem: KDialogs.DialogHeaderTopContent { + dialog: root } } @@ -462,12 +418,13 @@ T.Dialog { // if there is nothing in the footer, still maintain a height so that we can create a rounded bottom buffer for the dialog property bool bufferMode: !root.footerLeadingComponent && !dialogButtonBox.visible - implicitHeight: bufferMode ? Math.round(Kirigami.Units.smallSpacing / 2) : contentItem.implicitHeight + topPadding + bottomPadding - implicitWidth: dialogButtonBox.implicitWidth + leftPadding + rightPadding + implicitHeight: bufferMode ? Math.round(Platform.Units.smallSpacing / 2) : implicitContentHeight + topPadding + bottomPadding + implicitWidth: footerLayout.implicitWidth + leftPadding + rightPadding - padding: !bufferMode ? Kirigami.Units.largeSpacing : 0 + padding: !bufferMode ? Platform.Units.largeSpacing : 0 contentItem: RowLayout { + id: footerLayout spacing: footerToolBar.spacing // Don't let user interact with footer during transitions enabled: root.opened @@ -523,9 +480,14 @@ T.Dialog { } background: Item { - Kirigami.Separator { + Primitives.Separator { id: footerSeparator - visible: contentControl.contentHeight > contentControl.implicitHeight && footerToolBar.padding !== 0 + visible: if (root.contentItem instanceof T.Pane || root.contentItem instanceof Flickable) { + const itemContentHeight = (root.contentItem as T.Pane)?.contentHeight ?? (root.contentItem as Flickable)?.contentHeight + return root.contentItem.height < itemContentHeight; + } else { + return false; + } width: parent.width anchors.top: parent.top } diff --git a/local/recipes/kde/kirigami/source/src/dialogs/MenuDialog.qml b/local/recipes/kde/kirigami/source/src/dialogs/MenuDialog.qml index 6faaf391e5..51bfa90198 100644 --- a/local/recipes/kde/kirigami/source/src/dialogs/MenuDialog.qml +++ b/local/recipes/kde/kirigami/source/src/dialogs/MenuDialog.qml @@ -10,77 +10,84 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts import QtQuick.Templates as T -import org.kde.kirigami as Kirigami +import org.kde.kirigami.controls as KirigamiControls +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.dialogs as KirigamiDialogs -/** - * A dialog that prompts users with a context menu, with - * list items that perform actions. - * - * Example usage: - * @code{.qml} - * Kirigami.MenuDialog { - * title: i18n("Track Options") - * - * actions: [ - * Kirigami.Action { - * icon.name: "media-playback-start" - * text: i18nc("Start playback of the selected track", "Play") - * tooltip: i18n("Start playback of the selected track") - * }, - * Kirigami.Action { - * enabled: false - * icon.name: "document-open-folder" - * text: i18nc("Show the file for this song in the file manager", "Show in folder") - * tooltip: i18n("Show the file for this song in the file manager") - * }, - * Kirigami.Action { - * icon.name: "documentinfo" - * text: i18nc("Show track metadata", "View details") - * tooltip: i18n("Show track metadata") - * }, - * Kirigami.Action { - * icon.name: "list-add" - * text: i18nc("Add the track to the queue, right after the current track", "Play next") - * tooltip: i18n("Add the track to the queue, right after the current track") - * }, - * Kirigami.Action { - * icon.name: "list-add" - * text: i18nc("Enqueue current track", "Add to queue") - * tooltip: i18n("Enqueue current track") - * } - * ] - * } - * @endcode - * - * @see Dialog - * @see PromptDialog - * @inherit org::kde::kirigami::Dialog +/*! + \qmltype MenuDialog + \inqmlmodule org.kde.kirigami.dialogs + + \brief A dialog that prompts users with a context menu, with + list items that perform actions. + + Example usage: + \qml + Kirigami.MenuDialog { + title: i18n("Track Options") + + actions: [ + Kirigami.Action { + icon.name: "media-playback-start" + text: i18nc("Start playback of the selected track", "Play") + tooltip: i18n("Start playback of the selected track") + }, + Kirigami.Action { + enabled: false + icon.name: "document-open-folder" + text: i18nc("Show the file for this song in the file manager", "Show in folder") + tooltip: i18n("Show the file for this song in the file manager") + }, + Kirigami.Action { + icon.name: "documentinfo" + text: i18nc("Show track metadata", "View details") + tooltip: i18n("Show track metadata") + }, + Kirigami.Action { + icon.name: "list-add" + text: i18nc("Add the track to the queue, right after the current track", "Play next") + tooltip: i18n("Add the track to the queue, right after the current track") + }, + Kirigami.Action { + icon.name: "list-add" + text: i18nc("Enqueue current track", "Add to queue") + tooltip: i18n("Enqueue current track") + } + ] + } + \endqml + + \sa Dialog + \sa PromptDialog */ -Kirigami.Dialog { +KirigamiDialogs.Dialog { id: root - /** - * @brief This property holds the actions displayed in the context menu. + /*! + \qmlproperty list actions + \brief This property holds the actions displayed in the context menu. */ property list actions - /** - * @brief This property holds the content header, which appears above the actions. - * but below the header bar. + /*! + \qmlproperty Item MenuDialog::contentHeader + + \brief This property holds the content header, which appears above the actions. + but below the header bar. */ property alias contentHeader: columnHeader.contentItem - /** - * @brief This property holds the content header. - * - * This makes it possible to access its internal properties to, for example, change its padding: - * ``contentHeaderControl.topPadding`` - * - * @property QtQuick.Controls.Control contentHeaderControl + /*! + \qmlproperty Control MenuDialog::contentHeaderControl + + \brief This property holds the content header. + + This makes it possible to access its internal properties to, for example, change its padding: + contentHeaderControl.topPadding */ property alias contentHeaderControl: columnHeader - preferredWidth: Kirigami.Units.gridUnit * 20 + preferredWidth: Platform.Units.gridUnit * 20 padding: 0 ColumnLayout { @@ -104,21 +111,21 @@ Kirigami.Dialog { required property T.Action modelData Layout.fillWidth: true - Layout.preferredHeight: Kirigami.Units.gridUnit * 2 + Layout.preferredHeight: Platform.Units.gridUnit * 2 action: modelData - visible: !(modelData instanceof Kirigami.Action) || modelData.visible + visible: (modelData as KirigamiControls.Action)?.visible ?? true - icon.width: Kirigami.Units.gridUnit - icon.height: Kirigami.Units.gridUnit + icon.width: Platform.Units.gridUnit + icon.height: Platform.Units.gridUnit - horizontalPadding: Kirigami.Units.largeSpacing + Kirigami.Units.smallSpacing + horizontalPadding: Platform.Units.largeSpacing + Platform.Units.smallSpacing leftPadding: undefined rightPadding: undefined - QQC2.ToolTip.text: modelData instanceof Kirigami.Action ? modelData.tooltip : "" - QQC2.ToolTip.visible: QQC2.ToolTip.text.length > 0 && (Kirigami.Settings.tabletMode ? pressed : hovered) - QQC2.ToolTip.delay: Kirigami.Settings.tabletMode ? Qt.styleHints.mousePressAndHoldInterval : Kirigami.Units.toolTipDelay + QQC2.ToolTip.text: (modelData as KirigamiControls.Action)?.tooltip ?? "" + QQC2.ToolTip.visible: QQC2.ToolTip.text.length > 0 && (Platform.Settings.tabletMode ? pressed : hovered) + QQC2.ToolTip.delay: Platform.Settings.tabletMode ? Application.styleHints.mousePressAndHoldInterval : Platform.Units.toolTipDelay onClicked: root.close() } diff --git a/local/recipes/kde/kirigami/source/src/dialogs/PromptDialog.qml b/local/recipes/kde/kirigami/source/src/dialogs/PromptDialog.qml index a753be42c6..c9125f36b0 100644 --- a/local/recipes/kde/kirigami/source/src/dialogs/PromptDialog.qml +++ b/local/recipes/kde/kirigami/source/src/dialogs/PromptDialog.qml @@ -8,69 +8,74 @@ pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami +import org.kde.kirigami.dialogs as KirigamiDialogs +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KirigamiControls +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.layouts as KirigamiLayouts -/** - * A simple dialog to quickly prompt a user with information, - * and possibly perform an action. - * - * Provides content padding (instead of padding outside of the scroll - * area). Also has a default preferredWidth, as well as the `subtitle` property. - * - * Note: If a `mainItem` is specified, it will replace - * the subtitle label, and so the respective property will have no effect. - * - * @see Dialog - * @see MenuDialog - * - * Example usage: - * - * @code{.qml} - * Kirigami.PromptDialog { - * title: "Reset settings?" - * subtitle: "The stored settings for the application will be deleted, with the defaults restored." - * standardButtons: Kirigami.Dialog.Ok | Kirigami.Dialog.Cancel - * - * onAccepted: console.log("Accepted") - * onRejected: console.log("Rejected") - * } - * @endcode - * - * Text field prompt dialog: - * - * @code{.qml} - * Kirigami.PromptDialog { - * id: textPromptDialog - * title: qsTr("New Folder") - * - * standardButtons: Kirigami.Dialog.NoButton - * customFooterActions: [ - * Kirigami.Action { - * text: qsTr("Create Folder") - * icon.name: "dialog-ok" - * onTriggered: { - * showPassiveNotification("Created"); - * textPromptDialog.close(); - * } - * }, - * Kirigami.Action { - * text: qsTr("Cancel") - * icon.name: "dialog-cancel" - * onTriggered: { - * textPromptDialog.close(); - * } - * } - * ] - * - * QQC2.TextField { - * placeholderText: qsTr("Folder name…") - * } - * } - * @endcode - * - * @inherit Dialog +/*! + \qmltype PromptDialog + \inqmlmodule org.kde.kirigami.dialogs + + \brief A simple dialog to quickly prompt a user with information, + and possibly perform an action. + + Provides content padding (instead of padding outside of the scroll + area). Also has a default preferredWidth, as well as the subtitle property. + + \note If a mainItem is specified, it will replace + the subtitle label, and so the respective property will have no effect. + + \sa Dialog + \sa MenuDialog + + Example usage: + + \qml + Kirigami.PromptDialog { + title: "Reset settings?" + subtitle: "The stored settings for the application will be deleted, with the defaults restored." + standardButtons: Kirigami.Dialog.Ok | Kirigami.Dialog.Cancel + + onAccepted: console.log("Accepted") + onRejected: console.log("Rejected") + } + \endqml + + Text field prompt dialog: + + \qml + Kirigami.PromptDialog { + id: textPromptDialog + title: qsTr("New Folder") + + standardButtons: Kirigami.Dialog.NoButton + customFooterActions: [ + Kirigami.Action { + text: qsTr("Create Folder") + icon.name: "dialog-ok" + onTriggered: { + showPassiveNotification("Created"); + textPromptDialog.close(); + } + }, + Kirigami.Action { + text: qsTr("Cancel") + icon.name: "dialog-cancel" + onTriggered: { + textPromptDialog.close(); + } + } + ] + + QQC2.TextField { + placeholderText: qsTr("Folder name…") + } + } + \endqml */ -Kirigami.Dialog { +KirigamiDialogs.Dialog { id: root default property alias mainItem: mainLayout.data @@ -83,62 +88,63 @@ Kirigami.Dialog { None } - /** - * This property holds the dialogType. It can be either: - * - * - `PromptDialog.Success`: For a sucess message - * - `PromptDialog.Warning`: For a warning message - * - `PromptDialog.Error`: For an actual error - * - `PromptDialog.Information`: For an informational message - * - `PromptDialog.None`: No specific dialog type. - * - * By default, the dialogType is `Kirigami.PromptDialog.None` - */ - property int dialogType: Kirigami.PromptDialog.None + /*! + This property holds the dialogType. It can be either: + \list + \li PromptDialog.Success: For a success message + \li PromptDialog.Warning: For a warning message + \li PromptDialog.Error: For an actual error + \li PromptDialog.Information: For an informational message + \li PromptDialog.None: No specific dialog type. + \endlist - /** - * The text to use in the dialog's contents. + By default, the dialogType is PromptDialog.None + */ + property int dialogType: PromptDialog.None + + /*! + The text to use in the dialog's contents. */ property string subtitle - /** - * The padding around the content, within the scroll area. - * - * Default is `Kirigami.Units.largeSpacing`. - */ - property real contentPadding: Kirigami.Units.largeSpacing + /*! + The padding around the content, within the scroll area. - /** - * The top padding of the content, within the scroll area. + Default is Kirigami.Units.largeSpacing. + */ + property real contentPadding: Platform.Units.largeSpacing + + /*! + The top padding of the content, within the scroll area. */ property real contentTopPadding: contentPadding - /** - * The bottom padding of the content, within the scroll area. + /*! + The bottom padding of the content, within the scroll area. */ property real contentBottomPadding: footer.padding === 0 ? contentPadding : 0 // add bottom padding if there is no footer - /** - * The left padding of the content, within the scroll area. + /*! + The left padding of the content, within the scroll area. */ property real contentLeftPadding: contentPadding - /** - * The right padding of the content, within the scroll area. + /*! + The right padding of the content, within the scroll area. */ property real contentRightPadding: contentPadding - /** - * This property holds the icon name used by the PromptDialog. + /*! + This property holds the icon name used by the PromptDialog. */ property string iconName: switch (dialogType) { - case Kirigami.PromptDialog.Success: + case PromptDialog.Success: return "data-success"; - case Kirigami.PromptDialog.Warning: + case PromptDialog.Warning: return "data-warning"; - case Kirigami.PromptDialog.Error: + case PromptDialog.Error: return "data-error"; - case Kirigami.PromptDialog.Information: + case PromptDialog.Information: return "data-information"; default: return ""; @@ -148,7 +154,7 @@ Kirigami.Dialog { header: null - Kirigami.Padding { + KirigamiLayouts.Padding { id: wrapper topPadding: root.contentTopPadding @@ -157,36 +163,36 @@ Kirigami.Dialog { bottomPadding: root.contentBottomPadding contentItem: RowLayout { - spacing: Kirigami.Units.largeSpacing + spacing: Platform.Units.largeSpacing - Kirigami.Icon { + Primitives.Icon { source: root.iconName visible: root.iconName.length > 0 - Layout.preferredWidth: Kirigami.Units.iconSizes.huge - Layout.preferredHeight: Kirigami.Units.iconSizes.huge + Layout.preferredWidth: Platform.Units.iconSizes.huge + Layout.preferredHeight: Platform.Units.iconSizes.huge Layout.alignment: Qt.AlignTop } ColumnLayout { id: mainLayout - spacing: Kirigami.Units.smallSpacing + spacing: Platform.Units.smallSpacing Layout.fillWidth: true ColumnLayout { spacing: 0 - Kirigami.Heading { + KirigamiControls.Heading { text: root.title - visible: root.title.length > 0 + visible: (!root.hasOwnProperty("popupType") || root.popupType === QQC2.Popup.Item) && root.title.length > 0 elide: QQC2.Label.ElideRight wrapMode: Text.WordWrap Layout.fillWidth: true } - Kirigami.SelectableLabel { + KirigamiControls.SelectableLabel { text: root.subtitle wrapMode: TextEdit.Wrap visible: text.length > 0 diff --git a/local/recipes/kde/kirigami/source/src/dialogs/SearchDialog.qml b/local/recipes/kde/kirigami/source/src/dialogs/SearchDialog.qml index 538e46e105..dab2813f2d 100644 --- a/local/recipes/kde/kirigami/source/src/dialogs/SearchDialog.qml +++ b/local/recipes/kde/kirigami/source/src/dialogs/SearchDialog.qml @@ -8,128 +8,163 @@ import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts -import org.kde.kirigami as Kirigami +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KirigamiControls +import org.kde.kirigami.primitives as Primitives -/** - * A dialog to let's you do a global search accross your applications - * documents, chat rooms and more. - * - * Example usage for a chat app where we want to quickly search for a room. - * - * @code{.qml} - * import QtQuick - * import org.kde.kitemmodels as KItemModels - * import org.kde.kirigami as Kirigami - * - * Kirigami.SearchDialog { - * id: root - * - * onTextChanged: { - * sortModel.filterText = text; - * } - * onAccepted: listView.currentItem.clicked() - * - * emptyText: i18nc("Placeholder message", "No room found.") - * - * model: KItemModels.KSortFilterProxyModel { - * id: sortModel - * - * sourceModel: RoomModel { } - * } - * - * delegate: RoomDelegate { - * onClicked: root.close() - * } - * - * Shortcut { - * sequence: "Ctrl+K" - * onActivated: root.open() - * } - * } - * @endcode{} - * - * @image html searchdialog.html - * - * @note This component is unsuitable on mobile. Instead on mobile prefer to - * use a seperate page for the search. - * - * @since Kirigami 6.3 +/*! + \qmltype SearchDialog + \inqmlmodule org.kde.kirigami.dialogs + + \brief A dialog to let's you do a global search across your applications + documents, chat rooms and more. + + Example usage for a chat app where we want to quickly search for a room. + + \qml + import QtQuick + import org.kde.kitemmodels as KItemModels + import org.kde.kirigami as Kirigami + + Kirigami.SearchDialog { + id: root + + onTextChanged: { + sortModel.filterString = text; + } + onAccepted: listView.currentItem.clicked() + + emptyText: i18nc("Placeholder message", "No room found.") + + model: KItemModels.KSortFilterProxyModel { + id: sortModel + + sourceModel: RoomModel { } + } + + delegate: RoomDelegate { + onClicked: root.close() + } + + Shortcut { + sequence: "Ctrl+K" + onActivated: root.open() + } + } + \endqml + + \image searchdialog.png + + \note This component is unsuitable on mobile. Instead on mobile prefer to + use a separate page for the search. + + \note By default, the title and standardButtons property are ignored. + \since 6.3 */ QQC2.Dialog { id: root - /** - * This property holds an alias to the model of the internal ListView. + /*! + \qmlproperty model SearchDialog::model + This property holds an alias to the model of the internal ListView. */ property alias model: listView.model - /** - * This property holds an alias to the delegate component of the internal ListView. + /*! + \qmlproperty Component SearchDialog::delegate + This property holds an alias to the delegate component of the internal ListView. */ property alias delegate: listView.delegate - /** - * This property holds an alias to the currentItem component of the internal ListView. + /*! + \qmlproperty Item SearchDialog::currentItem + This property holds an alias to the currentItem component of the internal ListView. */ property alias currentItem: listView.currentItem - /** - * This property holds an alias to the section component of the internal ListView. + /*! + \qmlproperty enumeration SearchDialog::section.criteria + \qmlproperty Component SearchDialog::section.delegate + \qmlproperty enumneration SearchDialog::section.labelPositioning + \qmlproperty string SearchDialog::section.property + + This property holds an alias to the section component of the internal ListView. */ property alias section: listView.section - /** - * This property holds an alias to the content of the search field. + /*! + \qmlproperty string SearchDialog::text + This property holds an alias to the content of the search field. */ property alias text: searchField.text - /** - * This property holds an alias to the left actions of the seach field. + /*! + \qmlproperty list SearchDialog::searchFieldLeftActions + This property holds an alias to the left actions of the search field. + + \sa ActionTextField::leftActions */ property alias searchFieldLeftActions: searchField.leftActions - /** - * This property holds an alias to the right actions of the seach field. + /*! + \qmlproperty list SearchDialog::searchFieldRightActions + This property holds an alias to the right actions of the search field. + + \sa ActionTextField::rightActions */ property alias searchFieldRightActions: searchField.rightActions - /** - * The placeholder text shown in the (empty) search field. + /*! + \qmlproperty string SearchDialog::searchFieldPlaceholderText + The placeholder text shown in the (empty) search field. */ property alias searchFieldPlaceholderText: searchField.placeholderText - /** - * This property holds the number of search results displayed in the internal ListView. + /*! + \qmlproperty int SearchDialog::count + This property holds the number of search results displayed in the internal ListView. */ property alias count: listView.count - /** - * This property holds an alias to the placeholder message text displayed - * when the internal list view is empty. + /*! + \qmlproperty string SearchDialog::emptyText + This property holds an alias to the placeholder message text displayed + when the internal list view is empty. */ property alias emptyText: placeholder.text - /** - * This property holds an alias to the placeholder message icon displayed - * when the internal list view is empty. + /*! + \qmlproperty string SearchDialog::emptyIcon.name + \qmlproperty string SearchDialog::emptyIcon.source + \qmlproperty int SearchDialog::emptyIcon.width + \qmlproperty int SearchDialog::emptyIcon.height + \qmlproperty color SearchDialog::emptyIcon.color + + This property holds an alias to the placeholder message icon displayed + when the internal list view is empty. */ property alias emptyIcon: placeholder.icon - /** - * @brief Helpful action when the list is empty - * - * This property holds an alias to the helpful action of the placeholder message - * when the internal list view is empty. - * - * @since 6.10 + /*! + \qmlproperty Action SearchDialog::emptyHelpfulAction + \brief Helpful action when the list is empty + + This property holds an alias to the helpful action of the placeholder message + when the internal list view is empty. + + \since 6.10 */ property alias emptyHelpfulAction: placeholder.helpfulAction - width: Math.min(Kirigami.Units.gridUnit * 35, parent.width) - height: Math.min(Kirigami.Units.gridUnit * 20, parent.height) + width: Math.min(Platform.Units.gridUnit * 35, parent.width - leftMargin - rightMargin) + height: Math.min(Platform.Units.gridUnit * 20, parent.height) padding: 0 + header: null + footer: null + standardButtons: QQC2.Dialog.NoButton + anchors.centerIn: parent modal: true @@ -143,14 +178,14 @@ QQC2.Dialog { contentItem: ColumnLayout { spacing: 0 - Kirigami.SearchField { + KirigamiControls.SearchField { id: searchField Layout.fillWidth: true background: null - Layout.margins: Kirigami.Units.smallSpacing + Layout.margins: Platform.Units.smallSpacing Keys.onDownPressed: { const listViewHadFocus = listView.activeFocus; @@ -188,12 +223,13 @@ QQC2.Dialog { } focusSequence: "" + focusSequences: [] autoAccept: false onAccepted: root.accepted() } - Kirigami.Separator { + Primitives.Separator { Layout.fillWidth: true } @@ -211,10 +247,10 @@ QQC2.Dialog { Keys.forwardTo: searchField keyNavigationEnabled: true - Kirigami.PlaceholderMessage { + KirigamiControls.PlaceholderMessage { id: placeholder anchors.centerIn: parent - width: parent.width - Kirigami.Units.gridUnit * 4 + width: parent.width - Platform.Units.gridUnit * 4 icon.name: 'system-search-symbolic' visible: listView.count === 0 && text.length > 0 } diff --git a/local/recipes/kde/kirigami/source/src/enums.h b/local/recipes/kde/kirigami/source/src/enums.h deleted file mode 100644 index 1f189d9bca..0000000000 --- a/local/recipes/kde/kirigami/source/src/enums.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2016 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#ifndef ENUMS_H -#define ENUMS_H - -#include -#include - -namespace ApplicationHeaderStyle -{ -Q_NAMESPACE -QML_ELEMENT - -enum Status { - Auto = 0, - Breadcrumb, - Titles, - ToolBar, ///@since 5.48 - None, ///@since 5.48 -}; -Q_ENUM_NS(Status) - -enum NavigationButton { - NoNavigationButtons = 0, - ShowBackButton = 0x1, - ShowForwardButton = 0x2, -}; -Q_ENUM_NS(NavigationButton) -Q_DECLARE_FLAGS(NavigationButtons, NavigationButton) -} - -namespace MessageType -{ -Q_NAMESPACE -QML_ELEMENT - -enum Type { - Information = 0, - Positive, - Warning, - Error, -}; -Q_ENUM_NS(Type) -}; - -#endif // ENUMS_H diff --git a/local/recipes/kde/kirigami/source/src/forms/cards/FormEntry.qml b/local/recipes/kde/kirigami/source/src/forms/cards/FormEntry.qml index bfb2414543..ca5c213ea3 100644 --- a/local/recipes/kde/kirigami/source/src/forms/cards/FormEntry.qml +++ b/local/recipes/kde/kirigami/source/src/forms/cards/FormEntry.qml @@ -96,7 +96,7 @@ FT.FormEntry { return null } - hoverEnabled: clickEnabled && !Platform.Settings.hasTransientTouchInput + hoverEnabled: !Platform.Settings.hasTransientTouchInput onClicked: { if (!clickEnabled) { diff --git a/local/recipes/kde/kirigami/source/src/forms/cards/FormSeparator.qml b/local/recipes/kde/kirigami/source/src/forms/cards/FormSeparator.qml index de3bc39054..14496d603b 100644 --- a/local/recipes/kde/kirigami/source/src/forms/cards/FormSeparator.qml +++ b/local/recipes/kde/kirigami/source/src/forms/cards/FormSeparator.qml @@ -23,7 +23,9 @@ FT.FormSeparator { if (idx === -1) { return 1; } - return !root.parent.visibleChildren[idx - 1]?.hovered && !root.parent.visibleChildren[idx + 1]?.hovered; + const prev = root.parent.visibleChildren[idx - 1]; + const next = root.parent.visibleChildren[idx + 1]; + return (!prev?.clickEnabled || !next?.clickEnabled) || (!prev?.hovered && !next?.hovered); } Behavior on opacity { OpacityAnimator { diff --git a/local/recipes/kde/kirigami/source/src/forms/flat/FormEntry.qml b/local/recipes/kde/kirigami/source/src/forms/flat/FormEntry.qml index fe2510e260..12f87ece71 100644 --- a/local/recipes/kde/kirigami/source/src/forms/flat/FormEntry.qml +++ b/local/recipes/kde/kirigami/source/src/forms/flat/FormEntry.qml @@ -91,7 +91,10 @@ FT.FormEntry { topPadding: 0 bottomPadding: 0 readonly property Item formLayout: { - let candidate = root.parent + let candidate = root.parent; + if (!candidate) { + return null; + } while (candidate) { if (candidate instanceof Form) { return candidate; @@ -118,8 +121,14 @@ FT.FormEntry { Layout.preferredWidth: contentItem?.Layout.preferredWidth Layout.maximumWidth: contentItem?.Layout.maximumWidth + Binding { + readonly property bool firstEntry: root.parent.children[0] === root + when: firstEntry + titleLabel.topPadding: 0 + } header: QQC.Label { - topPadding: root.parent.children[0] === root ? 0 : Platform.Units.largeSpacing + id: titleLabel + topPadding: Platform.Units.largeSpacing visible: impl.formLayout.__collapsed && text.length > 0 // Accessible.labelFor: visible && root.contentItem ? root.contentItem : null text: label.Primitives.MnemonicData.richTextLabel diff --git a/local/recipes/kde/kirigami/source/src/forms/templates/Form.qml b/local/recipes/kde/kirigami/source/src/forms/templates/Form.qml index 714bb3bde1..371d76649a 100644 --- a/local/recipes/kde/kirigami/source/src/forms/templates/Form.qml +++ b/local/recipes/kde/kirigami/source/src/forms/templates/Form.qml @@ -101,7 +101,7 @@ Item { labelWidth = w; for (let entry of children) { if ("__assignedWidthForLabels" in entry) { - entry.__assignedWidthForLabels = w; + entry.__assignedWidthForLabels = Math.round(w); } } diff --git a/local/recipes/kde/kirigami/source/src/imagecolors.cpp b/local/recipes/kde/kirigami/source/src/imagecolors.cpp index 4b6b4630c3..426c624779 100644 --- a/local/recipes/kde/kirigami/source/src/imagecolors.cpp +++ b/local/recipes/kde/kirigami/source/src/imagecolors.cpp @@ -2,7 +2,7 @@ * SPDX-FileCopyrightText: 2020 Marco Martin * SPDX-FileCopyrightText: 2024 ivan tkachenko * - * SPDX-License-Identifier: GPL-2.0-or-later + * SPDX-License-Identifier: LGPL-2.0-or-later */ #include "imagecolors.h" @@ -238,9 +238,10 @@ void ImageColors::update() if (m_grabResult) { connect(m_grabResult.data(), &QQuickItemGrabResult::ready, this, [this, runUpdate]() { m_sourceImage = m_grabResult->image(); - m_grabResult.clear(); runUpdate(); }); + // Workaround for QTBUG-144544 + connect(m_grabResult.data(), &QQuickItemGrabResult::ready, m_grabResult.data(), [grabResult = m_grabResult] {}, Qt::SingleShotConnection); } } diff --git a/local/recipes/kde/kirigami/source/src/imagecolors.h b/local/recipes/kde/kirigami/source/src/imagecolors.h index a42846a847..be189364b7 100644 --- a/local/recipes/kde/kirigami/source/src/imagecolors.h +++ b/local/recipes/kde/kirigami/source/src/imagecolors.h @@ -2,7 +2,7 @@ * SPDX-FileCopyrightText: 2020 Marco Martin * SPDX-FileCopyrightText: 2024 ivan tkachenko * - * SPDX-License-Identifier: GPL-2.0-or-later + * SPDX-License-Identifier: LGPL-2.0-or-later */ #pragma once @@ -18,12 +18,33 @@ #include +/*! + * \qmlvaluetype imageColorsPaletteSwatch + * \inqmlmodule org.kde.kirigami + */ struct PaletteSwatch { Q_GADGET QML_VALUE_TYPE(imageColorsPaletteSwatch) + /*! + * \qmlproperty real imageColorsPaletteSwatch::ratio + * + * How dominant the color is in the source image. + */ Q_PROPERTY(qreal ratio READ ratio FINAL) + + /*! + * \qmlproperty color imageColorsPaletteSwatch::color + * + * The color of the list item + */ Q_PROPERTY(QColor color READ color FINAL) + + /*! + * \qmlproperty color imageColorsPaletteSwatch::contrastColor + * + * The color from the source image that's closest to the inverse of color. + */ Q_PROPERTY(QColor contrastColor READ contrastColor FINAL) public: @@ -70,82 +91,107 @@ struct ImageData { QColor m_closestToWhite; }; -/** - * Extracts the dominant colors from an element or an image and exports it to a color palette. +/*! + * \qmltype ImageColors + * \inqmlmodule org.kde.kirigami + * + * \brief Extracts the dominant colors from an element or an image and exports it to a color palette. */ class ImageColors : public QObject { Q_OBJECT QML_ELEMENT - /** + /*! + * \qmlproperty var ImageColors::source + * * The source from which colors should be extracted from. * - * `source` can be one of the following: - * * Item - * * QImage - * * QIcon - * * Icon name + * source can be one of the following: + * \list + * \li Item + * \li QImage + * \li QIcon + * \li Icon name + * \endlist * * Note that an Item's color palette will only be extracted once unless you - * call `update()`, regardless of how the item hanges. + * call update(), regardless of how the item hanges. */ Q_PROPERTY(QVariant source READ source WRITE setSource NOTIFY sourceChanged FINAL) - /** + /*! + * \qmlproperty list ImageColors::palette + * * A list of colors and related information about then. * * Each list item has the following properties: - * * `color`: The color of the list item. - * * `ratio`: How dominant the color is in the source image. - * * `contrastingColor`: The color from the source image that's closest to the inverse of `color`. + * \list + * \li color: The color of the list item. + * \li ratio: How dominant the color is in the source image. + * \li contrastingColor: The color from the source image that's closest to the inverse of color. + * \endlist * - * The list is sorted by `ratio`; the first element is the most + * The list is sorted by \c ratio; the first element is the most * dominant color in the source image and the last element is the * least dominant color of the image. * - * \note K-means clustering is used to extract these colors; see https://en.wikipedia.org/wiki/K-means_clustering. + * \note K-means clustering is used to extract these colors; see \l {https://en.wikipedia.org/wiki/K-means_clustering} {K-Means Clustering (Wikipedia)}. */ Q_PROPERTY(QList palette READ palette NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty int ImageColors::paletteBrightness + * * Information whether the palette is towards a light or dark color * scheme, possible values are: - * * ColorUtils.Light - * * ColorUtils.Dark + * \list + * \li ColorUtils.Light + * \li ColorUtils.Dark + * \endlist */ Q_PROPERTY(ColorUtils::Brightness paletteBrightness READ paletteBrightness NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::average + * * The average color of the source image. */ Q_PROPERTY(QColor average READ average NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::dominant + * * The dominant color of the source image. * * The dominant color of the image is the color of the largest * cluster in the image. * - * \sa https://en.wikipedia.org/wiki/K-means_clustering + * See \l {https://en.wikipedia.org/wiki/K-means_clustering} {K-Means Clustering (Wikipedia)} */ Q_PROPERTY(QColor dominant READ dominant NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::dominantContrast + * * Suggested "contrasting" color to the dominant one. It's the color in the palette nearest to the negative of the dominant */ Q_PROPERTY(QColor dominantContrast READ dominantContrast NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::highlight + * * An accent color extracted from the source image. * * The accent color is the color cluster with the highest CIELAB * chroma in the source image. * - * \sa https://en.wikipedia.org/wiki/Colorfulness#Chroma + * See \l {https://en.wikipedia.org/wiki/Colorfulness#Chroma} {Chroma (Wikipedia)} */ Q_PROPERTY(QColor highlight READ highlight NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::foreground + * * A color suitable for rendering text and other foreground * over the source image. * @@ -156,7 +202,9 @@ class ImageColors : public QObject */ Q_PROPERTY(QColor foreground READ foreground NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::background + * * A color suitable for rendering a background behind the * source image. * @@ -167,59 +215,79 @@ class ImageColors : public QObject */ Q_PROPERTY(QColor background READ background NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::closestToWhite + * * The lightest color of the source image. */ Q_PROPERTY(QColor closestToWhite READ closestToWhite NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::closestToBlack + * * The darkest color of the source image. */ Q_PROPERTY(QColor closestToBlack READ closestToBlack NOTIFY paletteChanged FINAL) - /** + /*! + * \qmlproperty list ImageColors::fallbackPalette + * * The value to return when palette is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ Q_PROPERTY(QList fallbackPalette MEMBER m_fallbackPalette NOTIFY fallbackPaletteChanged FINAL) - /** + /*! + * \qmlproperty int ImageColors::fallbackPaletteBrightness + * * The value to return when paletteBrightness is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ Q_PROPERTY(ColorUtils::Brightness fallbackPaletteBrightness MEMBER m_fallbackPaletteBrightness NOTIFY fallbackPaletteBrightnessChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::fallbackAverage + * * The value to return when average is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ Q_PROPERTY(QColor fallbackAverage MEMBER m_fallbackAverage NOTIFY fallbackAverageChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::fallbackDominant + * * The value to return when dominant is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ Q_PROPERTY(QColor fallbackDominant MEMBER m_fallbackDominant NOTIFY fallbackDominantChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::fallbackDominantContrasting + * * The value to return when dominantContrasting is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ Q_PROPERTY(QColor fallbackDominantContrasting MEMBER m_fallbackDominantContrasting NOTIFY fallbackDominantContrastingChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::fallbackHighlight + * * The value to return when highlight is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ Q_PROPERTY(QColor fallbackHighlight MEMBER m_fallbackHighlight NOTIFY fallbackHighlightChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::fallbackForeground + * * The value to return when foreground is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ Q_PROPERTY(QColor fallbackForeground MEMBER m_fallbackForeground NOTIFY fallbackForegroundChanged FINAL) - /** + /*! + * \qmlproperty color ImageColors::fallbackBackground + * * The value to return when background is not available, e.g. when * ImageColors is still computing it or the source is invalid. */ @@ -238,6 +306,11 @@ public: void setSourceItem(QQuickItem *source); QQuickItem *sourceItem() const; + /*! + * \qmlmethod void ImageColors::update() + * + * Updates the colors + */ Q_INVOKABLE void update(); QList palette() const; diff --git a/local/recipes/kde/kirigami/source/src/kirigamiplugin.cpp b/local/recipes/kde/kirigami/source/src/kirigamiplugin.cpp index e9beeac058..ea9760c619 100644 --- a/local/recipes/kde/kirigami/source/src/kirigamiplugin.cpp +++ b/local/recipes/kde/kirigami/source/src/kirigamiplugin.cpp @@ -56,106 +56,18 @@ KirigamiPlugin::KirigamiPlugin(QObject *parent) auto filter = new LanguageChangeEventFilter; filter->moveToThread(QCoreApplication::instance()->thread()); QCoreApplication::instance()->installEventFilter(filter); + connect(qApp, &QCoreApplication::destroyed, qApp, [filter] { + delete filter; + }); connect(filter, &LanguageChangeEventFilter::languageChangeEvent, this, &KirigamiPlugin::languageChangeEvent); } -QUrl KirigamiPlugin::componentUrl(const QString &fileName) const -{ - return Kirigami::Platform::StyleSelector::componentUrl(fileName); -} - void KirigamiPlugin::registerTypes(const char *uri) { -#if defined(Q_OS_ANDROID) - QResource::registerResource(QStringLiteral("assets:/android_rcc_bundle.rcc")); -#endif - - Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.kirigami")); - - Kirigami::Platform::StyleSelector::setBaseUrl(baseUrl()); - - if (QIcon::themeName().isEmpty() && !qEnvironmentVariableIsSet("XDG_CURRENT_DESKTOP")) { -#if defined(Q_OS_ANDROID) - QIcon::setThemeSearchPaths({QStringLiteral("assets:/qml/org/kde/kirigami"), QStringLiteral(":/icons")}); -#else - QIcon::setThemeSearchPaths({Kirigami::Platform::StyleSelector::resolveFilePath(QStringLiteral(".")), QStringLiteral(":/icons")}); -#endif - QIcon::setThemeName(QStringLiteral("breeze-internal")); - } else { - QIcon::setFallbackSearchPaths(QIcon::fallbackSearchPaths() << Kirigami::Platform::StyleSelector::resolveFilePath(QStringLiteral("icons"))); + // Keep the old versioned imports from 2.0 to 2.20 working + for (int i = 0; i < 21; ++i) { + qmlRegisterModule(uri, 2, i); } - - qmlRegisterType(componentUrl(QStringLiteral("Action.qml")), uri, 2, 0, "Action"); - qmlRegisterType(componentUrl(QStringLiteral("AbstractApplicationHeader.qml")), uri, 2, 0, "AbstractApplicationHeader"); - qmlRegisterType(componentUrl(QStringLiteral("AbstractApplicationWindow.qml")), uri, 2, 0, "AbstractApplicationWindow"); - qmlRegisterType(componentUrl(QStringLiteral("ApplicationWindow.qml")), uri, 2, 0, "ApplicationWindow"); - qmlRegisterType(componentUrl(QStringLiteral("OverlayDrawer.qml")), uri, 2, 0, "OverlayDrawer"); - qmlRegisterType(componentUrl(QStringLiteral("ContextDrawer.qml")), uri, 2, 0, "ContextDrawer"); - qmlRegisterType(componentUrl(QStringLiteral("GlobalDrawer.qml")), uri, 2, 0, "GlobalDrawer"); - qmlRegisterType(componentUrl(QStringLiteral("Heading.qml")), uri, 2, 0, "Heading"); - qmlRegisterType(componentUrl(QStringLiteral("PageRow.qml")), uri, 2, 0, "PageRow"); - - qmlRegisterType(componentUrl(QStringLiteral("OverlaySheet.qml")), uri, 2, 0, "OverlaySheet"); - qmlRegisterType(componentUrl(QStringLiteral("Page.qml")), uri, 2, 0, "Page"); - qmlRegisterType(componentUrl(QStringLiteral("ScrollablePage.qml")), uri, 2, 0, "ScrollablePage"); - qmlRegisterType(componentUrl(QStringLiteral("SwipeListItem.qml")), uri, 2, 0, "SwipeListItem"); - - // 2.1 - qmlRegisterType(componentUrl(QStringLiteral("AbstractApplicationItem.qml")), uri, 2, 1, "AbstractApplicationItem"); - qmlRegisterType(componentUrl(QStringLiteral("ApplicationItem.qml")), uri, 2, 1, "ApplicationItem"); - - // 2.4 - qmlRegisterType(componentUrl(QStringLiteral("AbstractCard.qml")), uri, 2, 4, "AbstractCard"); - qmlRegisterType(componentUrl(QStringLiteral("Card.qml")), uri, 2, 4, "Card"); - qmlRegisterType(componentUrl(QStringLiteral("CardsListView.qml")), uri, 2, 4, "CardsListView"); - qmlRegisterType(componentUrl(QStringLiteral("CardsLayout.qml")), uri, 2, 4, "CardsLayout"); - qmlRegisterType(componentUrl(QStringLiteral("InlineMessage.qml")), uri, 2, 4, "InlineMessage"); - - // 2.5 - qmlRegisterType(componentUrl(QStringLiteral("ListItemDragHandle.qml")), uri, 2, 5, "ListItemDragHandle"); - qmlRegisterType(componentUrl(QStringLiteral("ActionToolBar.qml")), uri, 2, 5, "ActionToolBar"); - - // 2.6 - qmlRegisterType(componentUrl(QStringLiteral("AboutPage.qml")), uri, 2, 6, "AboutPage"); - qmlRegisterType(componentUrl(QStringLiteral("LinkButton.qml")), uri, 2, 6, "LinkButton"); - qmlRegisterType(componentUrl(QStringLiteral("UrlButton.qml")), uri, 2, 6, "UrlButton"); - - // 2.7 - qmlRegisterType(componentUrl(QStringLiteral("ActionTextField.qml")), uri, 2, 7, "ActionTextField"); - - // 2.8 - qmlRegisterType(componentUrl(QStringLiteral("SearchField.qml")), uri, 2, 8, "SearchField"); - qmlRegisterType(componentUrl(QStringLiteral("PasswordField.qml")), uri, 2, 8, "PasswordField"); - - // 2.10 - qmlRegisterType(componentUrl(QStringLiteral("ListSectionHeader.qml")), uri, 2, 10, "ListSectionHeader"); - - // 2.11 - qmlRegisterType(componentUrl(QStringLiteral("PagePoolAction.qml")), uri, 2, 11, "PagePoolAction"); - - // 2.12 - qmlRegisterType(componentUrl(QStringLiteral("PlaceholderMessage.qml")), uri, 2, 12, "PlaceholderMessage"); - - // 2.14 - qmlRegisterType(componentUrl(QStringLiteral("FlexColumn.qml")), uri, 2, 14, "FlexColumn"); - - // 2.19 - qmlRegisterType(componentUrl(QStringLiteral("AboutItem.qml")), uri, 2, 19, "AboutItem"); - qmlRegisterType(componentUrl(QStringLiteral("NavigationTabBar.qml")), uri, 2, 19, "NavigationTabBar"); - qmlRegisterType(componentUrl(QStringLiteral("NavigationTabButton.qml")), uri, 2, 19, "NavigationTabButton"); - qmlRegisterType(componentUrl(QStringLiteral("Chip.qml")), uri, 2, 19, "Chip"); - qmlRegisterType(componentUrl(QStringLiteral("LoadingPlaceholder.qml")), uri, 2, 19, "LoadingPlaceholder"); - - // 2.20 - qmlRegisterType(componentUrl(QStringLiteral("SelectableLabel.qml")), uri, 2, 20, "SelectableLabel"); - qmlRegisterType(componentUrl(QStringLiteral("InlineViewHeader.qml")), uri, 2, 20, "InlineViewHeader"); - qmlRegisterType(componentUrl(QStringLiteral("ContextualHelpButton.qml")), uri, 2, 20, "ContextualHelpButton"); -} - -void KirigamiPlugin::initializeEngine(QQmlEngine *engine, const char *uri) -{ - Q_UNUSED(uri); - connect(this, &KirigamiPlugin::languageChangeEvent, engine, &QQmlEngine::retranslate); } #ifdef KIRIGAMI_BUILD_TYPE_STATIC diff --git a/local/recipes/kde/kirigami/source/src/kirigamiplugin.h b/local/recipes/kde/kirigami/source/src/kirigamiplugin.h index 060e7aea99..0e2d666a47 100644 --- a/local/recipes/kde/kirigami/source/src/kirigamiplugin.h +++ b/local/recipes/kde/kirigami/source/src/kirigamiplugin.h @@ -21,7 +21,6 @@ class KirigamiPlugin : public QQmlExtensionPlugin public: KirigamiPlugin(QObject *parent = nullptr); void registerTypes(const char *uri) override; - void initializeEngine(QQmlEngine *engine, const char *uri) override; #ifdef KIRIGAMI_BUILD_TYPE_STATIC static KirigamiPlugin &getInstance(); @@ -30,9 +29,6 @@ public: Q_SIGNALS: void languageChangeEvent(); - -private: - QUrl componentUrl(const QString &fileName) const; }; #endif diff --git a/local/recipes/kde/kirigami/source/src/layouts/CMakeLists.txt b/local/recipes/kde/kirigami/source/src/layouts/CMakeLists.txt index 57607662ad..e7bfbf19a4 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/src/layouts/CMakeLists.txt @@ -1,10 +1,37 @@ +add_library(KirigamiLayoutsPrivate) +ecm_add_qml_module(KirigamiLayoutsPrivate URI "org.kde.kirigami.layouts.private" + VERSION 2.0 + GENERATE_PLUGIN_SOURCE + INSTALLED_PLUGIN_TARGET KF6KirigamiLayoutsPrivateplugin + DEPENDENCIES + QtQuick + TARGET KirigamiPlatform +) + +ecm_target_qml_sources(KirigamiLayoutsPrivate SOURCES + ColumnViewSeparator.qml +) + +set_target_properties(KirigamiLayoutsPrivate PROPERTIES + VERSION ${PROJECT_VERSION} + SOVERSION 6 + EXPORT_NAME "KirigamiLayoutsPrivate" +) + +target_include_directories(KirigamiLayoutsPrivate PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..) + +target_link_libraries(KirigamiLayoutsPrivate PRIVATE Qt6::Quick Qt6::QuickControls2 KirigamiPlatform) + +ecm_finalize_qml_module(KirigamiLayoutsPrivate EXPORT KirigamiTargets) + + add_library(KirigamiLayouts) ecm_add_qml_module(KirigamiLayouts URI "org.kde.kirigami.layouts" VERSION 2.0 GENERATE_PLUGIN_SOURCE INSTALLED_PLUGIN_TARGET KF6KirigamiLayoutsplugin - DEPENDENCIES QtQuick org.kde.kirigami.platform + DEPENDENCIES QtQuick org.kde.kirigami.platform org.kde.kirigami.layouts.private ) ecm_qt_declare_logging_category(KirigamiLayouts @@ -12,7 +39,6 @@ ecm_qt_declare_logging_category(KirigamiLayouts IDENTIFIER KirigamiLayoutsLog CATEGORY_NAME kf.kirigami.layouts DESCRIPTION "KirigamiLayouts" - DEFAULT_SEVERITY Warning EXPORT KIRIGAMI ) @@ -25,9 +51,12 @@ target_sources(KirigamiLayouts PRIVATE sizegroup.cpp toolbarlayout.cpp toolbarlayoutdelegate.cpp + pagestackattached.cpp + pagestackattached.h ) ecm_target_qml_sources(KirigamiLayouts SOURCES + # Don't add ColumnViewSeparator here as is in a private module FormLayout.qml ) @@ -39,14 +68,9 @@ set_target_properties(KirigamiLayouts PROPERTIES target_include_directories(KirigamiLayouts PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..) -target_link_libraries(KirigamiLayouts PRIVATE Qt6::Quick KirigamiPlatform) - -if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") - set(_extra_options DEBUGINFO) -else() - set(_extra_options PRECOMPILE OPTIMIZED) -endif() +target_link_libraries(KirigamiLayouts PRIVATE Qt6::Quick Qt6::QuickControls2 KirigamiPlatform KirigamiLayoutsPrivate) ecm_finalize_qml_module(KirigamiLayouts EXPORT KirigamiTargets) install(TARGETS KirigamiLayouts EXPORT KirigamiTargets ${KF_INSTALL_DEFAULT_ARGUMENTS}) +install(TARGETS KirigamiLayoutsPrivate EXPORT KirigamiTargets ${KF_INSTALL_DEFAULT_ARGUMENTS}) diff --git a/local/recipes/kde/kirigami/source/src/layouts/FormLayout.qml b/local/recipes/kde/kirigami/source/src/layouts/FormLayout.qml index fc849780c0..d9e964bfa2 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/FormLayout.qml +++ b/local/recipes/kde/kirigami/source/src/layouts/FormLayout.qml @@ -9,70 +9,77 @@ pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts -import QtQuick.Controls as QQC2 import QtQuick.Templates as T -import org.kde.kirigami as Kirigami -/** - * This is the base class for Form layouts conforming to the - * Kirigami Human Interface Guidelines. The layout consists - * of two columns: the left column contains only right-aligned - * labels provided by a Kirigami.FormData attached property, - * the right column contains left-aligned child types. - * - * Child types can be sectioned using an QtQuick.Item - * or Kirigami.Separator with a Kirigami.FormData - * attached property, see FormLayoutAttached::isSection for details. - * - * Example usage: - * @code - * import QtQuick.Controls as QQC2 - * import org.kde.kirigami as Kirigami - * - * Kirigami.FormLayout { - * QQC2.TextField { - * Kirigami.FormData.label: "Label:" - * } - * Kirigami.Separator { - * Kirigami.FormData.label: "Section Title" - * Kirigami.FormData.isSection: true - * } - * QQC2.TextField { - * Kirigami.FormData.label: "Label:" - * } - * QQC2.TextField { - * } - * } - * @endcode - * @see FormLayoutAttached - * @since 2.3 - * @inherit QtQuick.Item +import org.kde.kirigami.platform as Platform +import org.kde.kirigami.controls as KirigamiControls +import org.kde.kirigami.primitives as Primitives +import org.kde.kirigami.layouts as KirigamiLayouts + +/*! + \qmltype FormLayout + \inqmlmodule org.kde.kirigami.layouts + + \brief The base class for Form layouts conforming to the + Kirigami Human Interface Guidelines. + + The layout consists of two columns: + the left column contains only right-aligned + labels provided by a FormData attached property, + the right column contains left-aligned child types. + + Child types can be sectioned using an QtQuick.Item + or Kirigami.Separator with a FormData + attached property, see FormLayoutAttached::isSection for details. + + Example usage: + \qml + import QtQuick.Controls as QQC2 + import org.kde.kirigami as Kirigami + + Kirigami.FormLayout { + QQC2.TextField { + Kirigami.FormData.label: "Label:" + } + Kirigami.Separator { + Kirigami.FormData.label: "Section Title" + Kirigami.FormData.isSection: true + } + QQC2.TextField { + Kirigami.FormData.label: "Label:" + } + QQC2.TextField { + } + } + \endqml + \sa FormData + \since 2.3 */ Item { id: root - /** - * @brief This property tells whether the form layout is in wide mode. - * - * If true, the layout will be optimized for a wide screen, such as - * a desktop machine (the labels will be on a left column, - * the fields on a right column beside it), if false (such as on a phone) - * everything is laid out in a single column. - * - * By default this property automatically adjusts the layout - * if there is enough screen space. - * - * Set this to true for a convergent design, - * set this to false for a mobile-only design. + /*! + \brief This property tells whether the form layout is in wide mode. + + If true, the layout will be optimized for a wide screen, such as + a desktop machine (the labels will be on a left column, + the fields on a right column beside it), if false (such as on a phone) + everything is laid out in a single column. + + By default this property automatically adjusts the layout + if there is enough screen space. + + Set this to \c true for a convergent design, + set this to \c false for a mobile-only design. */ property bool wideMode: width >= lay.wideImplicitWidth - /** - * If for some implementation reason multiple FormLayouts have to appear - * on the same page, they can have each other in twinFormLayouts, - * so they will vertically align with each other perfectly - * - * @since 5.53 + /*! + If for some implementation reason multiple FormLayouts have to appear + on the same page, they can have each other in twinFormLayouts, + so they will vertically align with each other perfectly + + \since 5.53 */ property list twinFormLayouts // should be list but we can't have a recursive declaration @@ -85,8 +92,31 @@ Item { } } - Component.onCompleted: { - relayoutTimer.triggered(); + property KirigamiControls.ScrollablePage scrollablePage: findAncestor(root, (item) => item instanceof KirigamiControls.ScrollablePage) as KirigamiControls.ScrollablePage + + function findAncestor(item: Item, predicate: /*function Item => bool*/ var): Item { + let target = item.parent + while (target && !predicate(target)) { + target = target.parent + } + return target + } + + function ensureVisible(item: Item): void { + if (item && root.scrollablePage) { + const itemPosition = scrollablePage.flickable.contentItem.mapFromItem(item, 0, 0) + root.scrollablePage.ensureVisible(item, itemPosition.x - item.x, itemPosition.y - item.y) + } + } + + Connections { + target: root.Window + enabled: root.scrollablePage + function onActiveFocusItemChanged(): void { + if (root.Window.activeFocusItem && root.findAncestor(root.Window.activeFocusItem, (item) => item === root)) { + root.ensureVisible(root.Window.activeFocusItem) + } + } } Component.onDestruction: { @@ -106,15 +136,16 @@ Item { id: lay property int wideImplicitWidth columns: root.wideMode ? 2 : 1 - rowSpacing: Kirigami.Units.smallSpacing - columnSpacing: Kirigami.Units.largeSpacing + rowSpacing: Platform.Units.smallSpacing + columnSpacing: Platform.Units.largeSpacing //TODO: use state machine Binding { when: !root.wideMode target: lay property: "width" - value: root.width + // Works out to 576px by default; any higher and it's not really very narrow! + value: Math.min(lay.implicitWidth, Platform.Units.gridUnit * 32, root.width) restoreMode: Binding.RestoreBinding } Binding { @@ -124,10 +155,7 @@ Item { value: root.implicitWidth restoreMode: Binding.RestoreBinding } - anchors { - horizontalCenter: root.wideMode ? root.horizontalCenter : undefined - left: root.wideMode ? undefined : root.left - } + anchors.horizontalCenter: root.horizontalCenter property var reverseTwins: [] property var knownItems: [] @@ -157,7 +185,7 @@ Item { let hint = 0; for (const buddy of buddies) { - if (buddy.visible && buddy.item !== null && !buddy.item.Kirigami.FormData.isSection) { + if (buddy.visible && buddy.item !== null && !buddy.item.KirigamiLayouts.FormData.isSection) { hint = Math.max(hint, buddy.implicitWidth); } } @@ -193,6 +221,7 @@ Item { //This invisible row is used to sync alignment between multiple layouts Item { + id: leadingPlaceholder Layout.preferredWidth: { let hint = lay.buddiesImplicitWidth; for (const item of lay.actualTwinFormLayouts) { @@ -205,6 +234,7 @@ Item { Layout.preferredHeight: 2 } Item { + id: trailingPlaceholder Layout.preferredWidth: { let hint = Math.min(root.width, lay.knownItemsImplicitWidth); for (const item of lay.actualTwinFormLayouts) { @@ -221,7 +251,7 @@ Item { Item { id: temp - /** + /*! * The following two functions are used in the label buddy items. * * They're in this mostly unused item to keep them private to the FormLayout @@ -233,7 +263,7 @@ Item { * will kick in. */ - /** + /*! * @param {Item} item * @returns {Qt::Alignment} */ @@ -242,11 +272,11 @@ Item { return 0; } const verticalAlignment = - item.Kirigami.FormData.labelAlignment !== 0 - ? item.Kirigami.FormData.labelAlignment + item.KirigamiLayouts.FormData.labelAlignment !== 0 + ? item.KirigamiLayouts.FormData.labelAlignment : Qt.AlignTop; - if (item.Kirigami.FormData.isSection) { + if (item.KirigamiLayouts.FormData.isSection) { return Qt.AlignHCenter; } if (root.wideMode) { @@ -255,7 +285,7 @@ Item { return Qt.AlignLeft | Qt.AlignBottom; } - /** + /*! * @param {Item} item * @returns vertical alignment of the item passed as an argument. */ @@ -263,47 +293,54 @@ Item { if (!item) { return 0; } - if (root.wideMode && !item.Kirigami.FormData.isSection) { - return item.Kirigami.FormData.labelAlignment !== 0 ? item.Kirigami.FormData.labelAlignment : Text.AlignVCenter; + if (root.wideMode && !item.KirigamiLayouts.FormData.isSection) { + return item.KirigamiLayouts.FormData.labelAlignment !== 0 ? item.KirigamiLayouts.FormData.labelAlignment : Text.AlignVCenter; } return Text.AlignBottom; } } - Timer { - id: relayoutTimer - interval: 0 - onTriggered: { - const __items = root.children; - // exclude the layout and temp - for (let i = 2; i < __items.length; ++i) { - const item = __items[i]; + function relayout() { + const __items = root.children; + // exclude the layout and temp + let row = 0; + for (let i = 2; i < __items.length; ++i) { + const item = __items[i]; - // skip items that are already there - if (lay.knownItems.indexOf(item) !== -1 || item instanceof Repeater) { - continue; - } - lay.knownItems.push(item); - - const itemContainer = itemComponent.createObject(temp, { item }); - - // if it's a labeled section header, add extra spacing before it - if (item.Kirigami.FormData.label.length > 0 && item.Kirigami.FormData.isSection) { - placeHolderComponent.createObject(lay, { item }); - } - - const buddy = buddyComponent.createObject(lay, { item, index: i - 2 }); - - itemContainer.parent = lay; - lay.buddies.push(buddy); + if (!(item instanceof Repeater)) { + item.Layout.row = row; + item.Layout.column = 1; + row += root.wideMode && !item.KirigamiLayouts.FormData.isSection ? 1 : 2; } - lay.knownItemsChanged(); - lay.buddiesChanged(); - hintCompression.triggered(); + + // skip items that are already there + if (lay.knownItems.indexOf(item) !== -1 || item instanceof Repeater) { + continue; + } + lay.knownItems.push(item); + + const itemContainer = itemComponent.createObject(lay, { item }); + const buddy = buddyComponent.createObject(lay, { item, index: i - 2 }); + + lay.buddies.push(buddy); } + + leadingPlaceholder.Layout.row = row + leadingPlaceholder.Layout.column = 0 + trailingPlaceholder.Layout.row = Qt.binding(() => row + (root.wideMode ? 0 : 1)) + trailingPlaceholder.Layout.column = Qt.binding(() => root.wideMode ? 1 : 0) + + lay.knownItemsChanged(); + lay.buddiesChanged(); + hintCompression.restart(); } - onChildrenChanged: relayoutTimer.restart(); + onChildrenChanged: relayout() + Component.onCompleted: { + relayout() + hintCompression.triggered() + } + onWideModeChanged: relayout() Component { id: itemComponent @@ -312,6 +349,9 @@ Item { property Item item + Layout.row: item?.Layout?.row + (root.wideMode && !item.KirigamiLayouts.FormData.isSection ? 0 : 1) + Layout.column: root.wideMode && !item?.KirigamiLayouts.FormData.isSection ? 1 : 0 + enabled: item?.enabled ?? false visible: item?.visible ?? false @@ -328,8 +368,8 @@ Item { Layout.maximumHeight: item?.Layout.maximumHeight ?? 0 Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter - Layout.fillWidth: item !== null && (item instanceof TextInput || item.Layout.fillWidth || item.Kirigami.FormData.isSection) - Layout.columnSpan: item?.Kirigami.FormData.isSection ? lay.columns : 1 + Layout.fillWidth: item !== null && (item instanceof TextInput || item.Layout.fillWidth || item.KirigamiLayouts.FormData.isSection) + Layout.columnSpan: item?.KirigamiLayouts.FormData.isSection ? lay.columns : 1 onItemChanged: { if (!item) { container.destroy(); @@ -350,68 +390,61 @@ Item { } } } - Component { - id: placeHolderComponent - Item { - property Item item - - enabled: item?.enabled ?? false - visible: item?.visible ?? false - - width: Kirigami.Units.smallSpacing - height: Kirigami.Units.smallSpacing - Layout.topMargin: item?.height > 0 ? Kirigami.Units.smallSpacing : 0 - onItemChanged: { - if (!item) { - destroy(); - } - } - } - } Component { id: buddyComponent - Kirigami.Heading { + KirigamiControls.Heading { id: labelItem property Item item property int index - enabled: item?.enabled ?? false + Layout.row: item?.Layout?.row + Layout.column: 0 + + enabled: { + const buddy = item?.KirigamiLayouts.FormData.buddyFor; + if (buddy) { + return buddy.enabled; + } else { + return item?.enabled ?? false; + } + } visible: (item?.visible && (root.wideMode || text.length > 0)) ?? false - Kirigami.MnemonicData.enabled: { - const buddy = item?.Kirigami.FormData.buddyFor; + Primitives.MnemonicData.enabled: { + const buddy = item?.KirigamiLayouts.FormData.buddyFor as Item; if (buddy && buddy.enabled && buddy.visible && buddy.activeFocusOnTab) { // Only set mnemonic if the buddy doesn't already have one. - const buddyMnemonic = buddy.Kirigami.MnemonicData; + const buddyMnemonic = buddy.Primitives.MnemonicData; return !buddyMnemonic.label || !buddyMnemonic.enabled; } else { return false; } } - Kirigami.MnemonicData.controlType: Kirigami.MnemonicData.FormLabel - Kirigami.MnemonicData.label: item?.Kirigami.FormData.label ?? "" - text: Kirigami.MnemonicData.richTextLabel - type: item?.Kirigami.FormData.isSection ? Kirigami.Heading.Type.Primary : Kirigami.Heading.Type.Normal + Primitives.MnemonicData.controlType: Primitives.MnemonicData.FormLabel + Primitives.MnemonicData.label: item?.KirigamiLayouts.FormData.label ?? "" + text: Primitives.MnemonicData.richTextLabel + Accessible.name: Primitives.MnemonicData.plainTextLabel + type: item?.KirigamiLayouts.FormData.isSection ? KirigamiControls.Heading.Type.Primary : KirigamiControls.Heading.Type.Normal - level: item?.Kirigami.FormData.isSection ? 3 : 5 + level: item?.KirigamiLayouts.FormData.isSection ? 3 : 5 - Layout.columnSpan: item?.Kirigami.FormData.isSection ? lay.columns : 1 + Layout.columnSpan: item?.KirigamiLayouts.FormData.isSection ? lay.columns : 1 Layout.preferredHeight: { if (!item) { return 0; } - if (item.Kirigami.FormData.label.length > 0) { + if (item.KirigamiLayouts.FormData.label.length > 0) { // Add extra whitespace before textual section headers, which // looks better than separator lines - if (item.Kirigami.FormData.isSection && labelItem.index !== 0) { - return implicitHeight + Kirigami.Units.largeSpacing * 2; + if (item.KirigamiLayouts.FormData.isSection && labelItem.index !== 0) { + return implicitHeight + Platform.Units.largeSpacing * 2; } - else if (root.wideMode && !(item.Kirigami.FormData.buddyFor instanceof TextEdit)) { - return Math.max(implicitHeight, item.Kirigami.FormData.buddyFor.height) + else if (root.wideMode && !(item.KirigamiLayouts.FormData.buddyFor instanceof TextEdit)) { + return Math.max(implicitHeight, item.KirigamiLayouts.FormData.buddyFor?.height ?? implicitHeight) } return implicitHeight; } - return Kirigami.Units.smallSpacing; + return Platform.Units.smallSpacing; } Layout.alignment: temp.effectiveLayout(item) @@ -424,23 +457,30 @@ Item { if (!item) { return 0; } - if (root.wideMode && item.Kirigami.FormData.buddyFor.parent !== root) { - return item.Kirigami.FormData.buddyFor.y; + if (item.KirigamiLayouts.FormData.buddyFor && root.wideMode && item.KirigamiLayouts.FormData.buddyFor.parent !== root) { + return item.KirigamiLayouts.FormData.buddyFor.y; + } + if (item?.KirigamiLayouts.FormData.isSection && text.length > 0) { + return Platform.Units.largeSpacing * 2; } if (index === 0 || root.wideMode) { return 0; } - return Kirigami.Units.largeSpacing * 2; + return Platform.Units.largeSpacing * 2; } onItemChanged: { + if (item.Accessible.hasOwnProperty("labelledBy")) { + item.Accessible.labelledBy = this + } + if (!item) { destroy(); } } Shortcut { - sequence: labelItem.Kirigami.MnemonicData.sequence + sequence: labelItem.Primitives.MnemonicData.sequence onActivated: { - const buddy = labelItem.item.Kirigami.FormData.buddyFor; + const buddy = labelItem.item.KirigamiLayouts.FormData.buddyFor; const buttonBuddy = buddy as T.AbstractButton; // animateClick is only in Qt 6.8, diff --git a/local/recipes/kde/kirigami/source/src/layouts/columnview.cpp b/local/recipes/kde/kirigami/source/src/layouts/columnview.cpp index e67edc2c2b..deaea0e9d3 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/columnview.cpp +++ b/local/recipes/kde/kirigami/source/src/layouts/columnview.cpp @@ -10,11 +10,17 @@ #include "loggingcategory.h" #include #include +#include +#include +#include #include #include #include #include #include +#include +#include +#include #include "platform/units.h" @@ -44,7 +50,7 @@ QmlComponentsPool *QmlComponentsPoolSingleton::instance(QQmlEngine *engine) componentPool = new QmlComponentsPool(engine); const auto removePool = [engine]() { - // NB: do not derefence engine. it may be dangling already! + // NB: do not dereference engine. it may be dangling already! if (privateQmlComponentsPoolSelf) { privateQmlComponentsPoolSelf->m_instances.remove(engine); } @@ -58,64 +64,14 @@ QmlComponentsPool *QmlComponentsPoolSingleton::instance(QQmlEngine *engine) QmlComponentsPool::QmlComponentsPool(QQmlEngine *engine) : QObject(engine) + , m_separatorComponent(engine) { - QQmlComponent component(engine); + m_separatorComponent.loadFromModule("org.kde.kirigami.layouts.private", "ColumnViewSeparator"); - /* clang-format off */ - component.setData(QByteArrayLiteral(R"( -import QtQuick -import org.kde.kirigami as Kirigami - -QtObject { - readonly property Component leadingSeparator: Kirigami.Separator { - property Item column - property bool inToolBar - property Kirigami.ColumnView view - - // positioning trick to hide the very first separator - visible: { - if (!view || !view.separatorVisible) { - return false; - } - - return view && (LayoutMirroring.enabled - ? view.contentX + view.width > column.x + column.width - : view.contentX < column.x); - } - - anchors.top: column.top - anchors.left: column.left - anchors.bottom: column.bottom - anchors.topMargin: inToolBar ? Kirigami.Units.largeSpacing : 0 - anchors.bottomMargin: inToolBar ? Kirigami.Units.largeSpacing : 0 - Kirigami.Theme.colorSet: Kirigami.Theme.Header - Kirigami.Theme.inherit: false + if (m_separatorComponent.isError()) { + qCFatal(KirigamiLayoutsLog) << m_separatorComponent.errors(); } - readonly property Component trailingSeparator: Kirigami.Separator { - property Item column - - anchors.top: column.top - anchors.right: column.right - anchors.bottom: column.bottom - Kirigami.Theme.colorSet: Kirigami.Theme.Header - Kirigami.Theme.inherit: false - } -} -)"), QUrl(QStringLiteral("columnview.cpp"))); - /* clang-format on */ - - m_instance = component.create(); - // qCWarning(KirigamiLayoutsLog)<setParent(this); - - m_leadingSeparatorComponent = m_instance->property("leadingSeparator").value(); - Q_ASSERT(m_leadingSeparatorComponent); - - m_trailingSeparatorComponent = m_instance->property("trailingSeparator").value(); - Q_ASSERT(m_trailingSeparatorComponent); - m_units = engine->singletonInstance("org.kde.kirigami.platform", "Units"); Q_ASSERT(m_units); @@ -187,13 +143,38 @@ bool ColumnViewAttached::fillWidth() const qreal ColumnViewAttached::reservedSpace() const { - return m_reservedSpace; + if (m_customReservedSpace) { + return m_reservedSpace; + } else if (!m_view) { + return 0.0; + } else if (m_view->columnResizeMode() == ColumnView::FixedColumns) { + return m_view->columnWidth(); + } else { + QQuickItem *prevItem = m_view->get(m_index - 1); + QQuickItem *nextItem = m_view->get(m_index + 1); + + if (prevItem) { + ColumnViewAttached *prevAttached = qobject_cast(qmlAttachedPropertiesObject(prevItem, true)); + + if (!prevAttached->fillWidth()) { + return prevItem->width(); + } + } + if (nextItem) { + ColumnViewAttached *prevAttached = qobject_cast(qmlAttachedPropertiesObject(nextItem, true)); + + if (!prevAttached->fillWidth()) { + return nextItem->width(); + } + } + } + return m_view->columnWidth(); } void ColumnViewAttached::setReservedSpace(qreal space) { if (m_view) { - disconnect(m_view.data(), &ColumnView::columnWidthChanged, this, nullptr); + disconnect(m_view.data(), &ColumnView::columnWidthChanged, this, &ColumnViewAttached::reservedSpaceChanged); } m_customReservedSpace = true; @@ -209,6 +190,71 @@ void ColumnViewAttached::setReservedSpace(qreal space) } } +qreal ColumnViewAttached::minimumWidth() const +{ + return m_minimumWidth; +} + +void ColumnViewAttached::setMinimumWidth(qreal width) +{ + if (qFuzzyCompare(width, m_minimumWidth)) { + return; + } + + m_minimumWidth = width; + + Q_EMIT minimumWidthChanged(); + + if (m_view) { + m_view->polish(); + } +} + +qreal ColumnViewAttached::preferredWidth() const +{ + qreal preferred = m_preferredWidth; + // Fallback to the item implicitWidth + if (preferred < 0) { + preferred = static_cast(parent())->implicitWidth(); + } + return std::max(m_minimumWidth, std::min(m_maximumWidth, preferred)); +} + +void ColumnViewAttached::setPreferredWidth(qreal width) +{ + if (qFuzzyCompare(width, m_preferredWidth)) { + return; + } + + m_preferredWidth = width; + + Q_EMIT preferredWidthChanged(); + + if (m_view) { + m_view->polish(); + } +} + +qreal ColumnViewAttached::maximumWidth() const +{ + return m_maximumWidth; +} + +void ColumnViewAttached::setMaximumWidth(qreal width) +{ + if (qFuzzyCompare(width, m_maximumWidth)) { + return; + } + + m_maximumWidth = width; + + Q_EMIT maximumWidthChanged(); + + if (m_view) { + m_view->polish(); + } +} + ColumnView *ColumnViewAttached::view() { return m_view; @@ -233,11 +279,7 @@ void ColumnViewAttached::setView(ColumnView *view) }); } if (!m_customReservedSpace && m_view) { - m_reservedSpace = m_view->columnWidth(); - connect(m_view.data(), &ColumnView::columnWidthChanged, this, [this]() { - m_reservedSpace = m_view->columnWidth(); - Q_EMIT reservedSpaceChanged(); - }); + connect(m_view.data(), &ColumnView::columnWidthChanged, this, &ColumnViewAttached::reservedSpaceChanged); } Q_EMIT viewChanged(); @@ -314,6 +356,41 @@ void ColumnViewAttached::setInViewport(bool inViewport) Q_EMIT inViewportChanged(); } +bool ColumnViewAttached::interactiveResizeEnabled() const +{ + return m_interactiveResizeEnabled; +} + +void ColumnViewAttached::setInteractiveResizeEnabled(bool interactive) +{ + if (interactive == m_interactiveResizeEnabled) { + return; + } + + m_interactiveResizeEnabled = interactive; + + Q_EMIT interactiveResizeEnabledChanged(); +} + +bool ColumnViewAttached::interactiveResizing() const +{ + return m_interactiveResizing; +} + +void ColumnViewAttached::setInteractiveResizing(bool interactive) +{ + if (interactive == m_interactiveResizing) { + return; + } + + m_interactiveResizing = interactive; + + Q_EMIT interactiveResizingChanged(); + if (!m_interactiveResizing && m_view) { + Q_EMIT m_view->savedStateChanged(); + } +} + QQuickItem *ColumnViewAttached::globalHeader() const { return m_globalHeader; @@ -371,7 +448,10 @@ ContentItem::ContentItem(ColumnView *parent) , m_view(parent) { m_globalHeaderParent = new QQuickItem(this); + // Move above the pages + m_globalHeaderParent->setZ(1); m_globalFooterParent = new QQuickItem(this); + m_globalFooterParent->setZ(1); setFlags(flags() | ItemIsFocusScope); m_slideAnim = new QPropertyAnimation(this); @@ -381,6 +461,9 @@ ContentItem::ContentItem(ColumnView *parent) m_slideAnim->setDuration(0); m_slideAnim->setEasingCurve(QEasingCurve(QEasingCurve::OutExpo)); connect(m_slideAnim, &QPropertyAnimation::finished, this, [this]() { + while (!m_disappearingItems.isEmpty()) { + m_view->removeItem(m_disappearingItems.first()); + } if (!m_view->currentItem()) { m_view->setCurrentIndex(m_items.indexOf(m_viewAnchorItem)); } else { @@ -474,6 +557,11 @@ qreal ContentItem::childWidth(QQuickItem *child) return qRound(parentItem()->width()); } else if (attached->fillWidth()) { + if (m_view->count() == 1) { + // single column + return qRound(parentItem()->width()); + } + return qRound(qBound(m_columnWidth, (parentItem()->width() - attached->reservedSpace()), std::max(m_columnWidth, parentItem()->width()))); } else if (m_columnResizeMode == ColumnView::FixedColumns) { @@ -482,12 +570,21 @@ qreal ContentItem::childWidth(QQuickItem *child) // DynamicColumns } else { // TODO:look for Layout size hints - qreal width = child->implicitWidth(); + qreal width = attached->preferredWidth(); if (width < 1.0) { width = m_columnWidth; } + if (attached->minimumWidth() >= 0 && attached->maximumWidth() >= 0) { + // Use this instead of std::clamp because it asserts for a situation that can be caused from qml code + width = std::min(std::max(width, attached->minimumWidth()), attached->maximumWidth()); + } else if (attached->minimumWidth() >= 0) { + width = std::max(width, attached->minimumWidth()); + } else if (attached->maximumWidth() >= 0) { + width = std::min(width, attached->maximumWidth()); + } + return qRound(qMin(m_view->width(), width)); } } @@ -505,13 +602,26 @@ void ContentItem::layoutItems() m_rightPinnedSpace = 0; bool reverse = qApp->layoutDirection() == Qt::RightToLeft; - auto it = !reverse ? m_items.begin() : m_items.end(); + auto it = !reverse ? m_items.begin() : m_items.end() - 1; int increment = reverse ? -1 : +1; - auto lastPos = reverse ? m_items.begin() : m_items.end(); + auto lastPos = reverse ? m_items.begin() - 1 : m_items.end(); + + QQuickItem *previousChild = nullptr; for (; it != lastPos; it += increment) { // for (QQuickItem *child : std::as_const(m_items)) { - QQuickItem *child = reverse ? *(it - 1) : *it; + QQuickItem *child = *it; + QQuickItem *nextChild = nullptr; + if (reverse) { + if (it != m_items.begin()) { + nextChild = *(it - 1); + } + } else { + if ((it + 1) != m_items.end()) { + nextChild = *(it + 1); + } + } + ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(child, true)); if (child == m_globalHeaderParent || child == m_globalFooterParent) { continue; @@ -519,45 +629,31 @@ void ContentItem::layoutItems() if (child->isVisible()) { if (attached->isPinned() && m_view->columnResizeMode() != ColumnView::SingleColumn) { - QQuickItem *sep = nullptr; - int sepWidth = 0; - if (m_view->separatorVisible()) { - sep = ensureTrailingSeparator(child); - sepWidth = (sep ? sep->width() : 0); - } const qreal width = childWidth(child); const qreal widthDiff = std::max(0.0, m_view->width() - child->width()); // it's possible for the view width to be smaller than the child width - const qreal pageX = std::clamp(partialWidth, -x(), -x() + widthDiff); + const qreal pageX = std::min(std::max(partialWidth, -x()), -x() + widthDiff); qreal headerHeight = .0; qreal footerHeight = .0; if (QQuickItem *header = attached->globalHeader()) { headerHeight = header->isVisible() ? header->height() : .0; - header->setWidth(width + sepWidth); + header->setWidth(width); header->setPosition(QPointF(pageX, .0)); header->setZ(2); - if (m_view->separatorVisible()) { - QQuickItem *sep = ensureTrailingSeparator(header); - sep->setProperty("inToolBar", true); - } } if (QQuickItem *footer = attached->globalFooter()) { footerHeight = footer->isVisible() ? footer->height() : .0; - footer->setWidth(width + sepWidth); + footer->setWidth(width); footer->setPosition(QPointF(pageX, height() - footerHeight)); footer->setZ(2); - if (m_view->separatorVisible()) { - QQuickItem *sep = ensureTrailingSeparator(footer); - sep->setProperty("inToolBar", true); - } } - child->setSize(QSizeF(width + sepWidth, height() - headerHeight - footerHeight)); + child->setSize(QSizeF(width, height() - headerHeight - footerHeight)); child->setPosition(QPointF(pageX, headerHeight)); child->setZ(1); if (partialWidth <= -x()) { m_leftPinnedSpace = qMax(m_leftPinnedSpace, width); - } else if (partialWidth > -x() + m_view->width() - child->width() + sepWidth) { + } else if (partialWidth > -x() + m_view->width() - child->width()) { m_rightPinnedSpace = qMax(m_rightPinnedSpace, child->width()); } @@ -567,44 +663,34 @@ void ContentItem::layoutItems() const qreal width = childWidth(child); qreal headerHeight = .0; qreal footerHeight = .0; + if (m_view->separatorVisible()) { + ensureSeparator(previousChild, child, nextChild); + } if (QQuickItem *header = attached->globalHeader(); header && qmlEngine(header)) { - if (m_view->separatorVisible()) { - QQuickItem *sep = ensureLeadingSeparator(header); - sep->setProperty("inToolBar", true); - } headerHeight = header->isVisible() ? header->height() : .0; header->setWidth(width); header->setPosition(QPointF(partialWidth, .0)); header->setZ(1); - auto it = m_trailingSeparators.find(header); - if (it != m_trailingSeparators.end()) { + auto it = m_separators.find(header); + if (it != m_separators.end()) { it.value()->deleteLater(); - m_trailingSeparators.erase(it); + m_separators.erase(it); } } if (QQuickItem *footer = attached->globalFooter(); footer && qmlEngine(footer)) { - if (m_view->separatorVisible()) { - QQuickItem *sep = ensureLeadingSeparator(footer); - sep->setProperty("inToolBar", true); - } footerHeight = footer->isVisible() ? footer->height() : .0; footer->setWidth(width); footer->setPosition(QPointF(partialWidth, height() - footerHeight)); footer->setZ(1); - auto it = m_trailingSeparators.find(footer); - if (it != m_trailingSeparators.end()) { + // TODO: remove + auto it = m_separators.find(footer); + if (it != m_separators.end()) { it.value()->deleteLater(); - m_trailingSeparators.erase(it); + m_separators.erase(it); } } child->setSize(QSizeF(width, height() - headerHeight - footerHeight)); - - auto it = m_trailingSeparators.find(child); - if (it != m_trailingSeparators.end()) { - it.value()->deleteLater(); - m_trailingSeparators.erase(it); - } child->setPosition(QPointF(partialWidth, headerHeight)); child->setZ(0); @@ -618,9 +704,11 @@ void ContentItem::layoutItems() attached->setIndex(i++); } - implicitWidth += child->implicitWidth(); + implicitWidth += attached->preferredWidth(); implicitHeight = qMax(implicitHeight, child->implicitHeight()); + + previousChild = child; } setWidth(partialWidth); @@ -631,7 +719,7 @@ void ContentItem::layoutItems() m_view->setImplicitWidth(implicitWidth); m_view->setImplicitHeight(implicitHeight + m_view->topPadding() + m_view->bottomPadding()); - const qreal newContentX = m_viewAnchorItem ? -m_viewAnchorItem->x() : 0.0; + const qreal newContentX = (m_viewAnchorItem ? -m_viewAnchorItem->x() : 0.0) + m_leftPinnedSpace; if (m_shouldAnimate) { animateX(newContentX); } else { @@ -651,42 +739,30 @@ void ContentItem::layoutPinnedItems() m_leftPinnedSpace = 0; m_rightPinnedSpace = 0; - for (QQuickItem *child : std::as_const(m_items)) { + for (auto it = m_items.constBegin(); it != m_items.constEnd(); it++) { + // for (QQuickItem *child : std::as_const(m_items)) { + QQuickItem *child = *it; + // for (QQuickItem *child : std::as_const(m_items)) { ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(child, true)); if (child->isVisible()) { if (attached->isPinned()) { - QQuickItem *sep = nullptr; - int sepWidth = 0; - if (m_view->separatorVisible()) { - sep = ensureTrailingSeparator(child); - sepWidth = (sep ? sep->width() : 0); - } - - const qreal pageX = qMin(qMax(-x(), partialWidth), -x() + m_view->width() - child->width() + sepWidth); + const qreal pageX = qMin(qMax(-x(), partialWidth), -x() + m_view->width() - child->width()); qreal headerHeight = .0; qreal footerHeight = .0; if (QQuickItem *header = attached->globalHeader()) { headerHeight = header->isVisible() ? header->height() : .0; header->setPosition(QPointF(pageX, .0)); - if (m_view->separatorVisible()) { - QQuickItem *sep = ensureTrailingSeparator(header); - sep->setProperty("inToolBar", true); - } } if (QQuickItem *footer = attached->globalFooter()) { footerHeight = footer->isVisible() ? footer->height() : .0; footer->setPosition(QPointF(pageX, height() - footerHeight)); - if (m_view->separatorVisible()) { - QQuickItem *sep = ensureTrailingSeparator(footer); - sep->setProperty("inToolBar", true); - } } child->setPosition(QPointF(pageX, headerHeight)); if (partialWidth <= -x()) { - m_leftPinnedSpace = qMax(m_leftPinnedSpace, child->width() - sepWidth); - } else if (partialWidth > -x() + m_view->width() - child->width() + sepWidth) { + m_leftPinnedSpace = qMax(m_leftPinnedSpace, child->width()); + } else if (partialWidth > -x() + m_view->width() - child->width()) { m_rightPinnedSpace = qMax(m_rightPinnedSpace, child->width()); } } @@ -710,9 +786,21 @@ void ContentItem::updateVisibleItems() }); attached->setInViewport(true); item->setEnabled(true); + if (attached->globalHeader()) { + attached->globalHeader()->setEnabled(true); + } + if (attached->globalFooter()) { + attached->globalFooter()->setEnabled(true); + } } else { attached->setInViewport(false); item->setEnabled(false); + if (attached->globalHeader()) { + attached->globalHeader()->setEnabled(false); + } + if (attached->globalFooter()) { + attached->globalFooter()->setEnabled(false); + } } } @@ -737,7 +825,7 @@ void ContentItem::updateVisibleItems() void ContentItem::forgetItem(QQuickItem *item) { - if (!m_items.contains(item)) { + if (!m_items.contains(item) && !m_disappearingItems.contains(item)) { return; } @@ -749,35 +837,28 @@ void ContentItem::forgetItem(QQuickItem *item) disconnect(item, nullptr, this, nullptr); disconnect(item, nullptr, m_view, nullptr); - QQuickItem *separatorItem = m_leadingSeparators.take(item); - if (separatorItem) { - separatorItem->deleteLater(); - } - separatorItem = m_trailingSeparators.take(item); + QQuickItem *separatorItem = m_separators.take(item); if (separatorItem) { separatorItem->deleteLater(); } if (QQuickItem *header = attached->globalHeader()) { + // disconnecting before hiding avoids one extra layoutItems, + // which would try to recreate separatorItem. + // Which might crash if we are doing this during item destruction + disconnect(header, nullptr, this, nullptr); header->setVisible(false); header->setParentItem(item); - separatorItem = m_leadingSeparators.take(header); - if (separatorItem) { - separatorItem->deleteLater(); - } - separatorItem = m_trailingSeparators.take(header); + separatorItem = m_separators.take(header); if (separatorItem) { separatorItem->deleteLater(); } } if (QQuickItem *footer = attached->globalFooter()) { + disconnect(footer, nullptr, this, nullptr); footer->setVisible(false); footer->setParentItem(item); - separatorItem = m_leadingSeparators.take(footer); - if (separatorItem) { - separatorItem->deleteLater(); - } - separatorItem = m_trailingSeparators.take(footer); + separatorItem = m_separators.take(footer); if (separatorItem) { separatorItem->deleteLater(); } @@ -785,54 +866,45 @@ void ContentItem::forgetItem(QQuickItem *item) const int index = m_items.indexOf(item); m_items.removeAll(item); + m_disappearingItems.removeAll(item); // We are connected not only to destroyed but also to lambdas disconnect(item, nullptr, this, nullptr); updateVisibleItems(); m_shouldAnimate = true; m_view->polish(); - if (index <= m_view->currentIndex()) { - m_view->setCurrentIndex(m_items.isEmpty() ? 0 : qBound(0, index - 1, m_items.count() - 1)); + if (index >= 0) { + if (index <= m_view->currentIndex()) { + m_view->setCurrentIndex(m_items.isEmpty() ? 0 : qBound(0, index - 1, m_items.count() - 1)); + } + + Q_EMIT m_view->countChanged(); } - Q_EMIT m_view->countChanged(); } -QQuickItem *ContentItem::ensureLeadingSeparator(QQuickItem *item) +QQuickItem *ContentItem::ensureSeparator(QQuickItem *previousColumn, QQuickItem *column, QQuickItem *nextColumn) { - QQuickItem *separatorItem = m_leadingSeparators.value(item); + QQuickItem *separatorItem = m_separators.value(column); if (!separatorItem) { separatorItem = qobject_cast( - QmlComponentsPoolSingleton::instance(qmlEngine(item))->m_leadingSeparatorComponent->beginCreate(QQmlEngine::contextForObject(item))); + QmlComponentsPoolSingleton::instance(qmlEngine(column))->m_separatorComponent.beginCreate(QQmlEngine::contextForObject(column))); if (separatorItem) { + // Do NOT parent the separator to the column + // we are managing the lifetime of the separator on this side, + // therefore if is column itself deleting it, we will have a double dellete separatorItem->setParent(this); - separatorItem->setParentItem(item); + separatorItem->setParentItem(column); separatorItem->setZ(9999); - separatorItem->setProperty("column", QVariant::fromValue(item)); - separatorItem->setProperty("view", QVariant::fromValue(m_view)); - QmlComponentsPoolSingleton::instance(qmlEngine(item))->m_leadingSeparatorComponent->completeCreate(); - m_leadingSeparators[item] = separatorItem; + separatorItem->setProperty("column", QVariant::fromValue(column)); + QmlComponentsPoolSingleton::instance(qmlEngine(column))->m_separatorComponent.completeCreate(); + m_separators[column] = separatorItem; } } - return separatorItem; -} - -QQuickItem *ContentItem::ensureTrailingSeparator(QQuickItem *item) -{ - QQuickItem *separatorItem = m_trailingSeparators.value(item); - - if (!separatorItem) { - separatorItem = qobject_cast( - QmlComponentsPoolSingleton::instance(qmlEngine(item))->m_trailingSeparatorComponent->beginCreate(QQmlEngine::contextForObject(item))); - if (separatorItem) { - separatorItem->setParent(this); - separatorItem->setParentItem(item); - separatorItem->setZ(9999); - separatorItem->setProperty("column", QVariant::fromValue(item)); - QmlComponentsPoolSingleton::instance(qmlEngine(item))->m_trailingSeparatorComponent->completeCreate(); - m_trailingSeparators[item] = separatorItem; - } + if (separatorItem) { + separatorItem->setProperty("previousColumn", QVariant::fromValue(previousColumn)); + separatorItem->setProperty("nextColumn", QVariant::fromValue(nextColumn)); } return separatorItem; @@ -866,10 +938,6 @@ void ContentItem::itemChange(QQuickItem::ItemChange change, const QQuickItem::It }); } - if (m_view->separatorVisible()) { - ensureLeadingSeparator(value.item); - } - m_shouldAnimate = true; m_view->polish(); Q_EMIT m_view->countChanged(); @@ -971,14 +1039,23 @@ ColumnView::ColumnView(QQuickItem *parent) m_contentItem = new ContentItem(this); // Prevent interactions outside of ColumnView bounds, and let it act as a viewport. setClip(true); - setAcceptedMouseButtons(Qt::LeftButton | Qt::BackButton | Qt::ForwardButton); - setAcceptTouchEvents(false); // Relies on synthetized mouse events + setAcceptedMouseButtons(Qt::BackButton | Qt::ForwardButton); + setAcceptHoverEvents(false); + setAcceptTouchEvents(true); setFiltersChildMouseEvents(true); - connect(m_contentItem->m_slideAnim, &QPropertyAnimation::finished, this, [this]() { - m_moving = false; - Q_EMIT movingChanged(); - }); + connect(m_contentItem->m_slideAnim, + &QPropertyAnimation::stateChanged, + this, + [this](QAbstractAnimation::State newState, QAbstractAnimation::State oldState) { + if ((newState == QAbstractAnimation::Running) == (oldState == QAbstractAnimation::Running)) { + return; + } + // If the user is still dragging, then it's still moving as well, + // even if the animation stopped + m_moving = newState == QAbstractAnimation::Running || m_dragging; + Q_EMIT movingChanged(); + }); connect(m_contentItem, &ContentItem::widthChanged, this, &ColumnView::contentWidthChanged); connect(m_contentItem, &ContentItem::xChanged, this, &ColumnView::contentXChanged); @@ -1065,14 +1142,14 @@ void ColumnView::setCurrentIndex(int index) mappedCurrent.moveLeft(mappedCurrent.left() + m_contentItem->x() + m_contentItem->m_slideAnim->endValue().toInt()); } - // m_contentItem->m_slideAnim->stop(); + ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(m_currentItem, true)); - QRectF contentsRect(m_contentItem->m_leftPinnedSpace, // + QRectF contentsRect(attached->isPinned() ? 0 : m_contentItem->m_leftPinnedSpace, 0, width() - m_contentItem->m_rightPinnedSpace - m_contentItem->m_leftPinnedSpace, height()); - if (!m_mouseDown) { + if (!m_dragging) { if (!contentsRect.contains(mappedCurrent)) { m_contentItem->m_viewAnchorItem = m_currentItem; if (qApp->layoutDirection() == Qt::RightToLeft) { @@ -1082,6 +1159,7 @@ void ColumnView::setCurrentIndex(int index) } } else { m_contentItem->snapToItem(); + m_dragging = false; } } } @@ -1232,12 +1310,13 @@ void ColumnView::setInteractive(bool interactive) m_interactive = interactive; if (!m_interactive) { + m_contentItem->snapToItem(); + if (m_dragging) { m_dragging = false; Q_EMIT draggingChanged(); } - m_contentItem->snapToItem(); setKeepMouseGrab(false); } @@ -1257,16 +1336,6 @@ void ColumnView::setAcceptsMouse(bool accepts) m_acceptsMouse = accepts; - if (!m_acceptsMouse) { - if (m_dragging) { - m_dragging = false; - Q_EMIT draggingChanged(); - } - - m_contentItem->snapToItem(); - setKeepMouseGrab(false); - } - Q_EMIT acceptsMouseChanged(); } @@ -1281,7 +1350,17 @@ void ColumnView::insertItem(int pos, QQuickItem *item) return; } + // If there was a pop animation in progress of this item + // and the item is back in, remove it from m_disappearingItems + if (m_contentItem->m_disappearingItems.contains(item)) { + m_contentItem->m_disappearingItems.removeAll(item); + } + + item->setVisible(true); m_contentItem->m_items.insert(qBound(0, pos, m_contentItem->m_items.length()), item); + if (!m_contentData.contains(item)) { + m_contentData.append(item); + } connect(item, &QObject::destroyed, m_contentItem, [this, item]() { removeItem(item); @@ -1290,6 +1369,7 @@ void ColumnView::insertItem(int pos, QQuickItem *item) attached->setOriginalParent(item->parentItem()); attached->setShouldDeleteOnRemove(item->parentItem() == nullptr && QQmlEngine::objectOwnership(item) == QQmlEngine::JavaScriptOwnership); item->setParentItem(m_contentItem); + connect(item, &QQuickItem::implicitWidthChanged, this, &ColumnView::polish); item->forceActiveFocus(); @@ -1302,8 +1382,15 @@ void ColumnView::insertItem(int pos, QQuickItem *item) connect(attached, &ColumnViewAttached::globalHeaderChanged, m_contentItem, &ContentItem::connectHeader); connect(attached, &ColumnViewAttached::globalFooterChanged, m_contentItem, &ContentItem::connectFooter); + if (attached->interactiveResizeEnabled()) { + const qreal preferredWidth = m_state.value(pos); + if (preferredWidth > 0) { + attached->setPreferredWidth(preferredWidth); + } + } // Animate shift to new item. m_contentItem->m_shouldAnimate = true; + Q_EMIT countChanged(); m_contentItem->layoutItems(); Q_EMIT contentChildrenChanged(); @@ -1359,6 +1446,7 @@ void ColumnView::replaceItem(int pos, QQuickItem *item) attached->setOriginalParent(item->parentItem()); attached->setShouldDeleteOnRemove(item->parentItem() == nullptr && QQmlEngine::objectOwnership(item) == QQmlEngine::JavaScriptOwnership); item->setParentItem(m_contentItem); + connect(item, &QQuickItem::implicitWidthChanged, this, &ColumnView::polish); if (attached->globalHeader()) { m_contentItem->connectHeader(nullptr, attached->globalHeader()); @@ -1410,14 +1498,15 @@ void ColumnView::moveItem(int from, int to) QQuickItem *ColumnView::removeItem(QQuickItem *item) { - if (m_contentItem->m_items.isEmpty() || !m_contentItem->m_items.contains(item)) { + if (!m_contentItem->m_items.contains(item) && !m_contentItem->m_disappearingItems.contains(item)) { return nullptr; } const int index = m_contentItem->m_items.indexOf(item); + m_contentData.removeAll(item); // In order to keep the same current item we need to increase the current index if displaced - if (m_currentIndex >= index) { + if (index >= 0 && m_currentIndex >= index) { setCurrentIndex(m_currentIndex - 1); } @@ -1432,12 +1521,93 @@ QQuickItem *ColumnView::removeItem(QQuickItem *item) item->setParentItem(attached ? attached->originalParent() : nullptr); } - Q_EMIT contentChildrenChanged(); - Q_EMIT itemRemoved(item); + // Don't notify if we removed from m_disappearingItems + if (index >= 0) { + Q_EMIT contentChildrenChanged(); + Q_EMIT itemRemoved(item); + } return item; } +QString ColumnView::savedState() +{ + int i = 0; + QJsonObject obj; + for (auto it = m_state.constBegin(); it != m_state.constEnd(); it++) { + obj.insert(QString::number(it.key()), it.value()); + } + for (QQuickItem *item : std::as_const(m_contentItem->m_items)) { + ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(item, true)); + if (!attached->interactiveResizeEnabled()) { + ++i; + continue; + } + + obj.insert(QString::number(i), attached->preferredWidth()); + m_state[i] = attached->preferredWidth(); + ++i; + } + + QJsonDocument doc(obj); + + return QString::fromUtf8(doc.toJson(QJsonDocument::Compact)); +} + +void ColumnView::setSavedState(const QString &state) +{ + QJsonParseError parseError; + QJsonDocument doc = QJsonDocument::fromJson(state.toUtf8(), &parseError); + if (parseError.error != QJsonParseError::NoError) { + qCWarning(KirigamiLayoutsLog) << "Error reading state:" << parseError.errorString(); + return; + } + + if (!doc.isObject()) { + qCWarning(KirigamiLayoutsLog) << "Error reading state: Not a JSon Object"; + return; + } + + QJsonObject obj = doc.object(); + + if (obj.size() == 0) { + qCWarning(KirigamiLayoutsLog) << "Error reading state: Empty JSon Object"; + return; + } + + for (auto it = obj.constBegin(); it != obj.constEnd(); it++) { + bool ok; + int index = it.key().toInt(&ok); + if (!ok || index < 0) { + qCWarning(KirigamiLayoutsLog) << "Key" << it.key() << "is not a positive integer"; + continue; + } + qreal value = it.value().toDouble(); + if (!it.value().isDouble() || value <= 0) { + qCWarning(KirigamiLayoutsLog) << "Value for key" << it.key() << "is not a positive number:" << it.value(); + continue; + } + + m_state[index] = value; + + if (index >= m_contentItem->m_items.count()) { + continue; + } + + QQuickItem *item = m_contentItem->m_items[index]; + ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(item, true)); + if (!attached->interactiveResizeEnabled()) { + continue; + } + + attached->setPreferredWidth(value); + } + + polish(); + + Q_EMIT savedStateChanged(); +} + QQuickItem *ColumnView::removeItem(const int index) { if (m_contentItem->m_items.isEmpty() || index < 0 || index >= count()) { @@ -1458,6 +1628,15 @@ QQuickItem *ColumnView::removeItem(const QVariant &item) } } +QQuickItem *ColumnView::get(int index) +{ + if (index < 0 || index > m_contentItem->m_items.count() - 1) { + return nullptr; + } + + return m_contentItem->m_items.value(index); +} + QQuickItem *ColumnView::pop(const QVariant &item) { if (item.canConvert()) { @@ -1472,9 +1651,33 @@ QQuickItem *ColumnView::pop(const QVariant &item) QQuickItem *ColumnView::pop(QQuickItem *item) { QQuickItem *removed = nullptr; + if (count() == 0) { + return nullptr; + } - while (!m_contentItem->m_items.isEmpty() && m_contentItem->m_items.last() != item) { - removed = removeItem(m_contentItem->m_items.last()); + QList items; + // Take all the items that are in the list after the item parameter + for (auto it = m_contentItem->m_items.crbegin(); it != m_contentItem->m_items.crend(); ++it) { + if ((*it) == item) { + break; + } + items << *it; + } + // Remove immediately all but one + while (items.count() > 1) { + removed = removeItem(items.last()); + items.pop_back(); + } + + // The last one will do a pop animation + if (!removed) { + removed = m_contentItem->m_items.last(); + } + + Q_ASSERT(items.count() <= 1); + if (items.count() == 1) { + // call pop() which will do the transition if needed + pop(); } return removed; } @@ -1491,10 +1694,25 @@ QQuickItem *ColumnView::pop(const int index) QQuickItem *ColumnView::pop() { - if (count() > 0) { + if (count() == 0) { + return nullptr; + } + + if (m_contentItem->m_columnResizeMode != ColumnView::SingleColumn || currentIndex() < count() - 1) { return removeItem(count() - 1); } - return nullptr; + + QQuickItem *item = get(count() - 1); + m_contentItem->m_disappearingItems.append(item); + m_contentItem->m_items.removeAll(item); + m_contentData.removeAll(item); + // Count - 1 now is the previous item as we already removed this from m_items + // The item in m_disappearingItems will be definitely removed/deleted as soon the animation stops + setCurrentIndex(count() - 1); + Q_EMIT countChanged(); + Q_EMIT contentChildrenChanged(); + Q_EMIT itemRemoved(item); + return item; } void ColumnView::clear() @@ -1543,12 +1761,26 @@ bool ColumnView::childMouseEventFilter(QQuickItem *item, QEvent *event) switch (event->type()) { case QEvent::MouseButtonPress: { - QMouseEvent *me = static_cast(event); + // On press, we set the current index of the view to the root item, + // this needs to be done on both mouse and touch input + QQuickItem *candidateItem = item; + while (candidateItem->parentItem() && candidateItem->parentItem() != m_contentItem) { + candidateItem = candidateItem->parentItem(); + } + if (int idx = m_contentItem->m_items.indexOf(candidateItem); idx >= 0 && candidateItem->parentItem() == m_contentItem) { + setCurrentIndex(idx); + } + event->setAccepted(false); + break; + } + case QEvent::TouchBegin: { + QTouchEvent *te = static_cast(event); - if (me->button() != Qt::LeftButton) { + if (te->pointCount() != 1) { return false; } + m_verticalScrollIntercepted = false; // On press, we set the current index of the view to the root item QQuickItem *candidateItem = item; while (candidateItem->parentItem() && candidateItem->parentItem() != m_contentItem) { @@ -1558,41 +1790,42 @@ bool ColumnView::childMouseEventFilter(QQuickItem *item, QEvent *event) setCurrentIndex(idx); } - // if !m_acceptsMouse we don't drag with mouse - if (!m_acceptsMouse && me->source() == Qt::MouseEventNotSynthesized) { - event->setAccepted(false); - return false; - } + // m_acceptsMouse is a noop now + // If it was still moving due to the animation, drag immediately + if (m_moving) { + m_dragging = true; + } m_contentItem->m_slideAnim->stop(); if (item->property("preventStealing").toBool()) { m_contentItem->snapToItem(); return false; } - m_oldMouseX = m_startMouseX = mapFromItem(item, me->position()).x(); - m_oldMouseY = m_startMouseY = mapFromItem(item, me->position()).y(); - m_mouseDown = true; - me->setAccepted(false); - setKeepMouseGrab(false); + m_contentItem->m_touchDownX = m_contentItem->x(); + te->setAccepted(false); break; } - case QEvent::MouseMove: { - QMouseEvent *me = static_cast(event); + case QEvent::TouchUpdate: { + QTouchEvent *te = static_cast(event); - if (!m_acceptsMouse && me->source() == Qt::MouseEventNotSynthesized) { + if (te->pointCount() != 1) { return false; } - if (!(me->buttons() & Qt::LeftButton)) { + const QPointF pressPos = te->points().first().scenePressPosition(); + const QPointF lastPos = te->points().first().sceneLastPosition(); + const QPointF pos = te->points().first().scenePosition(); + + m_verticalScrollIntercepted = m_verticalScrollIntercepted || std::abs(pos.y() - pressPos.y()) > qApp->styleHints()->startDragDistance() * 3; + + if (m_verticalScrollIntercepted) { + m_contentItem->snapToItem(); + m_dragging = false; return false; } - const QPointF pos = mapFromItem(item, me->position()); - - bool verticalScrollIntercepted = false; - QQuickItem *candidateItem = item; while (candidateItem->parentItem() && candidateItem->parentItem() != m_contentItem) { candidateItem = candidateItem->parentItem(); @@ -1608,26 +1841,25 @@ bool ColumnView::childMouseEventFilter(QQuickItem *item, QEvent *event) ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(candidateItem, true)); ScrollIntentionEvent scrollIntentionEvent; - scrollIntentionEvent.delta = QPointF(pos.x() - m_oldMouseX, pos.y() - m_oldMouseY); + scrollIntentionEvent.delta = pos - lastPos; Q_EMIT attached->scrollIntention(&scrollIntentionEvent); if (scrollIntentionEvent.accepted) { - verticalScrollIntercepted = true; + m_verticalScrollIntercepted = true; event->setAccepted(true); } } - if ((!keepMouseGrab() && (item->keepMouseGrab() || item->keepTouchGrab())) || item->property("preventStealing").toBool()) { + if (item->keepTouchGrab() || item->property("preventStealing").toBool()) { m_contentItem->snapToItem(); - m_oldMouseX = pos.x(); - m_oldMouseY = pos.y(); + m_dragging = false; return false; } const bool wasDragging = m_dragging; // If a drag happened, start to steal all events, use startDragDistance * 2 to give time to widgets to take the mouse grab by themselves - m_dragging = keepMouseGrab() || qAbs(mapFromItem(item, me->position()).x() - m_startMouseX) > qApp->styleHints()->startDragDistance() * 3; + m_dragging = !m_verticalScrollIntercepted && std::abs(pos.x() - pressPos.x()) > qApp->styleHints()->startDragDistance() * 3; if (m_dragging != wasDragging) { m_moving = true; @@ -1635,25 +1867,42 @@ bool ColumnView::childMouseEventFilter(QQuickItem *item, QEvent *event) Q_EMIT draggingChanged(); } + m_contentItem->m_lastDragDelta = pos.x() - lastPos.x(); + if (m_dragging) { - m_contentItem->setBoundedX(m_contentItem->x() + pos.x() - m_oldMouseX); + m_contentItem->setBoundedX(m_contentItem->m_touchDownX - pressPos.x() + pos.x()); } - m_contentItem->m_lastDragDelta = pos.x() - m_oldMouseX; - m_oldMouseX = pos.x(); - m_oldMouseY = pos.y(); + te->setAccepted(m_dragging); - setKeepMouseGrab(m_dragging); - me->setAccepted(m_dragging); - - return m_dragging && !verticalScrollIntercepted; + return m_dragging; } - case QEvent::MouseButtonRelease: { - QMouseEvent *me = static_cast(event); + case QEvent::TouchEnd: + case QEvent::TouchCancel: { + QTouchEvent *te = static_cast(event); if (item->property("preventStealing").toBool()) { return false; } + m_verticalScrollIntercepted = false; + // if a drag happened, don't pass the event + const bool block = m_dragging; + + m_contentItem->snapToItem(); + + if (m_dragging) { + m_contentItem->m_lastDragDelta = 0; + m_dragging = false; + Q_EMIT draggingChanged(); + } + + event->accept(); + + te->setAccepted(block); + return block; + } + case QEvent::MouseButtonRelease: { + QMouseEvent *me = static_cast(event); if (me->button() == Qt::BackButton && m_currentIndex > 0) { setCurrentIndex(m_currentIndex - 1); me->accept(); @@ -1663,32 +1912,7 @@ bool ColumnView::childMouseEventFilter(QQuickItem *item, QEvent *event) me->accept(); return true; } - - if (!m_acceptsMouse && me->source() == Qt::MouseEventNotSynthesized) { - return false; - } - - if (me->button() != Qt::LeftButton) { - return false; - } - - m_mouseDown = false; - - if (m_dragging) { - m_contentItem->snapToItem(); - m_contentItem->m_lastDragDelta = 0; - m_dragging = false; - Q_EMIT draggingChanged(); - } - - event->accept(); - - // if a drag happened, don't pass the event - const bool block = keepMouseGrab(); - setKeepMouseGrab(false); - - me->setAccepted(block); - return block; + break; } default: break; @@ -1697,6 +1921,50 @@ bool ColumnView::childMouseEventFilter(QQuickItem *item, QEvent *event) return QQuickItem::childMouseEventFilter(item, event); } +bool ColumnView::event(QEvent *event) +{ + if (!m_interactive) { + return QQuickItem::event(event); + } + switch (event->type()) { + case QEvent::TouchBegin: { + QTouchEvent *te = static_cast(event); + + if (te->pointCount() != 1) { + m_contentItem->snapToItem(); + m_dragging = false; + } + m_contentItem->m_touchDownX = m_contentItem->x(); + break; + } + case QEvent::TouchUpdate: { + QTouchEvent *te = static_cast(event); + + if (te->pointCount() != 1) { + m_contentItem->snapToItem(); + m_dragging = false; + break; + } + + m_dragging = true; + + const QEventPoint point = te->points().first(); + + m_contentItem->m_lastDragDelta = point.scenePosition().x() - point.sceneLastPosition().x(); + m_contentItem->setBoundedX(m_contentItem->m_touchDownX - point.scenePressPosition().x() + point.scenePosition().x()); + break; + } + case QEvent::TouchEnd: + case QEvent::TouchCancel: + m_contentItem->snapToItem(); + m_dragging = false; + break; + default: + break; + } + return QQuickItem::event(event); +} + void ColumnView::mousePressEvent(QMouseEvent *event) { if (!m_acceptsMouse && event->source() == Qt::MouseEventNotSynthesized) { @@ -1706,50 +1974,7 @@ void ColumnView::mousePressEvent(QMouseEvent *event) if (event->button() == Qt::BackButton || event->button() == Qt::ForwardButton) { event->accept(); - return; } - - if (!m_interactive) { - return; - } - - m_contentItem->snapToItem(); - m_oldMouseX = event->position().x(); - m_startMouseX = event->position().x(); - m_mouseDown = true; - setKeepMouseGrab(false); - event->accept(); -} - -void ColumnView::mouseMoveEvent(QMouseEvent *event) -{ - if (event->buttons() & Qt::BackButton || event->buttons() & Qt::ForwardButton) { - event->accept(); - return; - } - - if (!m_interactive) { - return; - } - - const bool wasDragging = m_dragging; - // Same startDragDistance * 2 as the event filter - m_dragging = keepMouseGrab() || qAbs(event->position().x() - m_startMouseX) > qApp->styleHints()->startDragDistance() * 2; - if (m_dragging != wasDragging) { - m_moving = true; - Q_EMIT movingChanged(); - Q_EMIT draggingChanged(); - } - - setKeepMouseGrab(m_dragging); - - if (m_dragging) { - m_contentItem->setBoundedX(m_contentItem->x() + event->pos().x() - m_oldMouseX); - } - - m_contentItem->m_lastDragDelta = event->pos().x() - m_oldMouseX; - m_oldMouseX = event->pos().x(); - event->accept(); } void ColumnView::mouseReleaseEvent(QMouseEvent *event) @@ -1763,40 +1988,6 @@ void ColumnView::mouseReleaseEvent(QMouseEvent *event) event->accept(); return; } - - m_mouseDown = false; - - if (!m_interactive) { - return; - } - - m_contentItem->snapToItem(); - m_contentItem->m_lastDragDelta = 0; - - if (m_dragging) { - m_dragging = false; - Q_EMIT draggingChanged(); - } - - setKeepMouseGrab(false); - event->accept(); -} - -void ColumnView::mouseUngrabEvent() -{ - m_mouseDown = false; - - if (m_contentItem->m_slideAnim->state() != QAbstractAnimation::Running) { - m_contentItem->snapToItem(); - } - m_contentItem->m_lastDragDelta = 0; - - if (m_dragging) { - m_dragging = false; - Q_EMIT draggingChanged(); - } - - setKeepMouseGrab(false); } void ColumnView::classBegin() @@ -1849,20 +2040,10 @@ void ColumnView::contentChildren_append(QQmlListProperty *prop, QQui { // This can only be called from QML ColumnView *view = static_cast(prop->object); - if (!view) { + if (!view || !item) { return; } - - view->m_contentItem->m_items.append(item); - connect(item, &QObject::destroyed, view->m_contentItem, [view, item]() { - view->removeItem(item); - }); - - ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(item, true)); - attached->setOriginalParent(item->parentItem()); - attached->setShouldDeleteOnRemove(item->parentItem() == nullptr && QQmlEngine::objectOwnership(item) == QQmlEngine::JavaScriptOwnership); - - item->setParentItem(view->m_contentItem); + view->addItem(item); } qsizetype ColumnView::contentChildren_count(QQmlListProperty *prop) @@ -1895,7 +2076,7 @@ void ColumnView::contentChildren_clear(QQmlListProperty *prop) return; } - return view->m_contentItem->m_items.clear(); + view->clear(); } QQmlListProperty ColumnView::contentChildren() @@ -1924,17 +2105,7 @@ void ColumnView::contentData_append(QQmlListProperty *prop, QObject *ob connect(item, SIGNAL(modelChanged()), view->m_contentItem, SLOT(updateRepeaterModel())); } else if (item) { - view->m_contentItem->m_items.append(item); - connect(item, &QObject::destroyed, view->m_contentItem, [view, item]() { - view->removeItem(item); - }); - - ColumnViewAttached *attached = qobject_cast(qmlAttachedPropertiesObject(item, true)); - attached->setOriginalParent(item->parentItem()); - attached->setShouldDeleteOnRemove(view->m_complete && !item->parentItem() && QQmlEngine::objectOwnership(item) == QQmlEngine::JavaScriptOwnership); - - item->setParentItem(view->m_contentItem); - + view->addItem(item); } else { object->setParent(view); } @@ -1970,7 +2141,8 @@ void ColumnView::contentData_clear(QQmlListProperty *prop) return; } - return view->m_contentData.clear(); + view->clear(); + view->m_contentData.clear(); } QQmlListProperty ColumnView::contentData() diff --git a/local/recipes/kde/kirigami/source/src/layouts/columnview.h b/local/recipes/kde/kirigami/source/src/layouts/columnview.h index 0ced4d57f3..c3b5258cac 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/columnview.h +++ b/local/recipes/kde/kirigami/source/src/layouts/columnview.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include #include @@ -30,55 +31,138 @@ public: bool accepted = false; }; -/** - * This is an attached property to every item that is inserted in the ColumnView, - * used to access the view and page information such as the position and information for layouting, such as fillWidth - * @since 2.7 - */ class ColumnViewAttached : public QObject { Q_OBJECT - /** + /*! + * \qmlattachedproperty int ColumnView::index + * * The index position of the column in the view, starting from 0 */ Q_PROPERTY(int index READ index WRITE setIndex NOTIFY indexChanged FINAL) - /** + /*! + * \qmlattachedproperty bool ColumnView::fillWidth + * * If true, the column will expand to take the whole viewport space minus reservedSpace */ Q_PROPERTY(bool fillWidth READ fillWidth WRITE setFillWidth NOTIFY fillWidthChanged FINAL) - /** + /*! + * \qmlattachedproperty real ColumnView::reservedSpace + * * When a column is fillWidth, it will keep reservedSpace amount of pixels from going to fill the full viewport width */ Q_PROPERTY(qreal reservedSpace READ reservedSpace WRITE setReservedSpace NOTIFY reservedSpaceChanged FINAL) - /** + /*! + * \qmlattachedproperty real ColumnView::minimumWidth + * + * When a column is interactiveResizeEnabled, when resizing manually it will bound + * the column size between minimumWidth and maximumWidth + * + * \since 6.16 + */ + Q_PROPERTY(qreal minimumWidth READ minimumWidth WRITE setMinimumWidth NOTIFY minimumWidthChanged FINAL) + + /*! + * \qmlattachedproperty real ColumnView::preferredWidth + * + * When we are in DynamicColumns mode, the columns will be resized to preferredWidth. + * When the column is resized with the mouse, this property will be updated by the drag + * And will always be between minimumWidth and maximumWidth + * + * \since 6.16 + */ + Q_PROPERTY(qreal preferredWidth READ preferredWidth WRITE setPreferredWidth NOTIFY preferredWidthChanged FINAL) + + /*! + * \qmlattachedproperty real ColumnView::maximumWidth + * + * When a column is interactiveResizeEnabled, when resizing manually it will bound + * the column size between minimumWidth and maximumWidth + * + * \since 6.16 + */ + Q_PROPERTY(qreal maximumWidth READ maximumWidth WRITE setMaximumWidth NOTIFY maximumWidthChanged FINAL) + + /*! + * \qmlattachedproperty bool ColumnView::preventStealing + * * Like the same property of MouseArea, when this is true, the column view won't * try to manage events by itself when filtering from a child, not * disturbing user interaction */ Q_PROPERTY(bool preventStealing READ preventStealing WRITE setPreventStealing NOTIFY preventStealingChanged FINAL) - /** + /*! + * \qmlattachedproperty bool ColumnView::pinned + * * If true the page will never go out of view, but will stay either * at the right or left side of the ColumnView */ Q_PROPERTY(bool pinned READ isPinned WRITE setPinned NOTIFY pinnedChanged FINAL) - /** + /*! + * \qmlattachedproperty ColumnView ColumnView::view + * \readonly + * * The view this column belongs to */ Q_PROPERTY(ColumnView *view READ view NOTIFY viewChanged FINAL) - /** + /*! + * \qmlattachedproperty bool ColumnView::inViewport + * \readonly + * * True if this column is at least partly visible in the ColumnView's viewport. - * @since 5.77 + * \since 5.77 */ Q_PROPERTY(bool inViewport READ inViewport NOTIFY inViewportChanged FINAL) + /*! + * \qmlattachedproperty bool ColumnView::interactiveResizeEnabled + * + * True if this column supports interactive resize with mouse. + * + * If the sizes should be saved and restored on application startup, + * it is the application responsibility to implement this, for instance exposing + * and object with properties for the desired column widths which + * reads and writes to the config. at the main Component.onCompleted of the + * ApplicationWindow root Item it will apply the preferred sizes of the desired pages. + * + * The property will be written at interactiveResizingChanged signal handler. + * + * \since 6.16 + */ + Q_PROPERTY(bool interactiveResizeEnabled READ interactiveResizeEnabled WRITE setInteractiveResizeEnabled NOTIFY interactiveResizeEnabledChanged) + + /*! + * \qmlattachedproperty bool ColumnView::interactiveResizing + * + * True when the user is actively resizing a column with the mouse. + * If the application wants to write the column sizes to config, + * it can sync to some global object property at interactiveResizingChanged: + * \qml + * Kirigami.ColumnView.onInteractiveResizingChanged: { + * if (!Kirigami.ColumnView.interactiveResizing) { + * myAppObject.leftColumnWidth = page.implicitWidth; + * } + * } + * \endqml + * \since 6.16 + */ + Q_PROPERTY(bool interactiveResizing READ interactiveResizing WRITE setInteractiveResizing NOTIFY interactiveResizingChanged) + + /*! + * \qmlattachedproperty Item ColumnView::globalHeader + */ Q_PROPERTY(QQuickItem *globalHeader READ globalHeader WRITE setGlobalHeader NOTIFY globalHeaderChanged FINAL) + + /*! + * \qmlattachedproperty Item ColumnView::globalFooter + */ Q_PROPERTY(QQuickItem *globalFooter READ globalFooter WRITE setGlobalFooter NOTIFY globalFooterChanged FINAL) public: @@ -94,6 +178,15 @@ public: qreal reservedSpace() const; void setReservedSpace(qreal space); + qreal minimumWidth() const; + void setMinimumWidth(qreal space); + + qreal preferredWidth() const; + void setPreferredWidth(qreal space); + + qreal maximumWidth() const; + void setMaximumWidth(qreal space); + ColumnView *view(); void setView(ColumnView *view); @@ -113,6 +206,12 @@ public: bool inViewport() const; void setInViewport(bool inViewport); + bool interactiveResizeEnabled() const; + void setInteractiveResizeEnabled(bool interactive); + + bool interactiveResizing() const; + void setInteractiveResizing(bool interactive); + QQuickItem *globalHeader() const; void setGlobalHeader(QQuickItem *header); @@ -123,11 +222,16 @@ Q_SIGNALS: void indexChanged(); void fillWidthChanged(); void reservedSpaceChanged(); + void minimumWidthChanged(); + void preferredWidthChanged(); + void maximumWidthChanged(); void viewChanged(); void preventStealingChanged(); void pinnedChanged(); void scrollIntention(ScrollIntentionEvent *event); void inViewportChanged(); + void interactiveResizeEnabledChanged(); + void interactiveResizingChanged(); void globalHeaderChanged(QQuickItem *oldHeader, QQuickItem *newHeader); void globalFooterChanged(QQuickItem *oldFooter, QQuickItem *newFooter); @@ -135,6 +239,9 @@ private: int m_index = -1; bool m_fillWidth = false; qreal m_reservedSpace = 0; + qreal m_minimumWidth = -1; + qreal m_preferredWidth = -1; + qreal m_maximumWidth = -1; QPointer m_view; QPointer m_originalParent; bool m_customFillWidth = false; @@ -143,19 +250,27 @@ private: bool m_preventStealing = false; bool m_pinned = false; bool m_inViewport = false; + bool m_interactiveResizeEnabled = false; + bool m_interactiveResizing = false; QPointer m_globalHeader; QPointer m_globalFooter; }; -/** - * ColumnView is a container that lays out items horizontally in a row, - * when not all items fit in the ColumnView, it will behave like a Flickable and will be a scrollable view which shows only a determined number of columns. +/*! + * \qmltype ColumnView + * \inqmlmodule org.kde.kirigami.layouts + * + * \brief A container that lays out items horizontally in a row. + * + * When not all items fit in the ColumnView, it will behave like a Flickable and will be a scrollable view which shows only a determined number of columns. + * * The columns can either all have the same fixed size (recommended), * size themselves with implicitWidth, or automatically expand to take all the available width: by default the last column will always be the expanding one. + * * Items inside the ColumnView can access info of the view and set layouting hints via the ColumnView attached property. * - * This is the base for the implementation of PageRow - * @since 2.7 + * This is the base for the implementation of PageRow. + * \since 2.7 */ class ColumnView : public QQuickItem { @@ -163,118 +278,195 @@ class ColumnView : public QQuickItem QML_ELEMENT QML_ATTACHED(ColumnViewAttached) - /** - * The strategy to follow while automatically resizing the columns, - * the enum can have the following values: - * * FixedColumns: every column is fixed at the same width of the columnWidth property - * * DynamicColumns: columns take their width from their implicitWidth - * * SingleColumn: only one column at a time is shown, as wide as the viewport, eventual reservedSpace on the column's attached property is ignored + /*! + * \qmlproperty enumeration ColumnView::columnResizeMode + * + * The strategy to follow while automatically resizing the columns + * + * \qmlenumeratorsfrom ColumnView::ColumnResizeMode + * * The default is FixedColumns. */ Q_PROPERTY(ColumnResizeMode columnResizeMode READ columnResizeMode WRITE setColumnResizeMode NOTIFY columnResizeModeChanged FINAL) - /** + /*! + * \qmlproperty real ColumnView::columnWidth + * * The width of all columns when columnResizeMode is FixedColumns */ Q_PROPERTY(qreal columnWidth READ columnWidth WRITE setColumnWidth NOTIFY columnWidthChanged FINAL) - /** - * How many columns this view containsItem*/ + /*! + * \qmlproperty int ColumnView::count + * \readonly + * + * How many columns this view contains + */ Q_PROPERTY(int count READ count NOTIFY countChanged FINAL) - /** + /*! + * \qmlproperty int ColumnView::currentIndex + * * The position of the currently active column. The current column will also have keyboard focus */ Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentIndexChanged FINAL) - /** + /*! + * \qmlproperty Item ColumnView::currentItem + * \readonly + * * The currently active column. The current column will also have keyboard focus */ Q_PROPERTY(QQuickItem *currentItem READ currentItem NOTIFY currentItemChanged FINAL) - /** + /*! + * \qmlproperty Item ColumnView::contentItem + * \readonly + * * The main content item of this view: it's the parent of the column items */ Q_PROPERTY(QQuickItem *contentItem READ contentItem CONSTANT FINAL) - /** + /*! + * \qmlproperty real ColumnView::contentX + * * The value of the horizontal scroll of the view, in pixels */ Q_PROPERTY(qreal contentX READ contentX WRITE setContentX NOTIFY contentXChanged FINAL) - /** + /*! + * \qmlproperty real ColumnView::contentWidth + * \readonly + * * The compound width of all columns in the view */ Q_PROPERTY(qreal contentWidth READ contentWidth NOTIFY contentWidthChanged FINAL) - /** + /*! + * \qmlproperty real ColumnView::topPadding + * * The padding this will have at the top */ Q_PROPERTY(qreal topPadding READ topPadding WRITE setTopPadding NOTIFY topPaddingChanged FINAL) - /** + /*! + * \qmlproperty real ColumnView::bottomPadding + * * The padding this will have at the bottom */ Q_PROPERTY(qreal bottomPadding READ bottomPadding WRITE setBottomPadding NOTIFY bottomPaddingChanged FINAL) - /** + /*! + * \qmlproperty int ColumnView::scrollDuration + * * The duration for scrolling animations */ Q_PROPERTY(int scrollDuration READ scrollDuration WRITE setScrollDuration NOTIFY scrollDurationChanged FINAL) - /** + /*! + * \qmlproperty bool ColumnView::separatorVisible + * * True if columns should be visually separated by a separator line */ Q_PROPERTY(bool separatorVisible READ separatorVisible WRITE setSeparatorVisible NOTIFY separatorVisibleChanged FINAL) - /** + /*! + * \qmlproperty list ColumnView::visibleItems + * \readonly + * * The list of all visible column items that are at least partially in the viewport at any given moment */ Q_PROPERTY(QList visibleItems READ visibleItems NOTIFY visibleItemsChanged FINAL) - /** + /*! + * \qmlproperty Item ColumnView::leadingVisibleItem + * \readonly + * * The first of visibleItems provided from convenience */ Q_PROPERTY(QQuickItem *leadingVisibleItem READ leadingVisibleItem NOTIFY leadingVisibleItemChanged FINAL) - /** + /*! + * \qmlproperty Item ColumnView::trailingVisibleItem + * \readonly + * * The last of visibleItems provided from convenience */ Q_PROPERTY(QQuickItem *trailingVisibleItem READ trailingVisibleItem NOTIFY trailingVisibleItemChanged FINAL) // Properties to make it similar to Flickable - /** + /*! + * \qmlproperty bool ColumnView::dragging + * \readonly + * * True when the user is dragging around with touch gestures the view contents */ Q_PROPERTY(bool dragging READ dragging NOTIFY draggingChanged FINAL) - /** + /*! + * \qmlproperty bool ColumnView::moving + * \readonly + * * True both when the user is dragging around with touch gestures the view contents or the view is animating */ Q_PROPERTY(bool moving READ moving NOTIFY movingChanged FINAL) - /** + /*! + * \qmlproperty bool ColumnView::interactive + * * True if it supports moving the contents by dragging */ Q_PROPERTY(bool interactive READ interactive WRITE setInteractive NOTIFY interactiveChanged FINAL) - /** - * True if the contents can be dragged also with mouse besides touch + /*! + * \deprecated \qmlproperty bool ColumnView::acceptsMouse + * + * This property is deprecated and doesn't have any effect */ Q_PROPERTY(bool acceptsMouse READ acceptsMouse WRITE setAcceptsMouse NOTIFY acceptsMouseChanged FINAL) // Default properties - /** + /*! + * \qmlproperty list ColumnView::contentChildren + * * Every column item the view contains */ Q_PROPERTY(QQmlListProperty contentChildren READ contentChildren NOTIFY contentChildrenChanged FINAL) - /** + /*! + * \qmlproperty list ColumnView::contentData + * \qmldefault + * * every item declared inside the view, both visual and non-visual items */ Q_PROPERTY(QQmlListProperty contentData READ contentData FINAL) + + /*! + * \qmlproperty string ColumnView::savedState + * + * A JSon serialization of the columns widths. + * When columnResizeMode is DynamicColumns, columns can be resized via mouse. + * When this is the case, the sizes should be saved and restored on application startup. + * + * Example code for saving and restore, assuming that the application exposes a singleton + * called App that has a "columnViewState" property that reads and writes to the config file: + * + * \qml + * Component.onCompleted: pageStack.columnView.savedState = App.columnViewState; + * columnView.onSavedStateChanged: { + * App.columnViewState = pageStack.columnView.savedState; + * } + * \endqml + */ + Q_PROPERTY(QString savedState READ savedState WRITE setSavedState NOTIFY savedStateChanged) + Q_CLASSINFO("DefaultProperty", "contentData") public: + /*! + * \value FixedColumns Every column is fixed at the same width of the columnWidth property + * \value DynamicColumns Columns take their width from their implicitWidth + * \value SingleColumn Only one column at a time is shown, as wide as the viewport, eventual reservedSpace on the column's attached property is ignored + */ enum ColumnResizeMode { FixedColumns = 0, DynamicColumns, @@ -333,141 +525,171 @@ public: bool acceptsMouse() const; void setAcceptsMouse(bool accepts); - /** - * @brief This method removes all the items after the specified item or + /*! + * \qmlmethod Item ColumnView::get(int index) + * + * \brief This method gets the item at index, if available + * + * Note that if an invalid index is passed (either negative or greater + * then depth - 1) nullptr will be returned + * + * \a index The index of the item to get. + * \since 6.16 + */ + Q_INVOKABLE QQuickItem *get(int index); + + /*! + * \qmlmethod Item ColumnView::pop(var item) + * + * \brief This method removes all the items after the specified item or * index from the view and returns the last item that was removed. * * Note that if the passed value is neither of the values said below, it * will return a nullptr. * - * @param item the item to remove. It can be an item, index or not defined + * \a item the item to remove. It can be an item, index or not defined * in which case it will pop the last item. */ Q_INVOKABLE QQuickItem *pop(const QVariant &item); - /** - * @brief This method removes all the items after the specified item from + /*! + * \brief This method removes all the items after the specified item from * the view and returns the last item that was removed. * - * @see ::removeItem() + * \sa ::removeItem() * - * @param the item where the iteration should stop at - * @returns the last item that has been removed + * \a the item where the iteration should stop at + * + * Returns the last item that has been removed */ QQuickItem *pop(QQuickItem *item); - /** - * @brief This method removes all the items after the specified position + /*! + * \brief This method removes all the items after the specified position * from the view and returns the last item that was removed. * * It starts iterating from the last item to the first item calling * removeItem() for each of them until it reaches the specified position. * - * @see ::removeItem() + * \sa removeItem() * - * @param the position where the iteration should stop at - * @returns the last item that has been removed + * \a index the position where the iteration should stop at + * + * Returnss the last item that has been removed */ QQuickItem *pop(int index); - /** - * @brief This method removes the last item from the view and returns it. + /*! + * \qmlmethod Item ColumnView::pop() + * + * \brief This method removes the last item from the view and returns it. * * This method calls removeItem() on the last item. * - * @see ::removeItem() + * \sa removeItem() * - * @return the removed item + * Returns the removed item */ Q_INVOKABLE QQuickItem *pop(); - /** - * @brief This method removes the specified item from the view. + /*! + * \brief This method removes the specified item from the view. * * Items will be reparented to their old parent. If they have JavaScript * ownership and they didn't have an old parent, they will be destroyed. * CurrentIndex may be changed in order to keep the same currentItem * - * @param item pointer to the item to remove - * @returns the removed item + * \a item pointer to the item to remove + * + * Returns the removed item */ QQuickItem *removeItem(QQuickItem *item); - /** - * @brief This method removes an item at a given index from the view. + /*! + * \brief This method removes an item at a given index from the view. * * This method calls removeItem(QQuickItem *item) to remove the item at * the specified index. * - * @see ::removeItem(QQuickItem *item) + * \a index the index of the item which should be removed * - * @param index the index of the item which should be removed - * @return the removed item + * Returns the removed item */ QQuickItem *removeItem(int index); + QString savedState(); + void setSavedState(const QString &state); + // QML attached property static ColumnViewAttached *qmlAttachedProperties(QObject *object); public Q_SLOTS: - /** + /*! * Pushes a new item at the end of the view - * @param item the new item which will be reparented and managed + * + * \a item the new item which will be reparented and managed */ void addItem(QQuickItem *item); - /** - * @brief This method removes an item from the view. + /*! + * \qmlmethod Item ColumnView::removeItem(var item) + * + * \brief This method removes an item from the view. * * If the argument is a number, this method dispatches to removeItem(int index) * to remove an item by its index. Otherwise the argument should be the item * itself to be removed itself, and this method will dispatch to removeItem(QQuickItem *item). * - * @see ::removeItem(QQuickItem *item) + * \a item the item which should be removed * - * @param index the index of the item which should be removed, or the item itself - * @return the removed item + * Returns the removed item */ Q_INVOKABLE QQuickItem *removeItem(const QVariant &item); - /** + /*! * Inserts a new item in the view at a given position. * The current Item will not be changed, currentIndex will be adjusted * accordingly if needed to keep the same current item. - * @param pos the position we want the new item to be inserted in - * @param item the new item which will be reparented and managed + * + * \a pos the position we want the new item to be inserted in + * + * \a item the new item which will be reparented and managed */ void insertItem(int pos, QQuickItem *item); - /** + /*! * Replaces an item in the view at a given position with a new item. * The current Item and currentIndex will not be changed. - * @param pos the position we want the new item to be placed in - * @param item the new item which will be reparented and managed + * + * \a pos the position we want the new item to be placed in + * + * \a item the new item which will be reparented and managed */ void replaceItem(int pos, QQuickItem *item); - /** + /*! * Move an item inside the view. * The currentIndex property may be changed in order to keep currentItem the same. - * @param from the old position - * @param to the new position + * + * \a from the old position + * + * \a to the new position */ void moveItem(int from, int to); - /** + /*! * Removes every item in the view. * Items will be reparented to their old parent. * If they have JavaScript ownership and they didn't have an old parent, they will be destroyed */ void clear(); - /** - * @returns true if the view contains the given item + /*! + * Returnss true if the view contains the given item */ bool containsItem(QQuickItem *item); - /** + /*! * Returns the visible item containing the point x, y in content coordinates. * If there is no item at the point specified, or the item is not visible null is returned. */ @@ -480,22 +702,28 @@ protected: void itemChange(QQuickItem::ItemChange change, const QQuickItem::ItemChangeData &value) override; void geometryChange(const QRectF &newGeometry, const QRectF &oldGeometry) override; bool childMouseEventFilter(QQuickItem *item, QEvent *event) override; + bool event(QEvent *event) override; void mousePressEvent(QMouseEvent *event) override; - void mouseMoveEvent(QMouseEvent *event) override; void mouseReleaseEvent(QMouseEvent *event) override; - void mouseUngrabEvent() override; Q_SIGNALS: - /** + /*! + * \qmlsignal ColumnView::itemInserted(int position, Item item) + * * A new item has been inserted - * @param position where the page has been inserted - * @param item a pointer to the new item + * + * \a position where the page has been inserted + * + * \a item a pointer to the new item */ void itemInserted(int position, QQuickItem *item); - /** + /*! + * \qmlsignal ColumnView::itemRemoved(Item item) + * * An item has just been removed from the view - * @param item a pointer to the item that has just been removed + * + * \a item a pointer to the item that has just been removed */ void itemRemoved(QQuickItem *item); @@ -519,6 +747,7 @@ Q_SIGNALS: void trailingVisibleItemChanged(); void topPaddingChanged(); void bottomPaddingChanged(); + void savedStateChanged(); private: static void contentChildren_append(QQmlListProperty *prop, QQuickItem *object); @@ -535,18 +764,17 @@ private: ContentItem *m_contentItem; QPointer m_currentItem; + QHash m_state; - qreal m_oldMouseX = -1.0; - qreal m_startMouseX = -1.0; - qreal m_oldMouseY = -1.0; - qreal m_startMouseY = -1.0; int m_currentIndex = -1; qreal m_topPadding = 0; qreal m_bottomPadding = 0; - bool m_mouseDown = false; bool m_interactive = true; + // The user is dragging horizontally the ColumnView bool m_dragging = false; + // The user is dragging vertically the contents of a page + bool m_verticalScrollIntercepted = false; bool m_moving = false; bool m_separatorVisible = true; bool m_complete = false; diff --git a/local/recipes/kde/kirigami/source/src/layouts/columnview_p.h b/local/recipes/kde/kirigami/source/src/layouts/columnview_p.h index 618f8f1541..ef63b72a00 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/columnview_p.h +++ b/local/recipes/kde/kirigami/source/src/layouts/columnview_p.h @@ -29,16 +29,12 @@ public: QmlComponentsPool(QQmlEngine *engine); ~QmlComponentsPool() override; - QQmlComponent *m_leadingSeparatorComponent = nullptr; - QQmlComponent *m_trailingSeparatorComponent = nullptr; + QQmlComponent m_separatorComponent; Kirigami::Platform::Units *m_units = nullptr; Q_SIGNALS: void gridUnitChanged(); void longDurationChanged(); - -private: - QObject *m_instance = nullptr; }; class ContentItem : public QQuickItem @@ -54,8 +50,7 @@ public: qreal childWidth(QQuickItem *child); void updateVisibleItems(); void forgetItem(QQuickItem *item); - QQuickItem *ensureLeadingSeparator(QQuickItem *item); - QQuickItem *ensureTrailingSeparator(QQuickItem *item); + QQuickItem *ensureSeparator(QQuickItem *previousColumn, QQuickItem *column, QQuickItem *nextColumn); void setBoundedX(qreal x); void animateX(qreal x); @@ -79,19 +74,23 @@ private: ColumnView *m_view; QQuickItem *m_globalHeaderParent; QQuickItem *m_globalFooterParent; + QPropertyAnimation *m_slideAnim; QList m_items; + QList m_disappearingItems; // Items that are sliding away to be destroyed by a pop() animation QList m_visibleItems; QPointer m_viewAnchorItem; - QHash m_leadingSeparators; - QHash m_trailingSeparators; + QHash m_separators; QHash m_models; qreal m_leftPinnedSpace = 361; qreal m_rightPinnedSpace = 0; qreal m_columnWidth = 0; + // This used just to figure out if the user intends to scroll left or right qreal m_lastDragDelta = 0; + // This used for item dragging + qreal m_touchDownX = 0; ColumnView::ColumnResizeMode m_columnResizeMode = ColumnView::FixedColumns; bool m_shouldAnimate = false; bool m_creationInProgress = true; diff --git a/local/recipes/kde/kirigami/source/src/layouts/displayhint.h b/local/recipes/kde/kirigami/source/src/layouts/displayhint.h index 517924d066..27ae80db29 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/displayhint.h +++ b/local/recipes/kde/kirigami/source/src/layouts/displayhint.h @@ -10,6 +10,23 @@ #include #include +/*! + * \qmlsingletontype DisplayHint + * \inqmlmodule org.kde.kirigami.layouts + * + * \brief Hints for implementations using Actions indicating preferences about how to display the action. + * + * This is a singleton type. + * + * Possible hint values are: + * \list + * \li NoPreference: Indicates there is no specific preference. + * \li IconOnly: Only display an icon for this Action + * \li KeepVisible: Try to keep the action visible even when space constrained. Mutually exclusive with AlwaysHide, KeepVisible has priority. + * \li AlwaysHide: If possible, hide the action in an overflow menu or similar location. Mutually exclusive with KeepVisible, KeepVisible has priority. + * \li HideChildIndicator: When this action has children, do not display any indicator (like a menu arrow) for this action. + * \endlist + */ class DisplayHint : public QObject { Q_OBJECT @@ -17,32 +34,11 @@ class DisplayHint : public QObject QML_SINGLETON public: - /** - * Hints for implementations using Actions indicating preferences about how to display the action. - */ enum Hint : uint { - /** - * Indicates there is no specific preference. - */ NoPreference = 0, - /** - * Only display an icon for this Action. - */ IconOnly = 1, - /** - * Try to keep the action visible even when space constrained. - * Mutually exclusive with AlwaysHide, KeepVisible has priority. - */ KeepVisible = 2, - /** - * If possible, hide the action in an overflow menu or similar location. - * Mutually exclusive with KeepVisible, KeepVisible has priority. - */ AlwaysHide = 4, - /** - * When this action has children, do not display any indicator (like a - * menu arrow) for this action. - */ HideChildIndicator = 8, }; Q_DECLARE_FLAGS(DisplayHints, Hint) @@ -52,40 +48,46 @@ public: // Note: These functions are instance methods because they need to be // exposed to QML. Unfortunately static methods are not supported. - /** + /*! + * \qmlmethod bool DisplayHint::displayHintSet(DisplayHints hints, Hint hint) + * * Helper function to check if a certain display hint has been set. * * This function is mostly convenience to enforce certain behaviour of the * various display hints, primarily the mutual exclusivity of KeepVisible * and AlwaysHide. * - * @param values The display hints to check. - * @param hint The display hint to check if it is set. + * \a values The display hints to check. * - * @return true if the hint was set for this action, false if not. + * \a hint The display hint to check if it is set. * - * @since 2.14 + * Return \c true if the hint was set for this action, false if not. + * + * \since 2.14 */ Q_INVOKABLE bool displayHintSet(DisplayHints values, Hint hint); - /** + /*! + * \qmlmethod bool DisplayHint::displayHintSet(QtObject hints, Hint hint) + * * Check if a certain display hint has been set on an object. * - * This overloads @f displayHintSet(DisplayHints, Hint) to accept a QObject + * This overloads displayHintSet(DisplayHints, Hint) to accept a QObject * instance. This object is checked to see if it has a displayHint property - * and if so, if that property has @p hint set. + * and if so, if that property has \a hint set. * - * @param object The object to check. - * @param hint The hint to check for. + * \a object The object to check. * - * @return false if object is null, object has no displayHint property or - * the hint was not set. true if it has the property and the hint is + * \a hint The hint to check for. + * + * Returns \c false if object is null, object has no displayHint property or + * the hint was not set. \c true if it has the property and the hint is * set. */ Q_INVOKABLE bool displayHintSet(QObject *object, Hint hint); - /** - * Static version of \f displayHintSet(DisplayHints, Hint) that can be + /*! + * Static version of displayHintSet(DisplayHints, Hint) that can be * called from C++ code. */ static bool isDisplayHintSet(DisplayHints values, Hint hint); diff --git a/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.cpp b/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.cpp index 1e52c11fea..0bb29842bb 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.cpp +++ b/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.cpp @@ -88,12 +88,6 @@ void FormLayoutAttached::setBuddyFor(QQuickItem *aBuddyFor) // TODO: Use ScenePosition or introduce new type for optimized relative // position calculation to support more nested buddy. - if (aBuddyFor && aBuddyFor != attachee && aBuddyFor->parentItem() != attachee) { - qWarning(KirigamiLayoutsLog).nospace() << "FormData.buddyFor must be a direct child of the attachee. Attachee: " << attachee - << ", buddyFor: " << aBuddyFor; - return; - } - if (m_buddyFor) { disconnect(m_buddyFor, &QObject::destroyed, this, &FormLayoutAttached::resetBuddyFor); } diff --git a/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.h b/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.h index e43c046779..821826ffac 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.h +++ b/local/recipes/kde/kirigami/source/src/layouts/formlayoutattached.h @@ -12,13 +12,17 @@ class QQuickItem; -/** - * This attached property contains the information for decorating a org::kde::kirigami::FormLayout: +/*! + * + * \qmltype FormData + * \inqmlmodule org.kde.kirigami.layouts + * + * \brief An attached property with information for decorating a FormLayout. * * It contains the text labels of fields and information about sections. * - * Some of its properties can be used with other Layout types. - * @code{.qml} + * Some of its properties can be used with other Layout types. + * \qml * import org.kde.kirigami as Kirigami * * Kirigami.FormLayout { @@ -29,9 +33,9 @@ class QQuickItem; * Kirigami.FormData.label: "Password:" * } * } - * @endcode - * @see org::kde::kirigami::FormLayout - * @since 2.3 + * \endqml + * \sa FormLayout + * \since 2.3 */ class FormLayoutAttached : public QObject { @@ -39,19 +43,26 @@ class FormLayoutAttached : public QObject QML_NAMED_ELEMENT(FormData) QML_ATTACHED(FormLayoutAttached) QML_UNCREATABLE("") - /** - * The label for a org::kde::kirigami::FormLayout field + /*! + * \qmlattachedproperty string FormData::label + * + * The label for a FormLayout field */ Q_PROPERTY(QString label READ label WRITE setLabel NOTIFY labelChanged FINAL) - /** - * The alignment for the label of a org::kde::kirigami::FormLayout field + /*! + * \qmlattachedproperty int FormData::labelAlignment + * + * The alignment for the label of a FormLayout field */ Q_PROPERTY(int labelAlignment READ labelAlignment WRITE setLabelAlignment NOTIFY labelAlignmentChanged FINAL) - /** - * If true, the child item of a org::kde::kirigami::FormLayout becomes a section separator, and + /*! + * \qmlattachedproperty bool FormData::isSection + * + * If true, the child item of a FormLayout becomes a section separator, and * may have different looks: - * * To make it just a space between two fields, just put an empty item with FormData.isSection: - * @code + * + * To make it just a space between two fields, just put an empty item with \c{FormData.isSection}: + * \code * TextField { * Kirigami.FormData.label: "Label:" * } @@ -61,10 +72,10 @@ class FormLayoutAttached : public QObject * TextField { * Kirigami.FormData.label: "Label:" * } - * @endcode + * \endcode * - * * To make it a space with a section title: - * @code + * To make it a space with a section title: + * \code * TextField { * Kirigami.FormData.label: "Label:" * } @@ -75,10 +86,10 @@ class FormLayoutAttached : public QObject * TextField { * Kirigami.FormData.label: "Label:" * } - * @endcode + * \endcode * - * * To make it a space with a section title and a separator line: - * @code + * To make it a space with a section title and a separator line: + * \code * TextField { * Kirigami.FormData.label: "Label:" * } @@ -89,28 +100,29 @@ class FormLayoutAttached : public QObject * TextField { * Kirigami.FormData.label: "Label:" * } - * @endcode - * @see org::kde::kirigami::FormLayout + * \endcode */ Q_PROPERTY(bool isSection READ isSection WRITE setIsSection NOTIFY isSectionChanged FINAL) - /** + /*! + * \qmlattachedproperty Item FormData::buddyFor + * * This property can only be used - * in conjunction with a Kirigami.FormData.label, - * often in a layout that is a child of a org::kde::kirigami::FormLayout. + * in conjunction with a FormData::label, + * often in a layout that is a child of a FormLayout. * * It then turns the item specified into a "buddy" * of the label, making it work as if it were - * a child of the org::kde::kirigami::FormLayout. + * a child of the FormLayout. * * A buddy item is useful for instance when the label has a keyboard accelerator, * which when triggered provides active keyboard focus to the buddy item. * - * By default buddy is the item that Kirigami.FormData is attached to. + * By default buddy is the item that FormData is attached to. * Custom buddy can only be a direct child of that item; nested components * are not supported at the moment. * - * @code + * \code * Kirigami.FormLayout { * Layouts.ColumnLayout { * // If the accelerator is in the letter S, @@ -126,7 +138,7 @@ class FormLayoutAttached : public QObject * } * } * } - * @endcode + * \endcode */ Q_PROPERTY(QQuickItem *buddyFor READ buddyFor WRITE setBuddyFor NOTIFY buddyForChanged FINAL) diff --git a/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.cpp b/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.cpp index 2e744ab326..4b7ef3f62c 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.cpp +++ b/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.cpp @@ -132,6 +132,24 @@ QQuickItem *HeaderFooterLayout::footer() return m_footer; } +void HeaderFooterLayout::setSpacing(qreal spacing) +{ + if (spacing == m_spacing) { + return; + } + + m_spacing = spacing; + + markAsDirty(); + + Q_EMIT spacingChanged(); +} + +qreal HeaderFooterLayout::spacing() const +{ + return m_spacing; +} + void HeaderFooterLayout::forceLayout() { updatePolish(); @@ -189,14 +207,14 @@ void HeaderFooterLayout::performLayout() if (m_header) { m_header->setWidth(newSize.width()); if (m_header->isVisible()) { - headerHeight = m_header->height(); + headerHeight = m_header->height() + m_spacing; } } if (m_footer) { m_footer->setY(newSize.height() - m_footer->height()); m_footer->setWidth(newSize.width()); if (m_footer->isVisible()) { - footerHeight = m_footer->height(); + footerHeight = m_footer->height() + m_spacing; } } if (m_contentItem) { @@ -215,11 +233,11 @@ void HeaderFooterLayout::updateImplicitSize() if (m_header && m_header->isVisible()) { impWidth = std::max(impWidth, m_header->implicitWidth()); - impHeight += m_header->implicitHeight(); + impHeight += m_header->implicitHeight() + m_spacing; } if (m_footer && m_footer->isVisible()) { impWidth = std::max(impWidth, m_footer->implicitWidth()); - impHeight += m_footer->implicitHeight(); + impHeight += m_footer->implicitHeight() + m_spacing; } if (m_contentItem && m_contentItem->isVisible()) { impWidth = std::max(impWidth, m_contentItem->implicitWidth()); diff --git a/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.h b/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.h index f5c81ca054..f8c9067958 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.h +++ b/local/recipes/kde/kirigami/source/src/layouts/headerfooterlayout.h @@ -10,42 +10,62 @@ #include #include -/** - * replicates a little part of what Page does, +/*! + * \qmltype HeaderFooterLayout + * \inqmlmodule org.kde.kirigami.layouts + * + * \brief Replicates a little part of what Page does. + * * It's a container with 3 properties, header, contentItem and footer - * which will be laid out oone on top of each other. It works better than a - * ColumnLayout when the elements are to be defined by properties by the - * user, which would require ugly reparenting dances and container items to + * which will be laid out oone on top of each other. + * + * It works better than a ColumnLayout when the elements are to be + * defined by properties by the user, which would require ugly + * reparenting dances and container items to * maintain the layout well behaving. */ class HeaderFooterLayout : public QQuickItem { Q_OBJECT QML_ELEMENT - /** - * @brief This property holds the page header item. + /*! + * \qmlproperty Item HeaderFooterLayout::header + * \brief This property holds the page header item. * * The header item is positioned to the top, * and resized to the width of the page. The default value is null. */ Q_PROPERTY(QQuickItem *header READ header WRITE setHeader NOTIFY headerChanged FINAL) - /** - * @brief This property holds the visual content Item. + /*! + * \qmlproperty Item HeaderFooterLayout::contentItem + * \brief This property holds the visual content Item. * * It will be resized both in width and height with the layout resizing. - * Its height will be resized to still have room for the heder and footer + * Its height will be resized to still have room for the header and footer */ Q_PROPERTY(QQuickItem *contentItem READ contentItem WRITE setContentItem NOTIFY contentItemChanged FINAL) - /** - * @brief This property holds the page footer item. + /*! + * \qmlproperty Item HeaderFooterLayout::footer + * \brief This property holds the page footer item. * * The footer item is positioned to the bottom, * and resized to the width of the page. The default value is null. */ Q_PROPERTY(QQuickItem *footer READ footer WRITE setFooter NOTIFY footerChanged FINAL) + /*! + * \qmlproperty real HeaderFooterLayout::spacing + * \brief Space between contentItem and the header and footer items. + * + * The content Item of the page will be positioned at this distance in pixels + * from the header and footer Items. The default value is zero. + * + * @since 6.13 + */ + Q_PROPERTY(qreal spacing READ spacing WRITE setSpacing NOTIFY spacingChanged FINAL) + public: HeaderFooterLayout(QQuickItem *parent = nullptr); ~HeaderFooterLayout() override; @@ -59,8 +79,12 @@ public: void setFooter(QQuickItem *item); QQuickItem *footer(); - /** - * @brief HeaderFooterLayout normally positions its header, footer and + void setSpacing(qreal spacing); + qreal spacing() const; + + /*! + * \qmlmethod void HeaderFooterLayout::forceLayout() + * \brief HeaderFooterLayout normally positions its header, footer and * contentItem once per frame (at polish event). This method forces the it * to recalculate the layout immediately. */ @@ -68,6 +92,7 @@ public: Q_SIGNALS: void headerChanged(); + void spacingChanged(); void contentItemChanged(); void footerChanged(); @@ -86,6 +111,8 @@ private: QPointer m_contentItem; QPointer m_footer; + qreal m_spacing = 0; + bool m_isDirty : 1; bool m_performingLayout : 1; }; diff --git a/local/recipes/kde/kirigami/source/src/layouts/padding.cpp b/local/recipes/kde/kirigami/source/src/layouts/padding.cpp index 9b1b65c837..0b962b18ed 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/padding.cpp +++ b/local/recipes/kde/kirigami/source/src/layouts/padding.cpp @@ -129,12 +129,12 @@ void Padding::setContentItem(QQuickItem *item) } // Not hiding old contentItem unlike Control, because we can't reliably - // restore it or force `visibile:` binding re-evaluation. + // restore it or force `visible:` binding re-evaluation. if (d->m_contentItem) { d->disconnect(); - // Ideally, it should only unset the parent iff old item's parent is + // Ideally, it should only unset the parent if old item's parent is // `this`. But QtQuick.Controls/Control doesn't do that, and we don't - // wanna even more inconsistencies with upstream. + // want even more inconsistencies with upstream. d->m_contentItem->setParentItem(nullptr); } diff --git a/local/recipes/kde/kirigami/source/src/layouts/padding.h b/local/recipes/kde/kirigami/source/src/layouts/padding.h index b23c3d3aba..fc2f3008ee 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/padding.h +++ b/local/recipes/kde/kirigami/source/src/layouts/padding.h @@ -12,14 +12,17 @@ class PaddingPrivate; -/** - * This item simply adds an external padding to contentItem's size. +/*! + * \qmltype Padding + * \inqmlmodule org.kde.kirigami.layouts * - * Padding item behaves similarly to QtQuick.Controls/Control::padding, + * \brief This item simply adds an external padding to contentItem's size. + * + * Padding item behaves similarly to Control::padding, * but is more lightweight and thus efficient. Its implicit size is set * to that of its contentItem's implicit size plus padding. * - * @code + * \code * import QtQuick.Controls as QQC2 * import org.kde.kirigami as Kirigami * @@ -27,13 +30,13 @@ class PaddingPrivate; * padding: Kirigami.Units.largeSpacing * contentItem: QQC2.Button {} * } - * @endcode + * \endcode * * With this component it is possible to add external paddings as a - * placeholder for an item, whereas with QtQuick.Layouts you would need to + * placeholder for an item, whereas with QtQuick Layouts} you would need to * manually assign or bind attached properties whenever content item changes. * - * @code + * \code * import QtQuick * import QtQuick.Layouts * import QtQuick.Controls as QQC2 @@ -53,95 +56,125 @@ class PaddingPrivate; * padding: Kirigami.Units.largeSpacing * } * } - * @endcode + * \endcode * - * @since KDE Frameworks 6.0 + * \since 6.0 */ class Padding : public QQuickItem { Q_OBJECT QML_ELEMENT - /** - * @brief This property holds the visual content Item. + /*! + * \qmlproperty Item Padding::contentItem + * + * \brief This property holds the visual content Item. * * It will automatically resized taking into account all the paddings */ Q_PROPERTY(QQuickItem *contentItem READ contentItem WRITE setContentItem NOTIFY contentItemChanged FINAL) - /** - * @brief This property holds the default padding. + /*! + * \qmlproperty real Padding::padding + * + * \brief This property holds the default padding. * * Padding adds a space between each edge of this ITem and its contentItem, effectively controlling its size. * To specify a padding value for a specific edge of the control, set its relevant property: - * * leftPadding - * * rightPadding - * * topPadding - * * bottomPadding + * \list + * \li leftPadding + * \li rightPadding + * \li topPadding + * \li bottomPadding + * \endlist */ Q_PROPERTY(qreal padding READ padding WRITE setPadding NOTIFY paddingChanged RESET resetPadding FINAL) - /** - * @brief This property holds the horizontal padding. + /*! + * \qmlproperty real Padding::horizontalPadding + * + * \brief This property holds the horizontal padding. * * Unless explicitly set, the value is equal to padding. */ Q_PROPERTY(qreal horizontalPadding READ horizontalPadding WRITE setHorizontalPadding NOTIFY horizontalPaddingChanged RESET resetHorizontalPadding FINAL) - /** - * @brief This property holds the vertical padding. + /*! + * \qmlproperty real Padding::verticalPadding + * + * \brief This property holds the vertical padding. * * Unless explicitly set, the value is equal to padding. */ Q_PROPERTY(qreal verticalPadding READ verticalPadding WRITE setVerticalPadding NOTIFY verticalPaddingChanged RESET resetVerticalPadding FINAL) - /** - * @brief This property holds the padding on the left side. + /*! + * \qmlproperty real Padding::leftPadding + * + * \brief This property holds the padding on the left side. * * Unless explicitly set, it falls back to horizontalPadding and then to padding. * This always refers to the actual left, it won't be flipped on RTL layouts. */ Q_PROPERTY(qreal leftPadding READ leftPadding WRITE setLeftPadding NOTIFY leftPaddingChanged RESET resetLeftPadding FINAL) - /** - * @brief the padding on the top side. + /*! + * \qmlproperty real Padding::topPadding + * + * \brief the padding on the top side. * * Unless explicitly set, it falls back to verticalPadding and then to padding. */ Q_PROPERTY(qreal topPadding READ topPadding WRITE setTopPadding NOTIFY topPaddingChanged RESET resetTopPadding FINAL) - /** - * @brief This property holds the padding on the right side. + /*! + * \qmlproperty real Padding::rightPadding + * + * \brief This property holds the padding on the right side. * * Unless explicitly set, it falls back to horizontalPadding and then to padding. * This always refers to the actual right, it won't be flipped on RTL layouts. */ Q_PROPERTY(qreal rightPadding READ rightPadding WRITE setRightPadding NOTIFY rightPaddingChanged RESET resetRightPadding FINAL) - /** - * @brief This property holds the padding on the bottom side. + /*! + * \qmlproperty real Padding::bottomPadding + * + * \brief This property holds the padding on the bottom side. * * Unless explicitly set, it falls back to verticalPadding and then to padding. */ Q_PROPERTY(qreal bottomPadding READ bottomPadding WRITE setBottomPadding NOTIFY bottomPaddingChanged RESET resetBottomPadding FINAL) - /** - * @brief The width available to the contentItem after deducting horizontal padding from the width of the Padding. + /*! + * \qmlproperty real Padding::availableWidth + * \readonly + * + * \brief The width available to the contentItem after deducting horizontal padding from the width of the Padding. */ Q_PROPERTY(qreal availableWidth READ availableWidth NOTIFY availableWidthChanged FINAL) - /** - * @brief The height available to the contentItem after deducting vertical padding from the width of the Padding. + /*! + * \qmlproperty real Padding::availableHeight + * \readonly + * + * \brief The height available to the contentItem after deducting vertical padding from the width of the Padding. */ Q_PROPERTY(qreal availableHeight READ availableHeight NOTIFY availableHeightChanged FINAL) - /** - * @brief The implicitWidth of its contentItem, or 0 if not present. + /*! + * \qmlproperty real Padding::implicitContentWidth + * \readonly + * + * \brief The implicitWidth of its contentItem, or 0 if not present. */ Q_PROPERTY(qreal implicitContentWidth READ implicitContentWidth NOTIFY implicitContentWidthChanged FINAL) - /** - * @brief The implicitHeight of its contentItem, or 0 if not present. + /*! + * \qmlproperty real Padding::implicitContentHeight + * \readonly + * + * \brief The implicitHeight of its contentItem, or 0 if not present. */ Q_PROPERTY(qreal implicitContentHeight READ implicitContentHeight NOTIFY implicitContentHeightChanged FINAL) diff --git a/local/recipes/kde/kirigami/source/src/layouts/sizegroup.h b/local/recipes/kde/kirigami/source/src/layouts/sizegroup.h index 6677680dd0..3d0d225448 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/sizegroup.h +++ b/local/recipes/kde/kirigami/source/src/layouts/sizegroup.h @@ -14,8 +14,11 @@ #include #include -/** - * SizeGroup is a utility object that makes groups of items request the same size. +/*! + * \qmltype SizeGroup + * \inqmlmodule org.kde.kirigami.layouts + * + * \brief SizeGroup is a utility object that makes groups of items request the same size. */ class SizeGroup : public QObject, public QQmlParserStatus { @@ -39,13 +42,23 @@ private: QMap> m_connections; public: - /** - * Which dimensions this SizeGroup should adjust + /*! + * \qmlproperty enumeration SizeGroup::mode + * Which dimensions this SizeGroup should adjust. + * + * Possible values are: + * \list + * \li None: SizeGroup does nothing + * \li Width: SizeGroup syncs item widths + * \li Height: SizeGroup syncs item heights + * \li Both: SizeGroup syncs both item widths and heights + * \endlist */ Q_PROPERTY(Mode mode MEMBER m_mode NOTIFY modeChanged FINAL) Q_SIGNAL void modeChanged(); - /** + /*! + * \qmlproperty list SizeGroup::items * Which items this SizeGroup should adjust */ Q_PROPERTY(QQmlListProperty items READ items CONSTANT FINAL) @@ -54,7 +67,8 @@ public: void adjustItems(Mode whatChanged); void connectItem(QQuickItem *item); - /** + /*! + * \qmlmethod void SizeGroup::relayout() * Forces the SizeGroup to relayout items. * * Normally this is never needed as the SizeGroup automatically diff --git a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.cpp b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.cpp index 76d034a4aa..ed6a47b10b 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.cpp +++ b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.cpp @@ -11,32 +11,14 @@ #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include #include #include "loggingcategory.h" #include "toolbarlayoutdelegate.h" +using namespace Qt::StringLiterals; + ToolBarLayoutAttached::ToolBarLayoutAttached(QObject *parent) : QObject(parent) { @@ -362,25 +344,29 @@ void ToolBarLayout::componentComplete() { QQuickItem::componentComplete(); d->completed = true; - relayout(); + d->performLayout(); } void ToolBarLayout::geometryChange(const QRectF &newGeometry, const QRectF &oldGeometry) { if (newGeometry != oldGeometry) { - if (newGeometry.size() != QSizeF{implicitWidth(), implicitHeight()}) { - relayout(); - } else { - polish(); - } + relayout(); } QQuickItem::geometryChange(newGeometry, oldGeometry); } void ToolBarLayout::itemChange(QQuickItem::ItemChange change, const QQuickItem::ItemChangeData &data) { - if (change == ItemVisibleHasChanged || change == ItemSceneChange) { + if (change == ItemSceneChange) { relayout(); + } else if (change == ItemVisibleHasChanged) { + // If we just became visible we want all the actions to be visible and laid out, + // in order to not draw a frame with an empty toolbar + for (auto &delegate : std::as_const(d->delegates)) { + delegate.second->forceCompletion(); + } + d->implicitSizeValid = false; + d->performLayout(); } QQuickItem::itemChange(change, data); } @@ -390,7 +376,7 @@ void ToolBarLayout::updatePolish() d->performLayout(); } -/** +/* * Calculate the implicit size for this layout. * * This is a separate step from performing the actual layout, because of a nasty @@ -426,7 +412,8 @@ void ToolBarLayoutPrivate::calculateImplicitSize() sortedDelegates = createDelegates(); bool ready = std::all_of(delegates.cbegin(), delegates.cend(), [](const std::pair> &entry) { - return entry.second->isReady(); + // If the delegate wants to always be hidden we don't care if it's still loading + return entry.second->isReady() || entry.second->isHidden(); }); if (!ready || !moreButtonInstance) { return; @@ -465,6 +452,8 @@ void ToolBarLayoutPrivate::calculateImplicitSize() visibleActionsWidth = 0.0; + q->setImplicitWidth(maxWidth); + if (maxWidth > q->width() - (hiddenActions.isEmpty() ? 0.0 : moreButtonInstance->width() + spacing)) { // We have more items than fit into the view, so start hiding some. @@ -497,7 +486,8 @@ void ToolBarLayoutPrivate::calculateImplicitSize() maxHeight = std::max(maxHeight, moreButtonInstance->implicitHeight()); }; - q->setImplicitSize(maxWidth, maxHeight); + q->setImplicitHeight(maxHeight); + Q_EMIT q->hiddenActionsChanged(); implicitSizeValid = true; @@ -515,14 +505,16 @@ void ToolBarLayoutPrivate::performLayout() calculateImplicitSize(); } - if (sortedDelegates.isEmpty()) { + if (sortedDelegates.isEmpty() || !moreButtonInstance) { sortedDelegates = createDelegates(); } bool ready = std::all_of(delegates.cbegin(), delegates.cend(), [](const std::pair> &entry) { - return entry.second->isReady(); + // If the delegate wants to always be hidden we don't care if it's still loading + return entry.second->isReady() || entry.second->isHidden(); }); - if (!ready || !moreButtonInstance) { + if (!ready) { + // Don't continue to layout if all delegates aren't ready yet return; } @@ -622,28 +614,19 @@ QList ToolBarLayoutPrivate::createDelegates() } } - if (!moreButtonInstance && !moreButtonIncubator) { - moreButtonIncubator = new ToolBarDelegateIncubator(moreButton, qmlContext(moreButton)); - moreButtonIncubator->setStateCallback([this](QQuickItem *item) { - item->setParentItem(q); - }); - moreButtonIncubator->setCompletedCallback([this](ToolBarDelegateIncubator *incubator) { - moreButtonInstance = qobject_cast(incubator->object()); - moreButtonInstance->setVisible(false); + if (!moreButtonInstance && moreButton) { + moreButtonInstance = qobject_cast( + moreButton->createWithInitialProperties({{u"parent"_s, QVariant::fromValue(q)}, {u"visible"_s, false}}, qmlContext(moreButton))); + if (moreButtonInstance) { + moreButtonInstance->setParent(q); QObject::connect(moreButtonInstance, &QQuickItem::visibleChanged, q, [this]() { moreButtonInstance->setVisible(shouldShowMoreButton); }); QObject::connect(moreButtonInstance, &QQuickItem::widthChanged, q, &ToolBarLayout::minimumWidthChanged); q->relayout(); Q_EMIT q->minimumWidthChanged(); - - QTimer::singleShot(0, q, [this]() { - delete moreButtonIncubator; - moreButtonIncubator = nullptr; - }); - }); - moreButtonIncubator->create(); + } } return result; @@ -670,6 +653,7 @@ ToolBarLayoutDelegate *ToolBarLayoutPrivate::createDelegate(QObject *action) result->setAction(action); result->createItems(fullComponent, iconDelegate, [this, action](QQuickItem *newItem) { newItem->setParentItem(q); + newItem->setParent(q); auto attached = static_cast(qmlAttachedPropertiesObject(newItem, true)); attached->setAction(action); diff --git a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.h b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.h index 9f17497599..65d9f003b0 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.h +++ b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayout.h @@ -12,15 +12,9 @@ class ToolBarLayoutPrivate; -/** - * Attached property for ToolBarLayout delegates. - */ class ToolBarLayoutAttached : public QObject { Q_OBJECT - /** - * The action this delegate was created for. - */ Q_PROPERTY(QObject *action READ action CONSTANT FINAL) public: ToolBarLayoutAttached(QObject *parent = nullptr); @@ -32,50 +26,64 @@ private: QObject *m_action = nullptr; }; -/** - * An item that creates delegates for actions and lays them out in a row. +/*! + * \qmltype ToolBarLayout + * \inqmlmodule org.kde.kirigami.layouts + * \inherits Item + * + * \brief An item that creates delegates for actions and lays them out in a row. * * This effectively combines RowLayout and Repeater in a single item, with the * addition of some extra performance enhancing tweaks. It will create instances - * of ::fullDelegate and ::itemDelegate for each action in ::actions . These are + * of fullDelegate and itemDelegate for each action in actions. These are * then positioned horizontally. Any action that ends up being placed outside - * the width of the item is hidden and will be part of ::hiddenActions. + * the width of the item is hidden and will be part of hiddenActions. * * The items created as delegates are always created asynchronously, to avoid * creation lag spikes. Each delegate has access to the action it was created - * for through the ToolBarLayoutAttached attached property. + * for through the action attached property. */ class ToolBarLayout : public QQuickItem { Q_OBJECT QML_ELEMENT QML_ATTACHED(ToolBarLayoutAttached) - /** + /*! + * \qmlproperty list ToolBarLayout::actions + * * The actions this layout should create delegates for. */ Q_PROPERTY(QQmlListProperty actions READ actionsProperty NOTIFY actionsChanged FINAL) - /** + /*! + * \qmlproperty list ToolBarLayout::hiddenActions + * * A list of actions that do not fit in the current view and are thus hidden. */ Q_PROPERTY(QList hiddenActions READ hiddenActions NOTIFY hiddenActionsChanged FINAL) - /** + /*! + * \qmlproperty Component ToolBarLayout::fullDelegate + * * A component that is used to create full-size delegates from. * * Each delegate has three states, it can be full-size, icon-only or hidden. * By default, the full-size delegate is used. When the action has the - * DisplayHint::IconOnly hint set, it will always use the iconDelegate. When - * it has the DisplayHint::KeepVisible hint set, it will use the full-size + * DisplayHint.IconOnly hint set, it will always use the iconDelegate. When + * it has the DisplayHint.KeepVisible hint set, it will use the full-size * delegate when it fits. If not, it will use the iconDelegate, unless even * that does not fit, in which case it will still be hidden. */ Q_PROPERTY(QQmlComponent *fullDelegate READ fullDelegate WRITE setFullDelegate NOTIFY fullDelegateChanged FINAL) - /** + /*! + * \qmlproperty Component ToolBarLayout::iconDelegate + * * A component that is used to create icon-only delegates from. * * \sa fullDelegate */ Q_PROPERTY(QQmlComponent *iconDelegate READ iconDelegate WRITE setIconDelegate NOTIFY iconDelegateChanged FINAL) - /** + /*! + * \qmlproperty Component ToolBarLayout::separatorDelegate + * * A component that is used to create separator delegates from. * * \since 6.7 @@ -83,7 +91,9 @@ class ToolBarLayout : public QQuickItem * \sa fullDelegate */ Q_PROPERTY(QQmlComponent *separatorDelegate READ separatorDelegate WRITE setSeparatorDelegate NOTIFY separatorDelegateChanged FINAL) - /** + /*! + * \qmlproperty Component ToolBarLayout::moreButton + * * A component that is used to create the "more button" item from. * * The more button is shown when there are actions that do not fit the @@ -91,11 +101,15 @@ class ToolBarLayout : public QQuickItem * actions, like popup a menu with them showing. */ Q_PROPERTY(QQmlComponent *moreButton READ moreButton WRITE setMoreButton NOTIFY moreButtonChanged FINAL) - /** + /*! + * \qmlproperty real ToolBarLayout::spacing + * * The amount of spacing between individual delegates. */ Q_PROPERTY(qreal spacing READ spacing WRITE setSpacing NOTIFY spacingChanged FINAL) - /** + /*! + * \qmlproperty Qt.Alignment ToolBarLayout::alignment + * * How to align the delegates within this layout. * * When there is more space available than required by the visible delegates, @@ -104,17 +118,23 @@ class ToolBarLayout : public QQuickItem * placed at the end of the layout. */ Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment NOTIFY alignmentChanged FINAL) - /** + /*! + * \qmlproperty real ToolBarLayout::visibleWidth + * * The combined width of visible delegates in this layout. */ Q_PROPERTY(qreal visibleWidth READ visibleWidth NOTIFY visibleWidthChanged FINAL) - /** + /*! + * \qmlproperty real ToolBarLayout::minimumWidth + * * The minimum width this layout can have. * * This is equal to the width of the moreButton. */ Q_PROPERTY(qreal minimumWidth READ minimumWidth NOTIFY minimumWidthChanged FINAL) - /** + /*! + * \qmlproperty Qt.LayoutDirection ToolBarLayout::layoutDirection + * * Which direction to layout in. * * This is primarily intended to support right-to-left layouts. When set to @@ -128,29 +148,37 @@ class ToolBarLayout : public QQuickItem * AlignLeft will align items to the right, and vice-versa. */ Q_PROPERTY(Qt::LayoutDirection layoutDirection READ layoutDirection WRITE setLayoutDirection NOTIFY layoutDirectionChanged FINAL) - /** + /*! + * \qmlproperty enumeration ToolBarLayout::heightMode * How to handle items that do not match the toolbar's height. * * When toolbar items do not match the height of the toolbar, there are * several ways we can deal with this. This property sets the preferred way. * - * The default is HeightMode::ConstrainIfLarger . + * Available are: + * \list + * \li AlwaysCenter Always center items, allowing them to go outside the bounds of the layout if they are larger + * \li AlwaysFill Always match the height of the layout. Larger items will be reduced in height, smaller items will be increased + * \li ConstrainIfLarger If the item is larger than the toolbar, reduce its height. Otherwise center it in the toolbar + * \endlist * - * \sa HeightMode + * The default is HeightMode::ConstrainIfLarger . */ Q_PROPERTY(HeightMode heightMode READ heightMode WRITE setHeightMode NOTIFY heightModeChanged FINAL) + /*! + * \qmlattachedproperty QtObject ToolBarLayout::action + * + * The action this delegate was created for. + */ + public: using ActionsProperty = QQmlListProperty; - /** - * An enum describing several modes that can be used to deal with items with - * a height that does not match the toolbar's height. - */ enum HeightMode { - AlwaysCenter, ///< Always center items, allowing them to go outside the bounds of the layout if they are larger. - AlwaysFill, ///< Always match the height of the layout. Larger items will be reduced in height, smaller items will be increased. - ConstrainIfLarger, ///< If the item is larger than the toolbar, reduce its height. Otherwise center it in the toolbar. + AlwaysCenter, + AlwaysFill, + ConstrainIfLarger, }; Q_ENUM(HeightMode) @@ -158,21 +186,11 @@ public: ~ToolBarLayout() override; ActionsProperty actionsProperty() const; - /** - * Add an action to the list of actions. - * - * \param action The action to add. - */ + void addAction(QObject *action); - /** - * Remove an action from the list of actions. - * - * \param action The action to remove. - */ + void removeAction(QObject *action); - /** - * Clear the list of actions. - */ + void clearActions(); Q_SIGNAL void actionsChanged(); @@ -217,7 +235,8 @@ public: void setHeightMode(HeightMode newHeightMode); Q_SIGNAL void heightModeChanged(); - /** + /*! + * \qmlmethod void ToolBarLayout::relayout() * Queue a relayout of this layout. * * \note The layouting happens during the next scene graph polishing phase. diff --git a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.cpp b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.cpp index 4da7f720af..e3ce3bc7c2 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.cpp +++ b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.cpp @@ -9,11 +9,15 @@ #include "loggingcategory.h" #include "toolbarlayout.h" +using namespace Qt::StringLiterals; + ToolBarDelegateIncubator::ToolBarDelegateIncubator(QQmlComponent *component, QQmlContext *context) : QQmlIncubator(QQmlIncubator::Asynchronous) , m_component(component) , m_context(context) { + // Start with the delegate invisible in order to avoid flickering it in the wrong place when created + setInitialProperties({{u"visible"_s, false}}); } void ToolBarDelegateIncubator::setStateCallback(std::function callback) @@ -174,6 +178,12 @@ void ToolBarLayoutDelegate::createItems(QQmlComponent *fullComponent, QQmlCompon m_fullIncubator->create(); m_iconIncubator->create(); + + // If we are in a visible parent and the action doesn't want to always be hidden, create it immadiately, + // in order to not have a frame be drawn with an empty toolbar + if (m_parent->isVisible() && isActionVisible() && !isHidden()) { + forceCompletion(); + } } bool ToolBarLayoutDelegate::isReady() const @@ -230,6 +240,17 @@ void ToolBarLayoutDelegate::show() ensureItemVisibility(); } +void ToolBarLayoutDelegate::forceCompletion() +{ + if (m_iconIncubator) { + m_iconIncubator->forceCompletion(); + } + if (m_fullIncubator) { + m_fullIncubator->forceCompletion(); + } + m_ready = m_icon && m_full; +} + void ToolBarLayoutDelegate::setPosition(qreal x, qreal y) { m_full->setX(x); diff --git a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.h b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.h index 81568bda20..5947ebd5f9 100644 --- a/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.h +++ b/local/recipes/kde/kirigami/source/src/layouts/toolbarlayoutdelegate.h @@ -68,6 +68,7 @@ public: void showIcon(); void showFull(); void show(); + void forceCompletion(); void setPosition(qreal x, qreal y); void setHeight(qreal height); diff --git a/local/recipes/kde/kirigami/source/src/mnemonicattached.cpp b/local/recipes/kde/kirigami/source/src/mnemonicattached.cpp deleted file mode 100644 index cf972ac7f4..0000000000 --- a/local/recipes/kde/kirigami/source/src/mnemonicattached.cpp +++ /dev/null @@ -1,496 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2017 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "mnemonicattached.h" -#include -#include -#include -#include -#include -#include -#include - -QHash MnemonicAttached::s_sequenceToObject = QHash(); - -// If pos points to alphanumeric X in "...(X)...", which is preceded or -// followed only by non-alphanumerics, then "(X)" gets removed. -static QString removeReducedCJKAccMark(const QString &label, int pos) -{ - /* clang-format off */ - if (pos > 0 && pos + 1 < label.length() - && label[pos - 1] == QLatin1Char('(') - && label[pos + 1] == QLatin1Char(')') - && label[pos].isLetterOrNumber()) { /* clang-format on */ - // Check if at start or end, ignoring non-alphanumerics. - int len = label.length(); - int p1 = pos - 2; - while (p1 >= 0 && !label[p1].isLetterOrNumber()) { - --p1; - } - ++p1; - int p2 = pos + 2; - while (p2 < len && !label[p2].isLetterOrNumber()) { - ++p2; - } - --p2; - - const QStringView strView(label); - if (p1 == 0) { - return strView.left(pos - 1) + strView.mid(p2 + 1); - } else if (p2 + 1 == len) { - return strView.left(p1) + strView.mid(pos + 2); - } - } - return label; -} - -static QString removeAcceleratorMarker(const QString &label_) -{ - QString label = label_; - - int p = 0; - bool accmarkRemoved = false; - while (true) { - p = label.indexOf(QLatin1Char('&'), p); - if (p < 0 || p + 1 == label.length()) { - break; - } - - if (label.at(p + 1).isLetterOrNumber()) { - // Valid accelerator. - const QStringView sv(label); - label = sv.left(p) + sv.mid(p + 1); - - // May have been an accelerator in CJK-style "(&X)" - // at the start or end of text. - label = removeReducedCJKAccMark(label, p); - - accmarkRemoved = true; - } else if (label.at(p + 1) == QLatin1Char('&')) { - // Escaped accelerator marker. - const QStringView sv(label); - label = sv.left(p) + sv.mid(p + 1); - } - - ++p; - } - - // If no marker was removed, and there are CJK characters in the label, - // also try to remove reduced CJK marker -- something may have removed - // ampersand beforehand. - if (!accmarkRemoved) { - bool hasCJK = false; - for (const QChar c : std::as_const(label)) { - if (c.unicode() >= 0x2e00) { // rough, but should be sufficient - hasCJK = true; - break; - } - } - if (hasCJK) { - p = 0; - while (true) { - p = label.indexOf(QLatin1Char('('), p); - if (p < 0) { - break; - } - label = removeReducedCJKAccMark(label, p + 1); - ++p; - } - } - } - - return label; -} - -class MnemonicEventFilter : public QObject -{ - Q_OBJECT - -public: - static MnemonicEventFilter &instance() - { - static MnemonicEventFilter s_instance; - return s_instance; - } - - bool eventFilter(QObject *watched, QEvent *event) override - { - Q_UNUSED(watched); - - if (event->type() == QEvent::KeyPress) { - QKeyEvent *ke = static_cast(event); - if (ke->key() == Qt::Key_Alt) { - m_altPressed = true; - Q_EMIT altPressed(); - } - } else if (event->type() == QEvent::KeyRelease) { - QKeyEvent *ke = static_cast(event); - if (ke->key() == Qt::Key_Alt) { - m_altPressed = false; - Q_EMIT altReleased(); - } - } else if (event->type() == QEvent::ApplicationStateChange) { - if (m_altPressed) { - m_altPressed = false; - Q_EMIT altReleased(); - } - } - - return false; - } - -Q_SIGNALS: - void altPressed(); - void altReleased(); - -private: - MnemonicEventFilter() - : QObject(nullptr) - { - qGuiApp->installEventFilter(this); - } - - bool m_altPressed = false; -}; - -MnemonicAttached::MnemonicAttached(QObject *parent) - : QObject(parent) -{ - connect(&MnemonicEventFilter::instance(), &MnemonicEventFilter::altPressed, this, &MnemonicAttached::onAltPressed); - connect(&MnemonicEventFilter::instance(), &MnemonicEventFilter::altReleased, this, &MnemonicAttached::onAltReleased); -} - -MnemonicAttached::~MnemonicAttached() -{ - s_sequenceToObject.remove(m_sequence); -} - -QWindow *MnemonicAttached::window() const -{ - if (auto *parentItem = qobject_cast(parent())) { - if (auto *window = parentItem->window()) { - if (auto *renderWindow = QQuickRenderControl::renderWindowFor(window)) { - return renderWindow; - } - - return window; - } - } - - return nullptr; -} - -void MnemonicAttached::onAltPressed() -{ - if (m_active || m_richTextLabel.isEmpty()) { - return; - } - - auto *win = window(); - if (!win || !win->isActive()) { - return; - } - - m_actualRichTextLabel = m_richTextLabel; - Q_EMIT richTextLabelChanged(); - m_active = true; - Q_EMIT activeChanged(); -} - -void MnemonicAttached::onAltReleased() -{ - if (!m_active || m_richTextLabel.isEmpty()) { - return; - } - - // Disabling menmonics again is always fine, e.g. on window deactivation, - // don't check for window is active here. - - m_actualRichTextLabel = removeAcceleratorMarker(m_label); - Q_EMIT richTextLabelChanged(); - m_active = false; - Q_EMIT activeChanged(); -} - -// Algorithm adapted from KAccelString -void MnemonicAttached::calculateWeights() -{ - m_weights.clear(); - - int pos = 0; - bool start_character = true; - bool wanted_character = false; - - while (pos < m_label.length()) { - QChar c = m_label[pos]; - - // skip non typeable characters - if (!c.isLetterOrNumber() && c != QLatin1Char('&')) { - start_character = true; - ++pos; - continue; - } - - int weight = 1; - - // add special weight to first character - if (pos == 0) { - weight += FIRST_CHARACTER_EXTRA_WEIGHT; - // add weight to word beginnings - } else if (start_character) { - weight += WORD_BEGINNING_EXTRA_WEIGHT; - start_character = false; - } - - // add weight to characters that have an & beforehand - if (wanted_character) { - weight += WANTED_ACCEL_EXTRA_WEIGHT; - wanted_character = false; - } - - // add decreasing weight to left characters - if (pos < 50) { - weight += (50 - pos); - } - - // try to preserve the wanted accelerators - /* clang-format off */ - if (c == QLatin1Char('&') - && (pos != m_label.length() - 1 - && m_label[pos + 1] != QLatin1Char('&') - && m_label[pos + 1].isLetterOrNumber())) { /* clang-format on */ - wanted_character = true; - ++pos; - continue; - } - - while (m_weights.contains(weight)) { - ++weight; - } - - if (c != QLatin1Char('&')) { - m_weights[weight] = c; - } - - ++pos; - } - - // update our maximum weight - if (m_weights.isEmpty()) { - m_weight = m_baseWeight; - } else { - m_weight = m_baseWeight + (std::prev(m_weights.cend())).key(); - } -} - -void MnemonicAttached::updateSequence() -{ - const QKeySequence oldSequence = m_sequence; - - if (!m_sequence.isEmpty()) { - s_sequenceToObject.remove(m_sequence); - m_sequence = {}; - } - - calculateWeights(); - - // Preserve strings like "One & Two" where & is not an accelerator escape - const QString text = label().replace(QStringLiteral("& "), QStringLiteral("&& ")); - m_actualRichTextLabel = removeAcceleratorMarker(text); - - if (!m_enabled) { - // was the label already completely plain text? try to limit signal emission - if (m_mnemonicLabel != m_actualRichTextLabel) { - m_mnemonicLabel = m_actualRichTextLabel; - Q_EMIT mnemonicLabelChanged(); - Q_EMIT richTextLabelChanged(); - } - - if (m_sequence != oldSequence) { - Q_EMIT sequenceChanged(); - } - return; - } - - m_mnemonicLabel = text; - m_mnemonicLabel.replace(QRegularExpression(QLatin1String("\\&([^\\&])")), QStringLiteral("\\1")); - - if (!m_weights.isEmpty()) { - QMap::const_iterator i = m_weights.constEnd(); - do { - --i; - QChar c = i.value(); - - QKeySequence ks(QStringLiteral("Alt+") % c); - MnemonicAttached *otherMa = s_sequenceToObject.value(ks); - Q_ASSERT(otherMa != this); - if (!otherMa || otherMa->m_weight < m_weight) { - // the old shortcut is less valuable than the current: remove it - if (otherMa) { - s_sequenceToObject.remove(otherMa->sequence()); - otherMa->m_sequence = {}; - } - - s_sequenceToObject[ks] = this; - m_sequence = ks; - m_richTextLabel = text; - m_richTextLabel.replace(QRegularExpression(QLatin1String("\\&([^\\&])")), QStringLiteral("\\1")); - m_mnemonicLabel = text; - const int mnemonicPos = m_mnemonicLabel.indexOf(c); - - if (mnemonicPos > -1 && (mnemonicPos == 0 || m_mnemonicLabel[mnemonicPos - 1] != QLatin1Char('&'))) { - m_mnemonicLabel.replace(mnemonicPos, 1, QStringLiteral("&") % c); - } - - const int richTextPos = m_richTextLabel.indexOf(c); - if (richTextPos > -1) { - m_richTextLabel.replace(richTextPos, 1, QLatin1String("") % c % QLatin1String("")); - } - - // remap the sequence of the previous shortcut - if (otherMa) { - otherMa->updateSequence(); - } - - break; - } - } while (i != m_weights.constBegin()); - } - - if (m_sequence != oldSequence) { - Q_EMIT sequenceChanged(); - } - - Q_EMIT richTextLabelChanged(); - Q_EMIT mnemonicLabelChanged(); -} - -void MnemonicAttached::setLabel(const QString &text) -{ - if (m_label == text) { - return; - } - - m_label = text; - updateSequence(); - Q_EMIT labelChanged(); -} - -QString MnemonicAttached::richTextLabel() const -{ - if (!m_actualRichTextLabel.isEmpty()) { - return m_actualRichTextLabel; - } else { - return removeAcceleratorMarker(m_label); - } -} - -QString MnemonicAttached::mnemonicLabel() const -{ - return m_mnemonicLabel; -} - -QString MnemonicAttached::label() const -{ - return m_label; -} - -void MnemonicAttached::setEnabled(bool enabled) -{ - if (m_enabled == enabled) { - return; - } - - m_enabled = enabled; - updateSequence(); - Q_EMIT enabledChanged(); -} - -bool MnemonicAttached::enabled() const -{ - return m_enabled; -} - -void MnemonicAttached::setControlType(MnemonicAttached::ControlType controlType) -{ - if (m_controlType == controlType) { - return; - } - - m_controlType = controlType; - - switch (controlType) { - case ActionElement: - m_baseWeight = ACTION_ELEMENT_WEIGHT; - break; - case DialogButton: - m_baseWeight = DIALOG_BUTTON_EXTRA_WEIGHT; - break; - case MenuItem: - m_baseWeight = MENU_ITEM_WEIGHT; - break; - case FormLabel: - m_baseWeight = FORM_LABEL_WEIGHT; - break; - default: - m_baseWeight = SECONDARY_CONTROL_WEIGHT; - break; - } - // update our maximum weight - if (m_weights.isEmpty()) { - m_weight = m_baseWeight; - } else { - m_weight = m_baseWeight + (std::prev(m_weights.constEnd())).key(); - } - Q_EMIT controlTypeChanged(); -} - -MnemonicAttached::ControlType MnemonicAttached::controlType() const -{ - return m_controlType; -} - -QKeySequence MnemonicAttached::sequence() -{ - return m_sequence; -} - -bool MnemonicAttached::active() const -{ - return m_active; -} - -MnemonicAttached *MnemonicAttached::qmlAttachedProperties(QObject *object) -{ - return new MnemonicAttached(object); -} - -void MnemonicAttached::setActive(bool active) -{ - // We can't rely on previous value when it's true since it can be - // caused by Alt key press and we need to remove the event filter - // additionally. False should be ok as it's a default state. - if (!m_active && m_active == active) { - return; - } - - m_active = active; - - if (m_active) { - if (m_actualRichTextLabel != m_richTextLabel) { - m_actualRichTextLabel = m_richTextLabel; - Q_EMIT richTextLabelChanged(); - } - - } else { - m_actualRichTextLabel = removeAcceleratorMarker(m_label); - Q_EMIT richTextLabelChanged(); - } - - Q_EMIT activeChanged(); -} - -#include "mnemonicattached.moc" diff --git a/local/recipes/kde/kirigami/source/src/mnemonicattached.h b/local/recipes/kde/kirigami/source/src/mnemonicattached.h deleted file mode 100644 index baa0401365..0000000000 --- a/local/recipes/kde/kirigami/source/src/mnemonicattached.h +++ /dev/null @@ -1,175 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2017 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#ifndef MNEMONICATTACHED_H -#define MNEMONICATTACHED_H - -#include -#include - -#include - -/** - * This Attached property is used to calculate automated keyboard sequences - * to trigger actions based upon their text: if an "&" mnemonic is - * used (ie "&Ok"), the system will attempt to assign the desired letter giving - * it priority, otherwise a letter among the ones in the label will be used if - * possible and not conflicting. - * Different kinds of controls will have different priorities in assigning the - * shortcut: for instance the "Ok/Cancel" buttons in a dialog will have priority - * over fields of a FormLayout. - * @see ControlType - * - * Usually the developer shouldn't use this directly as base components - * already use this, but only when implementing a custom graphical Control. - * @since 2.3 - */ -class MnemonicAttached : public QObject -{ - Q_OBJECT - QML_NAMED_ELEMENT(MnemonicData) - QML_ATTACHED(MnemonicAttached) - QML_UNCREATABLE("Cannot create objects of type MnemonicData, use it as an attached property") - /** - * The label of the control we want to compute a mnemonic for, instance - * "Label:" or "&Ok" - */ - Q_PROPERTY(QString label READ label WRITE setLabel NOTIFY labelChanged FINAL) - - /** - * The user-visible final label, which will have the shortcut letter underlined, - * such as "<u>O</u>k" - */ - Q_PROPERTY(QString richTextLabel READ richTextLabel NOTIFY richTextLabelChanged FINAL) - - /** - * The label with an "&" mnemonic in the place which will have the shortcut - * assigned, regardless of whether the & was assigned by the user or automatically generated. - */ - Q_PROPERTY(QString mnemonicLabel READ mnemonicLabel NOTIFY mnemonicLabelChanged FINAL) - - /** - * Only if true this mnemonic will be considered for the global assignment - * default: true - */ - Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged FINAL) - - /** - * The type of control this mnemonic is attached: different types of controls have different importance and priority for shortcut assignment. - * @see ControlType - */ - Q_PROPERTY(MnemonicAttached::ControlType controlType READ controlType WRITE setControlType NOTIFY controlTypeChanged FINAL) - - /** - * The final key sequence assigned, if any: it will be Alt+alphanumeric char - */ - Q_PROPERTY(QKeySequence sequence READ sequence NOTIFY sequenceChanged FINAL) - - /** - * True when the user is pressing alt and the accelerators should be shown - * - * @since 5.72 - * @since 2.15 - */ - Q_PROPERTY(bool active READ active WRITE setActive NOTIFY activeChanged FINAL) - -public: - enum ControlType { - ActionElement, /**< pushbuttons, checkboxes etc */ - DialogButton, /**< buttons for dialogs */ - MenuItem, /**< Menu items */ - FormLabel, /**< Buddy label in a FormLayout*/ - SecondaryControl, /**< Other controls that are considered not much important and low priority for shortcuts */ - }; - Q_ENUM(ControlType) - - explicit MnemonicAttached(QObject *parent = nullptr); - ~MnemonicAttached() override; - - void setLabel(const QString &text); - QString label() const; - - QString richTextLabel() const; - QString mnemonicLabel() const; - - void setEnabled(bool enabled); - bool enabled() const; - - void setControlType(MnemonicAttached::ControlType controlType); - ControlType controlType() const; - - QKeySequence sequence(); - - void setActive(bool active); - bool active() const; - - // QML attached property - static MnemonicAttached *qmlAttachedProperties(QObject *object); - -protected: - void updateSequence(); - -Q_SIGNALS: - void labelChanged(); - void enabledChanged(); - void sequenceChanged(); - void richTextLabelChanged(); - void mnemonicLabelChanged(); - void controlTypeChanged(); - void activeChanged(); - -private: - QWindow *window() const; - - void onAltPressed(); - void onAltReleased(); - - void calculateWeights(); - - // TODO: to have support for DIALOG_BUTTON_EXTRA_WEIGHT etc, a type enum should be exported - enum { - // Additional weight for first character in string - FIRST_CHARACTER_EXTRA_WEIGHT = 50, - // Additional weight for the beginning of a word - WORD_BEGINNING_EXTRA_WEIGHT = 50, - // Additional weight for a 'wanted' accelerator ie string with '&' - WANTED_ACCEL_EXTRA_WEIGHT = 150, - // Default weight for an 'action' widget (ie, pushbuttons) - ACTION_ELEMENT_WEIGHT = 50, - // Additional weight for the dialog buttons (large, we basically never want these reassigned) - DIALOG_BUTTON_EXTRA_WEIGHT = 300, - // Weight for FormLayout labels (low) - FORM_LABEL_WEIGHT = 20, - // Weight for Secondary controls which are considered less important (low) - SECONDARY_CONTROL_WEIGHT = 10, - // Default weight for menu items - MENU_ITEM_WEIGHT = 250, - }; - - // order word letters by weight - int m_weight = 0; - int m_baseWeight = 0; - ControlType m_controlType = SecondaryControl; - QMap m_weights; - - QString m_label; - QString m_actualRichTextLabel; - QString m_richTextLabel; - QString m_mnemonicLabel; - QKeySequence m_sequence; - bool m_enabled = true; - bool m_active = false; - - QPointer m_window; - - // global mapping of mnemonics - // TODO: map by QWindow - static QHash s_sequenceToObject; -}; - -QML_DECLARE_TYPEINFO(MnemonicAttached, QML_HAS_ATTACHED_PROPERTIES) - -#endif // MnemonicATTACHED_H diff --git a/local/recipes/kde/kirigami/source/src/overlayzstackingattached.h b/local/recipes/kde/kirigami/source/src/overlayzstackingattached.h index 12ae340d0c..12b8f2f529 100644 --- a/local/recipes/kde/kirigami/source/src/overlayzstackingattached.h +++ b/local/recipes/kde/kirigami/source/src/overlayzstackingattached.h @@ -14,17 +14,21 @@ class QQuickItem; -/** - * This attached property manages z-index for stacking overlays relative to each other. +/*! + * \qmltype OverlayZStacking + * \inqmlmodule org.kde.kirigami + * + * \brief An attached property that manages z-index for stacking overlays relative to each other. * * When a popup is about to show, OverlayZStacking object kicks in, searches for the * next nearest popup in the QtQuick hierarchy of items, and sets its z value to the * biggest of two: current stacking value for its layer, or parent's z index + 1. + * * This way OverlayZStacking algorithm ensures that a popup is always stacked higher * than its logical parent popup, but also no lower than its siblings on the same * logical layer. * - * @code + * \code * import QtQuick.Controls as QQC2 * import org.kde.kirigami as Kirigami * @@ -32,9 +36,9 @@ class QQuickItem; * Kirigami.OverlayZStacking.layer: Kirigami.OverlayZStacking.ToolTip * z: Kirigami.OverlayZStacking.z * } - * @endcode + * \endcode * - * @since 6.0 + * \since 6.0 */ class OverlayZStackingAttached : public QObject { @@ -43,17 +47,32 @@ class OverlayZStackingAttached : public QObject QML_NAMED_ELEMENT(OverlayZStacking) QML_UNCREATABLE("Cannot create objects of type OverlayZStacking, use it as an attached property") QML_ATTACHED(OverlayZStackingAttached) - /** + /*! + * \qmlattachedproperty real OverlayZStacking::z + * * An optimal z-index that attachee popup should bind to. */ Q_PROPERTY(qreal z READ z NOTIFY zChanged FINAL) - /** + /*! + * \qmlattachedproperty enumeration OverlayZStacking::layer + * + * \qmlenumeratorsfrom OverlayZStackingAttached::Layer + * * The logical stacking layer of attachee popup, akin to window manager's layers. */ Q_PROPERTY(Layer layer READ layer WRITE setLayer NOTIFY layerChanged FINAL) public: + /*! + * \value DefaultLowest + * \value Drawer + * \value FullScreen + * \value Dialog + * \value Menu + * \value Notification + * \value ToolTip + */ enum Layer { DefaultLowest = 0, Drawer, diff --git a/local/recipes/kde/kirigami/source/src/pagepool.cpp b/local/recipes/kde/kirigami/source/src/pagepool.cpp deleted file mode 100644 index 2b119a6e9f..0000000000 --- a/local/recipes/kde/kirigami/source/src/pagepool.cpp +++ /dev/null @@ -1,299 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2019 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "pagepool.h" - -#include -#include -#include -#include -#include - -#include "loggingcategory.h" - -PagePool::PagePool(QObject *parent) - : QObject(parent) -{ -} - -PagePool::~PagePool() -{ -} - -QUrl PagePool::lastLoadedUrl() const -{ - return m_lastLoadedUrl; -} - -QQuickItem *PagePool::lastLoadedItem() const -{ - return m_lastLoadedItem; -} - -QList PagePool::items() const -{ - return m_itemForUrl.values(); -} - -QList PagePool::urls() const -{ - return m_urlForItem.values(); -} - -void PagePool::setCachePages(bool cache) -{ - if (cache == m_cachePages) { - return; - } - - if (cache) { - clear(); - } - - m_cachePages = cache; - Q_EMIT cachePagesChanged(); -} - -bool PagePool::cachePages() const -{ - return m_cachePages; -} - -QQuickItem *PagePool::loadPage(const QString &url, QJSValue callback) -{ - return loadPageWithProperties(url, QVariantMap(), callback); -} - -QQuickItem *PagePool::loadPageWithProperties(const QString &url, const QVariantMap &properties, QJSValue callback) -{ - const auto engine = qmlEngine(this); - Q_ASSERT(engine); - - const QUrl actualUrl = resolvedUrl(url); - - auto found = m_itemForUrl.find(actualUrl); - if (found != m_itemForUrl.end()) { - m_lastLoadedUrl = found.key(); - m_lastLoadedItem = found.value(); - - if (callback.isCallable()) { - QJSValueList args = {engine->newQObject(found.value())}; - callback.call(args); - Q_EMIT lastLoadedUrlChanged(); - Q_EMIT lastLoadedItemChanged(); - // We could return the item, but for api coherence return null - return nullptr; - - } else { - Q_EMIT lastLoadedUrlChanged(); - Q_EMIT lastLoadedItemChanged(); - return found.value(); - } - } - - QQmlComponent *component = m_componentForUrl.value(actualUrl); - - if (!component) { - component = new QQmlComponent(engine, actualUrl, QQmlComponent::PreferSynchronous); - } - - if (component->status() == QQmlComponent::Loading) { - if (!callback.isCallable()) { - component->deleteLater(); - m_componentForUrl.remove(actualUrl); - return nullptr; - } - - connect(component, &QQmlComponent::statusChanged, this, [this, engine, component, callback, properties](QQmlComponent::Status status) mutable { - if (status != QQmlComponent::Ready) { - qCWarning(KirigamiLog) << component->errors(); - m_componentForUrl.remove(component->url()); - component->deleteLater(); - return; - } - QQuickItem *item = createFromComponent(component, properties); - if (item) { - QJSValueList args = {engine->newQObject(item)}; - callback.call(args); - } - - if (m_cachePages) { - component->deleteLater(); - } else { - m_componentForUrl[component->url()] = component; - } - }); - - return nullptr; - - } else if (component->status() != QQmlComponent::Ready) { - qCWarning(KirigamiLog) << component->errors(); - return nullptr; - } - - QQuickItem *item = createFromComponent(component, properties); - if (!item) { - return nullptr; - } - - if (m_cachePages) { - component->deleteLater(); - QQmlEngine::setObjectOwnership(item, QQmlEngine::CppOwnership); - m_itemForUrl[component->url()] = item; - m_urlForItem[item] = component->url(); - Q_EMIT itemsChanged(); - Q_EMIT urlsChanged(); - - } else { - m_componentForUrl[component->url()] = component; - QQmlEngine::setObjectOwnership(item, QQmlEngine::JavaScriptOwnership); - } - - m_lastLoadedUrl = actualUrl; - m_lastLoadedItem = item; - Q_EMIT lastLoadedUrlChanged(); - Q_EMIT lastLoadedItemChanged(); - - if (callback.isCallable()) { - QJSValueList args = {engine->newQObject(item)}; - callback.call(args); - // We could return the item, but for api coherence return null - return nullptr; - } - return item; -} - -QQuickItem *PagePool::createFromComponent(QQmlComponent *component, const QVariantMap &properties) -{ - const auto ctx = qmlContext(this); - Q_ASSERT(ctx); - - QObject *obj = component->createWithInitialProperties(properties, ctx); - - if (!obj || component->isError()) { - qCWarning(KirigamiLog) << component->errors(); - if (obj) { - obj->deleteLater(); - } - return nullptr; - } - - QQuickItem *item = qobject_cast(obj); - if (!item) { - qCWarning(KirigamiLog) << "Storing Non-QQuickItem in PagePool not supported"; - obj->deleteLater(); - return nullptr; - } - - return item; -} - -QUrl PagePool::resolvedUrl(const QString &stringUrl) const -{ - const auto ctx = qmlContext(this); - Q_ASSERT(ctx); - - QUrl actualUrl(stringUrl); - if (actualUrl.scheme().isEmpty()) { - actualUrl = ctx->resolvedUrl(actualUrl); - } - return actualUrl; -} - -bool PagePool::isLocalUrl(const QUrl &url) -{ - return url.isLocalFile() || url.scheme().isEmpty() || url.scheme() == QStringLiteral("qrc"); -} - -QUrl PagePool::urlForPage(QQuickItem *item) const -{ - return m_urlForItem.value(item); -} - -QQuickItem *PagePool::pageForUrl(const QUrl &url) const -{ - return m_itemForUrl.value(resolvedUrl(url.toString()), nullptr); -} - -bool PagePool::contains(const QVariant &page) const -{ - if (page.canConvert()) { - return m_urlForItem.contains(page.value()); - - } else if (page.canConvert()) { - const QUrl actualUrl = resolvedUrl(page.value()); - return m_itemForUrl.contains(actualUrl); - - } else { - return false; - } -} - -void PagePool::deletePage(const QVariant &page) -{ - if (!contains(page)) { - return; - } - - QQuickItem *item; - if (page.canConvert()) { - item = page.value(); - } else if (page.canConvert()) { - QString url = page.value(); - if (url.isEmpty()) { - return; - } - const QUrl actualUrl = resolvedUrl(page.value()); - - item = m_itemForUrl.value(actualUrl); - } else { - return; - } - - if (!item) { - return; - } - - const QUrl url = m_urlForItem.value(item); - - if (url.isEmpty()) { - return; - } - - m_itemForUrl.remove(url); - m_urlForItem.remove(item); - item->deleteLater(); - - Q_EMIT itemsChanged(); - Q_EMIT urlsChanged(); -} - -void PagePool::clear() -{ - for (const auto &component : std::as_const(m_componentForUrl)) { - component->deleteLater(); - } - m_componentForUrl.clear(); - - for (const auto &item : std::as_const(m_itemForUrl)) { - // items that had been deparented are safe to delete - if (!item->parentItem()) { - item->deleteLater(); - } - QQmlEngine::setObjectOwnership(item, QQmlEngine::JavaScriptOwnership); - } - m_itemForUrl.clear(); - m_urlForItem.clear(); - m_lastLoadedUrl = QUrl(); - m_lastLoadedItem = nullptr; - - Q_EMIT lastLoadedUrlChanged(); - Q_EMIT lastLoadedItemChanged(); - Q_EMIT itemsChanged(); - Q_EMIT urlsChanged(); -} - -#include "moc_pagepool.cpp" diff --git a/local/recipes/kde/kirigami/source/src/pagepool.h b/local/recipes/kde/kirigami/source/src/pagepool.h deleted file mode 100644 index 19364f1eef..0000000000 --- a/local/recipes/kde/kirigami/source/src/pagepool.h +++ /dev/null @@ -1,147 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2019 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ -#pragma once - -#include -#include -#include - -/** - * A Pool of Page items, pages will be unique per url and the items - * will be kept around unless explicitly deleted. - * Instances are C++ owned and can be deleted only manually using deletePage() - * Instance are unique per url: if you need 2 different instance for a page - * url, you should instantiate them in the traditional way - * or use a different PagePool instance. - * - * @see org::kde::kirigami::PagePoolAction - */ -class PagePool : public QObject -{ - Q_OBJECT - QML_ELEMENT - /** - * The last url that was loaded with @loadPage. Useful if you need - * to have a "checked" state to buttons or list items that - * load the page when clicked. - */ - Q_PROPERTY(QUrl lastLoadedUrl READ lastLoadedUrl NOTIFY lastLoadedUrlChanged FINAL) - - /** - * The last item that was loaded with @loadPage. - */ - Q_PROPERTY(QQuickItem *lastLoadedItem READ lastLoadedItem NOTIFY lastLoadedItemChanged FINAL) - - /** - * All items loaded/managed by the PagePool. - * @since 5.84 - */ - Q_PROPERTY(QList items READ items NOTIFY itemsChanged FINAL) - - /** - * All page URLs loaded/managed by the PagePool. - * @since 5.84 - */ - Q_PROPERTY(QList urls READ urls NOTIFY urlsChanged FINAL) - - /** - * If true (default) the pages will be kept around, will have C++ ownership and - * only one instance per page will be created. - * If false the pages will have Javascript ownership (thus deleted on pop by the - * page stacks) and each call to loadPage will create a new page instance. When - * cachePages is false, Components get cached nevertheless. - */ - Q_PROPERTY(bool cachePages READ cachePages WRITE setCachePages NOTIFY cachePagesChanged FINAL) - -public: - PagePool(QObject *parent = nullptr); - ~PagePool() override; - - QUrl lastLoadedUrl() const; - QQuickItem *lastLoadedItem() const; - QList items() const; - QList urls() const; - - void setCachePages(bool cache); - bool cachePages() const; - - /** - * Returns the instance of the item defined in the QML file identified - * by url, only one instance will be made per url if cachePAges is true. - * If the url is remote (i.e. http) don't rely on the return value but - * us the async callback instead. - * - * @param url full url of the item: it can be a well formed Url, an - * absolute path or a relative one to the path of the qml file the - * PagePool is instantiated from - * @param callback If we are loading a remote url, we can't have the - * item immediately but will be passed as a parameter to the provided - * callback. Normally, don't set a callback, use it only in case of - * remote urls - * @returns the page instance that will have been created if necessary. - * If the url is remote it will return null, as well will return null - * if the callback has been provided - */ - Q_INVOKABLE QQuickItem *loadPage(const QString &url, QJSValue callback = QJSValue()); - - Q_INVOKABLE QQuickItem *loadPageWithProperties(const QString &url, const QVariantMap &properties, QJSValue callback = QJSValue()); - - /** - * @returns The url of the page for the given instance, empty if there is no correspondence - */ - Q_INVOKABLE QUrl urlForPage(QQuickItem *item) const; - - /** - * @returns The page associated with a given URL, nullptr if there is no correspondence - */ - Q_INVOKABLE QQuickItem *pageForUrl(const QUrl &url) const; - - /** - * @returns true if the is managed by the PagePool - * @param the page can be either a QQuickItem or an url - */ - Q_INVOKABLE bool contains(const QVariant &page) const; - - /** - * Deletes the page (only if is managed by the pool. - * @param page either the url or the instance of the page - */ - Q_INVOKABLE void deletePage(const QVariant &page); - - /** - * @returns full url from an absolute or relative path - */ - Q_INVOKABLE QUrl resolvedUrl(const QString &file) const; - - /** - * @returns true if the url identifies a local resource (local file or a file inside Qt's resource system). - * False if the url points to a network location - */ - Q_INVOKABLE bool isLocalUrl(const QUrl &url); - - /** - * Deletes all pages managed by the pool. - */ - Q_INVOKABLE void clear(); - -Q_SIGNALS: - void lastLoadedUrlChanged(); - void lastLoadedItemChanged(); - void itemsChanged(); - void urlsChanged(); - void cachePagesChanged(); - -private: - QQuickItem *createFromComponent(QQmlComponent *component, const QVariantMap &properties); - - QUrl m_lastLoadedUrl; - QPointer m_lastLoadedItem; - QHash m_itemForUrl; - QHash m_componentForUrl; - QHash m_urlForItem; - - bool m_cachePages = true; -}; diff --git a/local/recipes/kde/kirigami/source/src/platform/CMakeLists.txt b/local/recipes/kde/kirigami/source/src/platform/CMakeLists.txt index 390d0dceb9..13d9290051 100644 --- a/local/recipes/kde/kirigami/source/src/platform/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/src/platform/CMakeLists.txt @@ -1,6 +1,13 @@ add_library(KirigamiPlatform) add_library(KF6::KirigamiPlatform ALIAS KirigamiPlatform) +qt_extract_metatypes(KirigamiPlatform OUTPUT_FILES METATYPES_FILE) + +# see https://qt-project.atlassian.net/browse/QTBUG-123052 +# might be replaced with proper Qt API once that exists +get_filename_component(METATYPES_FILE_NAME ${METATYPES_FILE} NAME) +target_sources(KirigamiPlatform INTERFACE $) + ecm_add_qml_module(KirigamiPlatform URI "org.kde.kirigami.platform" VERSION 2.0 @@ -38,6 +45,8 @@ target_sources(KirigamiPlatform PRIVATE virtualkeyboardwatcher.h colorutils.cpp colorutils.h + stylehints.cpp + stylehints.h ) set(libkirigami_extra_sources "") @@ -55,7 +64,6 @@ ecm_qt_declare_logging_category(KirigamiPlatform IDENTIFIER KirigamiPlatform CATEGORY_NAME kf.kirigami.platform DESCRIPTION "Kirigami Platform" - DEFAULT_SEVERITY Warning EXPORT KIRIGAMI ) @@ -70,12 +78,11 @@ ecm_generate_export_header(KirigamiPlatform VERSION ${PROJECT_VERSION} BASE_NAME KirigamiPlatform USE_VERSION_HEADER - DEPRECATION_VERSIONS + DEPRECATION_VERSIONS 6.24 ) target_include_directories(KirigamiPlatform PUBLIC - "$" "$" "$" ) @@ -99,6 +106,7 @@ ecm_generate_headers(KirigamiPlatform_CamelCase_HEADERS TabletModeWatcher Units VirtualKeyboardWatcher + StyleHints REQUIRED_HEADERS KirigamiPlatform_HEADERS ) @@ -137,36 +145,8 @@ install(FILES COMPONENT Devel ) -ecm_qt_install_logging_categories( - EXPORT KIRIGAMI - FILE kirigami.categories - DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR} -) +install(FILES ${METATYPES_FILE} DESTINATION ${KDE_INSTALL_QTMETATYPESDIR}) ecm_finalize_qml_module(KirigamiPlatform EXPORT KF6KirigamiPlatformTargets) -if(BUILD_QCH) - ecm_add_qch( - KF6Kirigami_QCH - NAME KirigamiPlatform - BASE_NAME KF6KirigamiPlatform - VERSION ${KF_VERSION} - ORG_DOMAIN org.kde - SOURCES # using only public headers, to cover only public API - platformpluginfactory.h - platformtheme.h - tabletmodewatcher.h - units.h - virtualkeyboardwatcher.h - MD_MAINPAGE "${CMAKE_CURRENT_SOURCE_DIR}/README.md" - LINK_QCHS - Qt6Core_QCH - BLANK_MACROS - KIRIGAMIPLATFORM_EXPORT - KIRIGAMIPLATFORM_DEPRECATED - TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} - COMPONENT Devel - ) -endif() - +ecm_generate_qdoc(KirigamiPlatform kirigamiplatform.qdocconf) diff --git a/local/recipes/kde/kirigami/source/src/platform/KF6KirigamiPlatformConfig.cmake.in b/local/recipes/kde/kirigami/source/src/platform/KF6KirigamiPlatformConfig.cmake.in index 9d78e00b61..000dba7a62 100644 --- a/local/recipes/kde/kirigami/source/src/platform/KF6KirigamiPlatformConfig.cmake.in +++ b/local/recipes/kde/kirigami/source/src/platform/KF6KirigamiPlatformConfig.cmake.in @@ -10,5 +10,3 @@ find_dependency(Qt6Quick @REQUIRED_QT_VERSION@) include("${CMAKE_CURRENT_LIST_DIR}/KF6KirigamiPlatformTargets.cmake") set(KirigamiPlatform_INSTALL_PREFIX "@PACKAGE_CMAKE_INSTALL_PREFIX@") - -@PACKAGE_INCLUDE_QCHTARGETS@ diff --git a/local/recipes/kde/kirigami/source/src/platform/basictheme.cpp b/local/recipes/kde/kirigami/source/src/platform/basictheme.cpp index ddbe45a314..0a907c10b1 100644 --- a/local/recipes/kde/kirigami/source/src/platform/basictheme.cpp +++ b/local/recipes/kde/kirigami/source/src/platform/basictheme.cpp @@ -9,6 +9,7 @@ #include "styleselector.h" #include +#include #include #include "kirigamiplatform_logging.h" @@ -23,8 +24,7 @@ BasicThemeDefinition::BasicThemeDefinition(QObject *parent) { defaultFont = qGuiApp->font(); - smallFont = qGuiApp->font(); - smallFont.setPointSize(smallFont.pointSize() - 2); + smallFont = QFontDatabase::systemFont(QFontDatabase::SmallestReadableFont); } void BasicThemeDefinition::syncToQml(PlatformTheme *object) @@ -46,20 +46,31 @@ BasicThemeDefinition &BasicThemeInstance::themeDefinition(QQmlEngine *engine) return *m_themeDefinition; } - auto themeUrl = StyleSelector::componentUrl(QStringLiteral("Theme.qml")); - QQmlComponent component(engine); - component.loadUrl(themeUrl); - - if (auto themeDefinition = qobject_cast(component.create())) { - m_themeDefinition.reset(themeDefinition); - } else { - const auto errors = component.errors(); - for (auto error : errors) { - qCWarning(KirigamiPlatform) << error.toString(); - } - - qCWarning(KirigamiPlatform) << "Invalid Theme file, using default Basic theme."; + if (!engine) { + qCWarning(KirigamiPlatform) << "No QML engine found, using default Basic theme."; m_themeDefinition = std::make_unique(); + } else { + auto themeUrl = StyleSelector::componentUrlForModule(QStringLiteral("controls"), QStringLiteral("Theme.qml")); + + if (themeUrl.isValid()) { + QQmlComponent component(engine); + component.loadUrl(themeUrl); + + if (auto themeDefinition = qobject_cast(component.create())) { + m_themeDefinition.reset(themeDefinition); + } else { + const auto errors = component.errors(); + for (auto error : errors) { + qCWarning(KirigamiPlatform) << error.toString(); + } + + qCWarning(KirigamiPlatform) << "Invalid Theme file, using default Basic theme."; + m_themeDefinition = std::make_unique(); + } + } else { + qCDebug(KirigamiPlatform) << "No Theme.qml found, using default Basic theme"; + m_themeDefinition = std::make_unique(); + } } connect(m_themeDefinition.get(), &BasicThemeDefinition::changed, this, &BasicThemeInstance::onDefinitionChanged); diff --git a/local/recipes/kde/kirigami/source/src/platform/colorutils.h b/local/recipes/kde/kirigami/source/src/platform/colorutils.h index 26a471b5a9..76caaa1774 100644 --- a/local/recipes/kde/kirigami/source/src/platform/colorutils.h +++ b/local/recipes/kde/kirigami/source/src/platform/colorutils.h @@ -13,8 +13,11 @@ #include "kirigamiplatform_export.h" -/** - * Utilities for processing items to obtain colors and information useful for +/*! + * \qmlsingletontype ColorUtils + * \inqmlmodule org.kde.kirigami.platform + * + * \brief Utilities for processing items to obtain colors and information useful for * UIs that need to adjust to variable elements. */ class KIRIGAMIPLATFORM_EXPORT ColorUtils : public QObject @@ -23,21 +26,29 @@ class KIRIGAMIPLATFORM_EXPORT ColorUtils : public QObject QML_ELEMENT QML_SINGLETON public: - /** + /*! + * \enum ColorUtils::Brightness + * * Describes the contrast of an item. + * + * \value Dark The item is dark and requires a light foreground color to achieve readable contrast + * \value Light The item is light and requires a dark foreground color to achieve readable contrast + * */ enum Brightness { - Dark, /**< The item is dark and requires a light foreground color to achieve readable contrast. */ - Light, /**< The item is light and requires a dark foreground color to achieve readable contrast. */ + Dark, + Light, }; Q_ENUM(Brightness) explicit ColorUtils(QObject *parent = nullptr); - /** + /*! + * \qmlmethod enumeration ColorUtils::brightnessForColor(color color) + * * Returns whether a color is bright or dark. * - * @code{.qml} + * \qml * import QtQuick * import org.kde.kirigami as Kirigami * @@ -50,78 +61,82 @@ public: * } * } * } - * @endcode + * \endqml * - * @since 5.69 - * @since org.kde.kirigami 2.12 + * \since 5.69 */ Q_INVOKABLE ColorUtils::Brightness brightnessForColor(const QColor &color); - /** + /*! + * \qmlmethod real ColorUtils::grayForColor(color color) + * * Same Algorithm as brightnessForColor but returns a 0 to 1 value for an * estimate of the equivalent gray light value (luma). * 0 as full black, 1 as full white and 0.5 equivalent to a 50% gray. * - * @since 5.81 - * @since org.kde.kirigami 2.16 + * \since 5.81 */ Q_INVOKABLE qreal grayForColor(const QColor &color); - /** + /*! + * \qmlmethod color ColorUtils::alphaBlend(color foreground, color background) + * * Returns the result of overlaying the foreground color on the background * color. * - * @param foreground The color to overlay on the background. + * \a foreground The color to overlay on the background. * - * @param background The color to overlay the foreground on. + * \a background The color to overlay the foreground on. * - * @code{.qml} + * \qml * import QtQuick * import org.kde.kirigami as Kirigami * * Rectangle { * color: Kirigami.ColorUtils.alphaBlend(Qt.rgba(0, 0, 0, 0.5), Qt.rgba(1, 1, 1, 1)) * } - * @endcode + * \endqml * - * @since 5.69 - * @since org.kde.kirigami 2.12 + * \since 5.69 */ Q_INVOKABLE QColor alphaBlend(const QColor &foreground, const QColor &background); - /** + /*! + * \qmlmethod color ColorUtils::linearInterpolation(color one, color two, real balance) + * * Returns a linearly interpolated color between color one and color two. * - * @param one The color to linearly interpolate from. + * \a one The color to linearly interpolate from. * - * @param two The color to linearly interpolate to. + * \a two The color to linearly interpolate to. * - * @param balance The balance between the two colors. 0.0 will return the + * \a balance The balance between the two colors. 0.0 will return the * first color, 1.0 will return the second color. Values beyond these bounds * are valid, and will result in extrapolation. * - * @code{.qml} + * \qml * import QtQuick * import org.kde.kirigami as Kirigami * * Rectangle { * color: Kirigami.ColorUtils.linearInterpolation("black", "white", 0.5) * } - * @endcode + * \endqml * - * @since 5.69 - * @since org.kde.kirigami 2.12 + * \since 5.69 */ Q_INVOKABLE QColor linearInterpolation(const QColor &one, const QColor &two, double balance); - /** - * Increases or decreases the properties of `color` by fixed amounts. + /*! + * \qmlmethod color ColorUtils::adjustColor(color color, var adjustments) * - * @param color The color to adjust. + * Increases or decreases the properties of color by fixed amounts. * - * @param adjustments The adjustments to apply to the color. + * \a color The color to adjust. * - * @code{.js} + * \a adjustments The adjustments to apply to the color. + * + * \qml * { * red: null, // Range: -255 to 255 * green: null, // Range: -255 to 255 @@ -131,26 +146,27 @@ public: * value: null // Range: -255 to 255 * alpha: null, // Range: -255 to 255 * } - * @endcode + * \endqml * - * @warning It is an error to adjust both RGB and HSV properties. + * \warning It is an error to adjust both RGB and HSV properties. * - * @since 5.69 - * @since org.kde.kirigami 2.12 + * \since 5.69 */ Q_INVOKABLE QColor adjustColor(const QColor &color, const QJSValue &adjustments); - /** + /*! + * \qmlmethod color ColorUtils::scaleColor(color color, var adjustments) + * * Smoothly scales colors. * - * @param color The color to adjust. + * \a color The color to adjust. * - * @param adjustments The adjustments to apply to the color. Each value must + * \a adjustments The adjustments to apply to the color. Each value must * be between `-100.0` and `100.0`. This indicates how far the property should * be scaled from its original to the maximum if positive or to the minimum if * negative. * - * @code{.js} + * \qml * { * red: null * green: null @@ -159,16 +175,17 @@ public: * value: null * alpha: null * } - * @endcode + * \endqml * - * @warning It is an error to scale both RGB and HSV properties. + * \warning It is an error to scale both RGB and HSV properties. * - * @since 5.69 - * @since org.kde.kirigami 2.12 + * \since 5.69 */ Q_INVOKABLE QColor scaleColor(const QColor &color, const QJSValue &adjustments); - /** + /*! + * \qmlmethod color ColorUtils::tintWithAlpha(color targetColor, color tintColor, real alpha) + * * Tint a color using a separate alpha value. * * This does the same as Qt.tint() except that rather than using the tint @@ -176,23 +193,25 @@ public: * the tint color's alpha. This avoids needing to create a new color just to * adjust an alpha value. * - * \param targetColor The color to tint. - * \param tintColor The color to tint with. - * \param alpha The amount of tinting to apply. + * \a targetColor The color to tint. * - * \return The tinted color. + * \a tintColor The color to tint with. + * + * \a alpha The amount of tinting to apply. * * \sa Qt.tint() */ Q_INVOKABLE QColor tintWithAlpha(const QColor &targetColor, const QColor &tintColor, double alpha); - /** + /*! + * \qmlmethod real ColorUtils::chroma(color color) + * * Returns the CIELAB chroma of the given color. * * CIELAB chroma may give a better quantification of how vibrant a color is compared to HSV saturation. * - * \sa https://en.wikipedia.org/wiki/Colorfulness - * \sa https://en.wikipedia.org/wiki/CIELAB_color_space + * \sa {https://en.wikipedia.org/wiki/Colorfulness} {Colorfulness (Wikipedia)} + * \sa {https://en.wikipedia.org/wiki/CIELAB_color_space} {CIELAB Color Space (Wikipedia)} */ Q_INVOKABLE static qreal chroma(const QColor &color); diff --git a/local/recipes/kde/kirigami/source/src/platform/inputmethod.h b/local/recipes/kde/kirigami/source/src/platform/inputmethod.h index 981d1960c8..789007f364 100644 --- a/local/recipes/kde/kirigami/source/src/platform/inputmethod.h +++ b/local/recipes/kde/kirigami/source/src/platform/inputmethod.h @@ -19,8 +19,11 @@ namespace Kirigami namespace Platform { -/** - * This exposes information about the current used input method. +/*! + * \qmlsingletontype InputMethod + * \inqmlmodule org.kde.kirigami.platform + * + * \brief This exposes information about the current used input method. */ class KIRIGAMIPLATFORM_EXPORT InputMethod : public QObject { @@ -32,7 +35,11 @@ public: InputMethod(QObject *parent = nullptr); ~InputMethod() override; - /** + /*! + * \qmlproperty bool InputMethod::available + * + * \readonly + * * Is an input method available? * * This will be true if there is an input method available. When it is @@ -43,7 +50,11 @@ public: bool available() const; Q_SIGNAL void availableChanged(); - /** + /*! + * \qmlproperty bool InputMethod::enabled + * + * \readonly + * * Is the current input method enabled? * * If this is false, that means the input method is available but not in use. @@ -52,7 +63,11 @@ public: bool enabled() const; Q_SIGNAL void enabledChanged(); - /** + /*! + * \qmlproperty bool InputMethod::active + * + * \readonly + * * Is the current input method active? * * What active means depends on the type of input method. In case of a @@ -63,17 +78,25 @@ public: bool active() const; Q_SIGNAL void activeChanged(); - /** + /*! + * \qmlproperty bool InputMethod::visible + * + * \readonly + * * Is the current input method visible? * - * For some input methods this will match \ref active however for others this + * For some input methods this will match active however for others this * may differ. */ Q_PROPERTY(bool visible READ visible NOTIFY visibleChanged FINAL) bool visible() const; Q_SIGNAL void visibleChanged(); - /** + /*! + * \qmlproperty bool InputMethod::willShowOnActive + * + * \readonly + * * Will the input method be shown when a text input field gains focus? * * This is intended to be used to decide whether to give an input field diff --git a/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.cpp b/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.cpp index f4179d1741..2de9c02cf8 100644 --- a/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.cpp +++ b/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.cpp @@ -94,7 +94,7 @@ PlatformPluginFactory *PlatformPluginFactory::findPlugin(const QString &preferre PlatformPluginFactory *factory = factories.value(pluginName); if (factory == nullptr) { - qWarning(KirigamiPlatform) << "Failed to find a Kirigami platform plugin for style" << QQuickStyle::name(); + qCDebug(KirigamiPlatform) << "Failed to find a Kirigami platform plugin for style" << QQuickStyle::name(); } return factory; diff --git a/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.h b/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.h index a598b86d9c..b9561c0177 100644 --- a/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.h +++ b/local/recipes/kde/kirigami/source/src/platform/platformpluginfactory.h @@ -20,11 +20,13 @@ namespace Platform class PlatformTheme; class Units; -/** - * @class PlatformPluginFactory platformpluginfactory.h +/*! + * \class Kirigami::Platform::PlatformPluginFactory + * \inheaderfile Kirigami/Platform/PlatformPluginFactory + * \inmodule KirigamiPlatform * - * This class is reimpleented by plugins to provide different implementations - * of PlatformTheme + * \brief This class is reimplemented by plugins to provide different implementations + * of PlatformTheme. */ class KIRIGAMIPLATFORM_EXPORT PlatformPluginFactory : public QObject { @@ -34,30 +36,33 @@ public: explicit PlatformPluginFactory(QObject *parent = nullptr); ~PlatformPluginFactory() override; - /** + /*! * Creates an instance of PlatformTheme which can come out from - * an implementation provided by a plugin + * an implementation provided by a plugin. * * If this returns nullptr the PlatformTheme will use a fallback * implementation that loads a theme definition from a QML file. * - * @param parent the parent object of the created PlatformTheme + * \a parent The parent object of the created PlatformTheme */ virtual PlatformTheme *createPlatformTheme(QObject *parent) = 0; - /** + /*! * Creates an instance of Units which can come from an implementation * provided by a plugin - * @param parent the parent of the units object + * + * \a parent The parent of the units object */ virtual Units *createUnits(QObject *parent) = 0; - /** - * finds the plugin providing units and platformtheme for the current style + /*! + * Finds the plugin providing units and platformtheme for the current style * The plugin pointer is cached, so only the first call is a potentially heavy operation - * @param pluginName The name we want to search for, if empty the name of - * the current QtQuickControls style will be searched - * @return pointer to the PlatformPluginFactory of the current style + * + * \a pluginName The name we want to search for, if empty the name of + * the current QtQuickControls style will be searched. + * + * Returns a pointer to the PlatformPluginFactory of the current style. */ static PlatformPluginFactory *findPlugin(const QString &pluginName = {}); }; diff --git a/local/recipes/kde/kirigami/source/src/platform/platformtheme.cpp b/local/recipes/kde/kirigami/source/src/platform/platformtheme.cpp index 09378e8e55..8bbfce0b28 100644 --- a/local/recipes/kde/kirigami/source/src/platform/platformtheme.cpp +++ b/local/recipes/kde/kirigami/source/src/platform/platformtheme.cpp @@ -8,8 +8,11 @@ #include "platformtheme.h" #include "basictheme_p.h" #include "platformpluginfactory.h" +#include "stylehints.h" + #include #include +#include #include #include #include @@ -24,6 +27,8 @@ #include #include +#include "kirigamiplatform_logging.h" + namespace Kirigami { namespace Platform @@ -38,6 +43,8 @@ template<> KIRIGAMIPLATFORM_EXPORT QEvent::Type PlatformThemeEvents::ColorChangedEvent::type = QEvent::None; template<> KIRIGAMIPLATFORM_EXPORT QEvent::Type PlatformThemeEvents::FontChangedEvent::type = QEvent::None; +template<> +KIRIGAMIPLATFORM_EXPORT QEvent::Type PlatformThemeEvents::FrameContrastChangedEvent::type = QEvent::None; // Initialize event types. // We want to avoid collisions with application event types so we should use @@ -52,10 +59,14 @@ struct TypeInitializer { PlatformThemeEvents::ColorGroupChangedEvent::type = QEvent::Type(QEvent::registerEventType()); PlatformThemeEvents::ColorChangedEvent::type = QEvent::Type(QEvent::registerEventType()); PlatformThemeEvents::FontChangedEvent::type = QEvent::Type(QEvent::registerEventType()); + PlatformThemeEvents::FrameContrastChangedEvent::type = QEvent::Type(QEvent::registerEventType()); } }; static TypeInitializer initializer; +// This value has to be kept in sync with the value in KColorScheme kcolorscheme.cpp +static constexpr qreal DefaultFrameContrast = 0.2; + // This class encapsulates the actual data of the Theme object. It may be shared // among several instances of PlatformTheme, to ensure that the memory usage of // PlatformTheme stays low. @@ -107,7 +118,8 @@ public: std::array colors; QFont defaultFont; - QFont smallFont; + QFont smallFont = QFontDatabase::systemFont(QFontDatabase::SmallestReadableFont); + QFont fixedWidthFont = QFontDatabase::systemFont(QFontDatabase::FixedFont); QPalette palette; @@ -118,6 +130,8 @@ public: using Watcher = PlatformTheme *; QList watchers; + qreal frameContrast = DefaultFrameContrast; + inline void setColorSet(PlatformTheme *sender, PlatformTheme::ColorSet set) { if (sender != owner || colorSet == set) { @@ -185,6 +199,19 @@ public: notifyWatchers(sender, oldValue, smallFont); } + inline void setFixedWidthFont(PlatformTheme *sender, const QFont &font) + { + if (sender != owner || font == fixedWidthFont) { + return; + } + + auto oldValue = fixedWidthFont; + + fixedWidthFont = font; + + notifyWatchers(sender, oldValue, fixedWidthFont); + } + inline void addChangeWatcher(PlatformTheme *object) { watchers.append(object); @@ -254,6 +281,19 @@ public: break; } } + + inline void setFrameContrast(PlatformTheme *sender, qreal contrast) + { + if (sender != owner || contrast == frameContrast) { + return; + } + + auto oldValue = frameContrast; + + frameContrast = contrast; + + notifyWatchers(sender, oldValue, frameContrast); + } }; class PlatformThemePrivate @@ -367,6 +407,7 @@ public: bool pendingColorChange : 1; bool pendingChildUpdate : 1; bool useAlternateBackgroundColor : 1; + bool isConstructing : 1 = false; // Note: We use these to store local values of PlatformTheme::ColorSet and // PlatformTheme::ColorGroup. While these are standard enums and thus 32 @@ -387,21 +428,19 @@ PlatformTheme::PlatformTheme(QObject *parent) : QObject(parent) , d(new PlatformThemePrivate) { + setConstructing(true); if (QQuickItem *item = qobject_cast(parent)) { - connect(item, &QQuickItem::windowChanged, this, [this](QQuickWindow *window) { - if (window) { - update(); - } - }); + connect(item, &QQuickItem::windowChanged, this, &PlatformTheme::update); connect(item, &QQuickItem::parentChanged, this, &PlatformTheme::update); // Needs to be connected to enabledChanged twice to correctly fully update when a - // Theme that does inherit becomes temporarly non-inherit and back due to - // the item being enabled or disabled + // Theme that does inherit becomes temporarily non-inherit and back due to + // the item being enabled or disabled. connect(item, &QQuickItem::enabledChanged, this, &PlatformTheme::update); connect(item, &QQuickItem::enabledChanged, this, &PlatformTheme::update, Qt::QueuedConnection); } update(); + setConstructing(false); } PlatformTheme::~PlatformTheme() @@ -687,12 +726,30 @@ void PlatformTheme::setSmallFont(const QFont &font) } } +QFont PlatformTheme::fixedWidthFont() const +{ + return d->data ? d->data->fixedWidthFont : QFont{}; +} + +void PlatformTheme::setFixedWidthFont(const QFont &font) +{ + PlatformThemeChangeTracker tracker(this, PlatformThemeChangeTracker::PropertyChange::Font); + if (d->data) { + d->data->setFixedWidthFont(this, font); + } +} + +void PlatformTheme::setFrameContrast(qreal contrast) +{ + PlatformThemeChangeTracker tracker(this, PlatformThemeChangeTracker::PropertyChange::FrameContrast); + if (d->data) { + d->data->setFrameContrast(this, contrast); + } +} + qreal PlatformTheme::frameContrast() const { - // This value must be kept in sync with - // the value from Breeze Qt Widget theme. - // See: https://invent.kde.org/plasma/breeze/-/blob/master/kstyle/breezemetrics.h?ref_type=heads#L162 - return 0.20; + return d->data ? d->data->frameContrast : DefaultFrameContrast; } qreal PlatformTheme::lightFrameContrast() const @@ -803,20 +860,33 @@ void PlatformTheme::setCustomFocusColor(const QColor &color) d->setColor(this, PlatformThemeData::FocusColor, color); } +#if KIRIGAMIPLATFORM_BUILD_DEPRECATED_SINCE(6, 24) bool PlatformTheme::useAlternateBackgroundColor() const { - return d->useAlternateBackgroundColor; + auto styleHints = qobject_cast(qmlAttachedPropertiesObject(parent(), false)); + if (styleHints) { + return styleHints->useAlternateBackgroundColor(); + } else { + return false; + } } void PlatformTheme::setUseAlternateBackgroundColor(bool alternate) { - if (alternate == d->useAlternateBackgroundColor) { - return; - } + qCDebug(KirigamiPlatform) + << "PlatformTheme::setUseAlternateBackgroundColor is deprecated (since 6.24), use StyleHints::setUseAlternateBackgroundColor() instead"; - d->useAlternateBackgroundColor = alternate; - Q_EMIT useAlternateBackgroundColorChanged(alternate); + auto styleHints = qobject_cast(qmlAttachedPropertiesObject(parent())); + + bool oldAlternate = styleHints->useAlternateBackgroundColor(); + + styleHints->setUseAlternateBackgroundColor(alternate); + + if (oldAlternate != styleHints->useAlternateBackgroundColor()) { + Q_EMIT useAlternateBackgroundColorChanged(alternate); + } } +#endif QPalette PlatformTheme::palette() const { @@ -845,6 +915,11 @@ bool PlatformTheme::supportsIconColoring() const return d->supportsIconColoring; } +void PlatformTheme::setConstructing(bool isConstructing) +{ + d->isConstructing = isConstructing; +} + void PlatformTheme::setSupportsIconColoring(bool support) { d->supportsIconColoring = support; @@ -900,6 +975,11 @@ void PlatformTheme::emitSignalsForChanges(int changes) if (propertyChanges & PlatformThemeChangeTracker::PropertyChange::Font) { Q_EMIT defaultFontChanged(d->data->defaultFont); Q_EMIT smallFontChanged(d->data->smallFont); + Q_EMIT fixedWidthFontChanged(d->data->fixedWidthFont); + } + + if (propertyChanges & PlatformThemeChangeTracker::PropertyChange::FrameContrast) { + Q_EMIT frameContrastChanged(d->data->frameContrast); } if (propertyChanges & PlatformThemeChangeTracker::PropertyChange::Data) { @@ -951,17 +1031,29 @@ bool PlatformTheme::event(QEvent *event) return true; } + if (event->type() == PlatformThemeEvents::FrameContrastChangedEvent::type) { + tracker.markDirty(PlatformThemeChangeTracker::PropertyChange::FrameContrast); + return true; + } + return QObject::event(event); } void PlatformTheme::update() { + auto parentItem = qobject_cast(parent()); + if (parentItem && !parentItem->window()) { + // Do nothing if we don't have a window, to prevent spurious update events + // on teardown or destruction + return; + } + auto oldData = d->data; bool actualInherit = d->inherit; - if (QQuickItem *item = qobject_cast(parent())) { + if (parentItem) { // For inactive windows it should work already, as also the non inherit themes get it - if (colorGroup() != Disabled && !item->isEnabled()) { + if (colorGroup() != Disabled && !parentItem->isEnabled()) { actualInherit = false; } } @@ -998,8 +1090,16 @@ void PlatformTheme::update() if (!d->data) { d->data = std::make_shared(); d->data->owner = this; + d->data->setColorSet(this, static_cast(d->colorSet)); d->data->setColorGroup(this, static_cast(d->colorGroup)); + + // If we normally inherit but do not do so currently due to an override, + // copy over the old colorSet to ensure we do not suddenly change to a + // different colorSet. + if (d->inherit && !actualInherit && oldData) { + d->data->setColorSet(this, oldData->colorSet); + } } if (d->localOverrides) { @@ -1018,15 +1118,33 @@ void PlatformTheme::updateChildren(QObject *object) return; } - const auto children = object->children(); - for (auto child : children) { - auto t = static_cast(qmlAttachedPropertiesObject(child, false)); - if (t) { - t->update(); - } else { - updateChildren(child); + auto updateChildrenImpl = [this](const auto &children, QSet &updated) { + for (auto child : children) { + if (updated.contains(child)) { + continue; + } + + auto t = static_cast(qmlAttachedPropertiesObject(child, false)); + if (t) { + t->update(); + } else { + updateChildren(child); + } + updated.insert(child); } + }; + + auto item = qobject_cast(object); + QSet updated; + // The item hierarchy may be different from the QObject hierarchy. We want + // to make sure that we update both child Items as well as any child objects. + // To prevent updating things that were already updated, keep track of them + // in a set that is used to skip an update for a child if it was already + // updated. + if (item) { + updateChildrenImpl(item->childItems(), updated); } + updateChildrenImpl(object->children(), updated); } // We sometimes set theme properties on non-visual objects. However, if an item @@ -1068,7 +1186,9 @@ PlatformThemeChangeTracker::~PlatformThemeChangeTracker() noexcept m_data.reset(); if (dataWatcher.use_count() <= 0) { - m_theme->emitSignalsForChanges(changes); + if (!m_theme->d->isConstructing) { + m_theme->emitSignalsForChanges(changes); + } s_blockedChanges.remove(m_theme); } } diff --git a/local/recipes/kde/kirigami/source/src/platform/platformtheme.h b/local/recipes/kde/kirigami/source/src/platform/platformtheme.h index 562c6f895c..673758ed2c 100644 --- a/local/recipes/kde/kirigami/source/src/platform/platformtheme.h +++ b/local/recipes/kde/kirigami/source/src/platform/platformtheme.h @@ -23,12 +23,25 @@ namespace Platform class PlatformThemeData; class PlatformThemePrivate; -/** - * @class PlatformTheme platformtheme.h +/*! + * \qmltype Theme + * \inqmlmodule org.kde.kirigami.platform * - * This class is the base for color management in Kirigami, + * \nativetype Kirigami::Platform::PlatformTheme + * + * \brief This class is the base for color management in Kirigami, + * different platforms can reimplement this class to integrate + * with system platform colors of a given platform. + */ + +/*! + * \class Kirigami::Platform::PlatformTheme + * \inheaderfile Kirigami/Platform/PlatformTheme + * \inmodule KirigamiPlatform + * + * \brief This class is the base for color management in Kirigami, * different platforms can reimplement this class to integrate with - * system platform colors of a given platform + * system platform colors of a given platform. */ class KIRIGAMIPLATFORM_EXPORT PlatformTheme : public QObject { @@ -37,7 +50,15 @@ class KIRIGAMIPLATFORM_EXPORT PlatformTheme : public QObject QML_ATTACHED(Kirigami::Platform::PlatformTheme) QML_UNCREATABLE("Attached Property") - /** + /*! + * \qmlattachedproperty enumeration Theme::colorSet + * This enumeration describes the color set for which a color is being selected. + * + * Color sets define a color "environment", suitable for drawing all parts of a + * given region. Colors from different sets should not be combined. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::colorSet * This enumeration describes the color set for which a color is being selected. * * Color sets define a color "environment", suitable for drawing all parts of a @@ -45,183 +66,430 @@ class KIRIGAMIPLATFORM_EXPORT PlatformTheme : public QObject */ Q_PROPERTY(ColorSet colorSet READ colorSet WRITE setColorSet NOTIFY colorSetChanged FINAL) - /** + /*! + * \qmlattachedproperty enumeration Theme::colorGroup + * * This enumeration describes the color group used to generate the colors. * The enum value is based upon QPalette::ColorGroup and has the same values. * It's redefined here in order to make it work with QML. - * @since 4.43 + * \since 4.43 + */ + /*! + * \property Kirigami::Platform::PlatformTheme::colorGroup + * + * This enumeration describes the color group used to generate the colors. + * The enum value is based upon QPalette::ColorGroup and has the same values. + * It's redefined here in order to make it work with QML. + * \since 4.43 */ Q_PROPERTY(ColorGroup colorGroup READ colorGroup WRITE setColorGroup NOTIFY colorGroupChanged FINAL) - /** + /*! + * \qmlattachedproperty bool Theme::inherit + * * If true, the colorSet will be inherited from the colorset of a theme of one - * of the ancestor items + * of the ancestor items. + * + * default: true + */ + /*! + * \property Kirigami::Platform::PlatformTheme::inherit + * + * If true, the colorSet will be inherited from the colorset of a theme of one + * of the ancestor items. + * * default: true */ Q_PROPERTY(bool inherit READ inherit WRITE setInherit NOTIFY inheritChanged FINAL) // foreground colors - /** + /*! + * \qmlattachedproperty color Theme::textColor * Color for normal foregrounds, usually text, but not limited to it, - * anything that should be painted with a clear contrast should use this color + * anything that should be painted with a clear contrast should use this color. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::textColor + * Color for normal foregrounds, usually text, but not limited to it, + * anything that should be painted with a clear contrast should use this color. */ Q_PROPERTY(QColor textColor READ textColor WRITE setCustomTextColor RESET setCustomTextColor NOTIFY colorsChanged FINAL) - /** - * Foreground color for disabled areas, usually a mid-gray - * @note Depending on the implementation, the color used for this property may not be + /*! + * \qmlattachedproperty color Theme::disabledTextColor + * + * Foreground color for disabled areas, usually a mid-gray. + * \note Depending on the implementation, the color used for this property may not be + * based on the disabled palette. For example, for the Plasma implementation, + * "Inactive Text Color" of the active palette is used. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::disabledTextColor + * + * Foreground color for disabled areas, usually a mid-gray. + * \note Depending on the implementation, the color used for this property may not be * based on the disabled palette. For example, for the Plasma implementation, * "Inactive Text Color" of the active palette is used. */ Q_PROPERTY(QColor disabledTextColor READ disabledTextColor WRITE setCustomDisabledTextColor RESET setCustomDisabledTextColor NOTIFY colorsChanged FINAL) - /** - * Color for text that has been highlighted, often is a light color while normal text is dark + /*! + * \qmlattachedproperty color Theme::highlightedTextColor + * + * Color for text that has been highlighted, often is a light color while normal text is dark. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::highlightedTextColor + * + * Color for text that has been highlighted, often is a light color while normal text is dark. */ Q_PROPERTY( QColor highlightedTextColor READ highlightedTextColor WRITE setCustomHighlightedTextColor RESET setCustomHighlightedTextColor NOTIFY colorsChanged) - /** - * Foreground for areas that are active or requesting attention + /*! + * \qmlattachedproperty color Theme::activeTextColor + * + * Foreground for areas that are active or requesting attention. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::activeTextColor + * + * Foreground for areas that are active or requesting attention. */ Q_PROPERTY(QColor activeTextColor READ activeTextColor WRITE setCustomActiveTextColor RESET setCustomActiveTextColor NOTIFY colorsChanged FINAL) - /** - * Color for links + /*! + * \qmlattachedproperty color Theme::linkColor + * + * Color for links. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::linkColor + * + * Color for links. */ Q_PROPERTY(QColor linkColor READ linkColor WRITE setCustomLinkColor RESET setCustomLinkColor NOTIFY colorsChanged FINAL) - /** - * Color for visited links, usually a bit darker than linkColor + /*! + * \qmlattachedproperty color Theme::visitedLinkColor + * + * Color for visited links, usually a bit darker than linkColor. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::visitedLinkColor + * + * Color for visited links, usually a bit darker than linkColor. */ Q_PROPERTY(QColor visitedLinkColor READ visitedLinkColor WRITE setCustomVisitedLinkColor RESET setCustomVisitedLinkColor NOTIFY colorsChanged FINAL) - /** - * Foreground color for negative areas, such as critical error text + /*! + * \qmlattachedproperty color Theme::negativeTextColor + * + * Foreground color for negative areas, such as critical error text. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::negativeTextColor + * + * Foreground color for negative areas, such as critical error text. */ Q_PROPERTY(QColor negativeTextColor READ negativeTextColor WRITE setCustomNegativeTextColor RESET setCustomNegativeTextColor NOTIFY colorsChanged FINAL) - /** - * Foreground color for neutral areas, such as warning texts (but not critical) + /*! + * \qmlattachedproperty color Theme::neutralTextColor + * + * Foreground color for neutral areas, such as warning texts (but not critical). + */ + /*! + * \property Kirigami::Platform::PlatformTheme::neutralTextColor + * + * Foreground color for neutral areas, such as warning texts (but not critical). */ Q_PROPERTY(QColor neutralTextColor READ neutralTextColor WRITE setCustomNeutralTextColor RESET setCustomNeutralTextColor NOTIFY colorsChanged FINAL) - /** - * Success messages, trusted content + /*! + * \qmlattachedproperty color Theme::positiveTextColor + * + * Success messages, trusted content. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::positiveTextColor + * + * Success messages, trusted content. */ Q_PROPERTY(QColor positiveTextColor READ positiveTextColor WRITE setCustomPositiveTextColor RESET setCustomPositiveTextColor NOTIFY colorsChanged FINAL) // background colors - /** - * The generic background color + /*! + * \qmlattachedproperty color Theme::backgroundColor + * + * The generic background color. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::backgroundColor + * + * The generic background color. */ Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setCustomBackgroundColor RESET setCustomBackgroundColor NOTIFY colorsChanged FINAL) - /** - * The generic background color + /*! + * \qmlattachedproperty color Theme::alternateBackgroundColor + * + * The generic background color. + * * Alternate background; for example, for use in lists. + * + * This color may be the same as BackgroundNormal, + * especially in sets other than View and Window. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::alternateBackgroundColor + * + * The generic background color. + * + * Alternate background; for example, for use in lists. + * * This color may be the same as BackgroundNormal, * especially in sets other than View and Window. */ Q_PROPERTY(QColor alternateBackgroundColor READ alternateBackgroundColor WRITE setCustomAlternateBackgroundColor RESET setCustomAlternateBackgroundColor NOTIFY colorsChanged) - /** - * The background color for selected areas + /*! + * \qmlattachedproperty color Theme::highlightColor + * + * The background color for selected areas. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::highlightColor + * + * The background color for selected areas. */ Q_PROPERTY(QColor highlightColor READ highlightColor WRITE setCustomHighlightColor RESET setCustomHighlightColor NOTIFY colorsChanged FINAL) - /** - * Background for areas that are active or requesting attention + /*! + * \qmlattachedproperty color Theme::activeBackgroundColor + * + * Background for areas that are active or requesting attention. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::activeBackgroundColor + * + * Background for areas that are active or requesting attention. */ Q_PROPERTY( QColor activeBackgroundColor READ activeBackgroundColor WRITE setCustomActiveBackgroundColor RESET setCustomActiveBackgroundColor NOTIFY colorsChanged) - /** - * Background color for links + /*! + * \qmlattachedproperty color Theme::linkBackgroundColor + * + * Background color for links. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::linkBackgroundColor + * + * Background color for links. */ Q_PROPERTY( QColor linkBackgroundColor READ linkBackgroundColor WRITE setCustomLinkBackgroundColor RESET setCustomLinkBackgroundColor NOTIFY colorsChanged FINAL) - /** - * Background color for visited links, usually a bit darker than linkBackgroundColor + /*! + * \qmlattachedproperty color Theme::visitedLinkBackgroundColor + * + * Background color for visited links, usually a bit darker than linkBackgroundColor. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::visitedLinkBackgroundColor + * + * Background color for visited links, usually a bit darker than linkBackgroundColor. */ Q_PROPERTY(QColor visitedLinkBackgroundColor READ visitedLinkBackgroundColor WRITE setCustomVisitedLinkBackgroundColor RESET setCustomVisitedLinkBackgroundColor NOTIFY colorsChanged) - /** - * Background color for negative areas, such as critical errors and destructive actions + /*! + * \qmlattachedproperty color Theme::negativeBackgroundColor + * + * Background color for negative areas, such as critical errors and destructive actions. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::negativeBackgroundColor + * + * Background color for negative areas, such as critical errors and destructive actions. */ Q_PROPERTY(QColor negativeBackgroundColor READ negativeBackgroundColor WRITE setCustomNegativeBackgroundColor RESET setCustomNegativeBackgroundColor NOTIFY colorsChanged) - /** - * Background color for neutral areas, such as warnings (but not critical) + /*! + * \qmlattachedproperty color Theme::neutralBackgroundColor + * + * Background color for neutral areas, such as warnings (but not critical). + */ + /*! + * \property Kirigami::Platform::PlatformTheme::neutralBackgroundColor + * + * Background color for neutral areas, such as warnings (but not critical). */ Q_PROPERTY(QColor neutralBackgroundColor READ neutralBackgroundColor WRITE setCustomNeutralBackgroundColor RESET setCustomNeutralBackgroundColor NOTIFY colorsChanged) - /** - * Background color for positive areas, such as success messages and trusted content + /*! + * \qmlattachedproperty color Theme::positiveBackgroundColor + * + * Background color for positive areas, such as success messages and trusted content. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::positiveBackgroundColor + * + * Background color for positive areas, such as success messages and trusted content. */ Q_PROPERTY(QColor positiveBackgroundColor READ positiveBackgroundColor WRITE setCustomPositiveBackgroundColor RESET setCustomPositiveBackgroundColor NOTIFY colorsChanged) // decoration colors - /** - * A decoration color that indicates active focus + /*! + * \qmlattachedproperty color Theme::focusColor + * + * A decoration color that indicates active focus. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::focusColor + * + * A decoration color that indicates active focus. */ Q_PROPERTY(QColor focusColor READ focusColor WRITE setCustomFocusColor RESET setCustomFocusColor NOTIFY colorsChanged FINAL) - /** - * A decoration color that indicates mouse hovering + /*! + * \qmlattachedproperty color Theme::hoverColor + * + * A decoration color that indicates mouse hovering. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::hoverColor + * + * A decoration color that indicates mouse hovering. */ Q_PROPERTY(QColor hoverColor READ hoverColor WRITE setCustomHoverColor RESET setCustomHoverColor NOTIFY colorsChanged FINAL) - /** - * Hint for item views to actually make use of the alternate background color feature + /*! + * \qmlattachedproperty bool Theme::useAlternateBackgroundColor + * + * Hint for item views to actually make use of the alternate background color feature. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::useAlternateBackgroundColor + * + * Hint for item views to actually make use of the alternate background color feature. */ Q_PROPERTY( bool useAlternateBackgroundColor READ useAlternateBackgroundColor WRITE setUseAlternateBackgroundColor NOTIFY useAlternateBackgroundColorChanged FINAL) - // font and palette + /*! + * \qmlattachedproperty font Theme::defaultFont + * + * The default font. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::defaultFont + * + * The default font. + */ Q_PROPERTY(QFont defaultFont READ defaultFont NOTIFY defaultFontChanged FINAL) - // small font + /*! + * \qmlattachedproperty font Theme::smallFont + * + * Small font. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::smallFont + * + * Small font. + */ Q_PROPERTY(QFont smallFont READ smallFont NOTIFY smallFontChanged FINAL) + /*! + * \qmlattachedproperty font Theme::fixedWidthFont + * + * Fixed width font. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::fixedWidthFont + * + * Fixed width font. + */ + Q_PROPERTY(QFont fixedWidthFont READ fixedWidthFont NOTIFY fixedWidthFontChanged FINAL) + // Active palette + /*! + * \qmlattachedproperty QPalette Theme::palette + * + * Palette. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::palette + * + * Palette. + */ Q_PROPERTY(QPalette palette READ palette NOTIFY paletteChanged FINAL) - // Frame contrast value, usually used for separators and outlines - // Value is between 0.0 and 1.0 + /*! + * \qmlattachedproperty real Theme::frameContrast + * + * Frame contrast value, usually used for separators and outlines + * Value is between 0.0 and 1.0. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::frameContrast + * + * Frame contrast value, usually used for separators and outlines + * Value is between 0.0 and 1.0. + */ Q_PROPERTY(qreal frameContrast READ frameContrast CONSTANT FINAL) - // Returns half of the frameContrast value; used by Separator.Weight.Light - // Value is between 0.0 and 1.0 + /*! + * \qmlattachedproperty real Theme::lightFrameContrast + * + * Returns half of the frameContrast value; used by Separator.Weight.Light + * Value is between 0.0 and 1.0. + */ + /*! + * \property Kirigami::Platform::PlatformTheme::lightFrameContrast + * + * Returns half of the frameContrast value; used by Separator.Weight.Light + * Value is between 0.0 and 1.0. + */ Q_PROPERTY(qreal lightFrameContrast READ lightFrameContrast CONSTANT FINAL) public: + /*! + * \value View Color set for item views, usually the lightest of all + * \value Window Default Color set for windows and "chrome" areas + * \value Button Color set used by buttons + * \value Selection Color set used by selected areas + * \value Tooltip Color set used by tooltips + * \value Complementary Color set meant to be complementary to Window: usually is a dark theme for light themes + * \value Header Color set to be used by heading areas of applications, such as toolbars + * \omitvalue ColorSetCount + */ enum ColorSet { - /** Color set for item views, usually the lightest of all */ View = 0, - /** Default Color set for windows and "chrome" areas */ Window, - /** Color set used by buttons */ Button, - /** Color set used by selected areas */ Selection, - /** Color set used by tooltips */ Tooltip, - /** Color set meant to be complementary to Window: usually is a dark theme for light themes */ Complementary, - /** Color set to be used by heading areas of applications, such as toolbars */ Header, // Number of items in this enum, this should always be the last item. ColorSetCount, }; Q_ENUM(ColorSet) + /*! + * \value Disabled + * \value Active + * \value Inactive + * \value Normal + * \omitvalue ColorGroupCount + */ enum ColorGroup { Disabled = QPalette::Disabled, Active = QPalette::Active, @@ -272,6 +540,7 @@ public: QFont defaultFont() const; QFont smallFont() const; + QFont fixedWidthFont() const; // this may is used by the desktop QQC2 to set the styleoption palettes QPalette palette() const; @@ -279,7 +548,9 @@ public: qreal frameContrast() const; qreal lightFrameContrast() const; - // this will be used by desktopicon to fetch icons with KIconLoader + /*! + * This will be used by desktopicon to fetch icons with KIconLoader. + */ virtual Q_INVOKABLE QIcon iconFromTheme(const QString &name, const QColor &customColor = Qt::transparent); bool supportsIconColoring() const; @@ -308,8 +579,12 @@ public: void setCustomFocusColor(const QColor &color = QColor()); void setCustomHoverColor(const QColor &color = QColor()); +#if KIRIGAMIPLATFORM_ENABLE_DEPRECATED_SINCE(6, 24) + KIRIGAMIPLATFORM_DEPRECATED_VERSION(6, 24, "Use StyleHints::useAlternateBackgroundColor instead") bool useAlternateBackgroundColor() const; + KIRIGAMIPLATFORM_DEPRECATED_VERSION(6, 24, "Use StyleHints::setUseAlternateBackgroundColor instead") void setUseAlternateBackgroundColor(bool alternate); +#endif // QML attached property static PlatformTheme *qmlAttachedProperties(QObject *object); @@ -318,13 +593,18 @@ Q_SIGNALS: void colorsChanged(); void defaultFontChanged(const QFont &font); void smallFontChanged(const QFont &font); + void fixedWidthFontChanged(const QFont &font); void colorSetChanged(Kirigami::Platform::PlatformTheme::ColorSet colorSet); void colorGroupChanged(Kirigami::Platform::PlatformTheme::ColorGroup colorGroup); void paletteChanged(const QPalette &pal); void inheritChanged(bool inherit); void useAlternateBackgroundColorChanged(bool alternate); + void frameContrastChanged(qreal contrast); protected: + /// To set in the constructors so the changes trackers can avoid emitting + void setConstructing(bool isConstructing); + // Setters, not accessible from QML but from implementations void setSupportsIconColoring(bool support); @@ -356,6 +636,8 @@ protected: void setDefaultFont(const QFont &defaultFont); void setSmallFont(const QFont &smallFont); + void setFixedWidthFont(const QFont &fixedWidthFont); + void setFrameContrast(qreal contrast); bool event(QEvent *event) override; @@ -371,8 +653,10 @@ private: friend class PlatformThemeChangeTracker; }; -/** - * A class that tracks changes to PlatformTheme properties and emits signals at the right moment. +/*! + * \brief A class that tracks changes to PlatformTheme properties and emits signals at the right moment. + * \inheaderfile Kirigami/Platform/PlatformTheme + * \inmodule KirigamiPlatform * * This should be used by PlatformTheme implementations to ensure that multiple * changes to a PlatformTheme's properties do not emit multiple change signals, @@ -380,14 +664,25 @@ private: * things making use of PlatformTheme aren't needlessly redrawn or redrawn in a * partially changed state. * - * @since 6.7 + * \since 6.7 * */ class KIRIGAMIPLATFORM_EXPORT PlatformThemeChangeTracker { public: - /** - * Flags used to indicate changes made to certain properties. + /*! + * \enum Kirigami::Platform::PlatformThemeChangeTracker::PropertyChange + * \brief Flags used to indicate changes made to certain properties. + * + * \value None + * \value ColorSet + * \value ColorGroup + * \value Color + * \value Palette + * \value Font + * \value Data + * \value FrameContrast + * \value All */ enum class PropertyChange : uint8_t { None = 0, @@ -397,7 +692,8 @@ public: Palette = 1 << 3, Font = 1 << 4, Data = 1 << 5, - All = ColorSet | ColorGroup | Color | Palette | Font | Data, + FrameContrast = 1 << 6, + All = ColorSet | ColorGroup | Color | Palette | Font | Data | FrameContrast, }; Q_DECLARE_FLAGS(PropertyChanges, PropertyChange) @@ -425,6 +721,7 @@ private: namespace PlatformThemeEvents { +// TODO qdoc document this? // To avoid the overhead of Qt's signal/slot connections, we use custom events // to communicate with subclasses. This way, we can indicate what actually // changed without needing to add new virtual functions to PlatformTheme which @@ -459,7 +756,7 @@ using ColorSetChangedEvent = PropertyChangedEvent; using ColorGroupChangedEvent = PropertyChangedEvent; using ColorChangedEvent = PropertyChangedEvent; using FontChangedEvent = PropertyChangedEvent; - +using FrameContrastChangedEvent = PropertyChangedEvent; } } diff --git a/local/recipes/kde/kirigami/source/src/platform/settings.h b/local/recipes/kde/kirigami/source/src/platform/settings.h index f44363d1bb..80fd53b692 100644 --- a/local/recipes/kde/kirigami/source/src/platform/settings.h +++ b/local/recipes/kde/kirigami/source/src/platform/settings.h @@ -16,9 +16,12 @@ namespace Kirigami { namespace Platform { -/** - * This class contains global kirigami settings about the current device setup - * It is exposed to QML as the singleton "Settings" +/*! + * \qmlsingletontype Settings + * \inqmlmodule org.kde.kirigami.platform + * + * \brief Provides global kirigami settings about + * the current device setup under the singleton "Settings". */ class KIRIGAMIPLATFORM_EXPORT Settings : public QObject { @@ -26,7 +29,9 @@ class KIRIGAMIPLATFORM_EXPORT Settings : public QObject QML_ELEMENT QML_SINGLETON - /** + /*! + * \qmlproperty bool Settings::tabletModeAvailable + * * This property holds whether the system can dynamically enter and exit tablet mode * (or the device is actually a tablet). * This is the case for foldable convertibles and transformable laptops that support @@ -34,69 +39,84 @@ class KIRIGAMIPLATFORM_EXPORT Settings : public QObject */ Q_PROPERTY(bool tabletModeAvailable READ isTabletModeAvailable NOTIFY tabletModeAvailableChanged FINAL) - /** + /*! + * \qmlproperty bool Settings::isMobile + * * This property holds whether the application is running on a small mobile device * such as a mobile phone. This is used when we want to do specific adaptations to * the UI for small screen form factors, such as having bigger touch areas. */ Q_PROPERTY(bool isMobile READ isMobile NOTIFY isMobileChanged FINAL) - /** + /*! + * \qmlproperty bool Settings::tabletMode + * * This property holds whether the application is running on a device that is * behaving like a tablet. * - * @note This doesn't mean exactly a tablet form factor, but + * \note This doesn't mean exactly a tablet form factor, but * that the preferred input mode for the device is the touch screen * and that pointer and keyboard are either secondary or not available. */ Q_PROPERTY(bool tabletMode READ tabletMode NOTIFY tabletModeChanged FINAL) - /** + /*! + * \qmlproperty bool Settings::hasPlatformMenuBar + * * This property holds whether the system has a platform menu bar; e.g. a user is * on macOS or has a global menu on KDE Plasma. * - * @warning Android has a platform menu bar; which may not be what you expected. + * \warning Android has a platform menu bar; which may not be what you expected. */ Q_PROPERTY(bool hasPlatformMenuBar READ hasPlatformMenuBar CONSTANT FINAL) - /** + /*! + * \qmlproperty bool Settings::hasTransientTouchInput + * * This property holds whether the user in this moment is interacting with the app * with the touch screen. */ Q_PROPERTY(bool hasTransientTouchInput READ hasTransientTouchInput NOTIFY hasTransientTouchInputChanged FINAL) - /** + /*! + * \qmlproperty string Settings::style + * * This property holds the name of the QtQuickControls2 style the application is using, * for instance org.kde.desktop, Plasma, Material, Universal etc */ Q_PROPERTY(QString style READ style CONSTANT FINAL) // TODO: make this adapt without file watchers? - /** + /*! + * \qmlproperty int Settings::mouseWheelScrollLines + * * This property holds the number of lines of text the mouse wheel should scroll. */ Q_PROPERTY(int mouseWheelScrollLines READ mouseWheelScrollLines CONSTANT FINAL) - /** + /*! + * \qmlproperty bool Settings::smoothScroll + * * This property holds whether to display animated transitions when scrolling with a * mouse wheel or the keyboard. */ Q_PROPERTY(bool smoothScroll READ smoothScroll NOTIFY smoothScrollChanged FINAL) - /** + /*! + * \qmlproperty list Settings::information + * * This property holds the runtime information about the libraries in use. * - * @since 5.52 - * @since org.kde.kirigami 2.6 + * \since 5.52 */ Q_PROPERTY(QStringList information READ information CONSTANT FINAL) - /** + /*! + * \qmlproperty var Settings::applicationWindowIcon * This property holds the name of the application window icon. - * @see QGuiApplication::windowIcon() + * \sa QGuiApplication::windowIcon() * - * @since 5.62 - * @since org.kde.kirigami 2.10 + * \since 5.62 */ Q_PROPERTY(QVariant applicationWindowIcon READ applicationWindowIcon CONSTANT FINAL) diff --git a/local/recipes/kde/kirigami/source/src/platform/smoothscrollwatcher.h b/local/recipes/kde/kirigami/source/src/platform/smoothscrollwatcher.h index 882d049210..e7a666dda9 100644 --- a/local/recipes/kde/kirigami/source/src/platform/smoothscrollwatcher.h +++ b/local/recipes/kde/kirigami/source/src/platform/smoothscrollwatcher.h @@ -15,9 +15,7 @@ namespace Kirigami { namespace Platform { -/** - * @class SmoothScrollWatcher smoothscrollwatcher.h - * +/* * This class reports on the status of the SmoothScroll DBus interface, * which sends a message when the smooth scroll setting gets changed. */ diff --git a/local/recipes/kde/kirigami/source/src/platform/styleselector.cpp b/local/recipes/kde/kirigami/source/src/platform/styleselector.cpp index cea8649872..3938cfca8e 100644 --- a/local/recipes/kde/kirigami/source/src/platform/styleselector.cpp +++ b/local/recipes/kde/kirigami/source/src/platform/styleselector.cpp @@ -6,11 +6,15 @@ #include "styleselector.h" +#include #include #include +#include #include #include +using namespace Qt::StringLiterals; + namespace Kirigami { namespace Platform @@ -37,79 +41,126 @@ QStringList StyleSelector::styleChain() auto style = QQuickStyle::name(); + s_styleChain = { + style, #if !defined(Q_OS_ANDROID) && !defined(Q_OS_IOS) - // org.kde.desktop.plasma is a couple of files that fall back to desktop by purpose - if (style.isEmpty() || style == QStringLiteral("org.kde.desktop.plasma")) { - auto path = resolveFilePath(QStringLiteral("/styles/org.kde.desktop")); - if (QFile::exists(path)) { - s_styleChain.prepend(QStringLiteral("org.kde.desktop")); - } - } -#elif defined(Q_OS_ANDROID) - s_styleChain.prepend(QStringLiteral("Material")); -#else // do we have an iOS specific style? - s_styleChain.prepend(QStringLiteral("Material")); + u"org.kde.desktop.plasma"_s, + u"org.kde.desktop"_s, +#else + u"Material"_s, #endif - - auto stylePath = resolveFilePath(QStringLiteral("/styles/") + style); - if (!style.isEmpty() && QFile::exists(stylePath) && !s_styleChain.contains(style)) { - s_styleChain.prepend(style); - // if we have plasma deps installed, use them for extra integration - auto plasmaPath = resolveFilePath(QStringLiteral("/styles/org.kde.desktop.plasma")); - if (style == QStringLiteral("org.kde.desktop") && QFile::exists(plasmaPath)) { - s_styleChain.prepend(QStringLiteral("org.kde.desktop.plasma")); - } - } else { -#if !defined(Q_OS_ANDROID) && !defined(Q_OS_IOS) - s_styleChain.prepend(QStringLiteral("org.kde.desktop")); -#endif - } + }; return s_styleChain; } -QUrl StyleSelector::componentUrl(const QString &fileName) +QUrl StyleSelector::componentUrlForModule(const QString &module, const QString &fileName) { + // Try to find a styled version first. + static const QStringList candidates = { + // "New" style installation location, relative to specified module. + u"{root}/{module}/styles/{style}/{file}"_s, + // "Old" style installation location, relative to root Kirigami module. + u"{root}/styles/{style}/{file}"_s, + }; + const auto chain = styleChain(); - for (const QString &style : chain) { - const QString candidate = QStringLiteral("styles/") + style + QLatin1Char('/') + fileName; - if (QFile::exists(resolveFilePath(candidate))) { - return QUrl(resolveFileUrl(candidate)); + + constexpr auto pathToUrl = [](const QString &path) { + if (path.startsWith(u":/")) { + return QUrl(u"qrc:///" + path.mid(2)); + } else { + return QUrl::fromLocalFile(path); + } + }; + + for (const auto &style : chain) { + for (const auto &candidate : candidates) { + auto path = candidate; + path.replace(u"{root}"_s, installRoot()); + path.replace(u"{module}"_s, module); + path.replace(u"{style}"_s, style); + path.replace(u"{file}"_s, fileName); + + if (QFile::exists(path)) { + qCDebug(KirigamiPlatform) << "Found" << path; + return pathToUrl(path); + } } } - if (!QFile::exists(resolveFilePath(fileName))) { - qCWarning(KirigamiPlatform) << "Requested an unexisting component" << fileName; + // If that failed, try to find an unstyled version. + auto path = resolveFilePath(module + u'/' + fileName); + if (QFile::exists(path)) { + qCDebug(KirigamiPlatform) << "Found" << path; + return pathToUrl(path); } - return QUrl(resolveFileUrl(fileName)); -} -void StyleSelector::setBaseUrl(const QUrl &baseUrl) -{ - s_baseUrl = baseUrl; + qCDebug(KirigamiPlatform) << "Requested a non-existing component" << fileName; + return QUrl(); } QString StyleSelector::resolveFilePath(const QString &path) { + return installRoot() + u'/' + path; +} + +QString StyleSelector::installRoot() +{ + // With static or android builds, always use QRC as installation root. #if defined(KIRIGAMI_BUILD_TYPE_STATIC) || defined(Q_OS_ANDROID) - return QStringLiteral(":/qt/qml/org/kde/kirigami/") + path; + static QString root = u":/qt/qml/org/kde/kirigami"_s; #else - if (s_baseUrl.isValid()) { - return s_baseUrl.toLocalFile() + QLatin1Char('/') + path; - } else { - return QDir::currentPath() + QLatin1Char('/') + path; - } + static QString root; #endif + + if (!root.isEmpty()) { + return root; + } + + // Try to find the QML path where Kirigami is installed. + // This replicates some logic from QML which is not publicly available + // except with a QQmlEngine instance, which we don't have access to here. + // So instead, we need to find it manually. + + QStringList importPaths; + importPaths.append(QCoreApplication::applicationDirPath()); + importPaths.append(qEnvironmentVariable("QML_IMPORT_PATH").split(QDir::listSeparator())); + importPaths.append(qEnvironmentVariable("QML2_IMPORT_PATH").split(QDir::listSeparator())); + importPaths.append(QLibraryInfo::paths(QLibraryInfo::QmlImportsPath)); + importPaths.append(u":/qt/qml"_s); + + for (auto path : importPaths) { + if (!QFile::exists(path)) { + continue; + } + + QString kirigamiPath = path + u"/org/kde/kirigami"; + if (QFile::exists(kirigamiPath)) { + qCDebug(KirigamiPlatform) << "Using" << kirigamiPath << "as installation root"; + root = kirigamiPath; + break; + } + } + + return root; +} + +#if KIRIGAMIPLATFORM_BUILD_DEPRECATED_SINCE(6, 24) +QUrl StyleSelector::componentUrl(const QString &fileName) +{ + return componentUrlForModule(QString{}, fileName); +} + +void StyleSelector::setBaseUrl(const QUrl &baseUrl) +{ + Q_UNUSED(baseUrl); } QString StyleSelector::resolveFileUrl(const QString &path) { -#if defined(KIRIGAMI_BUILD_TYPE_STATIC) || defined(Q_OS_ANDROID) - return QStringLiteral("qrc:/qt/qml/org/kde/kirigami/") + path; -#else - return s_baseUrl.toString() + QLatin1Char('/') + path; + return resolveFilePath(path); +} #endif -} - } } diff --git a/local/recipes/kde/kirigami/source/src/platform/styleselector.h b/local/recipes/kde/kirigami/source/src/platform/styleselector.h index bfac31ce22..8b620bf8f5 100644 --- a/local/recipes/kde/kirigami/source/src/platform/styleselector.h +++ b/local/recipes/kde/kirigami/source/src/platform/styleselector.h @@ -25,15 +25,27 @@ public: static QString style(); static QStringList styleChain(); - static QUrl componentUrl(const QString &fileName); - - static void setBaseUrl(const QUrl &baseUrl); + /*! + * Find the URL of a component contained in a specific submodule. + */ + static QUrl componentUrlForModule(const QString &module, const QString &fileName); static QString resolveFilePath(const QString &path); + + static QString installRoot(); + +#if KIRIGAMIPLATFORM_ENABLE_DEPRECATED_SINCE(6, 24) + KIRIGAMIPLATFORM_DEPRECATED_VERSION(6, 24, "Use componentUrlForModule") + static QUrl componentUrl(const QString &fileName); + + KIRIGAMIPLATFORM_DEPRECATED_VERSION(6, 24, "No longer used") + static void setBaseUrl(const QUrl &baseUrl); + + KIRIGAMIPLATFORM_DEPRECATED_VERSION(6, 24, "Does the same as resolveFilePath now") static QString resolveFileUrl(const QString &path); +#endif private: - inline static QUrl s_baseUrl; inline static QStringList s_styleChain; }; diff --git a/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.cpp b/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.cpp index b1e6c976c1..f214178f2f 100644 --- a/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.cpp +++ b/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.cpp @@ -78,15 +78,23 @@ public: } }); - const auto reply = portal->ReadAll({PORTAL_GROUP}); - auto watcher = new QDBusPendingCallWatcher(reply, q); - QObject::connect(watcher, &QDBusPendingCallWatcher::finished, q, [this, watcher]() { - watcher->deleteLater(); - QDBusPendingReply reply = *watcher; - const auto properties = reply.value().value(PORTAL_GROUP); - Q_EMIT q->tabletModeAvailableChanged(properties[KEY_AVAILABLE].toBool()); - setIsTablet(properties[KEY_ENABLED].toBool()); - }); + auto readAllProps = [portal, this] { + const auto reply = portal->ReadAll({PORTAL_GROUP}); + auto watcher = new QDBusPendingCallWatcher(reply, q); + QObject::connect(watcher, &QDBusPendingCallWatcher::finished, q, [this, watcher]() { + watcher->deleteLater(); + QDBusPendingReply reply = *watcher; + const auto properties = reply.value().value(PORTAL_GROUP); + Q_EMIT q->tabletModeAvailableChanged(properties[KEY_AVAILABLE].toBool()); + setIsTablet(properties[KEY_ENABLED].toBool()); + }); + }; + // If app.exec() has not been called yet, give Qt the chance to register us with the host portal + if (QThread::currentThread()->loopLevel() == 0) { + QMetaObject::invokeMethod(q, readAllProps, Qt::QueuedConnection); + } else { + readAllProps(); + } } // TODO: case for Windows #endif diff --git a/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.h b/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.h index d405ae06ea..9c69d0050f 100644 --- a/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.h +++ b/local/recipes/kde/kirigami/source/src/platform/tabletmodewatcher.h @@ -18,6 +18,15 @@ namespace Platform { class TabletModeWatcherPrivate; +/*! + * \class Kirigami::Platform::TabletModeChangedEvent + * \inmodule KirigamiPlatform + * \inheaderfile Kirigami/Platform/TabletModeWatcher + * + * \brief Event sent by TabletModeWatcher when the tablet mode changes. + * + * \sa TabletModeWatcher + */ class KIRIGAMIPLATFORM_EXPORT TabletModeChangedEvent : public QEvent { public: @@ -32,12 +41,15 @@ public: inline static QEvent::Type type = QEvent::None; }; -/** - * @class TabletModeWatcher tabletmodewatcher.h +/*! + * \class Kirigami::Platform::TabletModeWatcher + * \inmodule KirigamiPlatform + * \inheaderfile Kirigami/Platform/TabletModeWatcher * - * This class reports on the status of certain transformable + * \brief This class reports on the status of certain transformable * devices which can be both tablets and laptops at the same time, * with a detachable keyboard. + * * It reports whether the device supports a tablet mode and if * the device is currently in such mode or not, emitting a signal * when the user switches. @@ -46,40 +58,47 @@ class KIRIGAMIPLATFORM_EXPORT TabletModeWatcher : public QObject { Q_OBJECT + /*! + * \property Kirigami::Platform::TabletModeWatcher::tabletModeAvailable + * + * \c true if the device supports a tablet mode and has a switch + * to report when the device has been transformed. + * + * For debug purposes, if either the environment variable QT_QUICK_CONTROLS_MOBILE + * or KDE_KIRIGAMI_TABLET_MODE are set to true, tabletModeAvailable will be true + */ Q_PROPERTY(bool tabletModeAvailable READ isTabletModeAvailable NOTIFY tabletModeAvailableChanged FINAL) + + /*! + * \property Kirigami::Platform::TabletModeWatcher::tabletMode + * + * \c true if the machine is now in tablet mode, such as the + * laptop keyboard flipped away or detached. + * + * Note that this doesn't mean exactly a tablet form factor, but + * that the preferred input mode for the device is the touch screen + * and that pointer and keyboard are either secondary or not available. + * + * For debug purposes, if either the environment variable QT_QUICK_CONTROLS_MOBILE + * or KDE_KIRIGAMI_TABLET_MODE are set to true, tabletMode will be true + */ Q_PROPERTY(bool tabletMode READ isTabletMode NOTIFY tabletModeChanged FINAL) public: ~TabletModeWatcher() override; static TabletModeWatcher *self(); - /** - * @returns true if the device supports a tablet mode and has a switch - * to report when the device has been transformed. - * For debug purposes, if either the environment variable QT_QUICK_CONTROLS_MOBILE - * or KDE_KIRIGAMI_TABLET_MODE are set to true, isTabletModeAvailable will be true - */ bool isTabletModeAvailable() const; - /** - * @returns true if the machine is now in tablet mode, such as the - * laptop keyboard flipped away or detached. - * Note that this doesn't mean exactly a tablet form factor, but - * that the preferred input mode for the device is the touch screen - * and that pointer and keyboard are either secondary or not available. - * - * For debug purposes, if either the environment variable QT_QUICK_CONTROLS_MOBILE - * or KDE_KIRIGAMI_TABLET_MODE are set to true, isTabletMode will be true - */ bool isTabletMode() const; - /** + /*! * Register an arbitrary QObject to send events from this. * At the moment only one event will be sent: TabletModeChangedEvent */ void addWatcher(QObject *watcher); - /* + /*! * Unsubscribe watcher from receiving events from TabletModeWatcher. */ void removeWatcher(QObject *watcher); diff --git a/local/recipes/kde/kirigami/source/src/platform/units.cpp b/local/recipes/kde/kirigami/source/src/platform/units.cpp index 0591e87a49..7732c5c8a4 100644 --- a/local/recipes/kde/kirigami/source/src/platform/units.cpp +++ b/local/recipes/kde/kirigami/source/src/platform/units.cpp @@ -11,7 +11,6 @@ #include #include #include -#include #include #include diff --git a/local/recipes/kde/kirigami/source/src/platform/units.h b/local/recipes/kde/kirigami/source/src/platform/units.h index be12d7f953..666eca1945 100644 --- a/local/recipes/kde/kirigami/source/src/platform/units.h +++ b/local/recipes/kde/kirigami/source/src/platform/units.h @@ -24,11 +24,7 @@ namespace Platform class Units; class UnitsPrivate; -/** - * @class IconSizes units.h - * - * Provides access to platform-dependent icon sizing - */ +// TODO qdoc should this be documented as C++ API? class KIRIGAMIPLATFORM_EXPORT IconSizes : public QObject { Q_OBJECT @@ -71,10 +67,19 @@ Q_SIGNALS: void enormousChanged(); }; -/** - * @class Units units.h +/*! + * \qmlsingletontype Units + * \inqmlmodule org.kde.kirigami.platform + * \nativetype Kirigami::Platform::Units * - * A set of values to define semantically sizes and durations. + * \brief A set of values to define semantically sizes and durations. + */ +/*! + * \class Kirigami::Platform::Units + * \inheaderfile Kirigami/Platform/Units + * \inmodule KirigamiPlatform + * + * \brief A set of values to define semantically sizes and durations. */ class KIRIGAMIPLATFORM_EXPORT Units : public QObject { @@ -84,70 +89,148 @@ class KIRIGAMIPLATFORM_EXPORT Units : public QObject friend class IconSizes; - /** + /*! + * \qmlproperty int Units::gridUnit + * + * The fundamental unit of space that should be used for sizes, expressed in pixels. + */ + /*! + * \property Kirigami::Platform::Units::gridUnit + * * The fundamental unit of space that should be used for sizes, expressed in pixels. */ Q_PROPERTY(int gridUnit READ gridUnit NOTIFY gridUnitChanged FINAL) - /** - * units.iconSizes provides access to platform-dependent icon sizing + /*! + * \qmlproperty int Units::iconSizes.sizeForLabels + * \qmlproperty int Units::iconSizes.small + * \qmlproperty int Units::iconSizes.smallMedium + * \qmlproperty int Units::iconSizes.medium + * \qmlproperty int Units::iconSizes.large + * \qmlproperty int Units::iconSizes.huge + * \qmlproperty int Units::iconSizes.enormous + * + * The units.iconSizes group provides access to platform-dependent icon sizing. * * The icon sizes provided are normalized for different DPI, so icons * will scale depending on the DPI. * - * * sizeForLabels (the largest icon size that fits within fontMetrics.height) @since 5.80 @since org.kde.kirigami 2.16 - * * small - * * smallMedium - * * medium - * * large - * * huge - * * enormous + * \list + * \li sizeForLabels (the largest icon size that fits within fontMetrics.height) + * \li small + * \li smallMedium + * \li medium + * \li large + * \li huge + * \li enormous + * \endlist + */ + /*! + * \property Kirigami::Platform::Units::iconSizes */ Q_PROPERTY(Kirigami::Platform::IconSizes *iconSizes READ iconSizes CONSTANT FINAL) - /** + /*! + * \qmlproperty int Units::smallSpacing + * + * This property holds the amount of spacing that should be used between smaller UI elements, + * such as a small icon and a label in a button. + */ + /*! + * \property Kirigami::Platform::Units::smallSpacing + * * This property holds the amount of spacing that should be used between smaller UI elements, * such as a small icon and a label in a button. */ Q_PROPERTY(int smallSpacing READ smallSpacing NOTIFY smallSpacingChanged FINAL) - /** + /*! + * \qmlproperty int Units::mediumSpacing + * + * This property holds the amount of spacing that should be used between medium UI elements, + * such as buttons and text fields in a toolbar. + */ + /*! + * \property Kirigami::Platform::Units::mediumSpacing + * * This property holds the amount of spacing that should be used between medium UI elements, * such as buttons and text fields in a toolbar. */ Q_PROPERTY(int mediumSpacing READ mediumSpacing NOTIFY mediumSpacingChanged FINAL) - /** + /*! + * \qmlproperty int Units::largeSpacing + * + * This property holds the amount of spacing that should be used between bigger UI elements, + * such as a large icon and a heading in a card. + */ + /*! + * \property Kirigami::Platform::Units::largeSpacing + * * This property holds the amount of spacing that should be used between bigger UI elements, * such as a large icon and a heading in a card. */ Q_PROPERTY(int largeSpacing READ largeSpacing NOTIFY largeSpacingChanged FINAL) - /** + /*! + * \qmlproperty int Units::veryLongDuration + * + * units.veryLongDuration should be used for specialty animations that benefit + * from being even longer than longDuration. + */ + /*! + * \property Kirigami::Platform::Units::veryLongDuration + * * units.veryLongDuration should be used for specialty animations that benefit * from being even longer than longDuration. */ Q_PROPERTY(int veryLongDuration READ veryLongDuration NOTIFY veryLongDurationChanged FINAL) - /** + /*! + * \qmlproperty int Units::longDuration + * + * units.longDuration should be used for longer, screen-covering animations, for opening and + * closing of dialogs and other "not too small" animations + */ + /*! + * \property Kirigami::Platform::Units::longDuration + * * units.longDuration should be used for longer, screen-covering animations, for opening and * closing of dialogs and other "not too small" animations */ Q_PROPERTY(int longDuration READ longDuration NOTIFY longDurationChanged FINAL) - /** + /*! + * \qmlproperty int Units::shortDuration + * + * units.shortDuration should be used for short animations, such as accentuating a UI event, + * hover events, etc.. + */ + /*! + * \property Kirigami::Platform::Units::shortDuration + * * units.shortDuration should be used for short animations, such as accentuating a UI event, * hover events, etc.. */ Q_PROPERTY(int shortDuration READ shortDuration NOTIFY shortDurationChanged FINAL) - /** + /*! + * \qmlproperty int Units::veryShortDuration + * + * units.veryShortDuration should be used for elements that should have a hint of smoothness, + * but otherwise animate near instantly. + */ + /*! + * \property Kirigami::Platform::Units::veryShortDuration + * * units.veryShortDuration should be used for elements that should have a hint of smoothness, * but otherwise animate near instantly. */ Q_PROPERTY(int veryShortDuration READ veryShortDuration NOTIFY veryShortDurationChanged FINAL) - /** + /*! + * \qmlproperty int Units::humanMoment + * * Time in milliseconds equivalent to the theoretical human moment, which can be used * to determine whether how long to wait until the user should be informed of something, * or can be used as the limit for how long something should wait before being @@ -155,10 +238,12 @@ class KIRIGAMIPLATFORM_EXPORT Units : public QObject * * Some examples: * - * - When the user types text in a search field, wait no longer than this duration after - * the user completes typing before starting the search - * - When loading data which would commonly arrive rapidly enough to not require interaction, - * wait this long before showing a spinner + * \list + * \li When the user types text in a search field, wait no longer than this duration after + * the user completes typing before starting the search. + * \li When loading data which would commonly arrive rapidly enough to not require interaction, + * wait this long before showing a spinner. + * \endlist * * This might seem an arbitrary number, but given the psychological effect that three * seconds seems to be what humans consider a moment (and in the case of waiting for @@ -168,38 +253,92 @@ class KIRIGAMIPLATFORM_EXPORT Units : public QObject * that the user would think that something has taken too long, for also not so fast as to * happen too soon. * - * See also - * https://www.psychologytoday.com/blog/all-about-addiction/201101/tick-tock-tick-hugs-and-life-in-3-second-intervals + * See \l {https://www.psychologytoday.com/blog/all-about-addiction/201101/tick-tock-tick-hugs-and-life-in-3-second-intervals} + * {Tick, tock, tick - Hugs and life in 3 second intervals (Psychology Today)} * (the actual paper is hidden behind an academic paywall and consequently not readily - * available to us, so the source will have to be the blog entry above) + * available to us, so the source will have to be the blog entry above). * * \note This should __not__ be used as an animation duration, as it is deliberately not scaled according * to the animation settings. This is specifically for determining when something has taken too long and * the user should expect some kind of feedback. See veryShortDuration, shortDuration, longDuration, and * veryLongDuration for animation duration choices. * - * @since 5.81 - * @since org.kde.kirigami 2.16 + * \since 5.81 + */ + /*! + * \property Kirigami::Platform::Units::humanMoment + * + * Time in milliseconds equivalent to the theoretical human moment, which can be used + * to determine whether how long to wait until the user should be informed of something, + * or can be used as the limit for how long something should wait before being + * automatically initiated. + * + * Some examples: + * + * \list + * \li When the user types text in a search field, wait no longer than this duration after + * the user completes typing before starting the search. + * \li When loading data which would commonly arrive rapidly enough to not require interaction, + * wait this long before showing a spinner. + * \endlist + * + * This might seem an arbitrary number, but given the psychological effect that three + * seconds seems to be what humans consider a moment (and in the case of waiting for + * something to happen, a moment is that time when you think "this is taking a bit long, + * isn't it?"), the idea is to postpone for just before such a conceptual moment. The reason + * for the two seconds, rather than three, is to function as a middle ground: Not long enough + * that the user would think that something has taken too long, for also not so fast as to + * happen too soon. + * + * See \l {https://www.psychologytoday.com/blog/all-about-addiction/201101/tick-tock-tick-hugs-and-life-in-3-second-intervals} + * {Tick, tock, tick - Hugs and life in 3 second intervals (Psychology Today)} + * (the actual paper is hidden behind an academic paywall and consequently not readily + * available to us, so the source will have to be the blog entry above). + * + * \note This should __not__ be used as an animation duration, as it is deliberately not scaled according + * to the animation settings. This is specifically for determining when something has taken too long and + * the user should expect some kind of feedback. See veryShortDuration, shortDuration, longDuration, and + * veryLongDuration for animation duration choices. + * + * \since 5.81 */ Q_PROPERTY(int humanMoment READ humanMoment NOTIFY humanMomentChanged FINAL) - /** + /*! + * \qmlproperty int Units::toolTipDelay + * + * time in ms by which the display of tooltips will be delayed. + * + */ + /*! + * \property Kirigami::Platform::Units::toolTipDelay + * * time in ms by which the display of tooltips will be delayed. * - * @sa ToolTip.delay property */ Q_PROPERTY(int toolTipDelay READ toolTipDelay NOTIFY toolTipDelayChanged FINAL) - /** + /*! + * \qmlproperty real Units::cornerRadius + * + * Corner radius value shared by buttons and other rectangle elements. + * + * \since 6.2 + */ + /*! + * \property Kirigami::Platform::Units::cornerRadius + * * Corner radius value shared by buttons and other rectangle elements * - * @since 6.2 + * \since 6.2 */ Q_PROPERTY(qreal cornerRadius READ cornerRadius NOTIFY cornerRadiusChanged FINAL) public: ~Units() override; + // TODO qdoc document setters for platform integration plugins? + int gridUnit() const; void setGridUnit(int size); diff --git a/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.cpp b/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.cpp index ff36de9a7b..088db8270c 100644 --- a/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.cpp +++ b/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.cpp @@ -147,8 +147,8 @@ void VirtualKeyboardWatcher::Private::updateWillShowOnActive() if (reply.isError()) { qCDebug(KirigamiPlatform) << reply.error().message(); } else { - if (reply.value().toBool() != willShowOnActive) { - willShowOnActive = reply.value().toBool(); + if (reply.value().value().variant().toBool() != willShowOnActive) { + willShowOnActive = reply.value().value().variant().toBool(); Q_EMIT q->willShowOnActiveChanged(); } } @@ -178,6 +178,7 @@ void VirtualKeyboardWatcher::Private::getAllProperties() Q_EMIT q->enabledChanged(); Q_EMIT q->activeChanged(); Q_EMIT q->visibleChanged(); + Q_EMIT q->willShowOnActiveChanged(); }); } diff --git a/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.h b/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.h index 78045c8478..7c5eb3f0b3 100644 --- a/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.h +++ b/local/recipes/kde/kirigami/source/src/platform/virtualkeyboardwatcher.h @@ -18,12 +18,14 @@ namespace Kirigami { namespace Platform { -/** - * @class VirtualKeyboardWatcher virtualkeyboardwatcher.h +/*! + * \class Kirigami::Platform::VirtualKeyboardWatcher + * \inmodule KirigamiPlatform + * \inheaderfile Kirigami/Platform/VirtualKeyboardWatcher * - * This class reports on the status of KWin's VirtualKeyboard DBus interface. + * \brief This class reports on the status of KWin's VirtualKeyboard DBus interface. * - * @since 5.91 + * \since 5.91 */ class KIRIGAMIPLATFORM_EXPORT VirtualKeyboardWatcher : public QObject { @@ -33,22 +35,37 @@ public: VirtualKeyboardWatcher(QObject *parent = nullptr); ~VirtualKeyboardWatcher(); + /*! + * \property Kirigami::Platform::VirtualKeyboardWatcher::available + */ Q_PROPERTY(bool available READ available NOTIFY availableChanged FINAL) bool available() const; Q_SIGNAL void availableChanged(); + /*! + * \property Kirigami::Platform::VirtualKeyboardWatcher::enabled + */ Q_PROPERTY(bool enabled READ enabled NOTIFY enabledChanged FINAL) bool enabled() const; Q_SIGNAL void enabledChanged(); + /*! + * \property Kirigami::Platform::VirtualKeyboardWatcher::active + */ Q_PROPERTY(bool active READ active NOTIFY activeChanged FINAL) bool active() const; Q_SIGNAL void activeChanged(); + /*! + * \property Kirigami::Platform::VirtualKeyboardWatcher::visible + */ Q_PROPERTY(bool visible READ visible NOTIFY visibleChanged FINAL) bool visible() const; Q_SIGNAL void visibleChanged(); + /*! + * \property Kirigami::Platform::VirtualKeyboardWatcher::willShowOnActive + */ Q_PROPERTY(bool willShowOnActive READ willShowOnActive NOTIFY willShowOnActiveChanged FINAL) bool willShowOnActive() const; Q_SIGNAL void willShowOnActiveChanged(); diff --git a/local/recipes/kde/kirigami/source/src/primitives/CMakeLists.txt b/local/recipes/kde/kirigami/source/src/primitives/CMakeLists.txt index 0b2b9a8cd3..05d5b77cf1 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/src/primitives/CMakeLists.txt @@ -4,36 +4,41 @@ ecm_add_qml_module(KirigamiPrimitives URI "org.kde.kirigami.primitives" VERSION 2.0 GENERATE_PLUGIN_SOURCE INSTALLED_PLUGIN_TARGET KF6KirigamiPrimitives - DEPENDENCIES QtQuick org.kde.kirigami.platform + DEPENDENCIES + QtQuick + TARGET KirigamiPlatform ) target_sources(KirigamiPrimitives PRIVATE + alignedsizeattached.cpp + alignedsizeattached.h icon.cpp icon.h + mnemonicattached.h + mnemonicattached.cpp shadowedrectangle.cpp shadowedrectangle.h shadowedtexture.cpp shadowedtexture.h + scenepositionattached.cpp + scenepositionattached.h - scenegraph/managedtexturenode.cpp - scenegraph/managedtexturenode.h - scenegraph/paintedrectangleitem.cpp - scenegraph/paintedrectangleitem.h - scenegraph/shadowedborderrectanglematerial.cpp - scenegraph/shadowedborderrectanglematerial.h - scenegraph/shadowedbordertexturematerial.cpp - scenegraph/shadowedbordertexturematerial.h - scenegraph/shadowedrectanglematerial.cpp - scenegraph/shadowedrectanglematerial.h - scenegraph/shadowedrectanglenode.cpp - scenegraph/shadowedrectanglenode.h - scenegraph/shadowedtexturematerial.cpp - scenegraph/shadowedtexturematerial.h - scenegraph/shadowedtexturenode.cpp - scenegraph/shadowedtexturenode.h + scenegraph/shadernode.cpp + scenegraph/shadernode.h + scenegraph/shadermaterial.cpp + scenegraph/shadermaterial.h + scenegraph/iconmaterial.cpp + scenegraph/iconmaterial.h + scenegraph/iconnode.cpp + scenegraph/iconnode.h + scenegraph/softwarerectanglenode.cpp + scenegraph/softwarerectanglenode.h + scenegraph/texturecache.cpp + scenegraph/texturecache.h ) ecm_target_qml_sources(KirigamiPrimitives SOURCES + IconPropertiesGroup.qml Separator.qml ShadowedImage.qml ) @@ -46,7 +51,7 @@ set_target_properties(KirigamiPrimitives PROPERTIES target_include_directories(KirigamiPrimitives PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..) -target_link_libraries(KirigamiPrimitives PRIVATE Qt6::Quick Qt6::Network KirigamiPlatform) +target_link_libraries(KirigamiPrimitives PRIVATE Qt6::Quick KirigamiPlatform) if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") set(_extra_options DEBUGINFO) @@ -54,34 +59,8 @@ else() set(_extra_options PRECOMPILE OPTIMIZED) endif() -qt6_add_shaders(KirigamiPrimitives "shaders" - BATCHABLE - PREFIX "/qt/qml/org/kde/kirigami/primitives/shaders" - FILES - shaders/shadowedrectangle.vert - shaders/shadowedrectangle.frag - shaders/shadowedrectangle_lowpower.frag - shaders/shadowedborderrectangle.frag - shaders/shadowedborderrectangle_lowpower.frag - shaders/shadowedtexture.frag - shaders/shadowedtexture_lowpower.frag - shaders/shadowedbordertexture.frag - shaders/shadowedbordertexture_lowpower.frag - OUTPUTS - shadowedrectangle.vert.qsb - shadowedrectangle.frag.qsb - shadowedrectangle_lowpower.frag.qsb - shadowedborderrectangle.frag.qsb - shadowedborderrectangle_lowpower.frag.qsb - shadowedtexture.frag.qsb - shadowedtexture_lowpower.frag.qsb - shadowedbordertexture.frag.qsb - shadowedbordertexture_lowpower.frag.qsb - ${_extra_options} - OUTPUT_TARGETS _out_targets -) +include(shaders.cmake) ecm_finalize_qml_module(KirigamiPrimitives EXPORT KirigamiTargets) -install(TARGETS KirigamiPrimitives ${_out_targets} EXPORT KirigamiTargets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) - +install(TARGETS KirigamiPrimitives EXPORT KirigamiTargets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) diff --git a/local/recipes/kde/kirigami/source/src/primitives/Separator.qml b/local/recipes/kde/kirigami/source/src/primitives/Separator.qml index ddcede299b..23fa421247 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/Separator.qml +++ b/local/recipes/kde/kirigami/source/src/primitives/Separator.qml @@ -8,46 +8,64 @@ import QtQuick import org.kde.kirigami.platform as Platform +import org.kde.kirigami.primitives + + +/*! + \qmltype Separator + \inqmlmodule org.kde.kirigami.primitives + + \brief A visual separator. + + Useful for splitting one set of items from another. -/** - * @brief A visual separator. - * - * Useful for splitting one set of items from another. - * - * @inherit QtQuick.Rectangle */ -Rectangle { +Item { id: root - implicitHeight: 1 implicitWidth: 1 + implicitHeight: 1 Accessible.role: Accessible.Separator + Accessible.focusable: false enum Weight { Light, Normal } - /** - * @brief This property holds the visual weight of the separator. - * - * Weight options: - * * ``Kirigami.Separator.Weight.Light`` - * * ``Kirigami.Separator.Weight.Normal`` - * - * default: ``Kirigami.Separator.Weight.Normal`` - * - * @since 5.72 - * @since org.kde.kirigami 2.12 + /*! + \brief This property holds the visual weight of the separator. + + Weight options: + \list + \li Kirigami.Separator.Weight.Light + \li Kirigami.Separator.Weight.Normal + \endlist + + default: Kirigami.Separator.Weight.Normal + + \since 5.72 */ property int weight: Separator.Weight.Normal - /* TODO: If we get a separator color role, change this to - * mix weights lower than Normal with the background color - * and mix weights higher than Normal with the text color. - */ - color: Platform.ColorUtils.linearInterpolation( - Platform.Theme.backgroundColor, - Platform.Theme.textColor, - weight === Separator.Weight.Light ? Platform.Theme.lightFrameContrast : Platform.Theme.frameContrast - ) + + property alias color: internal.color + + // The separator is drawn by an internal rectangle, which gets moved and resized + // in a way to align exactly to the pixel grid in fractional scaling + Rectangle { + id: internal + + AlignedSize.width: root.width + AlignedSize.height: root.height + + /* TODO: If we get a separator color role, change this to + * mix weights lower than Normal with the background color + * and mix weights higher than Normal with the text color. + */ + color: Platform.ColorUtils.linearInterpolation( + Platform.Theme.backgroundColor, + Platform.Theme.textColor, + root.weight === Separator.Weight.Light ? Platform.Theme.lightFrameContrast : Platform.Theme.frameContrast + ) + } } diff --git a/local/recipes/kde/kirigami/source/src/primitives/ShadowedImage.qml b/local/recipes/kde/kirigami/source/src/primitives/ShadowedImage.qml index a122389027..21cfdc0f56 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/ShadowedImage.qml +++ b/local/recipes/kde/kirigami/source/src/primitives/ShadowedImage.qml @@ -6,130 +6,141 @@ */ import QtQuick -import org.kde.kirigami as Kirigami +import org.kde.kirigami.primitives as Primitives -/** - * @brief An image with a shadow. - * - * This item will render a image, with a shadow below it. The rendering is done - * using distance fields, which provide greatly improved performance. The shadow is - * rendered outside of the item's bounds, so the item's width and height are the - * don't include the shadow. - * - * Example usage: - * @code - * import org.kde.kirigami - * - * ShadowedImage { - * source: 'qrc:/myKoolGearPicture.png' - * - * radius: 20 - * - * shadow.size: 20 - * shadow.xOffset: 5 - * shadow.yOffset: 5 - * - * border.width: 2 - * border.color: Kirigami.Theme.textColor - * - * corners.topLeftRadius: 4 - * corners.topRightRadius: 5 - * corners.bottomLeftRadius: 2 - * corners.bottomRightRadius: 10 - * } - * @endcode - * - * @since 5.69 - * @since 2.12 - * @inherit Item +/*! + \qmltype ShadowedImage + \inqmlmodule org.kde.kirigami.primitives + + \brief An image with a shadow. + + This item will render a image, with a shadow below it. The rendering is done + using distance fields, which provide greatly improved performance. The shadow is + rendered outside of the item's bounds, so the item's width and height are the + don't include the shadow. + + Example usage: + \qml + import org.kde.kirigami + + ShadowedImage { + source: 'qrc:/myKoolGearPicture.png' + + radius: 20 + + shadow.size: 20 + shadow.xOffset: 5 + shadow.yOffset: 5 + + border.width: 2 + border.color: Kirigami.Theme.textColor + + corners.topLeftRadius: 4 + corners.topRightRadius: 5 + corners.bottomLeftRadius: 2 + corners.bottomRightRadius: 10 + } + \endqml + + \since 5.69 */ Item { id: root //BEGIN properties - /** - * @brief This property holds the color that will be underneath the image. - * - * This will be visible if the image has transparancy. - * - * @see org::kde::kirigami::ShadowedRectangle::radius - * @property color color + /*! + \qmlproperty color ShadowedImage::color + \brief This property holds the color that will be underneath the image. + + This will be visible if the image has transparency. + + \sa ShadowedRectangle::radius */ property alias color: shadowRectangle.color - /** - * @brief This propery holds the corner radius of the image. - * @see org::kde::kirigami::ShadowedRectangle::radius - * @property real radius + /*! + \qmlproperty real ShadowedImage::radius + + \brief This property holds the corner radius of the image. + \sa ShadowedRectangle::radius */ property alias radius: shadowRectangle.radius - /** - * @brief This property holds shadow's properties group. - * @see org::kde::kirigami::ShadowedRectangle::shadow - * @property org::kde::kirigami::ShadowedRectangle::ShadowGroup shadow + /*! + \qmlproperty real ShadowedImage::shadow.size + \qmlproperty real ShadowedImage::shadow.xOffset + \qmlproperty real ShadowedImage::shadow.yOffset + \qmlproperty real ShadowedImage::shadow.color + + \brief This property holds shadow's properties group. + \sa ShadowedRectangle::shadow */ property alias shadow: shadowRectangle.shadow - /** - * @brief This propery holds the border's properties of the image. - * @see org::kde::kirigami::ShadowedRectangle::border - * @property org::kde::kirigami::ShadowedRectangle::BorderGroup border + /*! + \qmlproperty real ShadowedImage::border.width + \qmlproperty real ShadowedImage::border.color + \brief This property holds the border's properties of the image. + \sa ShadowedRectangle::border */ property alias border: shadowRectangle.border - /** - * @brief This propery holds the corner radius properties of the image. - * @see org::kde::kirigami::ShadowedRectangle::corners - * @property org::kde::kirigami::ShadowedRectangle::CornersGroup corners + /*! + \qmlproperty real ShadowedImage::corners.topLeftRadius + \qmlproperty real ShadowedImage::corners.topRightRadius + \qmlproperty real ShadowedImage::corners.bottomLeftRadius + \qmlproperty real ShadowedImage::corners.bottomRightRadius + \brief This property holds the corner radius properties of the image. + \sa ShadowedRectangle::corners */ property alias corners: shadowRectangle.corners - /** - * @brief This propery holds the source of the image. - * @brief QtQuick.Image::source + /*! + \qmlproperty var ShadowedImage::source + \brief This property holds the source of the image. + \sa Image::source */ property alias source: image.source - /** - * @brief This property sets whether this image should be loaded asynchronously. - * - * Set this to false if you want the main thread to load the image, which - * blocks it until the image is loaded. Setting this to true loads the - * image in a separate thread which is useful when maintaining a responsive - * user interface is more desirable than having images immediately visible. - * - * @see QtQuick.Image::asynchronous - * @property bool asynchronous + /*! + \qmlproperty bool asynchronous + \brief This property sets whether this image should be loaded asynchronously. + + Set this to false if you want the main thread to load the image, which + blocks it until the image is loaded. Setting this to true loads the + image in a separate thread which is useful when maintaining a responsive + user interface is more desirable than having images immediately visible. + + \sa Image::asynchronous */ property alias asynchronous: image.asynchronous - /** - * @brief This property defines what happens when the source image has a different - * size than the item. - * @see QtQuick.Image::fillMode - * @property int fillMode + /*! + \qmlproperty int fillMode + \brief This property defines what happens when the source image has a different + size than the item. + \sa Image::fillMode */ property alias fillMode: image.fillMode - /** - * @brief This property holds whether the image uses mipmap filtering when scaled - * or transformed. - * @see QtQuick.Image::mipmap - * @property bool mipmap + /*! + \qmlproperty bool mipmap + \brief This property holds whether the image uses mipmap filtering when scaled + or transformed. + \sa Image::mipmap */ property alias mipmap: image.mipmap - /** - * @brief This property holds the scaled width and height of the full-frame image. - * @see QtQuick.Image::sourceSize + /*! + \brief This property holds the scaled width and height of the full-frame image. + \sa Image::sourceSize */ property alias sourceSize: image.sourceSize - /** - * @brief This property holds the status of image loading. - * @see QtQuick.Image::status - * @since 6.5 + /*! + \brief This property holds the status of image loading. + \sa Image::status + \since 6.5 */ readonly property alias status: image.status //END properties @@ -142,12 +153,12 @@ Item { ShaderEffectSource { id: textureSource sourceItem: image - hideSource: !shadowRectangle.softwareRendering + hideSource: true } - Kirigami.ShadowedTexture { + Primitives.ShadowedTexture { id: shadowRectangle anchors.fill: parent - source: (image.status === Image.Ready && !softwareRendering) ? textureSource : null + source: image.status === Image.Ready ? textureSource : null } } diff --git a/local/recipes/kde/kirigami/source/src/primitives/alignedsizeattached.h b/local/recipes/kde/kirigami/source/src/primitives/alignedsizeattached.h index 8cdddaf418..774b2c54c1 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/alignedsizeattached.h +++ b/local/recipes/kde/kirigami/source/src/primitives/alignedsizeattached.h @@ -19,14 +19,12 @@ class QQuickItem; * * \brief An attached property that aligns a size on the physical pixel grid. * - * Transforms a size to the nearest one perfectly aligned to the pixel grid + * Adjusts a size to the nearest one perfectly aligned to the pixel grid * in case fractional scaling in used. * \qml * import org.kde.kirigami as Kirigami * * Rectangle { - * width: AlignedSize.alignedWidth - * height: AlignedSize.alignedHeight * AlignedSize.width: Units.gridUnit * AlignedSize.height: 1 * } diff --git a/local/recipes/kde/kirigami/source/src/primitives/icon.cpp b/local/recipes/kde/kirigami/source/src/primitives/icon.cpp index 3d10fccd6d..645bb3e9fd 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/icon.cpp +++ b/local/recipes/kde/kirigami/source/src/primitives/icon.cpp @@ -6,7 +6,9 @@ */ #include "icon.h" -#include "scenegraph/managedtexturenode.h" +#include "scenegraph/iconnode.h" +#include "scenegraph/shadernode.h" +#include "scenegraph/softwarerectanglenode.h" #include "platform/platformtheme.h" #include "platform/units.h" @@ -20,12 +22,10 @@ #include #include #include -#include #include #include -#include -Q_GLOBAL_STATIC(ImageTexturesCache, s_iconImageCache) +using namespace Qt::StringLiterals; Icon::Icon(QQuickItem *parent) : QQuickItem(parent) @@ -175,30 +175,6 @@ QColor Icon::color() const return m_color; } -QSGNode *Icon::createSubtree(qreal initialOpacity) -{ - auto opacityNode = new QSGOpacityNode{}; - opacityNode->setFlag(QSGNode::OwnedByParent, true); - opacityNode->setOpacity(initialOpacity); - - auto *mNode = new ManagedTextureNode; - - mNode->setTexture(s_iconImageCache->loadTexture(window(), m_icon, QQuickWindow::TextureCanUseAtlas)); - - opacityNode->appendChildNode(mNode); - - return opacityNode; -} - -void Icon::updateSubtree(QSGNode *node, qreal opacity) -{ - auto opacityNode = static_cast(node); - opacityNode->setOpacity(opacity); - - auto textureNode = static_cast(opacityNode->firstChild()); - textureNode->setFiltering(smooth() ? QSGTexture::Linear : QSGTexture::Nearest); -} - QSGNode *Icon::updatePaintNode(QSGNode *node, QQuickItem::UpdatePaintNodeData * /*data*/) { if (m_source.isNull() || qFuzzyIsNull(width()) || qFuzzyIsNull(height())) { @@ -206,74 +182,64 @@ QSGNode *Icon::updatePaintNode(QSGNode *node, QQuickItem::UpdatePaintNodeData * return nullptr; } - if (!node) { - node = new QSGNode{}; - } + m_sizeChanged = false; - if (m_animation && m_animation->state() == QAbstractAnimation::Running) { - if (node->childCount() < 2) { - node->appendChildNode(createSubtree(0.0)); - m_textureChanged = true; + if (isSoftwareRendering()) { + auto rectangleNode = static_cast(node); + if (!rectangleNode) { + rectangleNode = new SoftwareRectangleNode{}; } - // Rather than doing a perfect crossfade, first fade in the new texture - // then fade out the old texture. This is done to avoid the underlying - // color bleeding through when both textures are at ~0.5 opacity, which - // causes flickering if the two textures are very similar. - updateSubtree(node->firstChild(), 2.0 - m_animValue * 2.0); - updateSubtree(node->lastChild(), m_animValue * 2.0); + rectangleNode->setWindow(window()); + rectangleNode->setRect(calculateNodeRect()); + rectangleNode->setImage(m_icon); + return rectangleNode; + } + + auto shaderNode = static_cast(node); + if (!shaderNode) { + shaderNode = new IconNode{}; + } + + bool shouldBeAnimated = !m_oldIcon.isNull() && m_animated; + + QString shaderName = u"icon_"_s; + if (isMask()) { + shaderName += u"mask_"_s; + } + if (shouldBeAnimated) { + shaderName += u"mix"_s; } else { - if (node->childCount() == 0) { - node->appendChildNode(createSubtree(1.0)); - m_textureChanged = true; - } + shaderName += u"default"_s; + } + shaderNode->setShader(shaderName); + shaderNode->setUniformBufferSize(sizeof(float) * 28); - if (node->childCount() > 1) { - auto toRemove = node->firstChild(); - node->removeChildNode(toRemove); - delete toRemove; - } - - updateSubtree(node->firstChild(), 1.0); + if (shouldBeAnimated) { + shaderNode->setTextureChannels(2); + } else { + shaderNode->setTextureChannels(1); } - if (m_textureChanged) { - auto mNode = static_cast(node->lastChild()->firstChild()); - mNode->setTexture(s_iconImageCache->loadTexture(window(), m_icon, QQuickWindow::TextureCanUseAtlas)); - m_textureChanged = false; - m_sizeChanged = true; + auto maskColor = !m_color.isValid() || m_color == Qt::transparent ? (m_selected ? m_theme->highlightedTextColor() : m_theme->textColor()) : m_color; + + UniformDataStream stream(shaderNode->uniformData()); + stream.skipMatrixOpacity(); + stream << float(m_animValue) // mix_amount + << (m_active ? 0.7f : 0.0f) // highlight_amount + << (isEnabled() ? 0.0f : 1.0f) // desaturate_amount + << ShaderNode::toPremultiplied(maskColor); // mask_color + + shaderNode->setTexture(0, m_icon, window(), QQuickWindow::TextureCanUseAtlas); + + if (shouldBeAnimated) { + shaderNode->setTexture(1, m_oldIcon, window(), QQuickWindow::TextureCanUseAtlas); } - if (m_sizeChanged) { - const QSizeF iconPixSize(m_icon.width() / m_devicePixelRatio, m_icon.height() / m_devicePixelRatio); - const QSizeF itemPixSize = QSizeF((size() * m_devicePixelRatio).toSize()) / m_devicePixelRatio; - QRectF nodeRect(QPoint(0, 0), itemPixSize); + shaderNode->setRect(calculateNodeRect()); + shaderNode->update(); - if (itemPixSize.width() != 0 && itemPixSize.height() != 0) { - if (iconPixSize != itemPixSize) { - // At this point, the image will already be scaled, but we need to output it in - // the correct aspect ratio, painted centered in the viewport. So: - QRectF destination(QPointF(0, 0), QSizeF(m_icon.size()).scaled(m_paintedSize, Qt::KeepAspectRatio)); - destination.moveCenter(nodeRect.center()); - destination.moveTopLeft(QPointF(destination.topLeft().toPoint() * m_devicePixelRatio) / m_devicePixelRatio); - nodeRect = destination; - } - } - - // Adjust the final node on the pixel grid - QPointF globalPixelPos = mapToScene(nodeRect.topLeft()) * m_devicePixelRatio; - QPointF posAdjust = QPointF(globalPixelPos.x() - std::round(globalPixelPos.x()), globalPixelPos.y() - std::round(globalPixelPos.y())); - nodeRect.moveTopLeft(nodeRect.topLeft() - posAdjust); - - for (int i = 0; i < node->childCount(); ++i) { - auto mNode = static_cast(node->childAtIndex(i)->firstChild()); - mNode->setRect(nodeRect); - } - - m_sizeChanged = false; - } - - return node; + return shaderNode; } void Icon::geometryChange(const QRectF &newGeometry, const QRectF &oldGeometry) @@ -389,23 +355,10 @@ void Icon::updatePolish() m_icon = QImage(size, QImage::Format_Alpha8); m_icon.fill(Qt::transparent); } - - const QColor tintColor = // - !m_color.isValid() || m_color == Qt::transparent // - ? (m_selected ? m_theme->highlightedTextColor() : m_theme->textColor()) - : m_color; - - // TODO: initialize m_isMask with icon.isMask() - if (tintColor.alpha() > 0 && isMask()) { - QPainter p(&m_icon); - p.setCompositionMode(QPainter::CompositionMode_SourceIn); - p.fillRect(m_icon.rect(), tintColor); - p.end(); - } } // don't animate initial setting - bool animated = m_animated && !m_oldIcon.isNull() && !m_sizeChanged && !m_blockNextAnimation; + bool animated = m_animated && !m_oldIcon.isNull() && !m_sizeChanged && !m_blockNextAnimation && !isSoftwareRendering(); if (animated && m_animation) { m_animValue = 0.0; @@ -513,12 +466,7 @@ QImage Icon::findIcon(const QSize &size) const auto url = m_source.toUrl(); QQmlEngine *engine = qmlEngine(this); QNetworkAccessManager *qnam; - if (engine && (!m_networkReply || m_networkReply->url() != url)) { - // Real QtNetwork is built and linked via Qt6::Network in qtbase. The - // parented QNetworkAccessManager is destroyed with the icon. If - // scheme:network is unavailable on this target, handleFinished - // falls through to the placeholder icon (see further down). - qnam = new QNetworkAccessManager(this); + if (engine && (qnam = engine->networkAccessManager()) && (!m_networkReply || m_networkReply->url() != url)) { QNetworkRequest request(url); request.setAttribute(QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache); m_networkReply = qnam->get(request); @@ -550,18 +498,6 @@ QImage Icon::findIcon(const QSize &size) return img; } -QIcon::Mode Icon::iconMode() const -{ - if (!isEnabled()) { - return QIcon::Disabled; - } else if (m_selected) { - return QIcon::Selected; - } else if (m_active) { - return QIcon::Active; - } - return QIcon::Normal; -} - QString Icon::fallback() const { return m_fallback; @@ -639,7 +575,15 @@ QImage Icon::iconPixmap(const QIcon &icon) const } } - return sourceIcon.pixmap(actualSize, m_devicePixelRatio, iconMode(), QIcon::On).toImage(); + auto mode = QIcon::Mode::Normal; + if (isSoftwareRendering()) { + if (!isEnabled()) { + mode = QIcon::Mode::Disabled; + } else if (m_active) { + mode = QIcon::Mode::Active; + } + } + return sourceIcon.pixmap(actualSize, m_devicePixelRatio, mode, QIcon::On).toImage(); } QIcon Icon::loadFromTheme(const QString &iconName) const @@ -768,4 +712,17 @@ void Icon::windowVisibleChanged(bool visible) } } +QRectF Icon::calculateNodeRect() +{ + // m_paintedSize should have the correct size for painting the icon already. + // So we just need to make sure the node is centered. + auto position = QPointF{(width() - m_paintedSize.width()) / 2.0, (height() - m_paintedSize.height()) / 2.0}; + return QRectF{position, m_paintedSize}; +} + +bool Icon::isSoftwareRendering() const +{ + return window() && window()->rendererInterface()->graphicsApi() == QSGRendererInterface::Software; +} + #include "moc_icon.cpp" diff --git a/local/recipes/kde/kirigami/source/src/primitives/icon.h b/local/recipes/kde/kirigami/source/src/primitives/icon.h index 83de81ea27..d94ea30fa7 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/icon.h +++ b/local/recipes/kde/kirigami/source/src/primitives/icon.h @@ -28,35 +28,47 @@ class Units; } } -/** - * Class for rendering an icon in UI. +/*! + * \qmltype Icon + * \inqmlmodule org.kde.kirigami.primitives + * + * \brief Class for rendering an icon supporting many different sources. + * + * \l source is the most important property, and determines where to get the + * icon from. It can be a FreeDesktop-compatible icon name, a URL, a local + * image file, or a bundled resource. Use \l fallback to specify the name of an + * icon from the current icon theme to display if the requested icon is not + * found. */ class Icon : public QQuickItem { Q_OBJECT QML_ELEMENT - /** - * The source of this icon. An `Icon` can pull from: + /*! + * \qmlproperty var Icon::source * - * * The icon theme: - * @include icon/IconThemeSource.qml - * * The filesystem: - * @include icon/FilesystemSource.qml - * * Remote URIs: - * @include icon/InternetSource.qml - * * Custom providers: - * @include icon/CustomSource.qml - * * Your application's bundled resources: - * @include icon/ResourceSource.qml + * The source of this icon. An Icon can pull from: + * \list + * \li The icon theme: + * \quotefile icon/IconThemeSource.qml + * \li The filesystem: + * \quotefile icon/FilesystemSource.qml + * \li Remote URIs: + * \quotefile icon/InternetSource.qml + * \li Custom providers: + * \quotefile icon/CustomSource.qml + * \li Your application's bundled resources: + * \quotefile icon/ResourceSource.qml + * \endlist * - * @note See https://doc.qt.io/qt-5/qtquickcontrols2-icons.html for how to + * \note See https://doc.qt.io/qt-5/qtquickcontrols2-icons.html for how to * bundle icon themes in your application to refer to them by name instead of * by resource URL. * - * @note Use `fallback` to provide a fallback theme name for icons. + * \note Use fallback to provide a fallback icon from the current icon theme. * - * @note Cuttlefish is a KDE application that lets you view all the icons that + * \note Cuttlefish is a KDE application that lets you view all the icons that * you can use for your application. It offers a number of useful features such * as previews of their appearance across different installed themes, previews * at different sizes, and more. You might find it a useful tool when deciding @@ -64,120 +76,160 @@ class Icon : public QQuickItem */ Q_PROPERTY(QVariant source READ source WRITE setSource NOTIFY sourceChanged FINAL) - /** - * The name of a fallback icon to load from the icon theme when the `source` - * cannot be found. The default fallback icon is `"unknown"`. + /*! + * \qmlproperty string Icon::fallback * - * @include icon/Fallback.qml + * The name of a fallback icon to load from the icon theme when the source + * cannot be found. The default fallback icon is \c "unknown". * - * @note This will only be loaded if source is unavailable (e.g. it doesn't exist, or network issues have prevented loading). + * \quotefile icon/Fallback.qml + * + * \note This will only be loaded if source is unavailable (e.g. it doesn't exist, or network issues have prevented loading). */ Q_PROPERTY(QString fallback READ fallback WRITE setFallback NOTIFY fallbackChanged FINAL) - /** - * The name of an icon from the icon theme to show while the icon set in `source` is - * being loaded. This is primarily relevant for remote sources, or those using slow- - * loading image providers. The default temporary icon is `"image-x-icon"` + /*! + * \qmlproperty string Icon::placeholder * - * @note This will only be loaded if the source is a type which can be so long-loading + * The name of an icon from the icon theme to show while the icon set in \l source is + * being loaded. This is primarily relevant for remote sources, or those using slow- + * loading image providers. The default temporary icon is \c "image-x-icon" + * + * \note This will only be loaded if the source is a type which can be so long-loading * that a temporary image makes sense (e.g. a remote image, or from an ImageProvider * of the type QQmlImageProviderBase::ImageResponse) * - * @since 5.15 + * \since 5.15 */ Q_PROPERTY(QString placeholder READ placeholder WRITE setPlaceholder NOTIFY placeholderChanged FINAL) - /** + /*! + * \qmlproperty bool Icon::active + * * Whether this icon will use the QIcon::Active mode when drawing the icon, * resulting in a graphical effect being applied to the icon to indicate that * it is currently active. * * This is typically used to indicate when an item is being hovered or pressed. * - * @image html icon/active.png + * \image icon/active.png * * The color differences under the default KDE color palette, Breeze. Note * that a dull highlight background is typically displayed behind active icons and * it is recommended to add one if you are creating a custom component. + * + * The default is \c false. */ Q_PROPERTY(bool active READ active WRITE setActive NOTIFY activeChanged FINAL) - /** - * Whether this icon's `source` is valid and it is being used. + /*! + * \qmlproperty bool Icon::valid + * + * Whether this icon's source is valid and it is being used. */ Q_PROPERTY(bool valid READ valid NOTIFY validChanged FINAL) - /** + /*! + * \qmlproperty bool Icon::selected + * * Whether this icon will use the QIcon::Selected mode when drawing the icon, * resulting in a graphical effect being applied to the icon to indicate that * it is currently selected. * * This is typically used to indicate when a list item is currently selected. * - * @image html icon/selected.png + * \image icon/selected.png * * The color differences under the default KDE color palette, Breeze. Note * that a blue background is typically displayed behind selected elements. + * + * The default is \c false. */ Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectedChanged FINAL) - /** + /*! + * \qmlproperty bool Icon::isMask + * * Whether this icon will be treated as a mask. When an icon is being used * as a mask, all non-transparent colors are replaced with the color provided in the Icon's - * @link Icon::color color @endlink property. + * color property. * - * @see color + * The default is \c false. + * + * \sa color */ Q_PROPERTY(bool isMask READ isMask WRITE setIsMask NOTIFY isMaskChanged FINAL) - /** - * The color to use when drawing this icon when `isMask` is enabled. - * If this property is not set or is `Qt::transparent`, the icon will use - * the text or the selected text color, depending on if `selected` is set to - * true. + /*! + * \qmlproperty color Icon::color + * + * The color to draw this icon in when \l isMask is true. + * If this property is not set or is \c Qt::transparent, the icon will use + * the text or the selected text color, depending on if selected is set to + * true. This property has no effect if \l isMask is \c false. */ Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged FINAL) - /** - * Whether the icon is correctly loaded, is asynchronously loading or there was an error. + /*! + * \qmlproperty enumeration Icon::status + * + * \qmlenumeratorsfrom Icon::Status + * + * Whether the icon is correctly loaded, is asynchronously loading, or there was an error. * Note that image loading will not be initiated until the item is shown, so if the Icon is not visible, * it can only have Null or Loading states. - * @since 5.15 + * \since 5.15 */ Q_PROPERTY(Icon::Status status READ status NOTIFY statusChanged FINAL) - /** + /*! + * \qmlproperty real Icon::paintedWidth + * * The width of the painted area measured in pixels. This will be smaller than or * equal to the width of the area taken up by the Item itself. This can be 0. * - * @since 5.15 + * \since 5.15 */ Q_PROPERTY(qreal paintedWidth READ paintedWidth NOTIFY paintedAreaChanged FINAL) - /** + /*! + * \qmlproperty real Icon::paintedHeight + * * The height of the painted area measured in pixels. This will be smaller than or * equal to the height of the area taken up by the Item itself. This can be 0. * - * @since 5.15 + * \since 5.15 */ Q_PROPERTY(qreal paintedHeight READ paintedHeight NOTIFY paintedAreaChanged FINAL) - /** - * If set, icon will blend when the source is changed + /*! + * \qmlproperty bool Icon::animated + * + * If set, icon will blend when the source is changed. */ Q_PROPERTY(bool animated READ isAnimated WRITE setAnimated NOTIFY animatedChanged FINAL) - /** - * If set, icon will round the painted size to defined icon sizes. Default is true. + /*! + * \qmlproperty bool Icon::roundToIconSize + * + * If set, icon will round the painted size to the nearest standard icon size. + * + * The default is \c true. */ Q_PROPERTY(bool roundToIconSize READ roundToIconSize WRITE setRoundToIconSize NOTIFY roundToIconSizeChanged FINAL) public: + /*! + * \value Null No icon has been set + * \value Ready The icon loaded correctly + * \value Loading The icon is being loaded, but not ready yet + * \value Error There was an error while loading the icon, for instance a non existent themed name, or an invalid url + */ enum Status { - Null = 0, /// No icon has been set - Ready, /// The icon loaded correctly - Loading, // The icon is being loaded, but not ready yet - Error, /// There was an error while loading the icon, for instance a non existent themed name, or an invalid url + Null = 0, + Ready, + Loading, + Error, }; Q_ENUM(Status) @@ -241,7 +293,6 @@ protected: QImage findIcon(const QSize &size); void handleFinished(QNetworkReply *reply); void handleRedirect(QNetworkReply *reply); - QIcon::Mode iconMode() const; bool guessMonochrome(const QImage &img); void setStatus(Status status); void updatePolish() override; @@ -257,6 +308,8 @@ private: QSize iconSizeHint() const; inline QImage iconPixmap(const QIcon &icon) const; QIcon loadFromTheme(const QString &iconName) const; + QRectF calculateNodeRect(); + bool isSoftwareRendering() const; Kirigami::Platform::PlatformTheme *m_theme = nullptr; Kirigami::Platform::Units *m_units = nullptr; diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/managedtexturenode.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/managedtexturenode.cpp deleted file mode 100644 index 5c021b1775..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/managedtexturenode.cpp +++ /dev/null @@ -1,61 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2011 Marco Martin - * SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez - * SPDX-FileCopyrightText: 2020 Carson Black - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "managedtexturenode.h" - -ManagedTextureNode::ManagedTextureNode() -{ -} - -void ManagedTextureNode::setTexture(std::shared_ptr texture) -{ - m_texture = texture; - QSGSimpleTextureNode::setTexture(texture.get()); -} - -ImageTexturesCache::ImageTexturesCache() - : d(new ImageTexturesCachePrivate) -{ -} - -ImageTexturesCache::~ImageTexturesCache() -{ -} - -std::shared_ptr ImageTexturesCache::loadTexture(QQuickWindow *window, const QImage &image, QQuickWindow::CreateTextureOptions options) -{ - qint64 id = image.cacheKey(); - std::shared_ptr texture = d->cache.value(id).value(window).lock(); - - if (!texture) { - auto cleanAndDelete = [this, window, id](QSGTexture *texture) { - QHash> &textures = (d->cache)[id]; - textures.remove(window); - if (textures.isEmpty()) { - d->cache.remove(id); - } - delete texture; - }; - texture = std::shared_ptr(window->createTextureFromImage(image, options), cleanAndDelete); - (d->cache)[id][window] = texture; - } - - // if we have a cache in an atlas but our request cannot use an atlassed texture - // create a new texture and use that - // don't use removedFromAtlas() as that requires keeping a reference to the non atlased version - if (!(options & QQuickWindow::TextureCanUseAtlas) && texture->isAtlasTexture()) { - texture = std::shared_ptr(window->createTextureFromImage(image, options)); - } - - return texture; -} - -std::shared_ptr ImageTexturesCache::loadTexture(QQuickWindow *window, const QImage &image) -{ - return loadTexture(window, image, {}); -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/managedtexturenode.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/managedtexturenode.h deleted file mode 100644 index b65a498ca2..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/managedtexturenode.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2011 Marco Martin - * SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez - * SPDX-FileCopyrightText: 2020 Carson Black - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#pragma once -#include -#include -#include -#include -#include - -class ManagedTextureNode : public QSGSimpleTextureNode -{ - Q_DISABLE_COPY(ManagedTextureNode) -public: - ManagedTextureNode(); - - void setTexture(std::shared_ptr texture); - -private: - std::shared_ptr m_texture; -}; - -typedef QHash>> TexturesCache; - -struct ImageTexturesCachePrivate { - TexturesCache cache; -}; - -class ImageTexturesCache -{ -public: - ImageTexturesCache(); - ~ImageTexturesCache(); - - /** - * @returns the texture for a given @p window and @p image. - * - * If an @p image id is the same as one already provided before, we won't create - * a new texture and return a shared pointer to the existing texture. - */ - std::shared_ptr loadTexture(QQuickWindow *window, const QImage &image, QQuickWindow::CreateTextureOptions options); - - std::shared_ptr loadTexture(QQuickWindow *window, const QImage &image); - -private: - std::unique_ptr d; -}; diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/paintedrectangleitem.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/paintedrectangleitem.cpp deleted file mode 100644 index 2aa6e5eaa9..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/paintedrectangleitem.cpp +++ /dev/null @@ -1,58 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "paintedrectangleitem.h" - -#include -#include - -PaintedRectangleItem::PaintedRectangleItem(QQuickItem *parent) - : QQuickPaintedItem(parent) -{ -} - -void PaintedRectangleItem::setColor(const QColor &color) -{ - m_color = color; - update(); -} - -void PaintedRectangleItem::setRadius(qreal radius) -{ - m_radius = radius; - update(); -} - -void PaintedRectangleItem::setBorderColor(const QColor &color) -{ - m_borderColor = color; - update(); -} - -void PaintedRectangleItem::setBorderWidth(qreal width) -{ - m_borderWidth = width; - update(); -} - -void PaintedRectangleItem::paint(QPainter *painter) -{ - painter->setRenderHint(QPainter::Antialiasing, true); - painter->setPen(Qt::transparent); - - auto radius = std::min(m_radius, std::min(width(), height()) / 2); - auto borderWidth = std::floor(m_borderWidth); - - if (borderWidth > 0.0) { - painter->setBrush(m_borderColor); - painter->drawRoundedRect(0, 0, width(), height(), radius, radius); - } - - painter->setBrush(m_color); - painter->drawRoundedRect(borderWidth, borderWidth, width() - borderWidth * 2, height() - borderWidth * 2, radius, radius); -} - -#include "moc_paintedrectangleitem.cpp" diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/paintedrectangleitem.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/paintedrectangleitem.h deleted file mode 100644 index 8036682c92..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/paintedrectangleitem.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#ifndef PAINTEDRECTANGLEITEM_H -#define PAINTEDRECTANGLEITEM_H - -#include - -/** - * A rectangle with a border and rounded corners, rendered through QPainter. - * - * This is a helper used by ShadowedRectangle as fallback for when software - * rendering is used, which means our shaders cannot be used. - * - * Since we cannot actually use QSGPaintedNode, we need to do some trickery - * using QQuickPaintedItem as a child of ShadowedRectangle. - * - * \warning This item is **not** intended as a general purpose item. - */ -class PaintedRectangleItem : public QQuickPaintedItem -{ - Q_OBJECT -public: - explicit PaintedRectangleItem(QQuickItem *parent = nullptr); - - void setColor(const QColor &color); - void setRadius(qreal radius); - void setBorderColor(const QColor &color); - void setBorderWidth(qreal width); - - void paint(QPainter *painter) override; - -private: - QColor m_color; - qreal m_radius = 0.0; - QColor m_borderColor; - qreal m_borderWidth = 0.0; -}; - -#endif // PAINTEDRECTANGLEITEM_H diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedborderrectanglematerial.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedborderrectanglematerial.cpp deleted file mode 100644 index be41113cea..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedborderrectanglematerial.cpp +++ /dev/null @@ -1,65 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "shadowedborderrectanglematerial.h" - -#include - -QSGMaterialType ShadowedBorderRectangleMaterial::staticType; - -ShadowedBorderRectangleMaterial::ShadowedBorderRectangleMaterial() -{ - setFlag(QSGMaterial::Blending, true); -} - -QSGMaterialShader *ShadowedBorderRectangleMaterial::createShader(QSGRendererInterface::RenderMode) const -{ - return new ShadowedBorderRectangleShader{shaderType}; -} - -QSGMaterialType *ShadowedBorderRectangleMaterial::type() const -{ - return &staticType; -} - -int ShadowedBorderRectangleMaterial::compare(const QSGMaterial *other) const -{ - auto material = static_cast(other); - - auto result = ShadowedRectangleMaterial::compare(other); - /* clang-format off */ - if (result == 0 - && material->borderColor == borderColor - && qFuzzyCompare(material->borderWidth, borderWidth)) { /* clang-format on */ - return 0; - } - - return QSGMaterial::compare(other); -} - -ShadowedBorderRectangleShader::ShadowedBorderRectangleShader(ShadowedRectangleMaterial::ShaderType shaderType) - : ShadowedRectangleShader(shaderType) -{ - setShader(shaderType, QStringLiteral("shadowedborderrectangle")); -} - -bool ShadowedBorderRectangleShader::updateUniformData(QSGMaterialShader::RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial) -{ - bool changed = ShadowedRectangleShader::updateUniformData(state, newMaterial, oldMaterial); - QByteArray *buf = state.uniformData(); - Q_ASSERT(buf->size() >= 160); - - if (!oldMaterial || newMaterial->compare(oldMaterial) != 0) { - const auto material = static_cast(newMaterial); - memcpy(buf->data() + 136, &material->borderWidth, 8); - float c[4]; - material->borderColor.getRgbF(&c[0], &c[1], &c[2], &c[3]); - memcpy(buf->data() + 144, c, 16); - changed = true; - } - - return changed; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedborderrectanglematerial.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedborderrectanglematerial.h deleted file mode 100644 index d7620ccc8f..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedborderrectanglematerial.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#pragma once - -#include "shadowedrectanglematerial.h" - -/** - * A material rendering a rectangle with a shadow and a border. - * - * This material uses a distance field shader to render a rectangle with a - * shadow below it, optionally with rounded corners and a border. - */ -class ShadowedBorderRectangleMaterial : public ShadowedRectangleMaterial -{ -public: - ShadowedBorderRectangleMaterial(); - - QSGMaterialShader *createShader(QSGRendererInterface::RenderMode) const override; - QSGMaterialType *type() const override; - int compare(const QSGMaterial *other) const override; - - float borderWidth = 0.0; - QColor borderColor = Qt::black; - - static QSGMaterialType staticType; -}; - -class ShadowedBorderRectangleShader : public ShadowedRectangleShader -{ -public: - ShadowedBorderRectangleShader(ShadowedRectangleMaterial::ShaderType shaderType); - - bool updateUniformData(QSGMaterialShader::RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial) override; -}; diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedbordertexturematerial.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedbordertexturematerial.cpp deleted file mode 100644 index 786631b08a..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedbordertexturematerial.cpp +++ /dev/null @@ -1,62 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "shadowedbordertexturematerial.h" - -#include - -QSGMaterialType ShadowedBorderTextureMaterial::staticType; - -ShadowedBorderTextureMaterial::ShadowedBorderTextureMaterial() - : ShadowedBorderRectangleMaterial() -{ - setFlag(QSGMaterial::Blending, true); -} - -QSGMaterialShader *ShadowedBorderTextureMaterial::createShader(QSGRendererInterface::RenderMode) const -{ - return new ShadowedBorderTextureShader{shaderType}; -} - -QSGMaterialType *ShadowedBorderTextureMaterial::type() const -{ - return &staticType; -} - -int ShadowedBorderTextureMaterial::compare(const QSGMaterial *other) const -{ - auto material = static_cast(other); - - auto result = ShadowedBorderRectangleMaterial::compare(other); - if (result == 0) { - if (material->textureSource == textureSource) { - return 0; - } else { - return (material->textureSource < textureSource) ? 1 : -1; - } - } - - return QSGMaterial::compare(other); -} - -ShadowedBorderTextureShader::ShadowedBorderTextureShader(ShadowedRectangleMaterial::ShaderType shaderType) - : ShadowedBorderRectangleShader(shaderType) -{ - setShader(shaderType, QStringLiteral("shadowedbordertexture")); -} - -void ShadowedBorderTextureShader::updateSampledImage(QSGMaterialShader::RenderState &state, - int binding, - QSGTexture **texture, - QSGMaterial *newMaterial, - QSGMaterial *oldMaterial) -{ - Q_UNUSED(state); - Q_UNUSED(oldMaterial); - if (binding == 1) { - *texture = static_cast(newMaterial)->textureSource; - } -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedbordertexturematerial.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedbordertexturematerial.h deleted file mode 100644 index e6441748fb..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedbordertexturematerial.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#pragma once - -#include - -#include "shadowedborderrectanglematerial.h" - -class ShadowedBorderTextureMaterial : public ShadowedBorderRectangleMaterial -{ -public: - ShadowedBorderTextureMaterial(); - - QSGMaterialShader *createShader(QSGRendererInterface::RenderMode) const override; - QSGMaterialType *type() const override; - int compare(const QSGMaterial *other) const override; - - QSGTexture *textureSource = nullptr; - - static QSGMaterialType staticType; -}; - -class ShadowedBorderTextureShader : public ShadowedBorderRectangleShader -{ -public: - ShadowedBorderTextureShader(ShadowedRectangleMaterial::ShaderType shaderType); - - void - updateSampledImage(QSGMaterialShader::RenderState &state, int binding, QSGTexture **texture, QSGMaterial *newMaterial, QSGMaterial *oldMaterial) override; -}; diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglematerial.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglematerial.cpp deleted file mode 100644 index d5beaa6692..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglematerial.cpp +++ /dev/null @@ -1,95 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "shadowedrectanglematerial.h" - -#include - -QSGMaterialType ShadowedRectangleMaterial::staticType; - -ShadowedRectangleMaterial::ShadowedRectangleMaterial() -{ - setFlag(QSGMaterial::Blending, true); -} - -QSGMaterialShader *ShadowedRectangleMaterial::createShader(QSGRendererInterface::RenderMode) const -{ - return new ShadowedRectangleShader{shaderType}; -} - -QSGMaterialType *ShadowedRectangleMaterial::type() const -{ - return &staticType; -} - -int ShadowedRectangleMaterial::compare(const QSGMaterial *other) const -{ - auto material = static_cast(other); - /* clang-format off */ - if (material->color == color - && material->shadowColor == shadowColor - && material->offset == offset - && material->aspect == aspect - && qFuzzyCompare(material->size, size) - && qFuzzyCompare(material->radius, radius)) { /* clang-format on */ - return 0; - } - - return QSGMaterial::compare(other); -} - -ShadowedRectangleShader::ShadowedRectangleShader(ShadowedRectangleMaterial::ShaderType shaderType) -{ - setShader(shaderType, QStringLiteral("shadowedrectangle")); -} - -bool ShadowedRectangleShader::updateUniformData(RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial) -{ - bool changed = false; - QByteArray *buf = state.uniformData(); - Q_ASSERT(buf->size() >= 160); - - if (state.isMatrixDirty()) { - const QMatrix4x4 m = state.combinedMatrix(); - memcpy(buf->data(), m.constData(), 64); - changed = true; - } - - if (state.isOpacityDirty()) { - const float opacity = state.opacity(); - memcpy(buf->data() + 72, &opacity, 4); - changed = true; - } - - if (!oldMaterial || newMaterial->compare(oldMaterial) != 0) { - const auto material = static_cast(newMaterial); - memcpy(buf->data() + 64, &material->aspect, 8); - memcpy(buf->data() + 76, &material->size, 4); - memcpy(buf->data() + 80, &material->radius, 16); - float c[4]; - material->color.getRgbF(&c[0], &c[1], &c[2], &c[3]); - memcpy(buf->data() + 96, c, 16); - material->shadowColor.getRgbF(&c[0], &c[1], &c[2], &c[3]); - memcpy(buf->data() + 112, c, 16); - memcpy(buf->data() + 128, &material->offset, 8); - changed = true; - } - - return changed; -} - -void ShadowedRectangleShader::setShader(ShadowedRectangleMaterial::ShaderType shaderType, const QString &shader) -{ - const auto shaderRoot = QStringLiteral(":/qt/qml/org/kde/kirigami/primitives/shaders/"); - - setShaderFileName(QSGMaterialShader::VertexStage, shaderRoot + QStringLiteral("shadowedrectangle.vert.qsb")); - - auto shaderFile = shader; - if (shaderType == ShadowedRectangleMaterial::ShaderType::LowPower) { - shaderFile += QStringLiteral("_lowpower"); - } - setShaderFileName(QSGMaterialShader::FragmentStage, shaderRoot + shaderFile + QStringLiteral(".frag.qsb")); -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglematerial.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglematerial.h deleted file mode 100644 index bafcae8d9a..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglematerial.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#pragma once - -#include -#include -#include - -/** - * A material rendering a rectangle with a shadow. - * - * This material uses a distance field shader to render a rectangle with a - * shadow below it, optionally with rounded corners. - */ -class ShadowedRectangleMaterial : public QSGMaterial -{ -public: - enum class ShaderType { - Standard, - LowPower, - }; - - ShadowedRectangleMaterial(); - - QSGMaterialShader *createShader(QSGRendererInterface::RenderMode) const override; - QSGMaterialType *type() const override; - int compare(const QSGMaterial *other) const override; - - QVector2D aspect = QVector2D{1.0, 1.0}; - float size = 0.0; - QVector4D radius = QVector4D{0.0, 0.0, 0.0, 0.0}; - QColor color = Qt::white; - QColor shadowColor = Qt::black; - QVector2D offset; - ShaderType shaderType = ShaderType::Standard; - - static QSGMaterialType staticType; -}; - -class ShadowedRectangleShader : public QSGMaterialShader -{ -public: - ShadowedRectangleShader(ShadowedRectangleMaterial::ShaderType shaderType); - - bool updateUniformData(QSGMaterialShader::RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial) override; - -protected: - void setShader(ShadowedRectangleMaterial::ShaderType shaderType, const QString &shader); -}; diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglenode.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglenode.cpp deleted file mode 100644 index ee1e58ec9b..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglenode.cpp +++ /dev/null @@ -1,207 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "shadowedrectanglenode.h" -#include "shadowedborderrectanglematerial.h" - -QColor premultiply(const QColor &color) -{ - return QColor::fromRgbF(color.redF() * color.alphaF(), // - color.greenF() * color.alphaF(), - color.blueF() * color.alphaF(), - color.alphaF()); -} - -ShadowedRectangleNode::ShadowedRectangleNode() -{ - m_geometry = new QSGGeometry{QSGGeometry::defaultAttributes_TexturedPoint2D(), 4}; - setGeometry(m_geometry); - - setFlags(QSGNode::OwnsGeometry | QSGNode::OwnsMaterial); -} - -void ShadowedRectangleNode::setBorderEnabled(bool enabled) -{ - // We can achieve more performant shaders by splitting the two into separate - // shaders. This requires separating the materials as well. So when - // borderWidth is increased to something where the border should be visible, - // switch to the with-border material. Otherwise use the no-border version. - - if (enabled) { - if (!m_material || m_material->type() == borderlessMaterialType()) { - auto newMaterial = createBorderMaterial(); - newMaterial->shaderType = m_shaderType; - setMaterial(newMaterial); - m_material = newMaterial; - m_rect = QRectF{}; - markDirty(QSGNode::DirtyMaterial); - } - } else { - if (!m_material || m_material->type() == borderMaterialType()) { - auto newMaterial = createBorderlessMaterial(); - newMaterial->shaderType = m_shaderType; - setMaterial(newMaterial); - m_material = newMaterial; - m_rect = QRectF{}; - markDirty(QSGNode::DirtyMaterial); - } - } -} - -void ShadowedRectangleNode::setRect(const QRectF &rect) -{ - if (rect == m_rect) { - return; - } - - m_rect = rect; - - QVector2D newAspect{1.0, 1.0}; - if (m_rect.width() >= m_rect.height()) { - newAspect.setX(m_rect.width() / m_rect.height()); - } else { - newAspect.setY(m_rect.height() / m_rect.width()); - } - - if (m_material->aspect != newAspect) { - m_material->aspect = newAspect; - markDirty(QSGNode::DirtyMaterial); - m_aspect = newAspect; - } -} - -void ShadowedRectangleNode::setSize(qreal size) -{ - auto minDimension = std::min(m_rect.width(), m_rect.height()); - float uniformSize = (size / minDimension) * 2.0; - - if (!qFuzzyCompare(m_material->size, uniformSize)) { - m_material->size = uniformSize; - markDirty(QSGNode::DirtyMaterial); - m_size = size; - } -} - -void ShadowedRectangleNode::setRadius(const QVector4D &radius) -{ - float minDimension = std::min(m_rect.width(), m_rect.height()); - auto uniformRadius = QVector4D{std::min(radius.x() * 2.0f / minDimension, 1.0f), - std::min(radius.y() * 2.0f / minDimension, 1.0f), - std::min(radius.z() * 2.0f / minDimension, 1.0f), - std::min(radius.w() * 2.0f / minDimension, 1.0f)}; - - if (m_material->radius != uniformRadius) { - m_material->radius = uniformRadius; - markDirty(QSGNode::DirtyMaterial); - m_radius = radius; - } -} - -void ShadowedRectangleNode::setColor(const QColor &color) -{ - auto premultiplied = premultiply(color); - if (m_material->color != premultiplied) { - m_material->color = premultiplied; - markDirty(QSGNode::DirtyMaterial); - } -} - -void ShadowedRectangleNode::setShadowColor(const QColor &color) -{ - auto premultiplied = premultiply(color); - if (m_material->shadowColor != premultiplied) { - m_material->shadowColor = premultiplied; - markDirty(QSGNode::DirtyMaterial); - } -} - -void ShadowedRectangleNode::setOffset(const QVector2D &offset) -{ - auto minDimension = std::min(m_rect.width(), m_rect.height()); - auto uniformOffset = offset / minDimension; - - if (m_material->offset != uniformOffset) { - m_material->offset = uniformOffset; - markDirty(QSGNode::DirtyMaterial); - m_offset = offset; - } -} - -void ShadowedRectangleNode::setBorderWidth(qreal width) -{ - if (m_material->type() != borderMaterialType()) { - return; - } - - auto minDimension = std::min(m_rect.width(), m_rect.height()); - float uniformBorderWidth = width / minDimension; - - auto borderMaterial = static_cast(m_material); - if (!qFuzzyCompare(borderMaterial->borderWidth, uniformBorderWidth)) { - borderMaterial->borderWidth = uniformBorderWidth; - markDirty(QSGNode::DirtyMaterial); - m_borderWidth = width; - } -} - -void ShadowedRectangleNode::setBorderColor(const QColor &color) -{ - if (m_material->type() != borderMaterialType()) { - return; - } - - auto borderMaterial = static_cast(m_material); - auto premultiplied = premultiply(color); - if (borderMaterial->borderColor != premultiplied) { - borderMaterial->borderColor = premultiplied; - markDirty(QSGNode::DirtyMaterial); - } -} - -void ShadowedRectangleNode::setShaderType(ShadowedRectangleMaterial::ShaderType type) -{ - m_shaderType = type; -} - -void ShadowedRectangleNode::updateGeometry() -{ - auto rect = m_rect; - if (m_shaderType == ShadowedRectangleMaterial::ShaderType::Standard) { - rect = rect.adjusted(-m_size * m_aspect.x(), // - -m_size * m_aspect.y(), - m_size * m_aspect.x(), - m_size * m_aspect.y()); - - auto offsetLength = m_offset.length(); - rect = rect.adjusted(-offsetLength * m_aspect.x(), // - -offsetLength * m_aspect.y(), - offsetLength * m_aspect.x(), - offsetLength * m_aspect.y()); - } - - QSGGeometry::updateTexturedRectGeometry(m_geometry, rect, QRectF{0.0, 0.0, 1.0, 1.0}); - markDirty(QSGNode::DirtyGeometry); -} - -ShadowedRectangleMaterial *ShadowedRectangleNode::createBorderlessMaterial() -{ - return new ShadowedRectangleMaterial{}; -} - -ShadowedBorderRectangleMaterial *ShadowedRectangleNode::createBorderMaterial() -{ - return new ShadowedBorderRectangleMaterial{}; -} - -QSGMaterialType *ShadowedRectangleNode::borderlessMaterialType() -{ - return &ShadowedRectangleMaterial::staticType; -} - -QSGMaterialType *ShadowedRectangleNode::borderMaterialType() -{ - return &ShadowedBorderRectangleMaterial::staticType; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglenode.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglenode.h deleted file mode 100644 index 755f56f7f1..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedrectanglenode.h +++ /dev/null @@ -1,79 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#pragma once - -#include -#include -#include -#include - -#include "shadowedrectanglematerial.h" - -struct QSGMaterialType; -class ShadowedBorderRectangleMaterial; - -/** - * Scene graph node for a shadowed rectangle. - * - * This node will set up the geometry and materials for a shadowed rectangle, - * optionally with rounded corners. - * - * \note You must call updateGeometry() after setting properties of this node, - * otherwise the node's state will not correctly reflect all the properties. - * - * \sa ShadowedRectangle - */ -class ShadowedRectangleNode : public QSGGeometryNode -{ -public: - ShadowedRectangleNode(); - - /** - * Set whether to draw a border. - * - * Note that this will switch between a material with or without border. - * This means this needs to be called before any other setters. - */ - void setBorderEnabled(bool enabled); - - void setRect(const QRectF &rect); - void setSize(qreal size); - void setRadius(const QVector4D &radius); - void setColor(const QColor &color); - void setShadowColor(const QColor &color); - void setOffset(const QVector2D &offset); - void setBorderWidth(qreal width); - void setBorderColor(const QColor &color); - void setShaderType(ShadowedRectangleMaterial::ShaderType type); - - /** - * Update the geometry for this node. - * - * This is done as an explicit step to avoid the geometry being recreated - * multiple times while updating properties. - */ - void updateGeometry(); - -protected: - virtual ShadowedRectangleMaterial *createBorderlessMaterial(); - virtual ShadowedBorderRectangleMaterial *createBorderMaterial(); - virtual QSGMaterialType *borderMaterialType(); - virtual QSGMaterialType *borderlessMaterialType(); - - QSGGeometry *m_geometry; - ShadowedRectangleMaterial *m_material = nullptr; - ShadowedRectangleMaterial::ShaderType m_shaderType = ShadowedRectangleMaterial::ShaderType::Standard; - -private: - QRectF m_rect; - qreal m_size = 0.0; - QVector4D m_radius = QVector4D{0.0, 0.0, 0.0, 0.0}; - QVector2D m_offset = QVector2D{0.0, 0.0}; - QVector2D m_aspect = QVector2D{1.0, 1.0}; - qreal m_borderWidth = 0.0; - QColor m_borderColor; -}; diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturematerial.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturematerial.cpp deleted file mode 100644 index 8cd82d2457..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturematerial.cpp +++ /dev/null @@ -1,62 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "shadowedtexturematerial.h" - -#include - -QSGMaterialType ShadowedTextureMaterial::staticType; - -ShadowedTextureMaterial::ShadowedTextureMaterial() - : ShadowedRectangleMaterial() -{ - setFlag(QSGMaterial::Blending, true); -} - -QSGMaterialShader *ShadowedTextureMaterial::createShader(QSGRendererInterface::RenderMode) const -{ - return new ShadowedTextureShader{shaderType}; -} - -QSGMaterialType *ShadowedTextureMaterial::type() const -{ - return &staticType; -} - -int ShadowedTextureMaterial::compare(const QSGMaterial *other) const -{ - auto material = static_cast(other); - - auto result = ShadowedRectangleMaterial::compare(other); - if (result == 0) { - if (material->textureSource == textureSource) { - return 0; - } else { - return (material->textureSource < textureSource) ? 1 : -1; - } - } - - return QSGMaterial::compare(other); -} - -ShadowedTextureShader::ShadowedTextureShader(ShadowedRectangleMaterial::ShaderType shaderType) - : ShadowedRectangleShader(shaderType) -{ - setShader(shaderType, QStringLiteral("shadowedtexture")); -} - -void ShadowedTextureShader::updateSampledImage(QSGMaterialShader::RenderState &state, - int binding, - QSGTexture **texture, - QSGMaterial *newMaterial, - QSGMaterial *oldMaterial) -{ - Q_UNUSED(state); - Q_UNUSED(oldMaterial); - if (binding == 1) { - *texture = static_cast(newMaterial)->textureSource; - } -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturematerial.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturematerial.h deleted file mode 100644 index 00799b2889..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturematerial.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#pragma once - -#include - -#include "shadowedrectanglematerial.h" - -/** - * A material rendering a rectangle with a shadow. - * - * This material uses a distance field shader to render a rectangle with a - * shadow below it, optionally with rounded corners. - */ -class ShadowedTextureMaterial : public ShadowedRectangleMaterial -{ -public: - ShadowedTextureMaterial(); - - QSGMaterialShader *createShader(QSGRendererInterface::RenderMode) const override; - QSGMaterialType *type() const override; - int compare(const QSGMaterial *other) const override; - - QSGTexture *textureSource = nullptr; - - static QSGMaterialType staticType; -}; - -class ShadowedTextureShader : public ShadowedRectangleShader -{ -public: - ShadowedTextureShader(ShadowedRectangleMaterial::ShaderType shaderType); - - void - updateSampledImage(QSGMaterialShader::RenderState &state, int binding, QSGTexture **texture, QSGMaterial *newMaterial, QSGMaterial *oldMaterial) override; -}; diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturenode.cpp b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturenode.cpp deleted file mode 100644 index 0b22a4d91b..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturenode.cpp +++ /dev/null @@ -1,86 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "shadowedtexturenode.h" - -#include "shadowedbordertexturematerial.h" - -template -inline void preprocessTexture(QSGMaterial *material, QSGTextureProvider *provider) -{ - auto m = static_cast(material); - // Since we handle texture coordinates differently in the shader, we - // need to remove the texture from the atlas for now. - if (provider->texture()->isAtlasTexture()) { - // Blegh, I have no idea why "removedFromAtlas" doesn't just return - // the texture when it's not an atlas. - m->textureSource = provider->texture()->removedFromAtlas(); - } else { - m->textureSource = provider->texture(); - } - if (QSGDynamicTexture *dynamic_texture = qobject_cast(m->textureSource)) { - dynamic_texture->updateTexture(); - } -} - -ShadowedTextureNode::ShadowedTextureNode() - : ShadowedRectangleNode() -{ - setFlag(QSGNode::UsePreprocess); -} - -ShadowedTextureNode::~ShadowedTextureNode() -{ - QObject::disconnect(m_textureChangeConnectionHandle); -} - -void ShadowedTextureNode::setTextureSource(QSGTextureProvider *source) -{ - if (m_textureSource == source) { - return; - } - - if (m_textureSource) { - m_textureSource->disconnect(); - } - - m_textureSource = source; - m_textureChangeConnectionHandle = QObject::connect(m_textureSource.data(), &QSGTextureProvider::textureChanged, [this] { - markDirty(QSGNode::DirtyMaterial); - }); - markDirty(QSGNode::DirtyMaterial); -} - -void ShadowedTextureNode::preprocess() -{ - if (m_textureSource && m_material && m_textureSource->texture()) { - if (m_material->type() == borderlessMaterialType()) { - preprocessTexture(m_material, m_textureSource); - } else { - preprocessTexture(m_material, m_textureSource); - } - } -} - -ShadowedRectangleMaterial *ShadowedTextureNode::createBorderlessMaterial() -{ - return new ShadowedTextureMaterial{}; -} - -ShadowedBorderRectangleMaterial *ShadowedTextureNode::createBorderMaterial() -{ - return new ShadowedBorderTextureMaterial{}; -} - -QSGMaterialType *ShadowedTextureNode::borderlessMaterialType() -{ - return &ShadowedTextureMaterial::staticType; -} - -QSGMaterialType *ShadowedTextureNode::borderMaterialType() -{ - return &ShadowedBorderTextureMaterial::staticType; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturenode.h b/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturenode.h deleted file mode 100644 index d0b0efcbcc..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/scenegraph/shadowedtexturenode.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#pragma once - -#include -#include - -#include "shadowedrectanglenode.h" -#include "shadowedtexturematerial.h" - -/** - * Scene graph node for a shadowed texture source. - * - * This node will set up the geometry and materials for a shadowed rectangle, - * optionally with rounded corners, using a supplied texture source as the color - * for the rectangle. - * - * \note You must call updateGeometry() after setting properties of this node, - * otherwise the node's state will not correctly reflect all the properties. - * - * \sa ShadowedTexture - */ -class ShadowedTextureNode : public ShadowedRectangleNode -{ -public: - ShadowedTextureNode(); - ~ShadowedTextureNode(); - - void setTextureSource(QSGTextureProvider *source); - void preprocess() override; - -private: - ShadowedRectangleMaterial *createBorderlessMaterial() override; - ShadowedBorderRectangleMaterial *createBorderMaterial() override; - QSGMaterialType *borderlessMaterialType() override; - QSGMaterialType *borderMaterialType() override; - - QPointer m_textureSource; - QMetaObject::Connection m_textureChangeConnectionHandle; -}; diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/sdf.glsl b/local/recipes/kde/kirigami/source/src/primitives/shaders/sdf.glsl index 69402c5c31..59c5dd8803 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/sdf.glsl +++ b/local/recipes/kde/kirigami/source/src/primitives/shaders/sdf.glsl @@ -208,8 +208,13 @@ const lowp float sdf_default_smoothing = 0.625; // lowp vec4 sdf_render(in lowp float sdf, in lowp vec4 sourceColor, in lowp vec4 sdfColor, in lowp float alpha, in lowp float smoothing) { - lowp float g = fwidth(sdf); - return mix(sourceColor, sdfColor, alpha * (1.0 - smoothstep(-smoothing * g, smoothing * g, sdf))); +#ifdef ENABLE_LOWPOWER + lowp float g = smoothing * fwidth(sdf); + return mix(sourceColor, sdfColor, alpha * (1.0 - clamp(sdf / g, 0.0, 1.0))); +#else + lowp float g = fwidth(sdf); + return mix(sourceColor, sdfColor, alpha * (1.0 - smoothstep(-smoothing * g, smoothing * g, sdf))); +#endif } // Render an sdf shape. diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedborderrectangle.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedborderrectangle.frag deleted file mode 100644 index 5bb51be545..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedborderrectangle.frag +++ /dev/null @@ -1,56 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#version 440 - -#extension GL_GOOGLE_include_directive: enable -#include "sdf.glsl" -// See sdf.glsl for the SDF related functions. - -// This shader renders a rectangle with rounded corners and a shadow below it. -// In addition it renders a border around it. - -#include "uniforms.glsl" - -layout(location = 0) in lowp vec2 uv; -layout(location = 0) out lowp vec4 out_color; - -const lowp float minimum_shadow_radius = 0.05; - -void main() -{ - // Scaling factor that is the inverse of the amount of scaling applied to the geometry. - lowp float inverse_scale = 1.0 / (1.0 + ubuf.size + length(ubuf.offset) * 2.0); - - // Correction factor to round the corners of a larger shadow. - // We want to account for size in regards to shadow radius, so that a larger shadow is - // more rounded, but only if we are not already rounding the corners due to corner radius. - lowp vec4 size_factor = 0.5 * (minimum_shadow_radius / max(ubuf.radius, minimum_shadow_radius)); - lowp vec4 shadow_radius = ubuf.radius + ubuf.size * size_factor; - - lowp vec4 col = vec4(0.0); - - // Calculate the shadow's distance field. - lowp float shadow = sdf_rounded_rectangle(uv - ubuf.offset * 2.0 * inverse_scale, ubuf.aspect * inverse_scale, shadow_radius * inverse_scale); - // Render it, interpolating the color over the distance. - col = mix(col, ubuf.shadowColor * sign(ubuf.size), 1.0 - smoothstep(-ubuf.size * 0.5, ubuf.size * 0.5, shadow)); - - // Scale corrected corner radius - lowp vec4 corner_radius = ubuf.radius * inverse_scale; - - // Calculate the outer rectangle distance field and render it. - lowp float outer_rect = sdf_rounded_rectangle(uv, ubuf.aspect * inverse_scale, corner_radius); - - col = sdf_render(outer_rect, col, ubuf.borderColor); - - // The inner rectangle distance field is the outer reduced by twice the border size. - lowp float inner_rect = outer_rect + (ubuf.borderWidth * inverse_scale) * 2.0; - - // Finally, render the inner rectangle. - col = sdf_render(inner_rect, col, ubuf.color); - - out_color = col * ubuf.opacity; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedborderrectangle_lowpower.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedborderrectangle_lowpower.frag deleted file mode 100644 index abf1c155d3..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedborderrectangle_lowpower.frag +++ /dev/null @@ -1,38 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#version 440 - -#extension GL_GOOGLE_include_directive: enable -#include "sdf_lowpower.glsl" -// See sdf.glsl for the SDF related functions. - -// This is a version of shadowedborderrectangle.frag for extremely low powered -// hardware (PinePhone). It does not draw a shadow and also eliminates alpha -// blending. - -#include "uniforms.glsl" - -layout(location = 0) in lowp vec2 uv; -layout(location = 0) out lowp vec4 out_color; - -void main() -{ - lowp vec4 col = vec4(0.0); - - // Calculate the outer rectangle distance field and render it. - lowp float outer_rect = sdf_rounded_rectangle(uv, ubuf.aspect, ubuf.radius); - - col = sdf_render(outer_rect, col, ubuf.borderColor); - - // The inner distance field is the outer reduced by border width. - lowp float inner_rect = outer_rect + ubuf.borderWidth * 2.0; - - // Render it. - col = sdf_render(inner_rect, col, ubuf.color); - - out_color = col * ubuf.opacity; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedbordertexture.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedbordertexture.frag deleted file mode 100644 index da1a19cf20..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedbordertexture.frag +++ /dev/null @@ -1,62 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#version 440 - -#extension GL_GOOGLE_include_directive: enable -#include "sdf.glsl" -// See sdf.glsl for the SDF related functions. - -// This shader renders a rectangle with rounded corners and a shadow below it. -// In addition it renders a border around it. - -#include "uniforms.glsl" -layout(binding = 1) uniform sampler2D textureSource; - -layout(location = 0) in lowp vec2 uv; -layout(location = 0) out lowp vec4 out_color; - -const lowp float minimum_shadow_radius = 0.05; - -void main() -{ - // Scaling factor that is the inverse of the amount of scaling applied to the geometry. - lowp float inverse_scale = 1.0 / (1.0 + ubuf.size + length(ubuf.offset) * 2.0); - - // Correction factor to round the corners of a larger shadow. - // We want to account for size in regards to shadow radius, so that a larger shadow is - // more rounded, but only if we are not already rounding the corners due to corner radius. - lowp vec4 size_factor = 0.5 * (minimum_shadow_radius / max(ubuf.radius, minimum_shadow_radius)); - lowp vec4 shadow_radius = ubuf.radius + ubuf.size * size_factor; - - lowp vec4 col = vec4(0.0); - - // Calculate the shadow's distance field. - lowp float shadow = sdf_rounded_rectangle(uv - ubuf.offset * 2.0 * inverse_scale, ubuf.aspect * inverse_scale, shadow_radius * inverse_scale); - // Render it, interpolating the color over the distance. - col = mix(col, ubuf.shadowColor * sign(ubuf.size), 1.0 - smoothstep(-ubuf.size * 0.5, ubuf.size * 0.5, shadow)); - - // Scale corrected corner radius - lowp vec4 corner_radius = ubuf.radius * inverse_scale; - - // Calculate the outer rectangle distance field and render it. - lowp float outer_rect = sdf_rounded_rectangle(uv, ubuf.aspect * inverse_scale, corner_radius); - - col = sdf_render(outer_rect, col, ubuf.borderColor); - - // The inner rectangle distance field is the outer reduced by twice the border width. - lowp float inner_rect = outer_rect + (ubuf.borderWidth * inverse_scale) * 2.0; - - // Render the inner rectangle. - col = sdf_render(inner_rect, col, ubuf.color); - - // Sample the texture, then blend it on top of the background color. - lowp vec2 texture_uv = ((uv / ubuf.aspect) + (1.0 * inverse_scale)) / (2.0 * inverse_scale); - lowp vec4 texture_color = texture(textureSource, texture_uv); - col = sdf_render(inner_rect, col, texture_color, texture_color.a, sdf_default_smoothing); - - out_color = col * ubuf.opacity; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedbordertexture_lowpower.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedbordertexture_lowpower.frag deleted file mode 100644 index ca79d7be9a..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedbordertexture_lowpower.frag +++ /dev/null @@ -1,46 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#version 440 - -#extension GL_GOOGLE_include_directive: enable -#include "sdf_lowpower.glsl" -// See sdf.glsl for the SDF related functions. - -// This shader renders a rectangle with rounded corners and a shadow below it. -// In addition it renders a border around it. - -#include "uniforms.glsl" -layout(binding = 1) uniform sampler2D textureSource; - -layout(location = 0) in lowp vec2 uv; -layout(location = 0) out lowp vec4 out_color; - -const lowp float minimum_shadow_radius = 0.05; - -void main() -{ - lowp vec4 col = vec4(0.0); - - // Calculate the outer rectangle distance field. - lowp float outer_rect = sdf_rounded_rectangle(uv, ubuf.aspect, ubuf.radius); - - // Render it - col = sdf_render(outer_rect, col, ubuf.borderColor); - - // Inner rectangle distance field equals outer reduced by twice the border width - lowp float inner_rect = outer_rect + ubuf.borderWidth * 2.0; - - // Render it so we have a background for the image. - col = sdf_render(inner_rect, col, ubuf.color); - - // Sample the texture, then render it, blending with the background color. - lowp vec2 texture_uv = ((uv / ubuf.aspect) + 1.0) / 2.0; - lowp vec4 texture_color = texture(textureSource, texture_uv); - col = sdf_render(inner_rect, col, texture_color, texture_color.a, sdf_default_smoothing); - - out_color = col * ubuf.opacity; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedrectangle.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedrectangle.frag index 6705d454a9..7e7098ba5f 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedrectangle.frag +++ b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedrectangle.frag @@ -14,6 +14,10 @@ #include "uniforms.glsl" +#ifdef ENABLE_TEXTURE +layout(binding = 1) uniform sampler2D textureSource; +#endif + layout(location = 0) in lowp vec2 uv; layout(location = 0) out lowp vec4 out_color; @@ -21,26 +25,56 @@ const lowp float minimum_shadow_radius = 0.05; void main() { + lowp vec4 clamped_radius = clamp(ubuf.radius * 2.0, 0.0, 1.0); + + lowp vec4 col = vec4(0.0); + +#ifndef ENABLE_LOWPOWER // Scaling factor that is the inverse of the amount of scaling applied to the geometry. lowp float inverse_scale = 1.0 / (1.0 + ubuf.size + length(ubuf.offset) * 2.0); // Correction factor to round the corners of a larger shadow. // We want to account for size in regards to shadow radius, so that a larger shadow is // more rounded, but only if we are not already rounding the corners due to corner radius. - lowp vec4 size_factor = 0.5 * (minimum_shadow_radius / max(ubuf.radius, minimum_shadow_radius)); - lowp vec4 shadow_radius = ubuf.radius + ubuf.size * size_factor; - - lowp vec4 col = vec4(0.0); + lowp vec4 size_factor = 0.5 * (minimum_shadow_radius / max(clamped_radius, minimum_shadow_radius)); + lowp vec4 shadow_radius = clamped_radius + ubuf.size * size_factor; // Calculate the shadow's distance field. lowp float shadow = sdf_rounded_rectangle(uv - ubuf.offset * 2.0 * inverse_scale, ubuf.aspect * inverse_scale, shadow_radius * inverse_scale); // Render it, interpolating the color over the distance. col = mix(col, ubuf.shadowColor * sign(ubuf.size), 1.0 - smoothstep(-ubuf.size * 0.5, ubuf.size * 0.5, shadow)); +#else + lowp float inverse_scale = 1.0; +#endif - // Calculate the main rectangle distance field and render it. - lowp float rect = sdf_rounded_rectangle(uv, ubuf.aspect * inverse_scale, ubuf.radius * inverse_scale); + // Scale corrected corner radius + lowp vec4 corner_radius = clamped_radius * inverse_scale; - col = sdf_render(rect, col, ubuf.color); +#ifdef ENABLE_BORDER + // Calculate the outer rectangle distance field and render it. + lowp float outer_rect = sdf_rounded_rectangle(uv, ubuf.aspect * inverse_scale, corner_radius); + + col = sdf_render(outer_rect, col, ubuf.borderColor); + + // The inner rectangle distance field is the outer reduced by twice the border size. + lowp float inner_rect = outer_rect + (ubuf.borderWidth * inverse_scale) * 2.0; +#else + lowp float inner_rect = sdf_rounded_rectangle(uv, ubuf.aspect * inverse_scale, corner_radius); +#endif + +#ifdef ENABLE_TEXTURE + // Sample the texture. + lowp vec2 texture_uv = ((uv / ubuf.aspect) + (1.0 * inverse_scale)) / (2.0 * inverse_scale); + lowp vec4 texture_color = texture(textureSource, texture_uv); + + // Blend the texture on top of the background color and render the inner rectangle. + vec4 shape_color = mix(ubuf.color, texture_color, texture_color.a); + // ...and then render the inner rectangle. + col = sdf_render(inner_rect, col, shape_color); +#else + // Finally, render the inner rectangle. + col = sdf_render(inner_rect, col, ubuf.color); +#endif out_color = col * ubuf.opacity; } diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedrectangle_lowpower.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedrectangle_lowpower.frag deleted file mode 100644 index 8a886911c1..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedrectangle_lowpower.frag +++ /dev/null @@ -1,32 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#version 440 - -// See sdf.glsl for the SDF related functions. -#extension GL_GOOGLE_include_directive: enable -#include "sdf_lowpower.glsl" - -// This is a version of shadowedrectangle.frag meant for very low power hardware -// (PinePhone). It does not render a shadow and does not do alpha blending. - -#include "uniforms.glsl" - -layout(location = 0) in lowp vec2 uv; -layout(location = 0) out lowp vec4 out_color; - -void main() -{ - lowp vec4 col = vec4(0.0); - - // Calculate the main rectangle distance field. - lowp float rect = sdf_rounded_rectangle(uv, ubuf.aspect, ubuf.radius); - - // Render it. - col = sdf_render(rect, col, ubuf.color); - - out_color = col * ubuf.opacity; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedtexture.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedtexture.frag deleted file mode 100644 index 508e3f9899..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedtexture.frag +++ /dev/null @@ -1,53 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#version 440 - -#extension GL_GOOGLE_include_directive: enable -#include "sdf.glsl" -// See sdf.glsl for the SDF related functions. - -// This shader renders a texture on top of a rectangle with rounded corners and -// a shadow below it. - -#include "uniforms.glsl" -layout(binding = 1) uniform sampler2D textureSource; - -layout(location = 0) in lowp vec2 uv; -layout(location = 0) out lowp vec4 out_color; - -const lowp float minimum_shadow_radius = 0.05; - -void main() -{ - // Scaling factor that is the inverse of the amount of scaling applied to the geometry. - lowp float inverse_scale = 1.0 / (1.0 + ubuf.size + length(ubuf.offset) * 2.0); - - // Correction factor to round the corners of a larger shadow. - // We want to account for size in regards to shadow radius, so that a larger shadow is - // more rounded, but only if we are not already rounding the corners due to corner radius. - lowp vec4 size_factor = 0.5 * (minimum_shadow_radius / max(ubuf.radius, minimum_shadow_radius)); - lowp vec4 shadow_radius = ubuf.radius + ubuf.size * size_factor; - - lowp vec4 col = vec4(0.0); - - // Calculate the shadow's distance field. - lowp float shadow = sdf_rounded_rectangle(uv - ubuf.offset * 2.0 * inverse_scale, ubuf.aspect * inverse_scale, shadow_radius * inverse_scale); - // Render it, interpolating the color over the distance. - col = mix(col, ubuf.shadowColor * sign(ubuf.size), 1.0 - smoothstep(-ubuf.size * 0.5, ubuf.size * 0.5, shadow)); - - // Calculate the main rectangle distance field and render it. - lowp float rect = sdf_rounded_rectangle(uv, ubuf.aspect * inverse_scale, ubuf.radius * inverse_scale); - - col = sdf_render(rect, col, ubuf.color); - - // Sample the texture, then blend it on top of the background color. - lowp vec2 texture_uv = ((uv / ubuf.aspect) + (1.0 * inverse_scale)) / (2.0 * inverse_scale); - lowp vec4 texture_color = texture(textureSource, texture_uv); - col = sdf_render(rect, col, texture_color, texture_color.a, sdf_default_smoothing); - - out_color = col * ubuf.opacity; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedtexture_lowpower.frag b/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedtexture_lowpower.frag deleted file mode 100644 index e2b95c47f5..0000000000 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/shadowedtexture_lowpower.frag +++ /dev/null @@ -1,38 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2020 Arjen Hiemstra - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#version 440 - -#extension GL_GOOGLE_include_directive: enable -#include "sdf_lowpower.glsl" -// See sdf.glsl for the SDF related functions. - -// This shader renders a texture on top of a rectangle with rounded corners and -// a shadow below it. - -#include "uniforms.glsl" -layout(binding = 1) uniform sampler2D textureSource; - -layout(location = 0) in lowp vec2 uv; -layout(location = 0) out lowp vec4 out_color; - -void main() -{ - lowp vec4 col = vec4(0.0); - - // Calculate the main rectangle distance field. - lowp float rect = sdf_rounded_rectangle(uv, ubuf.aspect, ubuf.radius); - - // Render it, so we have a background for the image. - col = sdf_render(rect, col, ubuf.color); - - // Sample the texture, then render it, blending it with the background. - lowp vec2 texture_uv = ((uv / ubuf.aspect) + 1.0) / 2.0; - lowp vec4 texture_color = texture(textureSource, texture_uv); - col = sdf_render(rect, col, texture_color, texture_color.a, sdf_default_smoothing); - - out_color = col * ubuf.opacity; -} diff --git a/local/recipes/kde/kirigami/source/src/primitives/shaders/uniforms.glsl b/local/recipes/kde/kirigami/source/src/primitives/shaders/uniforms.glsl index 0df5fb66dc..463421c7ab 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/shaders/uniforms.glsl +++ b/local/recipes/kde/kirigami/source/src/primitives/shaders/uniforms.glsl @@ -4,17 +4,23 @@ * SPDX-License-Identifier: LGPL-2.0-or-later */ +// Note: Due to alignment requirements of components, the order here is important. +// float are aligned on 1 component boundaries. +// vec2 on 2 component. +// everything else on 4 component. layout(std140, binding = 0) uniform buf { - highp mat4 matrix; // offset 0 - lowp vec2 aspect; // offset 64 + highp mat4 matrix; // 16 components + mediump float opacity; // 17 components - lowp float opacity; // offset 72 - lowp float size; // offset 76 - lowp vec4 radius; // offset 80 - lowp vec4 color; // offset 96 - lowp vec4 shadowColor; // offset 112 - lowp vec2 offset; // offset 128 + mediump float size; // 18 components + mediump float borderWidth; // 19 components - lowp float borderWidth; // offset 136 - lowp vec4 borderColor; // offset 144 -} ubuf; // size 160 + mediump vec2 aspect; // 22 components, +1 due to alignment + mediump vec2 offset; // 24 components + + mediump vec4 radius; // 28 components + + mediump vec4 color; // 32 components + mediump vec4 shadowColor; // 36 components + mediump vec4 borderColor; // 40 components +} ubuf; diff --git a/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.cpp b/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.cpp index 9845dab050..0c71ad1b8e 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.cpp +++ b/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.cpp @@ -10,8 +10,29 @@ #include #include -#include "scenegraph/paintedrectangleitem.h" -#include "scenegraph/shadowedrectanglenode.h" +#include "scenegraph/shadernode.h" +#include "scenegraph/softwarerectanglenode.h" + +using namespace Qt::StringLiterals; + +inline QVector2D calculateAspect(const QRectF &rect) +{ + auto aspect = QVector2D{1.0, 1.0}; + if (rect.width() >= rect.height()) { + aspect.setX(rect.width() / rect.height()); + } else { + aspect.setY(rect.height() / rect.width()); + } + return aspect; +} + +inline QRectF adjustRectForShadow(const QRectF &rect, float shadowSize, const QVector2D &offsets, const QVector2D &aspect) +{ + auto adjusted = rect.adjusted(-shadowSize * aspect.x(), -shadowSize * aspect.y(), shadowSize * aspect.x(), shadowSize * aspect.y()); + auto offsetLength = offsets.length(); + adjusted.adjust(-offsetLength * aspect.x(), -offsetLength * aspect.y(), offsetLength * aspect.x(), offsetLength * aspect.y()); + return adjusted; +} BorderGroup::BorderGroup(QObject *parent) : QObject(parent) @@ -230,9 +251,7 @@ void ShadowedRectangle::setRadius(qreal newRadius) } m_radius = newRadius; - if (!isSoftwareRendering()) { - update(); - } + update(); Q_EMIT radiusChanged(); } @@ -248,9 +267,7 @@ void ShadowedRectangle::setColor(const QColor &newColor) } m_color = newColor; - if (!isSoftwareRendering()) { - update(); - } + update(); Q_EMIT colorChanged(); } @@ -272,8 +289,6 @@ void ShadowedRectangle::setRenderType(RenderType renderType) void ShadowedRectangle::componentComplete() { QQuickItem::componentComplete(); - - checkSoftwareItem(); } bool ShadowedRectangle::isSoftwareRendering() const @@ -281,20 +296,10 @@ bool ShadowedRectangle::isSoftwareRendering() const return (window() && window()->rendererInterface()->graphicsApi() == QSGRendererInterface::Software) || m_renderType == RenderType::Software; } -PaintedRectangleItem *ShadowedRectangle::softwareItem() const +bool ShadowedRectangle::isLowPowerRendering() const { - return m_softwareItem; -} - -void ShadowedRectangle::itemChange(QQuickItem::ItemChange change, const QQuickItem::ItemChangeData &value) -{ - if (change == QQuickItem::ItemSceneChange && value.window) { - checkSoftwareItem(); - // TODO: only conditionally emit? - Q_EMIT softwareRenderingChanged(); - } - - QQuickItem::itemChange(change, value); + static bool lowPower = QByteArrayList{"1", "true"}.contains(qgetenv("KIRIGAMI_LOWPOWER_HARDWARE").toLower()); + return (m_renderType == ShadowedRectangle::RenderType::Auto && lowPower) || m_renderType == ShadowedRectangle::RenderType::LowQuality; } QSGNode *ShadowedRectangle::updatePaintNode(QSGNode *node, QQuickItem::UpdatePaintNodeData *data) @@ -306,60 +311,72 @@ QSGNode *ShadowedRectangle::updatePaintNode(QSGNode *node, QQuickItem::UpdatePai return nullptr; } - auto shadowNode = static_cast(node); - - if (!shadowNode) { - shadowNode = new ShadowedRectangleNode{}; - - // Cache lowPower state so we only execute the full check once. - static bool lowPower = QByteArrayList{"1", "true"}.contains(qgetenv("KIRIGAMI_LOWPOWER_HARDWARE").toLower()); - if (m_renderType == RenderType::LowQuality || (m_renderType == RenderType::Auto && lowPower)) { - shadowNode->setShaderType(ShadowedRectangleMaterial::ShaderType::LowPower); + if (isSoftwareRendering()) { + auto rectangleNode = static_cast(node); + if (!rectangleNode) { + rectangleNode = new SoftwareRectangleNode{}; } + + rectangleNode->setRect(boundingRect()); + rectangleNode->setWindow(window()); + rectangleNode->setColor(m_color); + rectangleNode->setRadius(m_radius); + rectangleNode->setBorderWidth(m_border->width()); + rectangleNode->setBorderColor(m_border->color()); + return rectangleNode; } - shadowNode->setBorderEnabled(m_border->isEnabled()); - shadowNode->setRect(boundingRect()); - shadowNode->setSize(m_shadow->size()); - shadowNode->setRadius(m_corners->toVector4D(m_radius)); - shadowNode->setOffset(QVector2D{float(m_shadow->xOffset()), float(m_shadow->yOffset())}); - shadowNode->setColor(m_color); - shadowNode->setShadowColor(m_shadow->color()); - shadowNode->setBorderWidth(m_border->width()); - shadowNode->setBorderColor(m_border->color()); - shadowNode->updateGeometry(); - return shadowNode; + auto shaderNode = static_cast(node); + if (!shaderNode) { + shaderNode = new ShaderNode{}; + } + + QString shader; + if (m_border->isEnabled()) { + shader = u"shadowed_border_rectangle"_s; + } else { + shader = u"shadowed_rectangle"_s; + } + + if (isLowPowerRendering()) { + shader += u"_lowpower"_s; + } + + shaderNode->setShader(shader); + shaderNode->setUniformBufferSize(sizeof(float) * 40); + + updateShaderNode(shaderNode); + + shaderNode->update(); + + return shaderNode; } -void ShadowedRectangle::checkSoftwareItem() +void ShadowedRectangle::updateShaderNode(ShaderNode *shaderNode) { - if (!m_softwareItem && isSoftwareRendering()) { - m_softwareItem = new PaintedRectangleItem{this}; - // The software item is added as a "normal" child item, this means it - // will be part of the normal item sort order. Since there is no way to - // control the ordering of children, just make sure to have a very low Z - // value for the child, to force it to be the lowest item. - m_softwareItem->setZ(-99.0); + auto rect = boundingRect(); + auto aspect = calculateAspect(rect); + auto minDimension = float(std::min(rect.width(), rect.height())); + auto shadowSize = m_shadow->size(); + auto offset = QVector2D{float(m_shadow->xOffset()), float(m_shadow->yOffset())}; - auto updateItem = [this]() { - auto borderWidth = m_border->width(); - auto rect = boundingRect(); - m_softwareItem->setSize(rect.size()); - m_softwareItem->setColor(m_color); - m_softwareItem->setRadius(m_radius); - m_softwareItem->setBorderWidth(borderWidth); - m_softwareItem->setBorderColor(m_border->color()); - }; - - updateItem(); - - connect(this, &ShadowedRectangle::widthChanged, m_softwareItem, updateItem); - connect(this, &ShadowedRectangle::heightChanged, m_softwareItem, updateItem); - connect(this, &ShadowedRectangle::colorChanged, m_softwareItem, updateItem); - connect(this, &ShadowedRectangle::radiusChanged, m_softwareItem, updateItem); - connect(m_border.get(), &BorderGroup::changed, m_softwareItem, updateItem); - setFlag(QQuickItem::ItemHasContents, false); + if (isLowPowerRendering()) { + shaderNode->setRect(rect); + } else { + shaderNode->setRect(adjustRectForShadow(rect, shadowSize, offset, aspect)); } + + UniformDataStream stream(shaderNode->uniformData()); + stream.skipMatrixOpacity(); + stream << float(shadowSize / minDimension) * 2.0f // size + << float(m_border->width()) / minDimension // border_width + << aspect // aspect + << offset / minDimension // offset + << m_corners->toVector4D(m_radius) / minDimension // radius + << ShaderNode::toPremultiplied(m_color) // color + << ShaderNode::toPremultiplied(m_shadow->color()) // shadow_color + << ShaderNode::toPremultiplied(m_border->color()); // border_color + shaderNode->markDirty(QSGNode::DirtyMaterial); } #include "moc_shadowedrectangle.cpp" diff --git a/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.h b/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.h index ed1d8813ea..2cb094342a 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.h +++ b/local/recipes/kde/kirigami/source/src/primitives/shadowedrectangle.h @@ -11,29 +11,16 @@ #include -class PaintedRectangleItem; +class ShaderNode; -/** - * @brief Grouped property for rectangle border. - */ class BorderGroup : public QObject { Q_OBJECT QML_ELEMENT QML_UNCREATABLE("") - /** - * @brief This property holds the border's width in pixels. - * - * default: ``0``px - */ + Q_PROPERTY(qreal width READ width WRITE setWidth NOTIFY changed FINAL) - /** - * @brief This property holds the border's color. - * - * Full RGBA colors are supported. - * - * default: ``Qt::black`` - */ + Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY changed FINAL) public: @@ -57,40 +44,18 @@ private: QColor m_color = Qt::black; }; -/** - * @brief Grouped property for the rectangle's shadow. - */ class ShadowGroup : public QObject { Q_OBJECT QML_ELEMENT QML_UNCREATABLE("") - /** - * @brief This property holds the shadow's approximate size in pixels. - * @note The actual shadow size can be less than this value due to falloff. - * - * default: ``0``px - */ + Q_PROPERTY(qreal size READ size WRITE setSize NOTIFY changed FINAL) - /** - * @brief This property holds the shadow's offset in pixels on the X axis. - * - * default: ``0``px - */ + Q_PROPERTY(qreal xOffset READ xOffset WRITE setXOffset NOTIFY changed FINAL) - /** - * @brief This property holds the shadow's offset in pixels on the Y axis. - * - * default: ``0``px - */ + Q_PROPERTY(qreal yOffset READ yOffset WRITE setYOffset NOTIFY changed FINAL) - /** - * @brief This property holds the shadow's color. - * - * Full RGBA colors are supported. - * - * default: ``Qt::black`` - */ + Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY changed FINAL) public: @@ -117,48 +82,18 @@ private: QColor m_color = Qt::black; }; -/** - * @brief Grouped property for corner radius. - */ class CornersGroup : public QObject { Q_OBJECT QML_ELEMENT QML_UNCREATABLE("") - /** - * @brief This property holds the top-left corner's radius in pixels. - * - * Setting this to ``-1`` indicates that the value should be ignored. - * - * default: ``-1``px - */ + Q_PROPERTY(qreal topLeftRadius READ topLeft WRITE setTopLeft NOTIFY changed FINAL) - /** - * @brief This property holds the top-right corner's radius in pixels. - * - * Setting this to ``-1`` indicates that the value should be ignored. - * - * default: ``-1``px - */ Q_PROPERTY(qreal topRightRadius READ topRight WRITE setTopRight NOTIFY changed FINAL) - /** - * @brief This property holds the bottom-left corner's radius in pixels. - * - * Setting this to ``-1`` indicates that the value should be ignored. - * - * default: ``-1``px - */ Q_PROPERTY(qreal bottomLeftRadius READ bottomLeft WRITE setBottomLeft NOTIFY changed FINAL) - /** - * @brief This property holds the bottom-right corner's radius in pixels. - * - * Setting this to ``-1`` indicates that the value should be ignored. - * - * default: ``-1``px - */ Q_PROPERTY(qreal bottomRightRadius READ bottomRight WRITE setBottomRight NOTIFY changed FINAL) public: @@ -187,104 +122,135 @@ private: float m_bottomRight = -1.0; }; -/** - * @brief A rectangle with a shadow behind it. +/*! + * \qmltype ShadowedRectangle + * \inqmlmodule org.kde.kirigami.primitives + * + * \brief A rectangle with a shadow behind it. * * This item will render a rectangle, with a shadow below it. The rendering is done * using distance fields, which provide greatly improved performance. The shadow is * rendered outside of the item's bounds, so the item's width and height are the * rectangle's width and height. * - * @since 5.69 - * @since 2.12 + * \since 5.69 */ class ShadowedRectangle : public QQuickItem { Q_OBJECT QML_ELEMENT - /** - * @brief This property holds the radii of the rectangle's corners. + /*! + * \qmlproperty real ShadowedRectangle::radius + * + * \brief This property holds the radii of the rectangle's corners. * * This is the amount of rounding to apply to all of the rectangle's * corners, in pixels. Each corner can have a different radius. * - * default: ``0`` - * - * @see corners + * default: 0 */ Q_PROPERTY(qreal radius READ radius WRITE setRadius NOTIFY radiusChanged FINAL) - /** - * @brief This property holds the rectangle's color. + /*! + * \qmlproperty color ShadowedRectangle::color + * \brief This property holds the rectangle's color. * * Full RGBA colors are supported. * - * default: ``Qt::white`` + * default: Qt.white */ Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged FINAL) - /** - * @brief This property holds the border's grouped property. + /*! + * \qmlproperty real ShadowedRectangle::border.width + * \qmlproperty color ShadowedRectangle::border.color + * + * \brief This property holds the border's grouped property. + * + * width: The border's width in pixels. Default: 0 + * + * color: The border's color. Full RGBA colors are supported. Default: Qt.black * * Example usage: - * @code + * \code * Kirigami.ShadowedRectangle { * border.width: 2 * border.color: Kirigami.Theme.textColor * } - * @endcode - * @see BorderGroup + * \endcode */ Q_PROPERTY(BorderGroup *border READ border CONSTANT FINAL) - /** - * @brief This property holds the shadow's grouped property. + /*! + * \qmlproperty real ShadowedRectangle::shadow.size + * \qmlproperty real ShadowedRectangle::shadow.xOffset + * \qmlproperty real ShadowedRectangle::shadow.yOffset + * \qmlproperty color ShadowedRectangle::shadow.color + * + * \brief This property group holds the shadow's properties. + * + * size: The shadow's approximate size in pixels. Note: The actual shadow size can be less than this value due to falloff. Default: 0px + * + * xOffset: The shadow's offset in pixels on the X axis. Default: 0px + * + * yOffset: The shadow's offset in pixels on the Y axis. Default: 0px + * + * color: The shadow's color. Full RGBA colors are supported. Default: Qt.black * * Example usage: - * @code + * \code * Kirigami.ShadowedRectangle { * shadow.size: 20 * shadow.xOffset: 5 * shadow.yOffset: 5 * } - * @endcode - * - * @see ShadowGroup + * \endcode */ Q_PROPERTY(ShadowGroup *shadow READ shadow CONSTANT FINAL) - /** - * @brief This property holds the corners grouped property + /*! + * \qmlproperty real ShadowedRectangle::corners.topLeftRadius + * \qmlproperty real ShadowedRectangle::corners.topRightRadius + * \qmlproperty real ShadowedRectangle::corners.bottomLeftRadius + * \qmlproperty real ShadowedRectangle::corners.bottomRightRadius * - * Note that the values from this group override \property radius for the + * \brief This property holds the corners grouped property + * + * Note that the values from this group override the radius property for the * corner they affect. * + * Setting any value to -1 indicates that the value should be ignored. + * + * The default value is -1 + * * Example usage: - * @code + * \code * Kirigami.ShadowedRectangle { * corners.topLeftRadius: 4 * corners.topRightRadius: 5 * corners.bottomLeftRadius: 2 * corners.bottomRightRadius: 10 - * @endcode - * - * @see CornersGroup + * \endcode */ Q_PROPERTY(CornersGroup *corners READ corners CONSTANT FINAL) - /** - * @brief This property holds the rectangle's render mode. + /*! + * \qmlproperty enumeration ShadowedRectangle::renderType * - * default: ``RenderType::Auto`` + * \brief This property holds the rectangle's render mode. * - * @see RenderType + * \qmlenumeratorsfrom ShadowedRectangle::RenderType + * + * default: RenderType.Auto */ Q_PROPERTY(RenderType renderType READ renderType WRITE setRenderType NOTIFY renderTypeChanged FINAL) - /** - * @brief This property tells whether software rendering is being used. + /*! + * \qmlproperty bool ShadowedRectangle::softwareRendering * - * default: ``false`` + * \brief This property tells whether software rendering is being used. + * + * default: false */ Q_PROPERTY(bool softwareRendering READ isSoftwareRendering NOTIFY softwareRenderingChanged FINAL) @@ -292,40 +258,21 @@ public: ShadowedRectangle(QQuickItem *parent = nullptr); ~ShadowedRectangle() override; - /** - * @brief Available rendering types for ShadowedRectangle. + /*! + * \brief Available rendering types for ShadowedRectangle. + * + * \value Auto Automatically determine the optimal rendering type. This will use the highest rendering quality possible, falling back to lower quality if + * the hardware doesn't support it. It will use software rendering if the QtQuick scene graph is set to use software rendering. + * \value HighQuality Use the highest rendering quality possible, even if the hardware might not be able to handle it normally. + * \value LowQuality Use the lowest rendering quality, even if the hardware could handle higher quality rendering. This might result in certain effects + * being omitted, like shadows. + * \value Software Always use software rendering for this rectangle. Software rendering is intended as a fallback when the QtQuick scene graph is configured + * to use software rendering. It will result in a number of missing features, like shadows and multiple corner radii. */ enum RenderType { - /** - * @brief Automatically determine the optimal rendering type. - * - * This will use the highest rendering quality possible, falling back to - * lower quality if the hardware doesn't support it. It will use software - * rendering if the QtQuick scene graph is set to use software rendering. - */ Auto, - - /** - * @brief Use the highest rendering quality possible, even if the hardware might - * not be able to handle it normally. - */ HighQuality, - - /** - * @brief Use the lowest rendering quality, even if the hardware could handle - * higher quality rendering. - * - * This might result in certain effects being omitted, like shadows. - */ LowQuality, - - /** - * @brief Always use software rendering for this rectangle. - * - * Software rendering is intended as a fallback when the QtQuick scene - * graph is configured to use software rendering. It will result in - * a number of missing features, like shadows and multiple corner radii. - */ Software }; Q_ENUM(RenderType) @@ -348,23 +295,21 @@ public: void componentComplete() override; - bool isSoftwareRendering() const; - Q_SIGNALS: void softwareRenderingChanged(); protected: - PaintedRectangleItem *softwareItem() const; - void itemChange(QQuickItem::ItemChange change, const QQuickItem::ItemChangeData &value) override; + bool isSoftwareRendering() const; + bool isLowPowerRendering() const; + QSGNode *updatePaintNode(QSGNode *node, QQuickItem::UpdatePaintNodeData *data) override; + void updateShaderNode(ShaderNode *shaderNode); private: - void checkSoftwareItem(); const std::unique_ptr m_border; const std::unique_ptr m_shadow; const std::unique_ptr m_corners; qreal m_radius = 0.0; QColor m_color = Qt::white; RenderType m_renderType = RenderType::Auto; - PaintedRectangleItem *m_softwareItem = nullptr; }; diff --git a/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.cpp b/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.cpp index b38c4d8d2f..5d53458ea8 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.cpp +++ b/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.cpp @@ -10,7 +10,10 @@ #include #include -#include "scenegraph/shadowedtexturenode.h" +#include "scenegraph/shadernode.h" +#include "scenegraph/softwarerectanglenode.h" + +using namespace Qt::StringLiterals; ShadowedTexture::ShadowedTexture(QQuickItem *parentItem) : ShadowedRectangle(parentItem) @@ -53,38 +56,64 @@ QSGNode *ShadowedTexture::updatePaintNode(QSGNode *node, QQuickItem::UpdatePaint return nullptr; } - auto shadowNode = static_cast(node); + if (isSoftwareRendering()) { + auto rectangleNode = static_cast(node); + if (!rectangleNode) { + rectangleNode = new SoftwareRectangleNode{}; + } + + rectangleNode->setRect(boundingRect()); + rectangleNode->setWindow(window()); + rectangleNode->setColor(color()); + rectangleNode->setRadius(radius()); + rectangleNode->setBorderWidth(border()->width()); + rectangleNode->setBorderColor(border()->color()); - if (!shadowNode || m_sourceChanged) { - m_sourceChanged = false; - delete shadowNode; if (m_source) { - shadowNode = new ShadowedTextureNode{}; - } else { - shadowNode = new ShadowedRectangleNode{}; + rectangleNode->setTextureProvider(m_source->textureProvider()); } - if (qEnvironmentVariableIsSet("KIRIGAMI_LOWPOWER_HARDWARE")) { - shadowNode->setShaderType(ShadowedRectangleMaterial::ShaderType::LowPower); - } + return rectangleNode; } - shadowNode->setBorderEnabled(border()->isEnabled()); - shadowNode->setRect(boundingRect()); - shadowNode->setSize(shadow()->size()); - shadowNode->setRadius(corners()->toVector4D(radius())); - shadowNode->setOffset(QVector2D{float(shadow()->xOffset()), float(shadow()->yOffset())}); - shadowNode->setColor(color()); - shadowNode->setShadowColor(shadow()->color()); - shadowNode->setBorderWidth(border()->width()); - shadowNode->setBorderColor(border()->color()); + auto shaderNode = static_cast(node); + if (!shaderNode) { + shaderNode = new ShaderNode{}; + } + + QString shader = u"shadowed"_s; + if (border()->isEnabled()) { + shader += u"_border"_s; + } if (m_source) { - static_cast(shadowNode)->setTextureSource(m_source->textureProvider()); + shader += u"_texture"_s; + } else { + shader += u"_rectangle"_s; } - shadowNode->updateGeometry(); - return shadowNode; + if (isLowPowerRendering()) { + shader += u"_lowpower"_s; + } + + shaderNode->setShader(shader); + shaderNode->setUniformBufferSize(sizeof(float) * 40); + + updateShaderNode(shaderNode); + + if (m_source) { + shaderNode->setTexture(0, m_source->textureProvider()); + + if (smooth()) { + shaderNode->setTextureFiltering(0, QSGTexture::Filtering::Linear); + } else { + shaderNode->setTextureFiltering(0, QSGTexture::Filtering::Nearest); + } + } + + shaderNode->update(); + + return shaderNode; } #include "moc_shadowedtexture.cpp" diff --git a/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.h b/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.h index 39798042f2..1a33f60166 100644 --- a/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.h +++ b/local/recipes/kde/kirigami/source/src/primitives/shadowedtexture.h @@ -8,22 +8,29 @@ #include "shadowedrectangle.h" -/** - * A rectangle with a shadow, using a QQuickItem as texture. +/*! + * \qmltype ShadowedTexture + * \inqmlmodule org.kde.kirigami.primitives + * + * \brief A rectangle with a shadow, using a Item as texture. * * This item will render a source item, with a shadow below it. The rendering is done * using distance fields, which provide greatly improved performance. The shadow is * rendered outside of the item's bounds, so the item's width and height are the * rectangle's width and height. * - * @since 5.69 / 2.12 + * \inherits ShadowedRectangle + * + * \since 5.69 */ class ShadowedTexture : public ShadowedRectangle { Q_OBJECT QML_ELEMENT - /** + /*! + * \qmlproperty Item ShadowedTexture::source + * * This property holds the source item that will get rendered with the * shadow. */ diff --git a/local/recipes/kde/kirigami/source/src/scenepositionattached.cpp b/local/recipes/kde/kirigami/source/src/scenepositionattached.cpp deleted file mode 100644 index e77f16cf40..0000000000 --- a/local/recipes/kde/kirigami/source/src/scenepositionattached.cpp +++ /dev/null @@ -1,87 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2017 Marco Martin - * SPDX-FileCopyrightText: 2023 ivan tkachenko - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#include "scenepositionattached.h" -#include -#include - -ScenePositionAttached::ScenePositionAttached(QObject *parent) - : QObject(parent) -{ - m_item = qobject_cast(parent); - connectAncestors(m_item); -} - -ScenePositionAttached::~ScenePositionAttached() -{ -} - -qreal ScenePositionAttached::x() const -{ - qreal x = 0.0; - QQuickItem *item = m_item; - - while (item) { - x += item->x(); - item = item->parentItem(); - } - - return x; -} - -qreal ScenePositionAttached::y() const -{ - qreal y = 0.0; - QQuickItem *item = m_item; - - while (item) { - y += item->y(); - item = item->parentItem(); - } - - return y; -} - -void ScenePositionAttached::connectAncestors(QQuickItem *item) -{ - if (!item) { - return; - } - - QQuickItem *ancestor = item; - while (ancestor) { - m_ancestors << ancestor; - - connect(ancestor, &QQuickItem::xChanged, this, &ScenePositionAttached::xChanged); - connect(ancestor, &QQuickItem::yChanged, this, &ScenePositionAttached::yChanged); - connect(ancestor, &QQuickItem::parentChanged, this, [this, ancestor]() { - while (!m_ancestors.isEmpty()) { - QQuickItem *last = m_ancestors.takeLast(); - // Disconnect the item which had its parent changed too, - // because connectAncestors() would reconnect it next. - disconnect(last, nullptr, this, nullptr); - if (last == ancestor) { - break; - } - } - - connectAncestors(ancestor); - - Q_EMIT xChanged(); - Q_EMIT yChanged(); - }); - - ancestor = ancestor->parentItem(); - } -} - -ScenePositionAttached *ScenePositionAttached::qmlAttachedProperties(QObject *object) -{ - return new ScenePositionAttached(object); -} - -#include "moc_scenepositionattached.cpp" diff --git a/local/recipes/kde/kirigami/source/src/scenepositionattached.h b/local/recipes/kde/kirigami/source/src/scenepositionattached.h deleted file mode 100644 index afef25c5b0..0000000000 --- a/local/recipes/kde/kirigami/source/src/scenepositionattached.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2018 Marco Martin - * - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#ifndef SCENEPOSITIONATTACHED_H -#define SCENEPOSITIONATTACHED_H - -#include -#include - -class QQuickItem; - -/** - * This attached property contains the information about the scene position of the item: - * Its global x and y coordinates will update automatically and can be binded - * @code - * import org.kde.kirigami as Kirigami - * Text { - * text: ScenePosition.x - * } - * @endcode - * @since 2.3 - */ -class ScenePositionAttached : public QObject -{ - Q_OBJECT - QML_ELEMENT - QML_ATTACHED(ScenePositionAttached) - QML_NAMED_ELEMENT(ScenePosition) - QML_UNCREATABLE("") - /** - * The global scene X position - */ - Q_PROPERTY(qreal x READ x NOTIFY xChanged FINAL) - - /** - * The global scene Y position - */ - Q_PROPERTY(qreal y READ y NOTIFY yChanged FINAL) - -public: - explicit ScenePositionAttached(QObject *parent = nullptr); - ~ScenePositionAttached() override; - - qreal x() const; - qreal y() const; - - // QML attached property - static ScenePositionAttached *qmlAttachedProperties(QObject *object); - -Q_SIGNALS: - void xChanged(); - void yChanged(); - -private: - void connectAncestors(QQuickItem *item); - - QQuickItem *m_item = nullptr; - QList m_ancestors; -}; - -QML_DECLARE_TYPEINFO(ScenePositionAttached, QML_HAS_ATTACHED_PROPERTIES) - -#endif // SCENEPOSITIONATTACHED_H diff --git a/local/recipes/kde/kirigami/source/src/spellcheckattached.h b/local/recipes/kde/kirigami/source/src/spellcheckattached.h index fdfa8b6452..7f210ce9ef 100644 --- a/local/recipes/kde/kirigami/source/src/spellcheckattached.h +++ b/local/recipes/kde/kirigami/source/src/spellcheckattached.h @@ -9,25 +9,26 @@ #include -/** - * @brief This attached property contains hints for spell checker. +/*! + * \qmltype SpellCheck + * \inqmlmodule org.kde.kirigami * - * @warning Kirigami doesn't provide any spell checker per se, this is just a + * \brief This attached property contains hints for spell checker. + * + * \warning Kirigami doesn't provide any spell checker per se, this is just a * hint for QQC2 style implementation and other downstream components. If you - * want to add spell checking to your custom application theme checkout - * \ref Sonnet. + * want to add spell checking to your custom application theme check out Sonnet. * - * @code + * \code * import QtQuick.Controls as QQC2 * import org.kde.kirigami as Kirigami * * QQC2.TextArea { * Kirigami.SpellCheck.enabled: true * } - * @endcode + * \endcode * - * @author Carl Schwan - * @since 2.18 + * \since 2.18 */ class SpellCheckAttached : public QObject { @@ -37,14 +38,16 @@ class SpellCheckAttached : public QObject QML_UNCREATABLE("Attached property only") QML_ATTACHED(SpellCheckAttached) - /** + /*! + * \qmlattachedproperty bool SpellCheck::enabled + * * This property holds whether the spell checking should be enabled on the * TextField/TextArea. * - * @note By default, false. This might change in KF6, so if you don't want + * \note By default, false. This might change in KF6, so if you don't want * spellcheck in your application, explicitly set it to false. * - * @since 2.18 + * \since 2.18 */ Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged FINAL) public: diff --git a/local/recipes/kde/kirigami/source/src/styles/org.kde.desktop/AbstractApplicationHeader.qml b/local/recipes/kde/kirigami/source/src/styles/org.kde.desktop/AbstractApplicationHeader.qml index fac2e34bcd..5e48aa32a6 100644 --- a/local/recipes/kde/kirigami/source/src/styles/org.kde.desktop/AbstractApplicationHeader.qml +++ b/local/recipes/kde/kirigami/source/src/styles/org.kde.desktop/AbstractApplicationHeader.qml @@ -6,7 +6,7 @@ import QtQuick import org.kde.kirigami as Kirigami -import "../../templates" as T +import org.kde.kirigami.templates as T T.AbstractApplicationHeader { id: root diff --git a/local/recipes/kde/kirigami/source/src/wheelhandler.cpp b/local/recipes/kde/kirigami/source/src/wheelhandler.cpp index f8734a1211..5c614b2619 100644 --- a/local/recipes/kde/kirigami/source/src/wheelhandler.cpp +++ b/local/recipes/kde/kirigami/source/src/wheelhandler.cpp @@ -8,7 +8,6 @@ #include "settings.h" #include -#include #include #include @@ -100,7 +99,10 @@ WheelHandler::WheelHandler(QObject *parent) setScrolling(false); }); + m_xScrollAnimation.setEasingCurve(QEasingCurve::OutCubic); m_yScrollAnimation.setEasingCurve(QEasingCurve::OutCubic); + m_xInertiaScrollAnimation.setEasingCurve(QEasingCurve::OutQuad); + m_yInertiaScrollAnimation.setEasingCurve(QEasingCurve::OutQuad); connect(QGuiApplication::styleHints(), &QStyleHints::wheelScrollLinesChanged, this, [this](int scrollLines) { m_defaultPixelStepSize = 20 * scrollLines; @@ -144,10 +146,22 @@ void WheelHandler::setTarget(QQuickItem *target) m_flickable = target; m_filterItem->setParentItem(target); + if (m_xScrollAnimation.targetObject()) { + m_xScrollAnimation.stop(); + } + m_xScrollAnimation.setTargetObject(target); if (m_yScrollAnimation.targetObject()) { m_yScrollAnimation.stop(); } m_yScrollAnimation.setTargetObject(target); + if (m_yInertiaScrollAnimation.targetObject()) { + m_yInertiaScrollAnimation.stop(); + } + m_yInertiaScrollAnimation.setTargetObject(target); + if (m_xInertiaScrollAnimation.targetObject()) { + m_xInertiaScrollAnimation.stop(); + } + m_xInertiaScrollAnimation.setTargetObject(target); if (target) { target->installEventFilter(this); @@ -198,8 +212,15 @@ void WheelHandler::_k_rebindScrollBars() // We need to check if the parent inherits QQuickScrollView in case the // parent is another Flickable that already has a Kirigami WheelHandler. auto flickableParent = m_flickable->parentItem(); + if (m_scrollView && m_scrollView != flickableParent) { + m_scrollView->removeEventFilter(this); + } if (flickableParent && flickableParent->inherits("QQuickScrollView")) { - const auto siblings = flickableParent->children(); + if (m_scrollView != flickableParent) { + m_scrollView = flickableParent; + m_scrollView->installEventFilter(this); + } + const auto siblings = m_scrollView->children(); for (const auto child : siblings) { if (child->inherits("QQuickScrollBarAttached")) { attachedToScrollView.attached = child; @@ -388,25 +409,12 @@ void WheelHandler::classBegin() m_engine = qmlEngine(this); m_units = m_engine->singletonInstance("org.kde.kirigami.platform", "Units"); m_settings = m_engine->singletonInstance("org.kde.kirigami.platform", "Settings"); - initSmoothScrollDuration(); - - connect(m_units, &Kirigami::Platform::Units::longDurationChanged, this, &WheelHandler::initSmoothScrollDuration); - connect(m_settings, &Kirigami::Platform::Settings::smoothScrollChanged, this, &WheelHandler::initSmoothScrollDuration); } void WheelHandler::componentComplete() { } -void WheelHandler::initSmoothScrollDuration() -{ - if (m_settings->smoothScroll()) { - m_yScrollAnimation.setDuration(m_units->longDuration()); - } else { - m_yScrollAnimation.setDuration(0); - } -} - void WheelHandler::setScrolling(bool scrolling) { if (m_wheelScrolling == scrolling) { @@ -419,6 +427,88 @@ void WheelHandler::setScrolling(bool scrolling) m_filterItem->setEnabled(m_wheelScrolling); } +void WheelHandler::startInertiaScrolling() +{ + const qreal width = m_flickable->width(); + const qreal height = m_flickable->height(); + const qreal contentWidth = m_flickable->property("contentWidth").toReal(); + const qreal contentHeight = m_flickable->property("contentHeight").toReal(); + const qreal topMargin = m_flickable->property("topMargin").toReal(); + const qreal bottomMargin = m_flickable->property("bottomMargin").toReal(); + const qreal leftMargin = m_flickable->property("leftMargin").toReal(); + const qreal rightMargin = m_flickable->property("rightMargin").toReal(); + const qreal originX = m_flickable->property("originX").toReal(); + const qreal originY = m_flickable->property("originY").toReal(); + const qreal contentX = m_flickable->property("contentX").toReal(); + const qreal contentY = m_flickable->property("contentY").toReal(); + + QPointF minExtent = QPointF(leftMargin, topMargin) - QPointF(originX, originY); + QPointF maxExtent = QPointF(width, height) - (QPointF(contentWidth, contentHeight) + QPointF(rightMargin, bottomMargin) + QPointF(originX, originY)); + + QPointF totalDelta(0, 0); + for (const QPoint delta : m_wheelEvents) { + totalDelta += delta; + } + const uint64_t elapsed = std::max(m_timestamps.last() - m_timestamps.first(), 1); + + // The inertia is more natural if we multiply + // the actual scrolling speed by some factor, + // chosen manually here to be 2.5. Otherwise, the + // scrolling will appear to be too slow. + const qreal speedFactor = 2.5; + + // We get the velocity in px/s by calculating + // displacement / elapsed time; we multiply by + // 1000 since the elapsed time is in ms. + QPointF vel = -totalDelta * 1000 / elapsed * speedFactor; + QPointF startValue = QPointF(contentX, contentY); + + // We decelerate at 4000px/s^2, chosen by manual test + // to be natural. + const qreal deceleration = 4000 * speedFactor; + + // We use constant deceleration formulas to find: + // time = |velocity / deceleration| + // distance_traveled = time * velocity / 2 + QPointF time = QPointF(qAbs(vel.x() / deceleration), qAbs(vel.y() / deceleration)); + QPointF endValue = QPointF(startValue.x() + time.x() * vel.x() / 2, startValue.y() + time.y() * vel.y() / 2); + + // We bound the end value so that we don't animate + // beyond the scrollable amount. + QPointF boundedEndValue = + QPointF(std::max(std::min(endValue.x(), -maxExtent.x()), -minExtent.x()), std::max(std::min(endValue.y(), -maxExtent.y()), -minExtent.y())); + + // If we did bound the end value, we check how much + // (from 0 to 1) of the animation is actually played, + // and we adjust the time required for it accordingly. + QPointF progressFactor = QPointF((boundedEndValue.x() - startValue.x()) / (endValue.x() - startValue.x()), + (boundedEndValue.y() - startValue.y()) / (endValue.y() - startValue.y())); + // The formula here is: + // partial_time = complete_time * (1 - sqrt(1 - partial_progress_factor)), + // with partial_progress_factor being between 0 and 1. + // It can be obtained by inverting the OutQad easing formula, + // which is f(t) = t(2 - t). + // We also convert back from seconds to milliseconds. + QPointF realTime = QPointF(time.x() * (1 - std::sqrt(1 - progressFactor.x())), time.y() * (1 - std::sqrt(1 - progressFactor.y()))) * 1000; + m_wheelEvents.clear(); + m_timestamps.clear(); + + m_xScrollAnimation.stop(); + m_yScrollAnimation.stop(); + if (realTime.x() > 0) { + m_xInertiaScrollAnimation.setStartValue(startValue.x()); + m_xInertiaScrollAnimation.setEndValue(boundedEndValue.x()); + m_xInertiaScrollAnimation.setDuration(realTime.x()); + m_xInertiaScrollAnimation.start(QAbstractAnimation::KeepWhenStopped); + } + if (realTime.y() > 0) { + m_yInertiaScrollAnimation.setStartValue(startValue.y()); + m_yInertiaScrollAnimation.setEndValue(boundedEndValue.y()); + m_yInertiaScrollAnimation.setDuration(realTime.y()); + m_yInertiaScrollAnimation.start(QAbstractAnimation::KeepWhenStopped); + } +} + bool WheelHandler::scrollFlickable(QPointF pixelDelta, QPointF angleDelta, Qt::KeyboardModifiers modifiers) { if (!m_flickable || (pixelDelta.isNull() && angleDelta.isNull())) { @@ -440,7 +530,9 @@ bool WheelHandler::scrollFlickable(QPointF pixelDelta, QPointF angleDelta, Qt::K const qreal pageWidth = width - leftMargin - rightMargin; const qreal pageHeight = height - topMargin - bottomMargin; const auto window = m_flickable->window(); + const auto screen = window ? window->screen() : nullptr; const qreal devicePixelRatio = window != nullptr ? window->devicePixelRatio() : qGuiApp->devicePixelRatio(); + const qreal refreshRate = screen ? screen->refreshRate() : 0; // HACK: Only transpose deltas when not using xcb in order to not conflict with xcb's own delta transposing if (modifiers & m_defaultHorizontalScrollModifiers && qGuiApp->platformName() != QLatin1String("xcb")) { @@ -450,78 +542,102 @@ bool WheelHandler::scrollFlickable(QPointF pixelDelta, QPointF angleDelta, Qt::K const qreal xTicks = angleDelta.x() / 120; const qreal yTicks = angleDelta.y() / 120; - qreal xChange; - qreal yChange; bool scrolled = false; - // Scroll X - if (contentWidth > pageWidth) { + auto getChange = [pageScrollModifiers = modifiers & m_pageScrollModifiers](qreal ticks, qreal pixelDelta, qreal stepSize, qreal pageSize) { // Use page size with pageScrollModifiers. Matches QScrollBar, which uses QAbstractSlider behavior. - if (modifiers & m_pageScrollModifiers) { - xChange = qBound(-pageWidth, xTicks * pageWidth, pageWidth); - } else if (pixelDelta.x() != 0) { - xChange = pixelDelta.x(); + if (pageScrollModifiers) { + return qBound(-pageSize, ticks * pageSize, pageSize); + } else if (pixelDelta != 0) { + return pixelDelta; } else { - xChange = xTicks * m_horizontalStepSize; + return ticks * stepSize; + } + }; + + auto getPosition = [devicePixelRatio](qreal size, + qreal contentSize, + qreal contentPos, + qreal originPos, + qreal pageSize, + qreal leadingMargin, + qreal trailingMargin, + qreal change, + const QPropertyAnimation &animation) { + if (contentSize <= pageSize) { + return contentPos; } // contentX and contentY use reversed signs from what x and y would normally use, so flip the signs - qreal minXExtent = leftMargin - originX; - qreal maxXExtent = width - (contentWidth + rightMargin + originX); - - qreal newContentX = qBound(-minXExtent, contentX - xChange, -maxXExtent); - // Flickable::pixelAligned rounds the position, so round to mimic that behavior. - // Rounding prevents fractional positioning from causing text to be - // clipped off on the top and bottom. - // Multiply by devicePixelRatio before rounding and divide by devicePixelRatio - // after to make position match pixels on the screen more closely. - newContentX = std::round(newContentX * devicePixelRatio) / devicePixelRatio; - if (contentX != newContentX) { - scrolled = true; - m_flickable->setProperty("contentX", newContentX); - } - } - - // Scroll Y - if (contentHeight > pageHeight) { - if (modifiers & m_pageScrollModifiers) { - yChange = qBound(-pageHeight, yTicks * pageHeight, pageHeight); - } else if (pixelDelta.y() != 0) { - yChange = pixelDelta.y(); - } else { - yChange = yTicks * m_verticalStepSize; - } - - // contentX and contentY use reversed signs from what x and y would normally use, so flip the signs - - qreal minYExtent = topMargin - originY; - qreal maxYExtent = height - (contentHeight + bottomMargin + originY); - - qreal newContentY; - if (m_yScrollAnimation.state() == QPropertyAnimation::Running) { - m_yScrollAnimation.stop(); - newContentY = std::clamp(m_yScrollAnimation.endValue().toReal() + -yChange, -minYExtent, -maxYExtent); - } else { - newContentY = std::clamp(contentY - yChange, -minYExtent, -maxYExtent); - } + qreal minExtent = leadingMargin - originPos; + qreal maxExtent = size - (contentSize + trailingMargin + originPos); + qreal newContentPos = (animation.state() == QPropertyAnimation::Running ? animation.endValue().toReal() : contentPos) - change; + // bound the values without asserts + newContentPos = std::max(-minExtent, std::min(newContentPos, -maxExtent)); // Flickable::pixelAligned rounds the position, so round to mimic that behavior. // Rounding prevents fractional positioning from causing text to be // clipped off on the top and bottom. // Multiply by devicePixelRatio before rounding and divide by devicePixelRatio // after to make position match pixels on the screen more closely. - newContentY = std::round(newContentY * devicePixelRatio) / devicePixelRatio; - if (contentY != newContentY) { - scrolled = true; - if (m_wasTouched || !m_engine) { - m_flickable->setProperty("contentY", newContentY); - } else { - m_yScrollAnimation.setEndValue(newContentY); - m_yScrollAnimation.start(QAbstractAnimation::KeepWhenStopped); - } + return std::round(newContentPos * devicePixelRatio) / devicePixelRatio; + }; + + auto setPosition = [this, devicePixelRatio, refreshRate](qreal oldPos, qreal newPos, qreal stepSize, const char *property, QPropertyAnimation &animation) { + animation.stop(); + if (oldPos == newPos) { + return false; } - } + if (!m_settings->smoothScroll() || !m_engine || refreshRate <= 0) { + animation.setDuration(0); + m_flickable->setProperty(property, newPos); + return true; + } + + // Can't use wheelEvent->deviceType() to determine device type since + // on Wayland mouse is always regarded as touchpad: + // https://invent.kde.org/qt/qt/qtwayland/-/blob/e695a39519a7629c1549275a148cfb9ab99a07a9/src/client/qwaylandinputdevice.cpp#L445 + // Mouse wheel can generate angle delta like 240, 360 and so on when + // scrolling very fast on some mice such as the Logitech M150. + // Mice with hi-res mouse wheels such as the Logitech MX Master 3 can + // generate angle deltas as small as 16. + // On X11, trackpads can also generate very fine angle deltas. + + // Duration is based on the duration and movement for 120 angle delta. + // Shorten duration for smaller movements, limit duration for big movements. + // We don't want fine deltas to feel extra slow and fast scrolling should still feel fast. + // Minimum 3 frames for a 60hz display if delta > 2 physical pixels + // (start already rendered -> 1/3 rendered -> 2/3 rendered -> end rendered). + // Skip animation if <= 2 real frames for low refresh rate screens. + // Otherwise, we don't scale the duration based on refresh rate or + // device pixel ratio to avoid making the animation unexpectedly + // longer or shorter on different screens. + + qreal absPixelDelta = std::abs(newPos - oldPos); + int duration = absPixelDelta * devicePixelRatio > 2 // + ? std::max(qCeil(1000.0 / 60.0 * 3), std::min(qRound(absPixelDelta * m_units->longDuration() / stepSize), m_units->longDuration())) + : 0; + animation.setDuration(duration <= qCeil(1000.0 / refreshRate * 2) ? 0 : duration); + if (animation.duration() > 0) { + animation.setStartValue(oldPos); + animation.setEndValue(newPos); + animation.start(QAbstractAnimation::KeepWhenStopped); + } else { + m_flickable->setProperty(property, newPos); + } + return true; + }; + + qreal xChange = getChange(xTicks, pixelDelta.x(), m_horizontalStepSize, pageWidth); + qreal newContentX = getPosition(width, contentWidth, contentX, originX, pageWidth, leftMargin, rightMargin, xChange, m_xScrollAnimation); + + qreal yChange = getChange(yTicks, pixelDelta.y(), m_verticalStepSize, pageHeight); + qreal newContentY = getPosition(height, contentHeight, contentY, originY, pageHeight, topMargin, bottomMargin, yChange, m_yScrollAnimation); + + // Don't use `||` because we need the position to be set for contentX and contentY. + scrolled |= setPosition(contentX, newContentX, m_horizontalStepSize, "contentX", m_xScrollAnimation); + scrolled |= setPosition(contentY, newContentY, m_verticalStepSize, "contentY", m_yScrollAnimation); return scrolled; } @@ -577,6 +693,12 @@ bool WheelHandler::eventFilter(QObject *watched, QEvent *event) return false; } + // We only process keyboard events for QQuickScrollView. + const auto eventType = event->type(); + if (item == m_scrollView && eventType != QEvent::KeyPress && eventType != QEvent::KeyRelease) { + return false; + } + qreal contentWidth = 0; qreal contentHeight = 0; qreal pageWidth = 0; @@ -589,7 +711,7 @@ bool WheelHandler::eventFilter(QObject *watched, QEvent *event) } // The code handling touch, mouse and hover events is mostly copied/adapted from QQuickScrollView::childMouseEventFilter() - switch (event->type()) { + switch (eventType) { case QEvent::Wheel: { // QQuickScrollBar::interactive handling Matches behavior in QQuickScrollView::eventFilter() if (m_filterMouseEvents) { @@ -602,13 +724,6 @@ bool WheelHandler::eventFilter(QObject *watched, QEvent *event) } QWheelEvent *wheelEvent = static_cast(event); - // Can't use wheelEvent->deviceType() to determine device type since on Wayland mouse is always regarded as touchpad - // https://invent.kde.org/qt/qt/qtwayland/-/blob/e695a39519a7629c1549275a148cfb9ab99a07a9/src/client/qwaylandinputdevice.cpp#L445 - // and we can only expect a touchpad never generates the same angle delta as a mouse - - // mouse wheel can also generate angle delta like 240, 360 and so on when scrolling very fast - // only checking wheelEvent->angleDelta().y() because we only animate for contentY - m_wasTouched = (std::abs(wheelEvent->angleDelta().y()) != 0 && std::abs(wheelEvent->angleDelta().y()) % 120 != 0); // NOTE: On X11 with libinput, pixelDelta is identical to angleDelta when using a mouse that shouldn't use pixelDelta. // If faulty pixelDelta, reset pixelDelta to (0,0). if (wheelEvent->pixelDelta() == wheelEvent->angleDelta()) { @@ -629,6 +744,17 @@ bool WheelHandler::eventFilter(QObject *watched, QEvent *event) Q_EMIT wheel(&m_kirigamiWheelEvent); + if (m_wheelEvents.count() > 6) { + m_wheelEvents.dequeue(); + m_timestamps.dequeue(); + } + if (m_wheelEvents.count() > 2 && wheelEvent->isEndEvent()) { + startInertiaScrolling(); + } else { + m_wheelEvents.enqueue(wheelEvent->pixelDelta()); + m_timestamps.enqueue(wheelEvent->timestamp()); + } + if (m_kirigamiWheelEvent.isAccepted()) { return true; } diff --git a/local/recipes/kde/kirigami/source/src/wheelhandler.h b/local/recipes/kde/kirigami/source/src/wheelhandler.h index 70ff9d9c78..f73a2dd62e 100644 --- a/local/recipes/kde/kirigami/source/src/wheelhandler.h +++ b/local/recipes/kde/kirigami/source/src/wheelhandler.h @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -21,8 +22,11 @@ class QWheelEvent; class QQmlEngine; class WheelHandler; -/** - * Describes the mouse wheel event +/*! + * \qmltype WheelEvent + * \inqmlmodule org.kde.kirigami + * + * \brief Describes the mouse wheel event. */ class KirigamiWheelEvent : public QObject { @@ -30,22 +34,22 @@ class KirigamiWheelEvent : public QObject QML_NAMED_ELEMENT(WheelEvent) QML_UNCREATABLE("") - /** - * x: real + /*! + * \qmlproperty double WheelEvent::x * - * X coordinate of the mouse pointer + * X coordinate of the mouse pointer. */ Q_PROPERTY(qreal x READ x CONSTANT FINAL) - /** - * y: real + /*! + * \qmlproperty double WheelEvent::y * - * Y coordinate of the mouse pointer + * Y coordinate of the mouse pointer. */ Q_PROPERTY(qreal y READ y CONSTANT FINAL) - /** - * angleDelta: point + /*! + * \qmlproperty point WheelEvent::angleDelta * * The distance the wheel is rotated in degrees. * The x and y coordinates indicate the horizontal and vertical wheels respectively. @@ -54,25 +58,29 @@ class KirigamiWheelEvent : public QObject */ Q_PROPERTY(QPointF angleDelta READ angleDelta CONSTANT FINAL) - /** - * pixelDelta: point + /*! + * \qmlproperty point WheelEvent::pixelDelta * - * provides the delta in screen pixels available on high resolution trackpads + * Provides the delta in screen pixels available on high resolution trackpads. */ Q_PROPERTY(QPointF pixelDelta READ pixelDelta CONSTANT FINAL) - /** - * buttons: int + /*! + * \qmlproperty int WheelEvent::buttons * - * it contains an OR combination of the buttons that were pressed during the wheel, they can be: - * Qt.LeftButton, Qt.MiddleButton, Qt.RightButton + * It contains an OR combination of the buttons that were pressed during the wheel, they can be: + * \list + * \li Qt.LeftButton + * \li Qt.MiddleButton + * \li Qt.RightButton + * \endlist */ Q_PROPERTY(int buttons READ buttons CONSTANT FINAL) - /** - * modifiers: int + /*! + * \qmlproperty int WheelEvent::modifiers * - * Keyboard mobifiers that were pressed during the wheel event, such as: + * Keyboard modifiers that were pressed during the wheel event, such as: * Qt.NoModifier (default, no modifiers) * Qt.ControlModifier * Qt.ShiftModifier @@ -80,20 +88,20 @@ class KirigamiWheelEvent : public QObject */ Q_PROPERTY(int modifiers READ modifiers CONSTANT FINAL) - /** - * inverted: bool + /*! + * \qmlproperty bool WheelEvent::inverted * * Whether the delta values are inverted * On some platformsthe returned delta are inverted, so positive values would mean bottom/left */ Q_PROPERTY(bool inverted READ inverted CONSTANT FINAL) - /** - * accepted: bool + /*! + * \qmlproperty bool WheelEvent::accepted * * If set, the event shouldn't be managed anymore, - * for instance it can be used to block the handler to manage the scroll of a view on some scenarios - * @code + * for instance it can be used to block the handler to manage the scroll of a view on some scenarios. + * \code * // This handler handles automatically the scroll of * // flickableItem, unless Ctrl is pressed, in this case the * // app has custom code to handle Ctrl+wheel zooming @@ -108,7 +116,7 @@ class KirigamiWheelEvent : public QObject * } * } * } - * @endcode + * \endcode * */ Q_PROPERTY(bool accepted READ isAccepted WRITE setAccepted FINAL) @@ -147,33 +155,36 @@ public: WheelFilterItem(QQuickItem *parent = nullptr); }; -/** - * @brief Handles scrolling for a Flickable and 2 attached ScrollBars. +/*! + * \qmltype WheelHandler + * \inqmlmodule org.kde.kirigami + * + * \brief Handles scrolling for a Flickable and 2 attached ScrollBars. * * WheelHandler filters events from a Flickable, a vertical ScrollBar and a horizontal ScrollBar. - * Wheel and KeyPress events (when `keyNavigationEnabled` is true) are used to scroll the Flickable. - * When `filterMouseEvents` is true, WheelHandler blocks mouse button input from reaching the Flickable - * and sets the `interactive` property of the scrollbars to false when touch input is used. + * Wheel and KeyPress events (when keyNavigationEnabled is true) are used to scroll the Flickable. + * When filterMouseEvents is true, WheelHandler blocks mouse button input from reaching the Flickable + * and sets the interactive property of the scrollbars to false when touch input is used. * * Wheel event handling behavior: - * - * - Pixel delta is ignored unless angle delta is not available because pixel delta scrolling is too slow. Qt Widgets doesn't use pixel delta either, so the + * \list + * \li Pixel delta is ignored unless angle delta is not available because pixel delta scrolling is too slow. Qt Widgets doesn't use pixel delta either, so the * default scroll speed should be consistent with Qt Widgets. - * - When using angle delta, scroll using the step increments defined by `verticalStepSize` and `horizontalStepSize`. - * - When one of the keyboard modifiers in `pageScrollModifiers` is used, scroll by pages. - * - When using a device that doesn't use 120 angle delta unit increments such as a touchpad, the `verticalStepSize`, `horizontalStepSize` and page increments - * (if using page scrolling) will be multiplied by `angle delta / 120` to keep scrolling smooth. - * - If scrolling has happened in the last 400ms, use an internal QQuickItem stacked over the Flickable's contentItem to catch wheel events and use those wheel - * events to scroll, if possible. This prevents controls inside the Flickable's contentItem that allow scrolling to change the value (e.g., Sliders, SpinBoxes) - * from conflicting with scrolling the page. + * \li When using angle delta, scroll using the step increments defined by verticalStepSize and horizontalStepSize. + * \li When one of the keyboard modifiers in pageScrollModifiers is used, scroll by pages. + * \li When using a device that doesn't use 120 angle delta unit increments such as a touchpad, the verticalStepSize, horizontalStepSize and page increments + * (if using page scrolling) will be multiplied by \c{angle delta / 120} to keep scrolling smooth. + * \li If scrolling has happened in the last 400ms, use an internal QQuickItem stacked over the Flickable's contentItem to catch wheel events and use those + * wheel events to scroll, if possible. This prevents controls inside the Flickable's contentItem that allow scrolling to change the value (e.g., Sliders, + * SpinBoxes) from conflicting with scrolling the page. \endlist * * Common usage with a Flickable: * - * @include wheelhandler/FlickableUsage.qml + * \quotefile wheelhandler/FlickableUsage.qml * * Common usage inside of a ScrollView template: * - * @include wheelhandler/ScrollViewUsage.qml + * \quotefile wheelhandler/ScrollViewUsage.qml * */ class WheelHandler : public QObject, public QQmlParserStatus @@ -182,46 +193,56 @@ class WheelHandler : public QObject, public QQmlParserStatus Q_INTERFACES(QQmlParserStatus) QML_ELEMENT - /** - * @brief This property holds the Qt Quick Flickable that the WheelHandler will control. + /*! + * \qmlproperty Item WheelHandler::target + * + * \brief This property holds the Qt Quick Flickable that the WheelHandler will control. */ Q_PROPERTY(QQuickItem *target READ target WRITE setTarget NOTIFY targetChanged FINAL) - /** - * @brief This property holds the vertical step size. + /*! + * \qmlproperty double WheelHandler::verticalStepSize * - * The default value is equivalent to `20 * Qt.styleHints.wheelScrollLines`. This is consistent with the default increment for QScrollArea. + * \brief This property holds the vertical step size. * - * @sa horizontalStepSize + * The default value is equivalent to \c{20 * Qt.styleHints.wheelScrollLines}. This is consistent with the default increment for QScrollArea. * - * @since KDE Frameworks 5.89 + * \sa horizontalStepSize + * + * \since 5.89 */ Q_PROPERTY(qreal verticalStepSize READ verticalStepSize WRITE setVerticalStepSize RESET resetVerticalStepSize NOTIFY verticalStepSizeChanged FINAL) - /** - * @brief This property holds the horizontal step size. + /*! + * \qmlproperty double WheelHandler::horizontalStepSize * - * The default value is equivalent to `20 * Qt.styleHints.wheelScrollLines`. This is consistent with the default increment for QScrollArea. + * \brief This property holds the horizontal step size. * - * @sa verticalStepSize + * The default value is equivalent to \c{20 * Qt.styleHints.wheelScrollLines}. This is consistent with the default increment for QScrollArea. * - * @since KDE Frameworks 5.89 + * \sa verticalStepSize + * + * \since 5.89 */ Q_PROPERTY( qreal horizontalStepSize READ horizontalStepSize WRITE setHorizontalStepSize RESET resetHorizontalStepSize NOTIFY horizontalStepSizeChanged FINAL) - /** - * @brief This property holds the keyboard modifiers that will be used to start page scrolling. + /*! + * \qmlproperty int WheelHandler::pageScrollModifiers * - * The default value is equivalent to `Qt.ControlModifier | Qt.ShiftModifier`. This matches QScrollBar, which uses QAbstractSlider behavior. + * \brief This property holds the keyboard modifiers that will be used to start page scrolling. * - * @since KDE Frameworks 5.89 + * The default value is equivalent to \c{Qt.ControlModifier | Qt.ShiftModifier}. This matches QScrollBar, which uses QAbstractSlider behavior. + * + * \since 5.89 */ Q_PROPERTY(Qt::KeyboardModifiers pageScrollModifiers READ pageScrollModifiers WRITE setPageScrollModifiers RESET resetPageScrollModifiers NOTIFY pageScrollModifiersChanged FINAL) - /** - * @brief This property holds whether the WheelHandler filters mouse events like a Qt Quick Controls ScrollView would. + /*! + * \qmlproperty bool WheelHandler::filterMouseEvents + * + * \brief This property holds whether the WheelHandler filters mouse events like a Qt Quick Controls ScrollView would. * * Touch events are allowed to flick the view and they make the scrollbars not interactive. * @@ -229,46 +250,54 @@ class WheelHandler : public QObject, public QQmlParserStatus * * Hover events on the scrollbars and wheel events on anything also make the scrollbars interactive when this property is set to true. * - * The default value is `false`. + * The default value is \c false. * - * @since KDE Frameworks 5.89 + * \since 5.89 */ Q_PROPERTY(bool filterMouseEvents READ filterMouseEvents WRITE setFilterMouseEvents NOTIFY filterMouseEventsChanged FINAL) - /** - * @brief This property holds whether the WheelHandler handles keyboard scrolling. + /*! + * \qmlproperty bool WheelHandler::keyNavigationEnabled * - * - Left arrow scrolls a step to the left. - * - Right arrow scrolls a step to the right. - * - Up arrow scrolls a step upwards. - * - Down arrow scrolls a step downwards. - * - PageUp scrolls to the previous page. - * - PageDown scrolls to the next page. - * - Home scrolls to the beginning. - * - End scrolls to the end. - * - When Alt is held, scroll horizontally when using PageUp, PageDown, Home or End. + * \brief This property holds whether the WheelHandler handles keyboard scrolling. * - * The default value is `false`. + * \list + * \li Left arrow scrolls a step to the left. + * \li Right arrow scrolls a step to the right. + * \li Up arrow scrolls a step upwards. + * \li Down arrow scrolls a step downwards. + * \li PageUp scrolls to the previous page. + * \li PageDown scrolls to the next page. + * \li Home scrolls to the beginning. + * \li End scrolls to the end. + * \li When Alt is held, scroll horizontally when using PageUp, PageDown, Home or End. + * \endlist * - * @since KDE Frameworks 5.89 + * The default value is \c false. + * + * \since 5.89 */ Q_PROPERTY(bool keyNavigationEnabled READ keyNavigationEnabled WRITE setKeyNavigationEnabled NOTIFY keyNavigationEnabledChanged FINAL) - /** - * @brief This property holds whether the WheelHandler blocks all wheel events from reaching the Flickable. + /*! + * \qmlproperty bool WheelHandler::blockTargetWheel + * + * \brief This property holds whether the WheelHandler blocks all wheel events from reaching the Flickable. * * When this property is false, scrolling the Flickable with WheelHandler will only block an event from reaching the Flickable if the Flickable is actually * scrolled by WheelHandler. * - * NOTE: Wheel events created by touchpad gestures with pixel deltas will always be accepted no matter what. This is because they will cause the Flickable + * \note Wheel events created by touchpad gestures with pixel deltas will always be accepted no matter what. This is because they will cause the Flickable * to jump back to where scrolling started unless the events are always accepted before they reach the Flickable. * * The default value is true. */ Q_PROPERTY(bool blockTargetWheel MEMBER m_blockTargetWheel NOTIFY blockTargetWheelChanged FINAL) - /** - * @brief This property holds whether the WheelHandler can use wheel events to scroll the Flickable. + /*! + * \qmlproperty bool WheelHandler::scrollFlickableTarget + * + * \brief This property holds whether the WheelHandler can use wheel events to scroll the Flickable. * * The default value is true. */ @@ -299,39 +328,47 @@ public: bool keyNavigationEnabled() const; void setKeyNavigationEnabled(bool enabled); - /** + /*! + * \qmlmethod bool WheelHandler::scrollUp(double stepSize = -1) + * * Scroll up one step. If the stepSize parameter is less than 0, the verticalStepSize will be used. * * returns true if the contentItem was moved. * - * @since KDE Frameworks 5.89 + * \since 5.89 */ Q_INVOKABLE bool scrollUp(qreal stepSize = -1); - /** + /*! + * \qmlmethod bool WheelHandler::scrollDown(double stepSize = -1) + * * Scroll down one step. If the stepSize parameter is less than 0, the verticalStepSize will be used. * * returns true if the contentItem was moved. * - * @since KDE Frameworks 5.89 + * \since 5.89 */ Q_INVOKABLE bool scrollDown(qreal stepSize = -1); - /** - * Scroll left one step. If the stepSize parameter is less than 0, the horizontalStepSize will be used. + /*! + * \qmlmethod bool WheelHandler::scrollLeft(double stepSize = -1) + * + * Scroll left one step. If the \a stepSize is less than 0, the horizontalStepSize will be used. * * returns true if the contentItem was moved. * - * @since KDE Frameworks 5.89 + * \since 5.89 */ Q_INVOKABLE bool scrollLeft(qreal stepSize = -1); - /** + /*! + * \qmlmethod bool WheelHandler::scrollRight(double stepSize = -1) + * * Scroll right one step. If the stepSize parameter is less than 0, the horizontalStepSize will be used. * * returns true if the contentItem was moved. * - * @since KDE Frameworks 5.89 + * \since 5.89 */ Q_INVOKABLE bool scrollRight(qreal stepSize = -1); @@ -345,10 +382,12 @@ Q_SIGNALS: void blockTargetWheelChanged(); void scrollFlickableTargetChanged(); - /** - * @brief This signal is emitted when a wheel event reaches the event filter, just before scrolling is handled. + /*! + * \qmlsignal WheelHandler::wheel(WheelEvent wheel) * - * Accepting the wheel event in the `onWheel` signal handler prevents scrolling from happening. + * \brief This signal is emitted when a wheel event reaches the event filter, just before scrolling is handled. + * + * Accepting the wheel event in the \c onWheel signal handler prevents scrolling from happening. */ void wheel(KirigamiWheelEvent *wheel); @@ -361,9 +400,9 @@ private Q_SLOTS: private: void classBegin() override; void componentComplete() override; - void initSmoothScrollDuration(); void setScrolling(bool scrolling); + void startInertiaScrolling(); bool scrollFlickable(QPointF pixelDelta, QPointF angleDelta = {}, Qt::KeyboardModifiers modifiers = Qt::NoModifier); Kirigami::Platform::Units *m_units = nullptr; @@ -371,6 +410,7 @@ private: QPointer m_flickable; QPointer m_verticalScrollBar; QPointer m_horizontalScrollBar; + QPointer m_scrollView; QMetaObject::Connection m_verticalChangedConnection; QMetaObject::Connection m_horizontalChangedConnection; QPointer m_filterItem; @@ -393,9 +433,14 @@ private: Qt::KeyboardModifiers m_pageScrollModifiers = m_defaultPageScrollModifiers; QTimer m_wheelScrollingTimer; KirigamiWheelEvent m_kirigamiWheelEvent; + QQueue m_wheelEvents; + QQueue m_timestamps; // Smooth scrolling QQmlEngine *m_engine = nullptr; + QPropertyAnimation m_xScrollAnimation{nullptr, "contentX"}; QPropertyAnimation m_yScrollAnimation{nullptr, "contentY"}; + QPropertyAnimation m_xInertiaScrollAnimation{nullptr, "contentX"}; + QPropertyAnimation m_yInertiaScrollAnimation{nullptr, "contentY"}; bool m_wasTouched = false; }; diff --git a/local/recipes/kde/kirigami/source/templates/kirigami6/CMakeLists.txt b/local/recipes/kde/kirigami/source/templates/kirigami6/CMakeLists.txt index 2689127c2d..36d37e4719 100644 --- a/local/recipes/kde/kirigami/source/templates/kirigami6/CMakeLists.txt +++ b/local/recipes/kde/kirigami/source/templates/kirigami6/CMakeLists.txt @@ -5,10 +5,8 @@ cmake_minimum_required(VERSION 3.16) project(%{APPNAMELC} VERSION 0.1) -include(FeatureSummary) - set(QT6_MIN_VERSION 6.5.0) -set(KF6_MIN_VERSION 6.0.0) +set(KF6_MIN_VERSION 6.12.0) find_package(ECM ${KF6_MIN_VERSION} REQUIRED NO_MODULE) @@ -36,23 +34,19 @@ if (NOT ANDROID) endif() find_package(Qt6 ${QT6_MIN_VERSION} REQUIRED COMPONENTS Core Gui Qml QuickControls2 Svg ${QT_EXTRA_COMPONENTS}) -find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS Kirigami2 CoreAddons Config I18n) +find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS Kirigami CoreAddons Config I18n) qt_policy(SET QTP0001 NEW) ecm_find_qmlmodule(org.kde.kirigamiaddons.formcard 1.0) -if (ANDROID) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/android/version.gradle.in ${CMAKE_BINARY_DIR}/version.gradle) -endif() - add_subdirectory(src) install(FILES org.kde.%{APPNAMELC}.desktop DESTINATION ${KDE_INSTALL_APPDIR}) install(FILES org.kde.%{APPNAMELC}.metainfo.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) ki18n_install(po) -feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) +feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) if (NOT ANDROID) file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES src/*.cpp src/*.h) diff --git a/local/recipes/kde/kirigami/source/templates/kirigami6/android/build.gradle b/local/recipes/kde/kirigami/source/templates/kirigami6/android/build.gradle index fa62a26cbf..23b60cebec 100644 --- a/local/recipes/kde/kirigami/source/templates/kirigami6/android/build.gradle +++ b/local/recipes/kde/kirigami/source/templates/kirigami6/android/build.gradle @@ -6,23 +6,22 @@ buildscript { repositories { google() - jcenter() + mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.4.1' + classpath 'com.android.tools.build:gradle:8.6.0' } } repositories { google() - jcenter() + mavenCentral() } apply plugin: 'com.android.application' -apply from: '../version.gradle' -def timestamp = (int)(new Date().getTime()/1000) +apply from: '../ecm-version.gradle' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']) @@ -74,9 +73,9 @@ android { targetSdkVersion qtTargetSdkVersion applicationId "org.kde.%{APPNAMELC}" namespace "org.kde.%{APPNAMELC}" - versionCode timestamp - versionName projectVersionFull - manifestPlaceholders = [versionName: projectVersionFull, versionCode: timestamp] + versionCode ecmVersionCode + versionName ecmVersionName + manifestPlaceholders = [versionName: ecmVersionName, versionCode: ecmVersionCode] } } diff --git a/local/recipes/kde/kirigami/source/templates/kirigami6/android/version.gradle.in b/local/recipes/kde/kirigami/source/templates/kirigami6/android/version.gradle.in deleted file mode 100644 index 9ddd1bc179..0000000000 --- a/local/recipes/kde/kirigami/source/templates/kirigami6/android/version.gradle.in +++ /dev/null @@ -1,7 +0,0 @@ -// SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}> -// SPDX-License-Identifier: BSD-3-Clause - -ext { - projectVersionFull = "@PROJECT_VERSION@" -} - diff --git a/local/recipes/kde/kirigami/source/templates/kirigami6/kirigami.kdevtemplate b/local/recipes/kde/kirigami/source/templates/kirigami6/kirigami.kdevtemplate index 7efd467532..b76c9bef2f 100644 --- a/local/recipes/kde/kirigami/source/templates/kirigami6/kirigami.kdevtemplate +++ b/local/recipes/kde/kirigami/source/templates/kirigami6/kirigami.kdevtemplate @@ -23,17 +23,20 @@ Name[ka]=აპლიკაცია Kirigami (Qt6) Name[ko]=Kirigami 앱(Qt6) Name[lt]=Kirigami programa (Qt6) Name[lv]=„Kirigami“ programma (Qt6) +Name[nb]=Kirigami-program (Qt6) Name[nl]=Kirigami-toepassing (Qt6) Name[nn]=Kirigami-program (Qt6) Name[pl]=Aplikacja Kirigami (Qt6) Name[pt_BR]=Aplicativo Kirigami (Qt6) +Name[ro]=Aplicație Kirigami (Qt6) Name[ru]=Приложение Kirigami (Qt6) Name[sa]=किरिगामी अनुप्रयोग (Qt6) 1.1. +Name[sk]=Aplikácia Kirigami Name[sl]=Aplikacija Kirigami (Qt6) Name[sv]=Kirigami-program (Qt6) Name[tr]=Kirigami Uygulaması (Qt6) +Name[ug]=Kirigami پىروگراممىسى (Qt6) Name[uk]=Програма на Kirigami (Qt6) -Name[x-test]=xxKirigami Application (Qt6)xx Name[zh_CN]=Kirigami 应用程序 (Qt6) Name[zh_TW]=Kirigami 應用程式 (Qt6) Comment=Convergent application using Qt Quick Controls 2 and Kirigami @@ -59,6 +62,7 @@ Comment[ka]=კონვერგენტული პროგრამა Qt Comment[ko]=Qt Quick Controls 2와 Kirigami를 사용하는 통합형 앱 Comment[lt]=Konverguojanti programa naudojanti Qt Quick valdiklius 2 ir Kirigami Comment[lv]=Konverģenta programma, izmantojot „Qt Quick Controls“ 2 un “Kirigami“ +Comment[nb]=Program for ulike typer brukergrensesnitt med Qt Quick Controls 2 og Kirigami Comment[nl]=Convergente toepassing met Qt Quick Controls 2 en Kirigami Comment[nn]=Program for ulike typar brukarflater med Qt Quick Controls 2 og Kirigami Comment[pl]=Adaptująca się aplikacja, używająca Qt Quick Controls 2 oraz Kirigami @@ -67,11 +71,11 @@ Comment[pt_BR]=Aplicativo convergente usando Qt Quick Controls 2 e Kirigami Comment[ro]=Aplicație convergentă folosind Qt Quick Controls 2 și Kirigami Comment[ru]=Конвергентное приложение, использующее Qt Quick Controls 2 и Kirigami Comment[sa]=Qt Quick Controls 2 तथा Kirigami इत्यस्य उपयोगेन अभिसरणीयः अनुप्रयोगः +Comment[sk]=Convergent application using Qt Quick Controls 2 and Kirigami Comment[sl]=Konvergentna aplikacija, ki uporablja kontrole Qt Quick in Kirigami Comment[sv]=Konvergent program som använder Qt Quick Controls 2 och Kirigami Comment[tr]=Qt Quick Controls 2 ve Kirigami kullanan yakınsak uygulama Comment[uk]=Зручна програма з використанням засобів керування Qt Quick 2 та Kirigami -Comment[x-test]=xxConvergent application using Qt Quick Controls 2 and Kirigamixx Comment[zh_CN]=基于 Qt Quick Controls 2 和 Kirigami 构建的桌面与移动平台通用应用程序 Comment[zh_TW]=使用 Qt Quick Controls 2 和 Kirigami 的跨平台應用程式 diff --git a/local/recipes/kde/kirigami/source/templates/kirigami6/org.kde.%{APPNAMELC}.json b/local/recipes/kde/kirigami/source/templates/kirigami6/org.kde.%{APPNAMELC}.json index 8d2a1909cf..30e90f549b 100644 --- a/local/recipes/kde/kirigami/source/templates/kirigami6/org.kde.%{APPNAMELC}.json +++ b/local/recipes/kde/kirigami/source/templates/kirigami6/org.kde.%{APPNAMELC}.json @@ -1,7 +1,7 @@ { "id": "org.kde.%{APPNAMELC}", "runtime": "org.kde.Platform", - "runtime-version": "5.15", + "runtime-version": "6.8", "sdk": "org.kde.Sdk", "command": "%{APPNAMELC}", "tags": ["nightly"], @@ -11,8 +11,7 @@ "--share=network", "--socket=x11", "--socket=wayland", - "--device=dri", - "--filesystem=home" + "--device=dri" ], "separate-locales": false, diff --git a/local/recipes/kde/kirigami/source/tests/KeyboardListTest.qml b/local/recipes/kde/kirigami/source/tests/KeyboardListTest.qml index 8ac6b23199..0e0832ec3a 100644 --- a/local/recipes/kde/kirigami/source/tests/KeyboardListTest.qml +++ b/local/recipes/kde/kirigami/source/tests/KeyboardListTest.qml @@ -6,7 +6,6 @@ */ import QtQuick -import QtQuick.Controls import org.kde.kirigami as Kirigami diff --git a/local/recipes/kde/kirigami/source/tests/KeyboardTest.qml b/local/recipes/kde/kirigami/source/tests/KeyboardTest.qml index 8546149cdb..eb78bf6acc 100644 --- a/local/recipes/kde/kirigami/source/tests/KeyboardTest.qml +++ b/local/recipes/kde/kirigami/source/tests/KeyboardTest.qml @@ -3,6 +3,7 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls diff --git a/local/recipes/kde/kirigami/source/tests/ListItemTest.qml b/local/recipes/kde/kirigami/source/tests/ListItemTest.qml index e4b1f4e11d..dd72485d4f 100644 --- a/local/recipes/kde/kirigami/source/tests/ListItemTest.qml +++ b/local/recipes/kde/kirigami/source/tests/ListItemTest.qml @@ -278,50 +278,54 @@ Kirigami.ApplicationWindow { } KD.SubtitleDelegate { + id: subtitleDelegate1 Layout.fillWidth: true icon.name: "edit-bomb" text: "Boom!" contentItem: KD.IconTitleSubtitle { - title: parent.text - icon: icon.fromControlsIcon(parent.icon) + title: subtitleDelegate1.text + icon: icon.fromControlsIcon(subtitleDelegate1.icon) reserveSpaceForSubtitle: true } } KD.CheckSubtitleDelegate { + id: checkSubtitleDelegate Layout.fillWidth: true icon.name: "edit-bomb" text: "Boom!" contentItem: KD.IconTitleSubtitle { - title: parent.text - icon: icon.fromControlsIcon(parent.icon) + title: checkSubtitleDelegate.text + icon: icon.fromControlsIcon(checkSubtitleDelegate.icon) reserveSpaceForSubtitle: true } } KD.RadioSubtitleDelegate { + id: radioSubtitleDelegate Layout.fillWidth: true icon.name: "edit-bomb" text: "Boom!" contentItem: KD.IconTitleSubtitle { - title: parent.text - icon: icon.fromControlsIcon(parent.icon) + title: radioSubtitleDelegate.text + icon: icon.fromControlsIcon(radioSubtitleDelegate.icon) reserveSpaceForSubtitle: true } } KD.SwitchSubtitleDelegate { + id: switchSubtitleDelegate Layout.fillWidth: true icon.name: "edit-bomb" text: "Boom!" contentItem: KD.IconTitleSubtitle { - title: parent.text - icon: icon.fromControlsIcon(parent.icon) + title: switchSubtitleDelegate.text + icon: icon.fromControlsIcon(switchSubtitleDelegate.icon) reserveSpaceForSubtitle: true } } diff --git a/local/recipes/kde/kirigami/source/tests/OverlayFocusTest.qml b/local/recipes/kde/kirigami/source/tests/OverlayFocusTest.qml index 2bb1305447..1b1a9d0cb9 100644 --- a/local/recipes/kde/kirigami/source/tests/OverlayFocusTest.qml +++ b/local/recipes/kde/kirigami/source/tests/OverlayFocusTest.qml @@ -46,6 +46,7 @@ Rectangle { model: 10 delegate: QQC2.ItemDelegate { + required property int modelData text: "Item " + modelData width: parent.width } diff --git a/local/recipes/kde/kirigami/source/tests/ShadowedImageTest.qml b/local/recipes/kde/kirigami/source/tests/ShadowedImageTest.qml index 3daedcddb0..0816875a1d 100644 --- a/local/recipes/kde/kirigami/source/tests/ShadowedImageTest.qml +++ b/local/recipes/kde/kirigami/source/tests/ShadowedImageTest.qml @@ -29,7 +29,7 @@ Kirigami.ApplicationWindow { color: Kirigami.Theme.highlightColor - source: "/usr/share/wallpapers/Next/contents/images/1024x768.jpg" + source: Qt.url("file:///usr/share/wallpapers/Next/contents/images/1024x768.png") radius: radiusSlider.value @@ -49,17 +49,17 @@ Kirigami.ApplicationWindow { Kirigami.FormLayout { Item { Kirigami.FormData.isSection: true } - Slider { id: radiusSlider; from: 0; to: 200; Kirigami.FormData.label: "Overall Radius" } - Slider { id: topLeftSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Top Left Radius" } - Slider { id: topRightSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Top Right Radius" } - Slider { id: bottomLeftSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Bottom Left Radius" } - Slider { id: bottomRightSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Bottom Right Radius" } + Slider { id: radiusSlider; from: 0; to: 200; stepSize: 1; Kirigami.FormData.label: `Overall Radius (${parseInt(value)})` } + Slider { id: topLeftSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Top Left Radius (${parseInt(value)})` } + Slider { id: topRightSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Top Right Radius (${parseInt(value)})` } + Slider { id: bottomLeftSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Bottom Left Radius (${parseInt(value)})` } + Slider { id: bottomRightSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Bottom Right Radius (${parseInt(value)})` } - Slider { id: sizeSlider; from: 0; to: 100; Kirigami.FormData.label: "Shadow Size" } - Slider { id: xOffsetSlider; from: -100; to: 100; Kirigami.FormData.label: "Shadow X-Offset" } - Slider { id: yOffsetSlider; from: -100; to: 100; Kirigami.FormData.label: "Shadow Y-Offset" } + Slider { id: sizeSlider; from: 0; to: 100; stepSize: 1; Kirigami.FormData.label: `Shadow Size (${parseInt(value)})` } + Slider { id: xOffsetSlider; from: -100; to: 100; stepSize: 1; Kirigami.FormData.label: `Shadow X-Offset (${parseInt(value)})` } + Slider { id: yOffsetSlider; from: -100; to: 100; stepSize: 1; Kirigami.FormData.label: `Shadow Y-Offset (${parseInt(value)})` } - Slider { id: borderWidthSlider; from: 0; to: 50; Kirigami.FormData.label: "Border Width" } + Slider { id: borderWidthSlider; from: 0; to: 50; stepSize: 1; Kirigami.FormData.label: `Border Width (${parseInt(value)})` } } } } diff --git a/local/recipes/kde/kirigami/source/tests/ShadowedRectangleTest.qml b/local/recipes/kde/kirigami/source/tests/ShadowedRectangleTest.qml index 8877eb0a26..fdf1a90a73 100644 --- a/local/recipes/kde/kirigami/source/tests/ShadowedRectangleTest.qml +++ b/local/recipes/kde/kirigami/source/tests/ShadowedRectangleTest.qml @@ -47,17 +47,17 @@ Kirigami.ApplicationWindow { Kirigami.FormLayout { Item { Kirigami.FormData.isSection: true } - Slider { id: radiusSlider; from: 0; to: 200; Kirigami.FormData.label: "Overall Radius" } - Slider { id: topLeftSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Top Left Radius" } - Slider { id: topRightSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Top Right Radius" } - Slider { id: bottomLeftSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Bottom Left Radius" } - Slider { id: bottomRightSlider; from: -1; to: 200; value: -1; Kirigami.FormData.label: "Bottom Right Radius" } + Slider { id: radiusSlider; from: 0; to: 200; stepSize: 1; Kirigami.FormData.label: `Overall Radius (${parseInt(value)})` } + Slider { id: topLeftSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Top Left Radius (${parseInt(value)})` } + Slider { id: topRightSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Top Right Radius (${parseInt(value)})` } + Slider { id: bottomLeftSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Bottom Left Radius (${parseInt(value)})` } + Slider { id: bottomRightSlider; from: -1; to: 200; stepSize: 1; value: -1; Kirigami.FormData.label: `Bottom Right Radius (${parseInt(value)})` } - Slider { id: sizeSlider; from: 0; to: 100; Kirigami.FormData.label: "Shadow Size" } - Slider { id: xOffsetSlider; from: -100; to: 100; Kirigami.FormData.label: "Shadow X-Offset" } - Slider { id: yOffsetSlider; from: -100; to: 100; Kirigami.FormData.label: "Shadow Y-Offset" } + Slider { id: sizeSlider; from: 0; to: 100; stepSize: 1; Kirigami.FormData.label: `Shadow Size (${parseInt(value)})` } + Slider { id: xOffsetSlider; from: -100; to: 100; stepSize: 1; Kirigami.FormData.label: `Shadow X-Offset (${parseInt(value)})` } + Slider { id: yOffsetSlider; from: -100; to: 100; stepSize: 1; Kirigami.FormData.label: `Shadow Y-Offset (${parseInt(value)})` } - Slider { id: borderWidthSlider; from: 0; to: 50; Kirigami.FormData.label: "Border Width" } + Slider { id: borderWidthSlider; from: 0; to: 50; stepSize: 1; Kirigami.FormData.label: `Border Width (${parseInt(value)})` } } } } diff --git a/local/recipes/kde/kirigami/source/tests/cardsList.qml b/local/recipes/kde/kirigami/source/tests/cardsList.qml index 23a3379030..f53460727e 100644 --- a/local/recipes/kde/kirigami/source/tests/cardsList.qml +++ b/local/recipes/kde/kirigami/source/tests/cardsList.qml @@ -3,6 +3,7 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls @@ -14,7 +15,9 @@ Kirigami.ApplicationWindow { Component { id: delegateComponent Kirigami.Card { - contentItem: Label { text: ourlist.prefix + index } + id: card + required property int index + contentItem: Label { text: ourlist.prefix + card.index } } } diff --git a/local/recipes/kde/kirigami/source/tests/iconTest.qml b/local/recipes/kde/kirigami/source/tests/iconTest.qml index 423336fa70..df0551b5f1 100644 --- a/local/recipes/kde/kirigami/source/tests/iconTest.qml +++ b/local/recipes/kde/kirigami/source/tests/iconTest.qml @@ -3,6 +3,7 @@ * * SPDX-License-Identifier: LGPL-2.0-or-later */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts @@ -11,37 +12,36 @@ import QtQuick.Controls import org.kde.kirigami as Kirigami Kirigami.ApplicationWindow { + id: app - Component { - id: delegateComponent - Kirigami.Card { - contentItem: Label { text: ourlist.prefix + index } - } - } + property string iconSource: "home" + property bool iconEnabled: true + property bool iconAnimated: false + property real iconSize: Kirigami.Units.iconSizes.large pageStack.initialPage: Kirigami.Page { actions: [ Kirigami.Action { text: "Switch Icon" onTriggered: { - if (icon.source === "home") { - icon.source = "window-new"; + if (app.iconSource === "home") { + app.iconSource = "window-new"; } else { - icon.source = "home"; + app.iconSource = "home"; } } }, Kirigami.Action { text: "Enabled" checkable: true - checked: icon.enabled - onTriggered: icon.enabled = !icon.enabled + checked: app.iconEnabled + onTriggered: app.iconEnabled = !app.iconEnabled }, Kirigami.Action { text: "Animated" checkable: true - checked: icon.animated - onTriggered: icon.animated = !icon.animated + checked: app.iconAnimated + onTriggered: app.iconAnimated = !app.iconAnimated }, Kirigami.Action { displayComponent: RowLayout { @@ -53,19 +53,141 @@ Kirigami.ApplicationWindow { to: Kirigami.Units.iconSizes.enormous value: Kirigami.Units.iconSizes.large onValueModified: { - icon.width = value; - icon.height = value; + app.iconSize = value } } } } ] - Kirigami.Icon { - id: icon - width: Kirigami.Units.iconSizes.Large - height: width - source: "home" + Column { + Row { + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + + active: handler1.hovered + HoverHandler { id: handler1 } + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + + selected: true + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + + color: "red" + } + } + + Row { + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + isMask: true + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + isMask: true + + active: handler2.hovered + HoverHandler { id: handler2 } + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + isMask: true + + selected: true + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: app.iconSource + enabled: app.iconEnabled + animated: app.iconAnimated + isMask: true + + color: "red" + } + } + + Row { + Kirigami.Icon { + width: app.iconSize + height: width + source: "audio-volume-medium-symbolic" + enabled: app.iconEnabled + animated: app.iconAnimated + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: "audio-volume-medium-symbolic" + enabled: app.iconEnabled + animated: app.iconAnimated + + active: handler3.hovered + HoverHandler { id: handler3 } + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: "audio-volume-medium-symbolic" + enabled: app.iconEnabled + animated: app.iconAnimated + + selected: true + } + + Kirigami.Icon { + width: app.iconSize + height: width + source: "audio-volume-medium-symbolic" + enabled: app.iconEnabled + animated: app.iconAnimated + + color: "red" + } + } } + } } diff --git a/local/recipes/kde/kirigami/source/tests/wheelhandler/ScrollView.qml b/local/recipes/kde/kirigami/source/tests/wheelhandler/ScrollView.qml index 5505ee7a5d..4fb9758e62 100644 --- a/local/recipes/kde/kirigami/source/tests/wheelhandler/ScrollView.qml +++ b/local/recipes/kde/kirigami/source/tests/wheelhandler/ScrollView.qml @@ -23,6 +23,7 @@ T.ScrollView { Kirigami.WheelHandler { id: wheelHandler target: control.contentItem + keyNavigationEnabled: true } ] diff --git a/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerFlickableTest.qml b/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerFlickableTest.qml index 4254bb81f1..bcd0451c41 100644 --- a/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerFlickableTest.qml +++ b/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerFlickableTest.qml @@ -1,6 +1,7 @@ /* SPDX-FileCopyrightText: 2021 Noah Davis * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Controls as QQC2 @@ -16,6 +17,7 @@ QQC2.ApplicationWindow { Flickable { id: flickable anchors.fill: parent + focus: true implicitWidth: wheelHandler.horizontalStepSize * 10 + leftMargin + rightMargin implicitHeight: wheelHandler.verticalStepSize * 10 + topMargin + bottomMargin @@ -56,10 +58,12 @@ QQC2.ApplicationWindow { Repeater { model: 500 delegate: Rectangle { + id: rectangle1 + required property int index implicitWidth: wheelHandler.horizontalStepSize implicitHeight: wheelHandler.verticalStepSize gradient: Gradient { - orientation: index % 2 ? Gradient.Vertical : Gradient.Horizontal + orientation: rectangle1.index % 2 ? Gradient.Vertical : Gradient.Horizontal GradientStop { position: 0; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } GradientStop { position: 1; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } } @@ -86,10 +90,12 @@ QQC2.ApplicationWindow { Repeater { model: 500 delegate: Rectangle { + id: rectangle2 + required property int index implicitWidth: wheelHandler.horizontalStepSize implicitHeight: wheelHandler.verticalStepSize gradient: Gradient { - orientation: index % 2 ? Gradient.Vertical : Gradient.Horizontal + orientation: rectangle2.index % 2 ? Gradient.Vertical : Gradient.Horizontal GradientStop { position: 0; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } GradientStop { position: 1; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } } diff --git a/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTest.qml b/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTest.qml index 9a347fedb3..331c6b27a8 100644 --- a/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTest.qml +++ b/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTest.qml @@ -4,28 +4,28 @@ import QtQuick import QtQml -import QtQuick.Templates as T import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami - QQC2.ApplicationWindow { id: root - width: 200 * Qt.styleHints.wheelScrollLines + scrollView.leftPadding + scrollView.rightPadding - height: 200 * Qt.styleHints.wheelScrollLines + scrollView.topPadding + scrollView.bottomPadding + width: 200 * Application.styleHints.wheelScrollLines + scrollView.leftPadding + scrollView.rightPadding + height: 200 * Application.styleHints.wheelScrollLines + scrollView.topPadding + scrollView.bottomPadding visible: true ScrollView { id: scrollView + focus: true anchors.fill: parent Grid { columns: Math.sqrt(visibleChildren.length) Repeater { model: 500 delegate: Rectangle { - implicitWidth: 20 * Qt.styleHints.wheelScrollLines - implicitHeight: 20 * Qt.styleHints.wheelScrollLines + id: rectangle1 + required property int index + implicitWidth: 20 * Application.styleHints.wheelScrollLines + implicitHeight: 20 * Application.styleHints.wheelScrollLines gradient: Gradient { - orientation: index % 2 ? Gradient.Vertical : Gradient.Horizontal + orientation: rectangle1.index % 2 ? Gradient.Vertical : Gradient.Horizontal GradientStop { position: 0; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } GradientStop { position: 1; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } } @@ -33,8 +33,8 @@ QQC2.ApplicationWindow { } QQC2.Button { id: enableSliderButton - width: 20 * Qt.styleHints.wheelScrollLines - height: 20 * Qt.styleHints.wheelScrollLines + width: 20 * Application.styleHints.wheelScrollLines + height: 20 * Application.styleHints.wheelScrollLines contentItem: QQC2.Label { horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter @@ -42,20 +42,24 @@ QQC2.ApplicationWindow { wrapMode: Text.Wrap } checked: true + checkable: true } QQC2.Slider { id: slider enabled: enableSliderButton.checked - width: 20 * Qt.styleHints.wheelScrollLines - height: 20 * Qt.styleHints.wheelScrollLines + width: 20 * Application.styleHints.wheelScrollLines + height: 20 * Application.styleHints.wheelScrollLines + wheelEnabled: true } Repeater { model: 500 delegate: Rectangle { - implicitWidth: 20 * Qt.styleHints.wheelScrollLines - implicitHeight: 20 * Qt.styleHints.wheelScrollLines + id: rectangle2 + required property int index + implicitWidth: 20 * Application.styleHints.wheelScrollLines + implicitHeight: 20 * Application.styleHints.wheelScrollLines gradient: Gradient { - orientation: index % 2 ? Gradient.Vertical : Gradient.Horizontal + orientation: rectangle2.index % 2 ? Gradient.Vertical : Gradient.Horizontal GradientStop { position: 0; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } GradientStop { position: 1; color: Qt.rgba(Math.random(),Math.random(),Math.random(),1) } } diff --git a/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTextAreaTest.qml b/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTextAreaTest.qml index 3e8cd286bb..771ed56eb9 100644 --- a/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTextAreaTest.qml +++ b/local/recipes/kde/kirigami/source/tests/wheelhandler/WheelHandlerScrollViewTextAreaTest.qml @@ -3,12 +3,8 @@ */ import QtQuick -import QtQml -import QtQuick.Templates as T import QtQuick.Controls as QQC2 -import org.kde.kirigami as Kirigami - QQC2.ApplicationWindow { id: root width: 600 diff --git a/local/recipes/kde/konsole/source.tar b/local/recipes/kde/konsole/source.tar index 83d75cd89f..ff10828bd4 100644 Binary files a/local/recipes/kde/konsole/source.tar and b/local/recipes/kde/konsole/source.tar differ diff --git a/local/recipes/kde/konsole/source/.flatpak-manifest.json b/local/recipes/kde/konsole/source/.flatpak-manifest.json index 34f5df52d5..f9279c198b 100644 --- a/local/recipes/kde/konsole/source/.flatpak-manifest.json +++ b/local/recipes/kde/konsole/source/.flatpak-manifest.json @@ -2,13 +2,13 @@ "id": "org.kde.konsole", "branch": "master", "runtime": "org.kde.Platform", - "runtime-version": "6.7", + "runtime-version": "6.10", "sdk": "org.kde.Sdk", "command": "konsole", "tags": ["nightly"], "desktop-file-name-suffix": " (Nightly)", "finish-args": [ - "--device=dri", + "--device=all", "--share=ipc", "--share=network", "--socket=wayland", diff --git a/local/recipes/kde/konsole/source/.gitignore b/local/recipes/kde/konsole/source/.gitignore index 10657d84fb..1f1c531920 100644 --- a/local/recipes/kde/konsole/source/.gitignore +++ b/local/recipes/kde/konsole/source/.gitignore @@ -12,6 +12,7 @@ *.user .*.swp .swp.* +.qtcreator Doxyfile Makefile avail diff --git a/local/recipes/kde/konsole/source/.gitlab-ci.yml b/local/recipes/kde/konsole/source/.gitlab-ci.yml index 3a8d108ba7..d195636263 100644 --- a/local/recipes/kde/konsole/source/.gitlab-ci.yml +++ b/local/recipes/kde/konsole/source/.gitlab-ci.yml @@ -6,9 +6,13 @@ include: file: # - /gitlab-templates/reuse-lint.yml - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/linux-qt6-next.yml - /gitlab-templates/freebsd-qt6.yml - /gitlab-templates/windows-qt6.yml - /gitlab-templates/flatpak.yml - /gitlab-templates/craft-windows-x86-64-qt6.yml - /gitlab-templates/craft-macos-arm64-qt6.yml - - /gitlab-templates/craft-macos-x86-64-qt6.yml \ No newline at end of file + - /gitlab-templates/craft-macos-x86-64-qt6.yml + - /gitlab-templates/cppcheck.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml diff --git a/local/recipes/kde/konsole/source/.kde-ci.yml b/local/recipes/kde/konsole/source/.kde-ci.yml index b8ab1ce79f..01ef3638df 100644 --- a/local/recipes/kde/konsole/source/.kde-ci.yml +++ b/local/recipes/kde/konsole/source/.kde-ci.yml @@ -2,8 +2,8 @@ # SPDX-License-Identifier: CC0-1.0 Dependencies: -- 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6'] - 'require': + - 'on': ['Linux', 'FreeBSD', 'Windows'] + 'require': 'frameworks/extra-cmake-modules': '@latest-kf6' 'frameworks/kconfig': '@latest-kf6' 'frameworks/knotifications': '@latest-kf6' @@ -25,11 +25,17 @@ Dependencies: 'frameworks/kxmlgui': '@latest-kf6' 'frameworks/kdoctools': '@latest-kf6' -- 'on': ['Linux/Qt6', 'FreeBSD/Qt6'] - 'require': + - 'on': ['Linux', 'FreeBSD'] + 'require': 'frameworks/kdbusaddons': '@latest-kf6' 'frameworks/kpty': '@latest-kf6' 'frameworks/kglobalaccel': '@latest-kf6' Options: - require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows' ] + require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows'] + cppcheck-arguments: + - --enable=warning,style,performance +# - --suppress-xml=cppcheck-suppressions.xml + cppcheck-ignore-files: + - src/characters/CharacterWidth.src.cpp +# - autotests diff --git a/local/recipes/kde/konsole/source/.redbear-src-version b/local/recipes/kde/konsole/source/.redbear-src-version new file mode 100644 index 0000000000..d7352d69eb --- /dev/null +++ b/local/recipes/kde/konsole/source/.redbear-src-version @@ -0,0 +1 @@ +26.04.3 diff --git a/local/recipes/kde/konsole/source/.reuse/dep5 b/local/recipes/kde/konsole/source/.reuse/dep5 deleted file mode 100644 index 55b1f38e48..0000000000 --- a/local/recipes/kde/konsole/source/.reuse/dep5 +++ /dev/null @@ -1,13 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: konsole -Upstream-Contact: Kurt Hindenburg -Source: https://invent.kde.org/utilities/konsole - - -Files: .gitignore .git-blame-ignore-revs .krazy .editorconfig -Copyright: None -License: CC0-1.0 - -Files: desktop/konsole.qrc -Copyright: None -License: CC0-1.0 diff --git a/local/recipes/kde/konsole/source/CMakeLists.txt b/local/recipes/kde/konsole/source/CMakeLists.txt index 9a4e43123d..9ecc01add2 100644 --- a/local/recipes/kde/konsole/source/CMakeLists.txt +++ b/local/recipes/kde/konsole/source/CMakeLists.txt @@ -1,8 +1,8 @@ # Konsole project # KDE Application Version, managed by release script -set(RELEASE_SERVICE_VERSION_MAJOR "24") -set(RELEASE_SERVICE_VERSION_MINOR "08") +set(RELEASE_SERVICE_VERSION_MAJOR "26") +set(RELEASE_SERVICE_VERSION_MINOR "04") set(RELEASE_SERVICE_VERSION_MICRO "3") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") @@ -15,7 +15,6 @@ cmake_minimum_required(VERSION 3.16 FATAL_ERROR) set(QT_MIN_VERSION "6.5.0") set(KF6_DEP_VERSION "6.0.0") -set(QT_MAJOR_VERSION "6") # Release script will create bugzilla versions project(konsole VERSION ${RELEASE_SERVICE_VERSION}) @@ -35,31 +34,19 @@ include(GenerateExportHeader) include(FeatureSummary) include(ECMQtDeclareLoggingCategory) include(KDEClangFormat) -# Remove OPTIONAL when we require EMC >= 5.79 -include(KDEGitCommitHooks OPTIONAL) +include(KDEGitCommitHooks) include(CheckFunctionExists) include(CheckIncludeFiles) # Allows passing e.g. -DECM_ENABLE_SANITIZERS='address;undefined' to cmake. include(ECMEnableSanitizers) -string(REPLACE " -fpermissive" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") - find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED Core + Multimedia + PrintSupport Widgets - Core5Compat ) -find_package(Qt6Multimedia ${QT_MIN_VERSION} CONFIG QUIET) -find_package(Qt6PrintSupport ${QT_MIN_VERSION} CONFIG QUIET) -set(HAVE_QTMULTIMEDIA 0) -if(TARGET Qt6::Multimedia) - set(HAVE_QTMULTIMEDIA 1) -endif() -set(HAVE_QTPRINTSUPPORT 0) -if(TARGET Qt6::PrintSupport) - set(HAVE_QTPRINTSUPPORT 1) -endif() find_package(KF6 ${KF6_DEP_VERSION} REQUIRED Bookmarks @@ -106,7 +93,7 @@ if(USE_DBUS) set(HAVE_DBUS 1) endif() -find_package(KF6DocTools ${KF6_DEP_VERSION} QUIET) +find_package(KF6DocTools ${KF6_DEP_VERSION}) set_package_properties(KF6DocTools PROPERTIES DESCRIPTION "Tools to generate documentation" TYPE OPTIONAL @@ -114,6 +101,13 @@ set_package_properties(KF6DocTools PROPERTIES DESCRIPTION find_package(ICU 61.0 COMPONENTS uc i18n REQUIRED) +option(WITH_KAPSULE "Build with Kapsule container support" OFF) +if(WITH_KAPSULE) + find_package(QCoro6 REQUIRED COMPONENTS Core) + find_package(Kapsule REQUIRED) + set(HAVE_KAPSULE 1) +endif() + if(UNIX AND NOT APPLE AND NOT ANDROID AND NOT HAIKU) option(WITH_X11 "Build with X11 integration" ON) endif() @@ -144,10 +138,6 @@ option(ENABLE_PLUGIN_QUICKCOMMANDS "Build the Quick Commands plugin" ON) add_subdirectory( src ) add_subdirectory( desktop ) -if(HAVE_DBUS) - add_subdirectory( kconf_update ) -endif() - if(KF6DocTools_FOUND) add_subdirectory( doc/manual ) endif() @@ -167,7 +157,7 @@ ecm_qt_install_logging_categories( DESTINATION "${KDE_INSTALL_LOGGINGCATEGORIESDIR}" ) -#ki18n_install( po ) +ki18n_install( po ) if(KF6DocTools_FOUND) kdoctools_install( po ) endif() @@ -176,7 +166,7 @@ if(ECM_VERSION VERSION_GREATER_EQUAL 5.101.0) install(FILES completions/konsole.zsh RENAME _konsole DESTINATION ${KDE_INSTALL_ZSHAUTOCOMPLETEDIR}) endif() -feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) +feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) # add clang-format target for all our real source files file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.c *.cpp *.h *.hpp) diff --git a/local/recipes/kde/konsole/source/README.md b/local/recipes/kde/konsole/source/README.md index 867531c802..2462fbc089 100644 --- a/local/recipes/kde/konsole/source/README.md +++ b/local/recipes/kde/konsole/source/README.md @@ -30,6 +30,6 @@ https://mail.kde.org/mailman/listinfo/konsole-devel. - [KDE Release Schedule](https://community.kde.org/Schedules) - [Official Homepage](https://konsole.kde.org) - [Builds](https://invent.kde.org/utilities/konsole/-/pipelines) -- [Forums](https://discuss.kde.org) -- [Konsole Bug Reports per Component](https://bugs.kde.org/describecomponents.cgi?product=konsole) +- [Forums](https://discuss.kde.org/tag/konsole) +- [Konsole Bug Reports ](https://bugs.kde.org/describecomponents.cgi?product=konsole) diff --git a/local/recipes/kde/konsole/source/REUSE.toml b/local/recipes/kde/konsole/source/REUSE.toml new file mode 100644 index 0000000000..9cc88447e6 --- /dev/null +++ b/local/recipes/kde/konsole/source/REUSE.toml @@ -0,0 +1,16 @@ +version = 1 +SPDX-PackageName = "konsole" +SPDX-PackageSupplier = "Kurt Hindenburg " +SPDX-PackageDownloadLocation = "https://invent.kde.org/utilities/konsole" + +[[annotations]] +path = [".gitignore", ".git-blame-ignore-revs", ".krazy", ".editorconfig"] +precedence = "aggregate" +SPDX-FileCopyrightText = "None" +SPDX-License-Identifier = "CC0-1.0" + +[[annotations]] +path = "desktop/konsole.qrc" +precedence = "aggregate" +SPDX-FileCopyrightText = "None" +SPDX-License-Identifier = "CC0-1.0" diff --git a/local/recipes/kde/konsole/source/data/color-schemes/Campbell.colorscheme b/local/recipes/kde/konsole/source/data/color-schemes/Campbell.colorscheme new file mode 100644 index 0000000000..a723a6fa93 --- /dev/null +++ b/local/recipes/kde/konsole/source/data/color-schemes/Campbell.colorscheme @@ -0,0 +1,100 @@ +[Background] +Color=12,12,12 + +[BackgroundFaint] +Color=44,44,44 + +[BackgroundIntense] +Color=0,0,0 + +[Color0] +Color=12,12,12 + +[Color0Faint] +Color=44,44,44 + +[Color0Intense] +Color=124,124,124 + +[Color1] +Color=197,15,31 + +[Color1Faint] +Color=150,11,25 + +[Color1Intense] +Color=231,72,86 + +[Color2] +Color=19,161,14 + +[Color2Faint] +Color=16,120,10 + +[Color2Intense] +Color=22,198,12 + +[Color3] +Color=193,156,0 + +[Color3Faint] +Color=150,120,0 + +[Color3Intense] +Color=249,241,165 + +[Color4] +Color=0,55,218 + +[Color4Faint] +Color=0,45,170 + +[Color4Intense] +Color=59,120,255 + +[Color5] +Color=136,23,152 + +[Color5Faint] +Color=106,18,120 + +[Color5Intense] +Color=180,0,158 + +[Color6] +Color=58,150,221 + +[Color6Faint] +Color=47,122,180 + +[Color6Intense] +Color=97,214,214 + +[Color7] +Color=204,204,204 + +[Color7Faint] +Color=170,170,170 + +[Color7Intense] +Color=242,242,242 + +[Foreground] +Color=204,204,204 + +[ForegroundFaint] +Color=170,170,170 + +[ForegroundIntense] +Color=255,255,255 + +[General] +Anchor=0.5,0.5 +Blur=false +ColorRandomization=false +Description=Campbell +FillStyle=Tile +Opacity=1 +Wallpaper= +WallpaperFlipType=NoFlip +WallpaperOpacity=1 diff --git a/local/recipes/kde/konsole/source/data/data.qrc b/local/recipes/kde/konsole/source/data/data.qrc index ac42b58939..380edba13c 100644 --- a/local/recipes/kde/konsole/source/data/data.qrc +++ b/local/recipes/kde/konsole/source/data/data.qrc @@ -10,6 +10,7 @@ color-schemes/BlackOnWhite.colorscheme color-schemes/BlueOnBlack.colorscheme color-schemes/Breeze.colorscheme + color-schemes/Campbell.colorscheme color-schemes/GreenOnBlack.colorscheme color-schemes/WhiteOnBlack.colorscheme color-schemes/Linux.colorscheme diff --git a/local/recipes/kde/konsole/source/desktop/konsole.notifyrc b/local/recipes/kde/konsole/source/desktop/konsole.notifyrc index 88e3a8d87c..e40ba30280 100644 --- a/local/recipes/kde/konsole/source/desktop/konsole.notifyrc +++ b/local/recipes/kde/konsole/source/desktop/konsole.notifyrc @@ -70,6 +70,7 @@ Comment[pt]=Konsole Comment[pt_BR]=Konsole Comment[ro]=Konsolă Comment[ru]=Konsole +Comment[sa]=सान्त्वनम् Comment[se]=Konsolla Comment[si]=කන්සෝල් Comment[sk]=Konsole @@ -82,14 +83,13 @@ Comment[sv]=Terminal Comment[ta]=கான்சோல் Comment[te]=కాన్సొల్ Comment[tg]=Консол -Comment[th]=คอนโซล-K +Comment[th]=Konsole Comment[tr]=Konsole Comment[ug]=Konsole Comment[uk]=Konsole Comment[uz]=Terminal Comment[uz@cyrillic]=Терминал Comment[wa]=Konsole -Comment[x-test]=xxKonsolexx Comment[zh_CN]=Konsole Comment[zh_TW]=Konsole @@ -103,7 +103,7 @@ Name[bg]=Звуков сигнал във фокусирана сесия Name[ca]=Timbre en una sessió amb focus Name[ca@valencia]=Timbre en una sessió amb focus Name[da]=Bip i synlig session -Name[de]=Signalton in sichtbarer Sitzung +Name[de]=Signalton in fokussierter Sitzung Name[el]=Ηχητική σήμανση σε εστιασμένη συνεδρία Name[en_GB]=Bell in Focused Session Name[eo]=Pepo en fokusita seanco @@ -112,6 +112,7 @@ Name[et]=Heli fookuses seansis Name[eu]=Ezkila fokua duen saioan Name[fi]=Äänimerkki kohdistetussa istunnossa Name[fr]=Cloche dans la session sélectionnée +Name[ga]=Clog i Seisiún Dírithe Name[gl]=Badalada na sesión co foco Name[he]=פעמון בהפעלה במיקוד Name[hu]=Csengetés egy fókuszált munkamenetben @@ -119,6 +120,7 @@ Name[ia]=Campana in session focalisate Name[id]=Bel dalam Sesi Terfokus Name[is]=Bjalla í virkri setu Name[it]=Campanella in sessione visibile +Name[ja]=フォーカス中のセッションのベル Name[ka]=ზარი ფოკუსის მქონე სესიაში Name[ko]=보이는 세션에서 알림 발생 Name[lv]=Zvans aktīvajā sesijā @@ -130,6 +132,7 @@ Name[pt]=Campainha na Sessão Visível Name[pt_BR]=Campainha na sessão selecionada Name[ro]=Clopoțel în sesiunea focalizată Name[ru]=Сигнал в активном сеансе +Name[sa]=केन्द्रितसत्रे घण्टा Name[sk]=Zvonček v zobrazenom sedení Name[sl]=Zvonec znotraj seje v žarišču Name[sr]=Звоно у фокусираној сесији @@ -140,7 +143,6 @@ Name[sv]=Ljudsignal i fokuserad session Name[ta]=குவியமுள்ள அமர்வில் மணி Name[tr]=Odaklı Oturumda Zil Name[uk]=Гудок у фокусований сеанс -Name[x-test]=xxBell in Focused Sessionxx Name[zh_CN]=取得焦点的会话中的系统提示 Name[zh_TW]=取得焦點的工作階段響鈴 Comment=Bell emitted within a focused session @@ -152,7 +154,7 @@ Comment[bg]=Звуков сигнал, произведен във фокуси Comment[ca]=Timbre emès en una sessió amb focus Comment[ca@valencia]=Timbre emés en una sessió amb focus Comment[da]=Bip udsendt indenfor en ikke-synlig session -Comment[de]=Signalton, der in einer sichtbaren Sitzung ertönt +Comment[de]=Signalton, der in einer fokussierten Sitzung ertönt Comment[el]=Ηχητική σήμανση μέσα σε εστιασμένη συνεδρία Comment[en_GB]=Bell emitted within a focused session Comment[eo]=Pepo ekigita en fokusita seanco @@ -161,6 +163,7 @@ Comment[et]=Heli fookuses seansis Comment[eu]=Ezkila igorri da fokua duen saio batean Comment[fi]=Äänimerkki lähetetty kohdistetussa istunnossa Comment[fr]=Cloche émise dans une session sélectionnée +Comment[ga]=Cloigín a eisíodh laistigh de sheisiún dírithe Comment[gl]=Badalada emitida nunha sesión co foco. Comment[he]=הופעל פעמון בהפעלה במיקוד Comment[hu]=Csengetés kiadva egy fókuszált munkafolyamatban @@ -168,6 +171,7 @@ Comment[ia]=Sono de campana emittite intra un session focalisate Comment[id]=Bel terbunyikan dengan sebuah sesi terfokus Comment[is]=Bjallan hringdi í virkri setu Comment[it]=Campanella suonata all'interno di una sessione visibile +Comment[ja]=フォーカス中のセッションでベルが鳴ったとき Comment[ka]=ზარის ხმა ფოკუსის მქონე სესიაში Comment[ko]=보이는 세션에서 터미널 벨이 울림 Comment[lv]=Zvans, kas zvanīts aktīvajā sesijā @@ -179,6 +183,7 @@ Comment[pt]=Campainha emitida dentro de uma sessão em primeiro plano Comment[pt_BR]=Campainha emitida dentro de uma sessão selecionada Comment[ro]=Clopoțel emis în cadrul unei sesiuni focalizate Comment[ru]=Активный сеанс подал сигнал +Comment[sa]=बेलः केन्द्रितसत्रस्य अन्तः उत्सर्जितवान् Comment[sk]=Zvonček poslaný v zobrazenom sedení Comment[sl]=Zvonenje zvonca znotraj seje v žarišču Comment[sr]=Оглашено је звоно унутар фокусиране сесије @@ -189,7 +194,6 @@ Comment[sv]=Ljudsignal avges inne i en fokuserad session Comment[ta]=குவியம் உள்ள அமர்வில் மணியடிக்கப்பட்டது Comment[tr]=Odaklanan oturum ile zil çal Comment[uk]=Звучить гудок у фокусованому сеансі -Comment[x-test]=xxBell emitted within a focused sessionxx Comment[zh_CN]=取得焦点的会话中发出的系统提示 Comment[zh_TW]=取得焦點的工作階段響鈴行為 Action=None @@ -204,7 +208,7 @@ Name[bg]=Звуков сигнал в нефокусирана сесия Name[ca]=Timbre en una sessió sense focus Name[ca@valencia]=Timbre en una sessió sense focus Name[da]=Bip i ikke-synlig session -Name[de]=Signalton in nicht sichtbarer Sitzung +Name[de]=Signalton in nicht fokussierter Sitzung Name[el]=Ηχητική σήμανση σε μη εστιασμένη συνεδρία Name[en_GB]=Bell in Non-Focused Session Name[eo]=Pepo en nefokusita seanco @@ -213,6 +217,7 @@ Name[et]=Heli fookusest väljas seansis Name[eu]=Ezkila fokurik gabeko saioan Name[fi]=Äänimerkki ei-kohdistetussa istunnossa Name[fr]=Cloche dans une session non-sélectionnée +Name[ga]=Clog i Seisiún Neamhfhócasaithe Name[gl]=Badalada nunha sesión sen o foco Name[he]=פעמון בהפעלה מחוץ למיקוד Name[hu]=Csengetés egy nem fókuszált munkafolyamatban @@ -220,6 +225,7 @@ Name[ia]=Campana in session non focalisate Name[id]=Bel dalam Sesi Nonfokus Name[is]=Bjalla í óvirkri setu Name[it]=Campanella in sessione non visibile +Name[ja]=フォーカス外セッションのベル Name[ka]=ზარი ფოკუსის არმქონე სესიაში Name[ko]=보이지 않는 세션에서 알림 발생 Name[lv]=Zvans neaktīvā sesijā @@ -231,6 +237,7 @@ Name[pt]=Campainha numa Sessão Invisível Name[pt_BR]=Campainha na sessão não selecionada Name[ro]=Clopoțel în sesiunea nefocalizată Name[ru]=Сигнал в неактивном сеансе +Name[sa]=अकेन्द्रितसत्रे बेल Name[sk]=Zvonček v nezobrazenom sedení Name[sl]=Zvonec znotraj seje izven žarišča Name[sr]=Звоно у сесији ван фокуса @@ -241,7 +248,6 @@ Name[sv]=Ljudsignal i icke-fokuserad session Name[ta]=குவியமில்லா அமர்வில் மணி Name[tr]=Odaksız Oturumda Zil Name[uk]=Гудок у нефокусованому сеансі -Name[x-test]=xxBell in Non-Focused Sessionxx Name[zh_CN]=未取得焦点的会话中的系统提示 Name[zh_TW]=未取得焦點的工作階段響鈴 Comment=Bell emitted within a non-focused session @@ -253,7 +259,7 @@ Comment[bg]=Звуков сигнал, произведен в нефокуси Comment[ca]=Timbre emès en una sessió sense focus Comment[ca@valencia]=Timbre emés en una sessió sense focus Comment[da]=Bip udsendt indenfor en ikke-synlig session -Comment[de]=Signalton, der in einer nicht sichtbaren Sitzung ertönt +Comment[de]=Signalton, der in einer nicht fokussierten Sitzung ertönt Comment[el]=Ηχητική σήμανση μέσα σε μη εστιασμένη συνεδρία Comment[en_GB]=Bell emitted within a non-focused session Comment[eo]=Pepo ekigita ene de nefokusita seanco @@ -262,6 +268,7 @@ Comment[et]=Heli fookusest väljas seansis Comment[eu]=Ezkila igorri da fokurik gabeko saio batean Comment[fi]=Äänimerkki lähetetty ei-kohdistetussa istunnossa Comment[fr]=Cloche émise dans une session non-sélectionnée +Comment[ga]=Cloigín a eisíodh laistigh de sheisiún neamhfhócasaithe Comment[gl]=Badalada emitida nunha sesión sen o foco. Comment[he]=הופעל פעמון בהפעלה מחוץ למיקוד Comment[hu]=Csengetés kiadva egy nem fókuszált munkafolyamatban @@ -269,6 +276,7 @@ Comment[ia]=Sono de campana emittite intra un session non focalisate Comment[id]=Bel terbunyikan dengan sebuah sesi nonfokus Comment[is]=Bjallan hringdi í óvirkri setu Comment[it]=Campanella emessa all'interno di una sessione non visibile +Comment[ja]=フォーカス外セッションでベルが鳴ったとき Comment[ka]=ზარი ფოკუსის არმქონე სესიაში Comment[ko]=보이지 않는 세션에서 터미널 벨이 울림 Comment[lv]=Zvans, kas zvanīts neaktīvā sesijā @@ -280,6 +288,7 @@ Comment[pt]=Campainha emitida dentro de uma sessão que não está em primeiro p Comment[pt_BR]=Campainha emitida dentro de uma sessão não selecionada Comment[ro]=Clopoțel emis în cadrul unei sesiuni nefocalizate Comment[ru]=Неактивный сеанс подал сигнал +Comment[sa]=बेल् अकेन्द्रितसत्रस्य अन्तः उत्सर्जितवान् Comment[sk]=Zvonček poslaný v nezobrazenom sedení Comment[sl]=Zvonenje zvonca znotraj seje izven žarišča Comment[sr]=Оглашено је звоно унутар сесије ван фокуса @@ -290,7 +299,6 @@ Comment[sv]=Ljudsignal avges inne i en icke-fokuserad session Comment[ta]=குவியத்தில் இல்லாத அமர்வில் மணியடிக்கப்பட்டது Comment[tr]=Odaklanılmamış oturumda zil Comment[uk]=Звучить гудок у нефокусованому сеансі -Comment[x-test]=xxBell emitted within a non-focused sessionxx Comment[zh_CN]=未取得焦点的会话中发出的系统提示 Comment[zh_TW]=未取得焦點的工作階段中的響鈴行為 Sound=bell-window-system @@ -306,7 +314,7 @@ Name[bg]=Дейности в нефокусирана мониторирана Name[ca]=Activitat en una sessió controlada sense focus Name[ca@valencia]=Activitat en una sessió controlada sense focus Name[da]=Aktivitet i ikke-synlig overvåget session -Name[de]=Aktivität in nicht sichtbarer, überwachter Sitzung +Name[de]=Aktivität in nicht fokussierter, überwachter Sitzung Name[el]=Δραστηριότητα σε μη εστιασμένη υπό εποπτεία συνεδρία Name[en_GB]=Activity in Non-Focused Monitored Session Name[eo]=Aktiveco en nefokusata monitorata seanco @@ -315,6 +323,7 @@ Name[et]=Aktiivsus fookusest väljas jälgitavas seansis Name[eu]=Jarduera fokurik gabeko gainbegiratutako saioan Name[fi]=Aktiivisuutta ei-kohdistetussa tarkkailtavassa istunnossa Name[fr]=Activité dans la session surveillée non-sélectionnée +Name[ga]=Gníomhaíocht i Seisiún Monatóireachta Neamhfhócasaithe Name[gl]=Actividade nunha sesión monitorizada sen o foco Name[he]=פעילות בהפעלה במעקב מחוץ למיקוד Name[hu]=Aktivitás egy nem fókuszált, figyelt munkamenetben @@ -322,6 +331,7 @@ Name[ia]=Activitate in session monitorate non focalisate Name[id]=Aktivitas dalam Sesi Nonfokus Terpantau Name[is]=Virkni í óvirkri setu sem er vöktuð Name[it]=Attività in sessione non visibile sorvegliata +Name[ja]=フォーカス外の監視中のセッションの活動 Name[ka]=აქტივობა ფოკუსის არმქონე სესიაში, რომლის მონიტორინგიც ხდება Name[ko]=보이지 않는 관찰하는 세션에서 활동 발생 Name[lv]=Darbība fonā esošā pārraudzītā sesijā @@ -333,6 +343,7 @@ Name[pt]=Actividade numa Sessão Vigiada Invisível Name[pt_BR]=Atividade em sessão monitorada não selecionada Name[ro]=Activitate în sesiunea monitorizată nefocalizată Name[ru]=Активность в отслеживаемом неактивном сеансе +Name[sa]=अकेन्द्रितनिरीक्षितसत्रे गतिविधिः Name[sk]=Aktivita v nezobrazenom, monitorovanom sedení Name[sl]=Dejavnost znotraj nadzorovane seje izven žarišča Name[sr]=Активност у надгледаној сесији ван фокуса @@ -341,9 +352,8 @@ Name[sr@ijekavianlatin]=Aktivnost u nadgledanoj sesiji van fokusa Name[sr@latin]=Aktivnost u nadgledanoj sesiji van fokusa Name[sv]=Aktivitet i icke-fokuserad bevakad session Name[ta]=கண்காணிக்கப்படும் குவியமில்லா அமர்வில் நடப்புகள் -Name[tr]=Odaklsız İzlenen Oturumda Etkinlik +Name[tr]=Odaksız İzlenen Oturumda Etkinlik Name[uk]=Дії у нефокусованому сеансі спостереження -Name[x-test]=xxActivity in Non-Focused Monitored Sessionxx Name[zh_CN]=在监视的非焦点会话中检测到活动 Name[zh_TW]=監控未取得焦點的工作階段 Comment=Activity detected in a non-focused monitored session @@ -355,7 +365,7 @@ Comment[bg]=Дейности, регистрирани в нефокусиран Comment[ca]=Activitat detectada en una sessió controlada sense focus Comment[ca@valencia]=Activitat detectada en una sessió controlada sense focus Comment[da]=Aktivitet detekteret i en ikke synlig overvåget session -Comment[de]=In einer nicht sichtbaren, überwachten Sitzung wird Aktivität festgestellt +Comment[de]=In einer nicht fokussierten, überwachten Sitzung wird Aktivität festgestellt Comment[el]=Εντοπίστηκε δραστηριότητα σε μη εστιασμένη υπό εποπτεία συνεδρία Comment[en_GB]=Activity detected in a non-focused monitored session Comment[eo]=Trovis aktivecon en nefokusita monitorita seanco @@ -364,6 +374,7 @@ Comment[et]=Tuvastati aktiivsus fookusest väljas jälgitavas seansis Comment[eu]=Jarduera antzeman du fokurik gabeko gainbegiratutako saio batean Comment[fi]=Aktiivisuutta havaittu ei-kohdistetussa tarkkailtavassa istunnossa Comment[fr]=Activité détectée dans une session surveillée non-sélectionnée +Comment[ga]=Gníomhaíocht braite i seisiún monatóireachta neamhfhócasaithe Comment[gl]=Detectouse actividade nunha sesión monitorizada sen o foco. Comment[he]=זוהתה פעילות בהפעלה במעקב מחוץ למיקוד Comment[hu]=Aktivitás észlelve egy nem fókuszált, figyelt munkamenetben @@ -371,6 +382,7 @@ Comment[ia]=Activitate relevate in un session monitorate non focalisate Comment[id]=Aktivitas dideteksi dalam sebuah sesi nonfokus terpantau Comment[is]=Eitthvað er að gerast í óvirkri setu sem er vöktuð Comment[it]=Attività rilevata in una sessione non visibile sorvegliata +Comment[ja]=フォーカス外の監視中セッションで活動を検出したとき Comment[ka]=აქტივობა ფოკუსის არმქონე სესიაში, რომლის მონიტორინგიც ხდება Comment[ko]=보이지 않는 관찰하는 세션에서 문자 출력이 있음 Comment[lv]=Ir konstatēta darbība fonā esošā pārraudzītā sesijā @@ -382,6 +394,7 @@ Comment[pt]=Actividade detectada numa sessão vigiada e que não está em primei Comment[pt_BR]=Atividade detectada em uma sessão monitorada não selecionada Comment[ro]=Activitate detectată într-o sesiune monitorizată nefocalizată Comment[ru]=В отслеживаемом неактивном сеансе обнаружена активность +Comment[sa]=अकेन्द्रितनिरीक्षितसत्रे ज्ञायते क्रियाकलापः Comment[sk]=Zistená aktivita v nezobrazenom, monitorovanom sedení Comment[sl]=Znotraj nadzorovane seje izven žarišča je bila zaznana dejavnost Comment[sr]=Уочена је активност у надгледаној сесији ван фокуса @@ -392,7 +405,6 @@ Comment[sv]=Aktivitet funnen i en icke-fokuserad bevakad session Comment[ta]=கண்காணிக்கப்படும் குவியமில்லா அமர்வில் ஏதோ நடப்பது கண்டறியப்பட்டுள்ளது Comment[tr]=Odaklanılmamış izlenen oturumda etkinlik algılandı Comment[uk]=У нефокусованому сеансі спостереження виявлено дії -Comment[x-test]=xxActivity detected in a non-focused monitored sessionxx Comment[zh_CN]=在监视的非焦点会话中检测到活动 Comment[zh_TW]=監控未取得焦點的工作階段中偵測到的活動 Action=Popup @@ -461,6 +473,7 @@ Name[pt]=Actividade em Sessão Vigiada Name[pt_BR]=Atividade em sessão monitorada Name[ro]=Activitate în sesiunea monitorizată Name[ru]=Активность в отслеживаемом сеансе +Name[sa]=निरीक्षितसत्रे गतिविधिः Name[si]=නිරීක්‍ෂණය කරන වාරයේ ක්‍රියාකාරකම් Name[sk]=Aktivita v monitorovanom sedení Name[sl]=Dejavnost znotraj nadzorovane seje @@ -477,7 +490,6 @@ Name[tr]=İzlenen Oturumda Etkinlik Name[ug]=كۆزىتىلىۋاتقان ئەڭگىمەدىكى پائالىيەت Name[uk]=Дії в сеансі спостереження Name[wa]=Activité e corwaiteye session -Name[x-test]=xxActivity in Monitored Sessionxx Name[zh_CN]=在监视的会话中检测到活动 Name[zh_TW]=監控工作階段的活動 Comment=Activity detected in a monitored session @@ -520,7 +532,7 @@ Comment[ia]=Activitate relevate in un session monitorate Comment[id]=Aktivitas terdeteksi dalam sesi terpantau Comment[is]=Eitthvað er að gerast í setu sem er vöktuð Comment[it]=Attività rilevata in una sessione sorvegliata -Comment[ja]=監視中のセッションで活動を検出しました +Comment[ja]=監視中のセッションで活動を検出したとき Comment[ka]=აქტივობა სესიაში, რომლის მონიტორინგიც ხდება Comment[kk]=Қадағалаудағы сеанста белсенділік байқалды Comment[km]=សកម្មភាព​ដែល​បាន​រក​ឃើញ​ក្នុង​សម័យ​ដែល​បាន​ត្រួត​ពិនិត្យ @@ -546,6 +558,7 @@ Comment[pt]=Actividade detectada numa sessão vigiada Comment[pt_BR]=Atividade detectada em uma sessão monitorada Comment[ro]=Activitate detectată într-o sesiune monitorizată Comment[ru]=В отслеживаемом сеансе обнаружена активность +Comment[sa]=निरीक्षितसत्रे ज्ञायते क्रियाकलापः Comment[se]=Gozihuvvon bargovuorru ealáskii Comment[si]=නිරීක්‍ෂණය කරන වාරයේ ක්‍රියාකාරීත්වයක් හඳුනාගැනිනි Comment[sk]=Zistená aktivita v monitorovanom sedení @@ -563,7 +576,6 @@ Comment[tr]=İzlenen oturumda etkinlik algılandı Comment[ug]=كۆزىتىلىۋاتقان ئەڭگىمەدە بايقالغان پائالىيەت Comment[uk]=В сеансі спостереження виявлено дії Comment[wa]=Activité detectêye dins ene corwaiteye session -Comment[x-test]=xxActivity detected in a monitored sessionxx Comment[zh_CN]=在监视的会话中检测到活动 Comment[zh_TW]=監控工作階段中偵測到的活動 Action=Popup @@ -578,7 +590,7 @@ Name[bg]=Бездействие в нефокусирана мониторира Name[ca]=Silenci en una sessió controlada sense focus Name[ca@valencia]=Silenci en una sessió controlada sense focus Name[da]=Inaktivitetet i ikke-synlig overvåget session -Name[de]=Keine Aktivität in nicht sichtbarer, überwachter Sitzung +Name[de]=Keine Aktivität in nicht fokussierter, überwachter Sitzung Name[el]=Ησυχία σε μη εστιασμένη υπό εποπτεία συνεδρία Name[en_GB]=Silence in Non-Focused Monitored Session Name[eo]=Silento en Nefokusita Monitorita seanco @@ -587,6 +599,7 @@ Name[et]=Vaikus fookusest väljas jälgitavas seansis Name[eu]=Isiltasuna fokurik gabeko gainbegiratutako saioan Name[fi]=Hiljaisuutta ei-kohdistetussa valvotussa istunnossa Name[fr]=Inactivité dans une session surveillée non-sélectionnée +Name[ga]=Ciúnas i Seisiún Monatóireachta Neamhfhócasaithe Name[gl]=Silencio nunha sesión monitorizada sen o foco Name[he]=שקט בהפעלה במעקב מחוץ למיקוד Name[hu]=Üresjárat egy nem fókuszált, figyelt munkamenetben @@ -594,6 +607,7 @@ Name[ia]=Silentio in session monitorate non focalisate Name[id]=Senyap dalam Sesi Nonfokus Terpantau Name[is]=Þögn í óvirkri setu sem er vöktuð Name[it]=Silenzio in una sessione non visibile sorvegliata +Name[ja]=フォーカス外の監視中セッションの休止 Name[ka]=სიჩუმე ფოკუსის არმქონე სესიაში, რომლის მონიტორინგიც ხდება Name[ko]=보이지 않는 관찰하는 세션에서 침묵 발생 Name[lv]=Klusums fonā esošā pārraudzītā sesijā @@ -605,6 +619,7 @@ Name[pt]=Silêncio numa Sessão Vigiada Invisível Name[pt_BR]=Silêncio em sessão monitorada não selecionada Name[ro]=Liniște în sesiune monitorizată nefocalizată Name[ru]=Молчание в отслеживаемом неактивном сеансе +Name[sa]=अकेन्द्रितनिरीक्षितसत्रे मौनम् Name[sk]=Nečinnosť v monitorovanom sedení Name[sl]=Nedejavnost znotraj nadzorovane seje izven žarišča Name[sr]=Тишина у надгледаној сесији ван фокуса @@ -615,7 +630,6 @@ Name[sv]=Tystnad i icke-fokuserad bevakad session Name[ta]=கண்காணிக்கப்படும் குவியமில்லா அமர்வில் அமைதி Name[tr]=Odaksız İzlenen Oturumda Sessizlik Name[uk]=Тиша у нефокусованому сеансі спостереження -Name[x-test]=xxSilence in Non-Focused Monitored Sessionxx Name[zh_CN]=在监视的非焦点会话中检测到空闲 Name[zh_TW]=監控未取得焦點工作階段的靜默行為 Comment=Silence detected in a non-focused monitored session @@ -627,7 +641,7 @@ Comment[bg]=Бездействие, регистрирано в нефокуси Comment[ca]=Silenci detectat en una sessió controlada sense focus Comment[ca@valencia]=Silenci detectat en una sessió controlada sense focus Comment[da]=Inaktivitetet detekteret i en ikke-synlig overvåget session -Comment[de]=In einer nicht sichtbaren, überwachten Sitzung wird keine Aktivität festgestellt +Comment[de]=In einer nicht fokussierten, überwachten Sitzung wird keine Aktivität festgestellt Comment[el]=Επικρατεί ησυχία σε μη εστιασμένη υπό εποπτεία συνεδρία Comment[en_GB]=Silence detected in a non-focused monitored session Comment[eo]=Detektis silenton en nefokusita monitorita seanco @@ -636,6 +650,7 @@ Comment[et]=Tuvastati vaikus fookusest väljas jälgitavas seansis Comment[eu]=Isiltasuna antzeman du fokurik gabeko gainbegiratutako saio batean Comment[fi]=Hiljaisuutta havaittu ei-kohdistetussa tarkkailtavassa istunnossa Comment[fr]=Inactivité détectée dans une session surveillée non-sélectionnée +Comment[ga]=Tost braite i seisiún monatóireachta neamhfhócasaithe Comment[gl]=Detectouse silencio nunha sesión monitorizada sen o foco. Comment[he]=זוהה שקט בהפעלה במעקב מחוץ למיקוד Comment[hu]=Üresjárat észlelve egy nem fókuszált, figyelt munkamenetben @@ -643,6 +658,7 @@ Comment[ia]=Silentio relevate in un session monitorate non focalisate Comment[id]=Senyap terdeteksi dalam sesi nonfokus terpantau Comment[is]=Þögn í óvirkri setu sem er vöktuð Comment[it]=Silenzio rilevato in una sessione non visibile sorvegliata +Comment[ja]=フォーカス外の監視中セッションで休止を検出したとき Comment[ka]=სიჩუმე ფოკუსის არმქონე სესიაში, რომლის მონიტორინგიც ხდება Comment[ko]=보이지 않는 관찰하는 세션에서 설정된 시간동안 아무런 출력이 없음 Comment[lv]=Konstatēts klusums fonā esošā pārraudzītā sesijā @@ -654,6 +670,7 @@ Comment[pt]=Silêncio detectado numa sessão vigiada e que não está em primeir Comment[pt_BR]=Silêncio detectado em uma sessão monitorada não selecionada Comment[ro]=Liniște detectată într-o sesiune monitorizată nefocalizată Comment[ru]=В отслеживаемом неактивном сеансе обнаружено молчание +Comment[sa]=अकेन्द्रितनिरीक्षितसत्रे मौनं ज्ञातम् Comment[sk]=Zistená nečinnosť v monitorovanom sedení Comment[sl]=Znotraj nadzorovane seje izven žarišča je bila zaznana nedejavnost Comment[sr]=Уочена је тишина у надгледаној сесији ван фокуса @@ -664,7 +681,6 @@ Comment[sv]=Tystnad funnen i en icke-fokuserad bevakad session Comment[ta]=கண்காணிக்கப்படும் குவியமில்லா அமர்வில் ஒன்றும் நடக்காத‍து கண்டறியப்பட்டுள்ளது Comment[tr]=Odaklanılmamış izlenen oturumda durgunluk algılandı Comment[uk]=В нефокусованому сеансі спостереження виявлено тишу -Comment[x-test]=xxSilence detected in a non-focused monitored sessionxx Comment[zh_CN]=在监视的非焦点会话中检测到空闲 Comment[zh_TW]=監控未取得焦點的工作階段中偵測到靜默時的行為 Action=Popup @@ -733,6 +749,7 @@ Name[pt]=Silêncio em Sessão Vigiada Name[pt_BR]=Silêncio em sessão monitorada Name[ro]=Liniște în sesiunea monitorizată Name[ru]=Молчание в отслеживаемом сеансе +Name[sa]=निरीक्षितसत्रे मौनम् Name[si]=නිරීක්‍ෂණය කරන වාරයේ නිශ්ශබ්දතාවක් Name[sk]=Nečinnosť v monitorovanom sedení Name[sl]=Nedejavnost znotraj nadzorovane seje @@ -749,7 +766,6 @@ Name[tr]=İzlenen Oturumda Sessizlik Name[ug]=كۆزىتىلىۋاتقان ئەڭگىمەدە جىمجىتلىق Name[uk]=Тиша в сеансі спостереження Name[wa]=Silince e corwaiteye session -Name[x-test]=xxSilence in Monitored Sessionxx Name[zh_CN]=在监视的会话中检测到空闲 Name[zh_TW]=監控工作階段的靜默 Comment=Silence detected in a monitored session @@ -792,7 +808,7 @@ Comment[ia]=Silentio relevate in un session monitorate Comment[id]=Senyap terdeteksi dalam sebuah sesi terpantau Comment[is]=Þögn í setu sem er vöktuð Comment[it]=Silenzio rilevato in una sessione sorvegliata -Comment[ja]=監視中のセッションで休止を検出しました +Comment[ja]=監視中のセッションで休止を検出したとき Comment[ka]=სიჩუმე სესიაში, რომლის მონიტორინგიც ხდება Comment[kk]=Қадағалаудағы сеанста тыныштық байқалады Comment[km]=បាន​រក​ឃើញ​ភាព​ស្ងាត់​ក្នុង​សម័យ​ដែល​បាន​ត្រួត​ពិនិត្យ @@ -818,6 +834,7 @@ Comment[pt]=Silêncio detectado numa sessão vigiada Comment[pt_BR]=Silêncio detectado em uma sessão monitorada Comment[ro]=Liniște detectată într-o sesiune monitorizată Comment[ru]=В отслеживаемом сеансе обнаружено молчание +Comment[sa]=निरीक्षितसत्रे मौनं ज्ञातम् Comment[se]=Gozihuvvon bargovuorru javohuvvui Comment[si]=නිරීක්‍ෂණය කරන වාරයේ නිශ්ශබ්දතාවක් හඳුනාගැනිනි Comment[sk]=Zistená nečinnosť v monitorovanom sedení @@ -835,7 +852,6 @@ Comment[tr]=İzlenen oturumda durgunluk algılandı Comment[ug]=كۆزىتىلىۋاتقان ئەڭگىمەدە بايقالغان جىمجىتلىق Comment[uk]=В сеансі спостереження виявлено тишу Comment[wa]=Silince detecté dins ene corwaiteye session -Comment[x-test]=xxSilence detected in a monitored sessionxx Comment[zh_CN]=在监视的会话中检测到空闲 Comment[zh_TW]=監控工作階段中偵測到靜默時的行為 Action=Popup @@ -850,8 +866,8 @@ Name[bg]=Процесът в нефокусирана мониторирана Name[ca]=El procés ha finalitzat a una sessió controlada sense focus Name[ca@valencia]=El procés ha finalitzat a una sessió controlada sense focus Name[da]=Proces afsluttet i ikke-fokuseret overvåget session -Name[de]=Prozess abgeschlossen in nicht sichtbarer, überwachter Sitzung -Name[el]=Η διεργασία τερματίστηκε σε μη εστιασμένη υπό εποπτεία συνεδρία +Name[de]=Prozess abgeschlossen in nicht fokussierter, überwachter Sitzung +Name[el]=Η διεργασία ολοκληρώθηκε σε μη εστιασμένη υπό εποπτεία συνεδρία Name[en_GB]=Process finished in Non-Focused Monitored Session Name[eo]=Procezo finiĝis en Nefokusita Monitorita seanco Name[es]=Proceso terminado en sesión monitorizada sin el foco @@ -859,6 +875,7 @@ Name[et]=Protsess lõppes fookusest väljas jälgitavas seansis Name[eu]=Prozesua amaitu da fokurik gabeko gainbegiratutako saioan Name[fi]=Prosessi päättynyt ei-kohdistetussa tarkkailtavassa istunnossa Name[fr]=Processus terminé dans une session surveillée non-sélectionnée +Name[ga]=Próiseas críochnaithe i Seisiún Monatóireachta Neamhfhócasaithe Name[gl]=Un proceso rematou nunha sesión monitorizada sen o foco Name[he]=הסתיים תהליך בהפעלה במעקב מחוץ למיקוד Name[hu]=Folyamat befejezve nem fókuszált, figyelt munkamenetben @@ -866,6 +883,7 @@ Name[ia]=Processo terminava in session monitorate non focalisate Name[id]=Proses selesai dalam Sesi Non-Fokus Terpantau Name[is]=Vinnslu lokið í óvirkri setu sem er vöktuð Name[it]=Processo terminato in una sessione non visibile sorvegliata +Name[ja]=フォーカス外の監視中セッションでプロセス完了 Name[ka]=ფოკუსის არმქონე სესიაში, რომლის მონიტორინგიც ხდება, პროცესი დასრულდა Name[ko]=보이지 않는 관찰하는 세션에서 프로세스 종료됨 Name[lv]=Pabeigts process fonā esošā pārraudzītā sesijā @@ -876,13 +894,13 @@ Name[pt]=Processo Terminado numa Sessão Vigiada em Segundo Plano Name[pt_BR]=Processo concluído em sessão monitorada não selecionada Name[ro]=Proces încheiat în sesiune monitorizată nefocalizată Name[ru]=В отслеживаемом неактивном сеансе завешено выполнение процесса +Name[sa]=अकेन्द्रितनिरीक्षितसत्रे प्रक्रिया समाप्तवती Name[sk]=Proces sa skončil v nezameranom monitorovanom sedení Name[sl]=Proces se je končal v ne-osredotočeni nadzorovani seji Name[sv]=Process avslutades i icke-fokuserad bevakad session Name[ta]=கண்காணிக்கப்படும் குவியமில்லா அமர்வில் நிரல் முடிவடைந்த‍து Name[tr]=Odaksız İzlenen Oturumdaki Süreç Tamamlandı Name[uk]=У нефокусованому сеансі спостереження завершено процес -Name[x-test]=xxProcess finished in Non-Focused Monitored Sessionxx Name[zh_CN]=在监视的非焦点会话中进程结束 Name[zh_TW]=完成於未取得焦點工作階段的執行程序 Comment=Process finished in a non-focused monitored session @@ -894,8 +912,8 @@ Comment[bg]=Процесът в нефокусирана мониториран Comment[ca]=El procés ha finalitzat a una sessió controlada sense focus Comment[ca@valencia]=El procés ha finalitzat a una sessió controlada sense focus Comment[da]=Proces afsluttet i en ikke-fokuseret overvåget session -Comment[de]=In einer nicht sichtbaren, überwachten Sitzung wird ein abgeschlossener Prozess festgestellt -Comment[el]=Η διεργασία τερματίστηκε σε μία μη εστιασμένη υπό εποπτεία συνεδρία +Comment[de]=In einer nicht fokussierten, überwachten Sitzung wird ein abgeschlossener Prozess festgestellt +Comment[el]=Η διεργασία ολοκληρώθηκε σε μία μη εστιασμένη υπό εποπτεία συνεδρία Comment[en_GB]=Process finished in a non-focused monitored session Comment[eo]=Procezo finiĝis en nefokusita monitorita seanco Comment[es]=Proceso terminado en una sesión monitorizada sin el foco @@ -903,6 +921,7 @@ Comment[et]=Protsess lõppes vaikus fookusest väljas jälgitavas seansis Comment[eu]=Prozesua amaitu da fokurik gabeko gainbegiratutako saio batean Comment[fi]=Prosessi päättynyt ei-kohdistetussa tarkkailtavassa istunnossa Comment[fr]=Processus terminé dans une session surveillée non-sélectionnée +Comment[ga]=Próiseas críochnaithe i seisiún monatóireachta neamhfhócasaithe Comment[gl]=Un proceso rematou nunha sesión monitorizada sen o foco Comment[he]=תהליך הסתיים בהפעלה במעקב מחוץ למיקוד Comment[hu]=Folyamat befejezve egy nem fókuszált, figyelt munkamenetben @@ -910,6 +929,7 @@ Comment[ia]=Processo terminava relevate in un session monitorate non focalisate Comment[id]=Proses selesai di dalam sesi non-fokus terpantau Comment[is]=Vinnslu lokið í óvirkri setu sem er vöktuð Comment[it]=Processo terminato in una sessione non visibile sorvegliata +Comment[ja]=フォーカス外の監視中セッションでプロセスが完了したとき Comment[ka]=ფოკუსის არმქონე სესიაში, რომლის მონიტორინგიც ხდება, პროცესი დასრულდა Comment[ko]=보이지 않는 관찰하는 세션에서 프로세스 종료됨 Comment[lv]=Pabeigts process fonā esošā pārraudzītā sesijā @@ -920,13 +940,13 @@ Comment[pt]=Processo terminado numa sessão vigiada em segundo plano Comment[pt_BR]=Processo concluído em uma sessão monitorada não selecionada Comment[ro]=Proces încheiat într-o sesiune monitorizată nefocalizată Comment[ru]=В отслеживаемом неактивном сеансе завешено выполнение процесса +Comment[sa]=अकेन्द्रितनिरीक्षितसत्रे प्रक्रिया समाप्तवती Comment[sk]=Proces sa skončil v nezameranom monitorovanom sedení Comment[sl]=Končan proces v ne-osredotočeni nadzorovani seji Comment[sv]=Process avslutades i en icke-fokuserad bevakad session Comment[ta]=கண்காணிக்கப்படும் குவியமில்லா அமர்வில் நிரல் முடிவடைந்த‍து Comment[tr]=Odaklanılmamış, izlenen bir oturumda süreç tamamlandı Comment[uk]=У нефокусованому сеансі спостереження завершено роботу процесу -Comment[x-test]=xxProcess finished in a non-focused monitored sessionxx Comment[zh_CN]=在监视的非焦点会话中进程结束 Comment[zh_TW]=完成於未取得焦點工作階段的執行程序 Action=Popup @@ -943,7 +963,7 @@ Name[ca@valencia]=El procés ha finalitzat a una sessió controlada Name[cs]=Proces dokončen v monitorovaném sezení Name[da]=Proces afsluttet i overvåget session Name[de]=Prozess abgeschlossen in überwachter Sitzung -Name[el]=Η διεργασία τερματίστηκε σε συνεδρία υπό εποπτεία +Name[el]=Η διεργασία ολοκληρώθηκε σε συνεδρία υπό εποπτεία Name[en_GB]=Process finished in Monitored Session Name[eo]=Procezo finiĝis en Monitorita Seanco Name[es]=Proceso terminado en sesión monitorizada @@ -951,6 +971,7 @@ Name[et]=Protsess lõppes jälgitavas seansis Name[eu]=Prozesua amaitu da gainbegiratutako saioan Name[fi]=Prosessi päättynyt valvotussa istunnossa Name[fr]=Processus terminé dans une session surveillée +Name[ga]=Próiseas críochnaithe i Seisiún Monatóireachta Name[gl]=Un proceso rematou nunha sesión monitorizada Name[he]=תהליך הסתיים בהפעלה במעקב Name[hu]=Folyamat befejezve figyelt munkamenetben @@ -958,6 +979,7 @@ Name[ia]=Processo terminava in session monitorate Name[id]=Proses selesai dalam Sesi Terpantau Name[is]=Vinnslu lokið í setu sem er vöktuð Name[it]=Processo terminato in una sessione sorvegliata +Name[ja]=監視中のセッションでプロセス完了 Name[ka]=სესიაში, რომლის მონიტორინგიც ხდება, პროცესი დასრულდა Name[ko]=관찰하는 세션에서 프로세스 종료됨 Name[lv]=Pabeigts process pārraudzītā sesijā @@ -968,13 +990,13 @@ Name[pt]=Processo Terminado numa Sessão Vigiada Name[pt_BR]=Processo concluído em sessão monitorada Name[ro]=Proces încheiat în sesiune monitorizată Name[ru]=В отслеживаемом сеансе завешено выполнение процесса +Name[sa]=Monitored Session इत्यस्मिन् प्रक्रिया समाप्तवती Name[sk]=Proces sa skončil v monitorovanom sedení Name[sl]=Proces se je končal v nadzorovani seji Name[sv]=Process avslutades i bevakad session Name[ta]=கண்காணிக்கப்படும் அமர்வில் நிரல் முடிவடைந்த‍து Name[tr]=İzlenen Oturumda İşlem Tamamlandı Name[uk]=У сеансі спостереження завершено процес -Name[x-test]=xxProcess finished in Monitored Sessionxx Name[zh_CN]=在监视的会话中进程结束 Name[zh_TW]=完成於監控中工作階段的執行程序 Comment=Process finished in a monitored session @@ -988,7 +1010,7 @@ Comment[ca@valencia]=El procés ha finalitzat a una sessió controlada Comment[cs]=Proces dokončen v monitorovaném sezení Comment[da]=Proces afsluttet i en overvåget session Comment[de]=In einer überwachten Sitzung wird ein abgeschlossener Prozess festgestellt -Comment[el]=Η διεργασία τερματίστηκε σε μια συνεδρία υπό εποπτεία +Comment[el]=Η διεργασία ολοκληρώθηκε σε μια συνεδρία υπό εποπτεία Comment[en_GB]=Process finished in a monitored session Comment[eo]=Procezo finiĝis en monitorita seanco Comment[es]=Proceso terminado en una sesión monitorizada @@ -996,6 +1018,7 @@ Comment[et]=Protsess lõppes jälgitavas seansis Comment[eu]=Prozesua amaitu da gainbegiratutako saio batean Comment[fi]=Prosessi päättynyt valvotussa istunnossa Comment[fr]=Processus terminé dans une session surveillée +Comment[ga]=Próiseas críochnaithe i seisiún monatóireachta Comment[gl]=Un proceso rematou nunha sesión monitorizada Comment[he]=תהליך הסתיים בהפעלה במעקב Comment[hu]=Folyamat befejezve egy figyelt munkamenetben @@ -1003,6 +1026,7 @@ Comment[ia]=Processo terminava in un session monitorate Comment[id]=Proses selesai dalam sesi terpantau Comment[is]=Vinnslu lokið í setu sem er vöktuð Comment[it]=Processo terminato in una sessione sorvegliata +Comment[ja]=監視中のセッションでプロセスが完了したとき Comment[ka]=სესიაში, რომლის მონიტორინგიც ხდება, პროცესი დასრულდა Comment[ko]=관찰하는 세션에서 프로세스 종료됨 Comment[lv]=Pabeigts process pārraudzītā sesijā @@ -1013,13 +1037,13 @@ Comment[pt]=Processo terminado numa sessão vigiada Comment[pt_BR]=Processo concluído em uma sessão monitorada Comment[ro]=Proces încheiat într-o sesiune monitorizată Comment[ru]=В отслеживаемом сеансе завешено выполнение процесса +Comment[sa]=निरीक्षितसत्रे प्रक्रिया समाप्तवती Comment[sk]=Proces sa skončil v monitorovanom sedení Comment[sl]=Proces se je končal v nadzorovani seji Comment[sv]=Process avslutades i en bevakad session Comment[ta]=கண்காணிக்கப்படும் அமர்வில் நிரல் முடிவடைந்த‍து Comment[tr]=İşlem izlenen bir oturumda tamamlandı Comment[uk]=У сеансі спостереження завершено роботу процесу -Comment[x-test]=xxProcess finished in a monitored sessionxx Comment[zh_CN]=在监视的会话中进程结束 Comment[zh_TW]=完成於監控中工作階段的執行程序 Action=Popup @@ -1041,7 +1065,7 @@ Name[cs]=Sezení ukončeno nenulovým stavem Name[csb]=Zakùńczonô sesëjô z niezerowim sztatusã Name[da]=Session afsluttet med ikke-nul status Name[de]=Sitzung mit Nicht-Null-Status beendet -Name[el]=Η συνεδρία τερμάτισε με μη μηδενική κατάσταση +Name[el]=Η συνεδρία ολοκληρώθηκε με μη μηδενική κατάσταση Name[en_GB]=Session Finished With Non-Zero Status Name[eo]=Seanco finiĝis kun eraro Name[es]=La sesión terminó con un estado distinto de cero @@ -1088,6 +1112,7 @@ Name[pt]=Sessão Terminada com Código Diferente de Zero Name[pt_BR]=Sessão finalizada com status diferente de zero Name[ro]=Sesiunea s-a încheiat cu stare diferită de zero Name[ru]=Сеанс завершился с ненулевым состоянием +Name[sa]=सत्रं अशून्यस्थित्या समाप्तम् Name[se]=Bargovuorru nogai ii-nolla stáhtusain Name[si]=බිංදුවක්-නොවන තත්ව සමඟ වාරය අවසන් විය Name[sk]=Sedenie ukončené s nenulovým stavom @@ -1107,7 +1132,6 @@ Name[uk]=Сеанс завершився з ненульовим станом Name[uz]=Seans nolga teng boʻlmagan holat bilan tugadi Name[uz@cyrillic]=Сеанс нолга тенг бўлмаган ҳолат билан тугади Name[wa]=Session fineye avou on statut nén zero -Name[x-test]=xxSession Finished With Non-Zero Statusxx Name[zh_CN]=会话以非零状态完成 Name[zh_TW]=工作階段以不正常狀態結束 Comment=A session has exited with non-zero status @@ -1150,7 +1174,7 @@ Comment[ia]=Un session ha exite con status non-zero Comment[id]=Sebuah sesi telah dikeluarkan dengan status non-nol Comment[is]=Hætt var í setu með stöðu sem er ekki núll Comment[it]=Una sessione è terminata con stato diverso da zero -Comment[ja]=ゼロでないステータスでセッションが終了しました +Comment[ja]=ゼロでないステータスでセッションが終了したとき Comment[ka]=სესია არანულოვანი სტატუსით დასრულდა Comment[kk]=Сеанс нөл-емес күйімен доғарылды Comment[km]=សម័យ​បាន​បិទ​ដោយ​​ស្ថានភាព​មិន​សូន្យ @@ -1176,6 +1200,7 @@ Comment[pt]=Uma sessão terminou com um código de saída diferente de zero Comment[pt_BR]=Uma sessão foi fechada com um status diferente de zero Comment[ro]=O sesiune s-a terminat cu rezultat diferit de zero Comment[ru]=Сеанс завершился с ненулевым состоянием +Comment[sa]=शून्यरहितस्थित्या सह सत्रं निर्गतम् अस्ति Comment[se]=Bargovuorru nogai ii-nolla stáhtusain Comment[si]=බින්දුවක්-නොවන තත්වයක් සමඟ වාරය පිටවිය Comment[sk]=Sedenie bolo ukončené s nenulovým stavom @@ -1195,7 +1220,6 @@ Comment[uk]=Сеанс завершився з ненульовим станом Comment[uz]=Seans nolga teng boʻlmagan holat bilan tugadi Comment[uz@cyrillic]=Сеанс нолга тенг бўлмаган ҳолат билан тугади Comment[wa]=Ene session a moussî foû avou on statut nén zero -Comment[x-test]=xxA session has exited with non-zero statusxx Comment[zh_CN]=会话以非零状态退出 Comment[zh_TW]=工作階段以不正常狀態(非零值)結束 Action=None @@ -1208,19 +1232,22 @@ Name[be]=Працэс выклікаў апавяшчэнне ў сеансе, Name[bg]=Процес, задействал известие във фокусирана сесия Name[ca]=El procés ha activat una notificació en una sessió amb focus Name[ca@valencia]=El procés ha activat una notificació en una sessió amb focus -Name[el]=Η διεργασία ενεργοποίησε μια ειδοποίηση σε μια εστιασμένη συνεδρία +Name[de]=Prozess hat eine Benachrichtigung in einer fokussierten Sitzung ausgelöst +Name[el]=Η διεργασία προκάλεσε μια ειδοποίηση σε μια εστιασμένη συνεδρία Name[en_GB]=Process Triggered a Notification in a Focused Session Name[eo]=Procezo Ekigis Sciigon en Fokusita Seanco Name[es]=El proceso ha activado una notificación en una sesión con el foco Name[eu]=Prozesuak jakinarazpen bat eragin du fokua duen saio batean Name[fi]=Prosessi laukaisi ilmoituksen kohdistetussa istunnossa Name[fr]=Un processus a émis une notification dans une session surveillée +Name[ga]=Chuir an próiseas fógra i ngníomh i seisiún dírithe Name[gl]=Un proceso disparou unha notificación nunha sesión enfocada Name[he]=תהליך הזניק התראה בהפעלה במיקוד Name[hu]=Egy folyamat értesítést aktivált egy fókuszált munkamenetben Name[ia]=Processo discatenava un norification in un session focalisate Name[is]=Vinnsla virkjaði tilkynningu í virkri setu Name[it]=Il processo ha attivato una notifica in una sessione visibile +Name[ja]=フォーカス中のセッションでプロセスが通知 Name[ka]=პროცესმა შეტყობინება ფოკუსის მქონე სესიაში დაატრიგერა Name[ko]=포커스가 맞춰진 세션에서 프로세스에서 알림을 트리거함 Name[lv]=Process ir palaidis paziņojumu aktīvajā sesijā @@ -1230,12 +1257,13 @@ Name[pl]=Proces wywołał powiadomienie w uaktywnionej sesji Name[pt]=O Processo Desencadeou uma Notificação numa Sessão em Primeiro Plano Name[pt_BR]=O processo acionou uma notificação em uma sessão selecionada Name[ru]=Процесс в активном сеансе вызвал уведомление +Name[sa]=प्रक्रिया केन्द्रितसत्रे सूचनां प्रेरितवती +Name[sk]=Proces sa skončil v nezameranom monitorovanom sedení Name[sl]=Proces se je sprožil obvestilo v osredotočeni seji Name[sv]=Process utlöste en underrättelse i en fokuserad session Name[ta]=குவியமுள்ள அமர்விலுள்ள நிரல் அறிவிப்பை தூண்டியது Name[tr]=Süreç, Odaklı Oturumda Bildirim Tetikledi Name[uk]=Процесом ініційовано сповіщення у фокусованому сеансі -Name[x-test]=xxProcess Triggered a Notification in a Focused Sessionxx Name[zh_CN]=进程在焦点会话中触发了通知 Name[zh_TW]=取得焦點的工作階段中的處理程序觸發了通知 Comment=Notification emitted by a process in a focused session @@ -1245,19 +1273,22 @@ Comment[be]=Апавяшчэнне, адпраўленае працэсам у Comment[bg]=Известие, изпратено от процес във фокусирана сесия Comment[ca]=Notificació emesa per un procés en una sessió amb focus Comment[ca@valencia]=Notificació emesa per un procés en una sessió amb focus -Comment[el]=Μια ειδοποίηση ενεργοποιήθηκε από διεργασία σε εστιασμένη συνεδρία +Comment[de]=Benachrichtigung, die durch einen Prozess in einer fokussierten Sitzung ausgelöst wird. +Comment[el]=Μια ειδοποίηση εκπέμφθηκε από διεργασία σε εστιασμένη συνεδρία Comment[en_GB]=Notification emitted by a process in a focused session Comment[eo]=Sciigo eligita de procezo en fokusita seanco Comment[es]=Notificación emitida por un proceso en una sesión con el foco Comment[eu]=Fokua duen saio bateko prozesu batek igorritako jakinarazpena Comment[fi]=Prosessi lähetti ilmoituksen kohdistetussa istunnossa Comment[fr]=Une notification a été émise par un processus dans une session surveillée +Comment[ga]=Fógra arna eisiúint ag próiseas i seisiún dírithe Comment[gl]=Un proceso emitiu unha notificación nunha sesión enfocada Comment[he]=הופעלה התראה על ידי תהליך בהפעלה במיקוד Comment[hu]=Értesítés kiadva egy folyamat által egy fókuszált munkamenetben Comment[ia]=Notification emittite per un processo intra un session focalisate Comment[is]=Tilkynning send af vinnslu í virkri setu Comment[it]=Notifica emessa da un processo in una sessione visibile +Comment[ja]=フォーカス中のセッションでプロセスが通知を発信したとき Comment[ka]=შეტყობინება პროცესისგან, რომელიც ფოკუსის მქონე სესიაშია Comment[ko]=포커스가 맞춰진 세션에서 프로세스가 알림을 트리거함 Comment[lv]=Process aktīvajā sesijā ir palaidis paziņojumu @@ -1267,12 +1298,13 @@ Comment[pl]=Powiadomienie wywołane przez proces w uaktywnionej sesji Comment[pt]=Foi emitida uma notificação por um processo numa sessão em primeiro plano Comment[pt_BR]=Notificação emitida por um processo em uma sessão selecionada Comment[ru]=Процесс в активном сеансе отправил уведомление +Comment[sa]=केन्द्रितसत्रे प्रक्रियाद्वारा उत्सर्जिता सूचना +Comment[sk]=Zvonček poslaný v zobrazenom sedení Comment[sl]=Objavljeno obvestilo znotraj seje v žarišču Comment[sv]=Underrättelse avgiven av en process i en fokuserad session Comment[ta]=குவியமுள்ள அமர்விலுள்ள ஓர் நிரல் அறிவிப்பைத் தூண்டியது Comment[tr]=Odaklanan bir oturumda, bir süreç tarafından bildirim verildi Comment[uk]=Сповіщення, яке видано процесом у фокусованому сеансі -Comment[x-test]=xxNotification emitted by a process in a focused sessionxx Comment[zh_CN]=通知由一个位于焦点会话中的进程发出 Comment[zh_TW]=取得焦點的工作階段中處理程序發出的通知 Action=None @@ -1285,19 +1317,22 @@ Name[be]=Працэс выклікаў апавяшчэнне ў сеансе, Name[bg]=Процес, задействал известие в не-фокусирана сесия Name[ca]=El procés ha activat una notificació en una sessió sense focus Name[ca@valencia]=El procés ha activat una notificació en una sessió sense focus -Name[el]=Η διεργασία ενεργοποίησε μια ειδοποίηση σε μια μη εστιασμένη συνεδρία +Name[de]=Prozess hat eine Benachrichtigung in einer nicht fokussierten Sitzung ausgelöst +Name[el]=Η διεργασία προκάλεσε μια ειδοποίηση σε μια μη εστιασμένη συνεδρία Name[en_GB]=Process Triggered a Notification in a Non-Focused Session Name[eo]=Procezo Ekigis Sciigon en Nefokusita Seanco Name[es]=El proceso ha activado una notificación en una sesión sin el foco Name[eu]=Prozesuak jakinarazpen bat eragin du fokurik ez duen saio batean Name[fi]=Prosessi laukaisi ilmoituksen ei-kohdistetussa istunnossa Name[fr]=Un processus a émis une notification dans une session non surveillée +Name[ga]=Chuir an próiseas fógra i ngníomh i seisiún neamhfhócasaithe Name[gl]=Un proceso disparou unha notificación nunha sesión desenfocada Name[he]=תהליך הזניק התראה בהפעלה מחוץ למיקוד Name[hu]=Egy folyamat értesítést aktivált egy nem fókuszált munkamenetben Name[ia]=Processo discatenava un notification in un session non focalisate Name[is]=Vinnsla virkjaði tilkynningu í óvirkri setu Name[it]=Il processo ha attivato una notifica in una sessione non visibile +Name[ja]=フォーカス外セッションでプロセスが通知 Name[ka]=პროცესმა შეტყობინება ფოკუსის არმქონე სესიაში დაატრიგერა Name[ko]=포커스가 맞춰지지 않은 세션에서 프로세스에서 알림을 트리거함 Name[lv]=Process ir palaidis paziņojumu fonā esošā sesijā @@ -1307,12 +1342,13 @@ Name[pl]=Proces wywołał powiadomienie w nieuaktywnionej sesji Name[pt]=O Processo Desencadeou uma Notificação numa Sessão em Segundo Plano Name[pt_BR]=O processo acionou uma notificação em uma sessão não selecionada Name[ru]=Процесс в неактивном сеансе вызвал уведомление +Name[sa]=प्रक्रिया अकेन्द्रितसत्रे सूचनां प्रेरितवती +Name[sk]=Proces sa skončil v nezameranom monitorovanom sedení Name[sl]=Proces je sprožil obvestilo v ne-osredotočeni seji Name[sv]=Process utlöste en underrättelse i en icke-fokuserad session Name[ta]=குவியமில்லா அமர்விலுள்ள நிரல் அறிவிப்பை தூண்டியது Name[tr]=Süreç, Odaksız turumda Bildirim Tetikledi Name[uk]=Процесом ініційовано сповіщення у нефокусованому сеансі -Name[x-test]=xxProcess Triggered a Notification in a Non-Focused Sessionxx Name[zh_CN]=进程在非焦点会话中触发了通知 Name[zh_TW]=未取得焦點的工作階段中的處理程序觸發了通知 Comment=Notification emitted by a process in a non-focused session @@ -1322,19 +1358,22 @@ Comment[be]=Апавяшчэнне, адпраўленае працэсам у Comment[bg]=Известие, изпратено от процес в не-фокусирана сесия Comment[ca]=Notificació emesa per un procés en una sessió sense focus Comment[ca@valencia]=Notificació emesa per un procés en una sessió sense focus -Comment[el]=Μια ειδοποίηση ενεργοποιήθηκε από διεργασία σε μη εστιασμένη συνεδρία +Comment[de]=Benachrichtigung, die durch einen Prozess in einer nicht fokussierten Sitzung ausgelöst wird. +Comment[el]=Μια ειδοποίηση εκπέμφθηκε από διεργασία σε μη εστιασμένη συνεδρία Comment[en_GB]=Notification emitted by a process in a non-focused session Comment[eo]=Sciigo eligita de procezo en nefokusita seanco Comment[es]=Notificación emitida por un proceso en una sesión sin el foco Comment[eu]=Fokurik ez duen saio bateko prozesu batek igorritako jakinarazpena Comment[fi]=Prosessi lähetti ilmoituksen ei-kohdistetussa istunnossa Comment[fr]=Une notification a été émise par un processus dans une session non surveillée +Comment[ga]=Fógra a eisítear ag próiseas i seisiún neamhfhócasaithe Comment[gl]=Un proceso emitiu unha notificación nunha sesión desenfocada Comment[he]=הופעלה התראה על ידי תהליך בהפעלה מחוץ למיקוד Comment[hu]=Értesítés kiadva egy folyamat által egy nem fókuszált munkamenetben Comment[ia]=Notification emittite per un processo intra un session non focalisate Comment[is]=Tilkynning send af vinnslu í óvirkri setu Comment[it]=Notifica emessa da un processo in una sessione non visibile +Comment[ja]=フォーカス外セッションでプロセスが通知を発信したとき Comment[ka]=შეტყობინება პროცესისგან, რომელიც ფოკუსის არმქონე სესიაშია Comment[ko]=포커스가 맞춰지지 않은 세션에서 프로세스가 알림을 트리거함 Comment[lv]=Process fonā esošā sesijā ir palaidis paziņojumu @@ -1344,12 +1383,13 @@ Comment[pl]=Powiadomienie wywołane przez proces w nieuaktywnionej sesji Comment[pt]=Foi emitida uma notificação por um processo numa sessão em segundo plano Comment[pt_BR]=Notificação emitida por um processo em uma sessão não selecionada Comment[ru]=Процесс в неактивном сеансе отправил уведомление +Comment[sa]=अकेन्द्रितसत्रे प्रक्रियाद्वारा उत्सर्जिता सूचना +Comment[sk]=Zvonček poslaný v nezobrazenom sedení Comment[sl]=Obvestilo objavil proces v seji izven žarišča Comment[sv]=Underrättelse avgiven av en process i en icke-fokuserad session Comment[ta]=குவியமில்லா அமர்விலுள்ள ஓர் நிரல் அறிவிப்பைத் தூண்டியது Comment[tr]=Odaklanılmamış bir oturumda, bir süreç tarafından bir bildirim verildi Comment[uk]=Сповіщення, яке видано процесом у нефокусованому сеансі -Comment[x-test]=xxNotification emitted by a process in a non-focused sessionxx Comment[zh_CN]=通知由一个位于非焦点会话中的进程发出 Comment[zh_TW]=未取得焦點的工作階段中處理程序發出的通知 Action=Popup @@ -1361,19 +1401,23 @@ Name[az]=Üz qabığı (shell) sorğusu diqqət mərkəzində olmayan sesiyada b Name[be]=Падказка абалонкі выклікала апавяшчэнне ў сеансе, які не знаходзіцца ў фокусе Name[bg]=Обвивката е задействала известие в не-фокусирана сесия Name[ca]=Un indicador de l'intèrpret d'ordres ha activat una notificació en una sessió sense focus -Name[ca@valencia]=Un indicatiu de l'intèrpret d'ordres ha activat una notificació en una sessió sense focus +Name[ca@valencia]=Un indicador de l'intèrpret d'ordres ha activat una notificació en una sessió sense focus +Name[de]=Eingabeaufforderung löste eine Benachrichtigung in einer nicht fokussierten Sitzung aus +Name[el]=Η προτροπή κελύφους προκάλεσε μια ειδοποίηση σε μια μη εστιασμένη συνεδρία Name[en_GB]=Shell prompt triggered a notification in a non-focused session Name[eo]=Ŝelinvitilo ekigis sciigon en nefokusita seanco Name[es]=El intérprete de órdenes ha activado una notificación en una sesión sin el foco Name[eu]=Oskoleko gonbitak jakinarazpen bat eragin du fokurik ez duen saio batean Name[fi]=Komentokehote laukaisi ilmoituksen ei-kohdistetussa istunnossa Name[fr]=Le prompt du shell a déclenché une notification dans une session non surveillée. +Name[ga]=Spreag leid Shell fógra i seisiún neamhfhócasaithe Name[gl]=Unha petición á persoa usuaria disparou unha notificación nunha sesión desenfocada Name[he]=שורת הפקודה של המעטפת הזניקה התראה בהפעלה מחוץ למיקוד Name[hu]=A parancsértelmező értesítést aktivált egy nem fókuszált munkamenetben Name[ia]=Prompt de shell discatenava un notification in un session non focalisate Name[is]=Skeljakvaðning virkjaði tilkynningu í óvirkri setu Name[it]=Il prompt della shell ha attivato una notifica in una sessione senza fuoco +Name[ja]=フォーカス外セッションでシェルプロンプトが通知 Name[ka]=გარსმა შეტყობინება ფოკუსის არმქონე სესიაში დაატრიგერა Name[ko]=포커스가 맞춰지지 않은 세션에서 셸 프롬프트에서 알림을 트리거함 Name[lv]=Čaulas uzvedne ir palaidusi paziņojumu fonā esošā sesijā @@ -1383,12 +1427,13 @@ Name[pl]=Zapytanie w powłoce wywołało powiadomienie w posiedzeniu, którego n Name[pt]=A linha de comandos da consola desencadeou uma notificação numa sessão em segundo plano Name[pt_BR]=O prompt do shell acionou uma notificação em uma sessão monitorada não selecionada Name[ru]=Запрос оболочки в неактивном сеансе вызвал уведомление +Name[sa]=शेल् प्रॉम्प्ट् इत्यनेन अकेन्द्रितसत्रे सूचना प्रेरिता +Name[sk]=Proces sa skončil v nezameranom monitorovanom sedení Name[sl]=Proces je sprožil obvestilo v ne-osredotočeni seji Name[sv]=Skalprompt utlöste en underrättelse i en icke-fokuserad session Name[ta]=குவியமில்லா அமர்விலுள்ள முனையத் தூண்டி அறிவிப்பை தூண்டியது Name[tr]=Kabuk İstemi, Odaksız Oturumda Bildirim Tetikledi Name[uk]=Запит оболонки ініціював сповіщення у нефокусованому сеансі -Name[x-test]=xxShell prompt triggered a notification in a non-focused sessionxx Name[zh_CN]=外壳程序的提示在非焦点的会话中触发了一条通知 Name[zh_TW]=未取得焦點的工作階段中的 shell 提示字元觸發了通知 Comment=Shell prompt triggered a notification in a non-focused session @@ -1397,19 +1442,23 @@ Comment[az]=Üz qabığı (shell) sorğusu diqqət mərkəzində olmayan sesiyad Comment[be]=Падказка абалонкі выклікала апавяшчэнне ў сеансе, які не знаходзіцца ў фокусе Comment[bg]=Обвивката е задействала известие в не-фокусирана сесия Comment[ca]=Un indicador de l'intèrpret d'ordres ha activat una notificació en una sessió sense focus -Comment[ca@valencia]=Un indicatiu de l'intèrpret d'ordres ha activat una notificació en una sessió sense focus +Comment[ca@valencia]=Un indicador de l'intèrpret d'ordres ha activat una notificació en una sessió sense focus +Comment[de]=Eingabeaufforderung löste eine Benachrichtigung in einer nicht fokussierten Sitzung aus +Comment[el]=Η προτροπή κελύφους προκάλεσε μια ειδοποίηση σε μια μη εστιασμένη συνεδρία Comment[en_GB]=Shell prompt triggered a notification in a non-focused session Comment[eo]=Ŝelinvitilo ekigis sciigon en nefokusita seanco Comment[es]=El intérprete de órdenes ha activado una notificación en una sesión sin el foco Comment[eu]=Oskoleko gonbitak jakinarazpen bat eragin du fokurik ez duen saio batean Comment[fi]=Komentokehote laukaisi ilmoituksen ei-kohdistetussa istunnossa Comment[fr]=Le prompt du shell a déclenché une notification dans une session non surveillée. +Comment[ga]=Spreag leid Shell fógra i seisiún neamhfhócasaithe Comment[gl]=Unha petición á persoa usuaria disparou unha notificación nunha sesión desenfocada. Comment[he]=שורת הפקודה של המעטפת הזניקה התראה בהפעלה מחוץ למיקוד Comment[hu]=A parancsértelmező értesítést aktivált egy nem fókuszált munkamenetben Comment[ia]=Prompt de shell discatenava un notification in un session non focalisate Comment[is]=Skeljakvaðning virkjaði tilkynningu í óvirkri setu Comment[it]=Il prompt della shell ha attivato una notifica in una sessione senza fuoco +Comment[ja]=フォーカス外セッションでシェルプロンプトが通知を発信したとき Comment[ka]=გარსმა შეტყობინება ფოკუსის არმქონე სესიაში დაატრიგერა Comment[ko]=포커스가 맞춰지지 않은 세션에서 셸 프롬프트에서 알림을 트리거함 Comment[lv]=Čaulas uzvedne ir palaidusi paziņojumu fonā esošā sesijā @@ -1419,12 +1468,13 @@ Comment[pl]=Zapytanie w powłoce wywołało powiadomienie w posiedzeniu, któreg Comment[pt]=A linha de comandos da consola desencadeou uma notificação numa sessão em segundo plano Comment[pt_BR]=O prompt do shell acionou uma notificação em uma sessão monitorada não selecionada Comment[ru]=Запрос оболочки в неактивном сеансе вызвал уведомление +Comment[sa]=शेल् प्रॉम्प्ट् इत्यनेन अकेन्द्रितसत्रे सूचना प्रेरिता +Comment[sk]=Proces sa skončil v nezameranom monitorovanom sedení Comment[sl]=Shellov poziv je sprožil obvestilo v ne-osredotočeni seji Comment[sv]=Skalprompt utlöste en underrättelse i en icke-fokuserad session Comment[ta]=குவியமில்லா அமர்விலுள்ள முனையத் தூண்டி அறிவிப்பை தூண்டியது Comment[tr]=Kabuk istemi, odaklanılmamış bir oturumda bir bildirim tetikledi Comment[uk]=Запит оболонки ініціював сповіщення у нефокусованому сеансі -Comment[x-test]=xxShell prompt triggered a notification in a non-focused sessionxx Comment[zh_CN]=外壳程序的提示在非焦点的会话中触发了一条通知 Comment[zh_TW]=未取得焦點的工作階段中的 shell 提示字元觸發了通知 Action=Popup @@ -1436,19 +1486,23 @@ Name[az]=Üz qabığı (shell) sorğusu bir bildirişi tətiklədi Name[be]=Падказка абалонкі выклікала апавяшчэнне Name[bg]=Обвивката е задействала известие Name[ca]=Un indicador de l'intèrpret d'ordres ha activat una notificació -Name[ca@valencia]=Un indicatiu de l'intèrpret d'ordres ha activat una notificació +Name[ca@valencia]=Un indicador de l'intèrpret d'ordres ha activat una notificació +Name[de]=Eingabeaufforderung löste eine Benachrichtigung aus +Name[el]=Η προτροπή κελύφους προκάλεσε μια ειδοποίηση Name[en_GB]=Shell prompt triggered a notification Name[eo]=Ŝelinvitilo ekigis sciigon Name[es]=El intérprete de órdenes ha activado una notificación Name[eu]=Oskoleko gonbitak jakinarazpen bat eragin du Name[fi]=Komentokehote laukaisi ilmoituksen Name[fr]=Le prompt du shell a déclenché une notification. +Name[ga]=Spreag leid Shell fógra Name[gl]=Unha petición á persoa usuaria disparou unha notificación Name[he]=שורת הפקודה של המעטפת הזניקה התראה Name[hu]=A parancsértelmező értesítést aktivált Name[ia]=Prompt de shell discatenava un notification Name[is]=Skeljakvaðning virkjaði tilkynningu Name[it]=Il prompt della shell ha attivato una notifica +Name[ja]=シェルプロンプトの通知 Name[ka]=გარსმა ნოტიფიკაცია დაატრიგერა Name[ko]=셸 프롬프트에서 알림을 트리거함 Name[lv]=Čaulas uzvedne ir palaidusi paziņojumu @@ -1458,12 +1512,13 @@ Name[pl]=Zapytanie w powłoce wywołało powiadomienie Name[pt]=A linha de comandos da consola desencadeou uma notificação Name[pt_BR]=O prompt do Shell acionou uma notificação Name[ru]=Запрос оболочки вызвал уведомление +Name[sa]=शेल् प्रॉम्प्ट् इत्यनेन सूचना प्रेरिता +Name[sk]=Výzva shellu spustila oznámenie Name[sl]=Shellov poziv je sprožil obvestilo Name[sv]=Skalprompt utlöste en underrättelse Name[ta]=முனையத் தூண்டி அறிவிப்பை தூண்டியது Name[tr]=Kabuk İstemi Bildirim Tetikledi Name[uk]=Запит оболонки ініціював сповіщення -Name[x-test]=xxShell prompt triggered a notificationxx Name[zh_CN]=外壳程序的提示触发了一条通知 Name[zh_TW]=shell 提示字元觸發了通知 Comment=Shell prompt triggered a notification @@ -1472,19 +1527,23 @@ Comment[az]=Üz qabığı (shell) sorğusu bir bildirişi tətiklədi Comment[be]=Падказка абалонкі выклікала апавяшчэнне Comment[bg]=Обвивката е задействала известие Comment[ca]=Un indicador de l'intèrpret d'ordres ha activat una notificació -Comment[ca@valencia]=Un indicatiu de l'intèrpret d'ordres ha activat una notificació +Comment[ca@valencia]=Un indicador de l'intèrpret d'ordres ha activat una notificació +Comment[de]=Eingabeaufforderung löste eine Benachrichtigung aus +Comment[el]=Η προτροπή κελύφους προκάλεσε μια ειδοποίηση Comment[en_GB]=Shell prompt triggered a notification Comment[eo]=Ŝelinvitilo ekigis sciigon Comment[es]=El intérprete de órdenes ha activado una notificación Comment[eu]=Oskoleko gonbitak jakinarazpen bat eragin du Comment[fi]=Komentokehote laukaisi ilmoituksen Comment[fr]=Le prompt du shell a déclenché une notification. +Comment[ga]=Spreag leid Shell fógra Comment[gl]=Unha petición á persoa usuaria disparou unha notificación. Comment[he]=שורת הפקודה של המעטפת הזניקה התראה Comment[hu]=A parancsértelmező értesítést aktivált Comment[ia]=Prompt de shell discatenava un notification Comment[is]=Skeljakvaðning virkjaði tilkynningu Comment[it]=Il prompt della shell ha attivato una notifica +Comment[ja]=シェルプロンプトが通知を発信したとき Comment[ka]=გარსმა ნოტიფიკაცია დაატრიგერა Comment[ko]=셸 프롬프트에서 알림을 트리거함 Comment[lv]=Čaulas uzvedne ir palaidusi paziņojumu @@ -1494,12 +1553,13 @@ Comment[pl]=Zapytanie w powłoce wywołało powiadomienie Comment[pt]=A linha de comandos da consola desencadeou uma notificação Comment[pt_BR]=O prompt do Shell acionou uma notificação Comment[ru]=Запрос оболочки вызвал уведомление +Comment[sa]=शेल् प्रॉम्प्ट् इत्यनेन सूचना प्रेरिता +Comment[sk]=Výzva shellu spustila oznámenie Comment[sl]=Shellov poziv je sprožil obvestilo Comment[sv]=Skalprompt utlöste en underrättelse Comment[ta]=முனையத் தூண்டி அறிவிப்பை தூண்டியது Comment[tr]=Kabuk istemi bir bildirim tetikledi Comment[uk]=Запит оболонки ініціював сповіщення -Comment[x-test]=xxShell prompt triggered a notificationxx Comment[zh_CN]=外壳程序的提示触发了一条通知 Comment[zh_TW]=shell 提示字元觸發了通知 Action=Popup diff --git a/local/recipes/kde/konsole/source/desktop/konsolepart.desktop b/local/recipes/kde/konsole/source/desktop/konsolepart.desktop index 54a7d3aaee..5e03ff5465 100644 --- a/local/recipes/kde/konsole/source/desktop/konsolepart.desktop +++ b/local/recipes/kde/konsole/source/desktop/konsolepart.desktop @@ -79,6 +79,7 @@ Name[pt]=Emulador de Terminal Name[pt_BR]=Emulador de Terminal Name[ro]=Emulator de terminal Name[ru]=Эмулятор терминала +Name[sa]=टर्मिनल एमुलेटर Name[se]=Terminálemuláhtor Name[si]=අග්‍ර අනුකාරක Name[sk]=Emulátor terminálu @@ -100,7 +101,6 @@ Name[uz@cyrillic]=Терминал эмулятори Name[vi]=Mô phỏng thiết bị cuối Name[wa]=Programes terminås Name[xh]=Umzami kulinganisela ngokulinganayo Wendlela yesiphelo -Name[x-test]=xxTerminal Emulatorxx Name[zh_CN]=终端仿真器 Name[zh_TW]=終端機模擬程式 @@ -124,6 +124,7 @@ Comment[eu]=Komando-lerrora sarbidea Comment[fa]=دسترسی خط فرمان Comment[fi]=Pääsy komentoriville Comment[fr]=Ligne de commande +Comment[ga]=Rochtain líne ordaithe Comment[gl]=Acceso á liña de ordes. Comment[he]=גישה דרך שורת פקודה Comment[hu]=Parancssori hozzáférés @@ -131,6 +132,7 @@ Comment[ia]=Accesso a linea de commando Comment[id]=Akses baris perintah Comment[is]=Aðgangur með skipanalínu Comment[it]=Accesso alla riga di comando +Comment[ja]=コマンドラインアクセス Comment[ka]=ბრძანების სტრიქონთან წვდომა Comment[ko]=명령행 접근 Comment[lv]=Komandrindas piekļuve @@ -143,6 +145,7 @@ Comment[pt]=Acesso à linha de comandos Comment[pt_BR]=Acesso à linha de comandos Comment[ro]=Acces în linie de comandă Comment[ru]=Доступ к командной строке +Comment[sa]=आदेशपङ्क्तिप्रवेशः Comment[sk]=Prístup na príkazový riadok Comment[sl]=Dostop do ukazne vrstice Comment[sr]=Приступ командној линији @@ -153,6 +156,5 @@ Comment[sv]=Åtkomst till kommandorad Comment[ta]=கட்டளை வரியை அணுக உதவும் Comment[tr]=Komut satırı erişimi Comment[uk]=Доступ до командного рядка -Comment[x-test]=xxCommand line accessxx Comment[zh_CN]=命令行访问 Comment[zh_TW]=指令列 diff --git a/local/recipes/kde/konsole/source/desktop/konsolerun.desktop b/local/recipes/kde/konsole/source/desktop/konsolerun.desktop index fc60957389..5a8b60492b 100644 --- a/local/recipes/kde/konsole/source/desktop/konsolerun.desktop +++ b/local/recipes/kde/konsole/source/desktop/konsolerun.desktop @@ -30,6 +30,7 @@ Name[eu]=Exekutatu Konsole-n Name[fa]=اجرا در کنسول Name[fi]=Suorita Konsolessa Name[fr]=Lancer dans Konsole +Name[ga]=Rith i Konsole Name[gl]=Executar en Konsole Name[he]=הפעלה ב־Konsole Name[hu]=Futtatás a Konsole programban @@ -52,6 +53,7 @@ Name[pt]=Executar no Konsole Name[pt_BR]=Executar no Konsole Name[ro]=Rulează în Konsolă Name[ru]=Запустить в Konsole +Name[sa]=Run In Console इति Name[sk]=Spustiť v Konsole Name[sl]=Zaženi v Konsole Name[sr]=Изврши у Конзоли @@ -60,9 +62,9 @@ Name[sr@ijekavianlatin]=Izvrši u Konsoli Name[sr@latin]=Izvrši u Konsoli Name[sv]=Kör i Terminal Name[ta]=கான்சோலில் இயக்கு +Name[th]=เรียกใช้ใน Konsole Name[tr]=Konsole’da Çalıştır Name[uk]=Запустити у Konsole -Name[x-test]=xxRun In Konsolexx Name[zh_CN]=在 Konsole 中运行 Name[zh_TW]=在 Konsole 中執行 @@ -86,6 +88,7 @@ Comment[eu]=Exekutatu Konsole barruan Comment[fa]=اجرا داخل کنسول Comment[fi]=Suorita Konsolessa Comment[fr]=Exécuter dans Konsole +Comment[ga]=Rith laistigh de Konsole Comment[gl]=Executar dentro de Konsole. Comment[he]=הפעלה בתוך Konsole Comment[hu]=Futtatás a Konsole-ban @@ -93,6 +96,7 @@ Comment[ia]=Executa intra Konsole Comment[id]=Jalankan dalam Konsole Comment[is]=Keyra innan í Konsole Comment[it]=Esegui in Konsole +Comment[ja]=Konsole 内で実行 Comment[ka]=Konsole-ის შიგნით გაშვება Comment[ko]=Konsole에서 실행 Comment[lv]=Palaist ar „Konsole“ @@ -105,6 +109,7 @@ Comment[pt]=Executar no Konsole Comment[pt_BR]=Executar no Konsole Comment[ro]=Rulează în cadrul Konsolei Comment[ru]=Выполнить команду в Konsole +Comment[sa]=Konsole इत्यस्य अन्तः चालयन्तु Comment[sk]=Spustiť v Konsole Comment[sl]=Zaženi znotraj Konsole Comment[sr]=Изврши у Конзоли @@ -115,6 +120,5 @@ Comment[sv]=Kör i Terminal Comment[ta]=கான்சோலுக்குள் இயக்கு Comment[tr]=Konsol İçinde Çalıştır Comment[uk]=Запустити у Konsole -Comment[x-test]=xxRun within Konsolexx Comment[zh_CN]=在 Konsole 中运行 Comment[zh_TW]=在 Konsole 中執行 diff --git a/local/recipes/kde/konsole/source/desktop/org.kde.konsole.appdata.xml b/local/recipes/kde/konsole/source/desktop/org.kde.konsole.appdata.xml index 4f4d53e4be..3c24c530e8 100644 --- a/local/recipes/kde/konsole/source/desktop/org.kde.konsole.appdata.xml +++ b/local/recipes/kde/konsole/source/desktop/org.kde.konsole.appdata.xml @@ -45,6 +45,7 @@ Konsole Konsolă Konsole + सान्त्वनम् Konsole Konsole Конзола @@ -55,7 +56,6 @@ கான்சோல் Konsole Konsole - xxKonsolexx Konsole 命令行终端 Konsole Use the command line interface @@ -65,35 +65,45 @@ Feu servir la interfície de la línia d'ordres Utilitzeu la interfície de la línia d'ordres Použít příkazový řádek + Befehlszeilenschnittstelle verwenden + Χρήση της διεπαφής γραμμής εντολών Use the command line interface Uzi la komandlinian interfacon Usar la interfaz de la línea de órdenes Erabili komando-lerroko interfazea + Käytä komentorivikäyttöliittymää Utiliser une interface en ligne de commandes - Use a interface da liña de ordes. + Use a interface da liña de ordes להשתמש בממשק שורת הפקודה A parancssori felület használata Usa le ionterfacie de linea de commando - Nota skipanalínuviðmótið + Usar un interfacie de linea de comandes + Notaðu skipanalínuviðmótið Utilizzare l'interfaccia a riga di comando გამოიყენეთ ბრძანების სტრიქონის ინტერფეისი 명령행 인터페이스 사용 + Lietot komandrindas saskarni Het commandoregel-interface gebruiken Bruk kommandolinje­grensesnitt Użyj interfejsu wiersza poleceń Use a interface de linha de comando + Folosiți interfața în linie de comandă + Использование интерфейса командной строки + आदेशपङ्क्ति-अन्तरफलकस्य उपयोगं कुर्वन्तु + Používajte rozhranie príkazového riadka Uporabi vmesnik ukazne vrstice Använd kommandoradsgränssnitt முனைய இடைமுகப்பைப் பயன்படுத்துங்கள் Komut satırı arayüzünü kullanın Використання інтерфейсу командного рядка - xxUse the command line interfacexx 使用命令行界面 使用指令列介面 - KDE + + KDE +

        Konsole is a terminal to run a command shell. It provides a command line interface for directly controlling your computer.

        -

        كونسول هي محطة لتشغيل الأوامر في الصدفة. يوفر واجهة سطر أوامر للتحكم المباشر في جهاز الكمبيوتر الخاص بك.

        +

        كونسول هو محطة لتشغيل الأوامر في الصدفة. يوفر واجهة سطر أوامر للتحكم المباشر في حاسوبك.

        Konsole, əmr təbəqəsini işlətmək üçün bir terminaldır. Kompüterinizi birbaşa idarə etmək üçün bir sətir interfeysi təmin edir.

        Konsole - гэта тэрмінал для запуску каманднай абалонкі. Праграма дае доступ да інтэрфейсу каманднага радка для непасрэднага кіравання камп'ютарам.

        Konsole е терминален емулатор за изпълнение на команди на обвивката. Той предоставя интерфейс за команден ред и директен контрол върху вашия компютър.

        @@ -116,7 +126,7 @@

        Konsole es un terminal pro executar un shell de commando. Illo provide un interfacie de linea de commando pro controlar directemente tu computator.

        Konsole adalah sebuah terminal untuk menjalankan shell perintah. Ini menyediakan antarmuka baris perintah untuk secara langsung mengendalikan komputer Anda.

        Konsole es un terminal quel lansa un shell de comandes. It provide un interfacie del linea de comandes por controlar vor computator directmen.

        -

        Konsole er skjáhermir til að keyra skeljaskipanir. Hann býður upp á skipanalínuviðmót til að stjórna tölvunni með beinum hætti.

        +

        Konsole er skjáhermir til að keyra skeljaskipanir. Það gefur skipanalínuviðmót til að stýra tölvum beint.

        Konsole è un terminale per eseguire una shell di comandi. Fornisce un'interfaccia a riga di comando per controllare direttamente il tuo computer.

        Konsole წარმადგენს ტერმინალს ბრძანების სტრიქონის გარსის გასაშვებად. ის მოგაწოდებთ ბრძანების სტრიქონის ინტერფეისს, რომლითაც შეგიძლიათ თქვენი კომპიუტერი პირდაპირ აკონტროლოთ.

        Konsole은 흔히 터미널, 혹은 셸이라고 불리는 X 터미널 에뮬레이터입니다. 텍스트 창에서 컴퓨터를 직접 재현하는 명령행 인터페이스를 재현합니다.

        @@ -129,13 +139,13 @@

        O Konsole é um emulador de terminal para executar uma linha de comandos. Ele oferece uma interface de linha de comandos para controlar diretamente o seu computador.

        Konsolă e un terminal pentru rularea unui interpretor de comenzi. Aceasta oferă o interfață în linie de comandă pentru controlul direct al calculatorului.

        Konsole — терминал для работы в командной оболочке. Konsole предоставляет интерфейс командной строки для непосредственного взаимодействия с компьютером.

        +

        Konsole इति आदेश-शेल् चालयितुं टर्मिनल् अस्ति । एतत् भवतः सङ्गणकस्य प्रत्यक्षनियन्त्रणार्थं आदेशपङ्क्ति-अन्तरफलकं प्रदाति ।

        Konsole je emulátor terminálu, často sa označuje ako terminál alebo shell. Emuluje rozhranie príkazového riadku v textovom okne.

        Konsole je posnemovalnik terminala, kjer teče ukazni jezik shell. Nudi vam ukazno vrstico, kjer lahko neposredno upravljate vaš računalnik.

        Terminal är en terminal för att köra ett kommandoskal. Det tillhandahåller ett kommandoradsgränssnitt för att direkt styra datorn.

        கான்சோல், முனைய இடைமுகப்பை இயக்கும் செயலி ஆகும். உங்கள் கணினி நீங்கள் நேரடியாக கட்டுப்படுத்த இது உதவும்.

        Konsole, komut kabukları çalıştırmak için kullanılan bir uçbirimdir. Bilgisayarınızı doğrudan denetlemek için bir komut satırı arabirimi sağlar.

        Konsole — це термінал для роботи з командною оболонкою. За її допомогою можна отримати доступ до інтерфейсу командного рядка для керування вашим комп'ютером.

        -

        xxKonsole is a terminal to run a command shell. It provides a command line interface for directly controlling your computer.xx

        Konsole 是一款用于运行命令 Shell 的终端程序。它提供了直接控制计算机的命令行接口。

        Konsole 是個用於執行指令 shell 的終端機。其提供能直接操作電腦的指令行介面。

        Features:

        @@ -179,6 +189,7 @@

        Funcionalidades:

        Caracteristici:

        Возможности:

        +

        गुणाः:

        Funkcie:

        Zmožnosti:

        Могућности:

        @@ -189,7 +200,6 @@

        அம்சங்கள்:

        Özellikler:

        Можливості:

        -

        xxFeatures:xx

        功能特性:

        功能:

          @@ -234,6 +244,7 @@
        • Abas
        • File
        • Вкладки
        • +
        • टब्स्
        • Karty
        • Zavihki
        • језичци
        • @@ -244,7 +255,6 @@
        • கீற்றுகள்
        • Sekmeler
        • Вкладки.
        • -
        • xxTabsxx
        • 标签页
        • 分頁
        • Multiple profiles
        • @@ -271,7 +281,7 @@
        • Profilos multiple
        • Beberapa profil
        • Multiplic profiles
        • -
        • Margir prófílar
        • +
        • Mörg notendasnið
        • Profili multipli
        • სხვადასხვა პროფაილები
        • 다중 프로필
        • @@ -287,6 +297,7 @@
        • Vários perfis
        • Profiluri multiple
        • Выбор профиля
        • +
        • अनेकाः प्रोफाइलाः
        • Viacnásobné profily.
        • Več profilov
        • вишеструки профили
        • @@ -297,7 +308,6 @@
        • பல பயன்முறைகள்
        • Çoklu profiller
        • Підтримка роботи з декількома профілями.
        • -
        • xxMultiple profilesxx
        • 多个配置文件
        • 多重設定檔
        • Silence and Activity monitoring
        • @@ -339,6 +349,7 @@
        • Monitoramento do silêncio e atividade
        • Monitorizarea liniștii și activității
        • Отслеживание активности и простоя
        • +
        • मौन एवं गतिविधिनिरीक्षण
        • Monitorovanie ticha a aktivity
        • Nadzorovanje dejavnosti in nedejavnosti
        • надзирање тишине и активности
        • @@ -349,7 +360,6 @@
        • செயல்பாடு மற்றும் அமைதிக்காக கண்காணித்தல்
        • Sessizlik ve Etkinlik izleme
        • Спостереження за бездіяльністю та діями.
        • -
        • xxSilence and Activity monitoringxx
        • 静止和活动监视
        • 靜音與活動監控
        • Bookmark support
        • @@ -362,7 +372,7 @@
        • Podpora záložek
        • Understøttelse af bogmærker
        • Lesezeichen-Unterstützung
        • -
        • υποστήριξη σελιδοδεικτών
        • +
        • Υποστήριξη σελιδοδεικτών
        • Bookmark support
        • Legomarksubteno
        • Uso de marcadores
        • @@ -391,6 +401,7 @@
        • Suporte para favoritos
        • Suport pentru semne de carte
        • Закладки
        • +
        • बुकमार्क समर्थनम्
        • Podpora záložiek
        • Podpora zaznamkom
        • обележивачи
        • @@ -401,7 +412,6 @@
        • நினைவுக்குறிக்கான ஆதரவு
        • Yer imi desteği
        • Підтримка закладок.
        • -
        • xxBookmark supportxx
        • 书签支持
        • 書籤支援
        • Searching
        • @@ -444,6 +454,7 @@
        • Pesquisa
        • Căutare
        • Поиск
        • +
        • अन्वेषणम्
        • Hľadanie
        • Iskanje
        • претрага
        • @@ -454,7 +465,6 @@
        • தேடல்
        • Arama
        • Пошук.
        • -
        • xxSearchingxx
        • 搜索
        • 搜尋
        • Saving output
        • @@ -481,7 +491,7 @@
        • Salveguardante exito
        • Penyimpanan keluaran
        • Gardation de production
        • -
        • Vista úttak
        • +
        • Vista frálag
        • Salvataggio del risultato
        • გამოტანის შენახვა
        • 출력 저장
        • @@ -497,6 +507,7 @@
        • Gravação do resultado
        • Salvarea datelor de ieșire
        • Сохранение вывода
        • +
        • उत्पादनस्य रक्षणम्
        • Ukladanie výstupu
        • Shranjevanje izhoda
        • уписивање излаза
        • @@ -507,7 +518,6 @@
        • வெளியீட்டை சேமிப்பது
        • Çıktıyı kaydetme
        • Збереження виведених даних.
        • -
        • xxSaving outputxx
        • 保存输出
        • 儲存輸出
        @@ -559,13 +569,13 @@ Konsole sendo usado como emulador de terminal Konsola fiind folosită ca emulator de terminal Konsole является эмулятором терминала. + Konsole इत्यस्य उपयोगः टर्मिनल् एमुलेटर् इत्यस्य रूपेण क्रियते Konsole používaný ako emulátor terminálu. Program Konsole, ko je uporabljen kot posnemovalnik terminala Terminal används som en terminalemulator. முனையக் கருவியாக கான்சோல் பயன்படுத்தப்படுவது Konsole uçbirim öykünücüsü olarak kullanılırken Konsole використовується як емулятор термінала - xxKonsole being used as a terminal emulatorxx Konsole 作为终端仿真器使用 Konsole 是一款使用中的終端模擬器 @@ -576,6 +586,26 @@ konsole-devel_AT_kde.org + + + + + + + + + + + + + + + + + + + + diff --git a/local/recipes/kde/konsole/source/desktop/org.kde.konsole.desktop b/local/recipes/kde/konsole/source/desktop/org.kde.konsole.desktop index 041c721dfa..5041473dba 100755 --- a/local/recipes/kde/konsole/source/desktop/org.kde.konsole.desktop +++ b/local/recipes/kde/konsole/source/desktop/org.kde.konsole.desktop @@ -17,14 +17,16 @@ Keywords[be]=тэрмінал;кансоль;сцэнар;запусціць;в Keywords[be@latin]=terminal;kansoĺ;scenar;zapuscić;vykanać;zahad;zahadny radok;cli;bash;sh;abalonka;zsh;cmd;pacviardžennie zahadu Keywords[bg]=терминал,конзола,скрипт,изпълнение,команда,команден ред Keywords[ca]=terminal;consola;script;executar;ordre;línia d'ordres;línia ordres;cli;bash;sh;shell;zsh;cmd;indicador d'ordres -Keywords[ca@valencia]=terminal;consola;script;executar;ordre;línia d'ordres;línia ordres;cli;bash;sh;shell;zsh;cmd;indicatiu d'ordres +Keywords[ca@valencia]=terminal;consola;script;executar;ordre;línia d'ordres;línia ordres;cli;bash;sh;shell;zsh;cmd;indicador d'ordres +Keywords[de]=Terminal;Konsole;Skript;ausführen;Befehl;Befehlszeile;Befehlseingabe;cli;bash;sh;shell;zsh;cmd;Eingabeaufforderung Keywords[el]=τερματικό;κονσόλα;σενάριο;εκτελείται;εκτέλεση;εντολή;γραμμή-εντολών;commandline;cli;bash;sh;shell;zsh;cmd;σύμβολο αναμονής για εντολή Keywords[en_GB]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt Keywords[eo]=terminalo;konzolo;skripto;ruli;lanĉi;komando;komandlinio;komandolinio;cli;bash;sh;shell;ŝelo;zsh;cmd;komandinvito Keywords[es]=terminal;consola;script;guion;guión;lanzar;ejecutar;comando;orden;línea de órdenes;línea de comandos;cli;bash;sh;shell;intérprete;zsh;cmd;introducción de órdenes Keywords[eu]=terminala;kontsola;gidoia;ibili;exekutatu;komandoa;komando-lerroa;cli;bash;sh;shell;oskola;zsh;cmd;komando-gonbita Keywords[fi]=pääte;konsoli;skripti;komentojono;aja;suorita;komento;komentorivi;cli;bash;sh;shell;komentotulkki;zsh;komentokehote;kehote -Keywords[fr]=terminal ; console ; script ; lancer ; exécuter ;commande ; commande en ligne ; cli ; bash ; sh ; shell ; zsh ; invite de commandes +Keywords[fr]=terminal;console;script;lancer;exécuter;commande;commande en ligne;cli;bash;sh;shell;zsh;cmd;invite de commandes +Keywords[ga]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt Keywords[gl]=terminal;consola;script;executar;orde;comando;liña de ordes;liña de comandos;cli;bash;sh;shell;intérprete de ordes;intérprete;zsh;cmd Keywords[he]=מסוף;מסופון;סקריפט;תסריט;הפעלה;שיגור;הזנקה;הרצה;שורת פקודה;באש;בש;שאל;של Keywords[hu]=terminál;konzol;szkript;futtatás;végrehajtás;parancs;parancssor;parancssor;cli;bash;sh;shell;zsh;cmd;parancsértelmező @@ -32,6 +34,7 @@ Keywords[ia]=terminal;console;script;run;executa;commando;linea-de-commando;line Keywords[id]=terminal;konsol;skrip;jalan;jalankan;perintah;baris perintah;baris-perintah;cli;bash;sh;shell;zsh;cmd;prompt perintah Keywords[is]=skjáhermir;hermir;skrifta;keyra;ræsa;skipun;skipana-lína;skipanalína;skl;bash;sh;shell;zsh;cmd;skel Keywords[it]=terminale;console;script;esegui;comando;riga di comando;cli;bash;sh;shell;zsh;cmd;prompt dei comandi +Keywords[ja]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt;ターミナル;コンソール;スクリプト;実行;コマンド;コマンドライン;CLI;シェル;コマンドプロンプト Keywords[ka]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt Keywords[ko]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt;터미널;콘솔;스크립트;실행;명령;명령줄;명령행;명령 프롬프트; Keywords[lv]=terminālis;konsole;skripts;palaist;izpildīt;komanda;komandrinda;cli;bash;sh;čaula;zsh;cmd;komandu uzvedne @@ -43,13 +46,14 @@ Keywords[pt]=terminal;consola;programa;executar;comando;linha de comandos;cli;ba Keywords[pt_BR]=terminal;console;script;executar;rodar;comando;linha de comando;cli;bash;sh;shell;zsh;cmd;prompt de comando Keywords[ro]=terminal;consolă;script;rulează;execută;comandă;linie de comandă;bash;sh;interpretor;zsh;cmd;prompt comandă Keywords[ru]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt;терминал;консоль;сценарий;запустить;выполнить;команда;командная строка;оболочка +Keywords[sa]=टर्मिनल;कंसोल;स्क्रिप्ट;रन;निष्पादन;आदेश;आदेश-पङ्क्ति;आदेशपङ्क्ति;cli;bash;sh;शेल;zsh;cmd;आदेशप्रॉम्प्ट Keywords[sk]=terminál;konzola;skript;spustiť;vykonať;príkaz;príkazový riadok;príkazový riadok;cli;bash;sh;shell;zsh;cmd;príkazový riadok Keywords[sl]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;ukazni poziv Keywords[sv]=terminal;konsoll;skript;köra;kommando;kommandorad;bash;sh;skal;zsh;cmd;kommandoprompt Keywords[ta]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt; முனையம்; கான்சோல்; சிறுநிரல்; நிரல்; இயக்கு; கட்டளை; ஆணை; கட்டளை வரி +Keywords[th]=เทอร์มินัล;คอนโซล;สคริป;เรียกใช้;คำสั่่ง;บรรทัดคำสั่ง;cli;bash;sh;เชลล์;zsh;cmd;พร้อมท์คำสั่ง Keywords[tr]=uçbirim;terminal;konsol;betik;yürüt;komut;komut-satırı;komut satırı;cli;bash;sh;kabuk;shell;zsh;cmd;komut istemi;çalıştır;yürüt;run;execute;cmd;command Keywords[uk]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt;термінал;консоль;скрипт;сценарій;виконати;запустити;команда;командний рядок;клі;командний інтерфейс;баш;оболонка;шел;зш;кмд;командний запит -Keywords[x-test]=xxterminalxx;xxconsolexx;xxscriptxx;xxrunxx;xxexecutexx;xxcommandxx;xxcommand-linexx;xxcommandlinexx;xxclixx;xxbashxx;xxshxx;xxshellxx;xxzshxx;xxcmdxx;xxcommand promptxx Keywords[zh_CN]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;终端;控制台;脚本;执行;运行;命令;命令行;命令行界面;外壳;命令行提示;zhongduan;kongzhitai;jiaoben;zhixing;yunxing;mingling;minglinghang;minglinghangjiemian;minglinghangtishi Keywords[zh_TW]=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt @@ -122,6 +126,7 @@ Name[pt]=Konsole Name[pt_BR]=Konsole Name[ro]=Konsolă Name[ru]=Konsole +Name[sa]=सान्त्वनम् Name[se]=Konsolla Name[si]=කන්සෝල් Name[sk]=Konsole @@ -134,7 +139,7 @@ Name[sv]=Terminal Name[ta]=கான்சோல் Name[te]=కాన్సోల్ Name[tg]=Консол -Name[th]=คอนโซล-K +Name[th]=Konsole Name[tr]=Konsole Name[ug]=Konsole Name[uk]=Konsole @@ -143,7 +148,6 @@ Name[uz@cyrillic]=Konsole Name[vi]=Konsole Name[wa]=Konsole Name[xh]=Konsole -Name[x-test]=xxKonsolexx Name[zh_CN]=Konsole 终端 Name[zh_TW]=Konsole @@ -212,6 +216,7 @@ GenericName[pt]=Terminal GenericName[pt_BR]=Terminal GenericName[ro]=Terminal GenericName[ru]=Терминал +GenericName[sa]=टर्मिनल् GenericName[se]=Terminal GenericName[si]=අග්‍රය GenericName[sk]=Terminál @@ -231,7 +236,6 @@ GenericName[uk]=Термінал GenericName[uz]=Terminal GenericName[uz@cyrillic]=Терминал GenericName[wa]=Terminå -GenericName[x-test]=xxTerminalxx GenericName[zh_CN]=终端 GenericName[zh_TW]=終端機 @@ -255,6 +259,7 @@ Comment[eu]=Komando-lerrora sarbidea Comment[fa]=دسترسی خط فرمان Comment[fi]=Pääsy komentoriville Comment[fr]=Ligne de commande +Comment[ga]=Rochtain líne ordaithe Comment[gl]=Acceso á liña de ordes. Comment[he]=גישה דרך שורת פקודה Comment[hu]=Parancssori hozzáférés @@ -262,6 +267,7 @@ Comment[ia]=Accesso a linea de commando Comment[id]=Akses baris perintah Comment[is]=Aðgangur með skipanalínu Comment[it]=Accesso alla riga di comando +Comment[ja]=コマンドラインアクセス Comment[ka]=ბრძანების სტრიქონთან წვდომა Comment[ko]=명령행 접근 Comment[lv]=Komandrindas piekļuve @@ -274,6 +280,7 @@ Comment[pt]=Acesso à linha de comandos Comment[pt_BR]=Acesso à linha de comandos Comment[ro]=Acces în linie de comandă Comment[ru]=Доступ к командной строке +Comment[sa]=आदेशपङ्क्तिप्रवेशः Comment[sk]=Prístup na príkazový riadok Comment[sl]=Dostop do ukazne vrstice Comment[sr]=Приступ командној линији @@ -284,7 +291,6 @@ Comment[sv]=Åtkomst till kommandorad Comment[ta]=கட்டளை வரியை அணுக உதவும் Comment[tr]=Komut satırı erişimi Comment[uk]=Доступ до командного рядка -Comment[x-test]=xxCommand line accessxx Comment[zh_CN]=命令行访问 Comment[zh_TW]=指令列 @@ -310,6 +316,7 @@ Name[eu]=Ireki leiho berri bat Name[fa]=باز کردن یک پنجره جدید Name[fi]=Avaa uusi ikkuna Name[fr]=Ouvrir une nouvelle fenêtre +Name[ga]=Oscail Fuinneog Nua Name[gl]=Abrir unha xanela nova Name[he]=פתיחת חלון חדש Name[hu]=Új ablak megnyitása @@ -317,6 +324,7 @@ Name[ia]=Aperi un nove fenestra Name[id]=Buka Jendela Baru Name[is]=Opna nýjan glugga Name[it]=Apri in una nuova finestra +Name[ja]=新しいウィンドウを開く Name[ka]=ახალ ფანჯრის გახსნა Name[ko]=새 창 열기 Name[lt]=Atverti naujame lange @@ -331,6 +339,7 @@ Name[pt]=Abrir uma Nova Janela Name[pt_BR]=Abre uma nova janela Name[ro]=Deschide o fereastră nouă Name[ru]=Открыть новое окно +Name[sa]=एकं New Window उद्घाटयन्तु Name[sk]=Otvoriť nové okno Name[sl]=Odpri novo okno Name[sr]=Отвори нови прозор @@ -339,9 +348,9 @@ Name[sr@ijekavianlatin]=Otvori novi prozor Name[sr@latin]=Otvori novi prozor Name[sv]=Öppna ett nytt fönster Name[ta]=புதிய சாளரத்தை திற +Name[th]=เปิดหน้าต่างใหม่ Name[tr]=Yeni Pencere Aç Name[uk]=Відкрити нове вікно -Name[x-test]=xxOpen a New Windowxx Name[zh_CN]=打开新窗口 Name[zh_TW]=開啟新視窗 Icon=window-new @@ -368,6 +377,7 @@ Name[eu]=Ireki fitxa berri bat Name[fa]=باز کردن یک برگه جدید Name[fi]=Avaa uusi välilehti Name[fr]=Ouvrir un nouvel onglet +Name[ga]=Oscail Cluaisín Nua Name[gl]=Abrir un novo separador Name[he]=פתיחת לשונית חדשה Name[hu]=Új lap megnyitása @@ -375,6 +385,7 @@ Name[ia]=Aperi un nove scheda Name[id]=Buka sebuah Tab Baru Name[is]=Opna nýjan flipa Name[it]=Apri in una nuova scheda +Name[ja]=新しいタブを開く Name[ka]=ახალი ჩანართის გახსნა Name[ko]=새 탭 열기 Name[lv]=Atvērt jaunu cilni @@ -387,6 +398,7 @@ Name[pt]=Abrir uma Nova Página Name[pt_BR]=Abre uma nova aba Name[ro]=Deschide o filă nouă Name[ru]=Открыть новую вкладку +Name[sa]=एकं New Tab उद्घाटयन्तु Name[sk]=Otvoriť novú kartu Name[sl]=Odpri nov zavihek Name[sr]=Отвори нови језичак @@ -395,9 +407,9 @@ Name[sr@ijekavianlatin]=Otvori novi jezičak Name[sr@latin]=Otvori novi jezičak Name[sv]=Öppna en ny flik Name[ta]=புதிய கீற்றை திற +Name[th]=เปิดแท็บใหม่ Name[tr]=Yeni Sekme Aç Name[uk]=Відкрити нову вкладку -Name[x-test]=xxOpen a New Tabxx Name[zh_CN]=打开新的标签页 Name[zh_TW]=開啟新分頁 Icon=tab-new diff --git a/local/recipes/kde/konsole/source/desktop/sessionui.rc b/local/recipes/kde/konsole/source/desktop/sessionui.rc index 614a8553b1..0ebca1d1d2 100644 --- a/local/recipes/kde/konsole/source/desktop/sessionui.rc +++ b/local/recipes/kde/konsole/source/desktop/sessionui.rc @@ -1,10 +1,12 @@ - + + + diff --git a/local/recipes/kde/konsole/source/desktop/terminalemulator.desktop b/local/recipes/kde/konsole/source/desktop/terminalemulator.desktop index 5cfcc83ea2..f561663480 100644 --- a/local/recipes/kde/konsole/source/desktop/terminalemulator.desktop +++ b/local/recipes/kde/konsole/source/desktop/terminalemulator.desktop @@ -70,6 +70,7 @@ Name[pt]=Emulador de Terminal Name[pt_BR]=Emulador de Terminal Name[ro]=Emulator de terminal Name[ru]=Эмулятор терминала +Name[sa]=टर्मिनल एमुलेटर Name[se]=Terminálemuláhtor Name[si]=අග්‍ර අනුකාරක Name[sk]=Emulátor terminálu @@ -91,7 +92,6 @@ Name[uz@cyrillic]=Терминал эмулятори Name[vi]=Mô phỏng thiết bị cuối Name[wa]=Programes terminås Name[xh]=Umzami kulinganisela ngokulinganayo Wendlela yesiphelo -Name[x-test]=xxTerminal Emulatorxx Name[zh_CN]=终端仿真器 Name[zh_TW]=終端機模擬程式 @@ -115,6 +115,7 @@ Comment[eu]=Komando-lerrora sarbidea Comment[fa]=دسترسی خط فرمان Comment[fi]=Pääsy komentoriville Comment[fr]=Ligne de commande +Comment[ga]=Rochtain líne ordaithe Comment[gl]=Acceso á liña de ordes. Comment[he]=גישה דרך שורת פקודה Comment[hu]=Parancssori hozzáférés @@ -122,6 +123,7 @@ Comment[ia]=Accesso a linea de commando Comment[id]=Akses baris perintah Comment[is]=Aðgangur með skipanalínu Comment[it]=Accesso alla riga di comando +Comment[ja]=コマンドラインアクセス Comment[ka]=ბრძანების სტრიქონთან წვდომა Comment[ko]=명령행 접근 Comment[lv]=Komandrindas piekļuve @@ -134,6 +136,7 @@ Comment[pt]=Acesso à linha de comandos Comment[pt_BR]=Acesso à linha de comandos Comment[ro]=Acces în linie de comandă Comment[ru]=Доступ к командной строке +Comment[sa]=आदेशपङ्क्तिप्रवेशः Comment[sk]=Prístup na príkazový riadok Comment[sl]=Dostop do ukazne vrstice Comment[sr]=Приступ командној линији @@ -144,6 +147,5 @@ Comment[sv]=Åtkomst till kommandorad Comment[ta]=கட்டளை வரியை அணுக உதவும் Comment[tr]=Komut satırı erişimi Comment[uk]=Доступ до командного рядка -Comment[x-test]=xxCommand line accessxx Comment[zh_CN]=命令行访问 Comment[zh_TW]=指令列 diff --git a/local/recipes/kde/konsole/source/kconf_update/CMakeLists.txt b/local/recipes/kde/konsole/source/kconf_update/CMakeLists.txt deleted file mode 100644 index 1ce6db6f39..0000000000 --- a/local/recipes/kde/konsole/source/kconf_update/CMakeLists.txt +++ /dev/null @@ -1,20 +0,0 @@ -add_executable(konsole_globalaccel - konsole_globalaccel.cpp -) - -target_link_libraries(konsole_globalaccel PRIVATE - KF6::ConfigCore - KF6::GlobalAccel - KF6::Service -) - -add_executable(konsole_show_menubar konsole_show_menubar.cpp ../data/data.qrc ../desktop/konsole.qrc) - -target_link_libraries(konsole_show_menubar - KF6::XmlGui - KF6::CoreAddons -) - -install(FILES konsole.upd DESTINATION ${KDE_INSTALL_KCONFUPDATEDIR}) -install(PROGRAMS konsole_add_hamburgermenu_to_toolbar.sh DESTINATION ${KDE_INSTALL_KCONFUPDATEDIR}) -install(TARGETS konsole_globalaccel konsole_show_menubar DESTINATION ${KDE_INSTALL_LIBDIR}/kconf_update_bin) diff --git a/local/recipes/kde/konsole/source/kconf_update/konsole.upd b/local/recipes/kde/konsole/source/kconf_update/konsole.upd deleted file mode 100644 index 3ee6de5212..0000000000 --- a/local/recipes/kde/konsole/source/kconf_update/konsole.upd +++ /dev/null @@ -1,9 +0,0 @@ -Version=5 - -Id=konsole_globalaccel -File=khotkeysrc -Script=konsole_globalaccel - -Id=add-hamburgermenu-to-toolbar -Script=konsole_add_hamburgermenu_to_toolbar.sh -Script=konsole_show_menubar diff --git a/local/recipes/kde/konsole/source/kconf_update/konsole_add_hamburgermenu_to_toolbar.sh b/local/recipes/kde/konsole/source/kconf_update/konsole_add_hamburgermenu_to_toolbar.sh deleted file mode 100755 index e728716e00..0000000000 --- a/local/recipes/kde/konsole/source/kconf_update/konsole_add_hamburgermenu_to_toolbar.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -if [ -z "$XDG_DATA_HOME" ]; then - XDG_DATA_HOME="$HOME/.local/share" -fi - -sed --regexp-extended --null-data --in-place ' -s/()/\1\n\2/ -' \ -${XDG_DATA_HOME}/kxmlgui5/konsole/sessionui.rc diff --git a/local/recipes/kde/konsole/source/kconf_update/konsole_globalaccel.cpp b/local/recipes/kde/konsole/source/kconf_update/konsole_globalaccel.cpp deleted file mode 100644 index ebd1272456..0000000000 --- a/local/recipes/kde/konsole/source/kconf_update/konsole_globalaccel.cpp +++ /dev/null @@ -1,81 +0,0 @@ -/* - SPDX-FileCopyrightText: 2022 Vlad Zahorodnii - - SPDX-License-Identifier: GPL-2.0-or-later -*/ -#include -#include -#include - -#include -#include -#include -#include - -#include - -static void migrateShortcut(const QString &desktopFile, const QList &shortcuts) -{ - const KService::Ptr service = KService::serviceByStorageId(desktopFile); - QAction action(service->name()); - action.setProperty("componentName", desktopFile); - action.setProperty("componentDisplayName", service->name()); - action.setObjectName(QStringLiteral("_launch")); - // Tell kglobalaccel that the action is active. - KGlobalAccel::self()->setShortcut(&action, shortcuts); - action.setProperty("isConfigurationAction", true); - KGlobalAccel::self()->setShortcut(&action, shortcuts, KGlobalAccel::NoAutoloading); -} - -int main(int argc, char **argv) -{ - QCoreApplication app(argc, argv); - - KConfig khotkeysrc(QStringLiteral("khotkeysrc"), KConfig::SimpleConfig); - const int dataCount = KConfigGroup(&khotkeysrc, QStringLiteral("Data")).readEntry("DataCount", 0); - std::optional kmenueditIndex = std::nullopt; - KConfigGroup kmenueditGroup; - for (int i = 1; i <= dataCount; ++i) { - kmenueditGroup = KConfigGroup(&khotkeysrc, QStringLiteral("Data_%1").arg(i)); - if (kmenueditGroup.readEntry("Name") == QLatin1String("KMenuEdit")) { - kmenueditIndex = i; - break; - } - } - if (!kmenueditIndex.has_value()) { - return 0; - } - - const int shortcutCount = kmenueditGroup.readEntry("DataCount", 0); - for (int i = 1; i <= shortcutCount; ++i) { - const QString groupName = QStringLiteral("Data_%1_%2").arg(kmenueditIndex.value()).arg(i); - if (KConfigGroup(&khotkeysrc, groupName).readEntry("Type") == QLatin1String("MENUENTRY_SHORTCUT_ACTION_DATA")) { - const QString desktopFile = KConfigGroup(&khotkeysrc, groupName + QStringLiteral("Actions0")).readEntry("CommandURL"); - if (desktopFile == QLatin1String("org.kde.konsole.desktop")) { - const QString shortcutId = KConfigGroup(&khotkeysrc, groupName + QStringLiteral("Triggers0")).readEntry("Uuid"); - const QList shortcuts = KGlobalAccel::self()->globalShortcut(QStringLiteral("khotkeys"), shortcutId); - - // Unset old shortcut. setShortcut() is needed to make the action active. - QAction action; - action.setObjectName(shortcutId); - action.setProperty("componentName", QStringLiteral("khotkeys")); - KGlobalAccel::self()->setShortcut(&action, {}); - KGlobalAccel::self()->removeAllShortcuts(&action); - - // Migrate to kglobalaccel. - migrateShortcut(desktopFile, shortcuts); - - // khotkeys will automagically update the DataCount key. - khotkeysrc.deleteGroup(groupName); - khotkeysrc.deleteGroup(groupName + QStringLiteral("Actions")); - khotkeysrc.deleteGroup(groupName + QStringLiteral("Actions0")); - khotkeysrc.deleteGroup(groupName + QStringLiteral("Conditions")); - khotkeysrc.deleteGroup(groupName + QStringLiteral("Triggers")); - khotkeysrc.deleteGroup(groupName + QStringLiteral("Triggers0")); - } - } - } - - khotkeysrc.sync(); - return 0; -} diff --git a/local/recipes/kde/konsole/source/kconf_update/konsole_show_menubar.cpp b/local/recipes/kde/konsole/source/kconf_update/konsole_show_menubar.cpp deleted file mode 100644 index 88a5897142..0000000000 --- a/local/recipes/kde/konsole/source/kconf_update/konsole_show_menubar.cpp +++ /dev/null @@ -1,31 +0,0 @@ -/* - SPDX-FileCopyrightText: 2022 Andrey Butirsky - SPDX-License-Identifier: GPL-2.0-or-later - - Keeps Menu Bar enabled if user has hidden a Session Toolbar thus no Hamburger Menu button is shown -*/ - -#include -#include -#include -#include -#include -#include -#include - -int main (int argc, char *argv[]) -{ - QApplication app(argc, argv); - - KAboutData::setApplicationData(KAboutData(QStringLiteral("konsole"))); - - KXmlGuiWindow mainWindow; - mainWindow.setupGUI(KXmlGuiWindow::Default, QStringLiteral("sessionui.rc")); - - static const char menuBarKey[] = "MenuBar"; - // SimpleConfig so that system-wide default won't interfere and hasKey() indicates user defined setting - if (auto cg = KSharedConfig::openConfig(QStringLiteral("konsolerc"), KConfig::OpenFlag::SimpleConfig)->group(QStringLiteral("MainWindow")); - !cg.hasKey(menuBarKey) && mainWindow.menuBar()->isHidden() && mainWindow.toolBar(QStringLiteral("sessionToolbar"))->isHidden()) { - cg.writeEntry(menuBarKey, "Enabled"); - } -} diff --git a/local/recipes/kde/konsole/source/po/af/konsole.po b/local/recipes/kde/konsole/source/po/af/konsole.po index 79d2d13239..ce3e4d17f6 100644 --- a/local/recipes/kde/konsole/source/po/af/konsole.po +++ b/local/recipes/kde/konsole/source/po/af/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole stable\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2005-11-29 11:30+0200\n" "Last-Translator: Frikkie Thirion \n" "Language-Team: AFRIKAANS \n" @@ -50,7 +50,7 @@ msgstr "Grootte" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "Doen nie vertoon rolstaaf" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -169,47 +169,59 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List available session profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Lys beskikbare sessie profiel" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -217,7 +229,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -225,14 +237,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments for 'command'" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumente vir 'command'" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "transparency" msgctxt "@item" @@ -253,199 +265,199 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background" msgstr "deursigtigheid" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "deursigtigheid" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "deursigtigheid" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "deursigtigheid" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "deursigtigheid" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Vim Kleure" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -709,6 +721,38 @@ msgstr "Bokant" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Standaard Konsole" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -755,7 +799,7 @@ msgstr "" msgid "Copy Location" msgstr "Plak Verkiesing" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -787,13 +831,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Kies oortjie kleur..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -832,17 +876,17 @@ msgstr "Toemaak Opstelling" msgid "Output" msgstr "Stoor Geskiedenis" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -850,7 +894,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -884,228 +928,228 @@ msgstr "" msgid "Output:" msgstr "Stoor Geskiedenis" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Maak toe Terminaal Emulasie" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Maak toe Terminaal Emulasie" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "fout regmaak" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris ondersteun en werk op geskiedenis" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "fout regmaak en verbeteringe" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1115,13 +1159,13 @@ msgstr "" "gedeeltelikke\n" "Nutsbalk en sessie name" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1129,25 +1173,25 @@ msgid "" "General improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1155,141 +1199,141 @@ msgid "" "General improvements" msgstr "fout regmaak en verbeteringe" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "skema en keuse verbeteringe" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Sgi Poort" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Freebsd poort" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Maak toe huidige sessie" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Maak toe huidige sessie" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nuwe Venster" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Tolk na Boekmerk" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "List available session profiles" msgid "&Window Color Scheme" msgstr "Lys beskikbare sessie profiel" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Stoor Sessies Profiel..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Aktiveer Kieslys" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Beweeg Sessie Links" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1298,71 +1342,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Maak toe huidige sessie" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Stoor Sessies Profiel..." -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format #| msgid "Tab &Options" msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Oortjie en Opsies" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1448,7 +1492,7 @@ msgstr "Grootte" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1460,27 +1504,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1520,7 +1564,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1576,11 +1620,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1639,93 +1683,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Grootte Opstelling" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "List available session profiles" msgid "Delete selected entry" @@ -1927,25 +1971,25 @@ msgstr "Oortjie en Opsies" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Drukker vriendelik modus (swart teks, geen agtergrond)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default profile" @@ -2008,17 +2052,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Stoor Geskiedenis" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Nie moontlik na skryf na lêer." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2054,513 +2120,538 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Groen op Swart" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux Kleure" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Wit op Swart" -#: schemas.cpp:10 +#: schemas.cpp:11 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized" msgstr "Solaris" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized Light" msgstr "Solaris" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Wit op Swart" -#: schemas.cpp:13 +#: schemas.cpp:14 #, fuzzy, kde-format #| msgid "XTerm (XFree 4.x.x)" msgid "Default (XFree 4)" msgstr "Xterm (Xfree 4.x.x)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, fuzzy, kde-format #| msgid "linux console" msgid "Linux console" msgstr "linux konsole" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, fuzzy, kde-format #| msgid "linux console" msgid "Solaris console" msgstr "linux konsole" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Maak skoon Geskiedenis" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Klok in sessie '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Kon nie stoor geskiedenis." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Stilte in Sessie '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Nuwe Sessie" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Session '%1' exited unexpectedly." msgid "Program '%1' crashed." msgstr "Sessie '%1' uitgegaan onverwags." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format #| msgid "Session '%1' exited with status %2." msgid "Program '%1' exited with status %2." msgstr "Sessie '%1' uitgegaan met status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem Vordering" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktiwiteit in sessie '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Soektog string '%1' nie gevind." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Choice of Shortcut Keys" msgid "Configure Web Shortcuts..." msgstr "Keuse van Kortpad Sleutels" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "Maak toe Sessie" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format msgid "Copy" msgstr "Bokant" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Left-Right" msgstr "Verklein Skrif tipe" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Top-Bottom" msgstr "Verklein Skrif tipe" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Plak Verkiesing" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "&Select All" msgstr "Kies..." -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Mode" msgstr "Kies..." -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Line" msgstr "Kies..." -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "Stoor Geskiedenis" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "Stoor Geskiedenis" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Druk Skerm..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Adjust Scrollback..." msgstr "Stoor Sessies Profiel..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Do not display scrollbar" msgid "Clear Scrollback" msgstr "Doen nie vertoon rolstaaf" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear &History" msgid "Clear Scrollback and Reset" msgstr "Maak skoon Geskiedenis" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Next Profile" msgstr "Stoor Sessies Profiel..." -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgid "Previous Profile" msgstr "Soek Vorige" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Switch Profile" msgstr "Stoor Sessies Profiel..." -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Set &Encoding" msgstr "Enkodering" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Configure or Rename Tab..." msgstr "Termineer Opdrag" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "Select &Tab Color..." msgid "&Select Tabs..." msgstr "Kies oortjie kleur..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "Geen" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Modem Oplaai..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Monitor vir Aktiwiteit" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitor vir Aktiwiteit" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitor vir Stilte" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Monitor vir Aktiwiteit" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Vergroot Skrif tipe" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgid "&Shrink Font" msgid "Shrink Font" msgstr "Verklein Skrif tipe" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "Stuur Sein" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Suspendeer Opdrag" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Gaan voort Opdrag" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Ophang" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Interrupt Opdrag" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Terminate Task" msgstr "Termineer Opdrag" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Stop Opdrag" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Gebruiker Sein 1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Gebruiker Sein 2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile..." msgstr "Stoor Sessies Profiel..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Current Profile..." msgstr "Stoor Sessies Profiel..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:button" msgid "Close Program" msgstr "Maak toe huidige sessie" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "Modem Oplaai..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

        A ZModem file transfer attempt has been detected, but no suitable " @@ -2575,7 +2666,7 @@ msgstr "" "ZModem sagteware is gevind op die stelsel.\n" "

        Jy mag dalk wens om te installeer die 'rzsz' of 'lrzsz' pakkette.\n" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, fuzzy, kde-format #| msgid "" #| "

        The current session already has a ZModem file transfer in progress." @@ -2583,7 +2674,7 @@ msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "

        Die huidige sessie alreeds het 'n ZModem lêer oordrag in vordering." -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

        No suitable ZModem software was found on the system.\n" @@ -2595,7 +2686,7 @@ msgstr "" "

        Geen geskikte ZModem sagteware was gevind op die stelsel.\n" "

        Jy mag wens om te installeer die 'rzsz' of 'lrzsz' pakkette.\n" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, fuzzy, kde-format #| msgid "Select Files to Upload" msgid "Select Files for ZModem Upload" @@ -2621,148 +2712,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Stel die venster titel" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "As gewone uitdrukking" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" -msgstr "Maak toe Sessie" +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Stel die venster titel" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgid "Force new tabs" +msgstr "Afgeleë Sessie" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "Stelsel Inkennisstelling" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "Maak toe Sessie" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "As gewone uitdrukking" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2787,72 +2905,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "Maak toe Sessie" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2860,91 +3016,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2956,26 +3118,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3141,107 +3301,126 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Geen" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Close the current session" +msgid "Show Search Tabs button:" +msgstr "Maak toe huidige sessie" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Close the current session" msgid "Show 'New Tab' button" msgstr "Maak toe huidige sessie" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close the current session" msgid "After current &tab" msgstr "Maak toe huidige sessie" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Splits" msgstr "Verklein Skrif tipe" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format msgid "Show Header:" msgstr "Wegsteek Kieslysbalk" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "&Bell" msgctxt "@option:radio Small height/width of splitter widget" @@ -3249,21 +3428,21 @@ msgid "Small" msgstr "Klok" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3316,8 +3495,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3357,96 +3536,96 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Grootte: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, fuzzy, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Is jy seker jy wil die huidige sessie toemaak?" msgstr[1] "Is jy seker jy wil die huidige sessie toemaak?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Plak Verkiesing" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "Verander werk gids na 'dir'" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Plak Verkiesing" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Verklein Skrif tipe" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Maak toe huidige sessie" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Maak toe huidige sessie" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Maak toe huidige sessie" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Soek Vorige" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Maak toe Terminaal Emulasie" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Maak toe Terminaal Emulasie" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Maak toe Terminaal Emulasie" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Maak toe Terminaal Emulasie" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Wissel na Oortjie 1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "M&ove Session Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Beweeg Sessie Regterkant" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Beweeg Sessie Links" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Wissel na Oortjie 1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic hints " msgstr "Woord Verbinders" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line numbers " msgstr "Nommer van lyne: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Beweeg Sessie Links" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3731,7 +3924,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3739,13 +3932,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3842,29 +4035,41 @@ msgstr "Enkodering" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line Numbers:" msgstr "Nommer van lyne: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3901,7 +4106,7 @@ msgstr "Lys beskikbare sessie profiel" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, fuzzy, kde-format msgid "Edit..." @@ -3957,12 +4162,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4083,31 +4294,46 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "Aktiveer" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Aktiveer Kieslys" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "New &Window" msgid "Window:" msgstr "Nuwe Venster" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4115,25 +4341,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "VIM Colors" msgctxt "Border color options" @@ -4141,27 +4367,27 @@ msgid "Color:" msgstr "Vim Kleure" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "Terminaal grootte is vas" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "Terminaal grootte is vas" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@title:group" @@ -4169,95 +4395,95 @@ msgid "Terminal contents" msgstr "Termineer Opdrag" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "Lyn Spasiëring" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4265,43 +4491,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4309,99 +4535,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile" msgstr "Stoor Sessies Profiel..." -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, fuzzy, kde-format #| msgid "Sc&rollbar" msgid "Scrolling" msgstr "Rolstaaf" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "Sleutelbord" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Key bindings" msgstr "Enkodering" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4410,13 +4636,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4427,19 +4653,19 @@ msgstr "" "'n lêer met hierdie naam alreeds bestaan.\n" "Doen jy wil hê na oorskryf dit?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Editing profile: %2" @@ -4447,19 +4673,25 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "Stoor Sessies Profiel..." msgstr[1] "Stoor Sessies Profiel..." -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile" msgstr "Stoor Sessies Profiel..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile \"%1\"" msgstr "Stoor Sessies Profiel..." -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "N&one" +msgid "None" +msgstr "Geen" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4469,7 +4701,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4479,46 +4711,46 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "Stelsel Klok" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "Stelsel Inkennisstelling" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "Sigbare Klok" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "List available session profiles" msgid "Default profile for new terminal sessions in %1" msgstr "Lys beskikbare sessie profiel" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4526,43 +4758,43 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format msgid "Get New..." msgstr "Nuwe " -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default for file type" msgstr "Stoor Sessies Profiel..." -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4579,7 +4811,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4669,27 +4901,54 @@ msgstr "Verander werk gids na 'dir'" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "Terminaal grootte is vas" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4699,33 +4958,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminal bell mode:" msgstr "Maak toe Terminaal Emulasie" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic Integration" msgstr "Woord Verbinders" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4735,9 +4994,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4748,9 +5007,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4761,35 +5020,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "transparency" msgid "Red error background:" msgstr "deursigtigheid" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "transparency" msgid "Alternating background:" @@ -5132,50 +5391,93 @@ msgid "Scrollback:" msgstr "Doen nie vertoon rolstaaf" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "&Hide" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Steek weg" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab &Options" -msgid "Scrollbar position:" -msgstr "Oortjie en Opsies" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "&Right" msgctxt "@option:radio Show scrollbar on the right side" @@ -5183,66 +5485,35 @@ msgid "Ri&ght side" msgstr "Regterkant" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "&Hide" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Steek weg" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab &Options" +msgid "Scrollbar position:" +msgstr "Oortjie en Opsies" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5345,121 +5616,121 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "Geen" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find" msgctxt "@label:textbox" msgid "Find..." msgstr "Soek" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Find" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Soek" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Soek Vorige" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Maak toe Sessie" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Maak toe Sessie" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Maak toe Sessie" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "As gewone uitdrukking" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5471,7 +5742,7 @@ msgstr "" msgid "Print Shell" msgstr "Druk opskrif" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@label:listbox No color selected" @@ -5511,6 +5782,12 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Vim Kleure" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +msgid "&Activity Tab Color:" +msgstr "Kies oortjie kleur..." + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgctxt "NAME OF TRANSLATORS" @@ -5622,41 +5899,54 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Herstel && Maak skoon Terminaal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Afgeleë Sessie" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Afgeleë Sessie" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Maak toe huidige sessie" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Afgeleë Sessie" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Termineer Opdrag" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Maak toe huidige sessie" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Maak toe Sessie" + #, fuzzy #~| msgid "N&one" #~ msgctxt "Do not save any lines to the scrollback history" @@ -5954,11 +6244,6 @@ msgstr "Maak toe huidige sessie" #~ msgid "&Detach View" #~ msgstr "Afgeleë Sessie" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "Maak skoon Geskiedenis" - #, fuzzy #~| msgid "Find Pre&vious" #~ msgid "Find Previous" @@ -5972,10 +6257,6 @@ msgstr "Maak toe huidige sessie" #~ msgid "KWrited - Listening on Device %1" #~ msgstr "KWrited - Luister op Toestel %1" -#, fuzzy -#~ msgid "Select &Tab Color" -#~ msgstr "Kies oortjie kleur..." - #, fuzzy #~| msgid "Transparent, Dark Background" #~ msgid "Enable transparent backgrounds" @@ -6565,9 +6846,6 @@ msgstr "Maak toe huidige sessie" #~ msgid "Overwrite" #~ msgstr "Oorskryf" -#~ msgid "Unable to write to file." -#~ msgstr "Nie moontlik na skryf na lêer." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/ar/konsole.po b/local/recipes/kde/konsole/source/po/ar/konsole.po index 953c0d74b4..6f9e50272b 100644 --- a/local/recipes/kde/konsole/source/po/ar/konsole.po +++ b/local/recipes/kde/konsole/source/po/ar/konsole.po @@ -1,7 +1,7 @@ # translation of konsole.po to Arabic # translation of konsole.po to # Copyright (C) 2001,2002, 2004, 2006, 2007, 2008 Free Software Foundation, Inc. -# SPDX-FileCopyrightText: 2008, 2024 zayed +# SPDX-FileCopyrightText: 2008, 2024, 2025, 2026 zayed # Mohammed Gamal , 2001. # Sayed Jaffer Al-Mosawi , 2002. # Isam Bayazidi , 2002. @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-09-05 13:09+0400\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-03-24 10:59+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -24,7 +24,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Lokalize 23.08.5\n" #, kde-format @@ -63,7 +63,7 @@ msgstr "اعرض" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "افصل العرض" @@ -78,7 +78,7 @@ msgstr "الإعدادات" #: ../desktop/konsoleui.rc:54 #, kde-format msgid "Plugins" -msgstr "القوابس" +msgstr "الملحقات" #. i18n: ectx: Menu (help) #: ../desktop/konsoleui.rc:57 @@ -99,7 +99,7 @@ msgid "S&crollback" msgstr "&مرر للخلف" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "شريط أدوات الجلسة" @@ -114,7 +114,7 @@ msgstr "اسم تشكيلة لتستخدمها نسخة كونسول الجدي #, kde-format msgctxt "@info:shell" msgid "json layoutfile to be loaded to use for new Konsole instance" -msgstr "ملف json layoutfile ليتم تحميله لاستخدامه لنسخة كونسول جديدة" +msgstr "ملف json layoutfile لم يُحمل لاستخدامه لنسخة كونسول جديدة" #: Application.cpp:55 #, kde-format @@ -132,7 +132,7 @@ msgstr "ضع دليل عمل مبدئي للسان الجديد أو الناف #, kde-format msgctxt "@info:shell" msgid "Do not close the initial session automatically when it ends." -msgstr "لا تغلق الجلسة الابتدائية آلية عندما تنتهي." +msgstr "لا تغلق الجلسة الابتدائية آليّة عندما تنتهي." #: Application.cpp:61 #, kde-format @@ -170,57 +170,69 @@ msgstr "نفِّذ في عملية منفصلة" #, kde-format msgctxt "@info:shell" msgid "Show the menubar, overriding the default setting" -msgstr "أظهر شريط القوائم، متجاوزًا الإعداد الافتراضي" +msgstr "أظهر شريط القوائم، متجاوزًا الإعداد المبدئي" #: Application.cpp:67 #, kde-format msgctxt "@info:shell" msgid "Hide the menubar, overriding the default setting" -msgstr "أخفِ شريط القوائم، متجاوزًا الإعداد الافتراضي" +msgstr "أخفِ شريط القوائم، متجاوزًا الإعداد المبدئي" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" -msgstr "أظهر شريط الألسنة، متجاوزًا الإعداد الافتراضي" +msgid "Show all the toolbars, overriding the default setting" +msgstr "أظهر كل أشرطة الأدوات، متجاوزًا الإعداد المبدئي" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" -msgstr "أخفِ شريط الألسنة، متجاوزًا الإعداد الافتراضي" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "أخفِ كل أشرطة الأدوات، متجاوزًا الإعداد المبدئي" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "أظهر شريط الألسنة، متجاوزًا الإعداد المبدئي" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "أخفِ شريط الألسنة، متجاوزًا الإعداد المبدئي" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "ابدأ كونسول في وضع ملء الشاشة" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." -msgstr "عطل الخلفية الشفافة ، حتى ولو كان النظام يدعمها." +msgstr "عطل الخلفية الشفافة، حتى ولو كان النظام يدعمها." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "قائمة التشكيلات المتوفرة" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "اعرض لائحة بكل أسماء خصائص الأوضاع وأنواعها (لتستخدم مع p-)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "غير قيمة خاصية تشكلية." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,23 +242,23 @@ msgstr "" "الأمر للتنفيذ. سيلتقط هذا الخيار كل المعامِلات اللاحقة، لذا استخدمه كخيار " "أخير." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" "Force re-using the existing instance even if it breaks functionality, e. g. " "--new-tab. Mostly for debugging." msgstr "" -"فرض إعادة استخدام المثيل الحالي حتى إذا ضيعت الوظائف، على سبيل المثال.‏--new-" +"فرض إعادة استخدام النسخة الحالية حتى لو ضيعت الوظائف، على سبيل المثال.‏--new-" "tab. في الغالب من أجل التنقيح. " -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "المعاملات الممررة إلى أمر" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -264,157 +276,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "الأمامية" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "الخلفية" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "اللون 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "اللون 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "اللون 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "اللون 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "اللون 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "اللون 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "اللون 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "اللون 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "الأمامية (مكثف)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "الخلفية (مكثف)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "اللون 1 (مكثف)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "اللون 2 (مكثف)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "اللون 3 (مكثف)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "اللون 4 (مكثف)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "اللون 5 (مكثف)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "اللون 6 (مكثف)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "اللون 7 (مكثف)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "اللون 8 (مكثف)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "الأمامية (باهتة)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "الخلفية (باهتة)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "اللون 1 (باهت)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "اللون 2 (باهت)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "اللون 3 (باهت)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "اللون 4 (باهت)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "اللون 5 (باهت)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "اللون 6 (باهت)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "اللون 7 (باهت)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "اللون 8 (باهت)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -451,8 +463,8 @@ msgid "" "The background transparency setting will not be used because your desktop " "does not appear to support transparent windows." msgstr "" -"لن يتم استخدام إعدادات الخلفية الشفافة بسبب أن سطح مكتبك لا يدعم النوافذ " -"الشفافة فيما يبدو." +"لن تُستخدم إعدادات الخلفية الشفافة بسبب أن سطح مكتبك لا يدعم النوافذ الشفافة " +"فيما يبدو." #: colorscheme/ColorSchemeEditor.cpp:188 #, kde-format @@ -512,9 +524,9 @@ msgid "" "settings.\n" "To see any effect, set colors with saturation value greater than 0." msgstr "" -"تختار قيم تدرج اللون والتشبع للألوان الافتراضية للمقدمة والخلفية بشكل " -"عشوائي. قد تستخدم بعض تشكيلات الألوان إعدادات عشوائية. \n" -"لمشاهدة أي تأثير ، اضبط الألوان بقيمة تشبع أكبر من 0 ." +"تختار قيم تدرج اللون والتشبع للألوان المبدئية للمقدمة والخلفية بشكل عشوائي. " +"قد تستخدم بعض تشكيلات الألوان إعدادات عشوائية. \n" +"لمشاهدة أي تأثير، اضبط الألوان بقيمة تشبع أكبر من 0 ." #. i18n: ectx: property (text), widget (QCheckBox, randomizedBackgroundCheck) #: colorscheme/ColorSchemeEditor.ui:53 @@ -596,7 +608,7 @@ msgstr "ممدد" #: colorscheme/ColorSchemeEditor.ui:183 #, kde-format msgid "Crop" -msgstr "مقتص" +msgstr "اقتصّ" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:188 @@ -608,7 +620,7 @@ msgstr "متكيف" #: colorscheme/ColorSchemeEditor.ui:193 #, kde-format msgid "NoScaling" -msgstr "بدون تكبير" +msgstr "بلا تكبير" #. i18n: ectx: property (text), widget (QLabel, wallpaperFlipLabel) #: colorscheme/ColorSchemeEditor.ui:205 @@ -620,7 +632,7 @@ msgstr "عكس الخلفية:" #: colorscheme/ColorSchemeEditor.ui:213 #, kde-format msgid "NoFlip" -msgstr "بدون عكس" +msgstr "بلا عكس" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:218 @@ -632,7 +644,7 @@ msgstr "أفقي" #: colorscheme/ColorSchemeEditor.ui:223 #, kde-format msgid "Vertical" -msgstr "رأسي" +msgstr "عمودي" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:228 @@ -669,6 +681,38 @@ msgstr "أعلى" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "المضيف" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "الحاويات غير متاحة عندما يكون كونسول يعمل داخل Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [المبدئي]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "صندوق الأدوات" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -705,7 +749,7 @@ msgid "" "Could not open file with the text editor specified in the profile settings;\n" "it will be opened with the system default editor." msgstr "" -"تعذر فتح الملف باستخدام محرر النصوص المحدد في إعدادات ملف التشكيلة ؛ \n" +"تعذر فتح الملف باستخدام محرر النصوص المحدد في إعدادات ملف التشكيلة؛ \n" "سيفتح باستخدام محرر النظام المبدئي." #: filterHotSpots/FileFilterHotspot.cpp:172 @@ -713,7 +757,7 @@ msgstr "" msgid "Copy Location" msgstr "انسخ المكان" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "يولد مصغرات" @@ -744,13 +788,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "اختر خط" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "اعرض كلّ الخطوط" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -758,9 +802,9 @@ msgid "" "equal width (monospace). Any non monospaced font may cause display issues. " "This should not be necessary except in rare cases." msgstr "" -"يتطلب البرنامج الطرفي ، بحكم طبيعته ، أحرف خط متساوية العرض (مسافة أحادية). " -"قد يتسبب أي خط غير أحادي المسافة في حدوث مشكلات في العرض.لا ينبغي أن يكون " -"هذا ضروريًا إلا في حالات نادرة." +"يتطلب البرنامج الطرفي، بحكم طبيعته، أحرف خط متساوية العرض (مسافة أحادية). قد " +"يتسبب أي خط غير أحادي المسافة في حدوث مشكلات في العرض.لا ينبغي أن يكون هذا " +"ضروريًا إلا في حالات نادرة." #: HistorySizeDialog.cpp:25 #, kde-format @@ -790,17 +834,17 @@ msgstr "مجموعة مفاتيح" msgid "Output" msgstr "المخرجات" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "قائمة مفاتيح ربط جديدة" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "حرر قائمة مفاتيح ربط" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "لا يمكن حفظ تشكيلة روابط المفاتيح مع وصف فارغ." @@ -808,7 +852,7 @@ msgstr "لا يمكن حفظ تشكيلة روابط المفاتيح مع وص #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -842,225 +886,225 @@ msgstr "المدخلات:" msgid "Output:" msgstr "الناتج:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "كونسول" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "محاكي الطرفية" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, مطوري كونسول" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "المشرف العام، إصلاح علل وتحسينات عامة" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "المدير السابق، نُقِلَت إلى كِيدِي 4." -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "المؤلّف الأصلي" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" -msgstr "Ahmad Samir" +msgstr "أحمد سمير" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "إعادة هيكلة كبرى وإصلاحات أخطاء وتحسينات كبيرة " -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "إصلاح علل وتحسينات عامة" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "إصلاح علل وتحسينات كبيرة" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "تحسينات عامة" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "إصلاح العلل" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" -msgstr "Stephan Kulow" +msgstr "ستيفن كولو" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" -msgstr "دعم سولاريس والتاريخ" +msgstr "النقل إلى نظام سولاريس وميزة التاريخ" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" -msgstr "Alexander Neundorf" +msgstr "ألكسندر نيوندورف" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "إصلاح علل و تحسين أداء البدء" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "تحسينات التأشير" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1070,13 +1114,13 @@ msgstr "" "كونسول المدمج\n" "أسماء شريط الأدوات و الجلسات" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" -msgstr "David Faure" +msgstr "ديفيد فور" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1086,25 +1130,25 @@ msgstr "" "كونسول المدمج\n" "تحسينات عامة" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "تأثيرات مرئية" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" -msgstr "Matthias Ettrich" +msgstr "ماتياس إتريش" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1114,132 +1158,132 @@ msgstr "" "شفرة من مشروع kvt\n" "تحسينات عامة" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" -msgstr "تحسينات في المخططات و إنتقاء النص" +msgstr "تحسينات في المخططات و تحديد النص" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" -msgstr "Dan Pilone" +msgstr "دان بيلوني" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "النقل إلى SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" -msgstr "Kevin Street" +msgstr "كيفن ستريت" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "النقل إلى FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" -msgstr "Sven Fischer" +msgstr "سفين فيشر" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" -msgstr "Martin Jones" +msgstr "مارتن جونز" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "والشكر موصول إلى آخرين.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "لسان &جديد" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "استنس&خ اللسان" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&نافذة جديدة" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "أغلق النافذة" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "ال&علامات" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&نسق ألوان جديد" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "أدر التشكيلات..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "القائمة الفعالة" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "احفظ تخطيط الألسنة…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "حمّل تخطيط الألسن…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1258,67 +1302,67 @@ msgstr[4] "" msgstr[5] "" "هناك %1 عملية ما زالت تعمل في هذه النافذة، هل أنت متأكد أنك تريد الخروج؟" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "أكد الغلق" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "أغلق ال&نافذة" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "أ&غلق اللسان الحالي" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" -msgstr "يوجد %1 طرفيات مفتوحة ، هل أنت متأكد أنك تريد الخروج؟" +msgstr "يوجد %1 طرفيات مفتوحة، هل أنت متأكد أنك تريد الخروج؟" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "التّشكيلات" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "عام" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "الذاكرة" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "شريط اللسان / فواصل" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "الملفّات المؤقّتة" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "المصغّرات" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1402,7 +1446,7 @@ msgstr "احفظ" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "حدّث" @@ -1414,27 +1458,27 @@ msgid "Cancel" msgstr "ألغِ" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "الأوامر السريعة" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "أظهر الوصول السريع" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "لم يعثر على أوامر سريعة. يمكنك إضافة واحدة من ملحقات -> أوامر سريعة" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "ملحقات - الأوامر السريعة" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "أظهر الأوامر السريعة" @@ -1476,7 +1520,7 @@ msgstr "" "مع العديد من الإعدادات، أما زلت متأكّد؟" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "أنت على وشك حذف %1، هل أنت متأكّد؟" @@ -1529,11 +1573,11 @@ msgid "%1 is a folder for SSH entries" msgstr "‏%1 هو مجلد لمدخلات SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "ضبط SSH" @@ -1592,24 +1636,24 @@ msgid "" msgstr "لا يمكن إصدار أمرر SSH خارج تطبيق الصدفة (مثل bash و zsh و sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "مفتاح SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "احذف" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "لا تغيير" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1618,68 +1662,68 @@ msgstr "" "أنت على وشك حذف المجلد %1 \n" "يحوي المجلد على ملفات ضبط متعددة لـ SSH، أما زلت متأكّد؟" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "احذف إعدادات SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "تشكيلة SSH مستورد
        بعض الإعدادات للقراءة فقط." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "اسم المضيف مفقود" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "الاسم مفقود" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." -msgstr "إذا عُيّن استخدام Ssh Config ، فلا تحدد مفتاح ssh أو اسم المستخدم." +msgstr "إذا عُيّن استخدام Ssh Config، فلا تحدد مفتاح ssh أو اسم المستخدم." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "يجب على الأقل كتابة اسم المستخدم أو مفتاح SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "المجلد مفقود" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "جلسة SSH يجب أن تملك تشكيلة" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "تعذر حذف هذا المجلد" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "احذف المجلد وجميع محتوياته" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "انقر مزدوجًا لتغيير اسم المجلد" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." -msgstr "لا يمكنك حذف مدخلة مضافة آليا." +msgstr "لا يمكنك حذف مدخلة مضافة آليّا." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "احذف المدخلة المحددة" @@ -1749,7 +1793,7 @@ msgstr "المنفذ" #: plugins/SSHManager/sshwidget.ui:123 #, kde-format msgid "The port of the server, 22 is the default for ssh connections" -msgstr "منفذ الخادوم، 22 هو المنفذ المبدئي لاتصالات ssh" +msgstr "منفذ الخادم، 22 هو المنفذ المبدئي لاتصالات ssh" #. i18n: ectx: property (text), widget (QLineEdit, port) #: plugins/SSHManager/sshwidget.ui:126 @@ -1776,8 +1820,8 @@ msgid "" "If this is set, we don't rely on the SSH key set above, but on the " "configuration on ~/.ssh/config" msgstr "" -"إذا مكنت هذه ؛ فلن نعتمد على مفتاح SSH المعين في الأعلى، لكن سنعتمد على " -"الضبط الموجود في ‎~/.ssh/config" +"إذا مكنت هذه؛ فلن نعتمد على مفتاح SSH المعين في الأعلى، لكن سنعتمد على الضبط " +"الموجود في ‎~/.ssh/config" #. i18n: ectx: property (text), widget (QCheckBox, useSshConfig) #: plugins/SSHManager/sshwidget.ui:170 @@ -1871,28 +1915,28 @@ msgstr "خيارات الإخراج" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" -msgstr "نمط الا&قتصادي (كتابة بالأسود ، لا خلفية )" +msgstr "نمط الا&قتصادي (كتابة بالأسود، لا خلفية )" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&حجّم المخرجات" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "المضمّنة" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" -msgstr "التشكيلة الافتراضية" +msgstr "التشكيلة المبدئية" #: profile/ProfileManager.cpp:280 #, kde-format @@ -1948,17 +1992,38 @@ msgstr "انقر مزدوجًا لتغيير الاختصار" msgid "Tab Properties" msgstr "خصائص اللسان" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "احفظ مخرجات من %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." -msgstr "العنوان %1 غير صالح ، لا يمكن حفظ المخرجات." +msgstr "العنوان %1 غير صالح، لا يمكن حفظ المخرجات." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "فشل في إنشاء ملف الحفظ الآليّ في %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "إيقاف الحفظ الآليّ بسبب تبديل الشاشات." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "عُدل ملف الحفظ الآليّ خارجيًا، مما يمنع عمليات الحفظ الآليّ الإضافية." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "فشل في تحديث حالة الحفظ الآليّ لتغييرات الإخراج." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1994,81 +2059,98 @@ msgstr "النسيم" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "كامبل" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "بستيلات غامقة" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "أخضر على أسود" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "ألوان لينكس" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "أحمر على أسود" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "شمسي" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "ضوء شمسي" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "أبيض على أسود" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" -msgstr "افتراضي (XFree 4)" +msgstr "مبدئي (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "لوحة تحكم لينكس" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "ماك اوس" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "لوحة تحكم سولاريز" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "ابحث..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "أدخل اسم اللسان لتبحث عنه هنا" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "جرس في '%1' ( الجلسة '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "لا يمكن إيجاد الملف التنفيذي:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "تحذير:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "لا يمكن إيجاد محارة تفاعلية ليبدأ بها." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2077,412 +2159,416 @@ msgstr "" "لا يمكن إيجاد '%1', سيبدأ بـ '%2' عوضا عن ذلك. رجاءا تأكد من إعدادات " "التشكيلة." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "لا يمكن بدء البرنامج '%1' بالمعاملات '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "سكوت في '%1' (الجلسة '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "اعرض الجلسة" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"استخدمت طريقة D-Bus sendText / runCommand للتو. هناك مخاوف أمنية بشأن السماح " -"بأن تكون هذه الأساليب عامة. إذا رغبت في ذلك ، يمكن تغيير هذه الطرق إلى " -"الاستخدام الداخلي فقط عن طريق إعادة تجميع كونسول.

        سيظهر هذا التحذير مرة " -"واحدة فقط لمثيل كونسول هذا.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "انتهى" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "انهار البرنامج '%1' ." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "البرنامج '%1' خرج بالحالة %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "تقدّم ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "نشاط في '%1' (الجلسة '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "عُطّلت واجهة برمجة التطبيقات DBus الحساسة للأمن في الإعدادات." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "كونسول" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "انتهت العملية '%1' من العمل في الجلسة '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "لا يعرف كونسول كيف يفتح العلامة: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "ابحث عن '%1' بـ" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "اضبط اختصارات الوِب..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "أ&غلق الجلسة" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "افتح مدير الملفات" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "انسخ" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "افصل العرض يمين-يسار" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "افصل العرض فوق-تحت" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "انسخ ماعدا المطالبات" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "انسخ دخْل المستخدم" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "انسخ خرج الأمر" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "ألصق المحدد" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "بحث الوِب" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "ا&ختر الكل" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&نمط التحديد" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "انتقِ &خطًّا" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "احفظ ال&مخرجات كـ ..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "احفظ المخرجات آليّا كـ..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "أوقف الحفظ آليّ" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "ا&طبع الشاشة..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "اضبط التمرير الخلفي..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" -msgstr "امسح التمرير الخلفي" +msgstr "امحُ التمرير الخلفي" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" -msgstr "امح التمرير الخلفي و أعد الضبط" +msgstr "امحُ التمرير الخلفي و صفّر" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "التّشكيلة التّالية" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "التّشكيلة السّابقة" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "بدِّل الوَضع" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" -msgstr "عيّن ال&تشفير" +msgstr "عيّن ال&ترميز" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "مكّن تتبع الفأرة" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "للقراءة فقط" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "ا&ضبط أو أعد تسمية لسان..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&جميع الألسنة في النافذة الحالية" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "ا&ختر الألسنة..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&لا شيء" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "انسخ المدخلات إلى " -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&رفع ZModem ..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "شاشات طلقة واحدة" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "الشاشة لل&محث" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "راقب الن&شاط" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "مراقبة الس&كون" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "راقب لانتهاء العملية" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "كبّر الخط" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "قلص الخط" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "صفّر حجم الخط" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "أرسل إشارة" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&علّق المهمة" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&تابع المهمة" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "ا&فصل" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "قا&طع المهمة" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "أ&نهِ المهمة" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "ا&قتل المهمة" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "إشارة المستخدم &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "إشارة المستخدم &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "أنشئ تشكيلة جديدة..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "حرّر التشكيلة الحالية..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "يوجد برنامج يعمل الآن في هذه الجلسة. هل أنت متأكد أنك تريد إغلاقها؟" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "البرنامج '%1' يعمل حاليا في هذه الجلسة. أمتأكد أنك تريد إغلاقها؟" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "أكد الغلق" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "أغلق البرنامج" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "يوجد برنامج في هذه الجلسة لن يموت. هل أنت متأكد أنك تريد قتلها بالقوة؟" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" -msgstr "البرنامج '%1' لن يموت في هذه الجلسة. أمتأكد أنك تريد إغلاقها؟" +msgstr "" +"لن يتوقف البرنامج '%1' في هذه الجلسة. هل أنت متأكد من أنك تريد إيقافه بالقوة؟" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "اقتل البرنامج" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "محث الصدفة معروض في الجلسة '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "افتح المجلد الحالي بـ" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "احفظ تحميل ZModem إلى ..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " "software was found on this system.

        You may wish to install the 'rzsz' " "or 'lrzsz' package.

        " msgstr "" -"

        اكتشفت محالة لنقل ملف ZModem ؛ ولكن لا يوجد برنامج ZModem مناسب في " -"النظام.

        قد ترغب في تثبيت حزمة 'rzsz' أو 'lrzsz' .

        " +"

        اكتشفت محالة لنقل ملف ZModem؛ ولكن لا يوجد برنامج ZModem مناسب في النظام." +"

        قد ترغب في تثبيت حزمة 'rzsz' أو 'lrzsz' .

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " -msgstr "

        الجلسة الحالية تحوي على عملية نقل ملف ZModem بالفعل.

        " +msgstr "

        الجلسة الحالية تحوي على عملية نقل ملف ZModem فعلًا.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2491,7 +2577,7 @@ msgstr "" "

        لا يوجد برنامج ZModem مناسب في النظام.

        قد ترغب في تثبيت حزمة " "'rzsz' أو 'lrzsz' .

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "اختر ملفات لرفع ZModem" @@ -2514,149 +2600,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "اضبط" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "ابحث:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "مكّن مسرّعات القوائم" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "إذا كان مفعَّلاً، فسيتم تجاهل إعدادات الوَضع" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "تذكر حجم النافذة" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "أظهر عنوان النافذة في شريط العنوان" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "ركّز على الطّرفيّات عند تحرّك مؤشّر الفأرة فوقها" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "طابق باستخدام التعابير النمطية" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" -msgstr "عند بدء تشغيل كونسول ، أعد استخدام العملية الحالية إن أمكن" +msgstr "عند بدء تشغيل كونسول، أعد استخدام العملية الحالية إن أمكن" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "شغّل كل نوافذ كونسول على عملية واحدة" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "أبرز كل المتطابقات" +msgid "If enabled, profile settings will be ignored" +msgstr "إذا كان ممكناً؛ فسيُتجاهل إعدادات التشكيلة" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "اختر إذا ما كانت حالة الأحرف حساسة" +msgid "Remember window size" +msgstr "تذكر حجم النافذة" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "حسّاس لحالة الأحرف" +msgid "Force new tabs" +msgstr "افرض ألسنة جديدة" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "أزل إطار النافذة و شريط العنوان" +msgid "Listen for ZModem terminal codes" +msgstr "استمع إلى رموز طرفية ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "العملية والنافذة:" +msgid "Show progress in taskbar" +msgstr "أظهر التقدم في شريط المهام" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" -msgstr "الإخطارات:" - -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "سيتم عرض كل الحوارات مرة أخرى" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "فعِّل كل نوافذ \"لا تسأل مجدّدًا" +msgstr "الإشعارات:" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "حدِّد ما إذا كان يجب بدء البحث من الأسفل" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "ابحث بالعكس" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "اختر إذا ما كانت حالة الأحرف حساسة" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "حسّاس لحالة الأحرف" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "العملية والنافذة:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "أبرز كل المتطابقات" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "ابحث:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "حدِّد ما إذا كان يجب أن يتوقف البحث بدلاً من الالتفاف" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "دون لف" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "مكّن مسرّعات القوائم" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "ركّز على الطّرفيّات عند تحرّك مؤشّر الفأرة فوقها" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "ستُعرض كل الحوارات مرة أخرى" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "فعِّل كل نوافذ \"لا تسأل مجدّدًا" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "أظهر عنوان النافذة في شريط العنوان" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "مكّن الأجزاء الحساسة أمنياً من واجهة برمجة تطبيقات DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "أزل إطار النافذة و شريط العنوان" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "طابق باستخدام التعابير النمطية" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format msgid "Show window title set by escape sequence on the titlebar" -msgstr "أظهر عنوان النافذة الذي تم تعيينه بواسطة تسلسل الهروب على شريط العنوان" +msgstr "أظهر عنوان النافذة الذي المعين بواسطة تسلسل الهروب على شريط العنوان" #. i18n: ectx: tooltip, entry (AllowMenuAccelerators), group (KonsoleWindow) #: settings/konsole.kcfg:23 @@ -2676,73 +2788,111 @@ msgstr "استخدم حجم النافذة الحالية عند بدء التش msgid "The window size will be saved upon exiting Konsole" msgstr "سيُحفَظ حجم النافذة عند الخروج من كونسول" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"عند تشغيل كونسول، أنشئ لسان جديد بدلاً من إنشاء نوافذ جديدة إن أمكن ذلك." + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "أظهر التقدم في شريط المهام" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "عندما يبلغ البرنامج النصي عن تقدمه، سيظهر ذلك في شريط المهام." + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "ستمكّن واجهة برمجة التطبيقات DBus مثل runCommand" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "استمع إلى رموز طرفية ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "إرسال/استقبال الملفات آلياً عبر الاتصالات التسلسلية" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "عرض المصغرة" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "تحدد عرض المصغرة" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "استخدم Shift لعرض المصغرة" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "استخدم Alt لعرض المصغرة" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "استخدم Ctrl لعرض المصغرة" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "البحث حساس لحالة الأحرف" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "أبرز كل متطابقات البحث" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "اختر إذا ما كنت تريد إبراز النص المتطابق" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "سيتوقف البحث عوضا عن اللف" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" -"التحكم فيما إذا كان سينشئ مجموعات التحكم الفرعية cgroups لعلامات التبويب " -"الفردية" +"التحكم فيما إذا كان سينشئ مجموعات التحكم الفرعية cgroups للألسنة المفردة" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2750,94 +2900,100 @@ msgstr "يحدد مستوى استهلاك الذاكرة الذي سيبدأ ا #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "تحكم بعرض شريط الألسنة بأكمله" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "تحكم في حجم المقبض بين الألواح" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "تحكّم في موقع شريط الألسنة" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "تحكم بالشكل المرئي لشريط الألسنة" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" -msgstr "استخدم ملف .css معرّف من قبل المستخدم لشريط علامات التبويب" +msgstr "استخدم ملف .css مُعرّف من قبل المستخدم لشريط الألسنة" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "ملف css. الذي سيُستخدَم لشكل شريط الألسنة" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "اسمح بالنقر الأوسط على الألسنة المفتوحة لإغلاقها" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "تحكم برؤية زر 'لسان جديد' على شريط الألسنة" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "تحكم برؤية زر 'ابحث في الألسنة' على شريط الألسنة" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "تحكم في مكان عرض زر \"إغلاق لسان\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "تحكم بمكان وضع اللسان الجديد" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "وسع عرض اللسان" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" -msgstr "بالنسبة لملفات التمرير ، استخدم موقع المجلد على مستوى النظام" +msgstr "بالنسبة لملفات التمرير، استخدم موقع المجلد على مستوى النظام" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" -msgstr "بالنسبة لملفات التمرير ، استخدم موقع خاص بالمستخدم" +msgstr "بالنسبة لملفات التمرير، استخدم موقع خاص بالمستخدم" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" -msgstr "بالنسبة لملفات التمرير ، استخدم موقع مجلد مخصص" +msgstr "بالنسبة لملفات التمرير، استخدم موقع مجلد مخصص" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" -msgstr "بالنسبة لملفات التمرير ، استخدم هذا المجلد" +msgstr "بالنسبة لملفات التمرير، استخدم هذا المجلد" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 @@ -2846,34 +3002,30 @@ msgid "Enable memory monitoring:" msgstr "فعل مراقبة الذاكرة:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "ستصبح التغييرات سارية المفعول عند إعادة التشغيل. في حالة التمكين، سيؤدي " -"استهلاك الذاكرة\n" -" المستمر بواسطة كونسول الذي يتجاوز القيمة المحددة إلى قيام systemd-oomd " -"بإزالة اللسان (الألسنة) \n" -"التي تحتوي على العملية (العمليات) كثيفة الاستهلاك للذاكرة. ملاحظة: قد يؤدي " -"التمكين إلى حدوث تباطؤ\n" -" أكبر أثناء الاستهلاك العالي للذاكرة، وقد يؤدي تحديد قيم منخفضة للغاية\n" -" إلى إيقاف تشغيل وحدة التحكم." +"استهلاك الذاكرة المستمر بواسطة كونسول الذي يتجاوز القيمة المحددة إلى قيام " +"systemd-oomd بإزالة اللسان (الألسنة) التي تحتوي على العملية (العمليات) كثيفة " +"الاستهلاك للذاكرة. ملاحظة: قد يؤدي التمكين إلى حدوث تباطؤ أكبر أثناء " +"الاستهلاك العالي للذاكرة، وقد يؤدي تحديد قيم منخفضة للغاية إلى إيقاف تشغيل " +"وحدة التحكم." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "حدّ الذّاكرة:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " م.بايت" @@ -2937,13 +3089,13 @@ msgstr "أ&زل" #: settings/ProfileSettings.ui:90 #, kde-format msgid "Set the selected profile as the default for new terminal sessions" -msgstr "اضبط التشكيلة المحددة على أنها الافتراضية لجلسات الطرفية الجديدة" +msgstr "اضبط التشكيلة المحددة على أنها المبدئية لجلسات الطرفية الجديدة" #. i18n: ectx: property (text), widget (QPushButton, setAsDefaultButton) #: settings/ProfileSettings.ui:93 #, kde-format msgid "&Set as Default" -msgstr "ا&جعلها الافتراضية" +msgstr "ا&جعلها المبدئية" #. i18n: ectx: attribute (title), widget (QWidget, appearanceTab) #: settings/TabBarSettings.ui:39 @@ -3029,127 +3181,145 @@ msgstr "على &شريط الألسنة" #, kde-format msgctxt "Do not show a close button" msgid "None" -msgstr "بدون" +msgstr "لا تعرض" + +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "أظهر زر ابحث في الألسنة:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "دائما" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "البتة" #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "متنوّع:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "أظهر زرّا 'لسان جديد'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "وسّع عرض اللسان المفرد إلى ملء النافذة" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "استخدم صفحة أسلوب معرفة من قبل المستخدم:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(بلا)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "السّلوك" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "ضع الألسنة الجديدة:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "عند ال&نهاية" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "&بعد اللسان الحالي" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "أغلق اللسان بالنقر الأوسط" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "التّجزئات" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "أظهر التّرويسة:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "عند الحاجة" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "أبدًا" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "حجم مقبض السحب:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "صغير" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "متوسط" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "كبير" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3201,12 +3371,12 @@ msgstr "بكسل" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" "

        لتستخدم هذه الميزة، مكن الفأرة->متنوع->تسطير الملفات في إعدادات التشكيلة

        " +"\">الفأرة->متنوع->تسطير الملفات في إعدادات التشكيلة

        " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3244,12 +3414,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "مكّن توليد المصغرات" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "القياس: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3260,83 +3430,83 @@ msgstr[3] "هل أنت متأكد من لصق %1 محارف؟" msgstr[4] "هل أنت متأكد من لصق %1 محرفًا؟" msgstr[5] "هل أنت متأكد من لصق %1 محرف؟" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "تأكيد اللصق" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "نهاية النص/المقاطعة: قد تخرج من العملية الحالية" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "نهاية النقل: قد تخرج من العملية الحالية" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "الجرس: سيحاول إصدار تحذير صوتي" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "مسافة للخلف" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "التحكم بالجهاز الثالثة/XOFF: يعلق الخرج" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "بديل/ معلق: قد يوقف العملية الحالية" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "الهروب: يستخدم للتلاعب بالحالة الطرفية" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "فاصل/ إنهاء الملف: قد يحبط العملية الحالية" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "يحتوي النص الذي تحاول لصقه على أحرف تحكم مخفية، هل تريد تصفيتها؟ " -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "تأكيد اللصق" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" -msgstr "ألصق &بدون أحرف التحكم" +msgstr "ألصق &دون أحرف التحكم" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "ألصق &كل شيء" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "أل&غِ" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
        المخرجات علقت بواسطة ضغط Ctrl+S. اضغط Ctrl+Q للاستئنافها." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "الطرفية للقراءة فقط" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "غيّر ال&دليل إلى" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "أ&لصق المكان" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "افصل العرض" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "افصل العرض يمين/يسار" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "افصل العرض فوق/تحت" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" -msgstr "افصل العرض آلياً" +msgstr "افصل العرض آليّاً" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "افصل العرض يمين/يسار من اللسان التالي" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "افصل العرض فوق/تحت من اللسان التالي" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" -msgstr "افصل العرض آلياً من اللسان التالي" +msgstr "افصل العرض آليّاً من اللسان التالي" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "حمّل لسان جديد بتخطيط طرفيات 2×2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "حمّل لسان جديد بتخطيط طرفيات 2×1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "حمّل لسان جديد بتخطيط طرفيات 1×2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "عرض موسع" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "عرض مقلص" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "افصل ال&عرض الحالي" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ا&فصل اللسان الحالي" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "لسان جديد" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "اللسان السابق" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ركز أعلى الطرفية" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ركز أسفل الطرفية" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "ركز يسار الطرفية" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "ركز يمين الطرفية" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ركز على الطرفية التالية" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ركز على الطرفية السابقة" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "انتقل إلى آخر لسان" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "آخر لسان مستعمل" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "بدّل بين لسانيين" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "آخر لسان مستعمل (معكوس)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "بدّل تكبير العرض الحالي" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "بدّل تكبير العرض الحالي" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "بدّل أقصى تكبير للعرض الحالي" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "بدّل أقصى تكبير للعرض الحالي" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "حرك اللسان لليمين" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "حرك اللسان لليسار" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "ضبط التكامل الدلالي (باش)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "بدّل بين إظهار التلميحات الدلالية" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "بدّل بين عرض أرقام الأسطر" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "حجم متساوي لجميع العروض" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "انتقل إلى اللسان %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "التلميحات الدلالية " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "أرقام الأسطر " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "احفظ تخطيط الألسنة" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "تخطيط عرض كونسول (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3603,7 +3785,7 @@ msgstr "" "حصلت مشكلة أثناء حفظ التخطيط.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3613,13 +3795,13 @@ msgstr "" "حصلت مشكلة أثناء تحميل التخطيط.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "حمّل تخطيط الألسن" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3715,30 +3897,42 @@ msgstr "&ترميز المحارف المبدئي:" #: widgets/EditProfileAdvancedPage.ui:242 #, kde-format msgid "Shortcut for peeking the primary screen:" -msgstr "اختصار لإلقاء نظرة خاطفة على الشاشة الرئيسية:" +msgstr "اختصار لإلقاء نظرة خاطفة على الشاشة الرئيسة:" + +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "عيّن الفاصل الزمني بين الحفظ الآليّ:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " م‌ث" #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 +#: widgets/EditProfileAdvancedPage.ui:275 #, kde-format msgid "Line Numbers:" msgstr "أرقام الأسطر:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "ال&بتة" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "عند عرض تلميحة ال&عنوان" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3774,7 +3968,7 @@ msgstr "حرر المخطط اللوني المحدد" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3790,7 +3984,7 @@ msgstr "احذف المخطط اللوني المحدد" #: widgets/EditProfileAppearancePage.ui:99 #, kde-format msgid "Reset the selected color scheme settings to the default values" -msgstr "أعد تعيين إعدادات تشكيلة الألوان المحددة إلى القيم المبدئية" +msgstr "صفّر إعدادات تشكيلة الألوان المحددة إلى القيم المبدئية" #. i18n: ectx: property (text), widget (QPushButton, resetKeyBindingsButton) #. i18n: ectx: property (text), widget (QPushButton, resetColorSchemeButton) @@ -3828,12 +4022,18 @@ msgstr "ارسم ألوان مكثفة في الخط العريض" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "استخدم الخط المحدد محارف السطر بدلاً من الرمز المدمج" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "استخدم محارف السطر المضمنة في الخط" @@ -3952,29 +4152,43 @@ msgid "Make the cursor blink regularly" msgstr "اجعل المؤشر يومض بانتظام" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "ممكّن" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "التحريك:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "اجعل المؤشر يتحرك بسلاسة" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "متنوّع" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "النافذة:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3982,144 +4196,144 @@ msgid "" msgstr "أظهر حجم الطرفية كأعمدة وصفوف في وسط النافذة بعد تغيير الحجم" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "أظهر تلميح لحجم الطرفية بعد تغيير الحجم" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "دائما اعكس ألوان النص المحدد" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" -msgstr "شدة التقتيم:" +msgstr "شدة التعتيم:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "اللون:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "اختر لون الذي سيرسم به الحد" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "الطرفية الخاملة:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "الطرفية النشطة:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "محتويات الطرفية" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "تباعد الأسطر:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" -msgstr "عدد البكلسات بين كل سطرين" +msgstr "عدد البكسلات بين كل سطرين" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " بكسل" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "الهوامش:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "حاذِ إلى الوسط:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "حدد ما إذا كانت النافذة نشطة عن طريق تعتيم الألوان" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" -msgstr "تقتيم" +msgstr "تعتم" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "حدد ما إذا كانت النافذة نشطة عن طريق رسم حدودها" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "الحدود" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" -msgstr "اعرض سطر رأسي عند العمود:" +msgstr "اعرض سطر عمودي عند العمود:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "

        تخطيط النصوص المعقدة

        " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "تخطيط النصوص المعقدة" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "مكّن عرض النص في نمط الكلمة" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "نمط الكلمة" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4129,43 +4343,43 @@ msgstr "" "العرض)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "استعمل نفس السمات لكامل الكلمة" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "اعرض كلمات محارف أسكي ASCII معا" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "محارف أسكي ASCII" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "اعرض الكلمات النصوص البراهمية معاً" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "محارف الخط البراهمي" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "خط صورة تعبيرية:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4174,96 +4388,96 @@ msgstr "" "مكن عرض ثنائي الاتجاه في الطرفية (صالح للعربية أو الفارسية أو العبرية فقط)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "عرض ثنائي الاتجاه للنص" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" "السطور دائمًا من اليسار إلى اليمين، بدلاً من تحديدها بواسطة الحرف الأول القوي" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "أجبر أن يكون السطر من اليسار إلى اليمين" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "تعامل مع أحرف رسم الجدول على أنها حروف من اليسار إلى اليمين قوية." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "تجاوز وضع أحرف الجدول ثنائي الاتجاه" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "تجاهل wcwidth للمحارف المُشكِلة" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "تجاوز wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "حرر التشكيلة" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "عام" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "الألسنة" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "المظهر" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "التمرير" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "لوحة المفاتيح" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "ارتباطات المفاتيح" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "الفأرة" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "متقدم" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4275,31 +4489,31 @@ msgstr "" "تقوم بتغيير أذونات هذا الملف أو تعيين اسم مختلف لحفظ الإعدادات في تشكيلة " "جديدة." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "اسم التشكيلة كان فارغًا؛ يرجى تعيين اسم لتتمكن من حفظ الإعدادات." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." -msgstr "يوجد تشكيلة باسم \"%1\" بالفعل." +msgstr "يوجد تشكيلة باسم \"%1\" فعلًا." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "اسم التشكيلة تجاوزت الحد الأقصى المسموح (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "المحارف المبرزة غير صالحة في اسم التشكيلات: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4310,17 +4524,22 @@ msgstr[3] "تحرير %1 التشكيلات: %2" msgstr[4] "تحرير %1 تشكيلة: %2" msgstr[5] "تحرير %1 تشكيلة: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "أنشئ تشكيلة جديدة" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "حرر التشكيلة \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "لا شيء" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4334,7 +4553,7 @@ msgstr[3] " أعمدة" msgstr[4] "عمودا" msgstr[5] " عمود" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4348,42 +4567,42 @@ msgstr[3] " صفوف" msgstr[4] " صفا" msgstr[5] " صف" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "جرس النظام" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" -msgstr "إخطارات النّظام" +msgstr "إشعارات النّظام" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "الجرس المرئي" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "تجاهل أحداث الجرس" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" -msgstr "التشكيلة الافتراضية لجلسات الطرفية الجديدة في %1" +msgstr "التشكيلة المبدئية لجلسات الطرفية الجديدة في %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "حرر البيئة" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "متغير بيئة واحد لكل سطر جديد" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4395,23 +4614,23 @@ msgstr[3] " ثوان" msgstr[4] " ثانية" msgstr[5] " ثانية" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "اختر دليل مبدئي" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "احصل على جديد..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "فشل تحميل التشكيلة %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4419,21 +4638,21 @@ msgid "" msgstr "" "هذا المخطط اللوني يستخدم خلفية شفافة والتي لا يدعمها سطح مكتبك فيما يبدو." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -"بدء كونسول قبل أن تُفعّل تأثيرات سطح المكتب. عليك إعادة تشغيل كونسول لتعيين " +"بدء كونسول قبل أن تُمكّن تأثيرات سطح المكتب. عليك إعادة تشغيل كونسول لتعيين " "خلفية شفّافة." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "مبدئي لهذا النوع" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4458,11 +4677,11 @@ msgstr "" "التي يدعمها المحرر الذي ترغب به؛ على سبيل المثال:\n" "gedit +السطر:العمود المسار\n" "\n" -"إذا لم يكن المسار أو السطر موجودا في الأمر ؛ فإن هذه الإعدادات\n" +"إذا لم يكن المسار أو السطر موجودا في الأمر؛ فإن هذه الإعدادات\n" "ستتجاهل ويفتح الملف بالمحرر النصي\n" "المبدئي." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "أمر محرر النصوص المخصص" @@ -4490,13 +4709,13 @@ msgstr "اسم وصفي للتشكيلة" #, kde-format msgctxt "@label:textbox" msgid "Profile name" -msgstr "اسم اللاحة" +msgstr "اسم التشكيلة" #. i18n: ectx: property (text), widget (QCheckBox, setAsDefaultButton) #: widgets/EditProfileGeneralPage.ui:94 #, kde-format msgid "Default Profile" -msgstr "التشكيلة الافتراضية" +msgstr "التشكيلة المبدئية" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/EditProfileGeneralPage.ui:125 @@ -4549,26 +4768,55 @@ msgstr "اختر الدليل المبدئي" msgid "Start in same directory as current session" msgstr "ابدأ بنفس الدليل الموجود في الجلسة الحالية" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"عند فتح لسان جديد أو تقسيم جديد، أدخل آليًا نفس الحاوية (Toolbox، Distrobox) " +"مثل الجلسة الحالية" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "أدخل نفس الحاوية مثل الجلسة الحالية" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "ابدأ دائمًا في الحاوية:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "ابدأ دائمًا جلسات جديدة باستخدام هذه التشكيلة داخل الحاوية المحددة" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "البيئة:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "حرر قائمة متغيرات البيئة و القيم المصاحبة لها" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "&حجم الطرفية المبدئي:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4581,31 +4829,31 @@ msgstr "" "p>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&نمط جرس الطرفية:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "التكامل الدلالي" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "محاكاة أسهم أعلى/أسفل" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "عندما تنقر الفأرة على سطر الإدخال تحرك المؤشر" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "تلميحات الدلالية:" @@ -4615,9 +4863,9 @@ msgstr "تلميحات الدلالية:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4628,9 +4876,9 @@ msgstr "البتة" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4641,34 +4889,34 @@ msgstr "عند عرض تلميحة العنوان" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "دائما" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "أشرطة خطأ حمراء:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "خلفية خطأ حمراء:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "أشرطة متناوبة:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "خلفية متناوبة:" @@ -4684,9 +4932,8 @@ msgid "" "check the Konsole Handbook." msgstr "" "تتحكم روابط المفاتيح في كيفية تحويل مجموعات ضغطات المفاتيح في النافذة " -"الطرفية إلى دفق الأحرف الذي يتم إرساله بعد ذلك إلى برنامج المحطة الطرفية " -"الحالي. لمزيد من المعلومات حول كيفية تخصيص روابط المفاتيح ، راجع دليل " -"كونسول. " +"الطرفية إلى دفق الأحرف الذي يرسل بعد ذلك إلى برنامج المحطة الطرفية الحالي. " +"لمزيد من المعلومات حول كيفية تخصيص روابط المفاتيح، راجع دليل كونسول." #. i18n: ectx: property (toolTip), widget (QPushButton, newKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:60 @@ -4717,7 +4964,7 @@ msgstr "احذف تشكيلة ربط المفاتيح المحددة" #: widgets/EditProfileKeyboardPage.ui:90 #, kde-format msgid "Reset the selected key bindings scheme to its default values" -msgstr "أعد تعيين تشكيلة ربط المفاتيح المحددة إلى قيمه المبدئية" +msgstr "صفّر تشكيلة ربط المفاتيح المحددة إلى قيمه المبدئية" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: widgets/EditProfileMousePage.ui:36 @@ -4789,7 +5036,7 @@ msgstr "خيارات النسخ:" #: widgets/EditProfileMousePage.ui:196 #, kde-format msgid "Automatically copy selected text into clipboard" -msgstr "نسخ النص تلقائيًّا إلى الحافظة" +msgstr "نسخ النص آليًّا إلى الحافظة" #. i18n: ectx: property (text), widget (QCheckBox, copyTextToClipboardButton) #: widgets/EditProfileMousePage.ui:199 @@ -4841,8 +5088,8 @@ msgid "" "Text recognized as a link or an email address will be underlined when " "hovered by the mouse pointer." msgstr "" -"النص المكتشف بأنه رابط أو عنوان بريد إلكتروني سيتم تسطيره عند تحليق مؤشر " -"الفأرة فوقه." +"النص المكتشف بأنه رابط أو عنوان بريد إلكتروني سيُسطر عند تحليق مؤشر الفأرة " +"فوقه." #. i18n: ectx: property (text), widget (QCheckBox, underlineLinksButton) #: widgets/EditProfileMousePage.ui:269 @@ -4959,8 +5206,7 @@ msgid "" "Always paste dropped files and URLs as text without offering move, copy and " "link actions." msgstr "" -"قم دائمًا بلصق الملفات وعناوين URL التي تم إسقاطها كنص بدون تقديم إجراءات " -"النقل والنسخ والربط." +"ألصق الملفات والعناوين المسقطة كنص دون تقديم إجراءات النقل والنسخ والربط." #. i18n: ectx: property (text), widget (QCheckBox, dropUrlsAsText) #: widgets/EditProfileMousePage.ui:418 @@ -4986,8 +5232,7 @@ msgstr "اسمح لعجلة التمرير ومفتاح Ctrl بالتحكم بح msgid "" "When positioning the mouse over a hexadecimal color it will be displayed in " "a frame next to the mouse pointer" -msgstr "" -"عند وضع الفأرة فوق لون سداسي عشري ، سيتم عرضه في إطار بجوار مؤشر الفأرة" +msgstr "عند وضع الفأرة فوق لون سداسي عشري، سيُعرض في إطار بجوار مؤشر الفأرة" #. i18n: ectx: property (text), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:438 @@ -5002,7 +5247,7 @@ msgid "" "Some terminal applications have mouse support, this allows them to get it by " "default. It can be toggled on/off while running as well." msgstr "" -"بعض تطبيقات الطرفية تدعم الفأرة، هذا الخيار سيسمح تمكينها بشكل افتراضي. يمكن " +"بعض تطبيقات الطرفية تدعم الفأرة، هذا الخيار سيسمح تمكينها بشكل مبدئي. يمكن " "تشغيل أو تعطيل هذه الميزة أثناء التشغيل أيضا." #. i18n: ectx: property (text), widget (QCheckBox, allowMouseTrackingButton) @@ -5018,115 +5263,127 @@ msgid "Scrollback:" msgstr "التمرير الخلفي:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "مقدار التمرير لأعلى/لأسفل:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "أبرز السطور الآتية في العرض" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " ٪" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "مخفي" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "حجم كل علامة (كنسبة مئوية من طول شريط التمرير):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "الإبراز:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "مرِّر الصفحة نصف ارتفاع النافذة" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "&نصف ارتفاع الشاشة" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "لون علامات شريط التمرير:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "لون خطوط تمييز البحث في شريط التمرير:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "إعادة دفق السطور:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "مرِّر الصفحة بكامل ارتفاع النافذة" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "ارتفاع الشاشة ال&كامل" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "مكان شريط التمرير:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "اعرض شريط التمرير على يمين نافذة الطرفية" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "الجانب الي&مين" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "اعرض شريط التمرير على يسار نافذة الطرفية" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "الجانب الأي&سر" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "مخفي" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "الإبراز:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "أبرز السطور الآتية في العرض" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "إعادة دفق السطور:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "إعادة دفق السطور عند تغيير حجم الطرفية" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "لون علامات شريط التمرير:" +msgid "Scrollbar position:" +msgstr "مكان شريط التمرير:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "حجم كل علامة (كنسبة مئوية من طول شريط التمرير):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " ٪" +msgid "Search highlighting line opacity:" +msgstr "تعتيم خط تمييز البحث:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5172,8 +5429,8 @@ msgid "" "choose a huge value, your system may run out of free RAM and cause serious " "issues with your system." msgstr "" -"عند استخدام هذا الخيار ، سيتم حفظ بيانات التمرير في ذاكرة الوصول العشوائي. " -"إذا اخترت قيمة كبيرة، فقد ينفد نظامك من ذاكرة الوصول العشوائي المتاحة ويسبب " +"عند استخدام هذا الخيار، ستُحفظ بيانات التمرير في ذاكرة الوصول العشوائي. إذا " +"اخترت قيمة كبيرة، فقد ينفد نظامك من ذاكرة الوصول العشوائي المتاحة ويسبب " "مشكلات خطيرة في نظامك." #: widgets/HistorySizeWidget.cpp:69 @@ -5207,7 +5464,7 @@ msgstr "حجم &ثابت:" #: widgets/HistorySizeWidget.ui:73 #, kde-format msgid "Number of lines of output to remember" -msgstr "عدد الأسطر التي سيتم تذكرها من المخرجات" +msgstr "عدد الأسطر التي ستتذكرها من المخرجات" #. i18n: ectx: property (toolTip), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:134 @@ -5235,37 +5492,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&لا شيء" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "بحث..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "أدخل نص لتبحث عنه هنا" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "التّالي" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "أعثر على المتطابقة التالية لعبارة البحث الحالية" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "السابق" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5273,77 +5530,77 @@ msgstr "أعثر على المتطابقة السابقة لعبارة البح #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "اعرض قائمة الخيارات" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "أغلق شريط البحث" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "حسّاس لحالة الأحرف" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "اختر إذا ما كانت حالة الأحرف حساسة" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "اعرض قائمة الخيارات" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "أغلق شريط البحث" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "طابق التعابير النمطية" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "أبرز كل المتطابقات" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "اختر إذا ما كنت تريد إبراز النص المتطابق" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "ابحث بالعكس" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "حدِّد ما إذا كان يجب بدء البحث من الأسفل" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "دون لف" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "حدِّد ما إذا كان يجب أن يتوقف البحث بدلاً من الالتفاف" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "ابحث عن عبارة البحث الحالية من الأسفل" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5354,7 +5611,7 @@ msgstr "ابحث عن عبارة البحث الحالية من الأعلى" msgid "Print Shell" msgstr "صَدفة الطباعة" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5394,6 +5651,12 @@ msgstr "التنسيق عناوين الألسنة العادية" msgid "Tab Co&lor:" msgstr "ل&ون اللسان:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "لون لسان ال&نشاط:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5485,38 +5748,65 @@ msgstr "أغلق الطرفية" #, kde-format msgctxt "@info:tooltip" msgid "Restore terminal" -msgstr "استعد الطّرفيّة" +msgstr "استعد الطرفية" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "افتح لسانًا جديدًا" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ابحث في الألسنة" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "أغلق هذا اللسان" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "ا&فصل اللسان" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "اضبط أو أ&عد تسمية لسان..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "أغلق اللسان" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "صندوق الأدوات: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

        This warning will only show once for this Konsole instance.

        " +#~ msgstr "" +#~ "استخدمت طريقة D-Bus sendText / runCommand للتو. هناك مخاوف أمنية بشأن " +#~ "السماح بأن تكون هذه الأساليب عامة. إذا رغبت في ذلك، يمكن تغيير هذه الطرق " +#~ "إلى الاستخدام الداخلي فقط عن طريق إعادة تجميع كونسول.

        سيظهر هذا " +#~ "التحذير مرة واحدة فقط لنسخة كونسول هذا.

        " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "حسّاس لحالة الأحرف" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "بلا" diff --git a/local/recipes/kde/konsole/source/po/ast/konsole.po b/local/recipes/kde/konsole/source/po/ast/konsole.po index c9955027e0..4386906acb 100644 --- a/local/recipes/kde/konsole/source/po/ast/konsole.po +++ b/local/recipes/kde/konsole/source/po/ast/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2023-12-14 22:03+0100\n" "Last-Translator: Enol P. \n" "Language-Team: Assamese \n" @@ -49,7 +49,7 @@ msgstr "Ver" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Vista dixebrada" @@ -85,7 +85,7 @@ msgid "S&crollback" msgstr "" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "" @@ -163,54 +163,66 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 #, kde-format msgctxt "@info:shell" -msgid "List the available profiles" +msgid "Start Konsole in fullscreen mode" msgstr "" #: Application.cpp:73 #, kde-format msgctxt "@info:shell" -msgid "List all the profile properties names and their type (for use with -p)" +msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" #: Application.cpp:74 #, kde-format msgctxt "@info:shell" -msgid "Change the value of a profile property." +msgid "List the available profiles" +msgstr "" + +#: Application.cpp:75 +#, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" msgstr "" #: Application.cpp:76 #, kde-format msgctxt "@info:shell" +msgid "Change the value of a profile property." +msgstr "" + +#: Application.cpp:78 +#, kde-format +msgctxt "@info:shell" msgid "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -218,13 +230,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -242,157 +254,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -642,6 +654,39 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Agospiador: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr "" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -684,7 +729,7 @@ msgstr "" msgid "Copy Location" msgstr "" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -715,13 +760,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -758,17 +803,17 @@ msgstr "" msgid "Output" msgstr "" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -776,7 +821,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -810,225 +855,225 @@ msgstr "" msgid "Output:" msgstr "" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1036,13 +1081,13 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1050,25 +1095,25 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1076,132 +1121,132 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Llingüeta &nueva" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Ventana nueva" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Marcadores" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1210,67 +1255,67 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Xeneral" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memoria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Ficheros temporales" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniatures" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1354,7 +1399,7 @@ msgstr "Guardar" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Anovar" @@ -1366,27 +1411,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Amosar los comandos rápidos" @@ -1426,7 +1471,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1479,11 +1524,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1542,92 +1587,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "" @@ -1817,25 +1862,25 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "" @@ -1894,17 +1939,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1938,420 +2004,445 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Verde sobre prietu" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Colores de Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Coloráu sobre prietu" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blancu sobre prietu" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Busca web" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Busca web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "S&uspender la xera" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Siguir cola xera" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrumpir la xera" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminar la xera" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Matar la xera" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2359,53 +2450,57 @@ msgid "" msgstr "" "El programa «%1» ta executándose nesta sesión. ¿De xuru que quies zarrala?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is currently running in this session. Are you sure you " +#| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" +"El programa «%1» ta executándose nesta sesión. ¿De xuru que quies zarrala?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2413,20 +2508,20 @@ msgid "" "or 'lrzsz' package.

        " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " "to install the 'rzsz' or 'lrzsz' package.

        " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2449,144 +2544,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Executar toles ventanes de Konsole nun procesu" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" +msgid "Force new tabs" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2611,71 +2732,109 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2683,91 +2842,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2779,26 +2944,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -2950,125 +3113,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3120,8 +3301,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3160,95 +3341,95 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Tamañu: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 #, kde-format msgctxt "@action Shortcut entry" -msgid "Switch to Last Tab" -msgstr "" - -#: ViewManager.cpp:287 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Last Used Tabs" +msgid "Focus Next Terminal" msgstr "" #: ViewManager.cpp:292 #, kde-format msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "" + +#: ViewManager.cpp:298 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Switch to Last Tab" +msgstr "" + +#: ViewManager.cpp:303 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Last Used Tabs" +msgstr "" + +#: ViewManager.cpp:308 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3511,7 +3704,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3519,13 +3712,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3621,28 +3814,40 @@ msgstr "" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3678,7 +3883,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3732,12 +3937,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3856,29 +4067,43 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Ventana:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3886,144 +4111,144 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Márxenes:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4031,43 +4256,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4075,95 +4300,95 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Xeneral" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aspeutu" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tecláu" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4172,48 +4397,53 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4223,7 +4453,7 @@ msgid_plural " columns" msgstr[0] " columna" msgstr[1] " columnes" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4233,42 +4463,42 @@ msgid_plural " rows" msgstr[0] " filera" msgstr[1] " fileres" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4276,42 +4506,42 @@ msgid_plural " seconds" msgstr[0] " segundu" msgstr[1] " segundos" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4328,7 +4558,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4415,26 +4645,53 @@ msgstr "" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Entornu:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4444,31 +4701,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4478,9 +4735,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4491,9 +4748,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4504,34 +4761,34 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "" @@ -4860,114 +5117,126 @@ msgid "Scrollback:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" +msgid "Scrollbar position:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5066,37 +5335,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5104,77 +5373,77 @@ msgstr "" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5185,7 +5454,7 @@ msgstr "" msgid "Print Shell" msgstr "" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5223,6 +5492,12 @@ msgstr "" msgid "Tab Co&lor:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5316,31 +5591,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/az/konsole.po b/local/recipes/kde/konsole/source/po/az/konsole.po index 444cbb972f..87e546f86e 100644 --- a/local/recipes/kde/konsole/source/po/az/konsole.po +++ b/local/recipes/kde/konsole/source/po/az/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2023-09-15 16:56+0400\n" "Last-Translator: Kheyyam \n" "Language-Team: Azerbaijani \n" @@ -50,7 +50,7 @@ msgstr "Görünüş" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Pəncərəni bölmək" @@ -86,7 +86,7 @@ msgid "S&crollback" msgstr "&Jurnal" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Sesiya Alətlər Paneli" @@ -167,36 +167,52 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Necə ayarlanmasından aılı olmayaraq menyunu gizlətmək" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Necə ayarlanmasından asılı olmayaraq vərəqi göstərmək" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Necə ayarlanmasından asılı olmayaraq vərəqi gizlətmək" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Necə ayarlanmasından asılı olmayaraq vərəqi göstərmək" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Necə ayarlanmasından asılı olmayaraq vərəqi gizlətmək" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole-ni tam ekranda açmaq" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Şəffaf fonları söndürmək, hətta sistem onları dəstəkləsə belə." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Mövcud profillərin siyahısı" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -204,13 +220,13 @@ msgstr "" "Bütün profillərin xassələrini onların adları və növləri ilə sıralamaq (-p " "parametrindən istifadə etməklə)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Profilin üstünlük dəyərini dəyişmək." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -220,7 +236,7 @@ msgstr "" "İcra etmək əmri. Bütün bundan sonrakı arqumentlər bu əmrin bir hissəsi hesab " "olunacaq, buna görə də onu ən sonda göstərin." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,13 +246,13 @@ msgstr "" "Mövcud nümunə funksionallığı pozsa belə, onu yenidən məcburi istifadə edin, " "məs., --new-tab. Əsasən sazlama üçün." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Əmr üçün arqumentlər" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -254,157 +270,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Şrift" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Arxa plan" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Rəng 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Rəng 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Rəng 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Rəng 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Rəng 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Rəng 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Rəng 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Rəng 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Mətnin rəngi (dolğun)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Arxa plan rəngi (dolğun)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Rəng 1 (dolğun)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Rəng 2 (dolğun)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Rəng 3 (dolğun)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Rəng 4 (dolğun)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Rəng 5 (dolğun)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Rəng 6 (dolğun)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Rəng 7 (dolğun)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Rəng 8 (dolğun)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Mətnin rəngi (solğun)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Arxa plan rəngi (solğun)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Rəng 1 (solğun)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Rəng 2 (solğun)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Rəng 3 (solğun)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Rəng 4 (solğun)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Rəng 5 (solğun)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Rəng 6 (solğun)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Rəng 7 (solğun)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Rəng 8 (solğun)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -660,6 +676,41 @@ msgstr "Yuxarı" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [İlkin]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -705,7 +756,7 @@ msgstr "" msgid "Copy Location" msgstr "Ünvanı kopyalayın:" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Eskiz yaratmaq" @@ -736,13 +787,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Şrifti seçmək" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Bütün şriftləri göstərmək" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -783,17 +834,17 @@ msgstr "Düymə birləşmələri" msgid "Output" msgstr "Çıxarış" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Yeni aşar bağı siyahısı" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Açar bağı siyahısına düzəliş" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Təsviri verilmədən açar bağı sxemi saxlanıla bilməz" @@ -801,7 +852,7 @@ msgstr "Təsviri verilmədən açar bağı sxemi saxlanıla bilməz" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -835,225 +886,225 @@ msgstr "Giriş:" msgid "Output:" msgstr "Çıxış:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminal emulyatoru" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Konsole Tərtibatçıları" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Əsas müşayətçi,səhv düzəlişləri və ümumi inkişaf" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Əvvəlki müşayətçi, KDE4-ə nəql edilmişdir" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Əsas müəllifi" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Əsas təkrar düzənləmə,səhv düzəlişləri və daha çox yaxşılaşdırmalar" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Xəta düzəlişləri və ümumi inkişaf" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Xəta düzəlişləri və daha çox yaxşılaşdırmalar" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Əsas inkişaf (yaxşılaşdırmalar)" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Xəta düzəlişləri" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris dəstəyi və tarixi" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Səhvlər düzəldilir və işləmə məhsuldarlığı yaxşılaşdırıldı" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "İşarələmə yaxşılaşdırılması" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1063,13 +1114,13 @@ msgstr "" "Əlavə edilmiş Konsole\n" "Alətlər paneli və sesiya adları" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1079,25 +1130,25 @@ msgstr "" "Əlavə edilmiş Konsole\n" "başlıca yaxşılaşdırmaları" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visual effektlər" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1107,132 +1158,132 @@ msgstr "" "Kvt layihəsindən kod\n" "Başlıca yaxşılaşdırmalar" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Sxem və mətn seçimləri təkmilləşdirilmələri" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI port" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD port" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Və digər əməyi keçənlərə təşəkkürlər.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Yeni vərəq" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Vərəqin &kopyası" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Yeni &pəncərə" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Pəncərəni bağlamaq" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Əlfəcinlər" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Pəncərə rəng sxemi" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profillər meneceri..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Menyunu açamaq" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Vərəq tərtibatını saxla..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Vərəq tərtibatını yüklə..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1243,67 +1294,67 @@ msgstr[0] "" msgstr[1] "" "Bu pəncərədə %1 əməliyyat icra olunur. Çıxmaq istədiyinizə əminsiniz?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Çıxışı təsdiqlə" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Pəncərəni bağlamaq" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Cari &vərəqi bağlamaq" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Bu pəncərədə %1 aşıq terminal var. Çıxmaq istədiyinizə əminsiniz?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profillər" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Ümumi" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Yaddaş" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Vərəq / Bölücülər" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Müvəqqəti fayllar" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Eskizlər" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1387,7 +1438,7 @@ msgstr "Saxlayın" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Yeniləyin" @@ -1399,29 +1450,29 @@ msgid "Cancel" msgstr "İmtina" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Sürətli əmrlər" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Sürətli girişləri göstərmək" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Sürətli əmrlər tapılmadı. Onlardan birini Plaqinlər -> Sürətli əmrlər " "menyusunda əlavə edə bilərsiniz" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Plaqin - Sürətli əmrlər" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Sürətli əmrləri göstərmək" @@ -1464,7 +1515,7 @@ msgstr "" "ilə birlikdə silmək üzrəsiniz, buna əminsiniz?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Siz %1 silmək ürəsiniz, buna əminsiniz?" @@ -1517,11 +1568,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 SSH girişləri üçün qovluqdur" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH tənzimləməsi" @@ -1586,24 +1637,24 @@ msgstr "" "deyil" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH açarı" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Silin" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Dəyişdirməyin" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1612,69 +1663,69 @@ msgstr "" "Siz %1 qovluğunu çoxsaylı SSH\n" "tənzimləmələri ilə birlikdə silmək üzrəsiniz, əminsiniz?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH tənzimləmələrini silin" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Hos_adı çatışmır" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Ad çatışmır" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Əgər Use SSH Config qurulubsa, sshkey və ya istifadəçi adını göstərməyin" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Ən azından İstifadəçi_adı SSHKey qurulmalıdır" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Qovluq çatışmır" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH sessiyasında profil olmalıdır" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Bu qovluq silinə bilmir" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Qovluğu və onun bütün tərkiblərini silin" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Qovluq adını dəyişmək üçün iki dəfə vurun." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Avtomatik əlavə olunmuş girişi silə bilməzsiniz." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Seçilmiş girişi silin" @@ -1866,25 +1917,25 @@ msgstr "Çıxarış seçimləri" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Printer qənaətli rejimi (qara mətn, arxa fonsuz)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Çıxarışı &miqyaslamaq" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Daxilə quraşdırırlmış" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standart profil" @@ -1945,17 +1996,38 @@ msgstr "Qısayolu dəyişmək üçün cüt klik" msgid "Tab Properties" msgstr "Vərəq xüsusiyyətləri" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 çıxarışını saxlamaq" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 səhv URL ünvanıdır, çıxarış saxlanıla bilməz." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1991,81 +2063,102 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tutqun pastellər" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Yaşıl Qarada" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux rəngləri" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Qırmızı Qarada" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solğun" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solğun İşıqlı" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Ağ Qarada" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standart (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux konsolu" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris konsolu" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Axtarış:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Axtarış mətnini bura daxil edin" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "\"%1\" zamanı siqnal (Sessiya \"%2\")" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Tapılmayan icra faylı:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Xəbərdarlıq:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Başlatmaq üçün İnteraktiv Üz Qabığı tapılmadı." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2074,202 +2167,205 @@ msgstr "" "\"%1\" tapılmadı, onun əvəzinə \"%2\" başladılır. Lütfən profil " "ayarlarınızı yoxlayın." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "\"%1\" proqramı \"%2\" arqumenti ilə başladıla bilmədi." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "\"%1\" zamanı susdurun (Sessiya \"%2\")" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Sessiya göstərilsin" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"Elə indicə D-Bus sendText/runCommand metodları istifadə olundu. Bu " -"metodların hamıya açıq olmasına icazə verilməsi təhlükəsizlik baxımından " -"narahatçılıq yaradır.

        Bu metodların yalnız Konsole daxilində istifadə " -"olunması üçün başqa Konsole parametrlərindən istifadə edərək onu yenidən " -"tərtib etmək lazımdır.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Başa çatdı" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "\"%1\" proqramında qəza baş verdi" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "\"%1\" proqramı %2 vəziyyətində. bağlandı." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem əməliyyatı" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "\"%1\" zamanı fəaliyyət (Sessiya \"%2\")" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "\"%2\" sesiyasında başlanan \"%1\" əməliyyat başa çatdı" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole əlfəcini necə açmağı bilmir: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "\"%1\" ifadəsini bununla axtar" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Veb Qısaltmalarını Tənzimləmək..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Sesiyadan &çıxmaq" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Fayl menecerini açmaq" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopyalamaq" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Görünüşü soldan-sağa böl" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Görünüşü aşağıdan-yuxarıya böl" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Sorğu sətri olmadan yoxlayın" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "İstifadəçinin daxil etdiyini kopyalayın" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Əmr çıxışlarını kopyalayın" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Seçilmişi yerləşdirin" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Veb üzrə axtarış" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Hamısını seçmək" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Seçim reji&mi" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "S&ətiri seçin" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Çıxarışı belə sax&lamaq..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Çıxarışı belə sax&lamaq..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Ekran şəkli ç&əkmək..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Jurnal tutmaq..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Jurnalı təmizləmək" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Jurnalı təmizləmək və sıfırlamaq" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Profilə düzəliş" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Əvvəlki" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Profili dəyişmək" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "K&odlaşdırmanı ayarlamaq" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, fuzzy, kde-format #| msgctxt "" #| "@item:inmenu Allows terminal applications to request mouse tracking" @@ -2278,7 +2374,7 @@ msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Siçan izinə icazə verin" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2286,134 +2382,134 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Ancaq oxumaq üçün" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Vərəqin adını və ya ayarlarını &dəyişmək..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Cari pəncərədəki &bütün vərəqlər" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Vərəqləri &seçmək..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Heç biri" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Daxil edilənləri bura kopyalamaq" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem ilə göndəriş..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, fuzzy, kde-format #| msgid "One-shot monitors" msgid "One-Shot Monitors" msgstr "Birdəfəlik müşahidələr" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "&Sorğunun izlənməsi" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&Aktivliyin izlənməsi" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Sakitliyin izlənməsi" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Əməliyyatın başa çatmasını izləmək" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Şrifti böyütmək" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Şrifti kiçiltmək" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Şrift ölçüsünü sıfırlamaq" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Siqnal göndərmək" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Əməliyyatı dayandırmaq (STOP)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Əməliyyata davam (CONT)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Ə&ngəlləmək" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Əməliyyatı &yarımçıq dayandırmaq (İNT)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Ə&məliyyatı başa çatdırmaq (TERM)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Əməliyyatı məhv etmək (KİLL)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "İstifadəçiyə aid &1 (USR1)" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "İstifadəçiyə aid &2 (USR2)" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Yeni profil yaradın..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Cari profilə düzəliş..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2421,7 +2517,7 @@ msgid "" msgstr "" "Proqram hal-hazırda bu sesiyada işləyir. Bağlamaq istədiyinizə əminsiniz?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2430,18 +2526,18 @@ msgstr "" "\"%1\" proqramı hal-hazırda bu sesiyada işləyir. Bağlamaq istədiyinizə " "əminsiniz?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Çıxışı təsdiq etmək" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Proqramı bağlayın" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2449,37 +2545,40 @@ msgid "" msgstr "" "Proqram bu sesiyada məhv edilməyəndir. Onu məcburi məhv etmək istəyirsiniz?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "\"%1\" proqramı bu sesiyada məhv edilməyəndir. Onu məcburi məhv etmək " "istəyirsiniz?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Proqramı tam dayandırın" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Üz qabığı (shell) surğusu \"%1\" sesiyasında göstərilir" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Cari qovluğu bununla açın:" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "ZModem ilə alınan faylı burada saxlamaq..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2490,14 +2589,14 @@ msgstr "" "uyğun ZModem tətbiqi tapılmadı.

        İstəsəniz \"rzsz\" və ya \"lrzsz\" " "paketlərini quraşdıra bilərsiniz.

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" "

        Bu sesiyada artıq Zmodem vasitəsi ilə fayl göndərişi əməliyyatı gedir.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2506,7 +2605,7 @@ msgstr "" "

        Bu sistemdə uyğun ZModem tətbiqi tapılmadı.

        İstəsəniz \"rzsz\" və " "ya \"lrzsz\" paketlərini quraşdıra bilərsiniz.

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem ilə göndərmək üçün faylları seçin" @@ -2529,56 +2628,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Tənzimləmək" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Axtarış:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Menyu sürətləndiricilərini aktivləşdirmək" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Aktiv edilmişsə, profil ayarları inkar ediləcəkdir" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Pəncərə ölçüsünü yadda saxlamaq" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Başlıq sətirində pəncərə başlılqlarını göstərmək" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Kursor üzərində olduqda terminalları fokuslamaq" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Müntəzəm ifadələrin istifadəsi ilə uyğunluq" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2586,89 +2638,163 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Bütün Konsole pəncərələrini tək əməliyyatda işlətmək" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Bütün oxşarları vurğulamaq" +msgid "If enabled, profile settings will be ignored" +msgstr "Aktiv edilmişsə, profil ayarları inkar ediləcəkdir" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Böyük/kiçik hərflərə həsas axtarışları təyin edir" +msgid "Remember window size" +msgstr "Pəncərə ölçüsünü yadda saxlamaq" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Böyük/Kiçik hərflərə həssa" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Yeni vərəq yerləşdirmək:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Pəncərə başlıq sətirini və çərçivəsini silmək" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Əməliyyat və pəncərələr:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Bildirişlər:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Bütün dialoqlar yenidən görünəcəkdir" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Bütün \"Yenidən Soruşma\" ismarıclarını aktiv etmək" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Axtarışın sondan başlamağını təyin edir" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Əks sıra ilə axtarış" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Böyük/kiçik hərflərə həsas axtarışları təyin edir" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Böyük/Kiçik hərflərə həssa" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Əməliyyat və pəncərələr:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Bütün oxşarları vurğulamaq" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Axtarış:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Axtarışın sondan başlamağını təyin edir" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Menyu sürətləndiricilərini aktivləşdirmək" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Kursor üzərində olduqda terminalları fokuslamaq" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Bütün dialoqlar yenidən görünəcəkdir" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Bütün \"Yenidən Soruşma\" ismarıclarını aktiv etmək" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Başlıq sətirində pəncərə başlılqlarını göstərmək" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Pəncərə başlıq sətirini və çərçivəsini silmək" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Müntəzəm ifadələrin istifadəsi ilə uyğunluq" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2694,65 +2820,105 @@ msgstr "Hazırkı pəncərə ölçüsünü növbəti başlatmada istifadə etmə msgid "The window size will be saved upon exiting Konsole" msgstr "konsole bağlandıqda pəncərə ölçüsü saxlanılacaqdır" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Konsole açıldıqda, əgər mümkündürsə cari əməliyyatı təkrara istifadə etmək" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Eskizin eni" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Eskizin enini təyin etmək" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Eskizi göstərmək üçün Shift istifadə etmək" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Eskizi göstərmək üçün Alt istifadə etmək" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Eskizi göstərmək üçün Ctrl istifadə etmək" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Böyük/Kiçik hərflər nəzərə alınmaqla axtarış" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Bütün oxşar axtarış nəticələrini vurğulamaq" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Oxşar mətnin vurğulanmalı olub olmadığını təyin edir" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, fuzzy, kde-format #| msgid "Control whether creation of child cgroups are created tabs" msgid "Control whether child cgroups are created for individual tabs" @@ -2761,7 +2927,7 @@ msgstr "" "edin" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2771,75 +2937,83 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Bütün vərəqlər panelinin görünməsinin idarə edilməsi" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Panellər arası tutacaq ölçüsünün idarə edilməsi" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Vərəqlər panelinin yerlərinin müəyyən edilməsi" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Vərəqlər panelinin vizual görünüşünün idarə edilməsi" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Əlavə .css faylını vərəqlər paneli üçün istifadə etmək" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Vərəqlər panelinin tərzi üçün .css faylı" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Açılan vərəqlərdə siçanın orta düyməsini klikləmək onları bağlayır" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" "Vərəqlər panelində \"Yeni Vərəq\" düyməsinin görünməsinin idarə edilməsi" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Vərəqlər panelində \"Yeni Vərəq\" düyməsinin görünməsinin idarə edilməsi" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" "\"Vərəqi bağlamaq\" düyməsinin harada göstəriləcəyinin müəyyən edilməsi" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Yeni vərəqin yerləşmə yerinin müəyyən edilməsi" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Vərəqlər panelini genişləndirmək" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" @@ -2847,7 +3021,7 @@ msgstr "" "istifadə etmək" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2855,14 +3029,14 @@ msgstr "" "qovluğunu istifadə etmək" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" "Çıxarış jurnalının saxlanması üçün göstərilmiş qovluqdan istifadə etmək" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Çıxarış jurnalının saxlanması üçün bu qovluqdan istifadə etmək" @@ -2874,16 +3048,23 @@ msgid "Enable memory monitoring:" msgstr "Yaddaşın izlənməsini aktiv edin" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Dəyişikliklər yenidən başladıqda qüvvəyə minəcək. Əgər aktiv edilərsə, " "Konsole tərəfindən verilmiş\n" @@ -2896,13 +3077,13 @@ msgstr "" "bağlanmasına gətib çıxara bilər." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Yaddaş həddi:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3067,125 +3248,148 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Heç biri" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "\"Vərəqi bağlamaq\" düyməsi:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Həmişə" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Heç vaxt" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Müxtəlif:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "\"Yeni vərəq\" düyməsini göstərmək" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Fərdi vərəqi tam pəncərə eni genişlətmək" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "İstifadəçinin təyin etdiyi üslub cədvəli:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(istifadə etməmək)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Davranış" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Yeni vərəq yerləşdirmək:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "So&nda" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Hazırkı vərəq&dən sonra" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Siçanın orta düymə klikli ilə vərəqi bağlamaq" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Bölücülər" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Başlığı göstərmək" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Lazım olduqda" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Heç vaxt" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Sürüşdürmə tutacağının ölçüsü" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Kiçik" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Orta" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Geniş" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3234,11 +3438,15 @@ msgstr "piksel" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" "

        Bu imkanı istifadə etmək üçünSiçan->Müxtəlif->Alt cizgidayandırıldı Davam etmək üçün Ctrl+Q " "yığmaq." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Bu terminal yalnız oxumaq üçün açıqdır." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "İş qovluğunu &əvəzləmək" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Ünvanı daxil etmək" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Bölünmüş görünüş" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Pəncərəni şaquli bölmək" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Pəncərəni üfüqi bölmək" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Görünüşü avtomatik bölmək" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Bölünmüş görünüş: Növbəti vərəqdən sonra sol/sağ" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Bölünmüş görünüş: Növbəti vərəqdən yuxarı/aşağı" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Bölünmüş görünüş: Növbəti vərəqdən avtomatik" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "2x2 terminallar qatı ilə yeni vərəqi yükləyin" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "2x1 terminallar qatı ilə yeni vərəqi yükləyin" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "1x2 terminallar qatı ilə yeni vərəqi yükləyin" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Paneli genişləndirmək" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Paneli daraltmaq" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Cari &görünüşü ayırmaq" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Cari& vərəqi ayırmaq" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Növbəti vərəq" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Əvvəlki vərəq" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Üst terminalı aktivləşdirmək" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Alt terminalı aktivləşdirmək" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Sol terminalı aktivləşdirmək" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Sağ terminalı aktivləşdirmək" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Sol terminalı aktivləşdirmək" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Alt terminalı aktivləşdirmək" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Sonuncu vərəqə keşmək" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Sonuncu istifadə edilmiş vərəqlər" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "İki vərəq arasında keçid" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Sonuncu istifadə edilmiş vərəqlər (Əksinə)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Cari görünəni tam açmaq" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Cari görünəni tam açmaq" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Toggle maximize current view" @@ -3566,7 +3790,7 @@ msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Cari görünəni tam açmaq" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Toggle maximize current view" @@ -3574,71 +3798,71 @@ msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Cari görünəni tam açmaq" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Vərəqi sağa köçürmək" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Vərəqi sağa köçürmək" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Semantik inteqrasiyanı (bash) təyin edin" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Semantik ipuclarının göstərilməsi" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Sətir nömrələrinin göstərilməsi" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Bütün görünüşlər üçün bərabər ölçü" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1 vərəqinə keçid" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantik ipucları " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Sətir nömrələri " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Vərəq tərtibatını saxla" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole görünüşü tərtibatı (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3648,7 +3872,7 @@ msgstr "" "Tərtibatın saxlanılması zamanı xəta baş verdi.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3658,13 +3882,13 @@ msgstr "" "Tərtibatın yüklənməsi zamanı xəta baş verdi.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Vərəq tərtibatını yüklə" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3765,15 +3989,27 @@ msgstr "Standart kodlaşma:" msgid "Shortcut for peeking the primary screen:" msgstr "Əsas ekranı nəzərdən keçirmək üçün qısa yol:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Line numbers " msgid "Line Numbers:" msgstr "Sətir nömrələri " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, fuzzy, kde-format #| msgid "&Never" msgctxt "Never" @@ -3781,7 +4017,7 @@ msgid "&Never" msgstr "&Heç vaxt" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, fuzzy, kde-format #| msgctxt "When showing URL hints" #| msgid "When URL hints show" @@ -3790,7 +4026,7 @@ msgid "When &URL hints show" msgstr "URL ipucları göstərildikdə" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, fuzzy, kde-format #| msgctxt "Always" #| msgid "Always" @@ -3828,7 +4064,7 @@ msgstr "Seçilmiş rəng sxeminə düzəliş etmək" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3881,7 +4117,12 @@ msgstr "Dolğun rənglərlə qalın şriftlər istifadə etmək" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Konsole daxili alqoritmi əvəzinə seçilmiş şriftlərin simvollarından xətlərin " @@ -3889,7 +4130,11 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Şrift tərkibindəki xətt simvollardan istifadə etmək" @@ -4013,29 +4258,45 @@ msgid "Make the cursor blink regularly" msgstr "Müntəzəm sayrışan kursor" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Aktivdir" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktivləşdirmək:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Müntəzəm sayrışan kursor" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Müxtəlif" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Pəncərə:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4045,144 +4306,144 @@ msgstr "" "sətirlərin sayı ilə göstərmək." #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Terminalın ölçüsü dəyişdirildiyi zaman ölçüləri göstərmək" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Seçilmiş mətnin rəngləri həmişə əksinə göstərilsin" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Qaralma səviyyəsi:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Rəng:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Sərhəddi çəkmək üçün istifadə olunan rəngi seçin" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Qeyri-aktiv terminallar:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Aktiv terminallar:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminal tərkibləri" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Sətirarası boşluq:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "İki sətir arasındakı piksellərin sayı" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " piksel" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Haşiyələr:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Ortada yerləşdirmək:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Rənglərin tutqunlaşması pəncərənin qeyr-aktiv olduğunu göstərir" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Qaralma" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Sərhəd çəkilərkən pəncərənin aktiv olub-olmamasını göstərir" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Sərhəd" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Sütunda şaquli xətlər göstərilsin:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "

        Kompleks mətn düzülüşü

        " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Kompleks mətn tərtibatı" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Mətn düzümü üçün söz rejimindən istifadə et" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Söz rejimi" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4192,43 +4453,43 @@ msgstr "" "atribut dəyişiklikləri göstərilmə zamanı sözləri bölür)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Bütün söz üçün eyni atribut istifadə etmək" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Sözləri ASCII simvoallar ilə birlikdə göstərmək" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII simvollar" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Sözləri hind yazısı simvolları ilə birlikdə göstərmək" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Hind yazısı simvolları" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji şrifti:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4236,13 +4497,13 @@ msgid "" msgstr "Sağdan sola yazı dəstəklənməsi (yalnız ərəb, fars və ivrit dillərində)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Sağdan sola yazmağı dəstəkləmək" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4250,83 +4511,83 @@ msgstr "" "düzülsün" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Sətirlərin düzülüşünü məcburi soldan sağa təyin etmək" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Cədvəlin çəkilməsi simvollarını soldan sağa yazı nümunəsi kimi işləmək" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Cədvəl simvolları BiDi rejimini yenidən müəyyən edir" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Bəzi simvolların wcwidth xüsusiyyətini nəzərə almamaq" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "wcwidth xüsusiyyətini ləğv etmək" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profilə düzəliş" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Əsas" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Vərəqlər" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Xarici görünüş" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Jurnal" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klaviatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Düymələrin birləşdirilməsi sxemi" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Siçan" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Əlavələr" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4338,48 +4599,55 @@ msgstr "" "bu faylın icazələrini dəyişdirin, ya da parametrləri yeni profildə saxlamaq " "üçün başqa ad seçin." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Profil adı boşdur; ayarları saxlaya bilmək üçün bir ad seçin." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "\"%1\" adlı profil artıq mövcuddur." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profil adı ən çox icazə verilən uzunluğu (%1) aşdı." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Vurğulanan simvollar profil adı üçün düzgün deyil: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Profilə düzəliş edilməsi: %2" msgstr[1] "%1 profilə düzəliş edilməsi: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Yeni profil yaradın" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" profilinə düzəliş edin" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Heç biri" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4389,7 +4657,7 @@ msgid_plural " columns" msgstr[0] " sütun" msgstr[1] " sütunlar" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4399,42 +4667,42 @@ msgid_plural " rows" msgstr[0] " sətir" msgstr[1] " sətirlər" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sistem siqnalı" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Sistem bildirişləri" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Visual siqnal" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Siqnalları nəzərə almamaq" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "%1 daxilindəki yeni terminal sesiyası üçün ilkin profil" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Dəyişkən mühitə düzəliş etmək" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Hər sətirə bir dəyişkən mühit" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4442,23 +4710,23 @@ msgid_plural " seconds" msgstr[0] " saniyə" msgstr[1] " saniyələr" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "İlkin qovluğu seçmək" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Yenisi..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "%1 sexemi yüklənə bilmir." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4467,7 +4735,7 @@ msgstr "" "Bu rəng sxemi səfaf fondan istifadə etməlidir, lakin sizin sisteminiz bunu " "dəstəkləmir və ya buna uyğun ayarlanmayıb" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4476,13 +4744,13 @@ msgstr "" "Konsole effektlər aktiv edilmədən öncə açılıb. Şəfaf fonu görmək üçün " "Konsole-ni yenidən başlatmanız lazımdır." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Standart profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4510,7 +4778,7 @@ msgstr "" "Əgər PATH və LİNE əmrdə göstərilməyibsə bu parametr \n" "ləğv olunacaq və fayl standart mətn redaktorunda açılacaqdır." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Digər Mətn Redaktoru Əmri: " @@ -4598,28 +4866,56 @@ msgstr "İlkin qovluğu seçmək" msgid "Start in same directory as current session" msgstr "Cari sesiayanın qovluğunu açmaq" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Cari sesiayanın qovluğunu açmaq" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Mühit:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" "Ətraf mühit dəyişkənlərinin və onunla əlaqəli dəyərlərin siyahısına düzəliş" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" msgstr "Terminalın ilkin ölçüsü:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4633,32 +4929,32 @@ msgstr "" "body>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal bell mode:" msgid "&Terminal bell mode:" msgstr "Terminal siqnal rejimi:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantik inteqrasiya" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Yuxarı/aşağı ox təqlidi" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Daxiletmə sətrinə vurmaq kursoru hərəkət etdirir" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantik ipucları:" @@ -4668,9 +4964,9 @@ msgstr "Semantik ipucları:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4681,9 +4977,9 @@ msgstr "Heç vaxt" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4694,34 +4990,34 @@ msgstr "URL ipucları göstərildikdə" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Həmişə" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Xətalı sətirləri qırmızı ilə işarələmək:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Xətaları qırmızı fonla işarələmək:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Alternativ zolaqlar:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Alternativ arxa fon:" @@ -5087,51 +5383,94 @@ msgid "Scrollback:" msgstr "Geri dönüş:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Səhifəni Yuxarı/Aşağı sürüşdürmə:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Görünmə sahəsində olan xətləri vurğulayın" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Gizli" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Vurğulandırma:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Səhifəni pəncərənin yarı hündürlüyünə qədər sürüşdürmək" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half screen height" msgid "Half screen heigh&t" msgstr "Pəncərənin yarı hündürlüyü" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Yenidən axış xətləri:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Səhifəni tam pəncərə boyu sürüşdürmək" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full screen height" msgid "F&ull screen height" msgstr "Tam ekran hündürlüyü" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Sürüşdürmə yeri:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Sürüşdürmə çübüğunu terminal pəncərəsinin sağ tərəfində göstərmək" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the right side" #| msgid "Right side" @@ -5140,13 +5479,13 @@ msgid "Ri&ght side" msgstr "Sağ tərəf" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Sürüşdürmə çübüğunu terminal pəncərəsinin sol tərəfində göstərmək" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the left side" #| msgid "Left side" @@ -5154,53 +5493,22 @@ msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Sol tərəf" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Gizli" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Vurğulandırma:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Görünmə sahəsində olan xətləri vurğulayın" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Yenidən axış xətləri:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Terminalın ölçüsü dəyişdikdə yenidən axış xətləri" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Sürüşdürmə yeri:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5313,116 +5621,117 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Heç biri" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Tapmaq..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Axtarış mətnini bura daxil edin" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "İrəli" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Cari axtarış ifadələrinin növbəti oxşarını tapmaq" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Əvvəlki" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Cari axtarış ifadələrinin əvvəlki oxşarını tapmaq" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Seçimlər menyusunu göstərmək" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Axtarış panelini bağlamaq" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Böyük/kişik hərfə həssas" +msgstr "Böyük/Kiçik hərflərə həssa" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Axtarışın böyük/kiçik hərflərə həsas olub olmadığı aşkar edilir" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Seçimlər menyusunu göstərmək" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Axtarış panelini bağlamaq" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Mütəmadi ifadəyə oxşar" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Bütün oxşarları işıqlandırır" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Oxşar mətnin işıqlandırılmalı olub olmadığını təyin edir" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Geri sıra ilə axtarış" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Axtarışın aşağıdan başlanmasını təyin edir" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Axtarışın sondan başlamağını təyin edir" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Cari axtarış ifadəsini aşağıdan axtarmaq" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5433,7 +5742,7 @@ msgstr "Cari axtarış ifadəsini yuxarıdan axtarmaq" msgid "Print Shell" msgstr "Çap pəncərəsi" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5475,6 +5784,13 @@ msgstr "Normal vərəq başlığı formatı" msgid "Tab Co&lor:" msgstr "Vərəq Rəngi:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Color:" +msgid "&Activity Tab Color:" +msgstr "Vərəq Rəngi:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5568,36 +5884,60 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Terminalı bərpa etmək" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Yeni vərəq açmaq" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Vərəqi ayırmaq" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Bu vərəqi bağlamaq" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Vərəqi ayırmaq" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Vərəqin adını və ya ayarlarını &dəyişmək..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Vərəqi bağlamaq" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

        This warning will only show once for this Konsole instance.

        " +#~ msgstr "" +#~ "Elə indicə D-Bus sendText/runCommand metodları istifadə olundu. Bu " +#~ "metodların hamıya açıq olmasına icazə verilməsi təhlükəsizlik baxımından " +#~ "narahatçılıq yaradır.

        Bu metodların yalnız Konsole daxilində istifadə " +#~ "olunması üçün başqa Konsole parametrlərindən istifadə edərək onu yenidən " +#~ "tərtib etmək lazımdır.

        " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Böyük/kişik hərfə həssas" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Heç biri" diff --git a/local/recipes/kde/konsole/source/po/be/konsole.po b/local/recipes/kde/konsole/source/po/be/konsole.po index efb436b719..85379b060c 100644 --- a/local/recipes/kde/konsole/source/po/be/konsole.po +++ b/local/recipes/kde/konsole/source/po/be/konsole.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-06-11 08:11\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2024-10-28 19:13\n" "Last-Translator: Zmicier \n" "Language-Team: Belarusian\n" "Language: be\n" @@ -56,7 +56,7 @@ msgstr "Выгляд" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Падзяліць" @@ -92,7 +92,7 @@ msgid "S&crollback" msgstr "&Журнал вываду" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Панэль інструментаў сеанса" @@ -173,48 +173,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Хаваць панэль меню перакрываючы прадвызначаны параметр" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Паказваць панэль укладак перакрываючы прадвызначаны параметр" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Хаваць панэль укладак перакрываючы прадвызначаны параметр" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Паказваць панэль укладак перакрываючы прадвызначаны параметр" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Хаваць панэль укладак перакрываючы прадвызначаны параметр" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Запускаць Konsole у поўнаэкранным рэжыме" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Адключыць празрысты фон, нават калі сістэма яго падтрымлівае." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Спіс даступных профіляў" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Спіс назваў ўласцівасцяў профілю і іх тып (для выкарыстання з -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Змяніць значэнне ўласцівасці профілю." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -224,7 +240,7 @@ msgstr "" "Каманда для выканання. Гэты параметр ахоплівае ўсе параметры, якія " "знаходзяцца за ім, таму выкарыстоўвайце яго апошнім." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -235,13 +251,13 @@ msgstr "" "функцыянальнасць. Напрыклад, --new-tab. У большасці выпадкаў патрэбна для " "адладжвання." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Аргументы, якія былі адпраўленыя камандзе" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -259,157 +275,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Асноўны колер" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Фон" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Колер 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Колер 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Колер 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Колер 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Колер 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Колер 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Колер 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Колер 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Асноўны колер (насычаны)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Фон (насычаны)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Колер 1 (насычаны)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Колер 2 (насычаны)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Колер 3 (насычаны)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Колер 4 (насычаны)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Колер 5 (насычаны)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Колер 6 (насычаны)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Колер 7 (насычаны)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Колер 8 (насычаны)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Асноўны колер (цьмяны)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Фон (цьмяны)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Колер 1 (цьмяны)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Колер 2 (цьмяны)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Колер 3 (цьмяны)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Колер 4 (цьмяны)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Колер 5 (цьмяны)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Колер 6 (цьмяны)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Колер 7 (цьмяны)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Колер 8 (цьмяны)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -665,6 +681,41 @@ msgstr "Уверсе" msgid "AaZz09..." msgstr "АаЯя09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Хост: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Прадвызначаны]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -709,7 +760,7 @@ msgstr "" msgid "Copy Location" msgstr "Скапіяваць размяшчэнне" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Стварэнне мініяцюр" @@ -740,13 +791,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Абраць шрыфт" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Паказаць усе шрыфты" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -787,17 +838,17 @@ msgstr "Спалучэнне клавіш" msgid "Output" msgstr "Вывад" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Новы спіс прывязаных клавіш" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Рэдагаваць спіс прывязаных клавіш" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Нельга захаваць схему прывязвання клавіш з пустым апісаннем." @@ -805,7 +856,7 @@ msgstr "Нельга захаваць схему прывязвання клав #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -839,225 +890,225 @@ msgstr "Увод:" msgid "Output:" msgstr "Вывад:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Эмулятар тэрмінала" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, распрацоўнікі Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Галоўны суправаджальнік, выпраўленні памылак і агульныя паляпшэнні" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Папярэдні суправаджальнік, порт на KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Першапачатковы стваральнік" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Асноўны рэфактарынг, выпраўленні хібаў і асноўныя паляпшэнні" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Выпраўленні хібаў і агульныя паляпшэнні" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Выпраўленні хібаў і асноўныя паляпшэнні" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Агульныя паляпшэнні" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Выпраўленні хібаў" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Падтрымка і рэалізацыя гісторыі Solaris" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Выпраўленні хібаў і паляпшэнне прадукцыйнасці запуску" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Пазначэнне паляпшэнняў" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1067,13 +1118,13 @@ msgstr "" "Убудаваныя функцыі Konsole\n" "Панэль інструментаў і назвы сеансаў" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1083,25 +1134,25 @@ msgstr "" "Убудаваныя функцыі Konsole\n" "Агульныя паляпшэнні" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Візуальныя эфекты" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1111,132 +1162,132 @@ msgstr "" "Код з праекта kvt\n" "Агульныя паляпшэнні" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Паляпшэнні схемы і вылучэння тэксту" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Порт для SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Порт для FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Таксама мы вельмі ўдзячныя іншым людзям, якія дапамагалі.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Новая ўкладка" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Кланаваць укладку" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Новае &акно" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Закрыць акно" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Закладкі" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Колеравая схема акна" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Кіраванне профілямі..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Актывацыя меню" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Захаваць макет укладак..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Загрузіць макет укладак..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1247,67 +1298,67 @@ msgstr[1] "У гэтым акне запушчаныя %1 працэсы. Хоч msgstr[2] "У гэтым акне запушчана %1 працэсаў. Хочаце выйсці?" msgstr[3] "У гэтым акне запушчана %1 працэсы. Хочаце выйсці?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Пацвердзіць закрыццё" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Закрыць акно" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Закрыць бягучую &ўкладку" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "У гэтым акне адкрыты(а) %1 тэрмінал(ы). Хочаце выйсці?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Профілі" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Асноўныя налады" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Памяць" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Панэль укладак / Падзяляльнікі" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Часовыя файлы" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Мініяцюры" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1391,7 +1442,7 @@ msgstr "Захаваць" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Абнавіць" @@ -1403,29 +1454,29 @@ msgid "Cancel" msgstr "Скасаваць" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Хуткія каманды" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Хуткі доступ" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Хуткія каманды не знойдзены. Вы можаце дадаць іх у \"Убудовы -> Хуткія " "каманды\"" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Убудовы - Хуткія каманды" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Паказваць хуткія каманды" @@ -1465,7 +1516,7 @@ msgid "" msgstr "Сапраўды хочаце выдаліць групу %1 з некалькімі канфігурацыямі?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Сапраўды хочаце выдаліць %1?" @@ -1518,11 +1569,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 - каталог для запісаў SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Канфігурацыя SSH" @@ -1585,95 +1636,95 @@ msgstr "" "zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Ключ SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Выдаліць" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Не змяняць" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "Сапраўды хочаце выдаліць каталог %1 з некалькімі канфігурацыямі SSH?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Выдаліць канфігурацыі SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" "Імпартаваны профіль SSH
        Пэўныя налады даступныя толькі для чытання." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Няма назвы хоста" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Няма назвы" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Калі абрана выкарыстанне файла канфігурацыі SSH, не пазначайце файл ключа " "SSH або імя карыстальніка." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Мусіць быць пазначана імя карыстальніка або ключ SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Няма каталога" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Сеанс SSH павінен мець профіль" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Не ўдалося выдаліць гэты каталог" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Выдаліць каталог і ўсё яго змесціва" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Двойчы пстрыкніце, каб змяніць назву каталога." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Вы не можаце выдаліць аўтаматычна дададзены запіс." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Выдаліць абраны запіс" @@ -1866,25 +1917,25 @@ msgstr "Параметры вываду" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Рэжым &друку (чорны тэкст, без фону)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Вывад маштабу" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Убудаваныя" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Прадвызначаны профіль" @@ -1943,17 +1994,39 @@ msgstr "Двойчы пстрыкніце, каб змяніць спалучэ msgid "Tab Properties" msgstr "Уласцівасці ўкладкі" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Захаваць вывад з %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 - хібны URL-адрас, немагчыма захаваць вывад." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Не ўдалося стварыць файл аўтазахавання ў %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Спыненне аўтазахавання праз пераключэнне экранаў." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Файл аўтазахавання быў зменены звонку. Гэта перарвала далейшае аўтазахаванне." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Не ўдалося абнавіць стан аўтазахавання праз змену даных вываду." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1989,81 +2062,102 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Цёмная пасцель" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Зялёны на чорным" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Колеры Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Чырвоны на чорным" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized (светлая)" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Белы на чорным" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Прадвызначаная (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Кансоль Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Кансоль Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Пошук:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Увядзіце тэкст для пошуку" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Гукавое апавяшчэнне ў \"%1\" (сеанс \"%2\")" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Не ўдалося знайсці двайковы файл: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Увага: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Не ўдалося знайсці інтэрактыўную абалонку для запуску." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2072,362 +2166,364 @@ msgstr "" "Не ўдалося знайсці \"%1\", замест гэтага запускаецца \"%2\". Праверце налады " "профілю." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Не ўдалося запусціць \"%1\" з аргументамі \"%2\"." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Бяздзейнасць у \"%1\" (сеанс \"%2\")" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Паказаць сеанс" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"Толькі што выкарыстоўваліся метады D-Bus sendText/runCommand. Гэтыя метады " -"могуць быць небяспечнымі, калі да іх адкрыты публічны доступ. Пры жаданні " -"можна закрыць публічны доступ да іх шляхам паўторнага кампілявання Konsole. " -"

        Гэтае папярэджанне будзе паказвацца для гэтага асобніка Konsole толькі " -"адзін раз.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Завершана" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Праграма \"%1\" аварыйна завяршыла працэс." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Праграма \"%1\" закрылася са статусам %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Ход выканання працэсаў ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Актыўнасць у \"%1\" (сеанс \"%2\")" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Працэс \"%1\" завершаны ў сеансе \"%2\"" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole не ведае, як адкрыць закладку: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Пошук \"%1\" з дапамогай" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Наладжванне сеціўных скаротаў..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Скончыць сеанс" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Адкрыць кіраўнік файлаў" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Капіяваць" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Падзяліць па вертыкалі" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Падзяліць па гарызанталі" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Скапіяваць апроч падказак" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Скапіяваць карыстальніцкі вывад" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Скапіяваць вывад каманды" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Уставіць абранае" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Пошук у сеціве" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Абраць усё" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Абраць &рэжым" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Абраць &радок" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Захаваць вывад &як..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Аўтазахаванне выходных даных як..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Спыніць аўтазахаванне" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Друкаванне..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Падладжванне журнала вываду..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Ачысціць журнал вываду" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Ачысціць журнал вываду і скінуць" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Наступны профіль" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Папярэдні профіль" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Пераключыць профіль" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Вызначыць &кадаванне" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Дазволіць пракручванне мышшу" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Толькі чытанне" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Наладжванне або змена назвы ўкладкі..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Усе ўкладкі ў бягучым акне" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Абраць укладкі..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Няма" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Скапіяваць увод у" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Запампоўванне па пратаколе &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Аднаразовыя сачэнні" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Адсочваць &падказкі" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Адсочваць &актыўнасць" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Адсочваць &бяздзейнасць" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Адсочваць завяршэнне працэсу" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Павялічыць шрыфт" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Паменшыць шрыфт" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Скінуць памер шрыфту" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Адправіць сігнал" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Прыпыніць задачу" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Працягнуць выкананне задачы" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Павесіць" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Перарваць выкананне задачы" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Знішчыць задачу" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Забіць задачу" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Сігнал карыстальніка &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Сігнал карыстальніка &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Стварыць новы профіль..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Рэдагаваць бягучы профіль..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "У гэтым сеансе працуе праграма. Сапраўды хочаце закрыць?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "У гэтым сеансе працуе праграма \"%1\". Сапраўды хочаце закрыць?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Пацвердзіць закрыццё" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Закрыць праграму" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2436,37 +2532,40 @@ msgstr "" "Праграма ў гэтым сеансе не хоча завяршаць працэс. Сапраўды хочаце прымусова " "знішчыць працэс?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Праграма \"%1\" ў гэтым сеансе не хоча завяршаць працэс. Сапраўды хочаце " "прымусова знішчыць працэс?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Знішчыць працэс праграмы" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Падказка абалонкі паказваецца ў сеансе \"%1\"" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Адкрыць &бягучы каталог з дапамогай" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." -msgstr "Захаваць спампаваныя з дапамогай пратакола ZModem файлы у..." +msgstr "Захаваць спампаваныя з дапамогай пратаколу ZModem файлы у..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2477,7 +2576,7 @@ msgstr "" "сістэме не знойдзена адпаведнага праграмнага забеспячэння ZModem.

        Вы " "можаце ўсталяваць пакет \"rzsz\" або \"lrzsz\".

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " @@ -2485,7 +2584,7 @@ msgstr "" "

        У бягучым сеансе ўжо выконваецца працэс перадачы файлаў па пратаколе " "ZModem.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2494,10 +2593,10 @@ msgstr "" "

        У гэтай сістэме не знойдзена адпаведнага праграмнага забеспячэння ZModem." "

        Магчыма, вы захочаце ўсталяваць пакет \"rzsz\" або \"lrzsz\".

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" -msgstr "Абярыце файлы для запампоўвання з дапамогай пратакола ZModem" +msgstr "Абярыце файлы для запампоўвання з дапамогай пратаколу ZModem" #: session/SessionListModel.cpp:89 #, kde-format @@ -2517,144 +2616,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Наладжванне" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Пошук:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Уключыць гарачыя клавішы для меню" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Калі ўключана, налады профілю будуць ігнаравацца" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Запамінаць памер акна" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Паказваць загаловак акна на панэлі загалоўкаў" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Факусавацца на тэрміналах, калі курсор мышы перамяшчаецца побач з імі" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Супастаўленне з дапамогай рэгулярных выразаў" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Падчас запуску Konsole выкарыстоўваць наяўны працэс, калі гэта магчыма" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Запускаць усе вокны Konsole у межах аднаго працэсу" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Падсвятляць усе супадзенні" +msgid "If enabled, profile settings will be ignored" +msgstr "Калі ўключана, налады профілю будуць ігнаравацца" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Вызначае, ці будзе пошук зважаць на рэгістр" +msgid "Remember window size" +msgstr "Запамінаць памер акна" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Зважаць на рэгістр" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Устаўлянне новых ўкладак:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Выдаліць загаловак і рамку акна" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Працэс і акно:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Апавяшчэнні:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Усе дыялогавыя вокны будуць паказвацца зноў" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Паказваць паведамленні, для якіх было абрана \"Больш не пытацца\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Вызначае, ці павінен пошук пачынацца знізу" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Пошук у адваротным кірунку" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Вызначае, ці будзе пошук зважаць на рэгістр" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Зважаць на рэгістр" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Працэс і акно:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Падсвятляць усе супадзенні" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Пошук:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Вызначае, ці павінен пошук спыняцца замест цыклічнага пошуку" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Не цыклічна" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Уключыць гарачыя клавішы для меню" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Факусавацца на тэрміналах, калі курсор мышы перамяшчаецца побач з імі" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Усе дыялогавыя вокны будуць паказвацца зноў" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Паказваць паведамленні, для якіх было абрана \"Больш не пытацца\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Паказваць загаловак акна на панэлі загалоўкаў" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Выдаліць загаловак і рамку акна" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Супастаўленне з дапамогай рэгулярных выразаў" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2679,71 +2805,110 @@ msgstr "Выкарыстоўваць бягучы памер акна пры н msgid "The window size will be saved upon exiting Konsole" msgstr "Пры выхадзе з Konsole будзе захоўвацца памер акна" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Падчас запуску Konsole выкарыстоўваць наяўны працэс, калі гэта магчыма" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Шырыня мініяцюр" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Вызначае шырыню мініяцюр" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Выкарыстоўваць Shift для паказу мініяцюр" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Выкарыстоўваць Alt для паказу мініяцюр" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Выкарыстоўваць Ctrl для паказу мініяцюр" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Пошук ўлічвае рэгістр" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Падсвятляць усе супадзенні пошуку" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Вызначае, ці павінен падсвятляцца тэкст, які адпавядае запыту" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Спыненне пры дасягненні канца замест цыклічнага пошуку" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Кіраванне стварэннем даччыных кантрольных групаў для асобных укладак" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2753,92 +2918,99 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Кіраванне бачнасцю ўсёй панэлі ўкладак" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Кіраванне памерамі ручкі паміж панэлямі" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Кіраванне пазіцыяй панэлі ўкладак" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Кіраванне візуальным стылем панэлі ўкладак" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Выкарыстоўваць вызначаны карыстальнікам файл .css" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Файл .css для стылю панэлі ўкладак" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Дазволіць закрыццё адкрытых укладак націсканнем сярэдняй кнопкі мышы" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Кіраванне бачнасцю на панэлі ўкладак кнопкі \"Новая ўкладка\"" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Кіраванне бачнасцю на панэлі ўкладак кнопкі \"Новая ўкладка\"" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Кіраванне месцам размяшчэння кнопкі \"Закрыць укладку\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Кіраванне месцам устаўляння новай укладкі" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Павелічэнне шырыні ўкладак" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Выкарыстоўваць для файлаў журнала вываду агульнасістэмны каталог" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" "Выкарыстоўваць для файлаў журнала вываду каталог, вызначаны карыстальнікам" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Выкарыстоўваць для файлаў журнала вываду вызначаны каталог" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Выкарыстоўваць для файлаў журнала вываду гэты каталог" @@ -2850,16 +3022,23 @@ msgid "Enable memory monitoring:" msgstr "Уключыць сачэнне за памяццю:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Змены пачнуць дзейнічаць пасля перазапуску. Калі ўключана, Konsole стала " "спажывае памяць. \n" @@ -2870,13 +3049,13 @@ msgstr "" "працэсу Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Абмежаванне памяці:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " Мб" @@ -3037,125 +3216,148 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Няма" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Паказваць кнопку закрыцця ўкладкі:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Заўсёды" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Ніколі" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Рознае:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Паказваць кнопку \"Новая ўкладка\"" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Павялічваць шырыню асобных укладак да памераў акна" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Выкарыстоўваць табліцу стыляў, вызначаную карыстальнікам:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(няма)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Паводзіны" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Устаўлянне новых ўкладак:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "У &канцы" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Пасля &бягучай укладкі" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Закрываць укладку націсканнем сярэдняй кнопкі мышы" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Падзел" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Паказваць загаловак:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Калі патрэбна" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Ніколі" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Памер ручкі перацягвання:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Маленькі" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Сярэдні" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Вялікі" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3207,12 +3409,12 @@ msgstr "пікс." #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" "

        Каб выкарыстоўваць гэтую функцыю, уключыце Мыш->Рознае->Падкрэсліванне файлаў ў наладах профілю

        " +"\" font-weight:600;\">Мыш->Рознае->Падкрэсліванне файлаў у " +"наладах вашага профілю.

        " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3250,12 +3452,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Уключыць генераванне мініяцюр" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Памер: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3264,52 +3466,52 @@ msgstr[1] "Сапраўды хочаце ўставіць %1 сімвалы?" msgstr[2] "Сапраўды хочаце ўставіць %1 сімвалаў?" msgstr[3] "Сапраўды хочаце ўставіць %1 сімвалы?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Пацвердзіць устаўлянне" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "End Of Text/Interrupt: можа скончыць бягучы працэс" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "End Of Transmission: можа скончыць бягучы працэс" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Bell: паспрабуе выдаць гукавы сігнал" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: прыпыняе вывад" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitute/Suspend: паспрабуе прыпыніць бягучы працэс" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: выкарыстоўваецца для кіравання станам тэрмінала" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "File Separator/Quit: можа перарваць бягучы працэс" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3318,31 +3520,31 @@ msgstr "" "Тэкст, які вы спрабуеце ўставіць, змяшчае схаваныя кіроўныя сімвалы. Хочаце " "адфільтраваць іх?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Пацвердзіць устаўлянне" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Уставіць &без кіроўных сімвалаў" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Уставіць &усё" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Скасаваць" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been прыпынены націсканнем Ctrl+S. Каб аднавіць, націсніце Ctrl+Q." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Гэты тэрмінал даступны толькі для чытання." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "З&мяніць каталог на" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Уставіць &размяшчэнне" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Падзяліць" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Падзяліць па вертыкалі" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Падзяліць па гарызанталі" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Падзяліць аўтаматычна" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Падзяліць па вертыкалі з наступнай укладкі" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Падзяліць па гарызанталі з наступнай укладкі" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Падзяліць аўтаматычна з наступнай укладкі" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Загрузіць новую ўкладку з макетам тэрміналаў 2х2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Загрузіць новую ўкладку з макетам тэрміналаў 2х1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Загрузіць новую ўкладку з макетам тэрміналаў 1х2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Разгорнуты выгляд" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Сціслы выгляд" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Адчапіць бягучы аддзелены &тэрмінал" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Адчапіць бягучую &ўкладку" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Наступная ўкладка" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Папярэдняя ўкладка" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Над тэрміналам" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Пад тэрміналам" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Злева ад тэрмінала" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Справа ад тэрмінала" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Злева ад тэрмінала" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Пад тэрміналам" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Перайсці на апошнюю ўкладку" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Нядаўнія ўкладкі" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Пераключэнне паміж дзвюма ўкладкамі" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Нядаўнія ўкладкі(адваротны парадак)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Разгарнуць бягучыя аддзеленыя тэрміналы" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Разгарнуць бягучыя аддзеленыя тэрміналы" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Пераключыць максімальнае маштабаванне" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Пераключыць максімальнае маштабаванне" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Перамясціць укладку ўправа" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Перамясціць укладку ўлева" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Наладжванне семантычнай інтэграцыі (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Паказваць семантычныя падказкі" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Паказваць нумары радкоў" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Аднолькавы памер усіх аддзеленых тэрміналаў" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Перайсці на ўкладку %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Семантычныя падказкі " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Нумары радкоў " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Захаваць макет укладак" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Макет кампанавання тэрміналаў Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3610,7 +3828,7 @@ msgstr "" "Падчас захавання макета ўзнікла праблема.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3620,13 +3838,13 @@ msgstr "" "Падчас загрузкі макета ўзнікла праблема.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Загрузіць макет укладак" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3725,28 +3943,40 @@ msgstr "&Прадвызначанае кадаванне:" msgid "Shortcut for peeking the primary screen:" msgstr "Цэтлік для прагляду галоўнага экрана:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Інтэрвал паміж аўтазахаваннямі:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " мс" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Нумары радкоў:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Ніколі" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Калі &паказваюцца URL-падказкі" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3782,7 +4012,7 @@ msgstr "Рэдагаваць абраную колеравую схему" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3835,13 +4065,22 @@ msgstr "Маляванне тоўстых шрыфтоў інтэнсіўным #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Выкарыстоўваць абраны шрыфт для сімвалаў замест убудаванага кода" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Выкарыстоўваць лінейныя сімвалы, якія змяшчаюцца ў шрыфце" @@ -3964,29 +4203,45 @@ msgid "Make the cursor blink regularly" msgstr "Курсор пачынае мільгацець" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Уключана" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Актывацыя:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Курсор пачынае мільгацець" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Рознае" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Акно:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3995,145 +4250,145 @@ msgstr "" "Паказваць памер тэрмінала ў слупках і радках у цэнтры акна пасля змены памеру" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Пасля змены памеру тэрмінала паказваць падказку" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Заўсёды інвертаваць колеры абранага тэксту" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Магутнасць зацямнення:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Колер:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Абраць колер, які будзе выкарыстоўвацца для рамкі" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Неактыўныя тэрміналы:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Актыўныя тэрміналы:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Змесціва тэрмінала" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Міжрадковы інтэрвал:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Колькасць пікселяў паміж радкамі" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " пікс." #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Палі:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Выраўноўванне па цэнтры:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Зацямняць неактыўныя вокны" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Зацямненне" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Пазначаць актыўнае акно рамкай" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Рамка" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Паказваць вертыкальныя лініі слупкоў:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" "

        Комплекснае кампанаванне тэксту

        " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Комплекснае кампанаванне тэксту" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Уключыць паслоўны рэжым рэндэрынгу тэксту" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Паслоўны рэжым" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4143,43 +4398,43 @@ msgstr "" "візуалізацыі словы разбіваюцца)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Выкарыстоўваць аднолькавыя атрыбуты для ўсяго слова" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Выводзіць словы з сімвалаў ASCII разам" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Сімвалы ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Выводзіць словы брахманскага пісьма разам" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Сімвалы брахманскага пісьма" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Шрыфт эмодзі:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4189,13 +4444,13 @@ msgstr "" "арабскай, фарсі або іўрыта)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Двухкірункавае адлюстраванне тэксту" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4203,13 +4458,13 @@ msgstr "" "сімвалам" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "прымусовы кірунак тэксту ў радках злева направа" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" @@ -4217,71 +4472,71 @@ msgstr "" "направа." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Сімвалы табліцы перавызначаюць рэжым BiDi" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Не зважаць на wcwidth праблемных сімвалаў" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Перавызначэнне wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Рэдагаваць профіль" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Асноўныя налады" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Укладкі" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Выгляд" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Пракручванне" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Клавіятура" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Прывязванне клавіш" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Мыш" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Дадатковыя налады" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4293,31 +4548,31 @@ msgstr "" "змяніце правы доступу для гэтага файла, або змяніце назву, каб захаваць " "налады ў новым профілі." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Назва профілю пустая. Каб захаваць налады, увядзіце назву." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Ужо існуе профіль з назвай \"%1\"." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Назва профілю перавышае максімальна дазволеную даўжыню (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Падсветленыя сімвалы нельга выкарыстоўваць у назвах профіляў: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Editing profile: %2" #| msgid_plural "Editing %1 profiles: %2" @@ -4328,17 +4583,24 @@ msgstr[1] "Рэдагаванне %1 профіляў: %2" msgstr[2] "Рэдагаванне %1 профіляў: %2" msgstr[3] "Рэдагаванне %1 профіляў: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Стварыць новы профіль" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Рэдагаваць профіль \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Няма" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4350,7 +4612,7 @@ msgstr[1] " слупкі" msgstr[2] " слупкі" msgstr[3] " слупкі" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4362,42 +4624,42 @@ msgstr[1] " радкі" msgstr[2] " радкі" msgstr[3] " радкі" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Сістэмнае гукавое апавяшчэнне" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Сістэмныя апавяшчэнні" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Візуалізацыя гукавога апавяшчэння" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Не зважаць на падзеі для гукавых апавяшчэнняў" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Прадвызначаны профіль для новых сеансаў тэрмінала ў %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Рэдагаваць асяроддзе" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Адна зменная асяроддзя на радок" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4407,23 +4669,23 @@ msgstr[1] " секунды" msgstr[2] " секунд" msgstr[3] " секунды" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Абраць пачатковы каталог" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Атрымаць новыя..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Не ўдалося загрузіць схему %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4432,7 +4694,7 @@ msgstr "" "У гэтай колеравай схеме выкарыстоўваецца празрысты фон, які не " "падтрымліваецца вашым працоўным асяроддзем" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4441,12 +4703,12 @@ msgstr "" "Праграма Konsole была запушчаная да ўключэння эфектаў працоўнага асяроддзя. " "Каб убачыць празрысты фон, вам трэба перазапусціць Konsole." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Прадвызначана для тыпу файла" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4476,7 +4738,7 @@ msgstr "" "будзе праігнараваны, і файл будзе адкрыты ў прадвызначаным тэкставым " "рэдактары." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Адвольная каманда тэкставага рэдактара" @@ -4567,26 +4829,54 @@ msgstr "Абраць пачатковы каталог" msgid "Start in same directory as current session" msgstr "Пачынаць у каталозе бягучага сеанса" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Пачынаць у каталозе бягучага сеанса" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Асяроддзе:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Рэдагаваць спіс зменных асяроддзя і звязаных значэнняў" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Пачатковы памер &тэрмінала:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4599,31 +4889,31 @@ msgstr "" "адключаны, каб гэта працавала.

        " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Рэжым гукавога апавяшчэння тэрмінала:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Семантычная інтэграцыя" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Эмуляцыя стрэлак Уверх/Уніз" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Пстрыканне мышшу ў радку ўводу перамяшчае курсор" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Семантычныя падказкі:" @@ -4633,9 +4923,9 @@ msgstr "Семантычныя падказкі:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4646,9 +4936,9 @@ msgstr "Ніколі" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4659,34 +4949,34 @@ msgstr "Калі паказваюцца URL-падказкі" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Заўсёды" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Радкі крытычных памылак:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Фон крытычных памылак:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Альтэрнатыўныя радкі:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Фон альтэрнатыўных радкоў:" @@ -5044,114 +5334,127 @@ msgid "Scrollback:" msgstr "Журнал вываду:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Пракручванне стрэлкамі уверх/уніз:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Падсвятляць лініі ў тэрмінале" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Схаваны" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Памер кожнай адзнакі (у адсотках ад даўжыні паласы пракручвання):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Падсвятленне:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Пракручванне старонкі на палову вышыні акна" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Палова &вышыні экрана" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Колер адзнак паласы пракручвання:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, fuzzy, kde-format +#| msgid "Color of scrollbar markers:" +msgid "Color of scrollbar search highlighting lines:" +msgstr "Колер адзнак паласы пракручвання:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Перакампаванне радкоў:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Пракручванне на ўсю вышыню акна" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Ус&я вышыня экрана" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Размяшчэнне паласы пракручвання:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Паказваць паласу пракручвання на правым боку акна тэрмінала" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "&Правы бок" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Паказваць паласу пракручвання на левым боку акна тэрмінала" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Левы бок" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Схаваны" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Падсвятленне:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Падсвятляць лініі ў тэрмінале" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Перакампаванне радкоў:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Перакампаноўваць радкі пры змене памеру тэрмінала" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Размяшчэнне паласы пракручвання:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5261,115 +5564,116 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Няма" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Пошук..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Увядзіце тэкст для пошуку" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Далей" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Знайсці наступнае супадзенне для бягучай фразы" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Назад" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Знайсці папярэдняе супадзенне для бягучай фразы" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Паказваць меню параметраў" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Закрыць панэль пошуку" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Зважаць на рэгістр" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Вызначае, ці ўлічвае пошук рэгістр" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Паказваць меню параметраў" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Закрыць панэль пошуку" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Супадзенне з рэгулярным выразам" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Падсвятляць усе супадзенні" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Вызначае, ці трэба падсвятляць супадзенні" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Пошук у адваротным кірунку" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Вызначае, ці павінен пошук пачынацца знізу" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Не цыклічна" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Вызначае, ці павінен пошук спыняцца замест цыклічнага пошуку" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Шукаць бягучую фразу знізу" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5380,7 +5684,7 @@ msgstr "Шукаць бягучую фразу зверху" msgid "Print Shell" msgstr "Друкаванне абалонкі" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5420,6 +5724,13 @@ msgstr "Фармат загалоўка звычайнай укладкі" msgid "Tab Co&lor:" msgstr "Ко&лер укладкі:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Выбраць колер &карткі" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5513,36 +5824,60 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Аднавіць тэрмінал" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Адкрыць новую ўкладку" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Адмацаваць укладку" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Закрыць гэтую ўкладку" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Адмацаваць укладку" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Наладжванне або змена назвы ўкладкі..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Закрыць укладку" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

        This warning will only show once for this Konsole instance.

        " +#~ msgstr "" +#~ "Толькі што выкарыстоўваліся метады D-Bus sendText/runCommand. Гэтыя " +#~ "метады могуць быць небяспечнымі, калі да іх адкрыты публічны доступ. Пры " +#~ "жаданні можна закрыць публічны доступ да іх шляхам паўторнага " +#~ "кампілявання Konsole.

        Гэтае папярэджанне будзе паказвацца для гэтага " +#~ "асобніка Konsole толькі адзін раз.

        " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Зважаць на рэгістр" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Няма" @@ -5959,9 +6294,6 @@ msgstr "Закрыць укладку" #~ msgid "New" #~ msgstr "Новы" -#~ msgid "Select &Tab Color" -#~ msgstr "Выбраць колер &карткі" - #, fuzzy #~| msgid "Transparent, Dark Background" #~ msgid "Enable transparent backgrounds" @@ -6553,9 +6885,6 @@ msgstr "Закрыць укладку" #~ msgid "Overwrite" #~ msgstr "Перазапісаць" -#~ msgid "Unable to write to file." -#~ msgstr "Немагчыма запісаць у файл." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/be@latin/konsole.po b/local/recipes/kde/konsole/source/po/be@latin/konsole.po index 657a8643c0..09436434e8 100644 --- a/local/recipes/kde/konsole/source/po/be@latin/konsole.po +++ b/local/recipes/kde/konsole/source/po/be@latin/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 86ff119b1606fcaa910d6b44fc14b611\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2022-09-04 10:59+0300\n" "Last-Translator: Zmicier \n" "Language-Team: Belarusian \n" @@ -56,7 +56,7 @@ msgstr "Vyhliad" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Padzialić" @@ -92,7 +92,7 @@ msgid "S&crollback" msgstr "&Žurnal vyvadu" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Paneĺ instrumientaŭ sieansa" @@ -179,48 +179,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Chavać paneĺ mieniu pierakryvajučy pradvyznačany paramietr" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Pakazvać paneĺ ukladak pierakryvajučy pradvyznačany paramietr" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Chavać paneĺ ukladak pierakryvajučy pradvyznačany paramietr" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Pakazvać paneĺ ukladak pierakryvajučy pradvyznačany paramietr" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Chavać paneĺ ukladak pierakryvajučy pradvyznačany paramietr" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Zapuskać Konsole u poŭnaekrannym režymie" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Adkliučyć prazrysty fon, navat kali sistema jaho padtrymlivaje." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Spis dastupnych profiliaŭ" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Spis nazvaŭ ŭlascivasciaŭ profiliu i ich typ (dlia vykarystannia z -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Zmianić značennie ŭlascivasci profiliu." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +246,7 @@ msgstr "" "Zahad dlia vykanannia. Hety paramietr achoplivaje ŭsie paramietry, jakija " "znachodziacca za im, tamu vykarystoŭvajcie jaho apošnim." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -241,13 +257,13 @@ msgstr "" "parušaje funkcyjanaĺnasć. Napryklad, --new-tab. U boĺšasci vypadkaŭ patrebna " "dlia adladžvannia." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Arhumienty, jakija byli adpraŭlienyja zahadu" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -267,157 +283,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Asnoŭny kolier" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fon" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Kolier 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Kolier 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Kolier 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Kolier 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Kolier 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Kolier 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Kolier 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Kolier 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Asnoŭny kolier (nasyčany)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fon (nasyčany)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Kolier 1 (nasyčany)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Kolier 2 (nasyčany)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Kolier 3 (nasyčany)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Kolier 4 (nasyčany)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Kolier 5 (nasyčany)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Kolier 6 (nasyčany)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Kolier 7 (nasyčany)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Kolier 8 (nasyčany)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Asnoŭny kolier (ćmiany)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fon (ćmiany)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Kolier 1 (ćmiany)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Kolier 2 (ćmiany)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Kolier 3 (ćmiany)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Kolier 4 (ćmiany)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Kolier 5 (ćmiany)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Kolier 6 (ćmiany)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Kolier 7 (ćmiany)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Kolier 8 (ćmiany)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -677,6 +693,41 @@ msgstr "Uviersie" msgid "AaZz09..." msgstr "AaJaja09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Chost: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Pradvyznačany]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -722,7 +773,7 @@ msgstr "" msgid "Copy Location" msgstr "Skapijavać razmiaščennie" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Stvarennie minijaciur" @@ -753,13 +804,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Abrać šryft" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Pakazać usie šryfty" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -800,17 +851,17 @@ msgstr "Spalučennie klaviš" msgid "Output" msgstr "Vyvad" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Novy spis pryviazanych klaviš" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Redahavać spis pryviazanych klaviš" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Nieĺha zachavać schiemu pryviazvannia klaviš z pustym apisanniem." @@ -818,7 +869,7 @@ msgstr "Nieĺha zachavać schiemu pryviazvannia klaviš z pustym apisanniem." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -852,225 +903,225 @@ msgstr "Uvod:" msgid "Output:" msgstr "Vyvad:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emuliatar terminala" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, raspracoŭniki Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Haloŭny supravadžaĺnik, vypraŭlienni pamylak i ahuĺnyja paliapšenni" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Papiaredni supravadžaĺnik, port na KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Pieršapačatkovy stvaraĺnik" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Asnoŭny refaktarynh, vypraŭlienni chibaŭ i asnoŭnyja paliapšenni" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Vypraŭlienni chibaŭ i ahuĺnyja paliapšenni" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Vypraŭlienni chibaŭ i asnoŭnyja paliapšenni" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Ahuĺnyja paliapšenni" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Vypraŭlienni chibaŭ" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Padtrymka i realizacyja historyi Solaris" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Vypraŭlienni chibaŭ i paliapšennie pradukcyjnasci zapusku" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Paznačennie paliapšenniaŭ" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1080,13 +1131,13 @@ msgstr "" "Ubudavanyja funkcyi Konsole\n" "Paneĺ instrumientaŭ i nazvy sieansaŭ" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1096,25 +1147,25 @@ msgstr "" "Ubudavanyja funkcyi Konsole\n" "Ahuĺnyja paliapšenni" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vizuaĺnyja efiekty" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1124,120 +1175,120 @@ msgstr "" "Kod z prajekta kvt\n" "Ahuĺnyja paliapšenni" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Paliapšenni schiemy i vylučennia tekstu" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Port dlia SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Port dlia FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Taksama my vieĺmi ŭdziačnyja inšym liudziam, jakija dapamahali.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Novaja ŭkladka" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klanavać ukladku" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Novaje &akno" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zakryć akno" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Zakladki" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Kolieravaja schiema akna" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Kiravannie profiliami..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktyvacyja mieniu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Save tab layout to file" @@ -1245,7 +1296,7 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Zachavać makiet ukladak u fajl" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Load tab layout from file" @@ -1253,7 +1304,7 @@ msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Zahruzić makiet ukladak z fajla" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1264,67 +1315,67 @@ msgstr[1] "U hetym aknie zapuščanyja %1 pracesy. Chočacie vyjsci?" msgstr[2] "U hetym aknie zapuščana %1 pracesaŭ. Chočacie vyjsci?" msgstr[3] "U hetym aknie zapuščana %1 pracesy. Chočacie vyjsci?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Pacvierdzić zakryccio" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Zakryć akno" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zakryć biahučuju &ŭkladku" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "U hetym aknie adkryty(a) %1 terminal(y). Chočacie vyjsci?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profili" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Asnoŭnyja nalady" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Paneĺ ukladak / Padzialiaĺniki" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Časovyja fajly" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Minijaciury" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1410,7 +1461,7 @@ msgstr "Zachavać" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Abnavić" @@ -1422,29 +1473,29 @@ msgid "Cancel" msgstr "Skasavać" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Chutkija zahady" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, fuzzy, kde-format #| msgid "Show Quick Commands" msgid "Show Quick Access" msgstr "Pakazvać chutkija zahady" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Quick Commands" msgid "Plugins - Quick Commands" msgstr "Chutkija zahady" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Pakazvać chutkija zahady" @@ -1484,7 +1535,7 @@ msgid "" msgstr "Sapraŭdy chočacie vydalić hrupu %1 z niekaĺkimi kanfihuracyjami?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Sapraŭdy chočacie vydalić %1?" @@ -1537,11 +1588,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 - kataloh dlia zapisaŭ SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Kanfihuracyja SSH" @@ -1607,96 +1658,96 @@ msgstr "" "sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Kliuč SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Vydalić" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, fuzzy, kde-format #| msgid "Dont Change" msgid "Don't Change" msgstr "Nie zmianiać" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "Sapraŭdy chočacie vydalić kataloh %1 z niekaĺkimi kanfihuracyjami SSH?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Vydalić kanfihuracyi SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Niama nazvy chosta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Niama nazvy" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Kali abrana vykarystannie fajla kanfihuracyi SSH, nie paznačajcie fajl " "kliuča SSH abo imia karystaĺnika." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Musić być paznačana imia karystaĺnika abo kliuč SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Niama kataloha" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Sieans SSH pavinien mieć profiĺ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Nie ŭdalosia vydalić hety kataloh" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Vydalić kataloh i ŭsio jaho zmiesciva" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Dvojčy pstryknicie, kab zmianić nazvu kataloha." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "You cant delete an automatically added entry." msgid "You can't delete an automatically added entry." msgstr "Vy nie možacie vydalić aŭtamatyčna dadadzieny zapis." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Vydalić abrany zapis" @@ -1896,25 +1947,25 @@ msgstr "Paramietry vyvadu" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Režym &druku (čorny tekst, biez fonu)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Vyvad maštabu" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Pradvyznačany profiĺ" @@ -1978,17 +2029,39 @@ msgstr "Dvojčy pstryknicie, kab zmianić spalučennie klaviš" msgid "Tab Properties" msgstr "Ulascivasci ŭkladki" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Zachavać vyvad z %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 - chibny URL-adras, niemahčyma zachavać vyvad." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Niemahčyma zapisać u fajl." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2024,82 +2097,103 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Ciomnaja pascieĺ" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zialiony na čornym" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Koliery Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Čyrvony na čornym" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized (svietlaja)" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Biely na čornym" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Pradvyznačanaja (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Kansoĺ Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Kansoĺ Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Pošuk:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Uviadzicie tekst dlia pošuku" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in %1 (Session %2)" msgid "Bell in '%1' (Session '%2')" msgstr "Hukavoje apaviaščennie ŭ \"%1\" (sieans \"%2\")" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nie ŭdalosia znajsci dvajkovy fajl: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Uvaha: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nie ŭdalosia znajsci interaktyŭnuju abalonku dlia zapusku." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, fuzzy, kde-format #| msgid "" #| "Could not find %1, starting %2 instead. Please check your profile " @@ -2111,213 +2205,216 @@ msgstr "" "Nie ŭdalosia znajsci \"%1\", zamiest hetaha zapuskajecca \"%2\". Praviercie " "nalady profiliu." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, fuzzy, kde-format #| msgid "Could not start program %1 with arguments %2." msgid "Could not start program '%1' with arguments '%2'." msgstr "Nie ŭdalosia zapuscić \"%1\" z arhumientami \"%2\"." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in %1 (Session %2)" msgid "Silence in '%1' (Session '%2')" msgstr "Biazdziejnasć u \"%1\" (sieans \"%2\")" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Pakazać sieans" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"Toĺki što vykarystoŭvalisia mietady D-Bus sendText/runCommand. Hetyja " -"mietady mohuć być niebiaspiečnymi, kali da ich adkryty publičny dostup. Pry " -"žadanni možna zakryć publičny dostup da ich šliacham paŭtornaha " -"kampiliavannia Konsole.

        Hetaje papiaredžannie budzie pakazvacca dlia " -"hetaha asobnika Konsole toĺki adzin raz.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Zavieršana" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Program %1 crashed." msgid "Program '%1' crashed." msgstr "Prahrama \"%1\" avaryjna zaviaršyla praces." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format #| msgid "Program %1 exited with status %2." msgid "Program '%1' exited with status %2." msgstr "Prahrama \"%1\" zakrylasia sa statusam %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Chod vykanannia pracesaŭ ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in %1 (Session %2)" msgid "Activity in '%1' (Session '%2')" msgstr "Aktyŭnasć u \"%1\" (sieans \"%2\")" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, fuzzy, kde-format #| msgid "The process %1 has finished running in session %2" msgid "The process '%1' has finished running in session '%2'" msgstr "Praces \"%1\" zavieršany ŭ sieansie \"%2\"" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole nie viedaje, jak adkryć zakladku: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search for %1 with" msgid "Search for '%1' with" msgstr "Pošuk \"%1\" z dapamohaj" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Naladžvannie sieciŭnych skarotaŭ..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Skončyć sieans" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Adkryć kiraŭnik fajlaŭ" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kapijavać" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Padzialić pa viertykali" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Padzialić pa haryzantali" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Skapijavać aproč padkazak" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Skapijavać karystaĺnicki vyvad" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Skapijavać vyvad zahadu" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Ustavić abranaje" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Pošuk u siecivie" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Abrać usio" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Abrać &radok" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Abrać &radok" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Zachavać vyvad &jak..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Zachavać vyvad &jak..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Drukavannie..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Padladžvannie žurnala vyvadu..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Ačyscić žurnal vyvadu" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Ačyscić žurnal vyvadu i skinuć" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Redahavać profiĺ" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Papiaredni vyhliad" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Pierakliučyć profiĺ" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Vyznačyć &kadavannie" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, fuzzy, kde-format #| msgctxt "" #| "@item:inmenu Allows terminal applications to request mouse tracking" @@ -2326,7 +2423,7 @@ msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Dazvolić prakručvannie myššu" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2334,141 +2431,141 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Toĺki dlia čytannia" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Naladžvannie abo zmiena nazvy ŭkladki..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Usie ŭkladki ŭ biahučym aknie" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Abrać ukladki..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Niama" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Skapijavać uvod u" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Zapampoŭvannie pa pratakolie &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Adsočvać &aktyŭnasć" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Adsočvać &aktyŭnasć" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Adsočvać &biazdziejnasć" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Adsočvać zaviaršennie pracesu" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Pavialičyć šryft" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Pamienšyć šryft" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Skinuć pamier šryftu" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Adpravić sihnal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Prypynić zadaču" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Praciahnuć vykanannie zadačy" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Paviesić" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Pierarvać vykanannie zadačy" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Zniščyć zadaču" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Zabić zadaču" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Sihnal karystaĺnika &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Sihnal karystaĺnika &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Stvaryć novy profiĺ..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Redahavać biahučy profiĺ..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "U hetym sieansie pracuje prahrama. Sapraŭdy chočacie zakryć?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, fuzzy, kde-format #| msgid "" #| "The program %1 is currently running in this session. Are you sure you " @@ -2478,18 +2575,18 @@ msgid "" "want to close it?" msgstr "U hetym sieansie pracuje prahrama \"%1\". Sapraŭdy chočacie zakryć?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Pacvierdzić zakryccio" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Zakryć prahramu" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2498,40 +2595,40 @@ msgstr "" "Prahrama ŭ hetym sieansie nie choča zaviaršać praces. Sapraŭdy chočacie " "prymusova zniščyć praces?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program %1 is in this session would not die. Are you sure you want " #| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Prahrama \"%1\" ŭ hetym sieansie nie choča zaviaršać praces. Sapraŭdy " "chočacie prymusova zniščyć praces?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Zniščyć praces prahramy" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Adkryć &biahučy kataloh z dapamohaj" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Zachavać spampavanyja z dapamohaj pratakola ZModem fajly u..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

        A ZModem file transfer attempt has been detected, but no suitable " @@ -2546,7 +2643,7 @@ msgstr "" "hetaj sistemie nie znojdziena adpaviednaha prahramnaha zabiespiačennia " "ZModem.

        Vy možacie ŭstaliavać pakunak \"rzsz\" abo \"lrzsz\".

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " @@ -2554,7 +2651,7 @@ msgstr "" "

        U biahučym sieansie ŭžo vykonvajecca praces pieradačy fajlaŭ pa " "pratakolie ZModem.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

        No suitable ZModem software was found on this system.

        You may " @@ -2567,7 +2664,7 @@ msgstr "" "ZModem.

        Mahčyma, vy zachočacie ŭstaliavać pakunak \"rzsz\" abo \"lrzsz" "\".

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Abiarycie fajly dlia zapampoŭvannia z dapamohaj pratakola ZModem" @@ -2590,147 +2687,174 @@ msgctxt "@title:window" msgid "Configure" msgstr "Naladžvannie" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Pošuk:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Ukliučyć haračyja klavišy dlia mieniu" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Kali ŭkliučana, nalady profiliu buduć ihnaravacca" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Zapaminać pamier akna" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Pakazvać zahalovak akna na paneli zahaloŭkaŭ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" -"Fakusavacca na terminalach, kali kursor myšy pieramiaščajecca pobač z imi" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Supastaŭliennie z dapamohaj rehuliarnych vyrazaŭ" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Padčas zapusku Konsole vykarystoŭvać najaŭny praces, kali heta mahčyma" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Zapuskać usie vokny Konsole u miežach adnaho pracesu" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Padsviatliać usie supadzienni" +msgid "If enabled, profile settings will be ignored" +msgstr "Kali ŭkliučana, nalady profiliu buduć ihnaravacca" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Vyznačaje, ci budzie pošuk zvažać na rehistr" +msgid "Remember window size" +msgstr "Zapaminać pamier akna" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Zvažać na rehistr" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Ustaŭliannie novych ŭkladak:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Vydalić zahalovak i ramku akna" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Praces i akno:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Apaviaščenni:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Usie dyjalohavyja vokny buduć pakazvacca znoŭ" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, fuzzy, kde-format -#| msgid "Enable all \"Dont Ask Again\" messages" -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Pakazvać paviedamlienni, dlia jakich bylo abrana \"Boĺš nie pytacca\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Vyznačaje, ci pavinien pošuk pačynacca znizu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Pošuk u advarotnym kirunku" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Vyznačaje, ci budzie pošuk zvažać na rehistr" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Zvažać na rehistr" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Praces i akno:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Padsviatliać usie supadzienni" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Pošuk:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Vyznačaje, ci pavinien pošuk pačynacca znizu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Ukliučyć haračyja klavišy dlia mieniu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" +"Fakusavacca na terminalach, kali kursor myšy pieramiaščajecca pobač z imi" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Usie dyjalohavyja vokny buduć pakazvacca znoŭ" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, fuzzy, kde-format +#| msgid "Enable all \"Dont Ask Again\" messages" +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Pakazvać paviedamlienni, dlia jakich bylo abrana \"Boĺš nie pytacca\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Pakazvać zahalovak akna na paneli zahaloŭkaŭ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Vydalić zahalovak i ramku akna" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Supastaŭliennie z dapamohaj rehuliarnych vyrazaŭ" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2756,71 +2880,110 @@ msgstr "Vykarystoŭvać biahučy pamier akna pry nastupnym zapusku" msgid "The window size will be saved upon exiting Konsole" msgstr "Pry vychadzie z Konsole budzie zachoŭvacca pamier akna" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Padčas zapusku Konsole vykarystoŭvać najaŭny praces, kali heta mahčyma" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Šyrynia minijaciur" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Vyznačaje šyryniu minijaciur" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Vykarystoŭvać Shift dlia pakazu minijaciur" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Vykarystoŭvać Alt dlia pakazu minijaciur" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Vykarystoŭvać Ctrl dlia pakazu minijaciur" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Pošuk ŭličvaje rehistr" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Padsviatliać usie supadzienni pošuku" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Vyznačaje, ci pavinien padsviatliacca tekst, jaki adpaviadaje zapytu" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2828,81 +2991,88 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Kiravannie bačnasciu ŭsioj paneli ŭkladak" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Kiravannie pamierami ručki pamiž paneliami" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Kiravannie pazicyjaj paneli ŭkladak" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Kiravannie vizuaĺnym styliem paneli ŭkladak" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Vykarystoŭvać vyznačany karystaĺnikam fajl .css" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Fajl .css dlia styliu paneli ŭkladak" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" "Dazvolić zakryccio adkrytych ukladak naciskanniem siaredniaj knopki myšy" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of New Tab button on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Kiravannie bačnasciu na paneli ŭkladak knopki \"Novaja ŭkladka\"" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of New Tab button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Kiravannie bačnasciu na paneli ŭkladak knopki \"Novaja ŭkladka\"" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Kiravannie miescam razmiaščennia knopki \"Zakryć ukladku\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Kiravannie miescam ustaŭliannia novaj ukladki" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Pavieličennie šyryni ŭkladak" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Vykarystoŭvać dlia fajlaŭ žurnala vyvadu ahuĺnasistemny kataloh" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, fuzzy, kde-format #| msgid "For scrollback files, use users specific folder location" msgid "For scrollback files, use user's specific folder location" @@ -2910,13 +3080,13 @@ msgstr "" "Vykarystoŭvać dlia fajlaŭ žurnala vyvadu kataloh, vyznačany karystaĺnikam" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Vykarystoŭvać dlia fajlaŭ žurnala vyvadu vyznačany kataloh" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Vykarystoŭvać dlia fajlaŭ žurnala vyvadu hety kataloh" @@ -2929,26 +3099,24 @@ msgid "Enable memory monitoring:" msgstr "Nazirannie za ŭkladkami" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3112,126 +3280,149 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Niama" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Pakazvać knopku zakryccia ŭkladki:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Zaŭsiody" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Nikoli" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Roznaje:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show New Tab button" msgid "Show 'New Tab' button" msgstr "Pakazvać knopku \"Novaja ŭkladka\"" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Pavialičvać šyryniu asobnych ukladak da pamieraŭ akna" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Vykarystoŭvać tablicu styliaŭ, vyznačanuju karystaĺnikam:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(niama)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Pavodziny" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Ustaŭliannie novych ŭkladak:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "U &kancy" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Paslia &biahučaj ukladki" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Zakryvać ukladku naciskanniem siaredniaj knopki myšy" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Padziel" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Pakazvać zahalovak:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Kali patrebna" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nikoli" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Pamier ručki pieraciahvannia:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Malieńki" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Siaredni" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Vialiki" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3280,11 +3471,15 @@ msgstr "piks." #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" "

        Kab vykarystoŭvać hetuju funkcyju, ukliučycie Myš->Roznaje->Padkreslivannie

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Dvuchkirunkavaje adliustravannie tekstu" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4251,46 +4499,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, fuzzy, kde-format #| msgid "Word characters:" msgid "ASCII characters " msgstr "Sloŭnyja simvaly:" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Match current character" msgid "Brahmic scripts characters" msgstr "Adpaviednasć biahučamu simvalu" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font:" msgid "Emoji Font:" msgstr "Šryft:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4300,37 +4548,37 @@ msgstr "" "dlia arabskaj, farsi abo iŭryta)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Dvuchkirunkavaje adliustravannie tekstu" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Paste &without control characters" @@ -4338,59 +4586,59 @@ msgid "Ignore wcwidth of problematic characters" msgstr "Ustavić &biez kiroŭnych simvalaŭ" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Redahavać profiĺ" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Asnoŭnyja nalady" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Ukladki" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Vyhliad" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Prakručvannie" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klavijatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Pryviazvannie klaviš" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Myš" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Dadatkovyja nalady" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4402,31 +4650,31 @@ msgstr "" ">Abo zmianicie pravy dostupu dlia hetaha fajla, abo zmianicie nazvu, kab " "zachavać nalady ŭ novym profili." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Nazva profiliu pustaja. Kab zachavać nalady, uviadzicie nazvu." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Užo isnuje profiĺ z nazvaj \"%1\"." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Editing profile: %2" #| msgid_plural "Editing %1 profiles: %2" @@ -4437,17 +4685,24 @@ msgstr[1] "Redahavannie %1 profiliaŭ: %2" msgstr[2] "Redahavannie %1 profiliaŭ: %2" msgstr[3] "Redahavannie %1 profiliaŭ: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Stvaryć novy profiĺ" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Redahavać profiĺ \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Niama" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4459,7 +4714,7 @@ msgstr[1] " slupki" msgstr[2] " slupki" msgstr[3] " slupki" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4471,42 +4726,42 @@ msgstr[1] " radki" msgstr[2] " radki" msgstr[3] " radki" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sistemnaje hukavoje apaviaščennie" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Sistemnyja apaviaščenni" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Vizualizacyja hukavoha apaviaščennia" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Nie zvažać na padziei dlia hukavych apaviaščenniaŭ" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Pradvyznačany profiĺ dlia novych sieansaŭ terminala ŭ %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Redahavać asiaroddzie" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Adna zmiennaja asiaroddzia na radok" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4516,24 +4771,24 @@ msgstr[1] " siekundy" msgstr[2] " siekund" msgstr[3] " siekundy" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Abrać pačatkovy kataloh" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Novy..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Nie ŭdalosia zahruzić schiemu %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4542,7 +4797,7 @@ msgstr "" "U hetaj kolieravaj schiemie vykarystoŭvajecca prazrysty fon, jaki nie " "padtrymlivajecca vašym pracoŭnym asiaroddziem" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4551,13 +4806,13 @@ msgstr "" "Prahrama Konsole byla zapuščanaja da ŭkliučennia efiektaŭ pracoŭnaha " "asiaroddzia. Kab ubačyć prazrysty fon, vam treba pierazapuscić Konsole." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Pradvyznačany profiĺ" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, fuzzy, kde-format #| msgid "" #| "The format is e.g. editorExec PATH:LINE:COLUMN\n" @@ -4600,7 +4855,7 @@ msgstr "" "budzie praihnaravany, i fajl budzie adkryty ŭ pradvyznačanym tekstavym " "redaktary." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Advoĺny zahad tekstavaha redaktara" @@ -4692,27 +4947,55 @@ msgstr "Abrać pačatkovy kataloh" msgid "Start in same directory as current session" msgstr "Pačynać u katalozie biahučaha sieansa" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Pačynać u katalozie biahučaha sieansa" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Asiaroddzie:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Redahavać spis zmiennych asiaroddzia i zviazanych značenniaŭ" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" msgstr "Pačatkovy pamier terminala:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4725,32 +5008,32 @@ msgstr "" "adkliučany, kab heta pracavala.

        " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal bell mode:" msgid "&Terminal bell mode:" msgstr "Režym hukavoha apaviaščennia terminala:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Siemantyčnaja intehracyja" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emuliacyja strelak Uvierch/Uniz" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Pstrykannie myššu ŭ radku ŭvodu pieramiaščaje kursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Siemantyčnyja padkazki:" @@ -4760,9 +5043,9 @@ msgstr "Siemantyčnyja padkazki:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4773,9 +5056,9 @@ msgstr "Nikoli" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4786,35 +5069,35 @@ msgstr "Kali pakazvajucca URL-padkazki" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Zaŭsiody" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Blur background" msgid "Red error background:" msgstr "Razmyccio fonu" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Blur background" msgid "Alternating background:" @@ -5180,51 +5463,94 @@ msgid "Scrollback:" msgstr "Žurnal vyvadu:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Prakručvannie strelkami uvierch/uniz:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Padsviatliać linii ŭ terminalie" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Schavany" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Padsviatliennie:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Prakručvannie staronki na palovu vyšyni akna" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half screen height" msgid "Half screen heigh&t" msgstr "Prakručvannie na palovu vyšyni" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Pierakampavannie radkoŭ:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Prakručvannie na ŭsiu vyšyniu akna" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full screen height" msgid "F&ull screen height" msgstr "Prakručvannie na ŭsiu vyšyniu" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Razmiaščennie palasy prakručvannia:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Pakazvać palasu prakručvannia na pravym boku akna terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the right side" #| msgid "Right side" @@ -5233,13 +5559,13 @@ msgid "Ri&ght side" msgstr "Pravy bok" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Pakazvać palasu prakručvannia na lievym boku akna terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the left side" #| msgid "Left side" @@ -5247,53 +5573,22 @@ msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Lievy bok" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Schavany" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Padsviatliennie:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Padsviatliać linii ŭ terminalie" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Pierakampavannie radkoŭ:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Pierakampanoŭvać radki pry zmienie pamieru terminala" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Razmiaščennie palasy prakručvannia:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5408,116 +5703,117 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Niama" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Pošuk..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Uviadzicie tekst dlia pošuku" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Daliej" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Znajsci nastupnaje supadziennie dlia biahučaj frazy" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Nazad" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Znajsci papiaredniaje supadziennie dlia biahučaj frazy" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Pakazvać mieniu paramietraŭ" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zakryć paneĺ pošuku" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Zvažać na rehistr" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Vyznačaje, ci ŭličvaje pošuk rehistr" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Pakazvać mieniu paramietraŭ" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zakryć paneĺ pošuku" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Supadziennie z rehuliarnym vyrazam" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Padsviatliać usie supadzienni" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Vyznačaje, ci treba padsviatliać supadzienni" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Pošuk u advarotnym kirunku" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Vyznačaje, ci pavinien pošuk pačynacca znizu" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Vyznačaje, ci pavinien pošuk pačynacca znizu" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Šukać biahučuju frazu znizu" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5528,7 +5824,7 @@ msgstr "Šukać biahučuju frazu zvierchu" msgid "Print Shell" msgstr "Drukavannie abalonki" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5570,6 +5866,13 @@ msgstr "Farmat zahaloŭka zvyčajnaj ukladki" msgid "Tab Co&lor:" msgstr "Kolier ukladki:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Vybrać kolier &kartki" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5665,36 +5968,60 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Adnavić terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Adkryć novuju ŭkladku" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Admacavać ukladku" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Zakryć hetuju ŭkladku" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Admacavać ukladku" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Naladžvannie abo zmiena nazvy ŭkladki..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Zakryć ukladku" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

        This warning will only show once for this Konsole instance.

        " +#~ msgstr "" +#~ "Toĺki što vykarystoŭvalisia mietady D-Bus sendText/runCommand. Hetyja " +#~ "mietady mohuć być niebiaspiečnymi, kali da ich adkryty publičny dostup. " +#~ "Pry žadanni možna zakryć publičny dostup da ich šliacham paŭtornaha " +#~ "kampiliavannia Konsole.

        Hetaje papiaredžannie budzie pakazvacca dlia " +#~ "hetaha asobnika Konsole toĺki adzin raz.

        " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Zvažać na rehistr" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Niama" @@ -6111,9 +6438,6 @@ msgstr "Zakryć ukladku" #~ msgid "New" #~ msgstr "Novy" -#~ msgid "Select &Tab Color" -#~ msgstr "Vybrać kolier &kartki" - #, fuzzy #~| msgid "Transparent, Dark Background" #~ msgid "Enable transparent backgrounds" @@ -6709,9 +7033,6 @@ msgstr "Zakryć ukladku" #~ msgid "Overwrite" #~ msgstr "Pierazapisać" -#~ msgid "Unable to write to file." -#~ msgstr "Niemahčyma zapisać u fajl." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/bg/konsole.po b/local/recipes/kde/konsole/source/po/bg/konsole.po index 7bff92fe97..486e5b55a1 100644 --- a/local/recipes/kde/konsole/source/po/bg/konsole.po +++ b/local/recipes/kde/konsole/source/po/bg/konsole.po @@ -1,24 +1,21 @@ -# Copyright (C) YEAR This_file_is_part_of_KDE -# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) 2026 This file is copyright: +# This file is distributed under the same license as the konsole package. # -# Zlatko Popov , 2006, 2007, 2008. -# Yasen Pramatarov , 2009, 2010, 2011, 2013. -# Kiril Vladimirov , 2021. -# SPDX-FileCopyrightText: 2022, 2023, 2024 Mincho Kondarev +# SPDX-FileCopyrightText: 2026 Mincho Kondarev msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-22 23:52+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-06-21 13:16+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.07.70\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 26.04.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -55,7 +52,7 @@ msgstr "Изглед" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Разделяне на изгледа" @@ -91,7 +88,7 @@ msgid "S&crollback" msgstr "Пре&въртане" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Лента с инструменти на сесия" @@ -107,7 +104,7 @@ msgstr "Име на профила за нова инстанция на Konsole msgctxt "@info:shell" msgid "json layoutfile to be loaded to use for new Konsole instance" msgstr "" -"json файл с конфигурация на раздел за използване за нов прозорец на Konsole" +"json файл с подредба на раздел за използване за нов прозорец на Konsole" #: Application.cpp:55 #, kde-format @@ -179,34 +176,49 @@ msgstr "Скриване на лентата с менюта, заменяйки #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Показване на всички ленти с инструменти, заменяйки настройката по " +"подразбиране" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Скриване на всички ленти с инструменти, заменяйки настройката по подразбиране" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Показване на лентата с раздели, заменяйки настройката по подразбиране" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Скриване на лентата с раздели, замяна на настройката по подразбиране" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Стартиране на Konsole в режим на цял екран" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Деактивиране на прозрачния фон, дори ако системата го поддържа." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Списък с наличните профили" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -214,13 +226,13 @@ msgstr "" "Списък на всички имена на свойствата на профила и техния тип (за използване " "с -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Промяна на стойността на свойството на профила." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +242,7 @@ msgstr "" "Команда за изпълнение. Тази опция ще улови всички следващи аргументи, затова " "я използвайте като последна опция." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -241,13 +253,13 @@ msgstr "" "нарушава функционалността, например --new-tab. Използва се най-често за " "откриване на грешки." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Подавани на командата аргументи" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -265,157 +277,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Текст" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Фон" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Цвят 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Цвят 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Цвят 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Цвят 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Цвят 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Цвят 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Цвят 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Цвят 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Преден план (наситен)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Фон (наситен)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Цвят 1 (наситен)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Цвят 2 (наситен)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Цвят 3 (наситен)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Цвят 4 (наситен)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Цвят 5 (наситен)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Цвят 6 (наситен)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Цвят 7 (наситен)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Цвят 8 (наситен)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Преден план (блед)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Фон (блед)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Цвят 1 (блед)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Цвят 2 (блед)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Цвят 3 (блед)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Цвят 4 (блед)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Цвят 5 (блед)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Цвят 6 (блед)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Цвят 7 (блед)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Цвят 8 (блед)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -672,10 +684,44 @@ msgstr "Горе" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Хост" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Поддръжката на контейнери не е налична, когато Konsole се изпълнява във " +"Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [по подразбиране]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" -msgstr "Копиране на входа" +msgstr "Копиране на въвежданите данни" #. i18n: ectx: property (text), widget (QLabel, filterLabel) #. i18n: ectx: property (text), widget (QLabel, label) @@ -717,7 +763,7 @@ msgstr "" msgid "Copy Location" msgstr "Копиране на местоположението" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Генериране на миниатюра" @@ -748,13 +794,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Избор на шрифт" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Показване на всички шрифтове" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -763,9 +809,9 @@ msgid "" "This should not be necessary except in rare cases." msgstr "" "По своята същност терминалната програма изисква знаци на шрифта, които са с " -"еднаква ширина (monospace). Всеки шрифт, който не е с интервал, може да " -"причини проблеми с дисплея. Това не би трябвало да е необходимо, освен в " -"редки случаи." +"еднаква ширина (monospace). Всеки шрифт, който не е с фиксирана ширина, може " +"да причини проблеми при изобразяването. Това не би трябвало да е необходимо, " +"освен в редки случаи." #: HistorySizeDialog.cpp:25 #, kde-format @@ -793,28 +839,28 @@ msgstr "Клавишна комбинация" #: KeyBindingEditor.cpp:63 #, kde-format msgid "Output" -msgstr "История" +msgstr "Изход" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Нов списък за клавишни комбинации" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Редактиране на списъка с обвързващи ключове" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" -"Схемата за клавишни свързвания не може да бъде запазена с празно описание." +"Схемата за клавишни комбинации не може да бъде запазена с празно описание." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -848,225 +894,225 @@ msgstr "Вход:" msgid "Output:" msgstr "Изход:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Терминален емулатор" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, The Konsole Developers" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Обща поддръжка, корекции на грешки и общи подобрения" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Предишен поддържащ, пренесен в KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Първоначален автор" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" -msgstr "Основни рефакторинг, корекции на грешки и подобрения" +msgstr "Основен рефакторинг, корекции на грешки и подобрения" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Поправки на грешки и общи подобрения" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Поправки на грешки и общи подобрения" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Общи подобрения" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Поправки на грешки" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Поддръжка на Solaris и история" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Поправки на грешки и подобрение на зареждането" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Подобрения по маркирането" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1076,13 +1122,13 @@ msgstr "" "Вградена конзола\n" "Лента с инструменти и имена на сесии" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1092,25 +1138,25 @@ msgstr "" "Вградена конзола\n" "Общи подобрения" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Визуални ефекти" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1120,202 +1166,202 @@ msgstr "" "Код от kvt проект\n" "Общи подобрения" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Подобрения в избора на схема и текст" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Версия за SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Версия за FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Благодарим на много други.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Нов &раздел" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Клониране на раздела" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Нов прозоре&ц" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Затваряне на прозореца" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Отметки" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" -msgstr "Цветова схема" +msgstr "&Цветова схема на прозореца" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Управление на профилите..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Включване на менюто" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Запазване подредбата на разделите..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Зареждане подредбата на разделите..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" -msgstr[0] "В този прозорец се изпълнява процес. Искате ли да излезете?" +msgstr[0] "В този прозорец се изпълнява процес. Все още ли искате да излезете?" msgstr[1] "" -"В този прозорец се изпълняват %1 процеси. Все още ли искате да излезете?" +"В този прозорец се изпълняват %1 процеса. Все още ли искате да излезете?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Потвърждение на затваряне" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Затваряне на прозореца" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Затваряне на &раздела" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "В този прозорец има %1 отворени терминали. Искате да излезете?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Профили" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Общи" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Памет" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Лента с раздели / разделители " -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Временни файлове" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Миниатюри" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1383,7 +1429,7 @@ msgstr "Команда" #: plugins/QuickCommands/quickcommandswidget.cpp:333 #, kde-format msgid "Warnings" -msgstr "Предупреждение" +msgstr "Предупреждения" #. i18n: ectx: property (text), widget (QPushButton, btnRun) #: plugins/QuickCommands/qcwidget.ui:236 @@ -1399,7 +1445,7 @@ msgstr "Запазване" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Актуализиране" @@ -1411,29 +1457,29 @@ msgid "Cancel" msgstr "Отказ" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Бързи команди" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Показване на бърз достъп" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Не са намерени бързи команди. Можете да добавите такава в Приставки -> Бързи " "команди" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Приставки - Бързи команди" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Показване на бързи команди" @@ -1477,7 +1523,7 @@ msgstr "" "с множество конфигурации?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Сигурни ли сте, че искате да премахнете %1?" @@ -1495,7 +1541,7 @@ msgstr "Заглавието не може да бъде празно" #: plugins/QuickCommands/quickcommandswidget.cpp:280 #, kde-format msgid "Command can not be empty" -msgstr "Командата не може да бъде пропусната" +msgstr "Командата не може да бъде празна" #: plugins/QuickCommands/quickcommandswidget.cpp:300 #, kde-format @@ -1530,11 +1576,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 е папка за SSH записи" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Настройване на SSH" @@ -1599,24 +1645,24 @@ msgstr "" "zsh,sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH ключ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Изтриване" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Без промяна" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1625,69 +1671,70 @@ msgstr "" "Сигурни ли сте, че искате да премахнете папка %1\n" "с множество SSH конфигурации?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Премахване на SSH конфигурация" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "Импортиран профил за SSH
        Някои настройки са само за четене." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Липсващо име на хост" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Липсващо име" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -"Ако активирано Използване на Ssh Config, не задавайте sshkey или username." +"Ако е активирано „Използване на конфигурация на Ssh“, да не се задава sshkey " +"или username." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Необходимо задаване поне на Username или SSHKey" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Липсваща папка" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH сесия трябва да има профил" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Не може да се премахне тази папка" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Премахване на тази папка и всички нейни подпапки" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Щракнете двукратно, за да промените името на папката." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Не можете да премахнете автоматично добавени елементи." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Премахване на избрания запис" @@ -1696,7 +1743,7 @@ msgstr "Премахване на избрания запис" #: plugins/SSHManager/sshwidget.ui:19 #, kde-format msgid "Shortcut" -msgstr "Бърз клавиш" +msgstr "Клавишна комбинация" #. i18n: ectx: property (toolTip), widget (QCheckBox, btnInvertFilter) #: plugins/SSHManager/sshwidget.ui:43 @@ -1868,7 +1915,7 @@ msgstr "Отмяна на добавяне или редактиране" #: pluginsystem/PluginManager.cpp:70 #, kde-format msgid "No plugins available" -msgstr "Няма налични дискове" +msgstr "Няма налични приставки" #. i18n: ectx: property (windowTitle), widget (QWidget, PrintOptions) #. i18n: ectx: property (title), widget (QGroupBox, OutputOptions) @@ -1879,25 +1926,25 @@ msgstr "Настройки на изхода" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Обикновен режим на пе&чат (черен текст, без фон)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" -msgstr "&Scale output" +msgstr "&Мащабиране на изхода" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Вградено" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Профил по подразбиране" @@ -1923,7 +1970,7 @@ msgstr "Име" #, kde-format msgctxt "@title:column Profile keyboard shortcut" msgid "Shortcut" -msgstr "Бърз клавиш" +msgstr "Клавишна комбинация" #: profile/ProfileModel.cpp:80 #, kde-format @@ -1956,17 +2003,42 @@ msgstr "Щракнете двукратно, за да промените пря msgid "Tab Properties" msgstr "Свойства на раздел" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Запис на изхода от %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 е невалиден URL адрес, изходът не можа да бъде запазен." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Неуспешно автоматично запазване на файл в %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Спиране на автоматичното запазване при превключване на екраните." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Файлът за автоматично запазване е променен от външен процес, " +"предотвратявайки по-нататъшно автоматично запазване." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Неуспешно актуализиране на състоянието на автоматично запазване при промяна " +"на изхода." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2002,420 +2074,439 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Тъмни пастели" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Зелено на черно" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Цветове на Линукс" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Червено на черно" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Соларизиран" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized Светъл" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Бяло на черно" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "По подразбиране (XFree 4.x.x)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Конзола на Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Конзола на Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Търсене..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Въведете името на раздела за търсене тук" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" -msgstr "Звуков сигнал в '%1' (Сесия '%2')" +msgstr "Звуков сигнал в „%1“ (Сесия „%2“)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Неуспех при намиране на двоичен файл: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Предупреждение: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Не е открита интерактивна обвивка за зареждане." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -"\"Не можа да се намери \"%1\", вместо това се стартира \"%2\" . Моля, " -"проверете настройките на вашия профил." +"\"Не можа да се намери „%1“, вместо това се стартира „%2“ . Моля, проверете " +"настройките на вашия профил." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." -msgstr "Не може да се стартира програма '%1' с аргументи '%2'." +msgstr "Не може да се стартира програма „%1“ с аргументи „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" -msgstr "Пасивност в \"%1\" (Сесия \"%2\")" +msgstr "Липса на активност в „%1“ (Сесия „%2“)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Показване на сесия" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"Методите D-Bus sendText/runCommand току-що бяха използвани. Съществуват " -"опасения за сигурността относно разрешаването на тези методи да бъдат " -"публични. При желание тези методи могат да бъдат променени на вътрешна " -"употреба само чрез прекомпилиране на Konsole.

        Това предупреждение ще бъде " -"показано само веднъж за тази инстанция на Konsole.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Завършено" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." -msgstr "Програмата \"%1\" блокира." +msgstr "Програмата „%1“ блокира." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." -msgstr "Програмата \"%1\" беше спряна - %2." +msgstr "Програмата „%1“ завърши с код (status) %2" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" -msgstr "Индикатор на прогреса на качването" +msgstr "Напредък на ZModem трансфера" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" -msgstr "Активност в '%1' (Сесия '%2')" +msgstr "Активност в „%1“ (Сесия „%2“)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "Чувствителният към сигурността DBus API е деактивиран в настройките." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" -msgstr "Процесът \"%1\"приключи в сесията \"%2\"" +msgstr "Процесът „%1“приключи в сесията „%2“" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole не знае как да отвори отметката: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" -msgstr "Търсене за \"%1\" с" +msgstr "Търсене за „%1“ с" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Настройки на уеб-препратки..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Затваряне на &сесия" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Зареждане на файлов мениджър" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Копиране" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Разделяне на изгледа вертикално" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Разделяне на изгледа хоризонтално" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Копиране без промпта" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Копиране на потребителското въвеждане" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Копиране на резултата на командата" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Поставяне на маркираното" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Търсене в Интернет" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Избиране на всичко" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Избор на &режим" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Избери &ред" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Запис на &изхода като..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Автоматичен запис на изхода като..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Спиране на автоматичното запазване" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Печатане на екрана..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Настройки на превъртането..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Изчистване на превъртането" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" -msgstr "Изчистване на превъртането и презареждане" +msgstr "Изчистване на превъртането и нулиране" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Следващ профил" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Предишен профил" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Превключване на профил" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Кодова таблица" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Позволява проследяване на мишката" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Само за четене" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Настройване или преименуване на раздел..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Всички раздели в текущия прозорец" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Избиране на раздели..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Без" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" -msgstr "Копиране на входа към" +msgstr "Копиране на въвежданите данни към" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Качване на &файл (ZModem)..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" -msgstr "One-shot монитори" +msgstr "Еднократно следене" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" -msgstr "Монитор на &курсора на обвивката" +msgstr "Следене за &подкана" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Монитор на &активността" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" -msgstr "Монитор на &пасивността" +msgstr "Следене за &липса на активност" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Монитор за приключване на процес" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Увеличаване на шрифта" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Намаляване на шрифта" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Възстановяване размера на шрифта" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Изпращане на сигнал" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Спиране на задачата" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Продължаване на задачата" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Затваряне" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Прекъсване на задача" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Прекратяване на задачата" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Прекратяване на задача" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Потребителски сигнал &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Потребителски сигнал &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Създаване на нов профил..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Редактиране на текущия профил..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2424,27 +2515,27 @@ msgstr "" "В момента се изпълнява програма в тази сесия. Наистина ли искате да я " "затворите?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -"В момента се изпълнява програма '%1' в тази сесия. Наистина ли искате да я " +"В момента се изпълнява програма „%1“ в тази сесия. Наистина ли искате да я " "затворите?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Потвърждаване на затварянето" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Затваряне на програмата" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2453,37 +2544,37 @@ msgstr "" "Програма в тази сесия няма да прекрати. Наистина ли искате да я прекъснете " "принудително?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"Програмата '%1'в тази сесия няма да прекрати. Наистина ли искате да я " +"Програмата „%1“ в тази сесия няма да се прекрати. Наистина ли искате да я " "прекъснете принудително?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Прекратяване на програмата" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "Курсорът на обвивката се показва в сесия '%1'" +msgstr "Курсорът на обвивката се показва в сесия „%1“" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Отваряне на текущата папка с" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Запазване на ZModem изтегляния в..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2491,17 +2582,17 @@ msgid "" "or 'lrzsz' package.

        " msgstr "" "

        Засича се опит за прехвърляне на файлове на ZModem, но на тази система " -"не е намерен подходящ софтуер на ZModem.

        Може да искате да " -"инсталирате пакета 'rzsz' или 'lrzsz'.

        " +"не е намерен подходящ софтуер за ZModem.

        Може да инсталирате пакета " +"'rzsz' или 'lrzsz'.

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" "

        Текущата сесия вече има стартиран процес за обмен на файл (ZModem).

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2510,7 +2601,7 @@ msgstr "" "

        В тази система не бе намерен подходящ софтуер ZModem.

        Може да " "пожелаете да инсталирате пакета 'rzsz' или 'lrzsz'.

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Избор на файлове за качване на ZModem" @@ -2533,144 +2624,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Настройване" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Търсене:" +msgid "When launching Konsole re-use existing process if possible" +msgstr "" +"При стартиране на Konsole да се преизползва съществуващ процес, ако е " +"възможно" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format -msgid "Enable menu accelerators" -msgstr "Активиране ускорителите на менютата" +msgid "Run all Konsole windows in a single process" +msgstr "Изпълняване на всички Konsole прозорци в един процес" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 +#: settings/GeneralSettings.ui:81 #, kde-format msgid "If enabled, profile settings will be ignored" msgstr "Ако е активирано, настройките на профила ще бъдат игнорирани" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 +#: settings/GeneralSettings.ui:84 #, kde-format msgid "Remember window size" msgstr "Запомняне размера на прозореца" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Show window title on the titlebar" -msgstr "Показване заглавието на прозореца в заглавната лента" +msgid "Force new tabs" +msgstr "Принудително нови раздели" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Фокусиране на терминалите при поставяне на курсора на мишката над тях" +msgid "Listen for ZModem terminal codes" +msgstr "Слушане за ZModem терминални кодове" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Match using regular expressions" -msgstr "Съвпадение с помощта на регулярни изрази" +msgid "Show progress in taskbar" +msgstr "Показване на напредъка в лентата със задачи" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 #, kde-format -msgid "When launching Konsole re-use existing process if possible" -msgstr "" -"При стартиране на Konsole преизползва съществуващ процес, ако е възможно" +msgid "Notifications:" +msgstr "Известия:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format -msgid "Run all Konsole windows in a single process" -msgstr "Изпълняване на всички Konsole прозорци в един процес" +msgid "Sets whether search should start from the bottom" +msgstr "Задава дали търсенето да започва отдолу" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format -msgid "Highlight all matches" -msgstr "Осветяване на всички съвпадения" +msgid "Search backwards" +msgstr "Търсене назад" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, kde-format msgid "Sets whether the search is case sensitive" msgstr "Задава дали търсенето да е чувствително към регистъра" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, kde-format msgid "Case sensitive" msgstr "С отчитане на регистъра" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "Премахване на заглавната лента и рамка на прозореца" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "Процес и прозорец:" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 #, kde-format -msgid "Notifications:" -msgstr "Известия:" +msgid "Highlight all matches" +msgstr "Маркиране на всички съвпадения" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 #, kde-format -msgid "All dialogs will be shown again" -msgstr "Всички диалогови прозорци ще се показват отново" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Активиране на всички \"Не ме питай отново\" съобщения" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "Процеси и прозорци:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "Търсене назад" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Търсене:" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Задава дали търсенето да спре вместо да започне отначало" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" -msgstr "Без продължаване" +msgstr "Без пренасяне" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Активиране ускорителите на менютата" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Фокусиране на терминалите при поставяне на курсора на мишката над тях" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Всички диалогови прозорци ще се показват отново" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Активиране на всички \"Не ме питай отново\" съобщения" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Показване заглавието на прозореца в заглавната лента" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Активиране на чувствителните към сигурността части на DBus API" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Премахване на заглавната лента и рамка на прозореца" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Съвпадение с помощта на регулярни изрази" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 @@ -2698,71 +2816,112 @@ msgstr "Запомняне размера на прозореца при сле msgid "The window size will be saved upon exiting Konsole" msgstr "Размерът на прозореца ще бъде запазен при излизане от Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"При стартиране на Konsole, създаване на нов раздел вместо нови прозорци, ако " +"е възможно." + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Показване на напредъка в лентата със задачи" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Когато скрипт докладва напредъка си, той ще бъде показан в лентата за задачи" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "DBus API, като например runCommand, ще бъде активиран" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Слушане за ZModem терминални кодове" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Автоматично изпращане/получаване на файлове през серийни връзки" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Ширина на миниатюри" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Задава ширината на миниатюрата" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Използване на Shift за показване на миниатюри" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Използване на Alt за показване на миниатюри" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Използване на Ctr за показване на миниатюри" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Търсенето е чувствително към регистъра" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" -msgstr "Осветяване на всички съвпадения" +msgstr "Маркиране на всички съвпадения" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Задава дали съвпадащият текст да се маркира" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "Търсенето спира вместо да започне отначало" +msgstr "Търсенето спира, вместо да се превърти отначало" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Контролиране дали дъщерни cgroups са създадени за индивидуални раздели" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2772,101 +2931,109 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Контролиране видимостта на цялата лента с раздели" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Контролиране размера на дръжката между панелите" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Контролиране позицията на лентата с раздели" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Контролиране визуалния стил на лентата с раздели" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Използване на дефиниран от потребителя .css файл за лентата с раздели" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Файлът .css, който да се използва за стила на лентата с раздели" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" "Позволете на средно щракване върху отворени раздели, за да ги затворите" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Контролиране видимостта на бутона \"Нов раздел\" в лентата с раздели" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Контролиране видимостта на бутона \"Търсене на раздел\" в лентата на " +"разделите" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Контролиране къде ще се показва бутонът \"Затваряне на раздел\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Контролиране къде да поставите новия раздел" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Разширяване на ширините на раздела" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" -"За файлове с история на командите използвайте общосистемно местоположение на " -"папката" +"За файловете с превъртане (scrollback) да се използва общосистемно " +"местоположение на папката" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" -"За файлове с история на командите използвайте конкретното местоположение на " -"папката на потребителя" +"За файловете с превъртане (scrollback) да се използва конкретното " +"местоположение на папката на потребителя" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" -"За файлове с история на командите използвайте определено местоположение на " -"папката" +"За файловете с превъртане (scrollback) да се използва определено " +"местоположение на папката" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" -msgstr "За файлове с история на командите използвайте тази папка" +msgstr "За файловете с превъртане (scrollback) да се използва тази папка" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 @@ -2875,34 +3042,30 @@ msgid "Enable memory monitoring:" msgstr "Активиране на мониториране на паметта:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Промените ще влязат в сила при рестартиране. Ако е активирано, при " -"надвишаване посочената стойност на използваната памет от Konsole\n" -" systemd-oomd да премахне разделите\n" -"съдържащи процеси, които отнемат памет. Забележка: включването на тази " -"опция\n" -"може да доведе до по-голямо забавяне на работата по време на висока " -"консумация на памет, а задаването на\n" -"на твърде ниски стойности може да доведе до спиране на работата на Konsole." +"надвишаване посочената стойност на използваната памет от Konsole systemd-" +"oomd да елиминира разделите съдържащи процеси, които отнемат памет. " +"Забележка: включването на тази опция може да доведе до по-голямо забавяне на " +"работата по време на висока консумация на памет, а задаването на твърде " +"ниски стойности може да доведе до спиране на работата на Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Лмит на паметта:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -2994,7 +3157,7 @@ msgstr "Показване:" #: settings/TabBarSettings.ui:63 #, kde-format msgid "When needed" -msgstr "Когато е необходимо" +msgstr "При необходимост" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowTabBar) #: settings/TabBarSettings.ui:73 @@ -3063,125 +3226,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Никъде" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Бутон за търсене на раздел:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Винаги" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Никога" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Разни:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Показване на бутона за нов раздел" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Разширяване на единичен раздел по цялата дължина" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Използване на потребителски каскадни стилове:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(без)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Поведение" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Поставяне на раздели:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "В края" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "След текущия раздел" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Затваряне на раздел със средния бутон на мишката" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Разделители" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Показване на заглавна част:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" -msgstr "Когато е необходимо" +msgstr "При необходимост" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Никога" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Размер на дръжката за влачене:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Малък" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Среден" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Голям" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3233,13 +3414,12 @@ msgstr "px" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" "

        За да използвате тази функция, активирайте Мишка- > Разни- > Подчертаване файлове в настройките на " -"вашия профил

        " +"style = \"font-weight: 600;\"> Мишка- > Разни- > Подчертаване на " +"файлове в настройките на вашия профил

        " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3275,66 +3455,66 @@ msgstr "Ctrl" #: settings/ThumbnailsSettings.ui:93 #, kde-format msgid "Enable thumbnails generation" -msgstr "Включване на &квадратни миниатюри" +msgstr "Включване на генерирането на миниатюри" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Размери: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Наистина ли искате да поставите %1 символ?" msgstr[1] "Наистина ли искате да поставите %1 символи?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Потвърждаване на поставянето" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Край на текст/прекъсване: може да излезе от текущия процес" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Край на предаването: може да излезе от текущия процес" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" -msgstr "Сигнал: издаване на звуково предупреждение" +msgstr "Звуков сигнал: опит за издаване на звуково предупреждение" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" -msgstr "Контрол на устройство три/XOFF: преустановява изхода" +msgstr "Device Control Three/XOFF: спира изхода" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Замяна/спиране: може да спре текущия процес" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: използва се за манипулиране на състоянието на терминала" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Разделител на файлове/изход: може да прекрати текущия процес" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3343,31 +3523,31 @@ msgstr "" "Текстът, който се опитвате да поставите, съдържа скрити контролни знаци, " "искате ли да ги филтрирате?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Потвърждаване на поставянето" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Поставяне и без контролни знаци" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" -msgstr "Поставяне на селекцията" +msgstr "&Поставяне на всичко" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Отказ" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been спрян чрез натискане на Ctrl+S. Натиснете Ctrl+Q за " "възобновяване." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Този ​​терминал е само за четене." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Смяна на &директорията на" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Поставяне на местоположение" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Разделяне на изгледа" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Разделяне на изгледа вертикално" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Разделяне на изгледа хоризонтално" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Автоматично разделяне на изгледа" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Разделяне на изгледа вертикално от следващия раздел" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Разделяне на изгледа хоризонтално от следващия раздел" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Автоматично разделяне на изгледа от следващия раздел" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Зареждане на нов раздел с 2x2 терминала" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Зареждане на нов раздел с 2x1 терминала" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Зареждане на нов раздел с 1x2 терминала" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Разширяване на изгледа" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Свиване на изгледа" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Отделяне на &текущия изглед" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Отделяне на &текущия раздел" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Следващ раздел" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Предишен раздел" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Фокусиране над терминала" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Фокусиране под терминала" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Фокусиране на терминала в ляво" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Фокусиране на терминала в дясно" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Фокусиране на следващия терминал" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Фокусиране на предишния терминал" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Превключване към последния раздел" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Последно използвани раздели" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Превключване между два раздела" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" -msgstr "Последно използвани попрозорци (обратен ред)" +msgstr "Последно използвани раздели (обратен ред)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Превключване максимизирането на текущия изглед" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Превключване максимизирането на текущия изглед" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" -msgstr "Превключване максимизирането на текущия изглед" +msgstr "Превключване на мащабирането и максимизирането на текущия изглед" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" -msgstr "Превключване максимизирането на текущия изглед" +msgstr "Превключване на мащабирането и максимизирането на текущия изглед" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Преместване раздела надясно" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Преместване раздела наляво" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Настройка на семантичната интеграция (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Превключване на семантични съвети" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Превключване на показване на номера на редове" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Еднакъв размер за всички изгледи" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Превключване към раздел %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Семантични съвети" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " -msgstr "Номериране на редове" +msgstr "Номера на редове" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Запазване подредбата на разделите" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Изглед на конзолата (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3635,7 +3827,7 @@ msgstr "" "Възникна проблем при запазване на оформлението.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3645,13 +3837,13 @@ msgstr "" "Възникна проблем при зареждане на оформлението.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Зареждане подредбата на разделите" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3705,7 +3897,8 @@ msgstr "Разни:" #: widgets/EditProfileAdvancedPage.ui:164 #, kde-format msgid "Number URL hints in reverse, starting from the bottom" -msgstr "Подсказване на URL на номера в обратен ред, започвайки отдолу" +msgstr "" +"Номериране на подсказките за URL адреси в обратен ред., започвайки отдолу" #. i18n: ectx: property (text), widget (QCheckBox, enableReverseUrlHints) #: widgets/EditProfileAdvancedPage.ui:167 @@ -3717,7 +3910,7 @@ msgstr "Обратно номериране на подсказки за URL а #: widgets/EditProfileAdvancedPage.ui:180 #, kde-format msgid "Allow terminal programs to create blinking sections of text" -msgstr "Разрешаване на терминални програми да създават мигащи раздели на текст" +msgstr "Разрешаване на терминални програми да създават участъци с мигащ текст" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingTextButton) #: widgets/EditProfileAdvancedPage.ui:183 @@ -3749,28 +3942,40 @@ msgstr "&Кодова таблица по подразбиране:" msgid "Shortcut for peeking the primary screen:" msgstr "Клавишна комбинация за надникване в основния екран:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Интервал между автоматичните записи:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" -msgstr "Брой редове:" +msgstr "Номера на редове:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Никога" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "&При показване на URL съвети " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3806,7 +4011,7 @@ msgstr "Редактиране на избраната цветова схема #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3862,12 +4067,19 @@ msgstr "Рисуване на наситени цветове на получе #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" -msgstr "Използване на избрания шрифт за символи за ред вместо вградения код" +msgstr "" +"Използване на избрания шрифт за псевдографични символи вместо вградения код" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Използване на символи за ред, съдържащи се в шрифта" @@ -3878,13 +4090,14 @@ msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" msgstr "" -"Използване на избрания шрифт за unicode Брайлови символи вместо вградения код" +"Използване на избрания шрифт за Брайлови символи на Уникод вместо вградения " +"код" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 #, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "Използване на unicode Брайлови символи, съдържащи се в шрифта" +msgstr "Използване на Брайлови символи на Уникод, съдържащи се в шрифта" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -3910,7 +4123,7 @@ msgstr "Блоков" #, kde-format msgctxt "A vertical line on the left edge" msgid "I-Beam" -msgstr "Мигащо I" +msgstr "Вертикална черта" #. i18n: ectx: property (text), widget (QRadioButton, cursorShapeUnderline) #: widgets/EditProfileAppearancePage.ui:259 @@ -3988,29 +4201,43 @@ msgid "Make the cursor blink regularly" msgstr "Накарайте курсора да мига редовно" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Активирано" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Анимация:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Задаване на плавна анимация на курсора" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Разни" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Прозорец:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4020,145 +4247,145 @@ msgstr "" "след преоразмеряване" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Показване на подсказка за размера на терминала след преоразмеряване" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Винаги обръщане на цветовете на избрания текст" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Сила на потъмняване:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Цвят:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Изберете цвета, използван за изчертаване на рамката" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Неактивни терминали:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Активни терминали:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Съдържание на терминала" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Междуредие:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Броят на пикселите между два реда" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Отстояние:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Подравняване в центъра:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Посочете дали прозорецът е активен чрез затъмняване на цветовете" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Потъмняване" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Посочване на активен прозорец чрез очертаване с рамка" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Рамка" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Показване на вертикален ред в колона:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" "

        Комплексно оформление на текста

        " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Комплексно оформление на текста" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Активиране на визуализирането на текст в режим думи" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Режим думи" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4168,43 +4395,43 @@ msgstr "" "промените в атрибутите прекъсват думата при визуализиране)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Използване на същите атрибути за цялата дума" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Рендериране на думи от ASCII символи заедно" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII символи" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Рендериране на думи от брахмически скриптове заедно" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Символи на брахмически скрипт" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji шрифт:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4214,96 +4441,97 @@ msgstr "" "или иврит)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" -msgstr "Двупосочно изобразяване на текст" +msgstr "Двупосочно рендиране на текст" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" "Редовете винаги са отляво на дясно, а не се определят от първия силен знак" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "принудително определяне на посоката отляво на дясно" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." -msgstr "Третиране на символите за изчертаване на таблици като силни" +msgstr "" +"Символите за таблици винаги да се изчертават отляво надясно (строго LTR" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" -msgstr "Преустановяване на бидирекционния режим табличните символи " +msgstr "Заменяне на двупосочния (BiDi) режим за таблични символи" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Игнориране на wcwidth на проблемни символи" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Заменяне на wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Редактиране на профил" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Общи" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Раздели" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Изглед" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Превъртане" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Клавиатура" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" -msgstr "Функции на клавишите" +msgstr "Клавишни комбинации" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Мишка" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Разширени" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4315,7 +4543,7 @@ msgstr "" "filename>. Променете разрешенията на този файл или задайте различно " "име, за да запишете настройките в нов профил." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4323,42 +4551,47 @@ msgstr "" "Името на профила е празно; Моля, задайте име, за да можете да запазите " "настройките." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." -msgstr "Профил с име \"%1\" вече съществува." +msgstr "Профил с име „%1“ вече съществува." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Името на профила е надвишило максимално допустимата дължина (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." -msgstr "Подчертаните символи са невалидни в имената на профилите: %1." +msgstr "Маркираните символи са невалидни в имената на профилите: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Редактиране на профил %2" msgstr[1] "Редактиране на %1 профила: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Създаване на нов профил" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" -msgstr "Редактиране на профил \"%1\"" +msgstr "Редактиране на профил „%1“" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Без" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4368,7 +4601,7 @@ msgid_plural " columns" msgstr[0] " колона" msgstr[1] " колони" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4378,43 +4611,43 @@ msgid_plural " rows" msgstr[0] " редица" msgstr[1] " редица" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Системна сигнализация" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Системни известия" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Визуална сигнализация" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Игнориране на събитията на звуковия сигнал" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" "Задаване на избрания профил по подразбиране за нови терминални сесии в %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Редактиране на среда" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Една променлива на средата на ред" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4422,23 +4655,23 @@ msgid_plural " seconds" msgstr[0] " секунда" msgstr[1] " секунди" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Избор на начална директория" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Изтегляне на Нов..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Схемата %1 не успя да се зареди." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4447,7 +4680,7 @@ msgstr "" "Тази цветова схема използва прозрачен фон, който изглежда не се поддържа на " "вашия работен плот" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4456,12 +4689,12 @@ msgstr "" "Konsole беше стартиран преди да бъдат активирани ефектите на работния плот. " "Трябва да рестартирате Konsole, за да видите прозрачен фон." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "По подразбиране за файловия тип" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4490,7 +4723,7 @@ msgstr "" "ще бъде игнорирана и файлът ще бъде отворен от текстовия редактор \n" "по подразбиране." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Потребителска команда на текстовия редактор" @@ -4581,14 +4814,44 @@ msgstr "Избиране на начална директория:" msgid "Start in same directory as current session" msgstr "Стартиране в същата директория като текущата сесия" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"При отваряне на нов раздел или разделяне, автоматично влизайте в същия " +"контейнер (Toolbox, Distrobox) като текущата сесия." + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Влизане в същия контейнер като текущата сесия" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Винаги да се стартира в контейнер:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Новите сесии да се стартират с помощта на този профил в избрания контейнер" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Среда:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" @@ -4596,13 +4859,13 @@ msgstr "" "стойности" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Пъ&рвоначален размер на терминала:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4610,36 +4873,36 @@ msgid "" "Configure Konsole → General → Remember window size must be disabled " "for these entries to work.

        " msgstr "" -"

        Настройки → " +"

        Настройки → " "Конфигуриране на Konsole → Общи → Запомняне на размера на прозореца " "трябва да бъде деактивиран, за да функционират тези опции.

        " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Звукова сигнализация на терминала:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Семантична интеграция" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Емулация на стрелки нагоре/надолу" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Кликването с мишката в реда за въвеждане премества курсора" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Семантични съвети:" @@ -4649,9 +4912,9 @@ msgstr "Семантични съвети:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4662,9 +4925,9 @@ msgstr "Никога" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4675,34 +4938,34 @@ msgstr "При показване на URL съвети " #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Винаги" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" -msgstr "Червени колони на грешка:" +msgstr "Червени ленти при грешка:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Червен фон на грешка:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" -msgstr "Променливи колони:" +msgstr "Редуващи се ленти:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Променлив фон:" @@ -4717,17 +4980,17 @@ msgid "" "terminal program. For more information on how to customize the key bindings " "check the Konsole Handbook." msgstr "" -"Обвързването на ключове контролира как комбинациите от натискания на клавиши " -"в прозореца на терминала се преобразуват в потока от символи, който след " -"това се изпраща към текущата програма на терминала. За повече информация как " -"да персонализирате обвързването на клавишите, проверете наръчника на Konsole." +"Клавишните комбинации контролират как комбинациите от натискания на клавиши " +"в прозореца на терминала се преобразуват в поток от символи, който след това " +"се изпраща към текущата програма на терминала. За повече информация как да " +"персонализирате клавишните комбинации, проверете наръчника на Konsole." #. i18n: ectx: property (toolTip), widget (QPushButton, newKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:60 #, kde-format msgid "Create a new key bindings scheme based upon the selected bindings" msgstr "" -"Създаване на нова схема за клавишни свързвания въз основа на избраните " +"Създаване на нова схема за клавишни комбинации въз основа на избраните " "обвързвания" #. i18n: ectx: property (text), widget (QPushButton, newKeyBindingsButton) @@ -4741,20 +5004,20 @@ msgstr "Нов..." #: widgets/EditProfileKeyboardPage.ui:70 #, kde-format msgid "Edit the selected key bindings scheme" -msgstr "Редактиране на избраната схема за клавишни свързвания" +msgstr "Редактиране на избраната схема за клавишни комбинации" #. i18n: ectx: property (toolTip), widget (QPushButton, removeKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:80 #, kde-format msgid "Delete the selected key bindings scheme" -msgstr "Изтриване на избраната схема за клавишни свързвания" +msgstr "Изтриване на избраната схема за клавишни комбинации" #. i18n: ectx: property (toolTip), widget (QPushButton, resetKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:90 #, kde-format msgid "Reset the selected key bindings scheme to its default values" msgstr "" -"Нулиране на избраната схема за клавишни свързвания до стойностите по " +"Нулиране на избраната схема за клавишни комбинации до стойностите по " "подразбиране" #. i18n: ectx: attribute (title), widget (QWidget, tab) @@ -4772,8 +5035,8 @@ msgid "" "Characters which are considered part of a word when double-clicking to " "select whole words in the terminal." msgstr "" -"Знаците, които не са букви или цифри и се смятат като част от дума, при " -"двойно щракване." +"Знаците, които се смятат за част от дума., при двойно щракване за избиране " +"на цяла дума." #. i18n: ectx: property (text), widget (QLabel, label_11) #: widgets/EditProfileMousePage.ui:53 @@ -4840,8 +5103,8 @@ msgstr "Копиране при избиране" #, kde-format msgid "Copy text as HTML (including formatting, font faces, colors... etc)" msgstr "" -"Копиране на текст като HTML (включително форматиране, лица на шрифтове, " -"цветове... и т.н.)" +"Копиране на текст като HTML (включително форматиране, шрифтове, цветове... и " +"т.н.)" #. i18n: ectx: property (text), widget (QCheckBox, copyTextAsHTMLButton) #: widgets/EditProfileMousePage.ui:209 @@ -4884,7 +5147,7 @@ msgid "" "hovered by the mouse pointer." msgstr "" "Текстът, разпознат като връзка или имейл адрес, ще бъде подчертан, когато се " -"наведе от показалеца на мишката." +"посочи от показалеца на мишката." #. i18n: ectx: property (text), widget (QCheckBox, underlineLinksButton) #: widgets/EditProfileMousePage.ui:269 @@ -4968,13 +5231,13 @@ msgstr "Разрешени формати на връзки: " #: widgets/EditProfileMousePage.ui:384 #, kde-format msgid "The formats of possible links, like http://, https:// and file://" -msgstr "Форматите на възможни връзки, като http: //, https: // и file: //" +msgstr "Форматите на възможни връзки, като http://, https:// и file://" #. i18n: ectx: property (toolTip), widget (QCheckBox, ctrlRequiredForDragButton) #: widgets/EditProfileMousePage.ui:395 #, kde-format msgid "Selected text will require control key plus click to drag." -msgstr "Избраният текст ще изисква контролен бутон плюс щракване за плъзгане." +msgstr "Влаченето на избрания текст ще изисква клавиша Ctrl и щракване." #. i18n: ectx: property (text), widget (QCheckBox, ctrlRequiredForDragButton) #: widgets/EditProfileMousePage.ui:398 @@ -4990,8 +5253,7 @@ msgid "" "Alternate Screen buffer (e.g. less)" msgstr "" "Колелото за превъртане на мишката ще емулира натискания на клавиши нагоре/" -"надолу в програми, които използват буфер за алтернативен екран (напр. По-" -"малко)" +"надолу в програми, които използват буфер за алтернативен екран (напр. less)" #. i18n: ectx: property (text), widget (QCheckBox, enableAlternateScrollingButton) #: widgets/EditProfileMousePage.ui:408 @@ -5071,43 +5333,88 @@ msgid "Scrollback:" msgstr "Превъртане:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Превъртане на страница нагоре/надолу:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Маркиране линиите, които се появяват" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Скрита" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" +"Размер на всеки отделен маркер (като процент от дължината на лентата за " +"превъртане):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Маркиране:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Превъртане на страницата на половината от височината на прозореца" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "По&ловин височина на екрана" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Цвят на маркерите на лентата за превъртане:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Цвят на маркиращите линии за търсене на лентата за превъртане:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Преформатиране на редове:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Превъртане на страницата на цялата височина на прозореца" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Пъл&на височина на екрана" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Позиция на лентата на превъртане:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" @@ -5115,76 +5422,43 @@ msgstr "" "терминала" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "От&дясно" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" "Показване на лентата за превъртане от лявата страна на прозореца на терминала" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Отл&яво" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Скрита" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Осветяване:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Осветяване линиите, които се появяват" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Преформатиране на редове:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Преформатиране на редовете при преоразмеряване на терминала" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Цвят на маркерите на лентата за превъртане:" +msgid "Scrollbar position:" +msgstr "Позиция на лентата на превъртане:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" -"Размер на всеки отделен маркер (като процент от дължината на лентата за " -"превъртане):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Непрозрачност на маркиращата линия за търсене:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5208,7 +5482,7 @@ msgstr "Праг на продължителност на бездействие #: widgets/EditProfileTabsPage.ui:93 #, kde-format msgid "The threshold for continuous silence to be detected by Konsole" -msgstr "Прагът за непрекъснато мълчание да бъде открит от Konsole" +msgstr "Прагът за непрекъснато бездействие, който да се открива от Konsole" #: widgets/HistorySizeWidget.cpp:40 #, kde-format @@ -5227,8 +5501,8 @@ msgid "" "issues with your system." msgstr "" "Когато използвате тази опция, данните за превъртане ще бъдат запазени в RAM. " -"Ако изберете огромна стойност, системата ви може да остане без свободна RAM " -"и да причини сериозни проблеми с вашата система." +"Ако изберете много голяма стойност, това може да доведе до изчерпване на " +"свободната RAM и да причини сериозни проблеми с вашата система." #: widgets/HistorySizeWidget.cpp:69 #, kde-kuit-format @@ -5290,37 +5564,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Без" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Търсене..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Въведете текста за търсене" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Следващ" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Следващо съвпадение на търсения израз" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Предишен" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5328,77 +5602,77 @@ msgstr "Предишно съвпадение на търсения израз" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Показване на менюто с настройки" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Затваряне на полето за търсене" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Чувствителен регистър" +msgstr "С отчитане на регистъра" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Задава дали търсенето да е чувствително към регистъра" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Показване на менюто с настройки" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Затваряне на полето за търсене" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Регулярен израз" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" -msgstr "Осветяване на всички съвпадения" +msgstr "Маркиране на всички съвпадения" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Задава дали съвпадащият текст да се маркира" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Търсене назад" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Задава дали търсенето да започва отдолу" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "Без продължаване" +msgstr "Без пренасяне" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Задава дали търсенето да спре вместо да започне отначало" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Търсене на текущата фраза за търсене отдолу" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5409,7 +5683,7 @@ msgstr "Търсене на текущата фраза за търсене от msgid "Print Shell" msgstr "Печат на обвивката" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5449,6 +5723,12 @@ msgstr "Нормален формат на заглавието на разде msgid "Tab Co&lor:" msgstr "&Цвят на раздел" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "&Цвят на активния раздел:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5542,31 +5822,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Възстановяване на терминала" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Отваряне на нов раздел" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Търсене на раздели" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Затваряне на този раздел" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Отделя&не на раздел" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Конфигуриране или преименуване на раздел..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/bn/konsole.po b/local/recipes/kde/konsole/source/po/bn/konsole.po index ecf6711050..59d382cb5d 100644 --- a/local/recipes/kde/konsole/source/po/bn/konsole.po +++ b/local/recipes/kde/konsole/source/po/bn/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2010-05-30 02:09-0700\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: Bengali \n" @@ -51,7 +51,7 @@ msgstr "ভিউ" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "বিভক্ত ভিউ" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "&ইতিবৃত্ত" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -176,49 +176,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "স্বচ্ছ পটভূমি নিষ্ক্রিয় করো, এমন কি সিস্টেম সমর্থন করলেও।" -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "বর্তমান প্রোফাইলগুলির তালিকা দেখাও" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "একটি প্রোফাইল বৈশিষ্ট্যের মান পরিবর্তন করো।" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -226,7 +238,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,14 +246,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "যে যে আর্গুমেন্ট সমেত কমান্ড চালানো হবে" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -260,217 +272,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "পুরোভূমি" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "পটভূমি" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "রং ১" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "রং ২" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "রং ৩" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "রং ৪" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "রং ৫" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "রং ৬" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "রং ৭" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "রং ৮" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "পুরোভূমি (গাঢ়)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "পটভূমি (গাঢ়)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "রং ১ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "রং ২ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "রং ৩ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "রং ৪ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "রং ৫ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "রং ৬ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "রং ৭ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "রং ৮ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "পুরোভূমি (গাঢ়)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "পটভূমি (গাঢ়)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "রং ১ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "রং ২ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "রং ৩ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "রং ৪ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "রং ৫ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "রং ৬ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "রং ৭ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "রং ৮ (গাঢ়)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -736,6 +748,39 @@ msgstr "&উপরে" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "হোস্ট:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "কনসোল ডিফল্ট" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -780,7 +825,7 @@ msgstr "" msgid "Copy Location" msgstr "ইনপুট কপি করে পাঠাও" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -812,14 +857,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "ফন্ট সম্পাদনা করো..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "মসৃণ ফন্ট" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -857,17 +902,17 @@ msgstr "কী-কম্বিনেশন" msgid "Output" msgstr "আউটপুট" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "নতুন কী-বাইণ্ডিং তালিকা" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "কী-বাইণ্ডিং তালিকা সম্পাদনা করো" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -875,7 +920,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -909,249 +954,249 @@ msgstr "ইনপুট:" msgid "Output:" msgstr "আউটপুট:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "কনসোল" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "টার্মিনাল এমুলেটর" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "ত্রুটিসংশোধন এবং উন্নতিসাধন" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "টার্মিনাল এমুলেটর" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "ত্রুটিসংশোধন এবং উন্নতিসাধন" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "ত্রুটিসংশোধন এবং উন্নতিসাধন" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "ত্রুটিসংশোধন এবং উন্নতিসাধন" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "বিবিধ উন্নতিসাধন" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "ত্রুটিসংশোধন" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "সোলারিস সমর্থন এবং 'ইতিবৃত্ত'" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Bug fixes and improved startup performance" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "মার্কিং-এ উন্নতিসাধন" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1164,14 +1209,14 @@ msgstr "" "Embedded Konsole\n" "Toolbar and session names" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1184,28 +1229,28 @@ msgstr "" "Embedded Konsole\n" "General improvements" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Visual effects" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1218,152 +1263,152 @@ msgstr "" "Code from the kvt project\n" "General improvements" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "স্কীমা এবং লেখা নির্বাচন সংক্রান্ত উন্নতি" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "এস-জি-আই পোর্ট" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "ফ্রি-বি-এস-ডি পোর্ট" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "আরো অনেককে ধন্যবাদ।\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&নতুন ট্যাব" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ট্যাব &বন্ধ করো" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "নতুন &উইণ্ডো" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "কনসোল" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "বু&কমার্ক" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "নতুন রং স্কীম" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "প্রোফাইল ব্যবস্থাপনা করো" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "মেনু সক্রিয় করো" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "ভিউ বাঁদিকে সরাও" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1374,28 +1419,28 @@ msgid_plural "" msgstr[0] "এই ইউণ্ডোতে একাধিক ট্যাব রয়েছে, আপনি কি সত্যিই প্রস্থান করতে চান?" msgstr[1] "এই ইউণ্ডোতে একাধিক ট্যাব রয়েছে, আপনি কি সত্যিই প্রস্থান করতে চান?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "বন্ধ করা অনুমোদন করো" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "কনসোল" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "বর্তমান ট্যাব বন্ধ করো" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1403,45 +1448,45 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "এই ইউণ্ডোতে একাধিক ট্যাব রয়েছে, আপনি কি সত্যিই প্রস্থান করতে চান?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "নতুন প্রোফাইল" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "সাধারণ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "ট্যাব সংক্রান্ত &অপশন" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1532,7 +1577,7 @@ msgstr "ফাইল ম্যানেজার খোলো" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1544,29 +1589,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "কমান্ড:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "কমান্ড:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1608,7 +1653,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1667,11 +1712,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1733,94 +1778,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "মাপ কনফিগারেশন" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "প্রারম্ভিক সেশন শেষ হলে সেটি নিজে থেকে বন্ধ কোর না।" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2024,25 +2069,25 @@ msgstr "ট্যাব সংক্রান্ত &অপশন" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "প্রিন্টার ফ্রেণ্ডলি মো&ড (কালো টেক্সট, কোনো পশ্চাদপট নয়)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "ডিফল্ট প্রোফাইল" @@ -2105,17 +2150,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 থেকে আউটপুট সংরক্ষণ করো" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 একটি অবৈধ ইউ-আর-এল, আউটপুট সংরক্ষণ করা যায়নি।" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "ফাইল লেখা সম্ভব হয়নি।" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2152,83 +2219,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "গাঢ় প্যাস্টেল" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "কালোর ওপর সবুজ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "লিনাক্স রং" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "কালোর ওপর সাদা " -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "কালোর ওপর সাদা " -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "ডিফল্ট (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "লিনাক্স কনসোল" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "সোলারিস কনসোল" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "আউটপুট সন্ধান করো..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "এখানে অনুসন্ধান পংক্তি লেখো" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "সেশন '%1'-এ ঘণ্টা" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "বাইনারি খুঁজে পাওয়া যায়নি:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "সতর্কবার্তা: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "শুরু করার জন্য কোন interactive shell খুঁজে পাওয়া যায়নি।" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2237,385 +2323,393 @@ msgstr "" "'%1' খুঁজে পাওয়া যায়নি, তার বদলে '%2' শুরু করা হচ্ছে। অনুগ্রহ করে আপনার প্রোফাইল " "সেটিংস পরীক্ষা করুন।" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, fuzzy, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "প্রেরিত মান '%2'এর সঙ্গে প্রোগ্রাম কি '%1' শুরু করতে পারে না।" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "সেশন '%1' চুপচাপ" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "নতুন সেশন" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "শেষ" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "প্রোগ্রাম '%1' ক্র্যাশ করেছে।" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "প্রোগ্রাম '%1'-এর %2 স্ট্যাটাস সমেত সমাপ্তি।" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "জি-মোডেম অগ্রগতি" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "সেশন '%1'-এ কিছু ঘটছে" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "কনসোল" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "কনসোল জানে না এই বুকমার্কটি কি করে খুলতে হবে: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "শব্দসমষ্টি '%1' পাওয়া যায়নি।" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Configure Profiles..." msgid "Configure Web Shortcuts..." msgstr "প্রোফাইল কনফিগার করুন..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "সেশন &বন্ধ করো" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ফাইল ম্যানেজার খোলো" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&কপি করো" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "ভিউ পাশাপাশি ভাগ করো" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "ভিউ উপর/নিচ ভাগ করো" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ইনপুট কপি করো" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ইনপুট কপি করো" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "নির্বাচিত অংশ সাঁটো" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "সব নির্বাচন করো" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "নির্বাচন করো" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "নির্বাচন করো" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "আউটপুট &নতুন নামে সংরক্ষণ করো..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "আউটপুট &নতুন নামে সংরক্ষণ করো..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "স্ক্রীণ ছাপা&ও..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Configure Scrollback..." msgid "Adjust Scrollback..." msgstr "ইতিবৃত্ত কনফিগার করো..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "ইতিবৃত্ত মুছে ফেলো" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "ইতিবৃত্ত মুছে ফেলো এবং রিসেট করো" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "প্রোফাইল সম্পাদনা করো" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "পূর্ববর্তী ভিউ" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "প্রোফাইল সম্পাদনা করো" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&এনকোডিং নির্ধারণ করো" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "ট্যাব-এর না&ম পাল্টাও..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "বর্তমান উইণ্ডোয় &সমস্ত ট্যাব" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "ট্যাব নির্বাচ&ন করুন..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "&None" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "কিছু &নয়" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "ইনপুট কপি করে পাঠাও" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem আপলোড..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "কিছু &ঘটছে কি না খেয়াল রাখো" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "কিছু &ঘটছে কি না খেয়াল রাখো" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "সব চুপচা&প কি না খেয়াল রাখো" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "কিছু &ঘটছে কি না খেয়াল রাখো" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "ফন্ট বড় করো" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "ফন্ট ছোট করো" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "লেখা বড় করো" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "সিগনা&ল পাঠাও" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "টাস্ক স্থগি&ত রাখো" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "টাস্ক &আবার চালু করো" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "হ্যাং আ&প" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "টাস্ক বিঘ্নিত &করো" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "টার্মিনাল বৈশিষ্ট্যাবলী" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "টাস্ক থামিয়ে দা&ও" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "ব্যবহারকারী সিগনাল &১" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "ব্যবহারকারী সিগনাল &২" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "নতুন প্রোফাইল..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "বর্তমান প্রোফাইল সম্পাদনা করো..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "এই সেশন-এ একটি প্রোগ্রাম চলছে। আপনি কি এটি বন্ধ করার ব্যাপারে নিশ্চিত?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "এই সেশন-এ '%1' প্রোগ্রামটি চলছে। আপনি কি এটি বন্ধ করার ব্যাপারে নিশ্চিত?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "বন্ধ করা অনুমোদন করো" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "ট্যাব &বন্ধ করো" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2625,39 +2719,39 @@ msgid "" "by force?" msgstr "এই সেশন-এ একটি প্রোগ্রাম চলছে। আপনি কি এটি বন্ধ করার ব্যাপারে নিশ্চিত?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "এই সেশন-এ '%1' প্রোগ্রামটি চলছে। আপনি কি এটি বন্ধ করার ব্যাপারে নিশ্চিত?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "জি-মোডে&ম ডাউনলোড এখানে সংরক্ষণ করো..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2668,13 +2762,13 @@ msgstr "" "সফটওয়্যার পাওয়া যাচ্ছে না।

        আপনি 'rzsz' অথবা 'lrzsz' প্যাকেজটি ইনস্টল করে " "দেখতে পারেন।

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "

        বর্তমান সেশনে একটি জি-মোডেম ফাইল ট্রান্সফার আগে থেকেই চলছে।

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2683,7 +2777,7 @@ msgstr "" "

        সিস্টেমে কোনো মানানসই জি-মোডেম সফটওয়ার পাওয়া যায়নি।

        আপনি 'rzsz' বা " "'lrzsz' প্যাকেজগুলি ইনস্টল করে দেখতে পারেন।

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "জি-মোডেম আপলোড করার জন্য ফাইল বেছে নিন" @@ -2709,152 +2803,179 @@ msgctxt "@title:window" msgid "Configure" msgstr "বন্ধ করা অনুমোদন করো" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "উইণ্ডোর শিরোনাম নির্ধারণ করুন" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "রেগুলার এক্সপ্রেশন খোঁজো" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "সব চিহ্নিত করো" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "অনুসন্ধানটি কেস-সেন্সিটিভ হবে কি না নির্ধারণ করে" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "সক্রিয় ভিউ বন্ধ করো" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, fuzzy, kde-format +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "উইণ্ডোর শিরোনাম নির্ধারণ করুন" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "নতুন ট্যাব লেখা ঢোকাও:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "সিস্টেম বার্তা (&ব)" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "অনুসন্ধানটি কেস-সেন্সিটিভ হবে কি না নির্ধারণ করে" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "সক্রিয় ভিউ বন্ধ করো" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "সব চিহ্নিত করো" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "বর্তমান অনুসন্ধান পংক্তির জন্য পরবর্তী মিল খোঁজো" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "রেগুলার এক্সপ্রেশন খোঁজো" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2879,74 +3000,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "অনুসন্ধানটি কেস-সেন্সিটিভ হবে কি না নির্ধারণ করে" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "সব চিহ্নিত করো" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "মিলগুলি চিহ্নিত করা হবে কি না নির্ধারণ করে" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2954,91 +3113,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "একটি স্বনির্বাচিত ব্যবহার করো, কার্সরের জন্য রং মেরামত করেছিলেন" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3051,26 +3216,24 @@ msgid "Enable memory monitoring:" msgstr "Bi-Directional লেখা প্রদর্শন সক্রিয় করো" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3241,109 +3404,128 @@ msgctxt "Do not show a close button" msgid "None" msgstr "কিছু &নয়" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "ট্যাব &বন্ধ করো" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "ট্যাব বার-এ 'নতুন ট্যাব' এবং 'ট্যাব বন্ধ করো' বাটন দেখাও" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format msgid "Use user-defined stylesheet:" msgstr "একটি স্বনির্বাচিত ব্যবহার করো, কার্সরের জন্য রং মেরামত করেছিলেন" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "নতুন ট্যাব লেখা ঢোকাও:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "বর্তমান ট্যাব বন্ধ করো" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "বিভক্ত ভিউ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "মেনুবার দেখাও" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3351,14 +3533,14 @@ msgid "Small" msgstr "ছোট" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3366,7 +3548,7 @@ msgid "Large" msgstr "বড়" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3420,8 +3602,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3461,98 +3643,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "মাপ: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, fuzzy, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "আপনি কি বর্তমান সেশনটি বন্ধ করার ব্যাপারে নিশ্চিত?" msgstr[1] "আপনি কি বর্তমান সেশনটি বন্ধ করার ব্যাপারে নিশ্চিত?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "বন্ধ করা অনুমোদন করো" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "বন্ধ করা অনুমোদন করো" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "বর্তমান অক্ষর মিলতে কার্সর রং নিযুক্ত করো" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "নির্বাচিত অংশ সাঁটো" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been Ctrl+S চাপা হয়েছে বলে আউটপুট আটকে রাখা হয়েছে। Ctrl+Q চাপলে পুনরায় শুরু হবে।" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "কার্যকরী ডিরেক্টরি পাল্টে 'dir' করো" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "নির্বাচিত অংশ সাঁটো" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "বিভক্ত ভিউ" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "ভিউ পাশাপাশি ভাগ করো" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "ভিউ উপর/নিচ ভাগ করো" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3608,7 +3790,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "ভিউ উপর/নিচ ভাগ করো" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3616,7 +3798,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "ভিউ পাশাপাশি ভাগ করো" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3624,7 +3806,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "ভিউ উপর/নিচ ভাগ করো" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3632,210 +3814,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "ভিউ উপর/নিচ ভাগ করো" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "ভিউ প্রসারিত করো" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "ভিউ সঙ্কুচিত করো" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "এই ট্যাবটি &আলাদা করো" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "এই ট্যাবটি &আলাদা করো" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&নতুন ট্যাব" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "পূর্ববর্তী" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "টার্মিনাল-এর উপরে" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "টার্মিনাল-এর নিচে" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "টার্মিনাল-এর উপরে" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "টার্মিনাল-এর নিচে" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "%1 ট্যাবে যাও" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "ভিউ ডানদিকে সরাও" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "ভিউ বাঁদিকে সরাও" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1 ট্যাবে যাও" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "মাউস আচরণ" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "লাইনের সংখ্যা:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "ভিউ বাঁদিকে সরাও" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3848,7 +4044,7 @@ msgstr "" "আউটপুট সংরক্ষণ করাকালীন একটি সমস্যা ঘটেছে।\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3861,13 +4057,13 @@ msgstr "" "আউটপুট সংরক্ষণ করাকালীন একটি সমস্যা ঘটেছে।\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, fuzzy, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3967,29 +4163,41 @@ msgstr "ডিফল্ট অক্ষর এনকোডিং:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "লাইনের সংখ্যা:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4027,7 +4235,7 @@ msgstr "নির্বাচিত রং স্কিম সম্পাদন #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4083,12 +4291,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4217,31 +4431,47 @@ msgid "Make the cursor blink regularly" msgstr "কার্সর নিয়মিতভাবে ব্লিঙ্ক করবে" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "&সক্রিয়" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "মেনু সক্রিয় করো" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "কার্সর নিয়মিতভাবে ব্লিঙ্ক করবে" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "উইণ্ডো" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4249,25 +4479,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4276,27 +4506,27 @@ msgid "Color:" msgstr "রং" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format msgid "Select the color used to draw the border" msgstr "কার্সর আঁকতে রং নির্বাচন করেছিলেন ব্যবহার করেছিলেন" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "টার্মিনালের আকার স্থায়ী" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "টার্মিনালের আকার স্থায়ী" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4304,96 +4534,96 @@ msgid "Terminal contents" msgstr "টার্মিনাল বৈশিষ্ট্যাবলী" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "লা&ইনের মাঝে ফাঁক" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Bi-Directional লেখা প্রদর্শন সক্রিয় করো" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4401,44 +4631,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format msgid "Brahmic scripts characters" msgstr "বর্তমান অক্ষর মিলতে কার্সর রং নিযুক্ত করো" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "ফন্ট" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4448,99 +4678,99 @@ msgstr "" "ভাষার জন্য)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Bi-Directional লেখা প্রদর্শন সক্রিয় করো" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "বর্তমান অক্ষর মিলতে কার্সর রং নিযুক্ত করো" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "প্রোফাইল সম্পাদনা করো" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "সাধারণ" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ট্যাব" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "চেহারা" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "স্ক্রোলিং" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format msgid "Keyboard" msgstr "কীবোর্ড (&ক)" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "কী-বাইণ্ডিং" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "অগ্রসর" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4549,13 +4779,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4566,37 +4796,43 @@ msgstr "" "এই নামে একটি ফাইল আগে থেকেই আছে। \n" "আপনি কি সেটি মুছে ফেলতে চান ?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "প্রোফাইল সম্পাদনা করা হচ্ছে: %2" msgstr[1] "%1-টি প্রোফাইল সম্পাদনা করা হচ্ছে: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "নতুন প্রোফাইল..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "প্রোফাইল \"%1\" সম্পাদনা করো" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "&None" +msgid "None" +msgstr "কিছু &নয়" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4606,7 +4842,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4616,46 +4852,46 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "সিস্টেম &ঘণ্টা" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "সিস্টেম বার্তা (&ব)" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "দৃশ্যমা&ন ঘণ্টা" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "নির্বাচিত প্রোফাইলটি নতুন টার্মিনাল সেশনের জন্য ডিফল্ট হিসেবে নির্ধারিত করো" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, fuzzy, kde-format msgid "Edit Environment" msgstr "পরিবেশ সম্পাদনা করো" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4663,24 +4899,24 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "প্রারম্ভিক ডিরেক্টরী নির্বাচন করো" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "নতুন..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, fuzzy, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4689,20 +4925,20 @@ msgstr "" "এই রং পরিকল্পনাটি একটি স্বচ্ছ পটভূমি ব্যবহার করো যেটি আপনার ডেস্কটপে হ সমর্থন করতে " "আবির্ভূত হো না" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "ডিফল্ট প্রোফাইল" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4719,7 +4955,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4815,27 +5051,55 @@ msgstr "প্রারম্ভিক ডিরেক্টরীর জন্ msgid "Start in same directory as current session" msgstr "বর্তমান ট্যাব-এর ডিরেক্টরীতে শুরু করো" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "বর্তমান ট্যাব-এর ডিরেক্টরীতে শুরু করো" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "পরিবেশ (এনভায়রনমেন্ট):" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "এনভায়রনমেন্ট ভেরিয়েবল-এর তালিকা সম্পাদনা করুন" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "টার্মিনালের আকার স্থায়ী" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4845,33 +5109,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "টার্মিনাল এমুলেটর" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "মাউস আচরণ" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4881,9 +5145,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4894,9 +5158,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4907,35 +5171,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "পটভূমি" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5285,50 +5549,93 @@ msgid "Scrollback:" msgstr "&ইতিবৃত্ত" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "লুকানো" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ট্যাব বার অবস্থান:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "টার্মিনাল উইণ্ডোর ডানদিকে স্ক্রোলবার দেখাও" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5336,67 +5643,36 @@ msgid "Ri&ght side" msgstr "ডানদিকে দেখাও" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "টার্মিনাল উইণ্ডোর বাঁদিকে স্ক্রোলবার দেখাও" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "লেখার মাপ:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "লুকানো" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ট্যাব বার অবস্থান:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5499,42 +5775,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "কিছু &নয়" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "খোঁজো:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "এখানে অনুসন্ধান পংক্তি লেখো" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "পরবর্তী" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "বর্তমান অনুসন্ধান পংক্তির জন্য পরবর্তী মিল খোঁজো" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "পূর্ববর্তী" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5542,88 +5818,88 @@ msgid "Find the previous match for the current search phrase" msgstr "বর্তমান অনুসন্ধান পংক্তির জন্য পূর্ববর্তী মিল খোঁজো" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "অনুসন্ধান বার বন্ধ করো" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "সক্রিয় ভিউ বন্ধ করো" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "অনুসন্ধানটি কেস-সেন্সিটিভ হবে কি না নির্ধারণ করে" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "অনুসন্ধান বার বন্ধ করো" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "রেগুলার এক্সপ্রেশন খোঁজো" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "সব চিহ্নিত করো" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "মিলগুলি চিহ্নিত করা হবে কি না নির্ধারণ করে" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "বর্তমান অনুসন্ধান পংক্তির জন্য পরবর্তী মিল খোঁজো" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "বর্তমান অনুসন্ধান পংক্তির জন্য পরবর্তী মিল খোঁজো" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "বর্তমান অনুসন্ধান পংক্তির জন্য পরবর্তী মিল খোঁজো" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "বর্তমান অনুসন্ধান পংক্তির জন্য পরবর্তী মিল খোঁজো" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5636,7 +5912,7 @@ msgstr "বর্তমান অনুসন্ধান পংক্তির msgid "Print Shell" msgstr "হেডা&র ছাপানো হোক" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "&None" msgctxt "@label:listbox No color selected" @@ -5680,6 +5956,12 @@ msgstr "স্বাভাবিক ট্যাব শিরোনাম ফর msgid "Tab Co&lor:" msgstr "রং" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +msgid "&Activity Tab Color:" +msgstr "ট্যা&ব-এর রঙ নির্বাচন করুন..." + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5794,7 +6076,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "টার্মিনাল রিসেট &এবং ফাঁকা করো" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5802,33 +6084,48 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "ট্যা&ব আলাদা করো" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ট্যা&ব আলাদা করো" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "ট্যাব &বন্ধ করো" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "ট্যা&ব আলাদা করো" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ট্যাব-এর না&ম পাল্টাও..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "ট্যাব &বন্ধ করো" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "সক্রিয় ভিউ বন্ধ করো" + #, fuzzy #~| msgid "&None" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6285,9 +6582,6 @@ msgstr "ট্যাব &বন্ধ করো" #~ msgid "Decrease Text Size" #~ msgstr "লেখা ছোট করো" -#~ msgid "Search Output..." -#~ msgstr "আউটপুট সন্ধান করো..." - #~ msgid "Find Next" #~ msgstr "পরবর্তী মিল খোঁজো" @@ -6307,10 +6601,6 @@ msgstr "ট্যাব &বন্ধ করো" #~ msgid "New" #~ msgstr "নতুন " -#, fuzzy -#~ msgid "Select &Tab Color" -#~ msgstr "ট্যা&ব-এর রঙ নির্বাচন করুন..." - #, fuzzy #~ msgid "Enable transparent backgrounds" #~ msgstr "স্বচ্ছ, গাঢ় পটভূমি" @@ -6647,9 +6937,6 @@ msgstr "ট্যাব &বন্ধ করো" #~ msgid "Overwrite" #~ msgstr "মুছে লেখো" -#~ msgid "Unable to write to file." -#~ msgstr "ফাইল লেখা সম্ভব হয়নি।" - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/bn_IN/konsole.po b/local/recipes/kde/konsole/source/po/bn_IN/konsole.po index 56cf0a8837..6880d3f1a6 100644 --- a/local/recipes/kde/konsole/source/po/bn_IN/konsole.po +++ b/local/recipes/kde/konsole/source/po/bn_IN/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2008-12-29 15:34+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" @@ -50,7 +50,7 @@ msgstr "প্রদর্শন" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "" @@ -86,7 +86,7 @@ msgid "S&crollback" msgstr "স্ক্রোল-ব্যাক (&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session number" msgid "Session Toolbar" @@ -171,49 +171,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "সিস্টেম দ্বারা সমর্থিত হলেও, স্বচ্ছ পটভূমি ব্যবহার করা হবে না।" -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "উপলব্ধ প্রোফাইলের তালিকা" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "প্রোফাইলের কোনো বৈশিষ্ট্যের মান পরিবর্তন করুন।" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -221,7 +233,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,14 +241,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "কমান্ডের সাথে উল্লিখিত আর্গুমেন্ট" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -257,217 +269,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "অগ্রভূমি" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "পটভূমি" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "রঙ ১" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "রঙ ২" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "রঙ ৩" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "রঙ ৪" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "রঙ ৫" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "রঙ ৬" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "রঙ ৭" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "রঙ ৮" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "অগ্রভূমি (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "পটভূমি (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "রঙ ১ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "রঙ ২ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "রঙ ৩ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "রঙ ৪ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "রঙ ৫ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "রঙ ৬ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "রঙ ৭ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "রঙ ৮ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "অগ্রভূমি (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "পটভূমি (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "রঙ ১ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "রঙ ২ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "রঙ ৩ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "রঙ ৪ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "রঙ ৫ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "রঙ ৬ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "রঙ ৭ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "রঙ ৮ (প্রগাঢ়)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -737,6 +749,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "হোস্ট:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "ডিফল্ট মান রূপে নির্ধারণ করুন" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -781,7 +827,7 @@ msgstr "" msgid "Copy Location" msgstr "ইনপুট কপি করুন" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -813,13 +859,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "ফন্ট সম্পাদনা..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -857,17 +903,17 @@ msgstr "কি সংকলন" msgid "Output" msgstr "ফলাফল" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "কি-বাইন্ডিংয়ের নতুন তালিকা" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "কি-বাইন্ডিংয়ের তালিকা সম্পাদনা" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -875,7 +921,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -909,247 +955,247 @@ msgstr "ইনপুট:" msgid "Output:" msgstr "ফলাফল:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "টার্মিন্যাল এমুলেটর" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "কার্ট ভি. হিন্ডেনবার্গ" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "বাগ সংশোধন ও সাধারণ কিছু উন্নতি" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "রবার্ট নাইট" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "লার্স ডোয়েল" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "টার্মিন্যাল এমুলেটর" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "বাগ সংশোধন ও সাধারণ কিছু উন্নতি" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "বাগ সংশোধন ও সাধারণ কিছু উন্নতি" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "বাগ সংশোধন ও সাধারণ কিছু উন্নতি" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "ওয়াল্ডো ব্যাস্টিয়ান" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "স্টিফান বিনার" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "বাগ সংশোধন ও সাধারণ কিছু উন্নতি" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "ক্রিস মাখেমার" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "বাগ সংশোধন" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "স্টিফান কুলো" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris সমর্থন ও পূর্ববর্তী তথ্য" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "আলেকজান্ডার নিওনডোর্ফ" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "বাগ সংশোধন ও প্রারম্ভিক কর্মক্ষমতার উন্নতি" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "পিটার সিলভা" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "উল্লেখযোগ্য উন্নতি" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "লোটজি বোলোনি" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1162,14 +1208,14 @@ msgstr "" "এমবেড করা Konsole\n" "টুলবার ও সেশানের নাম" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "ডেভিড ফাউরে" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1182,28 +1228,28 @@ msgstr "" "এমবেড করা Konsole\n" "সাধারণ কিছু উন্নতি" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "আন্টোনিও লারোসা" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "ভিসুয়াল ইফেক্ট" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "ম্যাথায়েস এট্রিখ" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1216,150 +1262,150 @@ msgstr "" "kvt প্রজেক্টের কোড\n" "সাধারণ উন্নতি" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "ওয়ারউইক অ্যালিসন" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "স্কিমা ও টেক্সট নির্বাচন সংক্রান্ত উন্নতি" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "ড্যান পিলোন" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI পোর্ট" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "কেভিন স্ট্রিট" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD পোর্ট" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "সওয়েন ফিশার" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "ডেইল এম. ফ্লাভেন" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "মার্টিন জোন্স" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "লার্স নোল" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "অ্যানান্য অনেককে অসংখ্যা ধন্যবাদন।\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "নতুন ট্যাব (&T)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ট্যাব বন্ধ করুন (&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "নতুন উইন্ডো (&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "বুকমার্ক (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "নতুন রঙের বিন্যাস" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "প্রোফাইল ব্যবস্থাপনা" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1372,28 +1418,28 @@ msgstr[0] "" msgstr[1] "" "এই উইন্ডোর মধ্যে একাধিক ট্যাব উপস্থিত রয়েছে, আপনি কি নিশ্চিতরূপে প্রস্থান করতে ইচ্ছুক?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "বন্ধ করার নিশ্চিতি" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "বর্তমান ট্যাব বন্ধ করুন" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1402,45 +1448,45 @@ msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "এই উইন্ডোর মধ্যে একাধিক ট্যাব উপস্থিত রয়েছে, আপনি কি নিশ্চিতরূপে প্রস্থান করতে ইচ্ছুক?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "নতুন প্রোফাইল" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "সাধারণ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1531,7 +1577,7 @@ msgstr "লিংক প্রদর্শন" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1543,29 +1589,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "কমান্ড:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "কমান্ড:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1608,7 +1654,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1666,11 +1712,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1733,93 +1779,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "প্রথম সেশান সমাপ্ত হলে তা স্বয়ংক্রিয়ভাবে বন্ধ করার প্রচেষ্টা করা হবে না।" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2023,25 +2069,25 @@ msgstr "ফলাফল" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2105,17 +2151,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 থেকে প্রাপ্ত ফলাফল সংরক্ষণ করুন" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 URL-টি বৈধ নয় এবং ফলাফল সংরক্ষণ করা সম্ভব হবে না।" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2152,84 +2219,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "গাঢ় পেস্টেল" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "কালোর উপর সবুজ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-র রঙ" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "কালোর উপর সাদা" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "কালোর উপর সাদা" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "ডিফল্ট (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux কনসোল" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris কনসোল" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "অনুসন্ধানের ফলাফল..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "অনুসন্ধানের উদ্দেশ্যে এইখানে তথ্য লিখুন" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "সেশান '%1'-এ ঘন্টাধ্বনি" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "বাইনারি পাওয়া যায়নি: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "সতর্কবার্তা: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "আরম্ভ করার জন্য কোনো ইন্টারেক্টিভ শেল পাওয়া যায়নি।" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2238,361 +2324,369 @@ msgstr "" "'%1' পাওয়া না যাওয়ার ফলে, পরিবর্তে '%2' আরম্ভ করা হচ্ছে। অনুগ্রহ করে আপনার " "প্রোফাইল সংক্রান্ত বৈশিষ্ট্যগুলি নিরীক্ষা করুন।" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "'%1' প্রোগ্রামটি, '%2' আর্গুমেন্ট সহ আরম্ভ করা যায়নি।" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' সেশানে নিরবতা" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "সমাপ্ত" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "প্রোগ্রাম '%1' বিপর্যস্ত হয়েছে।" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "প্রোগ্রাম '%1' প্রস্থানকালে, %2 অবস্থা উৎপন্ন হয়েছে।" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-র প্রগতি" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1'-এ কর্ম" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "প্রোফাইল ব্যবস্থাপনা..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "কপি করুন (&C)" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ইনপুট কপি করুন" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ইনপুট কপি করুন" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "নির্বাচিত অংশ পেস্ট করুন" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "সমগ্র নির্বাচন" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "নির্বাচন করুন" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "নির্বাচন করুন" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "ফলাফল সংরক্ষণ করুন..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "ফলাফল সংরক্ষণ করুন..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "প্রোফাইল ব্যবস্থাপনা..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Scrollback" msgid "Clear Scrollback" msgstr "স্ক্রোল-ব্যাক" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback" msgid "Clear Scrollback and Reset" msgstr "স্ক্রোল-ব্যাক মুছে ফেলুন" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "প্রোফাইল সম্পাদনা" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "পূর্ববর্তী প্রদর্শন" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "প্রোফাইল সম্পাদনা" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "এনকোডিং" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "ট্যাবের নাম পরিবর্তন করুন...(&R)" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "ট্যাবের নাম পরিবর্তন করুন...(&R)" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy Input To" msgstr "ইনপুট কপি করুন" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "কর্ম সঞ্চালন নিরীক্ষণ করুন (&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "কর্ম সঞ্চালন নিরীক্ষণ করুন (&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "নিষ্ক্রিয় অবস্থা নিরীক্ষণ করুন (&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "কর্ম সঞ্চালন নিরীক্ষণ করুন (&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "হরফের মাপ বৃদ্ধি করুন" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "ট্যাব বন্ধ করুন (&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "টার্মিন্যালের বৈশিষ্ট্য" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "নতুন প্রোফাইল..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "বর্তমান প্রোফাইল সম্পাদনা..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2601,7 +2695,7 @@ msgstr "" "বর্তমান সেশানে একটি প্রোগ্রাম এই মুহূর্তে চলছে। আপনি কি নিশ্চিতরূপে এটি বন্ধ করতে " "ইচ্ছুক?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2610,19 +2704,19 @@ msgstr "" "বর্তমান সেশানে একটি '%1' প্রোগ্রাম এই মুহূর্তে চলছে। আপনি কি নিশ্চিতরূপে এটি বন্ধ " "করতে ইচ্ছুক?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "বন্ধ করার নিশ্চিতি" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "ট্যাব বন্ধ করুন (&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2634,40 +2728,40 @@ msgstr "" "বর্তমান সেশানে একটি প্রোগ্রাম এই মুহূর্তে চলছে। আপনি কি নিশ্চিতরূপে এটি বন্ধ করতে " "ইচ্ছুক?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "বর্তমান সেশানে একটি '%1' প্রোগ্রাম এই মুহূর্তে চলছে। আপনি কি নিশ্চিতরূপে এটি বন্ধ " "করতে ইচ্ছুক?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2675,20 +2769,20 @@ msgid "" "or 'lrzsz' package.

        " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " "to install the 'rzsz' or 'lrzsz' package.

        " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2714,149 +2808,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "বন্ধ করার নিশ্চিতি" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "রেগুলার এক্সপ্রেশন মেলানো হবে" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "সকল উপস্থিতি উজ্জ্বল করা হবে" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "হরফের ছাঁদ মেলানো হবে কি না নির্ধারণ করতে ব্যবহৃত হয়" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Case sensitive" -msgstr "হরফের ছাঁদ মেলানো হবে কি না নির্ধারণ করতে ব্যবহৃত হয়" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, kde-format +msgid "Force new tabs" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "হরফের ছাঁদ মেলানো হবে কি না নির্ধারণ করতে ব্যবহৃত হয়" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Case sensitive" +msgstr "হরফের ছাঁদ মেলানো হবে কি না নির্ধারণ করতে ব্যবহৃত হয়" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "সকল উপস্থিতি উজ্জ্বল করা হবে" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "চিহ্নিত তথ্যের পরবর্তী উপস্থিতি অনুসন্ধান করুন" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "রেগুলার এক্সপ্রেশন মেলানো হবে" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2881,74 +3001,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "হরফের ছাঁদ মেলানো হবে কি না নির্ধারণ করতে ব্যবহৃত হয়" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "সকল উপস্থিতি উজ্জ্বল করা হবে" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "চিহ্নিত তথ্যের সকল উপস্থিতি উজ্জ্বলিত করা হবে কি না নির্ধারণ করা হয়" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2956,92 +3114,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "কার্সারের জন্য স্বনির্ধারিত স্থায়ী রঙ প্রয়োগ করুন" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3054,26 +3218,24 @@ msgid "Enable memory monitoring:" msgstr "টার্মিন্যালের মধ্যে উভয় দিশায় হরফ প্রদর্শন সক্রিয় করা হবে" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3239,108 +3401,127 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "ট্যাব বন্ধ করুন (&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "ট্যাব বারের মধ্যে 'নতুন ট্যাব' ও 'ট্যাব বন্ধ করুন' শীর্ষক বাটন প্রদর্শন করা হবে" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "কার্সারের জন্য স্বনির্ধারিত স্থায়ী রঙ প্রয়োগ করুন" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "বর্তমান ট্যাব বন্ধ করুন" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "মেনু বার প্রদর্শন করা হবে" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3348,14 +3529,14 @@ msgid "Small" msgstr "ক্ষুদ্র" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3363,7 +3544,7 @@ msgid "Large" msgstr "বৃহৎ" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3416,8 +3597,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3457,99 +3638,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "মাপ: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "বন্ধ করার নিশ্চিতি" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "বন্ধ করার নিশ্চিতি" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "বর্তমান অক্ষরের রঙ অনুযায়ী কার্সারের রঙ নির্ধারণ করা হবে" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "নির্বাচিত অংশ পেস্ট করুন" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "নির্বাচিত অংশ পেস্ট করুন" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "বর্তমান ট্যাব বন্ধ করুন" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "বর্তমান ট্যাব বন্ধ করুন" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "নতুন ট্যাব (&T)" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "পূর্ববর্তী" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "টার্মিন্যালের প্রদর্শনের উপরেী" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "টার্মিন্যালের প্রদর্শনের নীচে" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "টার্মিন্যালের প্রদর্শনের উপরেী" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "টার্মিন্যালের প্রদর্শনের নীচে" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "%1 ট্যাবে পরিবর্তন করুন" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1 ট্যাবে পরিবর্তন করুন" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Remote Connection" msgid "Semantic hints " msgstr "দূরবর্তী সংযোগ" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "সুনিশ্চিত পংক্তি সংখ্যা: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3828,7 +4023,7 @@ msgstr "" "ফলাফল সংরক্ষণে সমস্যা।\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3841,13 +4036,13 @@ msgstr "" "ফলাফল সংরক্ষণে সমস্যা।\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3946,29 +4141,41 @@ msgstr "ডিফল্ট ক্যারেক্টার এনকোডি msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "সুনিশ্চিত পংক্তি সংখ্যা: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4008,7 +4215,7 @@ msgstr "নির্বাচিত প্রোফাইল(গুলি) স #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4066,12 +4273,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4195,30 +4408,46 @@ msgid "Make the cursor blink regularly" msgstr "নিয়মিতরূপে কার্সারে ঝলকানি হবে" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "বিবরণ:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "নিয়মিতরূপে কার্সারে ঝলকানি হবে" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "উইন্ডো" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4226,25 +4455,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4252,28 +4481,28 @@ msgid "Color:" msgstr "রঙ" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "কার্সার আঁকার জন্য ব্যবহৃত রঙ নির্বাচক করুন" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "টার্মিন্যালের বৈশিষ্ট্য" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "টার্মিন্যালের বৈশিষ্ট্য" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4281,95 +4510,95 @@ msgid "Terminal contents" msgstr "টার্মিন্যালের বৈশিষ্ট্য" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "টার্মিন্যালের মধ্যে উভয় দিশায় হরফ প্রদর্শন সক্রিয় করা হবে" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4377,45 +4606,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "বর্তমান অক্ষরের রঙ অনুযায়ী কার্সারের রঙ নির্ধারণ করা হবে" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "ফন্ট" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4425,100 +4654,100 @@ msgstr "" "ক্ষেত্রে প্রযোজ্য)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "টার্মিন্যালের মধ্যে উভয় দিশায় হরফ প্রদর্শন সক্রিয় করা হবে" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "বর্তমান অক্ষরের রঙ অনুযায়ী কার্সারের রঙ নির্ধারণ করা হবে" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "প্রোফাইল সম্পাদনা" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "সাধারণ" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ট্যাব" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "চেহারা ছবি" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "স্ক্রোলিং" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "কি বাইন্ডিং" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "উন্নত বৈশিষ্ট্য" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4527,31 +4756,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4559,18 +4788,23 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "প্রোফাইল \"%1\" সম্পাদনা করুন" msgstr[1] "প্রোফাইল \"%1\" সম্পাদনা করুন" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "নতুন প্রোফাইল..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "প্রোফাইল \"%1\" সম্পাদনা করুন" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4580,7 +4814,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4590,45 +4824,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "নির্বাচিত অংশ পেস্ট করুন" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "ভিসুয়াল ইফেক্ট" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "নির্বাচিত প্রোফাইলটি নতুন টার্মিন্যাল সেশানের জন্য ডিফল্টরূপে প্রয়োগ করা হবে" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "পরিবেশ সম্পাদনা" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4636,24 +4870,24 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "প্রারম্ভিক ডিরেক্টরি নির্বাচন করুন" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "নতুন..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4662,20 +4896,20 @@ msgstr "" "এই রঙের বিন্যাসের সাথে স্বচ্ছ পটভূমি ব্যবহৃত হয়, কিন্তু আপনার ডেস্কটপে স্বচ্ছ পটভূমি " "সমর্থিত নয়" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "প্রোফাইল মুছে ফেলুন" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4692,7 +4926,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4786,27 +5020,55 @@ msgstr "প্রারম্ভিক ডিরেক্টরি চিহ্ msgid "Start in same directory as current session" msgstr "বর্তমান ট্যাবের ডিরেক্টরি প্রয়োগ করে আরম্ভ করা হবে" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "বর্তমান ট্যাবের ডিরেক্টরি প্রয়োগ করে আরম্ভ করা হবে" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "পরিবেশ:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "এনভায়রনমেন্ট ভেরিয়েবলের তালিকা ও সংশ্লিষ্ট মান সম্পাদনা করুন" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "টার্মিন্যালের বৈশিষ্ট্য" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4816,33 +5078,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "টার্মিন্যাল এমুলেটর" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Remote Connection" msgid "Semantic Integration" msgstr "দূরবর্তী সংযোগ" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4852,9 +5114,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4865,9 +5127,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4878,35 +5140,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "পটভূমি" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5247,51 +5509,94 @@ msgid "Scrollback:" msgstr "স্ক্রোল-ব্যাক (&c)" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "আড়াল করা" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ট্যাব বারের অবস্থান:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, fuzzy, kde-format #| msgid "Show or hide the menu bar in terminal windows" msgid "Show the scroll bar on the right side of the terminal window" msgstr "টার্মিন্যাল উইন্ডোর মধ্যে মেনু বার প্রদর্শন অথবা আড়াল করা হবে" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5299,68 +5604,37 @@ msgid "Ri&ght side" msgstr "ডানদিকে প্রদর্শন করা হবে" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, fuzzy, kde-format #| msgid "Show or hide the menu bar in terminal windows" msgid "Show the scroll bar on the left side of the terminal window" msgstr "টার্মিন্যাল উইন্ডোর মধ্যে মেনু বার প্রদর্শন অথবা আড়াল করা হবে" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "হরফের মাপ:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "আড়াল করা" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ট্যাব বারের অবস্থান:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5462,42 +5736,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "অনুসন্ধান:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "অনুসন্ধানের উদ্দেশ্যে এইখানে তথ্য লিখুন" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "পরবর্তী" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "চিহ্নিত তথ্যের পরবর্তী উপস্থিতি অনুসন্ধান করুন" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "পূর্ববর্তী" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5505,86 +5779,87 @@ msgid "Find the previous match for the current search phrase" msgstr "চিহ্নিত তথ্যের পূর্ববর্তী উপস্থিতি অনুসন্ধান করুন" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 #, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "অনুসন্ধানের বার বন্ধ করুন" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#| msgid "Sets whether the search is case sensitive" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "" +msgstr "হরফের ছাঁদ মেলানো হবে কি না নির্ধারণ করতে ব্যবহৃত হয়" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "হরফের ছাঁদ মেলানো হবে কি না নির্ধারণ করতে ব্যবহৃত হয়" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "অনুসন্ধানের বার বন্ধ করুন" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "রেগুলার এক্সপ্রেশন মেলানো হবে" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "সকল উপস্থিতি উজ্জ্বল করা হবে" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "চিহ্নিত তথ্যের সকল উপস্থিতি উজ্জ্বলিত করা হবে কি না নির্ধারণ করা হয়" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "চিহ্নিত তথ্যের পরবর্তী উপস্থিতি অনুসন্ধান করুন" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "চিহ্নিত তথ্যের পরবর্তী উপস্থিতি অনুসন্ধান করুন" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "চিহ্নিত তথ্যের পরবর্তী উপস্থিতি অনুসন্ধান করুন" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "চিহ্নিত তথ্যের পরবর্তী উপস্থিতি অনুসন্ধান করুন" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5597,7 +5872,7 @@ msgstr "চিহ্নিত তথ্যের পরবর্তী উপস msgid "Print Shell" msgstr "Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5637,6 +5912,13 @@ msgstr "স্বাভাবিক ট্যাবের শিরোনাম msgid "Tab Co&lor:" msgstr "রঙ" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "রঙ" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5751,33 +6033,40 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ট্যাব বন্ধ করুন (&C)" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Rename Tab..." +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ট্যাবের নাম পরিবর্তন করুন...(&R)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "অনুসন্ধানের বার বন্ধ করুন" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ট্যাবের নাম পরিবর্তন করুন...(&R)" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" @@ -6157,9 +6446,6 @@ msgstr "ট্যাব বন্ধ করুন (&C)" #~ msgid "Decrease Text Size" #~ msgstr "হরফের মাপ হ্রাস করুন" -#~ msgid "Search Output..." -#~ msgstr "অনুসন্ধানের ফলাফল..." - #~ msgid "Find Next" #~ msgstr "পরবর্তী উপস্থিতি অনুসন্ধান" diff --git a/local/recipes/kde/konsole/source/po/br/konsole.po b/local/recipes/kde/konsole/source/po/br/konsole.po index 39dd3a847e..d383691f21 100644 --- a/local/recipes/kde/konsole/source/po/br/konsole.po +++ b/local/recipes/kde/konsole/source/po/br/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole-1.1\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2004-01-18 20:39+0100\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" @@ -51,7 +51,7 @@ msgstr "Gwel" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View" @@ -91,7 +91,7 @@ msgid "S&crollback" msgstr "Ne ziskouezit ket ar varenn dibunañ" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -170,54 +170,66 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 #, kde-format msgctxt "@info:shell" -msgid "List the available profiles" +msgid "Start Konsole in fullscreen mode" msgstr "" #: Application.cpp:73 #, kde-format msgctxt "@info:shell" -msgid "List all the profile properties names and their type (for use with -p)" +msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" #: Application.cpp:74 #, kde-format msgctxt "@info:shell" -msgid "Change the value of a profile property." +msgid "List the available profiles" +msgstr "" + +#: Application.cpp:75 +#, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" msgstr "" #: Application.cpp:76 #, kde-format msgctxt "@info:shell" +msgid "Change the value of a profile property." +msgstr "" + +#: Application.cpp:78 +#, kde-format +msgctxt "@info:shell" msgid "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -225,14 +237,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments for 'command'" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Arventennoù evit ar 'meziant'" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "transparency" msgctxt "@item" @@ -253,201 +265,201 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Background color:" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Liv an drekleur :" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background color:" msgctxt "@item:intable palette" msgid "Background" msgstr "Liv an drekleur :" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "treuzwel" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "treuzwel" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "treuzwel" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "treuzwel" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Livioù VIM" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "New Color Scheme" msgctxt "@item" @@ -713,6 +725,40 @@ msgstr "&Uhel" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Ostiz :" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Default" +msgid " [default]" +msgstr "Dre ziouer" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, fuzzy, kde-format #| msgid "Input:" @@ -760,7 +806,7 @@ msgstr "" msgid "Copy Location" msgstr "Enkas :" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -792,13 +838,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Dibabit liv ar &vlavennig ..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -837,17 +883,17 @@ msgstr "Kefluniadur ar ment" msgid "Output" msgstr "Ezkas" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -855,7 +901,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -889,233 +935,233 @@ msgstr "Enkas :" msgid "Output:" msgstr "Ezkas :" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "&Serriñ ar gendarvanerezh termenell" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Knoll" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@info:credit" msgid "Original author" msgstr "&Serriñ ar gendarvanerezh termenell" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Ne m'eus ket gallet enrollañ an istor." -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1123,14 +1169,14 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1138,25 +1184,25 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1164,144 +1210,144 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "Porzh ouzh SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Porzh FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Beve&nnig nevez" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Serriñ ar vevennig" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Prenestr Nevez" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Sinedoù" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Steuñv liv nevez" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Enrollañ &profil an dalc'hoù ..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Bevaat ar meuziad" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "&Dilec'hiañ an dalc'h d'a-gleiz" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1310,72 +1356,72 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Serriñ an dalc'h red" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profil nevez" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Pennañ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format #| msgid "Tab &Options" msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "&Dibarzhoù ar vevennig" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1464,7 +1510,7 @@ msgstr "Digeriñ al liamm" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1476,29 +1522,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Urzhiad :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Urzhiad :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1538,7 +1584,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1595,11 +1641,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1660,92 +1706,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Delete selected entry" @@ -1947,25 +1993,25 @@ msgstr "Dibarzhoù" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2030,17 +2076,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Enrollañ an istorig" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "N'hellan ket serriñ d'ar restr." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2076,514 +2144,539 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Gwer war du" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Livioù Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Gwenn war du" -#: schemas.cpp:10 +#: schemas.cpp:11 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized" msgstr "Solaris" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized Light" msgstr "Solaris" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Gwenn war du" -#: schemas.cpp:13 +#: schemas.cpp:14 #, fuzzy, kde-format #| msgid "XTerm (XFree 4.x.x)" msgid "Default (XFree 4)" msgstr "XTerm (XFree 4.x.x)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, fuzzy, kde-format #| msgid "linux console" msgid "Linux console" msgstr "letrin linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, fuzzy, kde-format #| msgid "linux console" msgid "Solaris console" msgstr "letrin linux" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Goullonderiñ an &istor" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Kloc'h en dalc'h '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Ne m'eus ket gallet enrollañ an istor." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Kloc'h en dalc'h '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Dalc'h nevez" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgctxt "NAME OF TRANSLATORS" #| msgid "Your names" msgid "Program '%1' crashed." msgstr "Thierry Vignaud, Jañ-Mai Drapier" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Hedad war glask digavus ! '%1'." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "Serriñ an dalc'h" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Eilañ" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Left-Right" msgstr "Izelaat an nodrezh" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Top-Bottom" msgstr "Izelaat an nodrezh" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Input:" msgid "Copy user input" msgstr "Enkas :" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Input:" msgid "Copy command output" msgstr "Enkas :" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Pegañ ar choaz" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "&Select All" msgstr "&Dibabit ..." -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Mode" msgstr "&Dibabit ..." -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Line" msgstr "&Dibabit ..." -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "Enrollañ an istorig" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "Enrollañ an istorig" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Moulañ ar skramm ..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Adjust Scrollback..." msgstr "Enrollañ &profil an dalc'hoù ..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Do not display scrollbar" msgid "Clear Scrollback" msgstr "Ne ziskouezit ket ar varenn dibunañ" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear &History" msgid "Clear Scrollback and Reset" msgstr "Goullonderiñ an &istor" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Next Profile" msgstr "Enrollañ &profil an dalc'hoù ..." -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgid "Previous Profile" msgstr "Kavout dia&raok" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Switch Profile" msgstr "Enrollañ &profil an dalc'hoù ..." -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Set &Encoding" msgstr "&Kodadur" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "Select &Tab Color..." msgid "&Configure or Rename Tab..." msgstr "Dibabit liv ar &vlavennig ..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "Select &Tab Color..." msgid "&Select Tabs..." msgstr "Dibabit liv ar &vlavennig ..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "E&bet" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Input:" msgid "Copy Input To" msgstr "Enkas :" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Ezkargañ gant &ZModem ..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Brasaat an nodrezh" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgid "&Shrink Font" msgid "Shrink Font" msgstr "&Izelaat an nodrezh" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "&Kas an arhent" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "&Serriñ ar vevennig" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Adkregiñ" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminate Task" msgstr "&Serriñ ar gendarvanerezh termenell" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Lazhañ an dlead" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Arhent arveriad &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Arhent arveriad &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile..." msgstr "Enrollañ &profil an dalc'hoù ..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Current Profile..." msgstr "Enrollañ &profil an dalc'hoù ..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Serriñ ar vevennig" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "Ezkargañ gant &ZModem ..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2591,20 +2684,20 @@ msgid "" "or 'lrzsz' package.

        " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " "to install the 'rzsz' or 'lrzsz' package.

        " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, fuzzy, kde-format #| msgid "Select Files to Upload" msgid "Select Files for ZModem Upload" @@ -2630,148 +2723,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Lakaat titl ar prenestr" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "Evel un &troiennoù reolataet" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" -msgstr "Serriñ an dalc'h" +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Lakaat titl ar prenestr" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgid "Force new tabs" +msgstr "&Distagañ an dalc'h" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "Kemenn reizhiad" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "Serriñ an dalc'h" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "Evel un &troiennoù reolataet" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2796,72 +2916,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "Serriñ an dalc'h" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2869,91 +3027,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2965,26 +3129,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3151,108 +3313,127 @@ msgctxt "Do not show a close button" msgid "None" msgstr "E&bet" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Serriñ ar vevennig" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "&Serriñ ar vevennig" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close the current session" msgid "After current &tab" msgstr "Serriñ an dalc'h red" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Splits" msgstr "Izelaat an nodrezh" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "&Show Menu Bar" msgid "Show Header:" msgstr "Diskouez barenn ar meuziad" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "&Bell" msgctxt "@option:radio Small height/width of splitter widget" @@ -3260,14 +3441,14 @@ msgid "Small" msgstr "&Kleier" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3275,7 +3456,7 @@ msgid "Large" msgstr "Bras" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3329,8 +3510,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3370,96 +3551,96 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Ment : %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Pegañ ar choaz" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
        to resume.
        " msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "Kemmañ ar renkell labour da 'renkell'" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Pegañ ar choaz" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, fuzzy, kde-format #| msgid "View" msgctxt "@action:inmenu" msgid "Expand View" msgstr "Gwel" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Izelaat an nodrezh" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Serriñ an dalc'h red" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Serriñ an dalc'h red" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Beve&nnig nevez" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Kavout dia&raok" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "&Serriñ ar gendarvanerezh termenell" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "&Serriñ ar gendarvanerezh termenell" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "&Serriñ ar gendarvanerezh termenell" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "&Serriñ ar gendarvanerezh termenell" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Gwintañ d'ar vevennig" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "M&ove Session Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "&Fiñval an dalc'h a-zehou" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "&Dilec'hiañ an dalc'h d'a-gleiz" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Gwintañ d'ar vevennig" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line numbers " msgstr "&Niver a linennoù :" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "&Dilec'hiañ an dalc'h d'a-gleiz" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3744,7 +3939,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3752,13 +3947,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3855,29 +4050,41 @@ msgstr "&Kodadur" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line Numbers:" msgstr "&Niver a linennoù :" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3915,7 +4122,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, fuzzy, kde-format #| msgid "Edit" @@ -3972,12 +4179,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4102,31 +4315,46 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "&Bevaat" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Bevaat ar meuziad" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "New &Window" msgid "Window:" msgstr "&Prenestr Nevez" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4134,25 +4362,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "VIM Colors" msgctxt "Border color options" @@ -4160,27 +4388,27 @@ msgid "Color:" msgstr "Livioù VIM" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "Inactive Terminals:" msgstr "&Serriñ ar gendarvanerezh termenell" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "Active Terminals:" msgstr "&Serriñ ar gendarvanerezh termenell" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title:group" @@ -4188,94 +4416,94 @@ msgid "Terminal contents" msgstr "&Serriñ ar gendarvanerezh termenell" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4283,44 +4511,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Nodrez" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4328,101 +4556,101 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile" msgstr "Enrollañ &profil an dalc'hoù ..." -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Pennañ" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Bevennigoù" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Neuziadur" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, fuzzy, kde-format #| msgid "Sc&rollbar" msgid "Scrolling" msgstr "Barrenn di&bunañ" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "&Stokellaoueg" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Key bindings" msgstr "&Kodadur" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Barek" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4431,13 +4659,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4448,19 +4676,19 @@ msgstr "" "Ur restr gant an anv-se a zo c'hoazh.\n" "C'hoant ho peus e rasklañ ?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Editing profile: %2" @@ -4468,19 +4696,25 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "Enrollañ &profil an dalc'hoù ..." msgstr[1] "" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile" msgstr "Enrollañ &profil an dalc'hoù ..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile \"%1\"" msgstr "Enrollañ &profil an dalc'hoù ..." -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "N&one" +msgid "None" +msgstr "E&bet" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4490,7 +4724,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4500,45 +4734,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "Kleier ar &Reizhiad" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "Kemenn reizhiad" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "Kloc'h &hewel" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4546,44 +4780,44 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Nevez ..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Lemel ar profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4600,7 +4834,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4690,27 +4924,54 @@ msgstr "Kemmañ ar renkell labour da 'renkell'" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Endro :" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "Initial terminal si&ze:" msgstr "&Serriñ ar gendarvanerezh termenell" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4720,32 +4981,32 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminal bell mode:" msgstr "&Serriñ ar gendarvanerezh termenell" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4755,9 +5016,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4768,9 +5029,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4781,35 +5042,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background color:" msgid "Red error background:" msgstr "Liv an drekleur :" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background color:" msgid "Alternating background:" @@ -5148,50 +5409,93 @@ msgid "Scrollback:" msgstr "Ne ziskouezit ket ar varenn dibunañ" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "&Hide" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "&Kuzhat" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab &Options" -msgid "Scrollbar position:" -msgstr "&Dibarzhoù ar vevennig" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "&Right" msgctxt "@option:radio Show scrollbar on the right side" @@ -5199,67 +5503,36 @@ msgid "Ri&ght side" msgstr "&Dehoù" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "View" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Gwel" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "&Hide" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "&Kuzhat" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab &Options" +msgid "Scrollbar position:" +msgstr "&Dibarzhoù ar vevennig" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5364,121 +5637,121 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "E&bet" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find" msgctxt "@label:textbox" msgid "Find..." msgstr "Klask" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "View" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Gwel" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Kavout dia&raok" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Serriñ an dalc'h" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Serriñ an dalc'h" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Serriñ an dalc'h" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Evel un &troiennoù reolataet" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5490,7 +5763,7 @@ msgstr "" msgid "Print Shell" msgstr "Moulañ ar reollin" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@label:listbox No color selected" @@ -5530,6 +5803,13 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Livioù VIM" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Dibabit liv ar &vlavennig" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgctxt "NAME OF TRANSLATORS" @@ -5637,41 +5917,54 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Adkorañ ha goullonderiñ an termenell" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Distagañ an dalc'h" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Distagañ an dalc'h" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Serriñ ar vevennig" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Distagañ an dalc'h" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "Select &Tab Color..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Dibabit liv ar &vlavennig ..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Serriñ ar vevennig" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Serriñ an dalc'h" + #, fuzzy #~| msgid "N&one" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6030,11 +6323,6 @@ msgstr "&Serriñ ar vevennig" #~ msgid "&Detach View" #~ msgstr "&Distagañ an dalc'h" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "Goullonderiñ an &istor" - #, fuzzy #~| msgid "Find &Next" #~ msgid "Find Next" @@ -6055,9 +6343,6 @@ msgstr "&Serriñ ar vevennig" #~ msgid "New" #~ msgstr "%1 nevez" -#~ msgid "Select &Tab Color" -#~ msgstr "Dibabit liv ar &vlavennig" - #~ msgid "TextLabel" #~ msgstr "Skridennad" @@ -6241,9 +6526,6 @@ msgstr "&Serriñ ar vevennig" #~ msgid "Overwrite" #~ msgstr "Rasklañ" -#~ msgid "Unable to write to file." -#~ msgstr "N'hellan ket serriñ d'ar restr." - #~ msgid "&Download" #~ msgstr "&Enkargañ" diff --git a/local/recipes/kde/konsole/source/po/bs/konsole.po b/local/recipes/kde/konsole/source/po/bs/konsole.po index ae8e508f3c..363009dfb4 100644 --- a/local/recipes/kde/konsole/source/po/bs/konsole.po +++ b/local/recipes/kde/konsole/source/po/bs/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2014-02-12 22:52+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: bosanski \n" @@ -55,7 +55,7 @@ msgstr "Prikaz" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Razdvojeni prikaz" @@ -91,7 +91,7 @@ msgid "S&crollback" msgstr "P&omicanje nazad" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -178,48 +178,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Sakrij traku izbornika, preskakanje zadane postavke" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Prikaži traku kartica, preskakanje zadane postavke" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Sakrij traku kartica, preskakanje zadane postavke" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Prikaži traku kartica, preskakanje zadane postavke" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Sakrij traku kartica, preskakanje zadane postavke" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Pokreni konzolu u punom ekranu" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Onemogući prozirnu pozadinu čak i ako je sistem podržava." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Izlistaj dostupne profile" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Prikaži sva imena svojstava profila i njihov tip (za upotrebu sa -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Promijeni vrijednost svojstva profila." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,7 +245,7 @@ msgstr "" "Naredba za izvršenje. Ova opcija će uhvatiti sve sljedeće argumente, tako da " "je trebate koristiti kao zadnju opciju." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -237,13 +253,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenti proslijeđeni naredbi" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Toggle Background Window" msgctxt "@item" @@ -262,107 +278,107 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Pozadina" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Pozadina" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Boja 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Boja 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Boja 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Boja 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Boja 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Boja 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Boja 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Boja 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Prednji plan (intenzivno)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Pozadina (intenzivna)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Boja 1 (intenzivno)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Boja 2 (intenzivno)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Boja 3 (intenzivno)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Boja 4 (intenzivno)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Boja 5 (intenzivno)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Boja 6 (intenzivno)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Boja 7 (intenzivno)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Boja 8 (intenzivno)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Foreground (Intense)" @@ -370,7 +386,7 @@ msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Prednji plan (intenzivno)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -378,7 +394,7 @@ msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Pozadina (intenzivna)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 1 (Intense)" @@ -386,7 +402,7 @@ msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Boja 1 (intenzivno)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 2 (Intense)" @@ -394,7 +410,7 @@ msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Boja 2 (intenzivno)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 3 (Intense)" @@ -402,7 +418,7 @@ msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Boja 3 (intenzivno)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 4 (Intense)" @@ -410,7 +426,7 @@ msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Boja 4 (intenzivno)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 5 (Intense)" @@ -418,7 +434,7 @@ msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Boja 5 (intenzivno)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 6 (Intense)" @@ -426,7 +442,7 @@ msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Boja 6 (intenzivno)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 7 (Intense)" @@ -434,7 +450,7 @@ msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Boja 7 (intenzivno)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 8 (Intense)" @@ -442,7 +458,7 @@ msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Boja 8 (intenzivno)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -710,6 +726,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Local Host: %h" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Lokalni voditelj: %h" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "&Set as Default" +msgid " [default]" +msgstr "&Postavi kao zadano" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -754,7 +804,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiraj ulaz na" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -786,14 +836,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Izaberi font..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Glatka slova" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -830,17 +880,17 @@ msgstr "Kombinacija tipki" msgid "Output" msgstr "Izlaz" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nova lista prečica na tastaturi" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Uredi listu prečica na tastaturi" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -848,7 +898,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -882,68 +932,68 @@ msgstr "Ulaz:" msgid "Output:" msgstr "Izlaz:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole Window" msgctxt "@title" msgid "Konsole" msgstr "Konsole prozor" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator terminala" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Opće održavanje, popravljanje grešaka i opća poboljšanja" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Prethodno održavanje, prebačeno na KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Prvobitni autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -951,56 +1001,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Opće održavanje, popravljanje grešaka i opća poboljšanja" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Ispravke grešaka i opšta poboljšanja" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -1008,7 +1058,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Ispravke grešaka i opšta poboljšanja" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1016,98 +1066,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Opšta poboljšanja" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Ispravke grešaka" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesko Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris podrška i historija" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Ispravke grešaka i poboljšanje pokretačkih performansi" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Poboljšanja obilježavanja" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1117,13 +1167,13 @@ msgstr "" "Ugrađena Konsole\n" "Imena sesija i traka sa alatima" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1133,25 +1183,25 @@ msgstr "" "Ugrađena Konsole\n" "Opšta poboljšanja" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vizuelni efekti" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1161,121 +1211,121 @@ msgstr "" "Kod od kvt projekta\n" "Opća poboljšanja" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Poboljšanja u šemi i označavanju teksta" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "prebacivanje na SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Prebacio na FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Hvala i mnogim drugima\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Nova &kartica" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klon kartica" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Novi prozor" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zatvori prozor" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Zabilješke" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nova šema boja" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Upravljaj profilima..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Uključi izbornik" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -1283,13 +1333,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Pomakni karticu ulijevo" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1299,25 +1349,25 @@ msgstr[0] "Ima %1 proces pokrenut u prozoru. Da li zaista želite izaći?" msgstr[1] "Imaju %1 procesa otvorena u prozoru. Da li zaista želite izaći?" msgstr[2] "Ima %1 procesa pokrenutih u prozoru. Da li zaista želite izaći?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Potvrdite zatvaranje" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Zatvori &prozor" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zatvori trenutnu &karticu" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 tab open in this window. Do you still want to quit?" @@ -1327,7 +1377,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Ima %1 kartica otvorena u prozoru. Da li zaista želite izaći?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1335,37 +1385,37 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Novi profil" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Glavno" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1459,7 +1509,7 @@ msgstr "Otvori upravitelj datoteka" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1471,29 +1521,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Komanda:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Komanda:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1537,7 +1587,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1595,11 +1645,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1662,94 +1712,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Kliknite dva puta da promijenite prečicu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Ne zatvaraj početnu sesiju automatski kada završi." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1955,25 +2005,25 @@ msgstr "Izlazne opcije" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Režim pogodan &štampaču (crni tekst, bez pozadine)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skaliraj izlaz" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Podrazumijevani profil" @@ -2038,17 +2088,38 @@ msgstr "Kliknite dva puta da promijenite prečicu" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Spremi ispis od %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 nije valjan URL, ispis ne može biti sačuvan." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2084,82 +2155,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tamne pastele" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zeleno na crnom" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux boje" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Crveno na crnom" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarizovano" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarizovano svjetlo" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Bijelo na crnom" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Zadano (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux konzola" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris konzola" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Web pretraga" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Ukucajte tekst za pretragu ovdje" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Zvono u sesiji '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nije moguće naći binarni program: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Upozorenje: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nije moguće pronaći interaktivnu školjku za početak." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2168,352 +2259,360 @@ msgstr "" "Nije moguće pronaći '%1', umjesto toga se pokreće '%2'. Molim vas da " "provjerite postavke vašeg profila." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nije moguće pokrenuti program '%1' s argumentima '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Tišina na sesiji '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Zatvori sesiju" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Završeno" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program '%1' se srušio." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program '%1' završio je sa statusom %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem napredak" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktivnost u sesiji '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, fuzzy, kde-format #| msgid "Konsole Window" msgid "Konsole" msgstr "Konsole prozor" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ne zna kako da otvori oznaku: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Traži '%1' sa" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Podesi internetske prečice..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Zatvori sesiju" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Otvori upravitelj datoteka" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Podijeljeni prikaz lijevo/desno" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Podijeljeni prikaz gore/dole" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kopiraj unos" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kopiraj unos" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Umetni označeno" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Web pretraga" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Označi sve" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Mode" msgstr "Označi tekst" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Line" msgstr "Označi tekst" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Sačuvaj izlaz &kao..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Sačuvaj izlaz &kao..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Štampaj ekran..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Prilagodi pomicanje unazad..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Ukloni pomicanje unazad" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Ukloni pomicanje unazad i resetuj" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Izmijeni profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Prethodni" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Prebaci profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Postavi &kodiranje" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Preimenuj karticu..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Sve kartice u trenutnom prozoru" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Odaberi kartice…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nijedan" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiraj ulaz na" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem slanje..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Prati &aktivnosti" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Prati &aktivnosti" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Prati &tišinu" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Prati &aktivnosti" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Povećaj font" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Smanji font" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" # >> @title:mijenu -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Pošalji signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspenduj zadatak" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Nastavi zadatak" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Otkači" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Prekini zadatak" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Obustavi zadatak" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Ubij zadatak" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Korisnički signal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Korisnički signal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile..." msgstr "&Novi Profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Uredi trenutni profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2522,7 +2621,7 @@ msgstr "" "Trenutno se izvršava pogram u ovoj sesiji. Jeste li sigurni da je želite " "zatvoriti?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2531,19 +2630,19 @@ msgstr "" "Trenutno se program '%1' izvršava u ovoj sesiji. Jeste li sigurni da ga " "želite zatvoriti?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potvrdite zatvaranje" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Zatvori karticu" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2552,38 +2651,41 @@ msgstr "" "Program u ovoj sesiji neće da završi sa radom. Da li ste sigurni da ga " "prislino želite zatvoriti?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Program '%1' u ovoj sesiji neće da završi sa radom. Da li ste sifurni da ga " "prislino želite zatvoriti?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "Sačuvaj ZModem preuzimanje u..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2594,13 +2696,13 @@ msgstr "" "računaru nije pronađen odgovarajući ZModem softver.

        Da li želite " "instalirati pakete 'rzsz' ili 'lrzsz'

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "

        Trenutna sesija već ima ZModem prenos datoteka u toku.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2609,7 +2711,7 @@ msgstr "" "

        Na vašem računaru nije pronađen odgovarajući ZModem softver.

        Možda " "želite instalirati pakete 'rzsz' ili 'lrzsz'.

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Označite datoteke za ZModen upload" @@ -2633,149 +2735,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "Potvrdite zatvaranje" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Web pretraga" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Omogući izbornik ubrzavača" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Prikaži naslov prozora na naslovnoj traci" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Podudaranje s regularnim izrazom" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Označi sva podudaranja" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Postavlja da li će pretraga paziti na veličinu slova" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Razlikuj velika i mala slova" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Create new tab" +msgid "Force new tabs" +msgstr "Napravi novu karticu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Postavlja da li traženje treba početi od dna" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Traži unazad" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Postavlja da li će pretraga paziti na veličinu slova" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Razlikuj velika i mala slova" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Označi sva podudaranja" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Web pretraga" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Postavlja da li traženje treba početi od dna" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Omogući izbornik ubrzavača" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Prikaži naslov prozora na naslovnoj traci" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Podudaranje s regularnim izrazom" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2802,73 +2932,111 @@ msgstr "Spremi veličinu prozora na izlazu" msgid "The window size will be saved upon exiting Konsole" msgstr "Veličinu prozora će biti snimljena pri napuštanju programa Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "Postavlja da li će pretraga paziti na veličinu slova" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all matches" msgid "Highlight all search matches" msgstr "Označi sva podudaranja" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Postavlja da li će podudarani tekst biti označen" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2876,93 +3044,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Kontroliši vidljivost kartične trake" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "Kontroliši vidljivost kartične trake" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Kontroliši poziciju kartične trake" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Kontroliši vizuelni stil kartične trake" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Koristi korisnički prilagođenu .css datoteku za tabulatorsku traku" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Datoteka .css za upotrebu za stil tabulatora" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Kontroliši vidljivost brzih tastera kartične trake" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Kontroliši vidljivost brzih tastera kartične trake" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Kontroliši gdje staviti novu karticu" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2975,26 +3150,24 @@ msgid "Enable memory monitoring:" msgstr "Praćenje kartica" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3166,9 +3339,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Nijedan" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Zatvori karticu" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3176,34 +3368,34 @@ msgid "Miscellaneous:" msgstr "Razno" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "Prikaži 'Nova kartica' i 'Zatvori karticu' dugmad" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "Korisnički definisana lista stilova" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3211,7 +3403,7 @@ msgid "Behavior" msgstr "Ponašanje" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Create new tab" @@ -3219,81 +3411,81 @@ msgid "Put new tabs:" msgstr "Napravi novu karticu" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Put New Tab After Current Tab" msgid "After current &tab" msgstr "Stavi novu karticu nakon trenutne" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Razdvojeni prikaz" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menubar by default" msgid "Show Header:" msgstr "Prikaži traku izbornika po zadanim postavkama" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3346,8 +3538,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3389,12 +3581,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Omogući izbornik ubrzavača" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Veličina: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3402,86 +3594,86 @@ msgstr[0] "Da li ste sigurni da želite umetnuti %1 znak?" msgstr[1] "Da li ste sigurni da želite umetnuti %1 znaka?" msgstr[2] "Da li ste sigurni da želite umetnuti %1 znakova?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Potvrdite umetanje" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" msgid "Confirm Paste" msgstr "Potvrdite umetanje" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Postavi boju kursora tako da odgovara trenutnom znaku" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Umetni označeno" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been
        obustavljen pritiskom na Ctrl+S. Pritisnite Ctrl+Q za nastavak." "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Promijeni &Direktorij na" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Mjesto umetanja" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Razdvojeni prikaz" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Podijeljeni prikaz lijevo/desno" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Podijeljeni prikaz gore/dole" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3537,7 +3729,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Podijeljeni prikaz gore/dole" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3545,7 +3737,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Podijeljeni prikaz lijevo/desno" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3553,7 +3745,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Podijeljeni prikaz gore/dole" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3561,37 +3753,37 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Podijeljeni prikaz gore/dole" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Proširi prikaz" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Suzi prikaz" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3599,7 +3791,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "&Odvoji trenutnu karticu" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3607,93 +3799,107 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "&Odvoji trenutnu karticu" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Sljedeća kartica" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Prethodna kartica" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Gore navedeno terminal područje" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Terminal područje ispod" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Gore navedeno terminal područje" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Terminal područje ispod" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Idi na zadnju karticu" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3701,7 +3907,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Pomakni karticu udesno" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3709,47 +3915,47 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Pomakni karticu ulijevo" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Prebaci na karticu %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3757,13 +3963,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Pomakni karticu ulijevo" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3776,7 +3982,7 @@ msgstr "" "Pojavio se problem prilikom sačuvavanja izlaza.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3789,13 +3995,13 @@ msgstr "" "Pojavio se problem prilikom sačuvavanja izlaza.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3896,29 +4102,41 @@ msgstr "Zadano kodiranje znakova:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "Broj sesije: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3955,7 +4173,7 @@ msgstr "Izmijeni odabranu paletu boja" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4012,12 +4230,18 @@ msgstr "Crtaj intenzivne boje podebljanim fontom" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4149,16 +4373,33 @@ msgid "Make the cursor blink regularly" msgstr "Neka kursor redovno trepće" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Uključi izbornik" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Neka kursor redovno trepće" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4166,14 +4407,14 @@ msgid "Miscellaneous" msgstr "Razno" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Prozor" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4183,25 +4424,25 @@ msgstr "" "promjene veličine" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Prikaži savjet za veličinu terminala nakon promjene veličine" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4210,28 +4451,28 @@ msgid "Color:" msgstr "Boja" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Odaberi boju korištenu za iscrtavanje kursora" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "Mogućnosti terminala" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "Mogućnosti terminala" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4239,96 +4480,96 @@ msgid "Terminal contents" msgstr "Mogućnosti terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Razmak linija:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Broj tačaka između dvije linije" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Omogući dvosmjerno prikazivanje teksta" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4336,45 +4577,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Postavi boju kursora tako da odgovara trenutnom znaku" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Font" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4384,98 +4625,98 @@ msgstr "" "ili hebrejski)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Omogući dvosmjerno prikazivanje teksta" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Postavi boju kursora tako da odgovara trenutnom znaku" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Izmijeni profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Opšte" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Kartice" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Izgled" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Pomicanje" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Tipka prečice" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Miš" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Napredno" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4484,31 +4725,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4516,18 +4757,25 @@ msgstr[0] "Uređujem %1 profil: %2" msgstr[1] "Uređujem %1 profila: %2" msgstr[2] "Uređujem %1 profila: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile" msgstr "&Novi Profil..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Izmijeni profil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&Nijedan" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4538,7 +4786,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4549,46 +4797,46 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Paste Location" msgid "System Notifications" msgstr "&Mjesto umetanja" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "Vizuelni efekti" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Postavi označeni profil kao zadani za novu sesiju terminala" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Izmijeni okolinu" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Samo jedna varijabla okruženja po liniji" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4597,25 +4845,25 @@ msgstr[0] " sekunda" msgstr[1] " sekunde" msgstr[2] " sek" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Odaberi početni direktorij" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Nova..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4624,7 +4872,7 @@ msgstr "" "Ova paleta boja koristi prozirnu pozadinu za koju se čini da nije podržana " "na vašoj radnoj površini" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4633,13 +4881,13 @@ msgstr "" "Konzola je pokrenuta prije nego su omogućeni efekti radne površine. Trebate " "ponovo pokrenuti konzolu da vidite prozirnu pozadinu." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Podrazumijevani profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4656,7 +4904,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4753,27 +5001,55 @@ msgstr "Odaberite inicijalni direktorij" msgid "Start in same directory as current session" msgstr "Pokreni u istom direktoriju u kojem je i trenutna kartica" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Pokreni u istom direktoriju u kojem je i trenutna kartica" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Okruženje:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Uredi listu varijabli okruženja i pridruženih im vrijednosti" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Mogućnosti terminala" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4783,7 +5059,7 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4791,25 +5067,25 @@ msgid "&Terminal bell mode:" msgstr "Emulator terminala" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4819,9 +5095,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4832,9 +5108,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4845,22 +5121,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4868,13 +5144,13 @@ msgid "Red error background:" msgstr "Pozadina" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5254,53 +5530,95 @@ msgid "Scrollback:" msgstr "Pomak unazad" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Iznos pomicanja strane gore/dolje" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Pomicanje strane za polovinu visine prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half Page Height" msgid "Half screen heigh&t" msgstr "Visina polovine stranice" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Pomicanje strane za punu visinu prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full Page Height" msgid "F&ull screen height" msgstr "Puna visina strane" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Pozicija trake s karticama:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Prikaži kliznu traku na desnoj strani prozora terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5308,66 +5626,36 @@ msgid "Ri&ght side" msgstr "Prikaži na desnoj strani" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Prikaži kliznu traku na lijevoj strani prozora terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Veličina teksta:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Pozicija trake s karticama:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5482,7 +5770,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nijedan" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5490,113 +5778,114 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Nađi:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Ukucajte tekst za pretragu ovdje" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Sljedeći" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Pronađi sljedeći rezultat koji odgovara trenutno traženoj frazi" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Prethodni" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Pronađi prethodni rezultat koji odgovara trenutno traženoj frazi" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Prikaži meni opcija" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zatvori traku za pretragu" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Razlikuj velika i mala slova" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Postavlja da li će pretraga paziti na veličinu slova" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Prikaži meni opcija" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zatvori traku za pretragu" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Podudaranje s regularnim izrazom" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Označi sva podudaranja" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Postavlja da li će podudarani tekst biti označen" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, fuzzy, kde-format #| msgid "Search backwards" msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Traži unazad" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Postavlja da li traženje treba početi od dna" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Postavlja da li traženje treba početi od dna" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the bottom" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Pronađi sljedeći rezultat koji odgovara trenutno traženoj frazi odozdo" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the top" msgctxt "@info:tooltip" @@ -5608,7 +5897,7 @@ msgstr "Pronađi sljedeći rezultat koji odgovara trenutno traženoj frazi odozg msgid "Print Shell" msgstr "Štampajuća školjka" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5653,6 +5942,14 @@ msgstr "Običan oblik naslova kartice" msgid "Tab Co&lor:" msgstr "Boja" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Boja" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5755,7 +6052,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Zatvori karticu" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5763,7 +6060,15 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Odvoji karticu" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Odvoji karticu" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:whatsthis" #| msgid "Close the active tab" @@ -5771,26 +6076,30 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Zatvori uključenu karticu" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Odvoji karticu" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Preimenuj karticu..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Zatvori karticu" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Razlikuj velika i mala slova" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" diff --git a/local/recipes/kde/konsole/source/po/ca/konsole.po b/local/recipes/kde/konsole/source/po/ca/konsole.po index afa4cb4e94..0b355d47c0 100644 --- a/local/recipes/kde/konsole/source/po/ca/konsole.po +++ b/local/recipes/kde/konsole/source/po/ca/konsole.po @@ -1,25 +1,24 @@ # Translation of konsole.po to Catalan -# Copyright (C) 1998-2024 This_file_is_part_of_KDE +# Copyright (C) 1998-2026 This_file_is_part_of_KDE # -# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Josep M. Ferrer -# Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006. -# Antoni Bella Pérez , 2003, 2011, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023. -# Albert Astals Cid , 2003, 2004, 2005. -# Miquel Oliete i Baliarda , 2007. -# Josep M. Ferrer , 2024. +# SPDX-FileCopyrightText: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006 Sebastià Pla i Sanz +# SPDX-FileCopyrightText: 2003, 2011, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2003, 2004, 2005 Albert Astals Cid +# SPDX-FileCopyrightText: 2007 Miquel Oliete i Baliarda +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Josep M. Ferrer msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-10-26 18:38+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-20 13:05+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.08.2\n" +"X-Generator: Lokalize 25.04.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" @@ -55,7 +54,7 @@ msgstr "Visualitza" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Divideix la vista" @@ -92,7 +91,7 @@ msgstr "&Historial" # skip-rule: t-sp_tpc #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra d'eines de sessió" @@ -181,34 +180,48 @@ msgstr "Oculta la barra de menús, substituint la configuració per defecte" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" -msgstr "Mostra la barra de pestanyes, substituint la configuració per defecte" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Mostra totes les barres d'eines, substituint la configuració predeterminada" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" -msgstr "Oculta la barra de pestanyes, substituint la configuració per defecte" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Oculta totes les barres d'eines, substituint la configuració predeterminada" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Mostra la barra d'eines, substituint la configuració predeterminada" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Oculta la barra d'eines, substituint la configuració predeterminada" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Inicia el Konsole en mode de pantalla completa" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Inhabilita els fons transparents, encara que el sistema els permeti." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Llista els perfils disponibles" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -216,13 +229,13 @@ msgstr "" "Llista tots els noms de les propietats del perfil i llur tipus (per a usar " "amb -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Canvia el valor d'una propietat del perfil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,7 +245,7 @@ msgstr "" "Ordre a executar. Aquesta opció capturarà tots els arguments que segueixin, " "per tant, useu-la com a última opció." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -242,13 +255,13 @@ msgstr "" "Força la reutilització de la instància existent, encara que trenqui " "funcionalitats, p. ex. «--new-tab». Principalment per a depuració." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Arguments passats a l'ordre" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -266,157 +279,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Primer pla" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Primer pla (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fons (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Color 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Color 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Color 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Color 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Color 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Color 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Color 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Color 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Primer pla (feble)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fons (feble)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Color 1 (feble)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Color 2 (feble)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Color 3 (feble)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Color 4 (feble)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Color 5 (feble)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Color 6 (feble)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Color 7 (feble)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Color 8 (feble)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -673,6 +686,41 @@ msgstr "A dalt" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Servidor" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"La implementació del contenidor no està disponible quan el Konsole s'està " +"executant dins de Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [predeterminat]" + +# skip-rule: kct-toolbox +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -718,7 +766,7 @@ msgstr "" msgid "Copy Location" msgstr "Copia la ubicació" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "S'està generant una miniatura" @@ -749,14 +797,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Selecció de la lletra" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Mostra totes les lletres" # skip-rule: barb-igual -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -797,17 +845,17 @@ msgstr "Combinació de tecles" msgid "Output" msgstr "Sortida" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Llista nova de lligams de tecla" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Edita la llista dels lligams de tecla" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -816,7 +864,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -850,225 +898,225 @@ msgstr "Entrada:" msgid "Output:" msgstr "Sortida:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulador de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Els desenvolupadors del Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Mantenidor general, correccions d'errors i millores generals" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Mantenidor anterior, adaptació al KDE 4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autor original" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Reestructuració general, correccions d'errors i millores importants" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Correccions d'errors i millores generals" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Correccions d'errors i millores importants" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Millores generals" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Correcció d'errors" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Implementació per a Solaris i l'historial" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Correcció d'errors i millores de rendiment en engegar" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Millores de marcatge" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1078,13 +1126,13 @@ msgstr "" "Konsole incrustat\n" "Barra d'eines i noms de sessió" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1094,25 +1142,25 @@ msgstr "" "Konsole incrustat\n" "Millores generals" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efectes visuals" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1122,132 +1170,132 @@ msgstr "" "Codi del projecte kvt\n" "Millores generals" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Millores en l'esquema i la selecció de text" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Portat al SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Portat al FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Gràcies a molts altres.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Pestanya &nova" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clona la pestanya" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Finestra nova" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Tanca la finestra" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Adreces d'interès" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Esquema de color de les &finestres" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gestiona els perfils..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activa el menú" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Desa la disposició de les pestanyes..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Carrega la disposició de les pestanyes..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1258,67 +1306,67 @@ msgstr[0] "" msgstr[1] "" "Hi ha %1 processos executant-se en aquesta finestra. Encara voleu sortir?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmació del tancament" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Tanca la &finestra" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Tanca la &pestanya actual" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Hi ha %1 terminals oberts en aquesta finestra. Encara voleu sortir?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Perfils" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "General" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memòria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barra de pestanyes / Divisors" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Fitxers temporals" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniatures" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1402,7 +1450,7 @@ msgstr "Desa" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualitza" @@ -1414,29 +1462,29 @@ msgid "Cancel" msgstr "Cancel·la" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Ordres ràpides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Mostra l'accés ràpid" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "No s'ha trobat cap ordre ràpida. Podeu afegir-ne una a Connectors -> Ordres " "ràpides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Connectors - Ordres ràpides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Mostra les ordres ràpides" @@ -1478,7 +1526,7 @@ msgstr "" " amb múltiples configuracions. Esteu segur?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Esteu a punt de suprimir %1. Esteu segur?" @@ -1531,11 +1579,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 és una carpeta d'entrades SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configuració del SSH" @@ -1600,24 +1648,24 @@ msgstr "" "(p. ex., bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Clau SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Suprimeix" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "No canviïs" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1626,70 +1674,70 @@ msgstr "" "Esteu a punt de suprimir la carpeta %1,\n" " amb múltiples configuracions SSH. Esteu segur?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Suprimeix les configuracions SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "Perfil SSH importat
        Algunes opcions només són de lectura." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Manca el nom de la màquina" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Manca el nom" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Si s'ha definit «Usa la configuració SSH», no especifiqueu la clau SSH ni el " "nom d'usuari." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Com a mínim cal definir el nom d'usuari o la clau SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Manca la carpeta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Cal que una sessió SSH tingui un perfil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "No s'ha pogut suprimir aquesta carpeta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Suprimeix la carpeta i tot el seu contingut" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Doble clic per a canviar el nom de la carpeta." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "No podeu suprimir una entrada afegida automàticament." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Suprimeix l'entrada seleccionada" @@ -1883,25 +1931,25 @@ msgstr "Opcions de sortida" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Mode d'i&mpressió fàcil d'emprar (text negre, sense fons)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "E&scala de la sortida" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Integrat" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Perfil predeterminat" @@ -1960,17 +2008,42 @@ msgstr "Doble clic per a canviar la drecera" msgid "Tab Properties" msgstr "Propietats de la pestanya" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Desa la sortida des de %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 no és un URL vàlid, la sortida no es pot desar." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Ha fallat en crear el fitxer de desament automàtic a %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "S'ha aturat el desament automàtic pel canvi de pantalles." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"El fitxer de desament automàtic s'ha modificat externament. S'evitaran els " +"desaments automàtics posteriors." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Ha fallat en actualitzar l'estat del desament automàtic en els canvis de la " +"sortida." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2006,81 +2079,98 @@ msgstr "Brisa" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastels foscos" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verd sobre negre" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Colors Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Vermell sobre negre" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized clar" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanc sobre negre" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Per defecte (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Consola Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Consola Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Cerca..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Introduïu aquí un nom de pestanya a cercar" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Timbre a «%1» (Sessió «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "No s'ha pogut trobar l'executable: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Avís: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "No s'ha pogut trobar cap intèrpret d'ordres interactiu per a iniciar." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2089,338 +2179,341 @@ msgstr "" "No s'ha pogut trobar «%1», en el seu lloc s'ha engegat «%2». Comproveu els " "paràmetres del vostre perfil." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "No s'ha pogut iniciar el programa «%1» amb els arguments «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silenci a «%1» (Sessió «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Mostra la sessió" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"S'usen els mètodes «sendText/runCommand» del D-Bus. Hi ha problemes de " -"seguretat per a permetre que aquests mètodes siguin públics. Si es desitja, " -"aquests mètodes es poden canviar a ús intern només recompilant el Konsole. " -"

        Aquest avís només es mostrarà una vegada per a aquesta instància del " -"Konsole.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Finalitzada" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "El programa «%1» ha fallat." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "El programa «%1» ha acabat amb l'estat %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progrés ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activitat a «%1» (Sessió «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"L'API del DBus de seguretat confidencial està desactivada a la configuració." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "El procés «%1» ha finalitzat l'execució a la sessió «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "El Konsole desconeix com obrir l'adreça d'interès: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Cerca «%1» amb" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configura les dreceres web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Tan&ca la sessió" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Obre el gestor de fitxers" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copia" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Divideix la vista esquerra-dreta" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Divideix la vista superior-inferior" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copia excepte els indicadors" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copia l'entrada de l'usuari" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copia la sortida de l'ordre" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Enganxa la selecció" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Cerca a la web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Selecciona-ho tot" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Mode de selecció" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Selecció de &línia" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Desa la sortida com &a..." +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Desa la sortida automàtica com a..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Atura el desament automàtic" + # skip-rule: k-Print_Screen -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Im&primeix la pantalla..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Ajusta l'historial..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Neteja l'historial" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Neteja l'historial i reinicia" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Perfil següent" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Perfil anterior" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Canvia el perfil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Estableix la &codificació" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permet el seguiment del ratolí" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Només de lectura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configura o reanomena la pestanya..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Totes les pest&anyes en la finestra actual" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Pestanyes &seleccionades..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Cap" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copia l'entrada a" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Envia per &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Monitors d'una única vegada" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Monitor per a l'&indicador" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Vigila l'&activitat" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Vigila el &silenci" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Vigila la finalització del procés" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Augmenta la lletra" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Minva la lletra" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Reinicia la mida de la lletra" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Envia un senyal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspèn la tasca" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continua la tasca" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Penja" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interromp la tasca" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Finalitza la tasca" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Mata la tasca" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Senyal d'usuari &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Senyal d'usuari &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Crea un perfil nou..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Edita el perfil actual..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2429,7 +2522,7 @@ msgstr "" "Actualment, hi ha un programa executant-se en aquesta sessió. Esteu segur " "que voleu sortir?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2438,18 +2531,18 @@ msgstr "" "Actualment, s'està executant el programa «%1» en aquesta sessió. Esteu segur " "que voleu tancar-la?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmació del tancament" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Tanca el programa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2458,37 +2551,37 @@ msgstr "" "En aquesta sessió hi ha un programa que no es mor. Esteu segur que el voleu " "matar forçadament?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"En aquesta sessió hi ha el programa «%1» que no es mor. Esteu segur que el " +"El programa «%1» en aquesta sessió no s'està morint. Esteu segur que el " "voleu matar forçadament?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Mata el programa" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "L'indicador de l'intèrpret d'ordres es mostra a la sessió «%1»" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Obre la carpeta actual amb" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Desa la baixada de ZModem a..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2499,14 +2592,14 @@ msgstr "" "s'ha trobat cap programari adequat per al ZModem en aquest sistema.

        Potser hauríeu d'instal·lar el paquet «rzsz» o «lrzsz».

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" "

        La sessió actual ja té una transferència de fitxer en curs del ZModem.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2515,7 +2608,7 @@ msgstr "" "

        No s'ha trobat cap programari adequat al ZModem en aquest sistema.

        Potser hauríeu d'instal·lar el paquet «rzsz» o «lrzsz».

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Selecció de fitxers per a l'enviament per ZModem" @@ -2538,144 +2631,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configura" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Cerca:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Activa els acceleradors del menú" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Si està actiu, s'ignorarà l'arranjament del perfil" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Recorda la mida de la finestra" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Mostra el títol de la finestra a la barra de títol" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Dona focus als terminals quan el punter del ratolí es mogui sobre ells" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Coincidència usant expressions regulars" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "En llançar el Konsole reutilitzarà el procés existent, si és possible" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Executa totes les finestres del Konsole en un procés únic" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Ressalta totes les coincidències" +msgid "If enabled, profile settings will be ignored" +msgstr "Si està actiu, s'ignorarà l'arranjament del perfil" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Estableix si la cerca distingeix entre les majúscules i les minúscules" +msgid "Remember window size" +msgstr "Recorda la mida de la finestra" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Distingeix entre majúscules i minúscules" +msgid "Force new tabs" +msgstr "Força pestanyes noves" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Elimina la barra de títol i el marc de la finestra" +msgid "Listen for ZModem terminal codes" +msgstr "Escolta els codis de terminal ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Procés i finestra:" +msgid "Show progress in taskbar" +msgstr "Mostra el progrés a la barra de tasques" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notificacions:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Es tornaran a mostrar tots els diàlegs" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Activa tots els missatges «No ho tornis a preguntar»" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Estableix si la cerca s'ha d'iniciar des de baix" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Cerca enrere" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Estableix si la cerca distingeix entre les majúscules i les minúscules" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Distingeix entre majúscules i minúscules" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Procés i finestra:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Ressalta totes les coincidències" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Cerca:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Estableix si la cerca s'ha d'aturar en lloc de tornar a començar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Sense tornar a començar" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Activa els acceleradors del menú" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Dona focus als terminals quan el punter del ratolí es mogui sobre ells" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Es tornaran a mostrar tots els diàlegs" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Activa tots els missatges «No ho tornis a preguntar»" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Mostra el títol de la finestra a la barra de títol" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Activa les parts de seguretat confidencial de l'API del DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Elimina la barra de títol i el marc de la finestra" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Coincidència usant expressions regulars" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2704,72 +2823,113 @@ msgstr "Usa la mida actual de la finestra en l'inici següent" msgid "The window size will be saved upon exiting Konsole" msgstr "La mida de la finestra es desarà en sortir del Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"En llançar el Konsole crearà una pestanya nova en lloc de crear finestres " +"noves si és possible" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Mostra el progrés a la barra de tasques" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Quan un script informa del seu progrés, es mostrarà a la barra de tasques" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "S'activarà l'API del DBus com «runCommand»" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Escolta els codis de terminal ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Envia/rep fitxers automàticament per connexions en sèrie" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Amplada de la miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Estableix l'amplada de la miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Useu Majúscules per a mostrar una miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Useu Alt per a mostrar una miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Useu Ctrl per a mostrar una miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "La cerca distingeix entre majúscules i minúscules" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Ressalta totes les coincidències de la cerca" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Estableix quan s'hauria de ressaltar el text coincident" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "La cerca s'atura en lloc de tornar a començar" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" "Controla si els «cgroups» fills es creen per a les pestanyes individuals" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2779,74 +2939,81 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controla la visibilitat de tota la barra de pestanyes" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controla la mida de la maneta entre els plafons" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controla la posició de la barra de pestanyes" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controla l'estil visual de la barra de pestanyes" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Usa un fitxer .css definit per l'usuari per a la barra de pestanyes" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "El fitxer .css a usar per a l'estil de la barra de pestanyes" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permetre el clic del mig sobre les pestanyes obertes per a tancar-les" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" "Controla la visibilitat del botó «Pestanya nova» a la barra de pestanyes" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Controla la visibilitat del botó «Cerca pestanyes» a la barra de pestanyes" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controla a on es mostrarà el botó «Tanca la pestanya»" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controla on situar la pestanya nova" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Amplia les amplades de les pestanyes" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" @@ -2854,7 +3021,7 @@ msgstr "" "sistema" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2862,14 +3029,14 @@ msgstr "" "l'usuari" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" "Per als fitxers de l'historial, usa la ubicació de la carpeta especificada" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Per als fitxers de l'historial, usa aquesta carpeta" @@ -2881,34 +3048,30 @@ msgid "Enable memory monitoring:" msgstr "Activa el monitoratge de la memòria:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Els canvis tindran efecte en reiniciar. Si s'habilita, el consum sostingut " -"de memòria per part del Konsole\n" -"que excedeixi el valor especificat farà que «systemd-oomd» elimini la/es " -"pestanya/es\n" -"que conté/enen el/s procés/essos d'ús intensiu de memòria. Nota: l'activació " -"pot causar desacceleracions més grans durant un consum elevat de memòria i " -"si s'especifiquen valors excessivament baixos encara es podria provocar que " -"el Konsole es mati." +"de memòria per part del Konsole que excedeixi el valor especificat farà que " +"«systemd-oomd» elimini les pestanyes que contenen els processos d'ús " +"intensiu de memòria. Nota: l'activació pot causar desacceleracions més grans " +"durant un consum elevat de memòria i si s'especifiquen valors excessivament " +"baixos encara es podria provocar que el Konsole es mati." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Límit de memòria:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3071,125 +3234,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Cap" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Mostra el botó de cerca de pestanyes:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Mai" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Miscel·lània:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Mostra el botó «Pestanya nova»" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Amplia l'amplada de la pestanya individual a finestra completa" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Usa el full d'estil definit per l'usuari:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(cap)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportament" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Posa les pestanyes noves:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Al &final" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Després de la pes&tanya actual" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Tanca les pestanyes amb el clic del mig" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Divisions" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Mostra la capçalera:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Quan calgui" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Mai" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Mida de la maneta d'arrossegament:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Petita" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Mitjana" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Gran" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3241,13 +3422,12 @@ msgstr "px" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" "

        Per a usar aquesta funcionalitat, activeu Ratolí->Miscel·lània->Subratlla fitxers a la configuració del perfil

        " +"\" font-weight:600;\">Ratolí->Miscel·lània->Subratlla fitxers a " +"la configuració del perfil.

        " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3285,64 +3465,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Activa la generació de les miniatures" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Mida: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Esteu segur que voleu enganxar %1 caràcter?" msgstr[1] "Esteu segur que voleu enganxar %1 caràcters?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirmació d'enganxat" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Final de text/Interrupció: pot sortir del procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Final de transmissió: pot sortir del procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Timbre: intentarà emetre un avís audible" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Retrocés" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Control tres del dispositiu/XOFF: suspèn la sortida" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitució/Suspensió: pot suspendre el procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escapada: usat per a manipular l'estat del terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Separador de fitxer/Sortida: pot interrompre el procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3351,31 +3531,31 @@ msgstr "" "El text que s'intenta enganxar conté caràcters de control ocults. Els voleu " "filtrar?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirmació d'enganxat" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Enganxa &sense els caràcters de control" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Engan&xa-ho tot" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Cancel·la" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspès en prémer Ctrl+S. Premeu Ctrl+Q " "per a continuar." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Aquest terminal només és de lectura." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Canvia el &directori a" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Enganxa la ubicació" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Divideix la vista" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Divideix la vista esquerra/dreta" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Divideix la vista superior/inferior" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Divideix la vista automàticament" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Divideix la vista esquerra/dreta amb la pestanya següent" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Divideix la vista superior/inferior amb la pestanya següent" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Divideix la vista automàticament amb la pestanya següent" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Carrega una pestanya nova amb una disposició de terminals 2x2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Carrega una pestanya nova amb una disposició de terminals 2x1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Carrega una pestanya nova amb una disposició de terminals 1x2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expandeix la vista" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Redueix la vista" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Separa la &vista actual" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Separa la pes&tanya actual" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Pestanya següent" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Pestanya anterior" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Focus sobre el terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Focus sota el terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Focus a l'esquerra del terminal" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Focus a la dreta del terminal" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Focus al terminal següent" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Focus al terminal anterior" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Canvia a la darrera pestanya" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Últimes pestanyes usades" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Commuta entre dues pestanyes" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Últimes pestanyes usades (a l'inrevés)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Commuta la maximització de la vista actual" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Commuta la maximització de la vista actual" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Commuta el zoom-maximització de la vista actual" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Commuta el zoom-maximització de la vista actual" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Mou la pestanya a la dreta" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Mou la pestanya a l'esquerra" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Configuració de la integració semàntica (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Commuta la visualització dels consells semàntics" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Commuta la visualització dels números de línia" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Mateixa mida per a totes les vistes" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Canvia a la pestanya %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Consells semàntics " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Números de línies " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Desa la disposició de les pestanyes" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Disposició de vista del Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3643,7 +3835,7 @@ msgstr "" "S'ha produït un problema en desar la disposició.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3653,13 +3845,13 @@ msgstr "" "S'ha produït un problema en carregar la disposició.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Carrega la disposició de les pestanyes" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3759,28 +3951,40 @@ msgstr "Co&dificació predeterminada dels caràcters:" msgid "Shortcut for peeking the primary screen:" msgstr "Drecera per a mirar la pantalla primària:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Establiu l'interval entre desaments automàtics:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Números de línies:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Mai" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Mostra els consells dels &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3816,7 +4020,7 @@ msgstr "Edita l'esquema de color seleccionat" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3872,6 +4076,9 @@ msgstr "Dibuixa colors intensos en la lletra negreta" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Usa la lletra seleccionada per als caràcters de línia en lloc del codi " @@ -3880,6 +4087,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Usa els caràcters de línia continguts en la lletra" @@ -4000,29 +4210,43 @@ msgid "Make the cursor blink regularly" msgstr "Fa que el cursor parpellegi regularment" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Activat" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animació:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Fa que el cursor s'animi amb suavitat" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Miscel·lània" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Finestra:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4032,144 +4256,144 @@ msgstr "" "després de canviar la mida" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Mostra la mida del terminal després de canviar-la" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Inverteix sempre els colors del text seleccionat" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Intensitat de l'enfosquit:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Color:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Seleccioneu el color usat per a dibuixar la vora" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminals inactius:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminals actius:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Contingut del terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Interlineat:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "El nombre de píxels entre dues línies" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marges:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Alinea al centre:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indica si la finestra està activa enfosquint els colors" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Enfosquit" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indica si la finestra està activa dibuixant-hi una vora" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Vora" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Mostra una línia vertical a la columna:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "

        Disposició complexa del text

        " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposició complexa del text" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Activa la representació del text en mode paraula" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Mode paraula" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4179,45 +4403,45 @@ msgstr "" "d'atributs trencaran les paraules quan es representin)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Usa els mateixos atributs per a la paraula sencera" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Representa juntes les paraules de caràcters ASCII" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caràcters ASCII" # skip-rule: kct-script #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Representa juntes les paraules de caràcters dels alfabets bràmics" # skip-rule: kct-script #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Caràcters dels alfabets bràmics" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Lletra dels emojis:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4227,97 +4451,97 @@ msgstr "" "a l'àrab, persa i hebreu)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Representació de text bidireccional" # Nota del traductor: "strong" és terminologia BiDi (algorisme bidireccional de renderització de lletres). Possible traducció: «fort» #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" "Les línies sempre són LTR, en lloc de determinar pel primer caràcter fort" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Força la direcció de línia LTR" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tracta els caràcters de dibuix de taules com a un LTR fort." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Substitució del mode BiDi de caràcters de taula" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignora la «wcwidth» dels caràcters problemàtics" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Substitució de «wcwidth»" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Edita un perfil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "General" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Pestanyes" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aparença" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Barra de desplaçament" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Teclat" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Lligams de tecla" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Ratolí" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avançat" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4329,7 +4553,7 @@ msgstr "" "Canvieu els permisos d'aquest fitxer o establiu un nom diferent per a " "desar la configuració a un perfil nou." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4337,42 +4561,47 @@ msgstr "" "El nom del perfil està buit. Establiu un nom per a poder desar la " "configuració." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Ja existeix un perfil amb el nom «%1»." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "El nom del perfil ha excedit la longitud màxima permesa (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Els caràcters ressaltats no són vàlids als noms dels perfils: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "S'està editant el perfil: %2" msgstr[1] "S'està editant %1 perfils: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Crea un perfil nou" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Edició del perfil «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Sense" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4382,7 +4611,7 @@ msgid_plural " columns" msgstr[0] " columna" msgstr[1] " columnes" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4392,42 +4621,42 @@ msgid_plural " rows" msgstr[0] " fila" msgstr[1] " files" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Timbre del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificacions del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Timbre visual" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignora els esdeveniments de timbre" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Perfil predeterminat per a les noves sessions de terminal a %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Edita l'entorn" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Una variable d'entorn per línia" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4435,23 +4664,23 @@ msgid_plural " seconds" msgstr[0] " segon" msgstr[1] " segons" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Selecció del directori inicial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Obtén nous..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Ha fallat en carregar l'esquema %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4460,7 +4689,7 @@ msgstr "" "Aquest esquema de color té un fons transparent que sembla que no està admès " "en aquest escriptori" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4469,12 +4698,12 @@ msgstr "" "El Konsole es va engegar abans d'activar els efectes d'escriptori. Cal " "tornar a iniciar el Konsole per a veure el fons transparent." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Tipus de fitxer per omissió" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4503,7 +4732,7 @@ msgstr "" "aquesta configuració i el fitxer s'obrirà amb l'editor\n" "de text predeterminat." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Ordre personalitzada de l'editor de text" @@ -4594,26 +4823,58 @@ msgstr "Seleccioneu el directori inicial" msgid "Start in same directory as current session" msgstr "Inicia en el mateix directori que la sessió actual" +# skip-rule: kct-toolbox +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"En obrir una pestanya nova o dividir, entra automàticament en el mateix " +"contenidor (Toolbox, Distrobox) que la sessió actual" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Entra en el mateix contenidor que la sessió actual" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Inicia sempre en el contenidor:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Inicia sempre les sessions noves utilitzant aquest perfil dins del " +"contenidor seleccionat" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Entorn:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Editeu la llista de les variables d'entorn i els seus valors associats" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Mida ini&cial del terminal:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4626,31 +4887,31 @@ msgstr "" "que estigui desactivat perquè funcionin aquestes entrades.

        " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Mode de &timbre del terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Integració semàntica" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulació de les fletxes amunt/avall" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Un clic del ratolí a la línia d'entrada mou el cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Consells semàntics:" @@ -4660,9 +4921,9 @@ msgstr "Consells semàntics:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4673,9 +4934,9 @@ msgstr "Mai" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4686,34 +4947,34 @@ msgstr "Mostra els consells dels URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barres d'error vermelles:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Fons d'error vermell:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barres alternatives:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Fons alternatiu:" @@ -5083,57 +5344,103 @@ msgstr "Historial:" # skip-rule: k-PageUp-1 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Desplaçament amunt/avall de pàgina:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Ressalta les línies que venen a la vista" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Oculta" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" +"Mida de cada marcador (tant per cent de la longitud de la barra de " +"desplaçament):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Ressaltat:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Desplaça la pàgina la meitat de l'alçada de la finestra" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Mitja pan&talla d'alçada" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Color dels marcadors de les barres de desplaçament:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" +"Color de les línies ressaltades de cerca de les barres de desplaçament:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Redistribució de les línies:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Desplaça la pàgina tota l'alçada de la finestra" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "T&ota l'alçada de la pantalla" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Posició de la barra de desplaçament:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" "Mostra la barra de desplaçament al costat dret de la finestra del terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Costat &dret" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" @@ -5141,62 +5448,29 @@ msgstr "" "terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Costat es&querre" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Oculta" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Ressaltat:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Ressalta les línies que venen a la vista" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Redistribució de les línies:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Redistribució de les línies quan el terminal es redimensiona" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Color dels marcadors de les barres de desplaçament:" +msgid "Scrollbar position:" +msgstr "Posició de la barra de desplaçament:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" -"Mida de cada marcador (tant per cent de la longitud de la barra de " -"desplaçament):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Opacitat de les línies ressaltades de cerca:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5302,37 +5576,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Cap" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Cerca..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Introduïu aquí el text a cercar" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Següent" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Cerca la coincidència següent per a la frase de cerca actual" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Anterior" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5340,77 +5614,77 @@ msgstr "Cerca la coincidència anterior per a la frase de cerca actual" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Mostra el menú d'opcions" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Tanca la barra de cerques" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Distingeix entre majúscules i minúscules" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Estableix si la cerca distingeix entre les majúscules i les minúscules" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Mostra el menú d'opcions" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Tanca la barra de cerques" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Coincidència d'expressió regular" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Ressalta totes les coincidències" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Estableix quan s'hauria de ressaltar el text coincident" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Cerca enrere" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Estableix si la cerca s'ha d'iniciar des de baix" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Sense tornar a començar" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Estableix si la cerca s'ha d'aturar en lloc de tornar a començar" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Cerca la frase de cerca actual des de baix" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5421,7 +5695,7 @@ msgstr "Cerca la frase de cerca actual des de dalt" msgid "Print Shell" msgstr "Impressió de l'intèrpret d'ordres" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5461,6 +5735,12 @@ msgstr "Format normal del títol de la pestanya" msgid "Tab Co&lor:" msgstr "Co&lor de la pestanya:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Color de la pestanya amb &activitat:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5555,31 +5835,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restaura el terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Obre una pestanya nova" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Cerca de pestanyes" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Tanca aquesta pestanya" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Separa la pestanya" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configura o reanomena la pestanya..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/ca@valencia/konsole.po b/local/recipes/kde/konsole/source/po/ca@valencia/konsole.po index 1885263356..2916ca47d7 100644 --- a/local/recipes/kde/konsole/source/po/ca@valencia/konsole.po +++ b/local/recipes/kde/konsole/source/po/ca@valencia/konsole.po @@ -1,25 +1,24 @@ # Translation of konsole.po to Catalan (Valencian) -# Copyright (C) 1998-2024 This_file_is_part_of_KDE +# Copyright (C) 1998-2026 This_file_is_part_of_KDE # -# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Josep M. Ferrer -# Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006. -# Antoni Bella Pérez , 2003, 2011, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023. -# Albert Astals Cid , 2003, 2004, 2005. -# Miquel Oliete i Baliarda , 2007. -# Josep M. Ferrer , 2024. +# SPDX-FileCopyrightText: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006 Sebastià Pla i Sanz +# SPDX-FileCopyrightText: 2003, 2011, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Antoni Bella Pérez +# SPDX-FileCopyrightText: 2003, 2004, 2005 Albert Astals Cid +# SPDX-FileCopyrightText: 2007 Miquel Oliete i Baliarda +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Josep M. Ferrer msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-10-26 18:38+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-20 13:05+0100\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.08.2\n" +"X-Generator: Lokalize 25.04.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" @@ -55,7 +54,7 @@ msgstr "Visualitza" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dividix la vista" @@ -92,7 +91,7 @@ msgstr "&Historial" # skip-rule: t-sp_tpc #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra d'eines de sessió" @@ -157,7 +156,7 @@ msgid "" "Start Konsole in the background and bring to the front when Ctrl+Shift+F12 " "(by default) is pressed" msgstr "" -"Inicia Konsole en segon pla i fes-lo vindre a davant si es prem «Ctrl+Maj" +"Inicia Konsole en segon pla i fes-lo vindre a davant si es prem «Ctrl+Majús" "+F12» (de manera predeterminada)" #: Application.cpp:65 @@ -181,36 +180,50 @@ msgstr "Oculta la barra de menús, substituint la configuració predeterminada" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Mostra totes les barres d'eines, substituint la configuració predeterminada" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Oculta totes les barres d'eines, substituint la configuració predeterminada" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "" "Mostra la barra de pestanyes, substituint la configuració predeterminada" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "" "Oculta la barra de pestanyes, substituint la configuració predeterminada" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Inicia Konsole en mode de pantalla completa" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Inhabilita els fons transparents, encara que el sistema els permeta." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Llista els perfils disponibles" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -218,13 +231,13 @@ msgstr "" "Llista tots els noms de les propietats del perfil i llur tipus (per a " "utilitzar amb -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Canvia el valor d'una propietat del perfil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,23 +247,23 @@ msgstr "" "Ordre que s'ha d'executar. Esta opció capturarà tots els arguments que " "seguisquen, per tant, utilitzeu-la com a última opció." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" "Force re-using the existing instance even if it breaks functionality, e. g. " "--new-tab. Mostly for debugging." msgstr "" -"Força la reutilització de la instància existent, encara que trenqui " +"Força la reutilització de la instància existent, encara que trenque " "funcionalitats, p. ex., «--new-tab». Principalment per a depuració." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Arguments passats a l'ordre" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -268,157 +281,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Primer pla" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Primer pla (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fons (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Color 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Color 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Color 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Color 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Color 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Color 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Color 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Color 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Primer pla (feble)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fons (feble)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Color 1 (feble)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Color 2 (feble)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Color 3 (feble)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Color 4 (feble)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Color 5 (feble)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Color 6 (feble)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Color 7 (feble)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Color 8 (feble)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -462,7 +475,7 @@ msgstr "" #, kde-format msgctxt "@title:window" msgid "Select wallpaper image file" -msgstr "Selecciona un fitxer d'imatge de fons de pantalla" +msgstr "Tria un fitxer d'imatge de fons de pantalla" #: colorscheme/ColorSchemeEditor.cpp:190 #, kde-format @@ -569,7 +582,7 @@ msgstr "Edita el camí de la imatge de fons" #: colorscheme/ColorSchemeEditor.ui:151 #, kde-format msgid "Choose the background image" -msgstr "Escolliu la imatge de fons" +msgstr "Trieu la imatge de fons" #. i18n: ectx: property (text), widget (QToolButton, wallpaperSelectButton) #. i18n: ectx: property (text), widget (QToolButton, dirSelectButton) @@ -675,6 +688,41 @@ msgstr "A dalt" msgid "AaZz09..." msgstr "AaZz09…" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Amfitrió" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"La implementació del contenidor no està disponible quan Konsole s'està " +"executant dins de Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [predeterminat]" + +# skip-rule: kct-toolbox +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "ToolboX" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -720,7 +768,7 @@ msgstr "" msgid "Copy Location" msgstr "Copia la ubicació" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "S'està generant una miniatura" @@ -749,16 +797,16 @@ msgstr "Copia l'adreça de correu" #, kde-format msgctxt "@title:window" msgid "Select font" -msgstr "Seleccioneu la lletra" +msgstr "Trieu la lletra" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Mostra totes les lletres" # skip-rule: barb-igual -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -799,17 +847,17 @@ msgstr "Combinació de tecles" msgid "Output" msgstr "Eixida" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Llista nova de lligams de tecla" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Edita la llista dels lligams de tecla" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -818,7 +866,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -852,225 +900,225 @@ msgstr "Entrada:" msgid "Output:" msgstr "Eixida:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulador de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Els desenvolupadors de Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Mantenidor general, esmenes d'errors i millores generals" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Mantenidor anterior, adaptació a KDE 4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autor original" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Reestructuració general, esmenes d'errors i millores importants" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Esmenes d'errors i millores generals" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Esmenes d'errors i millores importants" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Millores generals" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Esmena d'errors" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Implementació per a Solaris i l'historial" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Esmena d'errors i millores de rendiment en iniciar" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Millores de marcatge" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1080,13 +1128,13 @@ msgstr "" "Konsole incrustat\n" "Barra d'eines i noms de sessió" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1096,25 +1144,25 @@ msgstr "" "Konsole incrustat\n" "Millores generals" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efectes visuals" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1124,132 +1172,132 @@ msgstr "" "Codi del projecte kvt\n" "Millores generals" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Millores en l'esquema i la selecció de text" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Portat al SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Portat al FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Gràcies a molts altres.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Pestanya &nova" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clona la pestanya" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Finestra nova" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Tanca la finestra" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Adreces d'interés" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Esquema de color de les &finestres" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gestiona els perfils…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activa el menú" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Guarda la disposició de les pestanyes…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Carrega la disposició de les pestanyes…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1259,67 +1307,67 @@ msgstr[0] "Hi ha un procés executant-se en esta finestra. Encara voleu eixir?" msgstr[1] "" "Hi ha %1 processos executant-se en esta finestra. Encara voleu eixir?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmeu el tancament" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Tanca la &finestra" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Tanca la &pestanya actual" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Hi ha %1 terminals oberts en esta finestra. Encara voleu eixir?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Perfils" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "General" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memòria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barra de pestanyes / Divisors" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Fitxers temporals" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniatures" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1403,7 +1451,7 @@ msgstr "Guarda" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualitza" @@ -1415,29 +1463,29 @@ msgid "Cancel" msgstr "Cancel·la" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Ordres ràpides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Mostra l'accés ràpid" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -"No s'ha trobat cap ordre ràpida. Podeu afegir-ne una a «Connectors -> " +"No s'ha trobat cap ordre ràpida. Podeu afegir-ne una en «Connectors → " "Ordres» ràpides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" -msgstr "Connectors - Ordres ràpides" +msgstr "Connectors – Ordres ràpides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Mostra les ordres ràpides" @@ -1479,7 +1527,7 @@ msgstr "" " amb múltiples configuracions. Esteu segur?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Esteu a punt de suprimir %1. Esteu segur?" @@ -1532,11 +1580,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 és una carpeta d'entrades SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configureu SSH" @@ -1544,7 +1592,7 @@ msgstr "Configureu SSH" #: plugins/SSHManager/sshmanagermodel.cpp:103 #, kde-format msgid "Host: %1" -msgstr "Servidor: %1" +msgstr "Amfitrió: %1" #: plugins/SSHManager/sshmanagerplugin.cpp:66 #, kde-format @@ -1565,13 +1613,13 @@ msgstr "Mostra l'accés ràpid per a les accions SSH" #, kde-format msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" msgstr "" -"No s'ha trobat cap configuració SSH guardada. Podeu afegir-ne una a " -"«Connectors -> Gestor de SSH»" +"No s'ha trobat cap configuració SSH guardada. Podeu afegir-ne una en " +"«Connectors → Gestor de SSH»" #: plugins/SSHManager/sshmanagerplugin.cpp:147 #, kde-format msgid "Plugins - SSH Manager" -msgstr "Connectors - Gestor de SSH" +msgstr "Connectors – Gestor de SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:153 #, kde-format @@ -1590,7 +1638,7 @@ msgstr "" #: plugins/SSHManager/sshmanagerplugin.cpp:194 #, kde-format msgid "Error issuing SSH Command" -msgstr "S'ha produït un error en emetre una ordre SSH" +msgstr "S'ha produït un error mentre s'emetia una ordre SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:194 #, kde-format @@ -1601,24 +1649,24 @@ msgstr "" "(p. ex., bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Clau SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Suprimix" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "No canvies" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1627,70 +1675,70 @@ msgstr "" "Esteu a punt de suprimir la carpeta %1,\n" " amb múltiples configuracions SSH. Esteu segur?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Suprimix les configuracions SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "Perfil SSH importat
        Algunes opcions només són de lectura." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" -msgstr "Falta el nom de la màquina" +msgstr "Falta el nom de l'amfitrió" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Falta el nom" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Si s'ha definit «Utilitza la configuració SSH», no especifiqueu la clau SSH " "ni el nom d'usuari." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" -msgstr "Com a mínim cal definir el nom d'usuari o la clau SSH" +msgstr "Com a mínim cal establir el nom d'usuari o la clau SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Falta la carpeta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Cal que una sessió SSH tinga un perfil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "No s'ha pogut suprimir esta carpeta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Suprimix la carpeta i tot el seu contingut" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Doble clic per a canviar el nom de la carpeta." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "No podeu suprimir una entrada afegida automàticament." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Suprimix l'entrada seleccionada" @@ -1883,25 +1931,25 @@ msgstr "Opcions d'eixida" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Mode d'i&mpressió fàcil d'emprar (text negre, sense fons)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "E&scala de l'eixida" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Integrat" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Perfil predeterminat" @@ -1960,23 +2008,48 @@ msgstr "Doble clic per a canviar la drecera" msgid "Tab Properties" msgstr "Propietats de la pestanya" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Guarda l'eixida des de %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 no és un URL vàlid, l'eixida no es pot guardar." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Ha fallat mentre es creava el fitxer de guardada automàtica a %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "S'ha parat la guardada automàtica pel canvi de pantalles." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"El fitxer de guardada automàtica s'ha modificat externament. S'evitaran els " +"guardades automàtiques posteriors." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Ha fallat mentre s'actualitzava l'estat de la guardada automàtica en els " +"canvis de l'eixida." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" "%1" msgstr "" -"S'ha detectat un problema en guardar l'eixida.\n" +"S'ha detectat un problema mentre es guardava l'eixida.\n" "%1" #: schemas.cpp:1 @@ -2006,81 +2079,98 @@ msgstr "Brisa" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastels foscos" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verd sobre negre" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Colors Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Roig sobre negre" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized clar" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanc sobre negre" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Predeterminat (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Consola Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Consola Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Busca…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Introduïu ací un nom de pestanya que s'ha de buscar" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Timbre a «%1» (Sessió «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "No s'ha pogut trobar l'executable: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Avís: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "No s'ha trobat cap intèrpret d'ordres interactiu per a iniciar." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2089,338 +2179,341 @@ msgstr "" "No s'ha pogut trobar «%1», en el seu lloc s'ha iniciat «%2». Comproveu els " "paràmetres del vostre perfil." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "No s'ha pogut iniciar el programa «%1» amb els arguments «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silenci a «%1» (Sessió «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Mostra la sessió" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"S'utilitzen els mètodes «sendText/runCommand» de D-Bus. Hi ha problemes de " -"seguretat per a permetre que estos mètodes siguen públics. Si es desitja, " -"estos mètodes es poden canviar a ús intern només recompilant Konsole. " -"

        Este avís només es mostrarà una vegada per a esta instància de Konsole." - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Finalitzada" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "El programa «%1» ha fallat." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "El programa «%1» ha acabat amb l'estat %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progrés ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activitat a «%1» (Sessió «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"L'API de D-Bus de seguretat confidencial està desactivada en la configuració." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "El procés «%1» ha finalitzat l'execució en la sessió «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole desconeix com obrir l'adreça d'interés: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Busca «%1» amb" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configura les dreceres web…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Tan&ca la sessió" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Obri el gestor de fitxers" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copia" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dividix la vista esquerra-dreta" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dividix la vista superior-inferior" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" -msgstr "Copia excepte els indicatius" +msgstr "Copia excepte els indicadors" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copia l'entrada de l'usuari" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copia l'eixida de l'ordre" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Apega la selecció" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Busca en la web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Selecciona-ho tot" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Mode de selecció" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" -msgstr "Seleccioneu la &línia" +msgstr "Trieu la &línia" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Anomena i gu&arda l'eixida…" +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Anomena i guarda l'eixida automàtica…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Para la guardada automàtica" + # skip-rule: k-Print_Screen -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Im&primix la pantalla…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Ajusta l'historial…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Neteja l'historial" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Neteja l'historial i reinicia" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Perfil següent" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Perfil anterior" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Canvia el perfil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Establix la &codificació" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permet el seguiment del ratolí" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Només de lectura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configura o canvia el nom de la pestanya…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Totes les pest&anyes en la finestra actual" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Pestanyes &seleccionades…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Cap" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copia l'entrada a" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Envia per &ZModem…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Monitors d'una sola vegada" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" -msgstr "Monitor per a l'&indicatiu" +msgstr "Monitor per a l'&indicador" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Vigila l'&activitat" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Vigila el &silenci" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Vigila la finalització del procés" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Augmenta la lletra" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Minva la lletra" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Reinicia la mida de la lletra" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Envia un senyal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspén la tasca" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continua la tasca" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Penja" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interromp la tasca" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Finalitza la tasca" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Mata la tasca" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Senyal d'usuari &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Senyal d'usuari &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Crea un perfil nou…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Edita el perfil actual…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2429,7 +2522,7 @@ msgstr "" "Actualment, hi ha un programa executant-se en esta sessió. Segur que voleu " "eixir?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2438,18 +2531,18 @@ msgstr "" "Actualment, s'està executant el programa «%1» en esta sessió. Segur que " "voleu tancar-la?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmeu el tancament" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Tanca el programa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2458,37 +2551,37 @@ msgstr "" "En esta sessió hi ha un programa que no es mor. Segur que el voleu matar " "forçadament?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"En esta sessió hi ha el programa «%1» que no es mor. Segur que el voleu " -"matar forçadament?" +"El programa «%1» en esta sessió no s'està morint. Segur que el voleu matar " +"forçadament?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Mata el programa" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "L'indicatiu de l'intèrpret d'ordres es mostra en la sessió «%1»" +msgstr "L'indicador de l'intèrpret d'ordres es mostra en la sessió «%1»" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Obri la carpeta actual amb" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Guarda la baixada de ZModem a…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2499,14 +2592,14 @@ msgstr "" "s'ha trobat cap programari adequat per al ZModem en este sistema.

        Potser hauríeu d'instal·lar el paquet «rzsz» o «lrzsz».

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" "

        La sessió actual ja té una transferència de fitxer en curs del ZModem.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2515,10 +2608,10 @@ msgstr "" "

        No s'ha trobat cap programari adequat al ZModem en este sistema.

        Potser hauríeu d'instal·lar el paquet «rzsz» o «lrzsz».

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" -msgstr "Seleccioneu els fitxers per a l'enviament per ZModem" +msgstr "Trieu els fitxers per a l'enviament per ZModem" #: session/SessionListModel.cpp:89 #, kde-format @@ -2538,144 +2631,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configura" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Busca:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Activa els acceleradors del menú" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Si està marcada, s'ignorarà la configuració del perfil" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Recorda la mida de la finestra" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Mostra el títol de la finestra en la barra de títol" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Dona focus als terminals quan el punter del ratolí es moga sobre seu" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Coincidència utilitzant expressions regulars" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "En iniciar Konsole reutilitzarà el procés existent, si és possible" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Executa totes les finestres de Konsole en un procés únic" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Ressalta totes les coincidències" +msgid "If enabled, profile settings will be ignored" +msgstr "Si està marcada, s'ignorarà la configuració del perfil" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Establix si la busca distingix entre les majúscules i les minúscules" +msgid "Remember window size" +msgstr "Recorda la mida de la finestra" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Distingix entre majúscules i minúscules" +msgid "Force new tabs" +msgstr "Força pestanyes noves" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Elimina la barra de títol i el marc de la finestra" +msgid "Listen for ZModem terminal codes" +msgstr "Escolta els codis de terminal ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Procés i finestra:" +msgid "Show progress in taskbar" +msgstr "Mostra el progrés en la barra de tasques" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notificacions:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Es tornaran a mostrar tots els diàlegs" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Activa tots els missatges «No ho tornes a preguntar»" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Establix si la busca s'ha d'iniciar des de baix" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Busca arrere" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Establix si la busca distingix entre les majúscules i les minúscules" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Distingix entre majúscules i minúscules" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Procés i finestra:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Ressalta totes les coincidències" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Busca:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Establix si la busca s'ha de parar en lloc de tornar a començar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Sense tornar a començar" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Activa els acceleradors del menú" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Dona focus als terminals quan el punter del ratolí es moga sobre seu" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Es tornaran a mostrar tots els diàlegs" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Activa tots els missatges «No ho tornes a preguntar»" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Mostra el títol de la finestra en la barra de títol" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Activa les parts de seguretat confidencial de l'API de D-Bus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Elimina la barra de títol i el marc de la finestra" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Coincidència utilitzant expressions regulars" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2704,72 +2823,113 @@ msgstr "Utilitza la mida actual de la finestra en l'inici següent" msgid "The window size will be saved upon exiting Konsole" msgstr "La mida de la finestra es guardarà en eixir de Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"En iniciar Konsole crearà una pestanya nova en lloc de crear finestres noves " +"si és possible" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Mostra el progrés en la barra de tasques" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Quan un script informa del seu progrés, es mostrarà en la barra de tasques" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "S'activarà l'API de D-Bus com «runCommand»" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Escolta els codis de terminal ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Envia/rep fitxers automàticament per connexions en sèrie" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Amplària de la miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Establix l'amplària de la miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Utilitzeu Majúscules per a mostrar una miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Utilitzeu «Alt» per a mostrar una miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Utilitzeu «Ctrl» per a mostrar una miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "La busca distingix entre majúscules i minúscules" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Ressalta totes les coincidències de la busca" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Establix quan s'hauria de ressaltar el text coincident" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "La busca es para en lloc de tornar a començar" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" "Controla si els «cgroups» fills es creen per a les pestanyes individuals" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2779,76 +2939,84 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controla la visibilitat de tota la barra de pestanyes" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controla la mida de la maneta entre els quadros" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controla la posició de la barra de pestanyes" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controla l'estil visual de la barra de pestanyes" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" "Utilitza un fitxer .css definit per l'usuari per a la barra de pestanyes" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" "El fitxer .css que s'ha d'utilitzar per a l'estil de la barra de pestanyes" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" -msgstr "Permetre el clic del mig sobre les pestanyes obertes per a tancar-les" +msgstr "" +"Permetre el clic del mig damunt de les pestanyes obertes per a tancar-les" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" "Controla la visibilitat del botó «Pestanya nova» en la barra de pestanyes" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Controla la visibilitat del botó «Busca pestanyes» en la barra de pestanyes" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controla a on es mostrarà el botó «Tanca la pestanya»" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controla on situar la pestanya nova" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Amplia les amplàries de les pestanyes" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" @@ -2856,7 +3024,7 @@ msgstr "" "el sistema" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2864,7 +3032,7 @@ msgstr "" "específica de l'usuari" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" @@ -2872,7 +3040,7 @@ msgstr "" "especificada" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Per als fitxers de l'historial, utilitza esta carpeta" @@ -2884,34 +3052,30 @@ msgid "Enable memory monitoring:" msgstr "Activa el monitoratge de la memòria:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Els canvis s'efectuaran en reiniciar. Si s'habilita, el consum sostingut de " -"memòria per part de Konsole\n" -"que excedisca el valor especificat farà que «systemd-oomd» elimine les " -"pestanyes\n" -"que contenen els processos d'ús intensiu de memòria. Nota: l'activació pot " -"causar desacceleracions més grans durant un consum elevat de memòria i si " -"s'especifiquen valors excessivament baixos encara es podria provocar que " -"Konsole es mate." +"memòria per part de Konsole que excedisca el valor especificat farà que " +"«systemd-oomd» elimine les pestanyes que contenen els processos d'ús " +"intensiu de memòria. Nota: l'activació pot causar desacceleracions més grans " +"durant un consum elevat de memòria i si s'especifiquen valors excessivament " +"baixos encara es podria provocar que Konsole es mate." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Límit de memòria:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3073,125 +3237,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Cap" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Mostra el botó de busca de pestanyes:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Mai" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Miscel·lània:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Mostra el botó «Pestanya nova»" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Amplia l'amplària de la pestanya individual a finestra completa" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Utilitza el full d'estil definit per l'usuari:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(cap)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportament" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Posa les pestanyes noves:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Al &final" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Després de la pes&tanya actual" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Tanca les pestanyes amb el clic del mig" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Divisions" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Mostra la capçalera:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Quan calga" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Mai" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Mida de la maneta d'arrossegament:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Xicoteta" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Mitjana" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Gran" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3243,13 +3425,12 @@ msgstr "px" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" "

        Per a utilitzar esta característica, activeu Ratolí->Miscel·lània->Subratlla fitxers en la configuració del " -"perfil

        " +"style=\" font-weight:600;\">Ratolí->Miscel·lània->Subratlla fitxers en la configuració del perfil.

        " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3287,64 +3468,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Activa la generació de les miniatures" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Mida: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Segur que voleu apegar %1 caràcter?" msgstr[1] "Segur que voleu apegar %1 caràcters?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirmeu l'apegat" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Final de text/Interrupció: pot eixir del procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Final de transmissió: pot eixir del procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Timbre: intentarà emetre un avís audible" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Retrocés" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Control tres del dispositiu/XOFF: suspén l'eixida" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitució/Suspensió: pot suspendre el procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escapada: utilitzat per a manipular l'estat del terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Separador de fitxer/Eixida: pot interrompre el procés actual" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3353,31 +3534,31 @@ msgstr "" "El text que s'intenta apegar conté caràcters de control ocults. Els voleu " "filtrar?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirmeu l'apegat" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Apega &sense els caràcters de control" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "A&pega-ho tot" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "C&ancel·la" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspés en prémer «Ctrl+S». Premeu Ctrl+Q " "per a continuar." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Este terminal només és de lectura." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Canvia el &directori a" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "A&pega la ubicació" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Dividix la vista" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dividix la vista esquerra/dreta" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dividix la vista superior/inferior" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dividix la vista automàticament" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dividix la vista esquerra/dreta amb la pestanya següent" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dividix la vista superior/inferior amb la pestanya següent" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dividix la vista automàticament amb la pestanya següent" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Carrega una pestanya nova amb una disposició de terminals 2x2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Carrega una pestanya nova amb una disposició de terminals 2x1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Carrega una pestanya nova amb una disposició de terminals 1x2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expandix la vista" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Reduïx la vista" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Separa la &vista actual" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Separa la pes&tanya actual" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Pestanya següent" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Pestanya anterior" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Focus sobre el terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Focus davall el terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Focus a l'esquerra del terminal" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Focus a la dreta del terminal" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Focus al terminal següent" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Focus al terminal anterior" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Canvia a l'última pestanya" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Últimes pestanyes utilitzades" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Canvia entre dues pestanyes" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Últimes pestanyes utilitzades (a l'inrevés)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Canvia la maximització de la vista actual" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Canvia la maximització de la vista actual" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Canvia el zoom i la maximització de la vista actual" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Canvia el zoom i la maximització de la vista actual" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Mou la pestanya cap a la dreta" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Mou la pestanya cap a l'esquerra" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Configureu la integració semàntica (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Canvia la visualització dels consells semàntics" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Canvia la visualització dels números de línia" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Mateixa mida per a totes les vistes" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Canvia a la pestanya %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Consells semàntics " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Números de línia " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Guarda la disposició de les pestanyes" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Disposició de vista de Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" "A problem occurred when saving the Layout.\n" "%1" msgstr "" -"S'ha produït un problema en guardar la disposició.\n" +"S'ha produït un problema mentre es guardava la disposició.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" "A problem occurred when loading the Layout.\n" "%1" msgstr "" -"S'ha produït un problema en carregar la disposició.\n" +"S'ha produït un problema mentre es carregava la disposició.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Carrega la disposició de les pestanyes" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3741,7 +3934,7 @@ msgstr "Permetre el parpelleig de text" #: widgets/EditProfileAdvancedPage.ui:196 #, kde-format msgid "Allow the output to be suspended by pressing Ctrl+S" -msgstr "Permetre la suspensió de l'eixida prement Ctrl+S" +msgstr "Permetre la suspensió de l'eixida prement «Ctrl+S»" #. i18n: ectx: property (text), widget (QCheckBox, enableFlowControlButton) #: widgets/EditProfileAdvancedPage.ui:199 @@ -3761,28 +3954,40 @@ msgstr "Co&dificació predeterminada dels caràcters:" msgid "Shortcut for peeking the primary screen:" msgstr "Drecera per a mirar la pantalla primària:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Establiu l'interval entre guardades automàtiques:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Números de línia:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Mai" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Mostra els consells dels &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3818,7 +4023,7 @@ msgstr "Edita l'esquema de color seleccionat" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3857,7 +4062,7 @@ msgstr "Lletra:" #, kde-format msgctxt "@action:button open a dialog with list of fonts" msgid "Choose..." -msgstr "Seleccioneu…" +msgstr "Tria…" #. i18n: ectx: property (text), widget (QCheckBox, antialiasTextButton) #: widgets/EditProfileAppearancePage.ui:174 @@ -3874,6 +4079,9 @@ msgstr "Dibuixa colors intensos en la lletra en negreta" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Utilitza la lletra seleccionada per als caràcters de línia en lloc del codi " @@ -3882,6 +4090,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Utilitza els caràcters de línia continguts en la lletra" @@ -3975,7 +4186,7 @@ msgstr "Cursor:" #: widgets/EditProfileAppearancePage.ui:373 #, kde-format msgid "Select the color used to draw the cursor" -msgstr "Seleccioneu el color utilitzat per a dibuixar el cursor" +msgstr "Trieu el color utilitzat per a dibuixar el cursor" #. i18n: ectx: property (text), widget (QLabel, customCursorTextColorLabel) #: widgets/EditProfileAppearancePage.ui:393 @@ -3987,8 +4198,7 @@ msgstr "Text:" #: widgets/EditProfileAppearancePage.ui:406 #, kde-format msgid "Select the color used to draw the character underneath the cursor" -msgstr "" -"Seleccioneu el color utilitzat per a dibuixar el caràcter baix el cursor" +msgstr "Trieu el color utilitzat per a dibuixar el caràcter baix el cursor" #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/EditProfileAppearancePage.ui:431 @@ -4003,29 +4213,43 @@ msgid "Make the cursor blink regularly" msgstr "Fa que el cursor parpellege regularment" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Activat" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animació:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Fa que el cursor s'anime amb suavitat" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Miscel·lània" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Finestra:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4035,144 +4259,144 @@ msgstr "" "després de canviar la mida" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Mostra la mida del terminal després de canviar-la" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Invertix sempre els colors del text seleccionat" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Intensitat de l'enfosquit:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Color:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" -msgstr "Seleccioneu el color utilitzat per a dibuixar la vora" +msgstr "Trieu el color utilitzat per a dibuixar la vora" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminals inactius:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminals actius:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Contingut del terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Interlineat:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "El nombre de píxels entre dues línies" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marges:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Alinea al centre:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indica si la finestra està activa enfosquint els colors" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Enfosquit" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indica si la finestra està activa dibuixant-hi una vora" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Vora" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Mostra una línia vertical a la columna:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "

        Disposició complexa del text

        " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposició complexa del text" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Activa la representació del text en mode paraula" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Mode paraula" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4182,45 +4406,46 @@ msgstr "" "d'atributs trencaran les paraules quan es representen)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Utilitza els mateixos atributs per a la paraula sencera" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Representa juntes les paraules de caràcters ASCII" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caràcters ASCII" # skip-rule: kct-script #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" -msgstr "Representa juntes les paraules de caràcters dels alfabets bràmics" +msgstr "" +"Representa juntes les paraules de caràcters dels estils cal·ligràfics bràmics" # skip-rule: kct-script #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" -msgstr "Caràcters dels alfabets bràmics" +msgstr "Caràcters dels estils cal·ligràfics bràmics" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Lletra dels emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4230,97 +4455,97 @@ msgstr "" "a l'àrab, persa i hebreu)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Representació de text bidireccional" # Nota del traductor: "strong" és terminologia BiDi (algorisme bidireccional de renderització de lletres). Possible traducció: «fort» #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" "Les línies sempre són LTR, en lloc de determinar pel primer caràcter fort" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Força la direcció de línia LTR" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tracta els caràcters de dibuix de taules com a un LTR fort." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Substitució del mode BiDi de caràcters de taula" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignora la «wcwidth» dels caràcters problemàtics" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Substitució de «wcwidth»" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Edita un perfil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "General" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Pestanyes" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aparença" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Barra de desplaçament" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Teclat" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Lligams de tecla" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Ratolí" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avançat" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4332,7 +4557,7 @@ msgstr "" "filename>.Canvieu els permisos d'este fitxer o establiu un nom diferent " "per a guardar la configuració a un perfil nou." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4340,42 +4565,47 @@ msgstr "" "El nom del perfil està buit. Establiu un nom per a poder guardar la " "configuració." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Ja existix un perfil amb el nom «%1»." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "El nom del perfil ha excedit la llargària màxima permesa (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Els caràcters ressaltats no són vàlids en els noms dels perfils: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "S'està editant el perfil: %2" msgstr[1] "S'està editant %1 perfils: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Crea un perfil nou" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Editeu el perfil «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Sense" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4385,7 +4615,7 @@ msgid_plural " columns" msgstr[0] " columna" msgstr[1] " columnes" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4395,42 +4625,42 @@ msgid_plural " rows" msgstr[0] " fila" msgstr[1] " files" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Timbre del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificacions del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Timbre visual" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignora els esdeveniments de timbre" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Perfil predeterminat per a les noves sessions de terminal a %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Edita l'entorn" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Una variable d'entorn per línia" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4438,23 +4668,23 @@ msgid_plural " seconds" msgstr[0] " segon" msgstr[1] " segons" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" -msgstr "Seleccioneu el directori inicial" +msgstr "Trieu el directori inicial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Obtín nous…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." -msgstr "No s'ha pogut carregar l'esquema %1." +msgstr "Ha fallat mentre es carregava l'esquema %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4463,7 +4693,7 @@ msgstr "" "Este esquema de color té un fons transparent que pareix que no està admés en " "este escriptori" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4472,12 +4702,12 @@ msgstr "" "Konsole es va iniciar abans d'activar els efectes de l'escriptori. Cal " "tornar a iniciar Konsole per a veure el fons transparent." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Tipus de fitxer predeterminat" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4506,7 +4736,7 @@ msgstr "" "esta configuració i el fitxer s'obrirà amb l'editor\n" "de text predeterminat." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Ordre personalitzada de l'editor de text" @@ -4521,7 +4751,7 @@ msgstr "Configuració general" #: widgets/EditProfileGeneralPage.ui:66 #, kde-format msgid "Select the icon displayed on tabs using this profile" -msgstr "Seleccioneu la icona mostrada a les pestanyes utilitzant este perfil" +msgstr "Trieu la icona mostrada a les pestanyes utilitzant este perfil" #. i18n: ectx: property (toolTip), widget (QLineEdit, profileNameEdit) #: widgets/EditProfileGeneralPage.ui:84 @@ -4589,7 +4819,7 @@ msgstr "/home/nom_usuari" #: widgets/EditProfileGeneralPage.ui:183 #, kde-format msgid "Choose the initial directory" -msgstr "Seleccioneu el directori inicial" +msgstr "Trieu el directori inicial" #. i18n: ectx: property (text), widget (QCheckBox, startInSameDirButton) #: widgets/EditProfileGeneralPage.ui:193 @@ -4597,26 +4827,58 @@ msgstr "Seleccioneu el directori inicial" msgid "Start in same directory as current session" msgstr "Inicia en el mateix directori que la sessió actual" +# skip-rule: kct-toolbox +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"En obrir una pestanya nova o dividir, entra automàticament en el mateix " +"contenidor (ToolboX, Distrobox) que la sessió actual" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Entra en el mateix contenidor que la sessió actual" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Inicia sempre en el contenidor:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Inicia sempre les sessions noves utilitzant este perfil dins del contenidor " +"seleccionat" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Entorn:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Editeu la llista de les variables d'entorn i els seus valors associats" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Mida ini&cial del terminal:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4629,31 +4891,31 @@ msgstr "" "estiga desactivat perquè funcionen estes entrades.

        " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Mode de &timbre del terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Integració semàntica" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulació de les fletxes amunt/avall" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Un clic del ratolí en la línia d'entrada mou el cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Consells semàntics:" @@ -4663,9 +4925,9 @@ msgstr "Consells semàntics:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4676,9 +4938,9 @@ msgstr "Mai" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4689,34 +4951,34 @@ msgstr "Mostra els consells dels URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barres d'error rojes:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Fons d'error roig:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barres alternatives:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Fons alternatiu:" @@ -4989,8 +5251,7 @@ msgstr "Els formats dels enllaços possibles, com http://, https:// i file://" #, kde-format msgid "Selected text will require control key plus click to drag." msgstr "" -"El text seleccionat requerirà la tecla de control més un clic per a " -"arrossegar." +"El text seleccionat requerirà la tecla «Ctrl» més un clic per a arrossegar." #. i18n: ectx: property (text), widget (QCheckBox, ctrlRequiredForDragButton) #: widgets/EditProfileMousePage.ui:398 @@ -5086,57 +5347,103 @@ msgstr "Historial:" # skip-rule: k-PageUp-1 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Desplaçament cap amunt/avall de pàgina:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Ressalta les línies que venen a dins de la vista" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Oculta" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" +"Mida de cada marcador (tant per cent de la llargària de la barra de " +"desplaçament):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Ressaltat:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Desplaça la pàgina la meitat de l'alçària de la finestra" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Mitja pan&talla d'alçària" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Color dels marcadors de les barres de desplaçament:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" +"Color de les línies ressaltades de busca de les barres de desplaçament:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Redistribució de les línies:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Desplaça la pàgina tota l'alçària de la finestra" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "T&ota l'alçària de la pantalla" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Posició de la barra de desplaçament:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" "Mostra la barra de desplaçament en el costat dret de la finestra del terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Costat &dret" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" @@ -5144,62 +5451,29 @@ msgstr "" "terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Costat es&querre" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Oculta" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Ressaltat:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Ressalta les línies que venen a dins de la vista" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Redistribució de les línies:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Redistribució de les línies quan el terminal es redimensiona" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Color dels marcadors de les barres de desplaçament:" +msgid "Scrollbar position:" +msgstr "Posició de la barra de desplaçament:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" -"Mida de cada marcador (tant per cent de la llargària de la barra de " -"desplaçament):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Opacitat de les línies ressaltades de busca:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5305,37 +5579,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Cap" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Busca…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Introduïu ací el text que s'ha de buscar" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Següent" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Busca la coincidència següent per a la frase de busca actual" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Anterior" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5343,77 +5617,77 @@ msgstr "Busca la coincidència anterior per a la frase de busca actual" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Mostra el menú d'opcions" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Tanca la barra de busques" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Distingix entre majúscules i minúscules" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Establix si la busca distingix entre les majúscules i les minúscules" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Mostra el menú d'opcions" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Tanca la barra de busques" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Coincidència d'expressió regular" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Ressalta totes les coincidències" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Establix quan s'hauria de ressaltar el text coincident" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Busca arrere" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Establix si la busca s'ha d'iniciar des de baix" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Sense tornar a començar" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Establix si la busca s'ha de parar en lloc de tornar a començar" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Busca la frase de busca actual des de baix" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5424,7 +5698,7 @@ msgstr "Busca la frase de busca actual des de dalt" msgid "Print Shell" msgstr "Impressió de l'intèrpret d'ordres" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5464,6 +5738,12 @@ msgstr "Format normal del títol de la pestanya" msgid "Tab Co&lor:" msgstr "Co&lor de la pestanya:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Color de la pestanya amb &activitat:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5498,7 +5778,7 @@ msgstr "Amfitrió local: %h" #: widgets/TabTitleFormatButton.cpp:28 msgid "User's Bourne prompt sigil: %B" -msgstr "Secretisme de l'indicatiu de Bourne de l'usuari: %B" +msgstr "Secretisme de l'indicador de Bourne de l'usuari: %B" #: widgets/TabTitleFormatButton.cpp:35 msgid "User Name@ (if given): %U" @@ -5558,31 +5838,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restaura el terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Obri una pestanya nova" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Busca de pestanyes" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Tanca esta pestanya" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Separa la pestanya" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configura o canvia el nom de la pestanya…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/cs/konsole.po b/local/recipes/kde/konsole/source/po/cs/konsole.po index 4e45b2b68c..ca36a3487b 100644 --- a/local/recipes/kde/konsole/source/po/cs/konsole.po +++ b/local/recipes/kde/konsole/source/po/cs/konsole.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2024-08-27 13:51+0200\n" "Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" @@ -54,7 +54,7 @@ msgstr "Pohled" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Rozdělit pohled" @@ -90,7 +90,7 @@ msgid "S&crollback" msgstr "Rolování" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Nástrojový panel sezení" @@ -170,48 +170,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Skrýt hlavní nabídku, ignorovat výchozí nastavení" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Zobrazit panel karet, ignorovat výchozí nastavení" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Skrýt panel karet, ignorovat výchozí nastavení" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Zobrazit panel karet, ignorovat výchozí nastavení" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Skrýt panel karet, ignorovat výchozí nastavení" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Spustit Konsole v celoobrazovkovém režimu" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Zakáže průhledná pozadí, i pokud je systém podporuje." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Vypsat dostupné profily" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Vypíše všechny názvy vlastností profilu a jejich typy (pro užití s -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Změnit hodnotu vlastnosti profilu." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -219,7 +235,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -227,13 +243,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenty předané příkazu" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -251,157 +267,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Popředí" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Pozadí" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Barva 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Barva 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Barva 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Barva 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Barva 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Barva 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Barva 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Barva 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Popředí (intenzivní)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Pozadí (intenzivní)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Barva 1 (intenzivní)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Barva 2 (intenzivní)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Barva 3 (intenzivní)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Barva 4 (intenzivní)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Barva 5 (intenzivní)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Barva 6 (intenzivní)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Barva 7 (intenzivní)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Barva 8 (intenzivní)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -653,6 +669,41 @@ msgstr "Nahoře" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Počítač: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Výchozí]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Nástrojová lišta" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -695,7 +746,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopírovat umístění" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generuji náhled" @@ -726,13 +777,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Vybrat písmo" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Zobrazit všechna písma" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -769,17 +820,17 @@ msgstr "Kombinace kláves" msgid "Output" msgstr "Výstup" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nový seznam klávesových zkratek" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Upravit seznam klávesových zkratek" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Schéma klávesových zkratek nelze uložit s prázdným popisem." @@ -787,7 +838,7 @@ msgstr "Schéma klávesových zkratek nelze uložit s prázdným popisem." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -821,225 +872,225 @@ msgstr "Vstup:" msgid "Output:" msgstr "Výstup:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulátor terminálu" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Vývojáři Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Hlavní správce, opravy chyb a obecná vylepšení" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Předchozí správce, port na KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Původní autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Opravy chyb a vylepšení" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Obecná vylepšení" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Opravy chyb" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Podpora pro Solaris a historii" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Opravy chyb a vylepšený rychlost spouštění" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Vylepšení v označování" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1049,13 +1100,13 @@ msgstr "" "Komponenta konzole\n" "Panel nástrojů a názvy sezení" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1065,25 +1116,25 @@ msgstr "" "Vnořená Konsole\n" "Obecná vylepšení" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vizuální efekty" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1093,132 +1144,132 @@ msgstr "" "Kód z projektu kvt\n" "Obecná vylepšení" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Schémata a vylepšení výběru textu" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Port na SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Port na FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Díky mnoha ostatním.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nová karta" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klonovat kartu" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nové o&kno" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zavřít okno" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Záložky" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Barevné sc&héma okna" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Spravovat profily..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktivovat nabídku" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Uložit rozvržení karet..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Načíst rozvržení karet..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1228,67 +1279,67 @@ msgstr[0] "V tomto okně běží proces. Stále si přejete skončit?" msgstr[1] "V tomto okně běží %1 procesy. Stále si přejete skončit?" msgstr[2] "V tomto okně běží %1 procesů. Stále si přejete skončit?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Potvrdit uzavření" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Zavřít o&kno" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zavřít současnou kar&tu" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "V tomto okně je otevřeno %1 terminálů. Opravdu si přejete skončit?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profily" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Obecné" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Paměť" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Pruh karet / oddělovače" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Dočasné soubory" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Náhledy" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1372,7 +1423,7 @@ msgstr "Uložit" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Aktualizovat" @@ -1384,27 +1435,27 @@ msgid "Cancel" msgstr "Zrušit" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Rychlé příkazy" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Zobrazit rychlý přístup" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Moduly - Rychlé příkazy" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Zobrazit rychlé příkazy" @@ -1444,7 +1495,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Chystáte se smazat %1. Jste si jisti?" @@ -1497,11 +1548,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 je složka pro položky SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Nastavení SSH" @@ -1560,92 +1611,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Klíč SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Smazat" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Neměnit" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Smazat nastavení SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Chybějící název počítače" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Chybějící jméno" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Chybí složka" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Tuto složku nelze smazat" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Smazat složku a všechen její obsah" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Smazat vybraný záznam" @@ -1835,25 +1886,25 @@ msgstr "Možnosti výstupu" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Tis&kový režim (černý text, žádné pozadí)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Vestavěno" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Výchozí profil" @@ -1913,17 +1964,38 @@ msgstr "Dvakrát klikněte pro změnu zkratky" msgid "Tab Properties" msgstr "Vlastnosti sešitu" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Uložit výstup z %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 není platné URL, nelze uložit výstup." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Nelze vytvořit soubor pro automatické uložení v \"%1\"" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1959,81 +2031,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tmavé pastely" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zelená na černé" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linuxové barvy" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Červená na černé" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized světlé" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Bílá na černé" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Výchozí (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linuxová konzole" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Konzole Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Hledat..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Zvonek v '%1' (sezení '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nelze najít program: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Varování: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nelze najít interaktivní shell ke spuštění." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2042,357 +2131,364 @@ msgstr "" "Nelze najít '%1', spouštím '%2' jako náhradu. Prosím, zkontrolujte nastavení " "svého profilu." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nepovedlo se spustit program '%1' s argumenty '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Ticho v '%1' (sezení '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Zastavit sezení" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Hotovo" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program '%1' zhavaroval." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program '%1' ukončen se stavem %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem průběh" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivita v '%1' (Sezení '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Proces '%1' dokončil svůj běh v sezení '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole neví jak otevřít záložku: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Hledat '%1' pomocí" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Nastavit webové zkratky..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Ukončit sezení" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Otevřít správce souborů" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopírovat" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Rozdělit pohled vlevo/vpravo" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Rozdělit pohled nahoře/dole" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopírovat uživatelský vstup" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopírovat výstup příkazu" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Vložit výběr" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Hledání na webu" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Vybr&at vše" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Vyberte režim" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Vybrat řáde&k" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Uložit výstup jako..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Automaticky uložit výstup jako..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Zastavit automatické ukládání" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Vytisknout o&brazovku..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Nastavit rolování zpět..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Vyčistit rolování" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Vyčistit rolování a obnovit" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Následující profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Předchozí profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Přepnout profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Nastavit &kódování" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Povolit sledování myši" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Pouze ke čtení" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Nas&tavit nebo přejmenovat kartu..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Všechny k&arty v aktuálním okně" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Vybrat ka&rty..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "Žád&né" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopírovat vstup do" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Odesílání skrze &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitorovat &aktivitu" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitorovat tic&ho" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitorování dokončení procesů" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Zvětšit písmo" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Zmenšit písmo" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Resetovat velikost písma" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Poslat signál" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Poza&stavit úlohu" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Pokračovat úlohu" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Z&avěsit" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Přeruš&it úlohu" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Přeruši&t úlohu" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Zabí&t úlohu" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Uživatelský signál &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Uživatelský signál &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Vytvořit nový profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Upravit současný profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "V tomto sezení právě běží nějaký program, opravdu si přejete skončit?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "V tomto sezení právě běží program '%1', opravdu si přejete skončit?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potvrdit uzavření" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Zavřít program" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2401,37 +2497,35 @@ msgstr "" "V tomto sezení zůstal viset nějaký program. Opravdu si přejete vynutit jeho " "ukončení?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"V tomto sezení zůstal viset program '%1'. Opravdu si přejete vynutit jeho " -"ukončení?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Zabít program" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Otevřít současnou složku pomocí" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Uložit stahování ZModem do ..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2442,13 +2536,13 @@ msgstr "" "použitelný ZModem software.

        Asi si přejete nainstalovat balíček " "'rzsz', nebo 'lrzsz'.

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "

        V současném sezení již probíhá ZModem přenos.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2457,7 +2551,7 @@ msgstr "" "

        V systému nenalezen použitelný ZModem software.

        Asi si přejete " "nainstalovat balíček 'rzsz', nebo 'lrzsz'.

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Vyberte soubory pro odesílání ZModem" @@ -2480,144 +2574,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Nastavit" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Hledat:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Povolit akcelerátory nabídky" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Pokud je povoleno, nastavení profilu budou ignorována" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Zapamatovat si velikost okna" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Zobrazovat název okna v pruhu názvu" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Zaměřit terminály, pokud je přes ně přesouvána myš" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Porovnávat pomocí regulárních výrazů" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Spouštět všechna okna Konsole v jednom procesu" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Zvýraznit všechny odpovídající" +msgid "If enabled, profile settings will be ignored" +msgstr "Pokud je povoleno, nastavení profilu budou ignorována" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Nastavuje, zda se má rozlišovat velikost písmen" +msgid "Remember window size" +msgstr "Zapamatovat si velikost okna" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Rozlišovat VELKÁ/malá" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Přidávat nové karty:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Odstranit titulku a rám okna" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Proces a okno:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Upozornění:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Všechny dialogy budou znovu zobrazovány" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Povolit všechny zprávy typu \"Znovu se nedotazovat\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Nastavuje, zda se má zahájit hledání odspodu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Hledat pozpátku" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Nastavuje, zda se má rozlišovat velikost písmen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Rozlišovat VELKÁ/malá" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Proces a okno:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Zvýraznit všechny odpovídající" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Hledat:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Povolit akcelerátory nabídky" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Zaměřit terminály, pokud je přes ně přesouvána myš" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Všechny dialogy budou znovu zobrazovány" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Povolit všechny zprávy typu \"Znovu se nedotazovat\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Zobrazovat název okna v pruhu názvu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Odstranit titulku a rám okna" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Porovnávat pomocí regulárních výrazů" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2642,71 +2763,109 @@ msgstr "Použít současnou velikost okna při příštím spuštění" msgid "The window size will be saved upon exiting Konsole" msgstr "Velikost okna bude uložena při ukončení Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Šířka náhledu" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Při hledání rozlišovat velikost písmen" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Zvýraznit všechny odpovídající nálezy" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Nastavuje, zda má být odpovídající text zvýrazněn" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2714,91 +2873,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Použít uživatelem určený soubor .css pro panel karet" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Povolit zavření karty kliknutím prostředním tlačítkem" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Ovládání viditelnosti tlačítka 'Nová karta' v panelu karet" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Roztáhnout šířky karet" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2810,26 +2975,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Limit paměti:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -2982,125 +3145,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nic" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Vždy" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nikdy" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Různé:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Zobrazit tlačítko 'Nová karta'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Roztáhnout jednotlivé karty na celé okno" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Uživatelem definovaný styl:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(žádná)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Chování" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Přidávat nové karty:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Na kon&ci" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Za ak&tuální kartou" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Zavřít kartu při kliknutí prostředním tlačítkem" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Počet záznamů v transakcích" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Zobrazovat hlavičku:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Pokud je potřeba" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nikdy" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Malý" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Střední" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Velký" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3152,8 +3333,8 @@ msgstr "px" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3192,12 +3373,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Povolit vytváření náhledů" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Velikost: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3205,52 +3386,52 @@ msgstr[0] "Opravdu chcete vložit znak?" msgstr[1] "Opravdu chcete vložit %1 znaky?" msgstr[2] "Opravdu chcete vložit %1 znaků?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Potvrdit vložení" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Konec přenosu: může ukončit současný proces" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3259,31 +3440,31 @@ msgstr "" "Text, který se pokoušíte vložit obsahuje skryté ovládací znaky. Chcete je " "odfiltrovat?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Potvrdit vložení" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Vložit bez &kontrolních znaků" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Vložit vše" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "Z&rušit" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been potlačen stisknutím Ctrl+S. Stiskněte Ctrl+Q pro pokračování." "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Tento terminál je pouze pro čtení." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Změnit a&dresář na" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Vložit &místo" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Rozdělit pohled" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Rozdělit pohled vlevo/vpravo" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Rozdělit pohled nahoře/dole" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Automaticky rozdělit pohled" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Rozdělit pohled vlevo/vpravo z následující karty" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Rozdělit pohled nahoře/dole z následující karty" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Automaticky rozdělit pohled z následující karty" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Otevřít novou kartu s rozvržením terminálů 2x2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Otevřít novou kartu s rozvržením terminálů 2x1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Otevřít novou kartu s rozvržením terminálů 1x2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Roztáhnout pohled" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Zmenšit pohled" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "&Vytrhnout současný pohled" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Vytrhnout současnou kar&tu" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Následující karta" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Předchozí karta" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Přepnout nad terminál" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Přepnout pod terminál" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Přepnout na terminál vlevo" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Přepnout na terminál vpravo" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Přepnout na terminál vlevo" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Přepnout pod terminál" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Přepnout na poslední kartu" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Naposledy použité karty" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Přepnout mezi dvěma kartami" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Naposledy použité karty (Pozpátku)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Přepnout maximalizaci současného pohledu" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Přepnout maximalizaci současného pohledu" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Posunout kartu doprava" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Posunout kartu doleva" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Nastavit sémantickou integraci (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Zapnout zobrazení sémantické nápovědy" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Stejná velikost pro všechny pohledy" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Přepnout na kartu %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Sémantická nápověda" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Čísla řádků " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Uložit rozvržení karet" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3551,7 +3748,7 @@ msgstr "" "Nastal problém při ukládání rozvržení.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3561,13 +3758,13 @@ msgstr "" "Nastal problém při načítání rozvržení.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Načíst rozvržení karet" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3665,28 +3862,40 @@ msgstr "Výchozí kó&dování znaků:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Čísla řádků:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "N&ikdy" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Při zobrazení nápovědy &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3722,7 +3931,7 @@ msgstr "Upravit zvolené barevné schéma" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3776,14 +3985,20 @@ msgstr "Vykreslí ostré barvy tučným fontem" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Použít znaky řádky obsažené v písmu" +msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3900,29 +4115,44 @@ msgid "Make the cursor blink regularly" msgstr "Pravidelně blikat kurzorem" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Povoleno" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animace:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Pravidelně blikat kurzorem" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Různé" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Okno:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3932,144 +4162,144 @@ msgstr "" "velikosti" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Zobrazit informaci pro terminál po změně velikosti" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Vždy obrátit barvy vybraného textu" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Barva:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Vyberte barvu, jakou bude vykreslen okraj" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Aktivní terminály:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Obsah terminálu" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Rozestupy řádků:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Počet pixelů mezi dvěma řádky" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Okraje:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Zarovnat na střed:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Ukazuje, zda je okno aktivní ztlumením barev" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Ztmavit" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Okraj" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Komplexní rozvržení textu" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Režim slov" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4077,43 +4307,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Použít stejné atributy pro celé slovo" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Znaky ASCII" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Písmo emotikonu:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4123,95 +4353,95 @@ msgstr "" "Hebrejštinu a Perštinu)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Obousměrné vykreslování textu" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Vynutit směr zleva doprava" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorovat wcwidth problematických znaků" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Předefinovat wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Upravit profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Obecné" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Karty" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Vzhled" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rolování" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klávesnice" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Klávesové zkratky" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Myš" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Pokročilé" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4220,31 +4450,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4252,17 +4482,23 @@ msgstr[0] "Upravuji profil: %2" msgstr[1] "Upravuji %1 profily: %2" msgstr[2] "Upravuji %1 profilů: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Vytvořit nový profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Upravit profil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +# žádné parametry funkce v inspektoru funkcí +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Nic" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4273,7 +4509,7 @@ msgstr[0] " sloupec" msgstr[1] " sloupce" msgstr[2] " sloupců" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4284,42 +4520,42 @@ msgstr[0] " řada" msgstr[1] " řady" msgstr[2] " řad" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Systémový zvonek" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Systémová upozornění" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Vizuální zvonek" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Výchozí profil pro nová sezení terminálu v %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Upravit prostředí" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Jedna proměnná prostředí na řádek" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4328,23 +4564,23 @@ msgstr[0] " sekunda" msgstr[1] " sekundy" msgstr[2] " sekund" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Zvolit počáteční adresář" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Získat nové..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Načítání schématu %1 selhalo." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4352,7 +4588,7 @@ msgid "" msgstr "" "Toto schéma používá průhledné pozadí, což vaše plocha zřejmě nepodporuje" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4361,12 +4597,12 @@ msgstr "" "Konsole byla spuštěna před zapnutím efektů plochy. Pro zobrazení průhledného " "pozadí je třeba aplikaci restartovat." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4383,7 +4619,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4474,26 +4710,54 @@ msgstr "Vyberte počáteční adresář" msgid "Start in same directory as current session" msgstr "Začít ve stejné složce jako v současném sezení" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Začít ve stejné složce jako v současném sezení" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Prostředí:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Upravit seznam proměnných prostředí a jejich přiřazených hodnot" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Výcho&zí velikost terminálu:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4506,31 +4770,31 @@ msgstr "" "okna vypnuto.

        " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Režim zvonku &terminálu:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Sémantická informace" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulace šipek nahoru/dolů" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Kliknutí myši ve vstupním řádku posune kurzorem" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Sémantická nápověda" @@ -4540,9 +4804,9 @@ msgstr "Sémantická nápověda" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4553,9 +4817,9 @@ msgstr "Nikdy" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4566,34 +4830,34 @@ msgstr "Při zobrazení nápovědy URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Vždy" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Měnící se pruhy:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Měnící se pozadí:" @@ -4934,116 +5198,128 @@ msgid "Scrollback:" msgstr "Zpětné rolování:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Rolování nahoru/dolů:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Zvýraznit nové řádky v pohledu" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Skryté" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Zvýraznění:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rolovat stránku o polovinu výšky okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Na výšku po&loviny obrazovky" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Překreslit řádky:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rolovat stránku o plnou výšku okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Na výšk&u celé obrazovky" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Pozice posuvníku:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Zobrazí posuvný panel na pravé straně terminálového okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Pravá s&trana" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Zobrazovat posuvník na levé straně okna terminálu" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Levá strana" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Skryté" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Zvýraznění:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Zvýraznit nové řádky v pohledu" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Překreslit řádky:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Překreslit řádky při změně velikosti terminálu" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Pozice posuvníku:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" +msgid "Search highlighting line opacity:" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" - #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 #, kde-format @@ -5141,37 +5417,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nic" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Najít..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Zde zadejte text pro vyhledání" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Následující" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Najít následující výskyt hledané fráze" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Předchozí" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5179,77 +5455,77 @@ msgstr "Najít předchozí výskyt hledané fráze" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Zobrazí nabídku možností" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Uzavřít panel pro hledání" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Rozlišovat velká/malá" +msgstr "" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Nastavuje, zda se má rozlišovat velikost písmen" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Zobrazí nabídku možností" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Uzavřít panel pro hledání" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Jako regulární výraz" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Zvýraznit všechny odpovídající" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Nastavuje, zda má být odpovídající text zvýrazněn" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Hledat pozpátku" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Nastavuje, zda se má zahájit hledání odspodu" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Najít následující výskyt hledané fráze zespodu" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5261,7 +5537,7 @@ msgid "Print Shell" msgstr "" # žádné parametry funkce v inspektoru funkcí -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5301,6 +5577,13 @@ msgstr "Formát titulku normální karty" msgid "Tab Co&lor:" msgstr "Barva &karty:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "Barva &karty:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5394,31 +5677,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Obnovit terminál" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Otevřít novou kartu" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Zavřít tuto kartu" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Vytrhnout kartu" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Nas&tavit nebo přejmenovat kartu..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/csb/konsole.po b/local/recipes/kde/konsole/source/po/csb/konsole.po index e9ce605b03..50252d947f 100644 --- a/local/recipes/kde/konsole/source/po/csb/konsole.po +++ b/local/recipes/kde/konsole/source/po/csb/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2009-12-17 00:21+0100\n" "Last-Translator: Mark Kwidzińśczi \n" "Language-Team: Kaszëbsczi \n" @@ -50,7 +50,7 @@ msgstr "Wëzdrzatk" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Pòdzélë wëzdrzatk" @@ -86,7 +86,7 @@ msgid "S&crollback" msgstr "Liste&w przewijaniô" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number" msgid "Session Toolbar" @@ -177,49 +177,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Wëłączë przezérny spódk, nawetka jeżlë systema gò wspiérô." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Lësta przëstãpnych profilów" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Zmieni wôrtnotã swòjiznë profilu." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -227,7 +239,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -235,14 +247,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argùmentë pòlétu" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -263,217 +275,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Farwa tekstu" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Farwa spódkù" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Farwa 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Farwa 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Farwa 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Farwa 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Farwa 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Farwa 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Farwa 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Farwa 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Farwa tekstu (intensywnota)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Farwa spódka (intensywnota)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Farwa 1 (intensywnota)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Farwa 2 (intensywnota)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Farwa 3 (intensywnota)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Farwa 4 (intensywnota)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Farwa 5 (intensywnota)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Farwa 6 (intensywnota)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Farwa 7 (intensywnota)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Farwa 8 (intensywnota)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Farwa tekstu (intensywnota)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Farwa spódka (intensywnota)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Farwa 1 (intensywnota)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Farwa 2 (intensywnota)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Farwa 3 (intensywnota)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Farwa 4 (intensywnota)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Farwa 5 (intensywnota)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Farwa 6 (intensywnota)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Farwa 7 (intensywnota)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Farwa 8 (intensywnota)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -743,6 +755,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Kòmpùtr:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "Nastôwi jakno domëslny" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -787,7 +833,7 @@ msgstr "" msgid "Copy Location" msgstr "Kòpérëjë weńdzenié do" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -819,14 +865,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Editëjë fònt..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Wëgładzóné fòntë" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -864,17 +910,17 @@ msgstr "Kòmbinacëjô klawiszów" msgid "Output" msgstr "Wińdzenié" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nowô lësta dopasowaniô knapów" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Editëjë lëstã dopasowaniô knapów" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -882,7 +928,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -916,249 +962,249 @@ msgstr "Weńdzenié:" msgid "Output:" msgstr "Wińdzenié:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Kònsola" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Emùlatora terminala" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Rëmanié felów ë òglowé pòprawczi" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Emùlatora terminala" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Rëmanié felów ë òglowé pòprawczi" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Rëmanié felów ë òglowé pòprawczi" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Rëmanié felów ë òglowé pòprawczi" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Òglowé pòprôwczi" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Rëmanié felów" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Wspiarcé ë historëjô dlô Solarisa" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Rëmanié felów ë schùtczanié startowaniô" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "Zaznaczanié pòprawków" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1171,14 +1217,14 @@ msgstr "" "Wbùdowónô kònsola\n" "Miono sesëji ë listwë nôrzãdzów" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1191,28 +1237,28 @@ msgstr "" "Wbùdowónô kònsola\n" "Òglowé pòprôwczi" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Wizualné efektë" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1225,151 +1271,151 @@ msgstr "" "Kòd z ùdbë kvt\n" "Òglowé pòprôwczi" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Pòprôwczi dlô zestôwków ë zaznaczenia" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "Pòrt SGI" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Pòrt FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Dzãka dlô wielu jinszëch.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Nowô &kôrta" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Zamkni kôrtã" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Nowé òkno" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Kònsola" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Załóżczi" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nowi zestôwk farwów" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Sprôwiôj profilama..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Przesënié wëzdrzat na lewò" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1381,28 +1427,28 @@ msgstr[0] "Môsz òtemkłich wiele kôrtów, chcesz na gwës zakùńczëc?" msgstr[1] "Môsz òtemkłich wiele kôrtów, chcesz na gwës zakùńczëc?" msgstr[2] "Môsz òtemkłich wiele kôrtów, chcesz na gwës zakùńczëc?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Pòcwierdzë zamkniãcé" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Kònsola" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zamkni biéżną kôrtã" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1410,45 +1456,45 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Môsz òtemkłich wiele kôrtów, chcesz na gwës zakùńczëc?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Nowi profil" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Òglowé" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1539,7 +1585,7 @@ msgstr "Òtemkni menadżerã lopków" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1551,29 +1597,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Pòlét:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Pòlét:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1615,7 +1661,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1674,11 +1720,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1741,94 +1787,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Daleczé pòłączenié" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "NIé zamëkôj aùtomatno sesëji pò ji zakùńczeniu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2033,25 +2079,25 @@ msgstr "Wińdzenié" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2115,17 +2161,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Zapiszë wińdzenié z %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 je zmiłkòwim URL-a, wińdzenié nie mòże òstac zapisóné." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2162,84 +2229,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Cémné pastele" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zelono na czôrnym" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Farwë Linuksa" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Biôło na czôrnym" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Biôło na czôrnym" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Domëslnô (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Kònsola Linuksa" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Kònsola Solarisa" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Szëkba wińdzenia..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Wpiszë tuwò tekst szëkbë" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Brzãczk w sesëji '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nié mòże nalezc binarnych. " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Òstrzega:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "NIé mòże nalezc interaktiwny pòwłoczi do zrëszeniô." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2248,372 +2334,380 @@ msgstr "" "NIé mòże nalezc '%1', zrëszoné je za to '%2'. Proszã sprôwdzëc nastôwë " "twòjegò profilu." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "NIé mòże zrëszëc programë '%1', z argùmentã '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Cëchòsc w sesëji '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Kònsola" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Skùńczony" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programa '%1' niespòdzajno zakùńczëła dzejanié." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programa '%1' zakùńcza dzejanié w stónie %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Pòstãp transmisëji ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktiwnota w sesëji '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Kònsola" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Kònsola nie rozmieje jakno òtemknąc załóżkã: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Sprôwiôj profilama..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Kònsola" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Òtemkni menadżerã lopków" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Kòpérëjë" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Pòdzelë wëzdrzatk lewò/prawò" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Pòdzelë wëzdrzatk góra/dół" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kòpérëjë weńdzenié" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kòpérëjë weńdzenié" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Wlepi wëbiérk" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Wëbiérzë wszëtkò" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Wëbierzë" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Wëbierzë" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "Zapiszë wińdzenié..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "Zapiszë wińdzenié..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Sprôwiôj profilama..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Wëczëszczë lëstwã przewijaniô" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "Wëczëszczë lëstwã przewijaniô ë zresetëje" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Editëjë profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Pòprzédny wëzdrzatk" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Editëjë profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Kòdowanié" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Zmieni miono kôrtë..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Wszëtczé kôrtë w aktualnych òknach" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Wë&bierzë kôrtë..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "&None" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Felënk" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kòpérëjë weńdzenié do" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Wladëjë &ZModem ..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Mònitorëje &aktiwnotã" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Mònitorëje &aktiwnotã" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Mònitorëjë &nieaktiwnotã" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Mònitorëje &aktiwnotã" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "Zmiészë wëzdrzatk" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Zwikszë miarã tekstu" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "&Zamkni kôrtã" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Fùnkcëje terminala" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Nowi profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Editëjë biéżny profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Programa robi prawie w ti sesëji. Jes gwës tegò, że chcesz jã zamknąc?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2621,19 +2715,19 @@ msgid "" msgstr "" "Programa '%1' robi prawie w ti sesëji. Jes gwës tegò, że chcesz jã zamknąc?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Pòcwierdzë zamkniãcé" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Zamkni kôrtã" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2643,40 +2737,40 @@ msgid "" "by force?" msgstr "Programa robi prawie w ti sesëji. Jes gwës tegò, że chcesz jã zamknąc?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Programa '%1' robi prawie w ti sesëji. Jes gwës tegò, że chcesz jã zamknąc?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "Zapiszë zladënk ZModem do..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

        A ZModem file transfer attempt has been detected, but no suitable " @@ -2691,7 +2785,7 @@ msgstr "" "twòji systemie softwôrë ZModem.\n" "

        Winstalëje mòże paczétë 'rzsz' abò 'lrzsz'.\n" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, fuzzy, kde-format #| msgid "" #| "

        The current session already has a ZModem file transfer in progress." @@ -2699,7 +2793,7 @@ msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "

        W aktualny sesëji dérëje sélanié lopków ZModem." -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

        No suitable ZModem software was found on this system.\n" @@ -2711,7 +2805,7 @@ msgstr "" "

        Felëje softwôrë ZModem w twòji systemie.\n" "

        Winstalëje mòże paczétë 'rzsz' abò 'lrzsz'.\n" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Wëbierzë lopczi dlô wladënkù ZModem" @@ -2737,150 +2831,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "Pòcwierdzë zamkniãcé" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Dopasëjë regùlarny wësłów" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Pòdsztrichnié wszëtkò" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "Nastôwiô czë szëkba mô ùwzglãdniac dopasowanié miarë" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "Zamkni aktiwné" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Wpiszë nowi tekst kôrtë:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "Nastôwiô czë szëkba mô ùwzglãdniac dopasowanié miarë" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "Zamkni aktiwné" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Pòdsztrichnié wszëtkò" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Nalézë pòstãpny skùtk dlô szëkónegò wësłowia" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Dopasëjë regùlarny wësłów" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2905,74 +3026,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "Nastôwiô czë szëkba mô ùwzglãdniac dopasowanié miarë" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Pòdsztrichnié wszëtkò" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Nastôwiô czë nalazłi tekst mô bëc pòdsztëchniãti" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2980,92 +3139,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Brëkùjë swòji, stałi farwë dlô kùrsora" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3078,26 +3243,24 @@ msgid "Enable memory monitoring:" msgstr "Włączë Bi-direktionalné wëskrzënianié ôrtów tekstu" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3266,110 +3429,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Felënk" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Zamkni kôrtã" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "Wëskrzëni 'Nowô kôrta' ë 'Zamkni kôrtã' w listwie kôrtów" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "Brëkùjë swòji, stałi farwë dlô kùrsora" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Wpiszë nowi tekst kôrtë:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Zamkni biéżną kôrtã" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Pòdzélë wëzdrzatk" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Wëskrzëni listew menu" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3377,14 +3559,14 @@ msgid "Small" msgstr "Môłi" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3392,7 +3574,7 @@ msgid "Large" msgstr "Wiôldżi" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3445,8 +3627,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3486,12 +3668,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Miara: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3499,87 +3681,87 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Pòcwierdzë zamkniãcé" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Pòcwierdzë zamkniãcé" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Nastôwiô farwã kùrsorã do aktualnegò céchù." -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Wlepi wëbiérk" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been zawieszoné przez wcësniãcé Ctrl+S. Wcësni Ctrl+Q bë znowic." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Wlepi wëbiérk" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Pòdzélë wëzdrzatk" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Pòdzelë wëzdrzatk lewò/prawò" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Pòdzelë wëzdrzatk góra/dół" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3636,7 +3818,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Pòdzelë wëzdrzatk góra/dół" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3644,7 +3826,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Pòdzelë wëzdrzatk lewò/prawò" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3652,7 +3834,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Pòdzelë wëzdrzatk góra/dół" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3660,210 +3842,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Pòdzelë wëzdrzatk góra/dół" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Rozszerzë wëzdrzatk" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Zmiészë wëzdrzatk" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Zamkni biéżną kôrtã" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Zamkni biéżną kôrtã" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Nowô &kôrta" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Pòprzédny" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Wëżi ekranu terminala" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Niżi ekranu terminala" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Wëżi ekranu terminala" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Niżi ekranu terminala" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Skòkni do kôrtë %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Przesënié wëzdrzatk w prawò" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Przesënié wëzdrzat na lewò" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Skòkni do kôrtë %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Fùnkcëje mëszë" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Stałô wielëna rézów: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Przesënié wëzdrzat na lewò" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3876,7 +4072,7 @@ msgstr "" "Wëstąpiła problema przë zapisywaniu wińdzeniô.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3889,13 +4085,13 @@ msgstr "" "Wëstąpiła problema przë zapisywaniu wińdzeniô.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3996,29 +4192,41 @@ msgstr "Domëslné kòdowanié céchów" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Stałô wielëna rézów: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4056,7 +4264,7 @@ msgstr "Editëjë wëbróną schémã farwów" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4113,12 +4321,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4249,30 +4463,46 @@ msgid "Make the cursor blink regularly" msgstr "Regùlarno mërgającu kùrsor" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "Òpisënk:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Regùlarno mërgającu kùrsor" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Òkno" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4280,25 +4510,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4306,28 +4536,28 @@ msgid "Color:" msgstr "Farwa" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Wëbierzë farwã kùrsora" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "Fùnkcëje terminala" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "Fùnkcëje terminala" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4335,95 +4565,95 @@ msgid "Terminal contents" msgstr "Fùnkcëje terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Włączë Bi-direktionalné wëskrzënianié ôrtów tekstu" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4431,45 +4661,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Nastôwiô farwã kùrsorã do aktualnegò céchù." #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Fònt" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4479,100 +4709,100 @@ msgstr "" "arabsczégò, persczégò ë hebrajsczégò)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Włączë Bi-direktionalné wëskrzënianié ôrtów tekstu" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Nastôwiô farwã kùrsorã do aktualnegò céchù." #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Editëjë profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Òglowé" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Kôrtë" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Wëzdrzatk" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Przewijanié" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Przëpisanié klawiszów" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Awansowóné" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4581,31 +4811,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4613,18 +4843,24 @@ msgstr[0] "Edicëjô profilu: %2" msgstr[1] "Edicëjô %1 profilë: %2" msgstr[2] "Edicëjô %1 profilów: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Nowi profil..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Editëjë profil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "&None" +msgid "None" +msgstr "&Felënk" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4635,7 +4871,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4646,45 +4882,45 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "Wlepi wëbiérk" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "Wizualné efektë" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Nastôwi wëbróny profil jakno domëslny dlô nowi sesëji terminala" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Editëjë òkrãże" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4693,24 +4929,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Wëbiérzë zaczątkòwi katalog" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Nowô..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4719,20 +4955,20 @@ msgstr "" "Nen schemat farwë brëkùje przezérnegò spódka, chtëren nie je wspieróny przez " "twój pùlt." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Rëmôj profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4749,7 +4985,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4843,27 +5079,55 @@ msgstr "Szëkôj za zôczątkòwim katalogã" msgid "Start in same directory as current session" msgstr "Startëjë w tim sómym katalogù co aktualnô kôrta" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Startëjë w tim sómym katalogù co aktualnô kôrta" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Òkrãżé:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Editëjë lëstã zmiennych òkrãżô ë przëpisónych wôrtnotów" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Fùnkcëje terminala" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4873,33 +5137,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Emùlatora terminala" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Fùnkcëje mëszë" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4909,9 +5173,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4922,9 +5186,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4935,35 +5199,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Farwa spódkù" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5320,50 +5584,93 @@ msgid "Scrollback:" msgstr "Liste&w przewijaniô" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Zataconé" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Pòłożenié listwë kôrtów" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Wëskrzëni listew przewijaniô z prawi starnë òkna terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5371,67 +5678,36 @@ msgid "Ri&ght side" msgstr "Wëskrzëni listew przewijaniô z lewi starnë òkna terminala" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Wëskrzëni listew przewijaniô z lewi starnë òkna terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Miara tekstu:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Zataconé" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Pòłożenié listwë kôrtów" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5536,42 +5812,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Felënk" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Nalezë:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Wpiszë tuwò tekst szëkbë" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Pòstãpny" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Nalézë pòstãpny skùtk dlô szëkónegò wësłowia" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Pòprzédny" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5579,88 +5855,88 @@ msgid "Find the previous match for the current search phrase" msgstr "Nalézë pòprzedny skùtk dlô szëkónegò wësłowia" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zamkni lëstwã szëkbë" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Zamkni aktiwné" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Nastôwiô czë szëkba mô ùwzglãdniac dopasowanié miarë" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zamkni lëstwã szëkbë" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Dopasëjë regùlarny wësłów" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Pòdsztrichnié wszëtkò" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Nastôwiô czë nalazłi tekst mô bëc pòdsztëchniãti" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Nalézë pòstãpny skùtk dlô szëkónegò wësłowia" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Nalézë pòstãpny skùtk dlô szëkónegò wësłowia" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Nalézë pòstãpny skùtk dlô szëkónegò wësłowia" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Nalézë pòstãpny skùtk dlô szëkónegò wësłowia" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5673,7 +5949,7 @@ msgstr "Nalézë pòstãpny skùtk dlô szëkónegò wësłowia" msgid "Print Shell" msgstr "Pòwłoka" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "&None" msgctxt "@label:listbox No color selected" @@ -5716,6 +5992,13 @@ msgstr "Zwëkòwi fòrmat titla kôrtë" msgid "Tab Co&lor:" msgstr "Farwa" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Wëbierzë &farwã kôrtë" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5830,41 +6113,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Zamkni kôrtã" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Ò&dłączë wëzdrzatk" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Ò&dłączë wëzdrzatk" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Zamkni lëstwã szëkbë" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Ò&dłączë wëzdrzatk" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Zmieni miono kôrtë..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Zamkni kôrtã" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Zamkni aktiwné" + #, fuzzy #~| msgid "&None" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6303,9 +6600,6 @@ msgstr "&Zamkni kôrtã" #~ msgid "Decrease Text Size" #~ msgstr "Zmniészë miarã tekstu" -#~ msgid "Search Output..." -#~ msgstr "Szëkba wińdzenia..." - #~ msgid "Find Next" #~ msgstr "Nalezë pòstãpné" @@ -6326,6 +6620,3 @@ msgstr "&Zamkni kôrtã" #~ msgid "New" #~ msgstr "Nowé" - -#~ msgid "Select &Tab Color" -#~ msgstr "Wëbierzë &farwã kôrtë" diff --git a/local/recipes/kde/konsole/source/po/cy/konsole.po b/local/recipes/kde/konsole/source/po/cy/konsole.po index a1137654d9..83322d6445 100644 --- a/local/recipes/kde/konsole/source/po/cy/konsole.po +++ b/local/recipes/kde/konsole/source/po/cy/konsole.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2003-12-27 14:17+0000\n" "Last-Translator: KD at KGyfieithu \n" "Language-Team: Cymraeg \n" @@ -57,7 +57,7 @@ msgstr "&Maint" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View" @@ -96,7 +96,7 @@ msgid "S&crollback" msgstr "Peidio â dangos bar sgrolio" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -175,46 +175,58 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Rhestru'r mathau o sesiynau sydd ar gael." -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -222,7 +234,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,14 +242,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments for 'command'" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Ymresymiadau i'r 'gorchymyn'" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "transparency" msgctxt "@item" @@ -258,199 +270,199 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background" msgstr "tryloywder" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "tryloywder" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "tryloywder" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "tryloywder" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "tryloywder" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Lliwiau VIM" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -713,6 +725,38 @@ msgstr "&Pen" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Rhagosodyn Konsole" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -759,7 +803,7 @@ msgstr "" msgid "Copy Location" msgstr "Gludo'r Dewisiad" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -791,13 +835,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "&Terfynu Tasg" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -835,17 +879,17 @@ msgstr "Ffurfwedd Maint" msgid "Output" msgstr "Cadw Hanes" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -853,7 +897,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -887,228 +931,228 @@ msgstr "" msgid "Output:" msgstr "Cadw Hanes" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "&Cau'r Efelychydd Terfynellau" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@info:credit" msgid "Original author" msgstr "&Cau'r Efelychydd Terfynellau" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "trwsio namau" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "cynhaliaeth Solaris a gwaith ar yr hanes" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "trwsio namau a gwelliannau" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1118,13 +1162,13 @@ msgstr "" "dyrannu\n" "Bar offer ac enwau sesiwn" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1132,25 +1176,25 @@ msgid "" "General improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1158,138 +1202,138 @@ msgid "" "General improvements" msgstr "trwsio namau a gwelliannau" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "gwelliannau sgema a dewis" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Porthiad SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Porthiad FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Ca&u Sesiwn" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Ca&u Sesiwn" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Ffenestr Newydd" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Plisgyn wrth Nôd Tudalen" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format msgid "&Window Color Scheme" msgstr "Rhestru'r mathau o sesiynau sydd ar gael." -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Cadw &Proffil Sesiwn..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Gweithredu'r Ddewislen" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "&Symud Sesiwn i'r Chwith" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1298,70 +1342,70 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Ca&u Sesiwn" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Cadw &Proffil Sesiwn..." -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format #| msgid "Tab &Options" msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Dewi&siadau Tab" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1447,7 +1491,7 @@ msgstr "&Maint" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1459,27 +1503,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1519,7 +1563,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1575,11 +1619,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1638,93 +1682,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Ffurfwedd Maint" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format msgid "Delete selected entry" msgstr "Rhestru'r mathau o sesiynau sydd ar gael." @@ -1923,25 +1967,25 @@ msgstr "Dewi&siadau Tab" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Modd &cyfeillgar i argraffyddion (testun du, dim cefndir)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default profile" @@ -2004,17 +2048,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Cadw Hanes" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Methu ysgrifennu i'r ffeil" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2050,511 +2116,536 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Gwyrdd ar Ddu" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Lliwiau Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Gwyn ar Ddu" -#: schemas.cpp:10 +#: schemas.cpp:11 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized" msgstr "Solaris" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized Light" msgstr "Solaris" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Gwyn ar Ddu" -#: schemas.cpp:13 +#: schemas.cpp:14 #, fuzzy, kde-format #| msgid "XTerm (XFree 4.x.x)" msgid "Default (XFree 4)" msgstr "XTerm (XFree 4.x.x)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, fuzzy, kde-format #| msgid "linux console" msgid "Linux console" msgstr "terfynell linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, fuzzy, kde-format #| msgid "linux console" msgid "Solaris console" msgstr "terfynell linux" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Clirio'r &Hanes" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Cloch yn sesiwn '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Methwyd cadw'r hanes." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Tawelwch yn sesiwn '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Sesiwn Newydd" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Session '%1' exited unexpectedly." msgid "Program '%1' crashed." msgstr "Terfynodd sesiwn '%1' yn annisgwyl." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format #| msgid "Session '%1' exited with status %2." msgid "Program '%1' exited with status %2." msgstr "Terfynodd sesiwn '%1' â chyflwr %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Cynnydd ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Gweithgarwch yn sesiwn '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Ni ganfuwyd y llinyn chwilio '%1'." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "Ca&u Sesiwn" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format msgid "Copy" msgstr "&Pen" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Left-Right" msgstr "Lleihau Wynebfath" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Top-Bottom" msgstr "Lleihau Wynebfath" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Gludo'r Dewisiad" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "&Select All" msgstr "De&wis..." -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Mode" msgstr "De&wis..." -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Line" msgstr "De&wis..." -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "Cadw Hanes" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "Cadw Hanes" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Argraffu'r Sgrîn..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Adjust Scrollback..." msgstr "Cadw &Proffil Sesiwn..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Do not display scrollbar" msgid "Clear Scrollback" msgstr "Peidio â dangos bar sgrolio" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear &History" msgid "Clear Scrollback and Reset" msgstr "Clirio'r &Hanes" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Next Profile" msgstr "Cadw &Proffil Sesiwn..." -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgid "Previous Profile" msgstr "Canfod Blae&norol" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Switch Profile" msgstr "Cadw &Proffil Sesiwn..." -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Set &Encoding" msgstr "A&mgodiad" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Configure or Rename Tab..." msgstr "&Terfynu Tasg" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Select Tabs..." msgstr "&Terfynu Tasg" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Dim" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Fyny-lwytho â &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Archwilio am &Weithgarwch" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Archwilio am &Weithgarwch" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Archwilio am &Dawelwch" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Archwilio am &Weithgarwch" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Cynyddu Maint yr Wynebfath" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgid "&Shrink Font" msgid "Shrink Font" msgstr "&Lleihau Wynebfath" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "Anfon &Arwydd" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Seibio Tasg" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Ail&ddechrau Tasg" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Rhoi Pen ar Dasg" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Ymyrru Tasg" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Terminate Task" msgstr "&Terfynu Tasg" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Lladd Tasg" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Arwydd Defnyddiwr &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Arwydd Defnyddiwr &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile..." msgstr "Cadw &Proffil Sesiwn..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Current Profile..." msgstr "Cadw &Proffil Sesiwn..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Ca&u Sesiwn" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "Fyny-lwytho â &ZModem..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

        A ZModem file transfer attempt has been detected, but no suitable " @@ -2569,7 +2660,7 @@ msgstr "" "ZModem addas ar y cysawd.\n" "

        Efallai hoffech osod y pecyn 'rzsz' neu'r un 'lrzsz'.\n" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, fuzzy, kde-format #| msgid "" #| "

        The current session already has a ZModem file transfer in progress." @@ -2578,7 +2669,7 @@ msgid "" msgstr "" "

        Mae trosglwyddiad ffeil ZModem ar waith yn barod yn y sesiwn cyfredol." -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

        No suitable ZModem software was found on the system.\n" @@ -2590,7 +2681,7 @@ msgstr "" "

        Ni ganfuwyd meddalwedd ZModem addas ar y cysawd.\n" "

        Efallai hoffech osod y pecyn 'rzsz' neu'r un 'lrzsz'.\n" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, fuzzy, kde-format #| msgid "Select Files to Upload" msgid "Select Files for ZModem Upload" @@ -2616,148 +2707,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Gosod teitl y ffenestr" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "Fel &mynegiad rheolaidd" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" -msgstr "Ca&u Sesiwn" +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Gosod teitl y ffenestr" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgid "Force new tabs" +msgstr "&Datglymu'r Sesiwn" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "&Hysbysiad Cysawd" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "Ca&u Sesiwn" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "Fel &mynegiad rheolaidd" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2782,72 +2900,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "Ca&u Sesiwn" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2855,91 +3011,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2951,26 +3113,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3131,105 +3291,123 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Dim" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +msgid "Show Search Tabs button:" +msgstr "Ca&u Sesiwn" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format msgid "Show 'New Tab' button" msgstr "Ca&u Sesiwn" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format msgid "After current &tab" msgstr "Ca&u Sesiwn" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Splits" msgstr "Lleihau Wynebfath" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format msgid "Show Header:" msgstr "Cuddio Bar &Dewislen" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "&Bell" msgctxt "@option:radio Small height/width of splitter widget" @@ -3237,21 +3415,21 @@ msgid "Small" msgstr "C&loch" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3304,8 +3482,8 @@ msgstr "" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3345,96 +3523,96 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Maint: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Gludo'r Dewisiad" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "Newid cyfeiriadur gwaith y konsole yn 'gyf'" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Gludo'r Dewisiad" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Lleihau Wynebfath" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Ca&u Sesiwn" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Ca&u Sesiwn" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Ca&u Sesiwn" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Canfod Blae&norol" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "&Cau'r Efelychydd Terfynellau" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "&Cau'r Efelychydd Terfynellau" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "&Cau'r Efelychydd Terfynellau" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "&Cau'r Efelychydd Terfynellau" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Newid i Dab" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "M&ove Session Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "S&ymud Sesiwn i'r Dde" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "&Symud Sesiwn i'r Chwith" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Newid i Dab" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic hints " msgstr "Cysylltyddion Geiriau" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line numbers " msgstr "&Nifer llinellau:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "&Symud Sesiwn i'r Chwith" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3716,7 +3908,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3724,13 +3916,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3827,29 +4019,41 @@ msgstr "A&mgodiad" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line Numbers:" msgstr "&Nifer llinellau:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3885,7 +4089,7 @@ msgstr "Rhestru'r mathau o sesiynau sydd ar gael." #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, fuzzy, kde-format msgid "Edit..." @@ -3939,12 +4143,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4065,31 +4275,46 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "&Galluogi" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Gweithredu'r Ddewislen" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "New &Window" msgid "Window:" msgstr "&Ffenestr Newydd" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4097,25 +4322,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "VIM Colors" msgctxt "Border color options" @@ -4123,27 +4348,27 @@ msgid "Color:" msgstr "Lliwiau VIM" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "Mae maint y derfynell yn osodedig" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "Mae maint y derfynell yn osodedig" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@title:group" @@ -4151,95 +4376,95 @@ msgid "Terminal contents" msgstr "&Terfynu Tasg" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "Bylchu Lli&nell" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4247,43 +4472,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4291,99 +4516,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile" msgstr "Cadw &Proffil Sesiwn..." -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, fuzzy, kde-format #| msgid "Sc&rollbar" msgid "Scrolling" msgstr "&Bar Sgrolio" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "All&weddell" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Key bindings" msgstr "A&mgodiad" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4392,13 +4617,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4409,19 +4634,19 @@ msgstr "" "Bodola ffeil o'r enw yma eisioes.\n" "A ydych am ei throsysgrifennu?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Editing profile: %2" @@ -4429,19 +4654,25 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "Cadw &Proffil Sesiwn..." msgstr[1] "Cadw &Proffil Sesiwn..." -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile" msgstr "Cadw &Proffil Sesiwn..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile \"%1\"" msgstr "Cadw &Proffil Sesiwn..." -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "N&one" +msgid "None" +msgstr "&Dim" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4451,7 +4682,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4461,45 +4692,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "C&loch Cysawd" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "&Hysbysiad Cysawd" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "Cloch &Gweladwy" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Rhestru'r mathau o sesiynau sydd ar gael." -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4507,43 +4738,43 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format msgid "Get New..." msgstr "Newydd" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default for file type" msgstr "Cadw &Proffil Sesiwn..." -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4560,7 +4791,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4650,27 +4881,54 @@ msgstr "Newid cyfeiriadur gwaith y konsole yn 'gyf'" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "Mae maint y derfynell yn osodedig" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4680,33 +4938,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminal bell mode:" msgstr "&Cau'r Efelychydd Terfynellau" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic Integration" msgstr "Cysylltyddion Geiriau" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4716,9 +4974,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4729,9 +4987,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4742,35 +5000,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "transparency" msgid "Red error background:" msgstr "tryloywder" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "transparency" msgid "Alternating background:" @@ -5110,50 +5368,93 @@ msgid "Scrollback:" msgstr "Peidio â dangos bar sgrolio" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "&Hide" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "C&uddio" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab &Options" -msgid "Scrollbar position:" -msgstr "Dewi&siadau Tab" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "&Right" msgctxt "@option:radio Show scrollbar on the right side" @@ -5161,66 +5462,35 @@ msgid "Ri&ght side" msgstr "&Dde" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "&Hide" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "C&uddio" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab &Options" +msgid "Scrollbar position:" +msgstr "Dewi&siadau Tab" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5323,121 +5593,121 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Dim" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find" msgctxt "@label:textbox" msgid "Find..." msgstr "Canfod" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Find" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Canfod" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Canfod Blae&norol" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Ca&u Sesiwn" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Ca&u Sesiwn" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Ca&u Sesiwn" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Fel &mynegiad rheolaidd" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5449,7 +5719,7 @@ msgstr "" msgid "Print Shell" msgstr "Argraffu &pennawd" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@label:listbox No color selected" @@ -5489,6 +5759,13 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Lliwiau VIM" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "VIM Colors" +msgid "&Activity Tab Color:" +msgstr "Lliwiau VIM" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgctxt "NAME OF TRANSLATORS" @@ -5600,39 +5877,52 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Ailosod a Chlirio'r Derfynell" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Datglymu'r Sesiwn" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Datglymu'r Sesiwn" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Ca&u Sesiwn" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Datglymu'r Sesiwn" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Terfynu Tasg" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Ca&u Sesiwn" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Ca&u Sesiwn" + #, fuzzy #~| msgid "N&one" #~ msgctxt "Do not save any lines to the scrollback history" @@ -5929,11 +6219,6 @@ msgstr "Ca&u Sesiwn" #~ msgid "&Detach View" #~ msgstr "&Datglymu'r Sesiwn" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "Clirio'r &Hanes" - #, fuzzy #~| msgid "Find Pre&vious" #~ msgid "Find Previous" @@ -6472,9 +6757,6 @@ msgstr "Ca&u Sesiwn" #~ msgid "Overwrite" #~ msgstr "Trosysgrifo" -#~ msgid "Unable to write to file." -#~ msgstr "Methu ysgrifennu i'r ffeil" - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/da/konsole.po b/local/recipes/kde/konsole/source/po/da/konsole.po index e81d7df61a..bcaf73dfa5 100644 --- a/local/recipes/kde/konsole/source/po/da/konsole.po +++ b/local/recipes/kde/konsole/source/po/da/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2020-08-01 09:45+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -49,7 +49,7 @@ msgstr "Vis" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Opdel visning" @@ -85,7 +85,7 @@ msgid "S&crollback" msgstr "Til&bagerulning" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -171,49 +171,65 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Skjul menulinjen, hvilket tilsidesætter standardindstillingen" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Vis fanebladslinjen, hvilket tilsidesætter standardindstillingen" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Skjul fanebladslinjen, hvilket tilsidesætter standardindstillingen" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Vis fanebladslinjen, hvilket tilsidesætter standardindstillingen" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Skjul fanebladslinjen, hvilket tilsidesætter standardindstillingen" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Start Konsole i fuldskærmstilstand" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Deaktivér gennemsigtige baggrunde, selv hvis systemet understøtter dem." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Vis liste over tilgængelige profiler" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Oplist alle profilegenskabsnavnene og deres type (til brug med -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Ændr værdien af en profilegenskab." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -223,7 +239,7 @@ msgstr "" "Kommandoen der skal køres. Denne indstilling vil fange alle de efterfølgende " "argumenter, så brug dette som sidste valgmulighed." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -231,13 +247,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenter sendt til kommando" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -255,157 +271,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Forgrund" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Baggrund" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Farve 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Farve 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Farve 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Farve 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Farve 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Farve 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Farve 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Farve 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Forgrund (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Baggrund (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Farve 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Farve 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Farve 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Farve 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Farve 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Farve 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Farve 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Farve 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Forgrund (afdæmpet)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Baggrund (afdæmpet)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Farve 1 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Farve 2 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Farve 3 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Farve 4 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Farve 5 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Farve 6 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Farve 7 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Farve 8 (afdæmpet)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -668,6 +684,41 @@ msgstr "" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Vært:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "Name of the default/builtin profile" +#| msgid "Default" +msgid " [default]" +msgstr "&Sæt som standard" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -711,7 +762,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiér placering" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Genererer miniature" @@ -742,13 +793,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Vælg skrifttype" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Vis alle skrifttyper" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -789,17 +840,17 @@ msgstr "Tastekombination" msgid "Output" msgstr "Output" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Ny liste over tastebindinger" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Redigér liste over tastebindinger" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Et tastebindingsskema kan ikke gemmes med en tom beskrivelse." @@ -807,7 +858,7 @@ msgstr "Et tastebindingsskema kan ikke gemmes med en tom beskrivelse." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -841,19 +892,19 @@ msgstr "Input:" msgid "Output:" msgstr "Output:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalemulator" -#: main.cpp:190 +#: main.cpp:193 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "(c) 1997-2020, The Konsole Developers" @@ -861,49 +912,49 @@ msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2020, Konsole-udviklerne" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Generel vedligeholder, fejlretning og generelle forbedringer" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Tidligere vedligeholder, porterede til KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Oprindelige udvikler" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -911,56 +962,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Generel vedligeholder, fejlretning og generelle forbedringer" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Fejlretning og generelle forbedringer" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -968,7 +1019,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Fejlretning og generelle forbedringer" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -976,98 +1027,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Generelle forbedringer" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Fejlrettelser" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-understøttelse og historik" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Fejlretning og forbedret opstartsydelse" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Markeringsforbedringer" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1077,13 +1128,13 @@ msgstr "" "Indlejret Konsole\n" "Værktøjslinje og sessionsnavne" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1093,25 +1144,25 @@ msgstr "" "Indlejret Konsole\n" "Generelle forbedringer" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visuelle effekter" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1121,122 +1172,122 @@ msgstr "" "Kode fra kvt-projektet\n" "Generelle forbedringer" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Forbedring af farvetema og tekstmarkering" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-portering" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-portering" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Tak til mange andre.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nyt faneblad" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klon faneblad" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nyt &vindue" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Luk vindue" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Bogmærker" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nyt farvetema" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Håndtér profiler..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktivér menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move tab to the left" @@ -1244,13 +1295,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Flyt faneblad til venstre" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1261,67 +1312,67 @@ msgstr[0] "" msgstr[1] "" "Der er %1 processer der kører i dette vindue. Vil du afslutte alligevel?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Bekræft lukning" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Luk &vindue" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Luk nuværende fane&blad" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Der er %1 åbne terminaler i dette vindue. Vil du afslutte alligevel?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiler" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Generelt" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Fanebladslinje / opdelere" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Midlertidige filer" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturer" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1417,7 +1468,7 @@ msgstr "Åbn fil" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1431,29 +1482,29 @@ msgid "Cancel" msgstr "&Annullér" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Kommando:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Kommando:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1496,7 +1547,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1558,11 +1609,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Configure" @@ -1626,97 +1677,97 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Ekstern forbindelse" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Dobbeltklik for at skifte genvej" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Luk ikke den indledningsvise session automatisk når den slutter." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1925,25 +1976,25 @@ msgstr "Output-indstillinger" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Print&venlig tilstand (sort tekst, ingen baggrund)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skalér output" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standardprofil" @@ -2008,17 +2059,38 @@ msgstr "Dobbeltklik for at skifte genvej" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Gem output fra %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 er en ugyldig URL, outputtet kunne ikke gemmes." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2054,82 +2126,103 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Mørke pastelfarver" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Grøn på sort" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-farver" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rød på sort" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solariseret" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solariseret lys" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Hvid på sort" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standard (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-konsol" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-konsol" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Søg:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Angiv teksten der skal søges efter her" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Bip i sessionen \"%1\"" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Kunne ikke finde binær fil: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Advarsel: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Kunne ikke finde en interaktiv skal at starte." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2138,217 +2231,220 @@ msgstr "" "Kunne ikke finde \"%1\", starter \"%2\" i stedet. Tjek venligst dine " "profilindstillinger." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Kunne ikke starte programmet \"%1\" med argumenterne \"%2\"." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Tavshed i sessionen \"%1\"" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Luk session" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"D-Bus-metoderne SendText/runCommand blev netop brugt. Der er " -"sikkerhedsproblemstillinger ved at tillade disse metoder at være offentlige. " -"Hvis det ønskes kan disse metoder ændres til kun intern brug ved at gen-" -"oversætte Konsole fra kildekoden.

        Denne advarsel vil kun blive vist én " -"gang for denne Konsole-instans.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Gennemført" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programmet \"%1\" brød sammen." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programmet \"%1\" afsluttede med status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem fremgang" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktivitet i sessionen \"%1\"" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Processen \"%1\" er færdig med at køre i session \"%2\"" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ved ikke hvordan bogmærket skal åbnes: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Søg efter \"%1\" med" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Indstil webgenveje..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Luk session" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Åbn filhåndtering" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopiér" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Opdel visning venstre/højre" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Opdel visning top/bund" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kopiér input" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kopiér input" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Indsæt markering" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Websøgning" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Markér alle" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Vælg &linje" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Vælg &linje" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Gem &output som..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Gem &output som..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Udskriv skærm..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Justér tilbagerulning..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Ryd tilbagerulning" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Ryd tilbagerulning og nulstil" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Redigér profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Forrige visning" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Skift profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Vælg &tegnsæt" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2356,137 +2452,137 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Skrivebeskyttet" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Omdøb faneblad..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Alle faneblade i det aktuelle vindue" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Markér faneblade..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ingen" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiér input til" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem-upload..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Overvåg for &aktivitet" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Overvåg for &aktivitet" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Overvåg for &tavshed" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Overvåg for færdiggørelse af proces" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Forstør skrift" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Formindsk skrift" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Nulstil tekststørrelse" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Send signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspendér opgave" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Fortsæt opgave" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Hæng op" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Af&bryd opgave" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Afslut opgave" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Dræb opgave" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Brugersignal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Brugersignal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "Ny profil" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Redigér nuværende profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2494,7 +2590,7 @@ msgid "" msgstr "" "Et program kører i øjeblikket i denne session. Vil du virkelig lukke den?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2503,12 +2599,12 @@ msgstr "" "Programmet \"%1\" kører i øjeblikket i denne session. Vil du virkelig lukke " "den?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Bekræft lukning" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Close Tab" @@ -2516,7 +2612,7 @@ msgctxt "@action:button" msgid "Close Program" msgstr "Luk faneblad" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2524,37 +2620,40 @@ msgid "" msgstr "" "Et program i denne session ville ikke dø. Vil du virkelig dræbe det med magt?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Programmet \"%1\" i denne session ville ikke dø. Vil du virkelig dræbe det " "med magt?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Gem ZModem-download til..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2565,14 +2664,14 @@ msgstr "" "passende ZModem-software blev fundet på dette system.

        Du vil måske " "ønske at installere pakken \"rzsz\" eller \"lrzsz\".

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "" "

        Den aktuelle session har allerede en ZModem-filoverførsel i gang.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2581,7 +2680,7 @@ msgstr "" "

        Ingen passende ZModem-software blev fundet på dette system.

        Du vil " "måske ønske at installere pakken \"rzsz\" eller \"lrzsz\".

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Vælg filer til ZModem-upload" @@ -2604,145 +2703,172 @@ msgctxt "@title:window" msgid "Configure" msgstr "Indstil" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Søg:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Aktivér menugenveje" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Hvis aktiveret vil profilindstillinger blive ignoreret" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Husk vinduesstørrelse" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Vis vinduestitel i titellinjen" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Match brugte regulære udtryk" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Genbrug så vidt muligt eksisterende proces når Konsole startes" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Kør alle Konsole-vinduer i en enkelt proces" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Fremhæv alle fund" +msgid "If enabled, profile settings will be ignored" +msgstr "Hvis aktiveret vil profilindstillinger blive ignoreret" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Angiver hvorvidt søgning er versalfølsom" +msgid "Remember window size" +msgstr "Husk vinduesstørrelse" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Versalfølsom" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Placér nye faneblade:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Fjern vinduets titellinje og ramme" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Proces og vindue:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Bekendtgørelser:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Alle dialoger vil blive vist igen" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Aktivér alle \"Spørg ikke igen\"-meddelelser" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Angiver om søgningen skal starte fra bunden" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Søg baglæns" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Angiver hvorvidt søgning er versalfølsom" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Versalfølsom" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Proces og vindue:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Fremhæv alle fund" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Søg:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Angiver om søgningen skal starte fra bunden" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Aktivér menugenveje" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Alle dialoger vil blive vist igen" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Aktivér alle \"Spørg ikke igen\"-meddelelser" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Vis vinduestitel i titellinjen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Fjern vinduets titellinje og ramme" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Match brugte regulære udtryk" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2767,71 +2893,110 @@ msgstr "Brug aktuel vinduesstørrelse ved næste opstart" msgid "The window size will be saved upon exiting Konsole" msgstr "Vinduesstørrelsen vil blive gemt ved afslutning af Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Genbrug så vidt muligt eksisterende proces når Konsole startes" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Bredde på miniature" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Angiver bredden på miniaturen" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Brug Skift til at vise en miniature" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Brug Alt til at vise en miniature" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Brug Ctrl til at vise en miniature" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Søgning er versalfølsom" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Fremhæv alle fundne match" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Angiver hvorvidt matchende tekst skal fremhæves" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2839,91 +3004,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Styr synligheden af hele fanebladslinjen" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Kontrollér størrelsen på håndtaget mellem paneler" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Styr placeringen af fanebladslinjen" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Styr fanebladslinjens visuelle udtryk" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Brug en brugertilpasset .css-fil til fanebladlinjen" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Den .css-fil der skal bruges til fanebladsstilen" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Tillad at midterklik på åbne faneblade lukker dem" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Styr synligheden af \"Nyt faneblad\"-knappen på fanebladslinjen" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Styr synligheden af \"Nyt faneblad\"-knappen på fanebladslinjen" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Styr hvor \"Luk faneblad\"-knappen vises" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Styr hvor det nye faneblad placeres" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Udvid bredden på faneblade" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Brug systemets mappeplacering til tilbagerulningsfiler" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Brug brugervalgt mappeplacering til tilbagerulningsfiler" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Brug valgte mappeplacering til tilbagerulningsfiler" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Brug denne mappe til tilbagerulningsfiler" @@ -2936,26 +3108,24 @@ msgid "Enable memory monitoring:" msgstr "Overvågning af faneblade" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3119,125 +3289,148 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Ingen" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Vis knap til luk faneblad:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Altid" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Aldrig" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diverse:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Vis \"Nyt faneblad\"-knap" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Udvid hvert enkelt faneblads bredde til fuldt vindue" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Anvend brugerdefineret stilark:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ingen)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Opførsel" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Placér nye faneblade:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "&Bagest" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Efter &nuværende faneblad" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Luk faneblad med midterklik" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Opdelinger" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Vis overskrift:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Når nødvendigt" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Aldrig" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Størrelse på trækhåndtag:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Lille" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Mellem" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Stor" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3289,8 +3482,8 @@ msgstr "px" #, kde-format msgid "" "

        To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

        " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3330,64 +3523,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Aktivér menugenveje" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Størrelse: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Vil du virkelig indsætte %1 tegn?" msgstr[1] "Vil du virkelig indsætte %1 tegn?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Bekræft indsæt" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Slut på tekst/intterrupt: Kan afbryde den aktuelle proces" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Slut på transmission: Afslutter måske den aktuelle proces" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Klokke: Prøver at udsende en advarsel i lydform" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Enhedskontrol tre/XOFF: Suspenderer output" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substituér/suspendér: Stopper måske den aktuelle proces" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: Bruges til at manipulere terminalens tilstand" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Filseparator/afbryd: Afbryder måske den aktuelle proces" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3396,31 +3589,31 @@ msgstr "" "Teskten som du prøver at indsætte indeholder skjulte kontroltegn. Vil du " "prøve at bortfiltrere dem?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Bekræft indsæt" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Indsæt &uden kontroltegn" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Indsæt alt" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Annullér" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
        suspenderet ved at trykke Ctrl+S. Tryk Ctrl" "+Q for at genoptage.
        " -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Denne terminal er skrivebeskyttet." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Skift m&appe til" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Placering af &indsæt" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Opdel visning" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Opdel visning venstre/højre" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Opdel visning top/bund" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3473,7 +3666,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Opdel visning top/bund" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3481,7 +3674,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Opdel visning venstre/højre" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3489,7 +3682,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Opdel visning top/bund" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3497,121 +3690,137 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Opdel visning top/bund" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Udvid visning" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Formindsk visning" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Frigør aktuel &visning" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Frigør aktuelt &faneblad" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Næste faneblad" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Forrige faneblad" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Sæt terminalen ovenover i fokus" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Sæt terminalen nedenunder i fokus" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Sæt terminalen til venstre i fokus" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Sæt terminalen til højre i fokus" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Sæt terminalen til venstre i fokus" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Sæt terminalen nedenunder i fokus" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Skift til sidste faneblad" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Seneste brugte faneblade" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Skift mellem to faneblade" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Seneste brugte faneblade (omvendt)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Slå maksimering af aktuel visning til/fra" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Slå maksimering af aktuel visning til/fra" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Toggle maximize current view" @@ -3619,7 +3828,7 @@ msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Slå maksimering af aktuel visning til/fra" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Toggle maximize current view" @@ -3627,61 +3836,61 @@ msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Slå maksimering af aktuel visning til/fra" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Flyt faneblad til højre" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Flyt faneblad til venstre" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Skift til %1. faneblad" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Text interaction" msgid "Semantic hints " msgstr "Tekstinteraktion" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Fast antal linjer: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move tab to the left" @@ -3689,13 +3898,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Flyt faneblad til venstre" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3708,7 +3917,7 @@ msgstr "" "Et problem opstod under gemning af outputtet.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3721,13 +3930,13 @@ msgstr "" "Et problem opstod under gemning af outputtet.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3826,15 +4035,27 @@ msgstr "Standardtegnsæt:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Fast antal linjer: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, fuzzy, kde-format #| msgid "&Never" msgctxt "Never" @@ -3842,7 +4063,7 @@ msgid "&Never" msgstr "&Aldrig" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, fuzzy, kde-format #| msgid "Enable URL hints" msgctxt "When showing URL hints" @@ -3850,7 +4071,7 @@ msgid "When &URL hints show" msgstr "Aktivér URL-fremhævning" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -3888,7 +4109,7 @@ msgstr "Redigér valgt farvetema" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3941,14 +4162,23 @@ msgstr "Tegn intense farver med fed skrifttype" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Brug den valgte skrifttype til linjetegn i stedet for den indbyggede kode" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Brug linjetegn indeholdt i skrifttypen" @@ -4071,29 +4301,45 @@ msgid "Make the cursor blink regularly" msgstr "Lad markøren blinke regelmæssigt" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Aktiveret" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktivering:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Lad markøren blinke regelmæssigt" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diverse" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Vindue:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4103,25 +4349,25 @@ msgstr "" "størrelse" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Vis tip med terminalens størrelse efter størrelsesændring" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "Cursor color options" #| msgid "Color:" @@ -4130,124 +4376,124 @@ msgid "Color:" msgstr "Farve:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Vælg farven der skal bruges til at tegne markøren" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Inactive Terminals:" msgstr "Indledende størrelse på terminalen:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Active Terminals:" msgstr "Indledende størrelse på terminalen:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminalindhold" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Linjeafstand:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Antal pixel mellem to linjer" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margener:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Juster til midten:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indiker om vinduet er aktivt ved at nedtone farverne" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, fuzzy, kde-format #| msgid "Indicate whether the window is active by dimming the colors" msgid "Indicate whether the window is active by drawing a border" msgstr "Indiker om vinduet er aktivt ved at nedtone farverne" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

        Complex Text Layout

        " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Gengivelse af tekst i to retninger" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4255,46 +4501,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, fuzzy, kde-format #| msgid "Word characters:" msgid "ASCII characters " msgstr "Ordtegn:" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Match current character" msgid "Brahmic scripts characters" msgstr "Match det nuværende tegn" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font:" msgid "Emoji Font:" msgstr "Skrifttype:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4304,37 +4550,37 @@ msgstr "" "eller hebræisk)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Gengivelse af tekst i to retninger" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Paste &without control characters" @@ -4342,59 +4588,59 @@ msgid "Ignore wcwidth of problematic characters" msgstr "Indsæt &uden kontroltegn" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Redigér profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Generelt" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Faneblade" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Udseende" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rulning" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatur" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Tastebindinger" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avanceret" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, fuzzy, kde-kuit-format #| msgid "" #| "

        Konsole does not have permission to save this profile to:
        " @@ -4412,51 +4658,58 @@ msgstr "" "profilens konfigurationsfil eller ændre profilnavnet for at gemme " "indstillinger til en ny profil.

        " -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "

        A profile with this name already exists.

        " msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "

        En profil med dette navn findes allerede.

        " -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Redigerer profil: %2" msgstr[1] "Redigerer %1 profiler: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile" msgstr "Ny profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Redigér profil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Ingen" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4466,7 +4719,7 @@ msgid_plural " columns" msgstr[0] " kolonne" msgstr[1] " kolonner" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4476,46 +4729,46 @@ msgid_plural " rows" msgstr[0] " række" msgstr[1] " rækker" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications:" msgid "System Notifications" msgstr "Bekendtgørelser:" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "Visuelle effekter" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Sæt valgte profil som standard for nye terminalsessioner" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Redigér miljø" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "En miljøvariabel pr. linje" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4523,23 +4776,23 @@ msgid_plural " seconds" msgstr[0] " sekund" msgstr[1] " sekunder" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Vælg begyndelsesmappe" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Hent ny..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Skemaet %1 kunne ikke indlæses." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4548,7 +4801,7 @@ msgstr "" "Dette farvetema bruger en gennemsigtig baggrund, som ikke lader til at være " "understøttet af din skrivebord" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4557,13 +4810,13 @@ msgstr "" "Konsole blev startet før skrivebordseffekter blev aktiveret. Du skal " "genstarte Konsole for at se gennemsigtig baggrund." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Standardprofil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4580,7 +4833,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4674,27 +4927,55 @@ msgstr "Vælg startmappe" msgid "Start in same directory as current session" msgstr "Start i samme mappe som nuværende session" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Start i samme mappe som nuværende session" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Miljø:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Redigér listen over miljøvariable og relaterede værdier" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" msgstr "Indledende størrelse på terminalen:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4707,7 +4988,7 @@ msgstr "" "deaktiveret for at disse indgange virker.

        " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4715,26 +4996,26 @@ msgid "&Terminal bell mode:" msgstr "Terminalemulator" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Text interaction" msgid "Semantic Integration" msgstr "Tekstinteraktion" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4744,9 +5025,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, fuzzy, kde-format #| msgctxt "@option:radio Never show the split header" #| msgid "Never" @@ -4759,9 +5040,9 @@ msgstr "Aldrig" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, fuzzy, kde-format #| msgid "Enable URL hints" msgctxt "When showing URL hints" @@ -4773,9 +5054,9 @@ msgstr "Aktivér URL-fremhævning" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -4784,26 +5065,26 @@ msgid "Always" msgstr "Altid" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Blur background" msgid "Red error background:" msgstr "Slør baggrund" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Blur background" msgid "Alternating background:" @@ -5155,51 +5436,94 @@ msgid "Scrollback:" msgstr "Tilbagerulning:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Page Up/Down-rulning:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Fremhæv linjer der bliver synlige" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Skjult" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Fremhævning:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rul siden halvdelen af vinduets højde" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half screen height" msgid "Half screen heigh&t" msgstr "Halv skærmhøjde" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rul siden hele vinduets højde" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full screen height" msgid "F&ull screen height" msgstr "Fuld skærmhøjde" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Placering af rullebjælken:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Vis rullebjælken i højre side af terminalvinduet" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the right side" #| msgid "Right side" @@ -5208,13 +5532,13 @@ msgid "Ri&ght side" msgstr "Højde side" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Vis rullebjælken i venstre side af terminalvinduet" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the left side" #| msgid "Left side" @@ -5222,53 +5546,22 @@ msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Venstre side" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Skjult" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Fremhævning:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Fremhæv linjer der bliver synlige" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Placering af rullebjælken:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5387,116 +5680,117 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Ingen" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Find..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Angiv teksten der skal søges efter her" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Næste" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Find næste match for det aktuelle søgeudtryk" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Forrige" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Find forrige match for det aktuelle søgeudtryk" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Vis indstillingsmenuen" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Luk søgelinjen" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Versalfølsom" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Angiver hvorvidt søgning er versalfølsom" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Vis indstillingsmenuen" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Luk søgelinjen" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Match regulært udtryk" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Fremhæv alle fund" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Angiver hvorvidt matchende tekst skal fremhæves" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Søg baglæns" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Angiver om søgningen skal starte fra bunden" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Angiver om søgningen skal starte fra bunden" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Søg efter det aktuelle søgeudtryk fra bunden" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5507,7 +5801,7 @@ msgstr "Søg efter det aktuelle søgeudtryk fra oven" msgid "Print Shell" msgstr "Udskriv skal" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "Do not show a close button" #| msgid "None" @@ -5551,6 +5845,13 @@ msgstr "Normalt format af fanebladstitel" msgid "Tab Co&lor:" msgstr "Fanebladsfarve:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Vælg &fanebladsfarve" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5647,14 +5948,22 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Luk terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&On each tab" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&På hvert faneblad" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Frigør faneblad" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:whatsthis" #| msgid "Close the active tab" @@ -5662,25 +5971,41 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Luk det aktive faneblad" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Frigør faneblad" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Omdøb faneblad..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Luk faneblad" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

        This warning will only show once for this Konsole instance.

        " +#~ msgstr "" +#~ "D-Bus-metoderne SendText/runCommand blev netop brugt. Der er " +#~ "sikkerhedsproblemstillinger ved at tillade disse metoder at være " +#~ "offentlige. Hvis det ønskes kan disse metoder ændres til kun intern brug " +#~ "ved at gen-oversætte Konsole fra kildekoden.

        Denne advarsel vil kun " +#~ "blive vist én gang for denne Konsole-instans.

        " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Versalfølsom" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Ingen" @@ -6263,9 +6588,6 @@ msgstr "Luk faneblad" #~ msgid "New" #~ msgstr "Ny" -#~ msgid "Select &Tab Color" -#~ msgstr "Vælg &fanebladsfarve" - #~ msgid "Enable transparent backgrounds" #~ msgstr "Aktivér gennemsigtige baggrunde" diff --git a/local/recipes/kde/konsole/source/po/de/konsole.po b/local/recipes/kde/konsole/source/po/de/konsole.po index 9d3042b985..440fd6450e 100644 --- a/local/recipes/kde/konsole/source/po/de/konsole.po +++ b/local/recipes/kde/konsole/source/po/de/konsole.po @@ -1,36 +1,37 @@ -# Thomas Diehl , 2002, 2003, 2004. -# Stephan Johach , 2004, 2005, 2006. -# Thomas Reitelbach , 2005, 2006, 2007, 2008, 2009. -# Burkhard Lück , 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021. -# Johannes Obermayr , 2010. -# Frederik Schwarzer , 2010, 2011, 2012, 2013, 2015, 2016, 2017, 2018, 2020, 2021, 2022, 2023. -# Panagiotis Papadopoulos , 2011. -# Frank Steinmetzger , 2016. -# Alois Spitzbart , 2022. +# SPDX-FileCopyrightText: 2002-2004 Thomas Diehl +# SPDX-FileCopyrightText: 2004-2006 Stephan Johach +# SPDX-FileCopyrightText: 2005-2009 Thomas Reitelbach +# SPDX-FileCopyrightText: 2008-2009, 2011-2021 Burkhard Lück +# SPDX-FileCopyrightText: 2010 Johannes Obermayr +# SPDX-FileCopyrightText: 2010-2013, 2015-2018, 2020-2023 Frederik Schwarzer +# SPDX-FileCopyrightText: 2011 Panagiotis Papadopoulos +# SPDX-FileCopyrightText: 2016, 2023-2026 Frank Steinmetzger +# SPDX-FileCopyrightText: 2022, 2025 Alois Spitzbart +# SPDX-FileCopyrightText: 2026 Philipp Kiemle msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2023-04-29 12:15+0200\n" -"Last-Translator: Frederik Schwarzer \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-05-26 23:36+0200\n" +"Last-Translator: Philipp Kiemle \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 22.07.70\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Deutsches KDE-Übersetzerteam,Thomas Reitelbach" +msgstr "Deutsches KDE-Übersetzungsteam" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "kde-i18n-de@kde.org,tr@erdfunkstelle.de" +msgstr "kde-i18n-de@kde.org" #. i18n: ectx: Menu (file) #: ../desktop/konsoleui.rc:6 @@ -54,7 +55,7 @@ msgstr "Ansicht" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Ansicht teilen" @@ -90,7 +91,7 @@ msgid "S&crollback" msgstr "&Verlauf" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Sitzungs-Werkzeugleiste" @@ -179,22 +180,34 @@ msgstr "Menüleiste entgegen der Voreinstellung ausblenden" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Alle Werkzeugleisten entgegen der Voreinstellung anzeigen" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Alle Werkzeugleisten entgegen der Voreinstellung ausblenden" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Unterfensterleiste entgegen der Voreinstellung anzeigen" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Unterfensterleiste entgegen der Voreinstellung ausblenden" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole im Vollbildmodus starten" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." @@ -202,13 +215,13 @@ msgstr "" "Keinen transparenten Hintergrund verwenden, auch wenn dies vom System " "unterstützt wird." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Die verfügbaren Profile anzeigen" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -216,13 +229,13 @@ msgstr "" "Die Namen aller Profil-Eigenschaften inklusive ihres Typs anzeigen (zur " "Verwendung mit -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Den Wert einer Profil-Eigenschaft ändern." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,7 +245,7 @@ msgstr "" "Auszuführender Befehl. Diese Option übernimmt alle folgenden Argumente. " "Daher sollte diese Option immer zuletzt angegeben werden." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -240,16 +253,16 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" "Wiederverwendung der bestehenden Instanz erzwingen, auch wenn es die " -"Funktionalität beeinträchtigt, z. B. --new-tab. Hauptsächlich zur " +"Funktionalität beeinträchtigt, z. B. --new-tab. Hauptsächlich zur " "Fehlersuche." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumente für Befehl" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -267,157 +280,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Vordergrund" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Hintergrund" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Farbe 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Farbe 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Farbe 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Farbe 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Farbe 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Farbe 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Farbe 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Farbe 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Vordergrund (kräftig)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Hintergrund (kräftig)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Farbe 1 (kräftig)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Farbe 2 (kräftig)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Farbe 3 (kräftig)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Farbe 4 (kräftig)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Farbe 5 (kräftig)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Farbe 6 (kräftig)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Farbe 7 (kräftig)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Farbe 8 (kräftig)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Vordergrund (blass)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Hintergrund (blass)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Farbe 1 (blass)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Farbe 2 (blass)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Farbe 3 (blass)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Farbe 4 (blass)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Farbe 5 (blass)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Farbe 6 (blass)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Farbe 7 (blass)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Farbe 8 (blass)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -577,7 +590,7 @@ msgstr "Das Hintergrundergrundbild auswählen" #: widgets/EditProfileGeneralPage.ui:186 #, kde-format msgid "..." -msgstr "..." +msgstr "…" #. i18n: ectx: property (text), widget (QLabel, wallpaperScalingLabel) #: colorscheme/ColorSchemeEditor.ui:165 @@ -672,7 +685,41 @@ msgstr "Oben" #: colorscheme/ColorSchemeViewDelegate.cpp:52 #, kde-format msgid "AaZz09..." -msgstr "AaZz09 ..." +msgstr "AaZz09 …" + +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Die Unterstützung für Container ist nicht verfügbar, wenn die Flatpak-" +"Version von Konsole ausgeführt wird." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [Standard]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" #: CopyInputDialog.cpp:30 #, kde-format @@ -699,11 +746,10 @@ msgid "Deselect All" msgstr "Nichts auswählen" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, fuzzy, kde-format -#| msgid "Preview:" +#, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" -msgstr "Vorschau:" +msgstr "Farbvorschau" #: filterHotSpots/FileFilterHotspot.cpp:158 #, kde-format @@ -720,7 +766,7 @@ msgstr "" msgid "Copy Location" msgstr "Adresse kopieren" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Vorschaubilder werden generiert" @@ -738,7 +784,7 @@ msgstr "Verknüpfungsadresse kopieren" #: filterHotSpots/UrlFilterHotspot.cpp:95 #, kde-format msgid "Send Email To..." -msgstr "E-Mail senden an ..." +msgstr "E-Mail senden an …" #: filterHotSpots/UrlFilterHotspot.cpp:97 #, kde-format @@ -751,13 +797,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Schriftart auswählen" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Alle Schriftarten anzeigen" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -798,17 +844,17 @@ msgstr "Tastenkombination" msgid "Output" msgstr "Ausgabe" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Neue Tasten-Zuordnungsliste" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Tasten-Zuordnungsliste bearbeiten" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -818,7 +864,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -852,67 +898,67 @@ msgstr "Eingabe:" msgid "Output:" msgstr "Ausgabe:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminal-Emulator" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" -msgstr "(c) 1997-2022 die Konsole-Entwickler" +msgstr "© 1997–2022 Die Konsole-Entwickler" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Allgemeiner Betreuer, Fehlerbereinigung und allgemeine Verbesserungen" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Vorheriger Betreuer, Portierung auf KDE 4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Ursprünglicher Autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" @@ -920,159 +966,159 @@ msgstr "" "Umfangreiche Überarbeitungen, Fehlerkorrekturen und wesentliche " "Verbesserungen" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Fehlerbereinigung und allgemeine Verbesserungen" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Fehlerbereinigung und wichtige Verbesserungen" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Allgemeine Verbesserungen" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Fehlerbereinigung" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-Unterstützung und Arbeit am Verlaufsspeicher" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Fehlerbereinigung und Verkürzung der Startzeit" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Grundlegende Verbesserungen" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1082,13 +1128,13 @@ msgstr "" "Einbettungsfähige Konsole\n" "Werkzeugleiste und Sitzungsnamen" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1096,25 +1142,25 @@ msgid "" "General improvements" msgstr "Einbettungsfähige Konsole, allgemeine Verbesserungen" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Optische Effekte" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1122,132 +1168,132 @@ msgid "" "General improvements" msgstr "Code aus dem kvt-Projekt, allgemeine Verbesserungen" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Farbschema- und Verbesserungen bei der Auswahlfunktion" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-Portierung" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-Portierung" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Der Dank geht noch an viele weitere!\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Neues Unterfenster" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" -msgstr "&Unterfenster duplizieren" +msgstr "Unterfenster &duplizieren" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Neues &Fenster" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Fenster schließen" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Lesezeichen" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Fenster-Farbschema" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." -msgstr "Profile verwalten ..." +msgstr "Profile verwalten …" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Menü aktivieren" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." -msgstr "Unterfenster-Layout speichern ..." +msgstr "Unterfenster-Layout speichern …" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." -msgstr "Unterfenster-Layout laden ..." +msgstr "Unterfenster-Layout laden …" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1260,25 +1306,25 @@ msgstr[1] "" "In diesem Fenster werden noch %1 Prozesse ausgeführt. Möchten Sie dennoch " "beenden?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Schließen bestätigen" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Fenster schließen" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "A&ktuelles Unterfenster schließen" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" @@ -1286,43 +1332,43 @@ msgstr "" "In diesem Fenster gibt es noch %1 geöffnete Terminals. Möchten Sie dennoch " "beenden?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profile" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Allgemein" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" -msgstr "" +msgstr "Speicher" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Unterfensterleiste / Geteilte Ansicht" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Temporäre Dateien" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Vorschaubilder" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1345,7 +1391,7 @@ msgstr "Kurzbefehl:" #: plugins/QuickCommands/qcwidget.ui:52 plugins/SSHManager/sshwidget.ui:33 #, kde-format msgid "Filter..." -msgstr "Filter ..." +msgstr "Filter …" #. i18n: ectx: property (text), widget (QCheckBox, invertFilter) #. i18n: ectx: property (text), widget (QCheckBox, btnInvertFilter) @@ -1406,7 +1452,7 @@ msgstr "Speichern" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Aktualisieren" @@ -1418,27 +1464,29 @@ msgid "Cancel" msgstr "Abbrechen" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Schnellbefehle" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Schnellzugriff anzeigen" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" +"Keine Schnellbefehle gefunden. Sie können neue in Module → Schnellbefehle " +"hinzufügen" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" -msgstr "Module - Schnellbefehle" +msgstr "Module – Schnellbefehle" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Schnellbefehle anzeigen" @@ -1458,7 +1506,7 @@ msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:215 #, kde-format msgid "There are some errors on the script, do you really want to run it?" -msgstr "Das Skript weist einige Fehler auf, wollen Sie es wirklich ausführen?" +msgstr "Das Skript weist einige Fehler auf, möchten Sie es wirklich ausführen?" #: plugins/QuickCommands/quickcommandswidget.cpp:216 #, kde-format @@ -1481,7 +1529,7 @@ msgstr "" "mit mehreren Konfigurationen zu löschen, sind Sie sicher?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Sie sind dabei, %1 zu löschen, sind Sie sicher?" @@ -1534,11 +1582,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 ist ein Ordner für SSH-Einträge" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH-Konfiguration" @@ -1561,17 +1609,19 @@ msgstr "SSH-Verwaltung anzeigen" #: plugins/SSHManager/sshmanagerplugin.cpp:115 #, kde-format msgid "Show Quick Access for SSH Actions" -msgstr "" +msgstr "Schnellzugriff für SSH-Aktionen anzeigen" #: plugins/SSHManager/sshmanagerplugin.cpp:146 #, kde-format msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" msgstr "" +"Keine gespeicherte SSH-Konfiguration gefunden. Sie können eine unter Module " +"→ SSH-Verwaltung hinzufügen." #: plugins/SSHManager/sshmanagerplugin.cpp:147 #, kde-format msgid "Plugins - SSH Manager" -msgstr "Module - SSH-Verwaltung" +msgstr "Module – SSH-Verwaltung" #: plugins/SSHManager/sshmanagerplugin.cpp:153 #, kde-format @@ -1597,28 +1647,28 @@ msgstr "Fehler beim Ausführen des SSH-Befehls" msgid "" "Can't issue SSH command outside the shell application (eg, bash, zsh, sh)" msgstr "" -"SSH-Befehl kann nicht außerhalb der Shell-Anwendung (z. B. bash, zsh, sh) " +"SSH-Befehl kann nicht außerhalb der Shell-Anwendung (z. B. bash, zsh, sh) " "ausgeführt werden" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH-Schlüssel" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Löschen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Nicht ändern" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1627,70 +1677,70 @@ msgstr "" "Sie sind dabei, den Ordner %1 mit mehreren SSH-Konfigurationen zu löschen, " "sind Sie sicher?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH-Konfigurationen entfernen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
        Some settings are read only." -msgstr "" +msgstr "Importiertes SSH-Profil
        Einige Einstellungen sind unveränderlich." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Fehlender Rechnername" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Fehlender Name" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Wenn ~/.ssh/config verwenden eingestellt ist, geben Sie weder SSH-Schlüssel " "noch Benutzername an." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Mindestens ein Benutzername oder ein SSH-Schlüssel ist erforderlich" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Fehlender Ordner" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Eine SSH-Sitzung muss ein Profil haben" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Löschen von diesem Ordner ist nicht möglich" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Ordner und seinen Inhalt löschen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Doppelklicken Sie, um den Ordnernamen zu ändern." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Sie können einen automatisch hinzugefügten Eintrag nicht löschen." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Ausgewählten Eintrag löschen" @@ -1711,7 +1761,7 @@ msgstr "Einträge anzeigen, die nicht mit dem Filter übereinstimmen" #: plugins/SSHManager/sshwidget.ui:57 #, kde-format msgid "Change profile on connect/disconnect" -msgstr "" +msgstr "Profil bei Verbindungsauf- und -abbau wechseln" #. i18n: ectx: property (text), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:60 @@ -1883,36 +1933,34 @@ msgstr "Optionen für die Ausgabe" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Druck&freundlicher Modus (schwarzer Text ohne Hintergrund)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Ausgabe &skalieren" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" -msgstr "" +msgstr "Integriert" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standardprofil" #: profile/ProfileManager.cpp:280 -#, fuzzy, kde-format -#| msgctxt "The default name of a profile" -#| msgid "Profile #%1" +#, kde-format msgctxt "New profile name, %1 is a number" msgid "Profile %1" -msgstr "Profil #%1" +msgstr "Profil %1" #: profile/ProfileManager.cpp:294 #, kde-format @@ -1949,7 +1997,7 @@ msgstr " [Standard]" #, kde-format msgctxt "@info:tooltip" msgid "Built-in profile is always available" -msgstr "Eingebautes Profil ist immer verfügbar" +msgstr "Integriertes Profil ist immer verfügbar" #: profile/ProfileModel.cpp:111 #, kde-format @@ -1962,17 +2010,43 @@ msgstr "Doppelklicken Sie, um den Kurzbefehl zu ändern" msgid "Tab Properties" msgstr "Unterfenster-Eigenschaften" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Ausgabe von %1 speichern" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "Ungültige Adresse: %1. Die Ausgabe kann nicht gespeichert werden." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Autospeichern-Datei %1 kann nicht angelegt werden." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Automatisches Speichern ausgesetzt aufgrund von Bildschirmwechsel." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Die Autospeichern-Datei wurde von außen verändert, was weiteres " +"automatisches Speichern verhindert." + +# Allgemeine Frage: weiß jemand, wie das entstanden ist, dass wir „kann nicht“ bei Fehlermeldungen benutzen? In diesem Fall klingt es irreführenderweise wie eine generelle Aussage als wie die Meldung nach einem aufgetretenen Fehler. +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Der Autospeichern-Zustand konnte nach geänderter Ausgabe nicht aktualisiert " +"werden." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2008,81 +2082,99 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Dunkle Pastelltöne" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Grün auf Schwarz" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-Farben" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rot auf Schwarz" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarisiert" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarisiert hell" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Weiß auf Schwarz" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standard (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-Konsole" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-Konsole" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Suchen …" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" +"Geben Sie hier einen Unterfensternamen ein, nach dem gesucht werden soll" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Signalton in „%1“ (Sitzung „%2“)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Programmdatei kann nicht gefunden werden: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Achtung: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Es kann keine interaktive Shell gefunden und gestartet werden." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2091,345 +2183,341 @@ msgstr "" "„%1“ kann nicht gefunden werden, stattdessen wird „%2“ gestartet. Prüfen Sie " "bitte die Einstellungen des Profils." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Das Programm „%1“ mit den Argumenten „%2“ kann nicht gestartet werden." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Keine Aktivität in „%1“ (Sitzung „%2“)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Sitzung anzeigen" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

        This " -"warning will only show once for this Konsole instance.

        " -msgstr "" -"Die D-Bus-Methoden sendText/runCommand wurden soeben benutzt. Diese Methoden " -"öffentlich nutzen zu können ruft Sicherheitsbedenken hervor. Sie können bei " -"Bedarf auf interne Verwendung beschränkt werden, indem Konsole neu " -"kompiliert wird.

        Diese Warnung wird nur einmal in dieser Konsole-Sitzung " -"angezeigt.

        " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Beendet" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Das Programm „%1“ ist abgestürzt." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Das Programm „%1“ wurde mit Status %2 beendet." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-Fortschritt" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivität in „%1“ (Sitzung „%2“)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"Die sicherheitsrelevanten Teile der D-Bus-Schnittstelle sind in den " +"Einstellungen deaktiviert." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Der Prozess „%1“ in der Sitzung „%2“ wurde beendet" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole kann das Lesezeichen nicht öffnen: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Nach „%1“ suchen mit" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." -msgstr "Web-Kurzbefehle festlegen ..." +msgstr "Web-Kurzbefehle einrichten …" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Sitzung schl&ießen" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Dateiverwaltung öffnen" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopieren" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Ansicht Links/Rechts teilen" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Ansicht Oben/Unten teilen" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopieren ohne Eingabeaufforderungen" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Benutzereingabe kopieren" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Befehlsausgabe kopieren" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Auswahl einfügen" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Web-Suche" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Alles au&swählen" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Auswahl&modus" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Zei&le auswählen" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." -msgstr "Ausgabe speichern &als ..." +msgstr "Ausgabe speichern &unter …" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Ausgabe automatisch speichern unter …" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Automatisches Speichern anhalten" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." -msgstr "&Bildschirm drucken ..." +msgstr "&Bildschirm drucken …" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." -msgstr "Verlaufsspeicher anpassen ..." +msgstr "Verlaufsspeicher anpassen …" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Verlaufsspeicher leeren" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Verlaufspeicher leeren und zurücksetzen" -#: session/SessionController.cpp:757 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:795 +#, kde-format msgid "Next Profile" -msgstr "Profil bearbeiten" +msgstr "Nächstes Profil" -#: session/SessionController.cpp:762 -#, fuzzy, kde-format -#| msgid "Previous View" +#: session/SessionController.cpp:800 +#, kde-format msgid "Previous Profile" -msgstr "Vorheriges Unterfenster" +msgstr "Vorheriges Profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "&Profil wechseln" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Kodierung festlegen" -#: session/SessionController.cpp:812 -#, fuzzy, kde-format -#| msgctxt "" -#| "@item:inmenu Allows terminal applications to request mouse tracking" -#| msgid "Allow mouse tracking" +#: session/SessionController.cpp:848 +#, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Mausverfolgung zulassen" -#: session/SessionController.cpp:821 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu A read only (locked) session" -#| msgid "Read-only" +#: session/SessionController.cpp:857 +#, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Nur lesen" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." -msgstr "Unterfenster einrichten oder &umbenennen ..." +msgstr "Unterfenster einrichten oder &umbenennen …" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Alle Unterfenster im aktuellen Fenster" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." -msgstr "Unterfenster &auswählen ..." +msgstr "Unterfenster &auswählen …" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Keine" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Eingabe kopieren nach" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." -msgstr "&ZModem-Upload ..." +msgstr "&ZModem-Upload …" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" -msgstr "" +msgstr "Einmalige Überwachung" -#: session/SessionController.cpp:877 -#, fuzzy, kde-format -#| msgid "Monitor for &Activity" +#: session/SessionController.cpp:913 +#, kde-format msgid "Monitor for &Prompt" -msgstr "Auf A&ktivität überwachen" +msgstr "Auf &Eingabeaufforderung überwachen" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Auf A&ktivität überwachen" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Auf &Inaktivität überwachen" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Auf Prozessende überwachen" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Schrift vergrößern" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Schrift verkleinern" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Schriftgröße zurücksetzen" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Signal senden" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Aufgabe au&ssetzen" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Auf&gabe fortsetzen" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Auf&legen" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Aufgabe &unterbrechen" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Aufgabe &beenden" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Auf&gabe abbrechen" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Benutzer-Signal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Benutzer-Signal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." -msgstr "Neues Profil erstellen ..." +msgstr "Neues Profil erstellen …" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." -msgstr "Aktuelles Profil bearbeiten ..." +msgstr "Aktuelles Profil bearbeiten …" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2438,7 +2526,7 @@ msgstr "" "In dieser Sitzung läuft gerade ein Programm. Sind Sie sicher, dass sie " "geschlossen werden soll?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2447,18 +2535,18 @@ msgstr "" "In dieser Sitzung läuft gerade das Programm „%1“. Sind Sie sicher, dass sie " "geschlossen werden soll?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Schließen bestätigen" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Programm schließen" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2467,37 +2555,37 @@ msgstr "" "Ein Programm in dieser Sitzung kann nicht beendet werden. Sind Sie sicher, " "dass Sie das Beenden erzwingen möchten?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Das Programm „%1“ in dieser Sitzung kann nicht beendet werden. Sind Sie " "sicher, dass Sie das Beenden erzwingen möchten?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" -msgstr "Programm abschießen" +msgstr "Beenden erzwingen" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "" +msgstr "Die Eingabeaufforderung wird in Sitzung „%1“ angezeigt" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Aktuellen Ordner öffnen mit" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." -msgstr "ZModem-Download speichern unter ..." +msgstr "ZModem-Download speichern unter …" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

        A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2508,13 +2596,13 @@ msgstr "" "System keine ZModem-Software gefunden werden.

        Sie sollten versuchen, " "die Software „rzsz“ oder „lrzsz“ zu installieren.

        " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

        The current session already has a ZModem file transfer in progress.

        " msgstr "

        In der aktuellen Sitzung läuft bereits eine ZModem-Übertragung.

        " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

        No suitable ZModem software was found on this system.

        You may wish " @@ -2523,7 +2611,7 @@ msgstr "" "

        Auf Ihrem System kann keine passende ZModem-Software gefunden werden.

        Versuchen Sie, „rzsz“ oder „lrzsz“ zu installieren.

        " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Wählen Sie Dateien für den ZModem-Upload" @@ -2546,145 +2634,172 @@ msgctxt "@title:window" msgid "Configure" msgstr "Einrichten" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Suchen:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Kurzbefehle im Menü aktivieren" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" -"Ist diese Einstellung aktiv, werden die Einstellungen des Profils ignoriert." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Fenstergröße speichern" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Fenstertitel in der Titelleiste anzeigen" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Terminals aktivieren, wenn sich der Mauszeiger über ihnen befindet" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Regulären Ausdruck für Übereinstimmung verwenden" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Beim Start von Konsole vorhandene Prozesse verwenden, falls möglich" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Alle Konsole-Fenster in einem einzigen Prozess laufen lassen" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Alle Treffer hervorheben" +msgid "If enabled, profile settings will be ignored" +msgstr "" +"Ist diese Einstellung aktiv, werden die Einstellungen des Profils ignoriert." -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Legt fest, ob die Suche Groß-/Kleinschreibung beachten soll" +msgid "Remember window size" +msgstr "Fenstergröße speichern" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Groß-/Kleinschreibung beachten" +msgid "Force new tabs" +msgstr "Neue Unterfenster erzwingen" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Titelleiste und Rahmen des Fensters entfernen" +msgid "Listen for ZModem terminal codes" +msgstr "Auf ZModem-Terminalcodes lauschen" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Prozess und Fenster:" +msgid "Show progress in taskbar" +msgstr "Fortschritt in Taskleiste anzeigen" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Benachrichtigungen:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Alle Dialoge werden wieder angezeigt" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Alle „Diese Nachfrage nicht mehr anzeigen“-Meldungen aktivieren" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Legt fest, ob die Suche von unten beginnen soll" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Rückwärts suchen" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Legt fest, ob die Suche Groß-/Kleinschreibung beachten soll" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Groß-/Kleinschreibung beachten" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Prozess und Fenster:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Alle Treffer hervorheben" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Suchen:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format msgid "Sets whether search should stop instead of wrapping" -msgstr "Legt fest, ob die Suche von unten beginnen soll" +msgstr "" +"Legt fest, ob die Suche beendet und nicht am anderen Ende fortgesetzt werden " +"soll" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" -msgstr "" +msgstr "Nicht fortsetzen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Kurzbefehle im Menü aktivieren" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Terminals aktivieren, wenn sich der Mauszeiger über ihnen befindet" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Alle Dialoge werden wieder angezeigt" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Alle „Diese Nachfrage nicht mehr anzeigen“-Meldungen aktivieren" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Fenstertitel in der Titelleiste anzeigen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Die sicherheitsrelevanten Teile der D-Bus-Schnittstelle aktivieren" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Titelleiste und Rahmen des Fensters entfernen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Regulären Ausdruck für Übereinstimmung verwenden" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 @@ -2714,115 +2829,157 @@ msgstr "Aktuelle Fenstergröße beim nächsten Start verwenden" msgid "The window size will be saved upon exiting Konsole" msgstr "Speichert die Fenstergröße beim Beenden von Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Beim Start von Konsole ein neues Unterfenster statt eines neuen Fensters " +"öffnen, falls möglich" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Fortschritt in Taskleiste anzeigen" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Wenn ein Skript eine Fortschrittsmeldung sendet, wird diese in der " +"Taskleiste angezeigt" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "D-Bus-Schnittstelle (z. B. „runCommand“) wird aktiviert" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Auf ZModem-Terminalcodes lauschen" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Dateien über serielle Verbindungen automatisch senden/empfangen" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Vorschaubreite" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Legt die Breite der Vorschau fest" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Verwendet die Umschalttaste, um eine Vorschau anzuzeigen" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Verwendet die Alt-Taste, um eine Vorschau anzuzeigen" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Verwendet die Strg-Taste, um eine Vorschau anzuzeigen" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Suche beachtet Groß-/Kleinschreibung" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Alle gefundenen Treffer hervorheben" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Legt fest, ob der gefundene Text hervorgehoben werden soll" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Suche wird beendet und nicht am anderen Ende fortgesetzt" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" -msgstr "" +msgstr "Legt fest, ob Kind-CGroups für einzelne Unterfenster erzeugt werden" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" -msgstr "" +msgstr "Legt den Speicherverbrauch fest, ab welchem eine Begrenzung einsetzt" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Steuert die Anzeige der gesamten Unterfensterleiste" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Steuert die Größe des Griffes zwischen den Fenstern" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Steuert die Position der Unterfensterleiste" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Steuert den Anzeigestil der Unterfensterleiste" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Benutzerdefinierte „.css“-Datei für Unterfensterleiste verwenden" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Die „.css“-Datei für den Stil der Unterfensterleiste" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" @@ -2830,15 +2987,23 @@ msgstr "" "Schließen verwenden" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" -"Steuert die Anzeige des Knopfs »Neues Unterfenster“ auf der " +"Steuert die Anzeige des Knopfs „Neues Unterfenster“ auf der " +"Unterfensterleiste" + +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Steuert die Anzeige des Knopfs „Unterfenster suchen“ auf der " "Unterfensterleiste" #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" @@ -2846,72 +3011,75 @@ msgstr "" "Unterfensterleiste" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Legt fest, wo das neue Unterfenster eingefügt wird" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Breite der Unterfenster erweitern" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "System-Speicherort für Verlaufsdateien verwenden" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Benutzer-Speicherort für Verlaufsdateien verwenden" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Angegebenen Speicherort für Verlaufsdateien verwenden" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Diesen Ordner für Verlaufsdateien verwenden" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 -#, fuzzy, kde-format -#| msgid "Tab Monitoring" +#, kde-format msgid "Enable memory monitoring:" -msgstr "Überwachung der Unterfenster" +msgstr "Speicherüberwachung aktivieren:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" +"Änderungen werden nach dem Neustart aktiv. Wenn aktiviert, führt eine " +"dauerhafte Speicherbelegung durch Konsole oberhalb des angegebenen Wertes " +"dazu, dass „systemd-oomd“ das oder die Unterfenster mit den " +"speicherintensiven Prozessen schließt. Hinweis: Eine Aktivierung kann zu " +"einer Verlangsamung bei hoher Speicherauslastung führen. Das Einstellen " +"eines sehr niedrigen Wertes kann immer noch zum Beenden von Konsole führen." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" -msgstr "" +msgstr "Speichergrenze:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" -msgstr "" +msgstr " MB" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/PartInfo.ui:17 @@ -2924,7 +3092,7 @@ msgid "" "format=guided&product=konsole&component=kpart\">bug report if you desire " "a change to how these are handled." msgstr "" -"

        Programme, die KonsolePart benutzen, verwenden " +"

        Programme, die KonsolePart verwenden, nutzen " "gemeinsame Profile.

        Eigene Einstellungen werden verwendet für:" "

        • Standardprofil
        • Anzeige im Menü
        • Kurzbefehle
        • Schreiben Sie einen

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Um diese Funktion zu verwenden, aktivieren Sie Maus->Verschiedenes->Dateien unterstreichen in Ihren " -"Profileinstellungen

          " +"style=\" font-weight:600;\">Maus → Verschiedenes → Dateien unterstreichen in Ihren Profileinstellungen.

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3287,64 +3469,68 @@ msgstr "Strg" msgid "Enable thumbnails generation" msgstr "Vorschaubilderstellung aktivieren" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Größe: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Möchten Sie wirklich %1 Zeichen einfügen?" msgstr[1] "Möchten Sie wirklich %1 Zeichen einfügen?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Einfügen bestätigen" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" +"Textende/Unterbrechung (End Of Text/Interrupt): Kann den aktuellen Prozess " +"beenden" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" +"Ende der Übertragung (End Of Transmission): Kann den aktuellen Prozess " +"beenden" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Signalton: versucht, eine akustische Warnung abzugeben" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Rücktaste" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Gerätekontrollzeichen 3/XOFF: Ausgabe aussetzen" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Ersatz/Aussetzen: kann den laufenden Prozess aussetzen" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Esc: für die Steuerung des Terminalstatus verwendet" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Datei-Trennzeichen/Beenden: kann den aktuellen Prozess abbrechen" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3353,31 +3539,31 @@ msgstr "" "Der Text, den Sie einfügen möchten, enthält ausgeblendete Kontrollzeichen, " "möchten Sie sie ausfiltern?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Einfügen bestätigen" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "&Ohne Kontrollzeichen einfügen" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Alles einfügen" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Abbrechen" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
          angehalten worden. Drücken Sie Strg+Q, um fortzufahren." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Dieses Terminal ist schreibgeschützt." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Ordner &wechseln zu" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Speicherort &einfügen" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Ansicht teilen" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Ansicht Links/Rechts teilen" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Ansicht Oben/Unten teilen" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Ansicht automatisch teilen" -#: ViewManager.cpp:153 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: ViewManager.cpp:157 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" -msgstr "Ansicht Links/Rechts teilen" +msgstr "Ansicht Links/Rechts teilen von nächstem Unterfenster" -#: ViewManager.cpp:161 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:165 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" -msgstr "Ansicht Oben/Unten teilen" +msgstr "Ansicht Oben/Unten teilen von nächsten Unterfenster" -#: ViewManager.cpp:169 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Automatically" +#: ViewManager.cpp:173 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" -msgstr "Ansicht automatisch teilen" +msgstr "Ansicht automatisch teilen von nächstem Unterfenster" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Neues Unterfenster mit 2x2 Terminals laden" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Neues Unterfenster mit 2x1 Terminals laden" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Neues Unterfenster mit 1x2 Terminals laden" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Ansicht vergrößern" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Ansicht verkleinern" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "A&ktuelle Ansicht verselbständigen" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "A&ktuelles Unterfenster verselbständigen" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Nächstes Unterfenster" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Vorheriges Unterfenster" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Terminal oben aktivieren" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Terminal unten aktivieren" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Linkes Terminal aktivieren" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Rechtes Terminal aktivieren" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Nächstes Terminal aktivieren" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Vorheriges Terminal aktivieren" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Zum letzten Unterfenster wechseln" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Zuletzt verwendete Unterfenster" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Umschalten zwischen zwei Unterfenstern" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Zuletzt verwendete Unterfenster (rückwärts)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Maximieren der aktuellen Ansicht umschalten" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Maximieren der aktuellen Ansicht umschalten" -#: ViewManager.cpp:311 -#, fuzzy, kde-format -#| msgctxt "@action Shortcut entry" -#| msgid "Toggle maximize current view" +#: ViewManager.cpp:327 +#, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Maximieren der aktuellen Ansicht umschalten" -#: ViewManager.cpp:312 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Toggle maximize current view" +#: ViewManager.cpp:328 +#, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Maximieren der aktuellen Ansicht umschalten" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Unterfenster nach rechts verschieben" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Unterfenster nach links verschieben" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Semantische Integration einrichten (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Anzeige von semantischen Hinweise ein-/ausschalten" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Anzeige von Zeilennummern ein-/ausschalten" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Gleiche Größe bei allen Ansichten einstellen" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Zu Unterfenster „%1“ wechseln" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantische Hinweise " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Zeilennummern " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Unterfenster-Layout speichern" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole-Ansichtslayout (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3655,7 +3843,7 @@ msgstr "" "Beim Speichern des Layouts ist ein Fehler aufgetreten.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3665,13 +3853,13 @@ msgstr "" "Beim Laden des Layouts ist ein Fehler aufgetreten.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Unterfenster-Layout laden" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3762,10 +3950,9 @@ msgstr "Flusskontrolle" #. i18n: ectx: property (text), widget (QLabel, label_14) #: widgets/EditProfileAdvancedPage.ui:222 -#, fuzzy, kde-format -#| msgid "Default character encoding:" +#, kde-format msgid "&Default character encoding:" -msgstr "Standard-Zeichenkodierung:" +msgstr "&Standard-Zeichenkodierung:" #. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) #: widgets/EditProfileAdvancedPage.ui:242 @@ -3773,38 +3960,44 @@ msgstr "Standard-Zeichenkodierung:" msgid "Shortcut for peeking the primary screen:" msgstr "Kurzbefehl für das Anzeigen des primären Bildschirms:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 -#, fuzzy, kde-format -#| msgid "Line numbers " +#, kde-format +msgid "Set interval between autosaves:" +msgstr "Intervall für automatische Speicherung einstellen:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" -msgstr "Zeilennummern " +msgstr "Zeilennummern:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 -#, fuzzy, kde-format -#| msgid "&Never" +#: widgets/EditProfileAdvancedPage.ui:285 +#, kde-format msgctxt "Never" msgid "&Never" msgstr "&Niemals" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 -#, fuzzy, kde-format -#| msgctxt "When showing URL hints" -#| msgid "When URL hints show" +#: widgets/EditProfileAdvancedPage.ui:295 +#, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" -msgstr "Wenn URL-Hinweise angezeigt werden" +msgstr "Wenn &URL-Hinweise angezeigt werden" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 -#, fuzzy, kde-format -#| msgctxt "Always" -#| msgid "Always" +#: widgets/EditProfileAdvancedPage.ui:305 +#, kde-format msgctxt "Always" msgid "A&lways" -msgstr "Immer" +msgstr "&Immer" #. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) #: widgets/EditProfileAppearancePage.ui:36 @@ -3823,7 +4016,7 @@ msgstr "Ein neues Farbschema basierend auf dem ausgewählten erzeugen" #, kde-format msgctxt "@action:button Create an alternate color scheme" msgid "New..." -msgstr "Neu ..." +msgstr "Neu …" #. i18n: ectx: property (toolTip), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:79 @@ -3836,11 +4029,11 @@ msgstr "Das ausgewählte Farbschema bearbeiten" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." -msgstr "Bearbeiten ..." +msgstr "Bearbeiten …" #. i18n: ectx: property (toolTip), widget (QPushButton, removeColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:89 @@ -3873,7 +4066,7 @@ msgstr "Schriftart:" #, kde-format msgctxt "@action:button open a dialog with list of fonts" msgid "Choose..." -msgstr "Auswählen ..." +msgstr "Auswählen …" #. i18n: ectx: property (text), widget (QCheckBox, antialiasTextButton) #: widgets/EditProfileAppearancePage.ui:174 @@ -3890,33 +4083,38 @@ msgstr "Kräftige Farben in Fettschrift ausgeben" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" -"Ausgewählte Schrift anstatt des eingebauten Codes für Zeilenzeichen verwenden" +"Ausgewählte Schrift anstatt des integrierten Codes für Linienzeichen " +"verwenden" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Zeilenzeichen aus Schrift verwenden" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 -#, fuzzy, kde-format -#| msgid "" -#| "Use the selected font for line characters instead of the builtin code" +#, kde-format msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" msgstr "" -"Ausgewählte Schrift anstatt des eingebauten Codes für Zeilenzeichen verwenden" +"Ausgewählte Schrift anstatt des integrierten Codes für Unicode-" +"Braillezeichen verwenden" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 -#, fuzzy, kde-format -#| msgid "Use line characters contained in font" +#, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "Zeilenzeichen aus Schrift verwenden" +msgstr "Unicode-Braillezeichen aus Schrift verwenden" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -3992,7 +4190,7 @@ msgstr "Cursor:" #: widgets/EditProfileAppearancePage.ui:373 #, kde-format msgid "Select the color used to draw the cursor" -msgstr "Wählen Sie die Farbe für den Cursor" +msgstr "Die Farbe für den Cursor auswählen" #. i18n: ectx: property (text), widget (QLabel, customCursorTextColorLabel) #: widgets/EditProfileAppearancePage.ui:393 @@ -4004,7 +4202,7 @@ msgstr "Text:" #: widgets/EditProfileAppearancePage.ui:406 #, kde-format msgid "Select the color used to draw the character underneath the cursor" -msgstr "Wählen Sie die Farbe für das Zeichen unter dem Cursor" +msgstr "Die Farbe für das Zeichen unter dem Cursor auswählen" #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/EditProfileAppearancePage.ui:431 @@ -4019,29 +4217,43 @@ msgid "Make the cursor blink regularly" msgstr "Lässt den Cursor regelmäßig blinken" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Aktiviert" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animation:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Den Cursor flüssig animieren" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Verschiedenes" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Fenster:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4051,195 +4263,190 @@ msgstr "" "im Fenster anzeigen" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Hinweis zur Größe des Terminals nach einer Größenänderung anzeigen" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Die Farben des markierten Textes immer invertieren" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Abdunkelungsstärke:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 -#, fuzzy, kde-format -#| msgctxt "Cursor color options" -#| msgid "Color:" +#: widgets/EditProfileAppearancePage.ui:569 +#, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Farbe:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 -#, fuzzy, kde-format -#| msgid "Select the color used to draw the cursor" +#: widgets/EditProfileAppearancePage.ui:585 +#, kde-format msgid "Select the color used to draw the border" -msgstr "Wählen Sie die Farbe für den Cursor" +msgstr "Wählen Sie die Farbe für den Rand" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Inaktive Terminals:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 -#, fuzzy, kde-format -#| msgid "Inactive Terminals:" +#: widgets/EditProfileAppearancePage.ui:617 +#, kde-format msgid "Active Terminals:" -msgstr "Inaktive Terminals:" +msgstr "Aktive Terminals:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminal-Inhalte" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Zeilenabstand:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Die Anzahl der Pixel zwischen zwei Zeilen" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Ränder:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Zentriert ausrichten" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Zeigt durch Abdunkeln der Farben an, ob das Fenster aktiv ist" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Abdunkeln" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 -#, fuzzy, kde-format -#| msgid "Indicate whether the window is active by dimming the colors" +#: widgets/EditProfileAppearancePage.ui:779 +#, kde-format msgid "Indicate whether the window is active by drawing a border" -msgstr "Zeigt durch Abdunkeln der Farben an, ob das Fenster aktiv ist" +msgstr "Zeigt durch Zeichnen einer Umrandung an, ob das Fenster aktiv ist" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" -msgstr "" +msgstr "Umrandung" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Vertikale Linie anzeigen in Spalte:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Komplexes Text-Layout

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Komplexes Text-Layout" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 -#, fuzzy, kde-format -#| msgid "Bi-Directional text rendering" +#: widgets/EditProfileAppearancePage.ui:887 +#, kde-format msgid "Enable word mode text rendering" -msgstr "Bi-Direktionale Anzeige von Schriften" +msgstr "Textdarstellung im Wortmodus aktivieren" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" -msgstr "" +msgstr "Wortmodus" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " "when rendering)" msgstr "" +"Attributänderungen innerhalb eines Wortes ignorieren (andernfalls werden " +"Wörter an Attributänderungen aufgetrennt)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" -msgstr "" +msgstr "Dieselben Attribute über ganze Wörter verwenden" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" -msgstr "" +msgstr "Wörter aus ASCII-Zeichen zusammen darstellen" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " -msgstr "ASCII-Zeichen" +msgstr "ASCII-Zeichen " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" -msgstr "" +msgstr "Wörter aus Zeichen von Brahmi-Schriften zusammen darstellen" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 -#, fuzzy, kde-format -#| msgid "Match current character" +#: widgets/EditProfileAppearancePage.ui:938 +#, kde-format msgid "Brahmic scripts characters" -msgstr "Der aktuellen Zeichenfarbe anpassen" +msgstr "Zeichen von Brahmi-Schriften" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji-Schriftart:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4249,97 +4456,95 @@ msgstr "" "mit Arabisch, Persisch und Hebräisch möglich)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" -msgstr "Bi-Direktionale Anzeige von Schriften" +msgstr "Bidirektionale Anzeige von Schriften" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "Zeilen sind immer LTR, statt durch das erste starke Zeichen bestimmt" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "LTR-Zeilenrichtung erzwingen" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." -msgstr "" +msgstr "Tabellenzeichen als stark LTR behandeln." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" -msgstr "" +msgstr "Bidirektionalen Modus für Tabellenzeichen übergehen" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 -#, fuzzy, kde-format -#| msgctxt "@action:button" -#| msgid "Paste &without control characters" +#: widgets/EditProfileAppearancePage.ui:1025 +#, kde-format msgid "Ignore wcwidth of problematic characters" -msgstr "&Ohne Kontrollzeichen einfügen" +msgstr "wcwidth bei problematischen Zeichen ignorieren" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" -msgstr "" +msgstr "wcwidth übergehen" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profil bearbeiten" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Allgemein" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Unterfenster" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Erscheinungsbild" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Bildlaufleiste" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatur" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Tasten-Zuordnungen" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Maus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Erweitert" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4352,7 +4557,7 @@ msgstr "" "oder geben Sie einen anderen Namen an, um die Einstellungen in einem neuen " "Profil zu speichern." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4360,42 +4565,47 @@ msgstr "" "Der Name des Profils ist leer. Bitte geben Sie einen Namen ein, damit die " "Einstellungen gespeichert werden können." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Ein Profil mit dem Namen „%1“ existiert bereits." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." -msgstr "" +msgstr "Der Profilname überschreitet die maximale Länge (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." -msgstr "" +msgstr "Die hervorgehobenen Zeichen sind in Profilnamen nicht erlaubt: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Bearbeiten von Profil: %2" msgstr[1] "Bearbeiten von %1 Profilen: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Neues Profil erstellen" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Profil „%1“ bearbeiten" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Kein" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4405,7 +4615,7 @@ msgid_plural " columns" msgstr[0] " Spalte" msgstr[1] " Spalten" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4415,42 +4625,42 @@ msgid_plural " rows" msgstr[0] " Zeile" msgstr[1] " Zeilen" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Signalton des Systems" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Systembenachrichtigungen" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Sichtbares Signal" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Signalton-Ereignisse ignorieren" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Standardprofil für neue Terminalsitzungen in %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Umgebungsvariablen bearbeiten" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Eine Umgebungsvariable je Zeile" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4458,23 +4668,23 @@ msgid_plural " seconds" msgstr[0] " Sekunde" msgstr[1] " Sekunden" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Wählen Sie den Startordner" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." -msgstr "Neues Schema holen ..." +msgstr "Neues Schema holen …" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Das Schema %1 kann nicht geladen werden." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4483,7 +4693,7 @@ msgstr "" "Dieses Farbschema verwendet einen transparenten Hintergrund, der von Ihrem " "System scheinbar nicht unterstützt wird." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4492,13 +4702,12 @@ msgstr "" "Konsole wurde gestartet, bevor die Desktop-Effekte aktiviert waren. Sie " "müssen Konsole neu starten, damit der Hintergrund transparent wird." -#: widgets/EditProfileDialog.cpp:1913 -#, fuzzy, kde-format -#| msgid "Default profile" +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format msgid "Default for file type" -msgstr "Standardprofil" +msgstr "Standardeinstellung für Dateityp" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4514,20 +4723,20 @@ msgid "" "will be ignored and the file will be opened by the default text\n" "editor." msgstr "" -"Das Format ist z.B. 'editorExec PFAD:ZEILE:SPALTE'\n" +"Das Format ist z. B. 'editorExec PFAD:ZEILE:SPALTE'\n" "\n" "PFAD wird durch den Pfad zur Textdatei ersetzt\n" "ZEILE wird durch die Zeilennummer ersetzt\n" "SPALTE (optional) wird durch die Spaltennummer ersetzt\n" "Hinweis: Sie müssen 'PFAD:ZEILE:SPALTE' durch die tatsächliche Syntax\n" -"ersetzen, die der Editor, den Sie verwenden wollen, unterstützt; z. B.:\n" +"ersetzen, die der Editor, den Sie verwenden möchten, unterstützt; z. B.:\n" "gedit +ZEILE:SPALTE PFAD\n" "\n" "Wenn PFAD oder ZEILE im Befehl nicht vorhanden sind, wird\n" "diese Einstellung ignoriert und die Datei wird mit dem Standardtext\n" "Editor geöffnet." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Benutzerdefinierter Texteditorbefehl" @@ -4587,10 +4796,9 @@ msgstr "/bin/sh" #. i18n: ectx: property (text), widget (QLabel, label_9) #: widgets/EditProfileGeneralPage.ui:157 -#, fuzzy, kde-format -#| msgid "Initial directory:" +#, kde-format msgid "I&nitial directory:" -msgstr "Startordner:" +msgstr "Startor&dner:" #. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:170 @@ -4617,30 +4825,60 @@ msgstr "Startordner auswählen" #: widgets/EditProfileGeneralPage.ui:193 #, kde-format msgid "Start in same directory as current session" -msgstr "Im selbem Ordner als aktuelle Sitzung starten" +msgstr "Im selben Ordner wie aktuelle Sitzung starten" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Beim Öffnen eines neuen Unterfensters oder Teilen der Ansicht automatisch " +"den gleichen Container verwenden (Toolbox, Distrobox) wie die aktuelle " +"Sitzung" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Im selben Container wie aktuelle Sitzung starten" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Immer in Container starten:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Neue Sitzungen immer mit diesem Profil in dem ausgewählten Container starten" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Umgebungsvariablen:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" "Bearbeiten Sie die Liste der Umgebungsvariablen und die zugewiesenen Werte" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 -#, fuzzy, kde-format -#| msgid "Initial terminal size:" +#: widgets/EditProfileGeneralPage.ui:320 +#, kde-format msgid "Initial terminal si&ze:" -msgstr "Ursprüngliche Terminal-Größe:" +msgstr "Ursprüngliche Terminal-&Größe:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4654,32 +4892,31 @@ msgstr "" "html>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 -#, fuzzy, kde-format -#| msgid "Terminal bell mode:" +#: widgets/EditProfileGeneralPage.ui:411 +#, kde-format msgid "&Terminal bell mode:" -msgstr "Terminal-Signalton-Modus:" +msgstr "Terminal-Signal&ton-Modus:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantische Integration" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Pfeil nach oben und unten emulieren" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Mausklick in die Eingabezeile bewegt den Cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantische Hinweise:" @@ -4689,9 +4926,9 @@ msgstr "Semantische Hinweise:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4702,9 +4939,9 @@ msgstr "Niemals" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4715,39 +4952,37 @@ msgstr "Wenn URL-Hinweise angezeigt werden" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Immer" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" -msgstr "" +msgstr "Rote Fehlerbalken:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 -#, fuzzy, kde-format -#| msgid "Blur background" +#: widgets/EditProfileGeneralPage.ui:547 +#, kde-format msgid "Red error background:" -msgstr "Hintergrund verwischen" +msgstr "Roter Fehlerhintergrund:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" -msgstr "" +msgstr "Abwechselnde Balken:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 -#, fuzzy, kde-format -#| msgid "Blur background" +#: widgets/EditProfileGeneralPage.ui:639 +#, kde-format msgid "Alternating background:" -msgstr "Hintergrund verwischen" +msgstr "Abwechselnder Hintergrund:" #. i18n: ectx: property (text), widget (QLabel, note) #: widgets/EditProfileKeyboardPage.ui:17 @@ -4759,9 +4994,9 @@ msgid "" "terminal program. For more information on how to customize the key bindings " "check the Konsole Handbook." msgstr "" -"Mit Tasten-Zuordnungen wird festgelegt, welche Tastendaten beim Druck " +"Mit Tastenzuordnungen wird festgelegt, welche Tastendaten beim Druck " "bestimmter Tastenkombinationen an das aktuelle Terminalprogramm gesendet " -"werden. Weitere Informationen zum Einrichten von Tasten-Zuordnungen finden " +"werden. Weitere Informationen zum Einrichten von Tastenzuordnungen finden " "Sie im Handbuch zu Konsole." #. i18n: ectx: property (toolTip), widget (QPushButton, newKeyBindingsButton) @@ -4777,7 +5012,7 @@ msgstr "" #, kde-format msgctxt "@action:button Create an alternate key binding" msgid "New..." -msgstr "Neu ..." +msgstr "Neu …" #. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:70 @@ -4830,17 +5065,15 @@ msgstr "Auswahl mit Dreifachklick: " #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) #: widgets/EditProfileMousePage.ui:104 -#, fuzzy, kde-format -#| msgid "The whole line" +#, kde-format msgid "&The whole line" -msgstr "Die gesamte Zeile" +msgstr "Die &gesamte Zeile" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 -#, fuzzy, kde-format -#| msgid "From mouse position to the end of line" +#, kde-format msgid "From mouse position to the end of &line" -msgstr "Vom Mauszeiger bis zum Ende der Zeile" +msgstr "Vom &Mauszeiger bis zum Ende der Zeile" #. i18n: ectx: property (text), widget (QLabel, label_13) #: widgets/EditProfileMousePage.ui:140 @@ -5099,7 +5332,7 @@ msgid "" "Some terminal applications have mouse support, this allows them to get it by " "default. It can be toggled on/off while running as well." msgstr "" -"Einige Terminalanwendungen haben Mausunterstützung, so dass sie diese " +"Einige Terminalanwendungen haben Mausunterstützung, sodass sie diese " "standardmäßig erhalten können. Sie kann auch während der Ausführung ein- und " "ausgeschaltet werden." @@ -5117,121 +5350,127 @@ msgid "Scrollback:" msgstr "Verlauf:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Blättern mit den Tasten Bild auf/Bild ab:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Seite um eine halbe Fensterhöhe blättern" +msgid "Highlight the lines coming into view" +msgstr "In die Ansicht kommende Linien hervorheben" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half screen height" -msgid "Half screen heigh&t" -msgstr "Halbe Bildschirmhöhe" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Seite um eine ganze Fensterhöhe blättern" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full screen height" -msgid "F&ull screen height" -msgstr "Volle Bildschirmhöhe" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Bildlaufleisten-Position:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Zeigt die Bildlaufleiste auf der rechten Seite des Terminalfensters an" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the right side" -#| msgid "Right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Rechte Seite" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Zeigt die Bildlaufleiste auf der linken Seite des Terminalfensters an" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the left side" -#| msgid "Left side" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Linke Seite" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Ausgeblendet" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Größe jeder einzelnen Markierung (als Prozentsatz der Leistenlänge):" + #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 +#: widgets/EditProfileScrollingPage.ui:97 #, kde-format msgid "Highlighting:" msgstr "Hervorhebung:" -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format -msgid "Highlight the lines coming into view" -msgstr "In die Ansicht kommende Linien hervorheben" +msgid "Scroll the page the half height of window" +msgstr "Seite um eine halbe Fensterhöhe blättern" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "&Halbe Bildschirmhöhe" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Farbe der Bildlaufleisten-Markierungen:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Farbe der Suchhervorhebungenslinien in der Leiste:" #. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 +#: widgets/EditProfileScrollingPage.ui:181 #, kde-format msgid "Reflow Lines:" msgstr "Zeilen neu umbrechen:" +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Seite um eine ganze Fensterhöhe blättern" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "&Volle Bildschirmhöhe" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Zeigt die Bildlaufleiste auf der rechten Seite des Terminalfensters an" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "&Rechte Seite" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Zeigt die Bildlaufleiste auf der linken Seite des Terminalfensters an" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "&Linke Seite" + #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Zeilen bei Größenänderung des Terminals neu umbrechen" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Bildlaufleisten-Position:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "" +msgid "Search highlighting line opacity:" +msgstr "Deckkraft der Suchhervorhebungslinien:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5249,7 +5488,7 @@ msgstr "Überwachung der Unterfenster" #: widgets/EditProfileTabsPage.ui:80 #, kde-format msgid "Threshold for continuous silence:" -msgstr "Grenzwert für anhaltende Inaktivität:" +msgstr "&Grenzwert für anhaltende Inaktivität:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, silenceSecondsSpinner) #: widgets/EditProfileTabsPage.ui:93 @@ -5291,7 +5530,7 @@ msgstr "" "Wenn Sie diese Einstellung verwenden, werden die Verlaufsdaten " "unverschlüsselt in temporären Dateien gespeichert. Diese temporären Dateien " "werden automatisch beim normalen Beenden von Konsole gelöscht.Verwenden " -"Sie Einstellungen→Konsole einrichten ...→Temporäre DateienEinstellungen → Konsole einrichten … → Temporäre Dateien, um den Speicherort der temporären Dateien auszuwählen." #. i18n: ectx: property (toolTip), widget (QRadioButton, fixedSizeHistoryButton) @@ -5302,10 +5541,9 @@ msgstr "Begrenzt den Verlaufsspeicher auf eine feste Anzahl Zeilen." #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 -#, fuzzy, kde-format -#| msgid "Fixed size:" +#, kde-format msgid "Fi&xed size:" -msgstr "Feste Größe:" +msgstr "&Feste Größe:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 @@ -5321,12 +5559,10 @@ msgstr "Alle Ausgaben des Terminals im Verlaufsspeicher vorhalten" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgctxt "Save all lines to the scrollback history" -#| msgid "Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "Unbegrenzt" +msgstr "&Unbegrenzt" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5336,44 +5572,42 @@ msgstr "Verlaufsspeicher deaktivieren" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Keine" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." -msgstr "Suchen ..." +msgstr "Suchen …" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Geben Sie hier Suchtext ein" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Weiter" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Nächstes Vorkommen des Suchtextes finden" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Zurück" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5381,78 +5615,79 @@ msgstr "Vorheriges Vorkommen des Suchtextes finden" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Einstellungsmenü anzeigen" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Suchleiste schließen" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Groß-/Kleinschreibung beachten" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Legt fest, ob die Suche Groß-/Kleinschreibung beachten soll" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Einstellungsmenü anzeigen" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Suchleiste schließen" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Regulären Ausdruck verwenden" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Alle Treffer hervorheben" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Legt fest, ob der gefundene Text hervorgehoben werden soll" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Rückwärts suchen" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Legt fest, ob die Suche von unten beginnen soll" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "" +msgstr "Nicht fortsetzen" -#: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" -msgstr "Legt fest, ob die Suche von unten beginnen soll" +msgstr "" +"Legt fest, ob die Suche beendet und nicht am anderen Ende fortgesetzt werden " +"soll" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Nächstes Vorkommen des Suchtextes von unten finden" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5463,7 +5698,7 @@ msgstr "Nächstes Vorkommen des Suchtextes von oben finden" msgid "Print Shell" msgstr "Shell drucken" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5477,7 +5712,7 @@ msgid "" "computer via SSH) is being executed" msgstr "" "Beschriftungsformat für Unterfenster, die einen Fernzugriffs-Befehl " -"ausführen (z. B. zur Verbindung mit einem entfernten Rechner via SSH)." +"ausführen (z. B. zur Verbindung mit einem entfernten Rechner per SSH)." #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/RenameTabWidget.ui:60 @@ -5487,10 +5722,9 @@ msgstr "Beschriftungsformat für Fernzugriffs-Unterfenster:" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/RenameTabWidget.ui:79 -#, fuzzy, kde-format -#| msgid "Tab title format:" +#, kde-format msgid "&Tab title format:" -msgstr "Beschriftungsformat für Unterfenster:" +msgstr "&Beschriftungsformat für Unterfenster:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5500,10 +5734,15 @@ msgstr "Beschriftungsformat für normale Unterfenster" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgid "Tab Color:" +#, kde-format msgid "Tab Co&lor:" -msgstr "Unterfensterfarbe:" +msgstr "&Unterfensterfarbe:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Farbe bei &Aktivität:" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5572,7 +5811,7 @@ msgstr "Beschriftungsformat für Unterfenster" #, kde-format msgctxt "@info:tooltip" msgid "Insert remote title format" -msgstr "Beschriftungsformat für Fernzugriff-Unterfenster" +msgstr "Beschriftungsformat für &Fernzugriff-Unterfenster" #: widgets/TerminalHeaderBar.cpp:80 widgets/TerminalHeaderBar.cpp:188 #, kde-format @@ -5598,36 +5837,58 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Terminal wiederherstellen" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Neues Unterfenster öffnen" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Unterfenster suchen" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Dieses Unterfenster schließen" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Unterfenster &verselbständigen" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." -msgstr "Unterfenster einrichten oder &umbenennen ..." +msgstr "Unterfenster einrichten oder &umbenennen …" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Unterfenster schließen" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "Die D-Bus-Methoden sendText/runCommand wurden soeben benutzt. Diese " +#~ "Methoden öffentlich nutzen zu können ruft Sicherheitsbedenken hervor. Sie " +#~ "können bei Bedarf auf interne Verwendung beschränkt werden, indem Konsole " +#~ "neu kompiliert wird.

          Diese Warnung wird nur einmal in dieser Konsole-" +#~ "Sitzung angezeigt.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Groß-/Kleinschreibung beachten" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Kein" @@ -6207,9 +6468,6 @@ msgstr "Unterfenster schließen" #~ msgid "New" #~ msgstr "Neu" -#~ msgid "Select &Tab Color" -#~ msgstr "&Farbe für Unterfenster wählen" - #~ msgid "KWrited - Listening on Device %1" #~ msgstr "KWrited überwacht Gerät %1" diff --git a/local/recipes/kde/konsole/source/po/el/konsole.po b/local/recipes/kde/konsole/source/po/el/konsole.po index 1dfad5f577..e18242fe09 100644 --- a/local/recipes/kde/konsole/source/po/el/konsole.po +++ b/local/recipes/kde/konsole/source/po/el/konsole.po @@ -17,16 +17,16 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2023-01-07 21:31+0200\n" -"Last-Translator: Stelios \n" -"Language-Team: Greek \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2024-09-05 12:59+0300\n" +"Last-Translator: Αντώνης Γέραλης \n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.12.3\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 24.08.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -60,7 +60,7 @@ msgstr "Προβολή" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Διαίρεση προβολής" @@ -96,7 +96,7 @@ msgid "S&crollback" msgstr "Κύλι&ση" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Γραμμή εργαλείων συνεδρίας" @@ -179,39 +179,57 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Απόκρυψη της γραμμής μενού, αντικατάσταση της προκαθορισμένης ρύθμισης" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" "Εμφάνιση της γραμμής καρτελών, αντικατάσταση της προκαθορισμένης ρύθμισης" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" "Απόκρυψη της γραμμής καρτελών, αντικατάσταση της προκαθορισμένης ρύθμισης" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "" +"Εμφάνιση της γραμμής καρτελών, αντικατάσταση της προκαθορισμένης ρύθμισης" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" +"Απόκρυψη της γραμμής καρτελών, αντικατάσταση της προκαθορισμένης ρύθμισης" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Εκκίνηση Konsole σε πλήρη οθόνη" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Απενεργοποίηση διαφανών φόντων, ακόμη και αν το σύστημα τα υποστηρίζει." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Λίστα των διαθέσιμων προφίλ" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -219,13 +237,13 @@ msgstr "" "Εμφανίζει όλα τα ονόματα ιδιοτήτων των προφίλ και τον τύπο τους (για χρήση " "με -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Τροποποίηση της τιμής μιας ιδιότητας του προφίλ." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -235,7 +253,7 @@ msgstr "" "Εντολή που θα εκτελεστεί. Αυτή η επιλογή θα πιάσει όλα τα ακόλουθα ορίσματα, " "οπότε χρησιμοποιήστε την ως την τελευταία επιλογή." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -245,13 +263,13 @@ msgstr "" "Εξαναγκασμός επαναχρησιμοποίησης της υπαρκτής διεργασίας ακόμη και αν " "καταστρέφει τη λειτουργικότητα π.χ. --new-tab. Για αποσφαλμάτωση κυρίως." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Ορίσματα που θα περαστούν στην εντολή" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -269,157 +287,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Προσκήνιο" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Φόντο" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Χρώμα 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Χρώμα 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Χρώμα 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Χρώμα 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Χρώμα 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Χρώμα 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Χρώμα 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Χρώμα 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Προσκήνιο (έντονο)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Φόντο (έντονο)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Χρώμα 1 (έντονο)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Χρώμα 2 (έντονο)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Χρώμα 3 (έντονο)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Χρώμα 4 (έντονο)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Χρώμα 5 (έντονο)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Χρώμα 6 (έντονο)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Χρώμα 7 (έντονο)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Χρώμα 8 (έντονο)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Προσκήνιο (αχνό)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Φόντο (αχνό)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Χρώμα 1 (αχνό)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Χρώμα 2 (αχνό)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Χρώμα 3 (αχνό)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Χρώμα 4 (αχνό)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Χρώμα 5 (αχνό)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Χρώμα 6 (αχνό)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Χρώμα 7 (αχνό)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Χρώμα 8 (αχνό)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -615,7 +633,7 @@ msgstr "Προσαρμογή" #: colorscheme/ColorSchemeEditor.ui:193 #, kde-format msgid "NoScaling" -msgstr "Χωρίςκλιμάκωση" +msgstr "ΧωρίςΚλιμάκωση" #. i18n: ectx: property (text), widget (QLabel, wallpaperFlipLabel) #: colorscheme/ColorSchemeEditor.ui:205 @@ -627,7 +645,7 @@ msgstr "Αναστροφή ταπετσαρίας:" #: colorscheme/ColorSchemeEditor.ui:213 #, kde-format msgid "NoFlip" -msgstr "Χωρίςαναστροφή" +msgstr "ΧωρίςΑναστροφή" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:218 @@ -676,6 +694,41 @@ msgstr "Κορυφή" msgid "AaZz09..." msgstr "ΑαΩω09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Υπολογιστής: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr "[Προκαθορισμένο]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -701,11 +754,10 @@ msgid "Deselect All" msgstr "Αποεπιλογή όλων" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, fuzzy, kde-format -#| msgid "Preview:" +#, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" -msgstr "Προεπισκόπηση:" +msgstr "Προεπισκόπηση χρώματος" #: filterHotSpots/FileFilterHotspot.cpp:158 #, kde-format @@ -722,7 +774,7 @@ msgstr "" msgid "Copy Location" msgstr "Αντιγραφή τοποθεσίας" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Παραγωγή εικόνας επισκόπησης" @@ -753,13 +805,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Επιλογή γραμματοσειράς" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Εμφάνιση όλων των γραμματοσειρών" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -799,17 +851,17 @@ msgstr "Συνδυασμός πλήκτρων" msgid "Output" msgstr "Έξοδος" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Νέα λίστα πλήκτρων συνδυασμών" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Επεξεργασία λίστας πλήκτρων συνδυασμών" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Αδυναμία αποθήκευσης θέματος συνδυασμού πλήκτρων χωρίς περιγραφή." @@ -817,7 +869,7 @@ msgstr "Αδυναμία αποθήκευσης θέματος συνδυασμ #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -851,225 +903,225 @@ msgstr "Είσοδος:" msgid "Output:" msgstr "Έξοδος:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Εξομοιωτής τερματικού" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Οι προγραμματιστές του Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Συντηρητής, διόρθωση σφαλμάτων και γενικές βελτιώσεις" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Πρώην συντηρητής, μεταφορά στο KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Αρχικός συγγραφέας" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Σημαντική ανασχεδίαση, διόρθωση σφαλμάτων και σημαντικές βελτιώσεις" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Διόρθωση σφαλμάτων και γενικές βελτιώσεις" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Διόρθωση σφαλμάτων και σημαντικές βελτιώσεις" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Γενικές βελτιώσεις" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Διόρθωση σφαλμάτων" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Υποστήριξη Solaris και ιστορικό" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Διόρθωση σφαλμάτων και βελτίωση απόδοσης κατά την εκκίνηση" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Βελτιώσεις σήμανσης" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1079,13 +1131,13 @@ msgstr "" "Ενσωματωμένο Konsole\n" "Γραμμή εργαλείων και ονόματα συνεδριών" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1095,25 +1147,25 @@ msgstr "" "Ενσωματωμένο Konsole\n" "Γενικές βελτιώσεις" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Οπτικά εφέ" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1123,132 +1175,132 @@ msgstr "" "Κώδικας από το έργο kvt\n" "Γενικές βελτιώσεις" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Βελτιώσεις σχημάτων και επιλογής κειμένου" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Προσαρμογή στο SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Προσαρμογή στο FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Ένα ευχαριστώ σε πολλούς άλλους.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Νέα καρτέλα" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Αντίγραφο καρτέλας" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Νέο &παράθυρο" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Κλείσιμο παραθύρου" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Σελιδοδείκτες" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Θέμα χρωμάτων παραθύρου" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Διαχείριση προφίλ..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Ενεργοποίηση του μενού" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Αποθήκευση διάταξης καρτελών..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Φόρτωση διάταξης καρτελών..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1257,25 +1309,25 @@ msgid_plural "" msgstr[0] "Εκτελείται μια διεργασία σε αυτό το παράθυρο. Θα το κλείσετε;" msgstr[1] "Εκτελούνται %1 διεργασίες σε αυτό το παράθυρο. Θα το κλείσετε;" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Επιβεβαίωση κλεισίματος" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Κλείσιμο &παραθύρου" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Κλείσιμο τρέχουσας καρ&τέλας" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" @@ -1283,43 +1335,43 @@ msgstr "" "Υπάρχουν %1 ανοιχτά τερματικά σε αυτό το παράθυρο. Σίγουρα θέλετε να " "κλείσετε;" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Προφίλ" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Γενικά" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" -msgstr "" +msgstr "Μνήμη" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Γραμμή καρτελών / Διαχωριστές" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Προσωρινά αρχεία" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Εικόνες επισκόπησης" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1403,7 +1455,7 @@ msgstr "Αποθήκευση" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Ενημέρωση" @@ -1415,28 +1467,29 @@ msgid "Cancel" msgstr "Ακύρωση" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Γρήγορες εντολές" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Εμφάνιση γρήγορης πρόσβασης" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" +"Δεν βρέθηκαν γρήγορες εντολές. Μπορείτε να προσθέσετε μία στο Πρόσθετα -> " +"Γρήγορες εντολές" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 -#, fuzzy, kde-format -#| msgid "Quick Commands" +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 +#, kde-format msgid "Plugins - Quick Commands" -msgstr "Γρήγορες εντολές" +msgstr "Πρόσθετα - Γρήγορες εντολές" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Εμφάνιση γρήγορων εντολών" @@ -1482,7 +1535,7 @@ msgstr "" " με πολλές διαμορφώσεις, είστε βέβαιοι;" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Πρόκειται να διαγράψετε το %1, είστε βέβαιοι;" @@ -1535,11 +1588,11 @@ msgid "%1 is a folder for SSH entries" msgstr "Το %1 είναι φάκελος για SSH εγγραφές" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH Διαμόρφωση" @@ -1568,12 +1621,13 @@ msgstr "Εμφάνιση γρήγορης πρόσβασης για ενέργε #, kde-format msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" msgstr "" +"Δεν βρέθηκε αποθηκευμένη ρύθμιση SSH. Μπορείτε να προσθέσετε μία στο " +"Πρόσθετα -> Διαχειριστής SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:147 -#, fuzzy, kde-format -#| msgid "Open File Manager" +#, kde-format msgid "Plugins - SSH Manager" -msgstr "Άνοιγμα του διαχειριστή αρχείων" +msgstr "Πρόσθετα - Διαχειριστής SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:153 #, kde-format @@ -1603,24 +1657,24 @@ msgstr "" "sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" -msgstr "SSH κλειδί" +msgstr "Κλειδί SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Διαγραφή" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Να μην γίνει αλλαγή" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1629,69 +1683,70 @@ msgstr "" "Πρόκειται να διαγράψετε τον φάκελο %1,\n" " με πολλές SSH διαμορφώσεις, είστε βέβαιοι;" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Διαγραφή διαμορφώσεων SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" +"Εισαγμένο προφίλ SSH
          Ορισμένες ρυθμίσεις είναι μόνο για ανάγνωση." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Λείπει το όνομα του υπολογιστή" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Λείπει το όνομα" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Αν γίνεται χρήση του ssh config, μην ορίσετε ssh κλειδί ή όνομα χρήστη." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Τουλάχιστον ένα όνομα χρήστη ή ένα SSHKey πρέπει να ρυθμιστεί" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Λείπει ο φάκελος" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Μια συνεδρία ssh πρέπει να έχει προφίλ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Αδυναμία διαγραφής αυτού του φακέλου" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Να διαγραφεί ο φάκελος και ό,τι περιέχει" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Με διπλό κλικ αλλάζετε το όνομα του φακέλου." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Δεν μπορείτε να διαγράψετε μια αυτόματη προσθήκη εγγραφής." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Διαγραφή της επιλεγμένης εγγραφής" @@ -1884,36 +1939,34 @@ msgstr "Επιλογές αποτελέσματος" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Λειτουργία φιλική προς εκτύπωση (μαύρο κείμενο, χωρίς φόντο)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Κλιμάκωση εξόδου" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" -msgstr "" +msgstr "Ενσωματωμένο" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Προκαθορισμένο προφίλ" #: profile/ProfileManager.cpp:280 -#, fuzzy, kde-format -#| msgctxt "The default name of a profile" -#| msgid "Profile #%1" +#, kde-format msgctxt "New profile name, %1 is a number" msgid "Profile %1" -msgstr "Προφίλ #%1" +msgstr "Προφίλ %1" #: profile/ProfileManager.cpp:294 #, kde-format @@ -1963,17 +2016,41 @@ msgstr "Με διπλό κλικ αλλάζετε συντόμευση" msgid "Tab Properties" msgstr "Ιδιότητες καρτέλας" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Αποθήκευση εξόδου από %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "Το %1 δεν είναι ένα έγκυρο URL, ή έξοδος δεν μπορεί να αποθηκευτεί." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Αποτυχία δημιουργίας αρχείου αυτόματης αποθήκευσης στο %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Διακοπή αυτόματης αποθήκευσης λόγω αλλαγής οθονών." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Το αρχείο αυτόματης αποθήκευσης έχει τροποποιηθεί εξωτερικά, εμποδίζοντας " +"περαιτέρω αυτόματες αποθηκεύσεις." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Αποτυχία ενημέρωσης της κατάστασης αυτόματης αποθήκευσης σε αλλαγές εξόδου." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2009,81 +2086,100 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Σκοτεινά παστέλ" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Πράσινο σε Μαύρο" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Χρώματα Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Κόκκινο σε μαύρο" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized Light" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Λευκό σε μαύρο" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Προκαθορισμένο (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Κονσόλα Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Κονσόλα Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Αναζήτηση..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Εισάγετε εδώ το κείμενο αναζήτησης" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Κουδούνι στην '%1' (Συνεδρία '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Αδυναμία εύρεσης εκτελέσιμου: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Προειδοποίηση: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Αδυναμία εύρεσης ενός διαδραστικού κελύφους για εκκίνηση." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2092,350 +2188,339 @@ msgstr "" "Αδυναμία εύρεσης του '%1', έναρξη του '%2' στη θέση του. Παρακαλώ ελέγξτε " "τις ρυθμίσεις του προφίλ σας." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Αδυναμία εκκίνησης του προγράμματος '%1' με παραμέτρους '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Σιγή στην '%1' (Συνεδρία '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Εμφάνιση συνεδρίας" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"Μόλις έγινε χρήση των D-Bus μεθόδων sendText/runCommand. Υπάρχουν " -"επιφυλάξεις ασφαλείας αν επιτρέπεται σε αυτές τις μεθόδους να είναι " -"δημόσιες. Αν είναι επιθυμητό, οι μέθοδοι αυτές μπορούν να αλλάξουν σε " -"εσωτερικές μόνο με την επανα-μεταγλώττιση του Konsole.

          Αυτή η " -"προειδοποίηση θα εμφανιστεί μόνο μία φορά για αυτήν την εκτέλεση του Konsole." -"

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Ολοκληρώθηκε" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Το πρόγραμμα '%1' κατέρρευσε." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Το πρόγραμμα '%1' τερμάτισε με κατάσταση %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Πρόοδος ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Δραστηριότητα στην '%1' (Συνεδρία '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Η διεργασία '%1' έχει τερματίσει την εκτέλεσή της στη συνεδρία '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Το Konsole δεν γνωρίζει πώς να ανοίξει τον σελιδοδείκτη: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Αναζήτηση για '%1' με" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Διαμόρφωση συντομεύσεων ιστού..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Κλείσιμο συνεδρίας" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" -msgstr "Άνοιγμα του διαχειριστή αρχείων" +msgstr "Άνοιγμα διαχειριστή αρχείων" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Αντιγραφή" -#: session/SessionController.cpp:667 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: session/SessionController.cpp:697 +#, kde-format msgid "Split View Left-Right" -msgstr "Διαχωρισμός προβολής αριστερά/δεξιά" +msgstr "Διαίρεση προβολής αριστερά/δεξιά" -#: session/SessionController.cpp:672 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: session/SessionController.cpp:702 +#, kde-format msgid "Split View Top-Bottom" -msgstr "Διαχωρισμός προβολής πάνω/κάτω" +msgstr "Διαίρεση προβολής πάνω/κάτω" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Αντιγραφή εκτός των συμβόλων αναμονής" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Αντιγραφή δεδομένων εισόδου χρήστη" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Αντιγραφή εξόδου εντολής" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Επικόλληση επιλογής" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Αναζήτηση στον ιστό" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Επιλογή όλων" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Επιλογή &λειτουργίας" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Επιλογή &γραμμής" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." -msgstr "Αποθήκευση εξόδου ως..." +msgstr "Αποθήκευση εξόδου &ως..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Αυτόματη αποθήκευση εξόδου ως..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Διακοπή αυτόματης αποθήκευσης" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Εκτύπωση οθόνης..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Προσαρμογή κύλισης..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" -msgstr "Καθαρισμός κύλισης" +msgstr "Εκκαθάριση κύλισης" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" -msgstr "Καθαρισμός κύλισης και επαναφορά" +msgstr "Εκκαθάριση κύλισης και επαναφορά" -#: session/SessionController.cpp:757 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:795 +#, kde-format msgid "Next Profile" -msgstr "Επεξεργασία προφίλ" +msgstr "Επόμενο προφίλ" -#: session/SessionController.cpp:762 -#, fuzzy, kde-format -#| msgid "Previous View" +#: session/SessionController.cpp:800 +#, kde-format msgid "Previous Profile" -msgstr "Προηγούμενη προβολή" +msgstr "Προηγούμενο προφίλ" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" -msgstr "Αλλαγή Προφίλ" +msgstr "Εναλλαγή προφίλ" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Ορισμός &κωδικοποίησης" -#: session/SessionController.cpp:812 -#, fuzzy, kde-format -#| msgctxt "" -#| "@item:inmenu Allows terminal applications to request mouse tracking" -#| msgid "Allow mouse tracking" +#: session/SessionController.cpp:848 +#, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Να επιτρέπεται η ιχνηλάτηση του ποντικιού" -#: session/SessionController.cpp:821 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu A read only (locked) session" -#| msgid "Read-only" +#: session/SessionController.cpp:857 +#, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Ανάγνωση-μόνο" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Διαμόρ&φωση ή μετονομασία καρτέλας..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Όλες τις καρτέλες στο τρέχον παράθυρο" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Επιλογή καρτελών..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Καμία" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Αντιγραφή εισόδου σε..." -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Αποστολή &ΖModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" -msgstr "" +msgstr "Επόπτες μίας χρήσης" -#: session/SessionController.cpp:877 -#, fuzzy, kde-format -#| msgid "Monitor for &Activity" +#: session/SessionController.cpp:913 +#, kde-format msgid "Monitor for &Prompt" -msgstr "Εποπτεία για &δραστηριότητα" +msgstr "Εποπτεία για &προτροπή" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Εποπτεία για &δραστηριότητα" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Εποπτεία για σ&ιγή" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Εποπτεία για τον τερματισμό διεργασίας" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Μεγέθυνση γραμματοσειράς" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Σμίκρυνση γραμματοσειράς" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Επαναφορά μεγέθους γραμματοσειράς" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Αποστολή σήματος" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Αναστολή διεργασίας" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Συνέχεια διεργασίας" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Αποσύνδεση" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Διακοπή διεργασίας" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Τερματισμός διεργασίας" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Βίαιος τερματισμός διεργασίας" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Σήμα χρήστη &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Σήμα χρήστη &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Δημιουργία νέου προφίλ..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." -msgstr "Επεξεργασία του τρέχοντος προφίλ..." +msgstr "Επεξεργασία τρέχοντος προφίλ..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2444,7 +2529,7 @@ msgstr "" "Ένα πρόγραμμα εκτελείται αυτήν τη στιγμή στη συνεδρία αυτή. Επιθυμείτε το " "κλείσιμό του;" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2453,18 +2538,18 @@ msgstr "" "Το πρόγραμμα '%1' εκτελείται αυτήν τη στιγμή στη συνεδρία αυτή. Επιθυμείτε " "το κλείσιμό του;" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Επιβεβαίωση κλεισίματος" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Κλείσιμο προγράμματος" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2473,37 +2558,40 @@ msgstr "" "Ένα πρόγραμμα στη συνεδρία αυτή δεν κλείνει. Επιθυμείτε το βίαιο τερματισμό " "του;" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Το πρόγραμμα '%1' εκτελείται στη συνεδρία αυτή. Επιθυμείτε τον βίαιο " "τερματισμό του;" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Διακοπή προγράμματος" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "" +msgstr "Η προτροπή του κελύφους εμφανίζεται στη συνεδρία '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Άνοιγμα τρέχοντος φακέλου με" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Αποθήκευση της ZModem λήψης σε..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2514,14 +2602,14 @@ msgstr "" "υπάρχουν κατάλληλα λογισμικά ZModem σε αυτό το σύστημα.

          Ίσως " "επιθυμείτε να εγκαταστήσετε το 'rzsz' ή το πακέτο 'lrzsz'.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" "

          Η τρέχουσα συνεδρία έχει ήδη μία μεταφορά αρχείου ZModem σε εξέλιξη.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2530,7 +2618,7 @@ msgstr "" "

          Κανένα κατάλληλο λογισμικό ZModem δεν βρέθηκε σε αυτό το σύστημα.

          Ίσως επιθυμείτε να εγκαταστήσετε το 'rzsz' ή το πακέτο 'lrzsz'.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Επιλογή αρχείων για αποστολή ZModem" @@ -2553,56 +2641,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Διαμόρφωση" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Αναζήτηση:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Ενεργοποίηση συντομεύσεων μενού" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Αν ενεργοποιηθεί, οι ρυθμίσεις προφίλ θα αγνοηθούν" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Απομνημόνευση μεγέθους παραθύρου" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Εμφάνιση τίτλου παραθύρου στην γραμμή τίτλου" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Εστίαση σε τερματικά όταν το ποντίκι κινείται πάνω τους" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Ταίριασμα με χρήση κανονικών εκφράσεων" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2611,89 +2652,162 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Να εκτελούνται όλα τα παράθυρα της Konsole με μία διεργασία" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Τονισμός όλων που ταιριάζουν" +msgid "If enabled, profile settings will be ignored" +msgstr "Αν ενεργοποιηθεί, οι ρυθμίσεις προφίλ θα αγνοηθούν" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Ορίζει αν η αναζήτηση θα γίνει με διάκριση πεζών/κεφαλαίων" +msgid "Remember window size" +msgstr "Απομνημόνευση μεγέθους παραθύρου" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Διάκριση πεζών/κεφαλαίων" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Τοποθέτηση νέων καρτελών:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Αφαίρεση γραμμής τίτλου παραθύρου και πλαισίου" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Διεργασία και παράθυρο:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Ειδοποιήσεις:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Όλοι οι διάλογοι θα εμφανιστούν ξανά" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Ενεργοποίηση όλων των μηνυμάτων \"Να μην ερωτηθώ ξανά\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Ορίζει αν η αναζήτηση θα ξεκινάει από το τέλος" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Αναζήτηση προς τα πίσω" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Ορίζει αν η αναζήτηση θα γίνει με διάκριση πεζών/κεφαλαίων" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Διάκριση πεζών/κεφαλαίων" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Διεργασία και παράθυρο:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Τονισμός όλων που ταιριάζουν" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Αναζήτηση:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format msgid "Sets whether search should stop instead of wrapping" -msgstr "Ορίζει αν η αναζήτηση θα ξεκινάει από το τέλος" +msgstr "Ορίζει εάν η αναζήτηση θα πρέπει να σταματά αντί να τυλίγεται" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" +msgstr "Χωρίς τύλιγμα" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Ενεργοποίηση συντομεύσεων μενού" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Εστίαση σε τερματικά όταν το ποντίκι κινείται πάνω τους" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Όλοι οι διάλογοι θα εμφανιστούν ξανά" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Ενεργοποίηση όλων των μηνυμάτων «Να μην ερωτηθώ ξανά»" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Εμφάνιση τίτλου παραθύρου στην γραμμή τίτλου" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Αφαίρεση γραμμής τίτλου παραθύρου και πλαισίου" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Ταίριασμα με χρήση κανονικών εκφράσεων" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2721,153 +2835,203 @@ msgstr "Χρήση των τρεχουσών διαστάσεων παραθύρ msgid "The window size will be saved upon exiting Konsole" msgstr "Αποθήκευση διαστάσεων του παραθύρου κατά την έξοδο από το Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Στην εκτέλεση της Konsole να γίνει χρήση της υπάρχουσας διεργασίας αν είναι " +"εφικτό" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Πλάτος εικόνας επισκόπησης" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Ρυθμίζει το πλάτος της εικόνας επισκόπησης" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Χρήση Shift για την εμφάνιση μιας εικόνας επισκόπησης" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Χρήση Alt για την εμφάνιση μιας εικόνας επισκόπησης" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Χρήση Ctrl για την εμφάνιση μιας εικόνας επισκόπησης" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Αναζήτηση με διάκριση πεζών/κεφαλαίων" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Τονισμός όλων των αποτελεσμάτων αναζήτησης" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Ορίζει αν το κείμενο που θα βρεθεί θα τονιστεί" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Η αναζήτηση σταματά αντί να τυλίγεται" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" -msgstr "" +msgstr "Έλεγχος αν δημιουργούνται cgroups απογόνων για μεμονωμένες καρτέλες" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" msgstr "" +"Καθορίζει το επίπεδο κατανάλωσης μνήμης πάνω από το οποίο θα ξεκινήσει ο " +"περιορισμός." #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Έλεγχος της ορατότητας ολόκληρης της γραμμής καρτελών" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Έλεγχος του μεγέθους του χειριστηρίου μεταξύ πινάκων" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Έλεγχος της θέσης της γραμμής καρτελών" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Έλεγχος του οπτικού στυλ της γραμμής καρτελών" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" "Χρήση ενός καθορισμένου από τον χρήστη αρχείου .css για τη γραμμή καρτελών" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Το αρχείο .css που θα χρησιμοποιηθεί για το στιλ της γραμμής καρτελών" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Να επιτρέπεται μεσαίο κλικ για κλείσιμο σε ανοιχτές καρτέλες" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Έλεγχος της ορατότητας του κουμπιού 'Νέα καρτέλα' στη γραμμή καρτελών" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Έλεγχος της ορατότητας του κουμπιού 'Νέα καρτέλα' στη γραμμή καρτελών" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Έλεγχος της θέσης εμφάνισης του κουμπιού «Κλείσιμο καρτέλας»" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Έλεγχος της τοποθέτησης μιας νέας καρτέλας" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Επέκταση του πλάτους των καρτελών" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" "Για αρχεία κύλισης προς τα πίσω, χρησιμοποιήστε θέση φακέλου από το σύστημα" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2875,49 +3039,63 @@ msgstr "" "χρήστη" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" "Για αρχεία κύλισης προς τα πίσω, χρησιμοποιήστε καθορισμένη θέση φακέλου" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Για αρχεία κύλισης προς τα πίσω, χρησιμοποιήστε αυτόν τον φάκελο" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 -#, fuzzy, kde-format -#| msgid "Tab Monitoring" +#, kde-format msgid "Enable memory monitoring:" -msgstr "Παρακολούθηση καρτελών" +msgstr "Ενεργοποίηση παρακολούθησης μνήμης:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" +"Οι αλλαγές θα τεθούν σε ισχύ κατά την επανεκκίνηση. Εάν είναι\n" +"ενεργοποιημένη, η συνεχής κατανάλωση μνήμης από το Konsole που\n" +"υπερβαίνει την καθορισμένη τιμή θα προκαλέσει την εξάλειψη από το\n" +"systemd-oomd της καρτέλας(ων) που περιέχει τη διεργασία(ων) με μεγάλη\n" +"κατανάλωση μνήμης. Σημείωση: η ενεργοποίηση ενδέχεται να προκαλέσει\n" +"μεγαλύτερες επιβραδύνσεις κατά τη διάρκεια υψηλής κατανάλωσης μνήμης\n" +"και ο καθορισμός υπερβολικά χαμηλών τιμών ενδέχεται να προκαλέσει ακόμα\n" +"την εξουδετέρωση του Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" -msgstr "" +msgstr "Όριο μνήμης:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" -msgstr "" +msgstr " MB" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/PartInfo.ui:17 @@ -2989,14 +3167,14 @@ msgstr "" #: settings/ProfileSettings.ui:93 #, kde-format msgid "&Set as Default" -msgstr "&Ορισμός ως προκαθορισμένο" +msgstr "&Ορισμός ως προεπιλογή" #. i18n: ectx: attribute (title), widget (QWidget, appearanceTab) #: settings/TabBarSettings.ui:39 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Appearance" -msgstr "Όψη" +msgstr "Εμφάνιση" #. i18n: ectx: property (text), widget (QLabel, showTabBarLabel) #: settings/TabBarSettings.ui:53 @@ -3042,17 +3220,15 @@ msgstr "Κά&τω από την περιοχή τερματικού" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the left of terminal area" -msgstr "Κά&τω από την περιοχή τερματικού" +msgstr "Στα αριστερά της περιοχής τερματικού" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the &right of terminal area" -msgstr "Κά&τω από την περιοχή τερματικού" +msgstr "Στα &δεξιά της περιοχής τερματικού" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 @@ -3062,8 +3238,7 @@ msgstr "Εμφάνιση κουμπιού κλεισίματος καρτέλα #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 -#, fuzzy, kde-format -#| msgid "&On each tab" +#, kde-format msgid "On ea&ch tab" msgstr "&Σε κάθε καρτέλα" @@ -3080,125 +3255,144 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Κανένα" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Εμφάνιση κουμπιού κλεισίματος καρτέλας:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Πάντα" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Ποτέ" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Διάφορα:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" -msgstr "Εμφάνιση κουμπιού 'νέα καρτέλα'" +msgstr "Εμφάνιση κουμπιού 'Νέα καρτέλα'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Επέκταση μεμονωμένης καρτέλας σε πλήρες παράθυρο" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Χρήση φύλλου στιλ καθορισμένου από το χρήστη:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(καμία)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Συμπεριφορά" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Τοποθέτηση νέων καρτελών:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Σ&το τέλος" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Μετά την τρέχουσα καρ&τέλα" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Κλείσιμο καρτέλας με μεσαίο κλικ" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Διαιρέσεις" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Εμφάνιση κεφαλίδας:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Όταν απαιτείται" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Ποτέ" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Μέγεθος χειριστηρίου έλκυσης:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Μικρό" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Μεσαίο" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Μεγάλο" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3243,20 +3437,19 @@ msgstr "Μέγεθος:" #: settings/ThumbnailsSettings.ui:24 #, kde-format msgid "px" -msgstr " px" +msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Για να χρησιμοποιήσετε αυτό το χαρακτηριστικό, " "ενεργοποιήσετε Ποντίκι->Διάφορα->" -"Υπογράμμισηαρχεία μέσα στις " -"ρυθμίσεις του προφίλ σας

          " +"Υπογράμμιση μέσα στις ρυθμίσεις του προφίλ σας

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3294,64 +3487,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Ενεργοποίηση παραγωγής επισκοπήσεων" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Μέγεθος: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Είστε βέβαιοι ότι θέλετε να επικολλήσετε %1 χαρακτήρα;" msgstr[1] "Είστε βέβαιοι ότι θέλετε να επικολλήσετε %1 χαρακτήρες;" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Επιβεβαίωση επικόλλησης" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" -msgstr "^Τέλος κειμένου/διακοπή: έξοδος της τρέχουσας διεργασίας" +msgstr "Τέλος κειμένου/διακοπή: έξοδος της τρέχουσας διεργασίας" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Τέλος μετάδοσης: έξοδος της τρέχουσας διεργασίας" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Κουδούνι: θα επιχειρηθεί η εκπομπή ακουστικής προειδοποίησης" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "DC3/XOFF: αναστέλλει την έξοδο" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Αντικατάσταση/Αναστολή: διακόπτει την τρέχουσα διεργασία" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Διαφυγή: για το χειρισμό της κατάστασης του τερματικού" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Διαχωριστικό αρχείου/Έξοδος: ακυρώνει την `τρέχουσα διεργασία" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3360,31 +3553,31 @@ msgstr "" "Το κείμενο που προσπαθείτε να επικολλήσετε περιέχει κρυμμένους χαρακτήρες " "ελέγχου, θέλετε να τους φιλτράρετε;" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Επιβεβαίωση επικόλλησης" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" -msgstr "Επικόλληση χωρί&ς χαρακτήρες ελέγχου" +msgstr "Επικόλληση χωρίς χαρακτήρες ελέ&γχου" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Ε&πικόλληση όλων" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "Α&κύρωση" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been ανασταλεί με το πάτημα του Ctrl+S. Πατήστε " "Ctrl+Q για να την επαναφέρετε." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Αυτό το τερματικό είναι για ανάγνωση-μόνο." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Αλλαγή &καταλόγου σε" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Επικόλληση τοποθεσίας" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Διαίρεση προβολής" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" -msgstr "Διαχωρισμός προβολής αριστερά/δεξιά" +msgstr "Διαίρεση προβολής αριστερά/δεξιά" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" -msgstr "Διαχωρισμός προβολής πάνω/κάτω" +msgstr "Διαίρεση προβολής πάνω/κάτω" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Αυτόματος διαχωρισμός προβολής" -#: ViewManager.cpp:153 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: ViewManager.cpp:157 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" -msgstr "Διαχωρισμός προβολής αριστερά/δεξιά" +msgstr "Διαίρεση προβολής αριστερά/δεξιά της επόμενης καρτέλας" -#: ViewManager.cpp:161 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:165 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" -msgstr "Διαχωρισμός προβολής πάνω/κάτω" +msgstr "Διαίρεση προβολής πάνω/κάτω της επόμενης καρτέλας" -#: ViewManager.cpp:169 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Automatically" +#: ViewManager.cpp:173 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" -msgstr "Αυτόματος διαχωρισμός προβολής" +msgstr "Διαίρεση προβολής αυτόματα από την επόμενη καρτέλα" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Φόρτωση νέας καρτέλας με διάταξη 2x2 τερματικά" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Φόρτωση νέας καρτέλας με διάταξη 2x1 τερματικά" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Φόρτωση νέας καρτέλας με διάταξη 1x2 τερματικά" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Ανάπτυξη προβολής" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Συρρίκνωση προβολής" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" -msgstr "Αποκόλληση της τρέχουσας προ&βολής" +msgstr "Αποκόλληση τρέχουσας προ&βολής" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" -msgstr "Αποκόλληση της τρέχουσας καρ&τέλας" +msgstr "Αποκόλληση τρέχουσας καρ&τέλας" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Επόμενη καρτέλα" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Προηγούμενη καρτέλα" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Εστίαση πάνω από το τερματικό" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Εστίαση κάτω από το τερματικό" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Εστίαση στο αριστερό τερματικό" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Εστίαση στο δεξί τερματικό" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Εστίαση στο αριστερό τερματικό" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Εστίαση κάτω από το τερματικό" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Εναλλαγή στην τελευταία καρτέλα" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Καρτέλες πρόσφατης χρήσης" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Εναλλαγή μεταξύ δύο καρτελών" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Καρτέλες πρόσφατης χρήσης (αντίστροφα)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Εναλλαγή μεγιστοποίησης τρέχουσας προβολής" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Εναλλαγή μεγιστοποίησης τρέχουσας προβολής" -#: ViewManager.cpp:311 -#, fuzzy, kde-format -#| msgctxt "@action Shortcut entry" -#| msgid "Toggle maximize current view" +#: ViewManager.cpp:327 +#, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" -msgstr "Εναλλαγή μεγιστοποίησης τρέχουσας προβολής" +msgstr "Εναλλαγή μεγέθυνσης-μεγιστοποίησης της τρέχουσας προβολής" -#: ViewManager.cpp:312 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Toggle maximize current view" +#: ViewManager.cpp:328 +#, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" -msgstr "Εναλλαγή μεγιστοποίησης τρέχουσας προβολής" +msgstr "Εναλλαγή μεγέθυνσης-μεγιστοποίησης της τρέχουσας προβολής" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Μετακίνηση καρτέλας δεξιά" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Μετακίνηση καρτέλας αριστερά" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Ρύθμιση σημασιολογικής ολοκλήρωσης (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Εναλλαγή εμφάνισης συμβουλών σημασιολογίας" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Εναλλαγή εμφάνισης αρίθμησης γραμμών" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Ισομεγέθεις προβολές" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Εναλλαγή στην καρτέλα %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Συμβουλές σημασιολογίας" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Αρίθμηση γραμμών " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Αποθήκευση διάταξης καρτελών" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Διάταξη προβολής κονσόλας (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3662,7 +3861,7 @@ msgstr "" "Παρουσιάστηκε πρόβλημα κατά την αποθήκευση της διάταξης.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3672,13 +3871,13 @@ msgstr "" "Παρουσιάστηκε πρόβλημα κατά τη φόρτωση της διάταξης.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Φόρτωση διάταξης καρτελών" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3770,10 +3969,9 @@ msgstr "Έλεγχος ροής" #. i18n: ectx: property (text), widget (QLabel, label_14) #: widgets/EditProfileAdvancedPage.ui:222 -#, fuzzy, kde-format -#| msgid "Default character encoding:" +#, kde-format msgid "&Default character encoding:" -msgstr "Προκαθορισμένη κωδικοποίηση χαρακτήρων:" +msgstr "&Προκαθορισμένη κωδικοποίηση χαρακτήρων:" #. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) #: widgets/EditProfileAdvancedPage.ui:242 @@ -3781,38 +3979,44 @@ msgstr "Προκαθορισμένη κωδικοποίηση χαρακτήρω msgid "Shortcut for peeking the primary screen:" msgstr "Συντόμευση για γρήγορη ματιά στην κύρια οθόνη:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 -#, fuzzy, kde-format -#| msgid "Line numbers " +#, kde-format +msgid "Set interval between autosaves:" +msgstr "Ορισμός διαστήματος μεταξύ των αυτό-αποθηκεύσεων:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" -msgstr "Αρίθμηση γραμμών " +msgstr "Αρίθμηση γραμμών:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 -#, fuzzy, kde-format -#| msgid "&Never" +#: widgets/EditProfileAdvancedPage.ui:285 +#, kde-format msgctxt "Never" msgid "&Never" msgstr "&Ποτέ" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 -#, fuzzy, kde-format -#| msgctxt "When showing URL hints" -#| msgid "When URL hints show" +#: widgets/EditProfileAdvancedPage.ui:295 +#, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" -msgstr "Εμφάνιση συμβουλών URL" +msgstr "Όταν εμφανίζονται υποδείξεις &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 -#, fuzzy, kde-format -#| msgctxt "Always" -#| msgid "Always" +#: widgets/EditProfileAdvancedPage.ui:305 +#, kde-format msgctxt "Always" msgid "A&lways" -msgstr "Πάντα" +msgstr "&Πάντα" #. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) #: widgets/EditProfileAppearancePage.ui:36 @@ -3844,7 +4048,7 @@ msgstr "Επεξεργασία του επιλεγμένου θέματος χρ #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3899,7 +4103,12 @@ msgstr "Σχεδίαση έντονων χρωμάτων σε έντονη γρ #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Χρήση της επιλεγμένης γραμματοσειράς για τους χαρακτήρες γραμμής αντί του " @@ -3907,28 +4116,29 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Χρήση χαρακτήρων γραμμής που περιέχει η γραμματοσειρά" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 -#, fuzzy, kde-format -#| msgid "" -#| "Use the selected font for line characters instead of the builtin code" +#, kde-format msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" msgstr "" -"Χρήση της επιλεγμένης γραμματοσειράς για τους χαρακτήρες γραμμής αντί του " -"ενσωματωμένου κώδικα" +"Χρήση της επιλεγμένης γραμματοσειράς για τους χαρακτήρες unicode Braille " +"αντί του ενσωματωμένου κώδικα" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 -#, fuzzy, kde-format -#| msgid "Use line characters contained in font" +#, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "Χρήση χαρακτήρων γραμμής που περιέχει η γραμματοσειρά" +msgstr "Χρήση χαρακτήρων unicode Braille που περιέχει η γραμματοσειρά" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -4033,29 +4243,45 @@ msgid "Make the cursor blink regularly" msgstr "Αναβόσβημα του δρομέα τακτικά" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Ενεργό" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Ενεργοποίηση:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Αναβόσβημα του δρομέα τακτικά" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Διάφορα" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Παράθυρο:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4065,149 +4291,146 @@ msgstr "" "παραθύρου μετά την αλλαγή μεγέθους" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Εμφάνιση υπόδειξης για το μέγεθος τερματικού μετά την αλλαγή μεγέθους" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Πάντα να αντιστρέφονται τα χρώματα του επιλεγμένου κειμένου" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Ένταση προς το σκούρο:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 -#, fuzzy, kde-format -#| msgctxt "Cursor color options" -#| msgid "Color:" +#: widgets/EditProfileAppearancePage.ui:569 +#, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Χρώμα:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 -#, fuzzy, kde-format -#| msgid "Select the color used to draw the cursor" +#: widgets/EditProfileAppearancePage.ui:585 +#, kde-format msgid "Select the color used to draw the border" -msgstr "Επιλέξτε το χρώμα που θα χρησιμοποιηθεί για τη σχεδίαση του δρομέα" +msgstr "" +"Επιλέξτε το χρώμα που χρησιμοποιείται για τη σχεδίαση του περιγράμματος" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Αδρανή τερματικά:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 -#, fuzzy, kde-format -#| msgid "Inactive Terminals:" +#: widgets/EditProfileAppearancePage.ui:617 +#, kde-format msgid "Active Terminals:" -msgstr "Αδρανή τερματικά:" +msgstr "Ενεργά τερματικά:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Περιεχόμενα τερματικού" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Διάστιχο γραμμής:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Ο αριθμός των εικονοστοιχείων μεταξύ δύο γραμμών" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Περιθώρια:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Στοίχιση στο κέντρο:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Ένδειξη (αν)ενεργού παραθύρου με μείωση της χρωματικής έντασης" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Πιο σκούρο" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 -#, fuzzy, kde-format -#| msgid "Indicate whether the window is active by dimming the colors" +#: widgets/EditProfileAppearancePage.ui:779 +#, kde-format msgid "Indicate whether the window is active by drawing a border" -msgstr "Ένδειξη (αν)ενεργού παραθύρου με μείωση της χρωματικής έντασης" +msgstr "" +"Επισήμανση αν το παράθυρο είναι ενεργό με τη σχεδίαση ενός περιγράμματος" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" -msgstr "" +msgstr "Περίγραμμα" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Εμφάνιση κατακόρυφης γραμμής στη στήλη:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Σύνθετη διάταξη κειμένου

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Σύνθετη διάταξη κειμένου" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Ενεργοποίηση αποτύπωσης κειμένου με λειτουργία λέξεων" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Λειτουργία λέξεων" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4217,43 +4440,43 @@ msgstr "" "αποτύπωση αλλαγών στις ιδιότητες καταστρέφει τη λέξη)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Χρήση των ίδιων ιδιοτήτων για όλη τη λέξη" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Να αποτυπώνονται μαζί οι λέξεις με ASCII χαρακτήρες" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII χαρακτήρες " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Να αποτυπώνονται μαζί οι λέξεις με χαρακτήρες Βραχμικής γραφής" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Χαρακτήρες Βραχμικής γραφής" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Γραμματοσειρά εμότζι:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4263,13 +4486,13 @@ msgstr "" "Φαρσί, ή Εβραϊκά μόνο)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Αποτύπωση διπλής κατεύθυνσης" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4277,85 +4500,83 @@ msgstr "" "πρώτος έντονος χαρακτήρας." #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "υποχρεωτική κατεύθυνση γραμμών από αριστερά (LTR)" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Να γίνεται μεταχείριση των χαρακτήρων σχεδίασης πίνακα ως έντονων LTR." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Αντικατάσταση λειτουργίας BiDi χαρακτήρων πίνακα" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 -#, fuzzy, kde-format -#| msgctxt "@action:button" -#| msgid "Paste &without control characters" +#: widgets/EditProfileAppearancePage.ui:1025 +#, kde-format msgid "Ignore wcwidth of problematic characters" -msgstr "Επικόλληση χωρί&ς χαρακτήρες ελέγχου" +msgstr "Αγνόηση του wcwidth των προβληματικών χαρακτήρων" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" -msgstr "" +msgstr "Παράκαμψη wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Επεξεργασία προφίλ" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Γενικά" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Καρτέλες" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Εμφάνιση" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Κύλιση" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Πληκτρολόγιο" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Πλήκτρα συνδυασμών" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Ποντίκι" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Για προχωρημένους" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4367,7 +4588,7 @@ msgstr "" "Ή αλλάξτε τα δικαιώματα του αρχείου ή αποθηκεύσετε τις ρυθμίσεις σε νέο " "προφίλ με άλλο όνομα." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4375,42 +4596,49 @@ msgstr "" "Το όνομα του προφίλ ήταν κενό: δώστε ένα όνομα για να μπορείτε να " "αποθηκεύσετε τις ρυθμίσεις." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Υπάρχει ήδη ένα προφίλ με το όνομα «%1»." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." -msgstr "" +msgstr "Το όνομα προφίλ υπερέβη το μέγιστο επιτρεπόμενο μήκος (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." -msgstr "" +msgstr "Οι επισημασμένοι χαρακτήρες είναι άκυροι σε ονόματα προφίλ: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Επεξεργασία του προφίλ: %2" msgstr[1] "Επεξεργασία %1 προφίλ: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Δημιουργία νέου προφίλ" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" -msgstr "Επεξεργασία του προφίλ \"%1\"" +msgstr "Επεξεργασία προφίλ «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Κανένα" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4420,7 +4648,7 @@ msgid_plural " columns" msgstr[0] " στήλη" msgstr[1] " στήλες" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4430,42 +4658,42 @@ msgid_plural " rows" msgstr[0] " γραμμή" msgstr[1] " γραμμές" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Κουδούνι συστήματος" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Ειδοποιήσεις συστήματος" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Οπτικό κουδούνι" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" -msgstr "Να αγνοούνται τα γεγονότα από το κουδούνι" +msgstr "Αγνόηση των γεγονότων από το κουδούνι" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Προκαθορισμένο προφίλ για τις νέες συνεδρίες τερματικού στο %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Επεξεργασία περιβάλλοντος" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Μια μεταβλητή περιβάλλοντος ανά γραμμή" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4473,23 +4701,23 @@ msgid_plural " seconds" msgstr[0] " δευτερόλεπτο" msgstr[1] " δευτερόλεπτα" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Επιλέξτε αρχικό κατάλογο" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." -msgstr "Νέο..." +msgstr "Λήψη νέου..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Αποτυχία φόρτωσης του θέματος %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4498,7 +4726,7 @@ msgstr "" "Αυτό το θέμα χρωμάτων έχει ένα διαφανές φόντο, το οποίο δε φαίνεται να " "υποστηρίζεται από το σύστημά σας." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4507,13 +4735,12 @@ msgstr "" "Το Konsole ξεκίνησε πριν την ενεργοποίηση των εφέ επιφάνειας εργασίας. " "Πρέπει να επανεκκινήσετε το Konsole για να δείτε διαφανές φόντο." -#: widgets/EditProfileDialog.cpp:1913 -#, fuzzy, kde-format -#| msgid "Default profile" +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format msgid "Default for file type" -msgstr "Προκαθορισμένο προφίλ" +msgstr "Προεπιλογή για τον τύπο αρχείου" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4542,7 +4769,7 @@ msgstr "" "θα αγνοηθεί και το αρχείο θα ανοίξει με τον προκαθορισμένο\n" "κειμενογράφο." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Προσαρμοσμένη εντολή κειμενογράφου" @@ -4602,10 +4829,9 @@ msgstr "/bin/sh" #. i18n: ectx: property (text), widget (QLabel, label_9) #: widgets/EditProfileGeneralPage.ui:157 -#, fuzzy, kde-format -#| msgid "Initial directory:" +#, kde-format msgid "I&nitial directory:" -msgstr "Αρχικός κατάλογος:" +msgstr "&Αρχικός κατάλογος:" #. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:170 @@ -4634,28 +4860,55 @@ msgstr "Επιλέξτε τον αρχικό κατάλογο" msgid "Start in same directory as current session" msgstr "Έναρξη στον ίδιο κατάλογο με την τρέχουσα συνεδρία" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Έναρξη στον ίδιο κατάλογο με την τρέχουσα συνεδρία" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Περιβάλλον:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" "Επεξεργασία λίστας των μεταβλητών περιβάλλοντος και των σχετιζόμενων τιμών" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 -#, fuzzy, kde-format -#| msgid "Initial terminal size:" +#: widgets/EditProfileGeneralPage.ui:320 +#, kde-format msgid "Initial terminal si&ze:" -msgstr "Αρχικό μέγεθος τερματικού:" +msgstr "Αρχικό &μέγεθος τερματικού:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4669,33 +4922,32 @@ msgstr "" "body>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 -#, fuzzy, kde-format -#| msgid "Terminal bell mode:" +#: widgets/EditProfileGeneralPage.ui:411 +#, kde-format msgid "&Terminal bell mode:" -msgstr "Λειτουργία κουδουνιού τερματικού:" +msgstr "&Λειτουργία κουδουνιού τερματικού:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Σημασιολογική ολοκλήρωση" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Εξομοίωση βελών πάνω/κάτω" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" "Το κλικ με το ποντίκι σε γραμμή εισαγωγής κειμένου μετακινεί τον δρομέα" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Συμβουλές σημασιολογίας:" @@ -4705,9 +4957,9 @@ msgstr "Συμβουλές σημασιολογίας:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4718,9 +4970,9 @@ msgstr "Ποτέ" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4731,34 +4983,34 @@ msgstr "Εμφάνιση συμβουλών URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Πάντα" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Κόκκινες γραμμές σφαλμάτων:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Κόκκινο φόντο σφαλμάτων:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Εναλλαγή γραμμών:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Εναλλαγή φόντου:" @@ -4845,17 +5097,15 @@ msgstr "Τριπλό κλικ επιλέγει:" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) #: widgets/EditProfileMousePage.ui:104 -#, fuzzy, kde-format -#| msgid "The whole line" +#, kde-format msgid "&The whole line" -msgstr "Όλη τη γραμμή" +msgstr "Όλ&η τη γραμμή" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 -#, fuzzy, kde-format -#| msgid "From mouse position to the end of line" +#, kde-format msgid "From mouse position to the end of &line" -msgstr "Από τη θέση του ποντικιού στο τέλος της γραμμής" +msgstr "Από τη θέση του ποντικιού στο τέλος της &γραμμής" #. i18n: ectx: property (text), widget (QLabel, label_13) #: widgets/EditProfileMousePage.ui:140 @@ -5125,61 +5375,101 @@ msgid "Scrollback:" msgstr "Κύλιση:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Κύλιση σελίδας πάνω/κάτω:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Να τονίζονται οι γραμμές καθώς προβάλλονται" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Κρυφό" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Μέγεθος κάθε δείκτη (ως ποσοστό του μήκους της γραμμής κύλισης):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Τονισμός:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Κύλιση σελίδας στο μισό ύψος του παραθύρου" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half screen height" +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format msgid "Half screen heigh&t" -msgstr "Ύψος μισής οθόνης" +msgstr "Ύψ&ος μισής οθόνης" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Χρώμα των δεικτών γραμμής κύλισης:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, fuzzy, kde-format +#| msgid "Color of scrollbar markers:" +msgid "Color of scrollbar search highlighting lines:" +msgstr "Χρώμα των δεικτών γραμμής κύλισης:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Επαναρροή γραμμών:" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Κύλιση σελίδας στο πλήρες ύψος του παραθύρου" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full screen height" -msgid "F&ull screen height" -msgstr "Ύφος πλήρους οθόνης" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format -msgid "Scrollbar position:" -msgstr "Θέση γραμμής κύλισης:" +msgid "F&ull screen height" +msgstr "Ύψος πλή&ρους οθόνης" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" "Εμφάνιση της γραμμής κύλισης στη δεξιά πλευρά του παραθύρου του τερματικού" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the right side" -#| msgid "Right side" +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" -msgstr "Δεξιά πλευρά" +msgstr "Δεξιά πλευ&ρά" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" @@ -5187,61 +5477,28 @@ msgstr "" "τερματικού" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the left side" -#| msgid "Left side" +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" -msgstr "Αριστερή πλευρά" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Κρυφό" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Τονισμός:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Να τονίζονται οι γραμμές καθώς προβάλλονται" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Επαναρροή γραμμών:" +msgstr "&Αριστερή πλευρά" #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Να γίνεται επαναρροή γραμμών όταν το τερματικό αλλάζει μέγεθος" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Θέση γραμμής κύλισης:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5312,10 +5569,9 @@ msgstr "Περιορισμός της απομνημόνευσης εξόδου #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 -#, fuzzy, kde-format -#| msgid "Fixed size:" +#, kde-format msgid "Fi&xed size:" -msgstr "Σταθερό μέγεθος:" +msgstr "Στα&θερό μέγεθος:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 @@ -5331,12 +5587,10 @@ msgstr "Απομνημόνευση ολόκληρης της εξόδου του #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgctxt "Save all lines to the scrollback history" -#| msgid "Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "Απεριόριστα" +msgstr "&Απεριόριστα" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5346,123 +5600,121 @@ msgstr "Μη απομνημόνευση προηγούμενης εξόδου" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Καμία" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Εύρεση..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Εισάγετε εδώ το κείμενο αναζήτησης" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Επόμενο" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Εύρεση του επόμενου ταιριάσματος της τρέχουσας φράσης αναζήτησης" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Προηγούμενο" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Εύρεση του προηγούμενου ταιριάσματος της τρέχουσας φράσης αναζήτησης" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Εμφάνιση του μενού επιλογών" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Κλείσιμο της γραμμής αναζήτησης" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Διάκριση πεζών/κεφαλαίων" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Ορίζει αν η αναζήτηση θα γίνει με διάκριση πεζών/κεφαλαίων" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Εμφάνιση του μενού επιλογών" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Κλείσιμο της γραμμής αναζήτησης" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Ταίριασμα κανονικής έκφρασης" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Τονισμός όλων που ταιριάζουν" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Ορίζει αν το κείμενο που θα βρεθεί θα τονιστεί" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Αναζήτηση προς τα πίσω" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Ορίζει αν η αναζήτηση θα ξεκινάει από το τέλος" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "" +msgstr "Χωρίς τύλιγμα" -#: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" -msgstr "Ορίζει αν η αναζήτηση θα ξεκινάει από το τέλος" +msgstr "Ορίζει αν η αναζήτηση θα σταματά αντί να ξεκινάει από το τέλος" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Εύρεση της τρέχουσας φράσης αναζήτησης από το τέλος" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5473,7 +5725,7 @@ msgstr "Εύρεση της τρέχουσας φράσης αναζήτησης msgid "Print Shell" msgstr "Κέλυφος εκτύπωσης" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5497,10 +5749,9 @@ msgstr "Μορφή τίτλου απομακρυσμένης καρτέλας:" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/RenameTabWidget.ui:79 -#, fuzzy, kde-format -#| msgid "Tab title format:" +#, kde-format msgid "&Tab title format:" -msgstr "Μορφή τίτλου καρτέλας:" +msgstr "&Μορφή τίτλου καρτέλας:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5510,10 +5761,16 @@ msgstr "Κανονική μορφή τίτλου καρτέλας" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgid "Tab Color:" +#, kde-format msgid "Tab Co&lor:" -msgstr "Χρώμα καρτέλας:" +msgstr "Χρώ&μα καρτέλας:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "Χρώ&μα καρτέλας:" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5608,36 +5865,61 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Επαναφορά τερματικού" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Άνοιγμα νέας καρτέλας" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Αποκόλληση καρτέλας" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Κλείσιμο αυτής της καρτέλας" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Αποκόλληση καρτέλας" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Διαμόρ&φωση ή μετονομασία καρτέλας..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Κλείσιμο καρτέλας" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "Μόλις έγινε χρήση των D-Bus μεθόδων sendText/runCommand. Υπάρχουν " +#~ "επιφυλάξεις ασφαλείας αν επιτρέπεται σε αυτές τις μεθόδους να είναι " +#~ "δημόσιες. Αν είναι επιθυμητό, οι μέθοδοι αυτές μπορούν να αλλάξουν σε " +#~ "εσωτερικές μόνο με την επανα-μεταγλώττιση του Konsole.

          Αυτή η " +#~ "προειδοποίηση θα εμφανιστεί μόνο μία φορά για αυτήν την εκτέλεση του " +#~ "Konsole.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Διάκριση πεζών/κεφαλαίων" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Καμία" diff --git a/local/recipes/kde/konsole/source/po/en_GB/konsole.po b/local/recipes/kde/konsole/source/po/en_GB/konsole.po index 9f673326f2..7624aa8a4e 100644 --- a/local/recipes/kde/konsole/source/po/en_GB/konsole.po +++ b/local/recipes/kde/konsole/source/po/en_GB/konsole.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-03 13:49+0100\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2024-11-23 12:11+0000\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English\n" "Language: en_GB\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 24.08.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -51,7 +51,7 @@ msgstr "View" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Split View" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "S&crollback" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Session Toolbar" @@ -167,48 +167,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Hide the menubar, overriding the default setting" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Show the tabbar, overriding the default setting" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Hide the tabbar, overriding the default setting" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Show the tabbar, overriding the default setting" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Hide the tabbar, overriding the default setting" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Start Konsole in fullscreen mode" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Disable transparent backgrounds, even if the system supports them." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "List the available profiles" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "List all the profile properties names and their type (for use with -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Change the value of a profile property." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -218,7 +234,7 @@ msgstr "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -228,13 +244,13 @@ msgstr "" "Force re-using the existing instance even if it breaks functionality, e. g. " "--new-tab. Mostly for debugging." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Arguments passed to command" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -252,157 +268,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Foreground" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Background" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Colour 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Colour 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Colour 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Colour 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Colour 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Colour 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Colour 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Colour 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Foreground (Intense)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Background (Intense)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Colour 1 (Intense)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Colour 2 (Intense)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Colour 3 (Intense)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Colour 4 (Intense)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Colour 5 (Intense)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Colour 6 (Intense)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Colour 7 (Intense)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Colour 8 (Intense)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Foreground (Faint)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Background (Faint)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Colour 1 (Faint)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Colour 2 (Faint)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Colour 3 (Faint)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Colour 4 (Faint)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Colour 5 (Faint)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Colour 6 (Faint)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Colour 7 (Faint)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Colour 8 (Faint)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -658,6 +674,41 @@ msgstr "Top" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Default]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -702,7 +753,7 @@ msgstr "" msgid "Copy Location" msgstr "Copy Location" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generating Thumbnail" @@ -733,13 +784,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Select font" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Show all fonts" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -779,17 +830,17 @@ msgstr "Key Combination" msgid "Output" msgstr "Output" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "New Key Binding List" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Edit Key Binding List" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "A key bindings scheme cannot be saved with an empty description." @@ -797,7 +848,7 @@ msgstr "A key bindings scheme cannot be saved with an empty description." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -831,225 +882,225 @@ msgstr "Input:" msgid "Output:" msgstr "Output:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminal emulator" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, The Konsole Developers" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "General maintainer, bug fixes and general improvements" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Previous maintainer, ported to KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Original author" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Major refactoring, bug fixes and major improvements" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Bug fixes and general improvements" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Bug fixes and major improvements" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "General improvements" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Bug fixes" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris support and history" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Bug fixes and improved startup performance" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Marking improvements" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1059,13 +1110,13 @@ msgstr "" "Embedded Konsole\n" "Toolbar and session names" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1075,25 +1126,25 @@ msgstr "" "Embedded Konsole\n" "General improvements" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visual effects" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1103,132 +1154,132 @@ msgstr "" "Code from the kvt project\n" "General improvements" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Schema and text selection improvements" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI port" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD port" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Thanks to many others.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&New Tab" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clone Tab" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "New &Window" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Close Window" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Bookmarks" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Window Colour Scheme" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Manage Profiles..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activate Menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Save Tab Layout..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Load Tab Layout..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1239,67 +1290,67 @@ msgstr[0] "" msgstr[1] "" "There are %1 processes running in this window. Do you still want to quit?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirm Close" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Close &Window" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Close Current &Tab" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "There are %1 open terminals in this window. Do you still want to quit?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiles" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "General" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memory" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Tab Bar / Splitters" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Temporary Files" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Thumbnails" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1383,7 +1434,7 @@ msgstr "Save" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Update" @@ -1395,27 +1446,27 @@ msgid "Cancel" msgstr "Cancel" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Quick Commands" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Show Quick Access" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "No quick commands found. You can add one on Plugins -> Quick Commands" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Plugins - Quick Commands" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Show Quick Commands" @@ -1457,7 +1508,7 @@ msgstr "" " with multiple configurations, are you sure?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "You are about to delete %1, are you sure?" @@ -1510,11 +1561,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 is a folder for SSH entries" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH Config" @@ -1576,24 +1627,24 @@ msgstr "" "Can't issue SSH command outside the shell application (eg, bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH Key" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Delete" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Do not Change" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1602,68 +1653,68 @@ msgstr "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Delete SSH Configurations" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "Imported SSH Profile
          Some settings are read only." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Missing Hostname" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Missing Name" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "If Use Ssh Config is set, do not specify sshkey or username." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "At least Username or SSHKey must be set" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Missing Folder" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "An SSH session must have a profile" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Cannot delete this folder" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Delete folder and all of its contents" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Double click to change the folder name." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "You cannot delete an automatically added entry." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Delete selected entry" @@ -1855,25 +1906,25 @@ msgstr "Output Options" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Printer &friendly mode (black text, no background)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Scale output" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Built-in" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Default profile" @@ -1932,17 +1983,39 @@ msgstr "Double click to change shortcut" msgid "Tab Properties" msgstr "Tab Properties" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Save Output From %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 is an invalid URL, the output could not be saved." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Failed to create autosave file at %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Stopping autosave due to switching of screens." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Autosave file has been modified externally, preventing further autosaves." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Failed to update autosave state on output changes." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1978,81 +2051,102 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Dark Pastels" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Green on Black" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux Colours" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Red on Black" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarised" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarised Light" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "White on Black" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Default (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux console" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris console" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Search:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Enter the text to search for here" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Bell in '%1' (Session '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Could not find binary: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Warning: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Could not find an interactive shell to start." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2061,336 +2155,339 @@ msgstr "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Could not start program '%1' with arguments '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silence in '%1' (Session '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Show session" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Finished" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program '%1' crashed." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program '%1' exited with status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem Progress" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activity in '%1' (Session '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "The process '%1' has finished running in session '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole does not know how to open the bookmark: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Search for '%1' with" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configure Web Shortcuts..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Close Session" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Open File Manager" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copy" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Split View Left-Right" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Split View Top-Bottom" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copy except prompts" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copy user input" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copy command output" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Paste Selection" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Web Search" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Select All" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Select &Mode" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Select &Line" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Save Output &As..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Auto Save Output As..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Stop Auto Save" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Print Screen..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Adjust Scrollback..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Clear Scrollback" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Clear Scrollback and Reset" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Next Profile" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Previous Profile" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Switch Profile" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Set &Encoding" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Allow Mouse Tracking" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Read-Only" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configure or Rename Tab..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&All Tabs in Current Window" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Select Tabs..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&None" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copy Input To" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem Upload..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "One-Shot Monitors" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Monitor for &Prompt" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitor for &Activity" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitor for &Silence" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitor for Process Finishing" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Enlarge Font" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Shrink Font" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Reset Font Size" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Send Signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspend Task" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continue Task" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Hang up" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrupt Task" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminate Task" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Kill Task" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "User Signal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "User Signal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Create New Profile..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Edit Current Profile..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2399,7 +2496,7 @@ msgstr "" "A program is currently running in this session. Are you sure you want to " "close it?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2408,18 +2505,18 @@ msgstr "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirm Close" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Close Program" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2428,37 +2525,40 @@ msgstr "" "A program in this session would not die. Are you sure you want to kill it " "by force?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "The program '%1' is in this session would not die. Are you sure you want to " "kill it by force?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Kill Program" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "The shell prompt is displayed in session '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Open Current Folder With" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Save ZModem Download to..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2469,14 +2569,14 @@ msgstr "" "software was found on this system.

          You may wish to install the 'rzsz' " "or 'lrzsz' package.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" "

          The current session already has a ZModem file transfer in progress.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2485,7 +2585,7 @@ msgstr "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Select Files for ZModem Upload" @@ -2508,144 +2608,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configure" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Search:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Enable menu accelerators" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "If enabled, profile settings will be ignored" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Remember window size" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Show window title on the titlebar" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Focus terminals when the mouse pointer is moved over them" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Match using regular expressions" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "When launching Konsole re-use existing process if possible" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Run all Konsole windows in a single process" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Highlight all matches" +msgid "If enabled, profile settings will be ignored" +msgstr "If enabled, profile settings will be ignored" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Sets whether the search is case sensitive" +msgid "Remember window size" +msgstr "Remember window size" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Case sensitive" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Put new tabs:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Process and window:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notifications:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "All dialogues will be shown again" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Enable all \"Do Not Ask Again\" messages" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Sets whether search should start from the bottom" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Search backwards" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Sets whether the search is case sensitive" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Case sensitive" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Process and window:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Highlight all matches" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Search:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Sets whether search should stop instead of wrapping" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "No wrap" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Enable menu accelerators" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Focus terminals when the mouse pointer is moved over them" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "All dialogues will be shown again" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Enable all \"Do Not Ask Again\" messages" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Show window title on the titlebar" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Remove window titlebar and frame" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Match using regular expressions" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2670,71 +2797,110 @@ msgstr "Use current window size on next startup" msgid "The window size will be saved upon exiting Konsole" msgstr "The window size will be saved upon exiting Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "When launching Konsole re-use existing process if possible" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Thumbnail Width" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Sets the width of the thumbnail" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Use Shift to display a thumbnail" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Use Alt to display a thumbnail" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Use Ctrl to display a thumbnail" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Search is case sensitive" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Highlight all search matches" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Sets whether matching text should be highlighted" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Search stops instead of wrapping" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Control whether child cgroups are created for individual tabs" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2743,91 +2909,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Control the visibility of the whole tab bar" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Control the size of the handle between panels" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Control the position of the tab bar" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Control the visual style of the tab bar" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Use a user-defined .css file for the tab bar" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "The .css file to use for the tab bar style" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Allow middle-clicking on open tabs to close them" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Control the visibility of 'New Tab' button on the tab bar" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Control the visibility of 'New Tab' button on the tab bar" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Control where the \"Close tab\" button will be displayed" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Control where to put the new tab" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Expand the tab widths" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "For scrollback files, use system-wide folder location" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "For scrollback files, use user's specific folder location" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "For scrollback files, use specified folder location" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "For scrollback files, use this folder" @@ -2839,16 +3012,23 @@ msgid "Enable memory monitoring:" msgstr "Enable memory monitoring:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Changes will take effect upon restart. If enabled, sustained memory " "consumption by Konsole\n" @@ -2859,13 +3039,13 @@ msgstr "" "excessively low values might still cause Konsole to be killed." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Memory limit:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3024,125 +3204,148 @@ msgctxt "Do not show a close button" msgid "None" msgstr "None" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Show Close Tab button:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Always" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Never" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Miscellaneous:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Show 'New Tab' button" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Expand individual tab widths to full window" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Use user-defined stylesheet:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(none)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Behaviour" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Put new tabs:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "At &the end" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "After current &tab" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Close tab on middle-click" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Splits" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Show Header:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "When needed" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Never" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Drag Handle Size:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Small" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Medium" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Large" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3194,12 +3397,12 @@ msgstr "px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3237,64 +3440,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Enable thumbnails generation" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Size: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Are you sure you want to paste %1 character?" msgstr[1] "Are you sure you want to paste %1 characters?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirm Paste" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "End Of Text/Interrupt: may exit the current process" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "End Of Transmission: may exit the current process" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Bell: will try to emit an audible warning" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: suspends output" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitute/Suspend: may suspend current process" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: used for manipulating terminal state" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "File Separator/Quit: may abort the current process" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3303,31 +3506,31 @@ msgstr "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirm Paste" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Paste &without control characters" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Paste everything" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Cancel" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspended by pressing Ctrl+S. Press Ctrl+Q to resume." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "This terminal is read-only." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Change &Directory To" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Paste Location" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Split View" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Split View Left/Right" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Split View Top/Bottom" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Split View Automatically" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Split View Left/Right from next tab" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Split View Top/Bottom from next tab" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Split View Automatically from next tab" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Load a new tab with layout 2x2 terminals" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Load a new tab with layout 2x1 terminals" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Load a new tab with layout 1x2 terminals" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expand View" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Shrink View" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Detach Current &View" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Detach Current &Tab" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Next Tab" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Previous Tab" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Focus Above Terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Focus Below Terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Focus Left Terminal" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Focus Right Terminal" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Focus Left Terminal" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Focus Below Terminal" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Switch to Last Tab" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Last Used Tabs" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Toggle Between Two Tabs" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Last Used Tabs (Reverse)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Toggle maximise current view" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Toggle maximise current view" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Toggle zoom-maximise current view" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Toggle zoom-maximise current view" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Move tab to the right" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Move tab to the left" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Setup semantic integration (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Toggle semantic hints display" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Toggle line numbers display" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Equal size to all views" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Switch to Tab %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantic hints " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Line numbers " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Save Tab Layout" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole View Layout (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3595,7 +3814,7 @@ msgstr "" "A problem occurred when saving the Layout.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3605,13 +3824,13 @@ msgstr "" "A problem occurred when loading the Layout.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Load Tab Layout" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3709,28 +3928,40 @@ msgstr "&Default character encoding:" msgid "Shortcut for peeking the primary screen:" msgstr "Shortcut for peeking the primary screen:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Set interval between autosaves:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Line Numbers:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Never" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "When &URL hints show" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3766,7 +3997,7 @@ msgstr "Edit the selected colour scheme" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3819,13 +4050,22 @@ msgstr "Draw intense colours in bold font" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Use the selected font for line characters instead of the builtin code" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Use line characters contained in font" @@ -3946,29 +4186,45 @@ msgid "Make the cursor blink regularly" msgstr "Make the cursor blink regularly" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Enabled" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Activation:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Make the cursor blink regularly" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Miscellaneous" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Window:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3978,144 +4234,144 @@ msgstr "" "resizing" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Show hint for terminal size after resizing" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Always invert the colours of selected text" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Darkening strength:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Colour:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Select the colour used to draw the border" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Inactive Terminals:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Active Terminals:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminal contents" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Line spacing:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "The number of pixels between two lines" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margins:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Align to centre:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indicate whether the window is active by dimming the colours" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Darken" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indicate whether the window is active by drawing a border" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Border" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Display Vertical line at column:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Complex Text Layout

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Complex Text Layout" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Enable word mode text rendering" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Word mode" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4125,43 +4381,43 @@ msgstr "" "when rendering)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Use the same attributes for whole word" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Render words of ASCII characters together" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII characters " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Render words of Brahmic scripts characters together" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Brahmic scripts characters" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji Font:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4171,95 +4427,95 @@ msgstr "" "Hebrew only)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Bi-Directional text rendering" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "Lines are always LTR, rather than determined by first strong character" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "force LTR line direction" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Treat table drawing characters as strong LTR." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Table characters BiDi mode override" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignore wcwidth of problematic characters" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Override wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Edit Profile" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "General" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Tabs" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Appearance" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Scrolling" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Keyboard" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Key bindings" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mouse" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Advanced" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4271,48 +4527,55 @@ msgstr "" ">Either change the permissions of that file or set a different name to save " "the settings to a new profile." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Profile Name was empty; please set a name to be able to save settings." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "A profile with the name \"%1\" already exists." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profile name exceeded maximum allowed length (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "The highlighted characters are invalid in profile names: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Editing profile: %2" msgstr[1] "Editing %1 profiles: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Create New Profile" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Edit Profile \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "None" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4322,7 +4585,7 @@ msgid_plural " columns" msgstr[0] " column" msgstr[1] " columns" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4332,42 +4595,42 @@ msgid_plural " rows" msgstr[0] " row" msgstr[1] " rows" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "System Bell" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "System Notifications" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Visual Bell" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignore Bell Events" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Default profile for new terminal sessions in %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Edit Environment" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "One environment variable per line" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4375,23 +4638,23 @@ msgid_plural " seconds" msgstr[0] " second" msgstr[1] " seconds" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Select Initial Directory" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Get New..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Scheme %1 failed to load." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4400,7 +4663,7 @@ msgstr "" "This colour scheme uses a transparent background which does not appear to be " "supported on your desktop" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4409,12 +4672,12 @@ msgstr "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Default for file type" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4443,7 +4706,7 @@ msgstr "" "will be ignored and the file will be opened by the default text\n" "editor." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Text Editor Custom Command" @@ -4533,26 +4796,54 @@ msgstr "Choose the initial directory" msgid "Start in same directory as current session" msgstr "Start in same directory as current session" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Start in same directory as current session" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Environment:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Edit the list of environment variables and associated values" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Initial terminal si&ze:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4565,31 +4856,31 @@ msgstr "" "for these entries to work.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Terminal bell mode:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantic Integration" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Up/Down Arrows emulation" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Mouse click in input line moves cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantic hints:" @@ -4599,9 +4890,9 @@ msgstr "Semantic hints:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4612,9 +4903,9 @@ msgstr "Never" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4625,34 +4916,34 @@ msgstr "When URL hints show" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Always" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Red error bars:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Red error background:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Alternating bars:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Alternating background:" @@ -5004,115 +5295,128 @@ msgid "Scrollback:" msgstr "Scrollback:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Scroll Page Up/Down:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Highlight the lines coming into view" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Hidden" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Size of each marker (as a percentage of scrollbar length):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Highlighting:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Scroll the page the half height of window" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Half screen heigh&t" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Colour of scrollbar markers:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, fuzzy, kde-format +#| msgid "Color of scrollbar markers:" +msgid "Color of scrollbar search highlighting lines:" +msgstr "Colour of scrollbar markers:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Reflow Lines:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Scroll the page the full height of window" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "F&ull screen height" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Scrollbar position:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Show the scroll bar on the right side of the terminal window" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Ri&ght side" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Show the scroll bar on the left side of the terminal window" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Left side" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Hidden" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Highlighting:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Highlight the lines coming into view" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Reflow Lines:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Reflow lines when terminal resizes" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Colour of scrollbar markers:" +msgid "Scrollbar position:" +msgstr "Scrollbar position:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Size of each marker (as a percentage of scrollbar length):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5218,115 +5522,116 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&None" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Find..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Enter the text to search for here" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Next" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Find the next match for the current search phrase" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Previous" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Find the previous match for the current search phrase" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Display the options menu" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Close the search bar" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Case sensitive" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Sets whether the search is case sensitive" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Display the options menu" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Close the search bar" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Match regular expression" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Highlight all matches" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Sets whether matching text should be highlighted" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Search backwards" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Sets whether search should start from the bottom" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "No wrap" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Sets whether search should stop instead of wrapping" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Search for the current search phrase from the bottom" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5337,7 +5642,7 @@ msgstr "Search for the current search phrase from the top" msgid "Print Shell" msgstr "Print Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5377,6 +5682,13 @@ msgstr "Normal tab title format" msgid "Tab Co&lor:" msgstr "Tab Co&lour:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Select &Tab Colour" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5470,36 +5782,59 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restore terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Open a new tab" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Detach Tab" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Close this tab" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Detach Tab" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configure or Rename Tab..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Close Tab" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Case sensitive" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "None" @@ -6138,9 +6473,6 @@ msgstr "Close Tab" #~ msgid "New" #~ msgstr "New" -#~ msgid "Select &Tab Color" -#~ msgstr "Select &Tab Colour" - #, fuzzy #~ msgid "Enable transparent backgrounds" #~ msgstr "Transparent, Dark Background" @@ -6720,9 +7052,6 @@ msgstr "Close Tab" #~ msgid "Overwrite" #~ msgstr "Overwrite" -#~ msgid "Unable to write to file." -#~ msgstr "Unable to write to file." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/eo/konsole.po b/local/recipes/kde/konsole/source/po/eo/konsole.po index 02c666b9ff..a20db80ac9 100644 --- a/local/recipes/kde/konsole/source/po/eo/konsole.po +++ b/local/recipes/kde/konsole/source/po/eo/konsole.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-20 17:03+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2025-02-23 13:36+0100\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: Esperanto \n" "Language: eo\n" @@ -61,7 +61,7 @@ msgstr "Rigardo" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dividita rigardo" @@ -97,7 +97,7 @@ msgid "S&crollback" msgstr "Retro&rulumo" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Seanca Ilobreto" @@ -178,49 +178,65 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Kaŝi la menubreton, superregante la defaŭltan agordon" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Montri la langon, superregante la defaŭltan agordon" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Kaŝi la langeton, superregante la defaŭltan agordon" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Montri la langon, superregante la defaŭltan agordon" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Kaŝi la langeton, superregante la defaŭltan agordon" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Lanĉi Konsole en plenekrana reĝimo" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Malebligi travideblajn fonojn, eĉ se la sistemo subtenas ilin." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Listigi uzeblajn profilojn" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Listigu ĉiujn nomojn de profilaj propraĵoj kaj ilia tipo (por uzo kun -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Ŝanĝi la valoron de profila eco." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +246,7 @@ msgstr "" "Ordono por plenumi. Ĉi tiu opcio kaptos ĉiujn sekvajn argumentojn, do uzu " "ĝin kiel la lastan opcion." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -240,13 +256,13 @@ msgstr "" "Devigi reuzon de la ekzistanta instanco eĉ se ĝi rompas funkciecon, ekz. --" "new-tab. Plejparte por sencimigado." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumentoj por komando" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -264,157 +280,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Malfono" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fono" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Koloro 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Koloro 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Koloro 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Koloro 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Koloro 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Koloro 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Koloro 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Koloro 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Malfono (intensa)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fono (intensa)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Koloro 1 (intensa)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Koloro 2 (intensa)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Koloro 3 (intensa)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Koloro 4 (intensa)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Koloro 5 (intensa)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Koloro 6 (intensa)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Koloro 7 (intensa)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Koloro 8 (intensa)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Malfono (Malforta)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fono (Malforta)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Koloro 1 (Malforta)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Koloro 2 (Malforta)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Koloro 3 (Malforta)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Koloro 4 (Malforta)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Koloro 5 (Malforta)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Koloro 6 (Malforta)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Koloro 7 (Malforta)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Koloro 8 (Malforta)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -670,6 +686,41 @@ msgstr "Supre" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Gastiganto: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr "[Defaŭlte]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -715,7 +766,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopii Lokon" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generante Bildeton" @@ -746,13 +797,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Elekti tiparon" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Montri ĉiujn tiparojn" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -792,17 +843,17 @@ msgstr "Klavokombino" msgid "Output" msgstr "Eligo" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nova listo de klavkombinoj" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Modifi liston de klavkombinoj" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Ŝlosilbindaj skemo ne povas esti konservita kun malplena priskribo." @@ -810,7 +861,7 @@ msgstr "Ŝlosilbindaj skemo ne povas esti konservita kun malplena priskribo." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -844,225 +895,225 @@ msgstr "Enigo:" msgid "Output:" msgstr "Eligo:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konzolo" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalimitilo" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, La Konzol-Programistoj" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Ĝenerala prizorganto, korektoj de cimoj kaj ĝeneralaj plibonigoj" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Antaŭa prizorganto, portita al KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Origina aŭtoro" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Grava refactoring, eraroj korektoj kaj gravaj plibonigoj" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Karlo Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Cimokorektoj kaj ĝeneralaj plibonigoj" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Cimkorektoj kaj gravaj plibonigoj" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Ĝeneralaj plibonigoj" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Cimokorektado" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solarisa subteno kaj laboro pri la historio" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Cimokorektado kaj plibonigita lanĉa rendimento" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Erarokorekto kaj plibonigoj" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1072,13 +1123,13 @@ msgstr "" "Enkorpigita Konzolo\n" "Ilobretaj kaj seancaj nomoj" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1088,25 +1139,25 @@ msgstr "" "Enkorpigita Konzolo\n" "Ĝeneralaj plibonigoj" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vidaj efektoj" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1116,132 +1167,132 @@ msgstr "" "Kodo de la kvt-projekto\n" "Ĝeneralaj plibonigoj" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Skemo- kaj elekto-plibonigoj" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Portado al SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Portado al FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Kaj dankon al multaj aliaj.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nova Langeto" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Kloni Langeton" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nova &Fenestro" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Fermi Fenestron" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Legosignoj" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Fenestra Kolorskemo" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Administri Profilojn..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktivigi Menuon" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Konservi Tab-Aranĝon..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Ŝargi langeton-aranĝon..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1251,68 +1302,68 @@ msgstr[0] "Estas procezo rulanta en ĉi fenestro. Ĉu vi tamen volas rezigni?" msgstr[1] "" "Estas %1 procezoj rulantaj en tiu ĉi fenestro. Ĉu vi tamen volas rezigni?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Konfirmi Fermon" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Fermi &Fenestron" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Fermi Nunan Lange&ton" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Estas %1 malfermitaj terminaloj en ĉi tiu fenestro. Ĉu vi ankoraŭ volas ĉesi?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiloj" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Ĝenerala" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memoro" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Tab Bar / Splitters" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Provizoraj Dosieroj" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Bildetojn" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1396,7 +1447,7 @@ msgstr "Konservi" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Ĝisdatigo" @@ -1408,29 +1459,29 @@ msgid "Cancel" msgstr "Nuligi" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Fulmokomandoj" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Montri Rapidan Aliron" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Neniuj fulmkomandoj trovitaj. Vi povas aldoni tian per Kromaĵoj -> " "Fulmokomandoj" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Kromprogramoj - Fulmokomandoj" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Montri Fulmkomandojn" @@ -1472,7 +1523,7 @@ msgstr "" " kun pluraj agordoj, ĉu vi certas?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Vi estas forigonta %1, ĉu vi certas?" @@ -1525,11 +1576,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 estas dosierujo por SSH-enskriboj" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH-agordo" @@ -1591,24 +1642,24 @@ msgstr "" "Ne povas doni SSH-komandon ekster la ŝela aplikaĵo (ekz., bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Ŝlosilo SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Forigi" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ne Ŝanĝi" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1617,68 +1668,68 @@ msgstr "" "Vi estas forigonta la dosierujon %1,\n" " kun pluraj SSH-agordoj, ĉu vi certas?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Forigi SSH-Agordojn" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "Importita SSH-Profilo
          Iuj metoj estas nur-legaj." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Mankas Gastnomo" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Mankas Nomo" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "Se Uzi Ssh Config estas agordita, ne specifi sshkey aŭ uzantnomon." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Almenaŭ Uzantnomo aŭ SSHKey devas esti agordita" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Mankas Dosierujo" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH-seanco devas havi profilon" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Ne povas forigi ĉi tiun dosierujon" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Forigi dosierujon kaj ĝian tutan enhavon" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Duoble alklaku por ŝanĝi la dosierujon." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Vi ne povas forigi aŭtomate aldonitan enskribon." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Forigi elektitan eniron" @@ -1866,29 +1917,29 @@ msgstr "Neniuj kromaĵoj haveblaj" #: PrintOptions.ui:14 PrintOptions.ui:20 #, kde-format msgid "Output Options" -msgstr "Eligo Opcioj" +msgstr "Elektebloj de Eligo" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Presil-amika reĝimo (nigra teksto, sen &fono)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skali eligon" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Enkonstruita" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Defaŭlta profilo" @@ -1947,17 +1998,40 @@ msgstr "Duoble alklaku por ŝanĝi ŝparvojon" msgid "Tab Properties" msgstr "Tabeto Propraĵoj" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Konservi eligon el %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 ne estas valida adreso, ne povis konservi la eligon." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Malsukcesis krei aŭtokonservan dosieron ĉe %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Haltigante aŭtokonservon pro ŝanĝado de ekranoj." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Aŭtokonserva dosiero estos modifita de ekstere, preventante pluajn " +"aŭtokonservojn." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Malsukcesis ĝisdatigi aŭtokonservan staton pri eligaj ŝanĝoj." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1993,81 +2067,98 @@ msgstr "Vento" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Malhelaj Paŝteloj" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verda sur nigra" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linuksaj koloroj" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Ruĝa sur Nigra" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Sunigita" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Sunigita Lumo" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanka sur nigra" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Defaŭlta (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linuksa konzolo" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-konzolo" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Serĉi..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Enmetu langetnomon serĉendan ĉi tie" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Pepo en '%1' (Seanco '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Ne eblis trovi binaron:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Averto:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Ne eblis trovi interagan ŝelon por komenci." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2076,336 +2167,339 @@ msgstr "" "Ne eblis trovi '%1', komencante '%2' anstataŭe. Bonvolu kontroli viajn " "profilajn agordojn." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Ne eblis lanĉi programon '%1' kun argumentoj '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silento en '%1' (Seanco '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Montri seancon" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"La D-Bus-metodoj sendText/runCommand ĵus estis uzitaj. Estas sekurecaj " -"zorgoj pri permeso al ĉi tiuj metodoj esti publikaj. Se vi deziras, ĉi tiuj " -"metodoj povas esti ŝanĝitaj al nur interna uzo per rekompilo de Konsole. " -"

          Ĉi tiu averto aperos nur unufoje por ĉi tiu kazo de Konsole.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Finita" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programo '%1' paneis." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programo '%1' finiĝis kun stato %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progreso de ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Agado en '%1' (Seanco '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konzolo" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "La procezo '%1' finiĝis en la seanco '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ne scias kiel malfermi la legosignon:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Serĉi '%1' per" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Agordi Retajn Ŝparvojojn..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Fermi Seancon" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Malfermi Dosieran Administranton" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopii" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dividi Perspektivon Maldekstre-Dekstre" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dividi Perspektivon Supre-Malsupre" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopii krom invitoj" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopii uzanta enigo" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopii komanda eligo" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Enmeti elekton" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "TTT-serĉo" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Selekti ĉiujn" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Elekti Reĝi&mon" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Elekti &Linion" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." -msgstr "Konservi elig&aĵon kiel..." +msgstr "Konservi elig&aĵon Kiel..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Aŭtokonservi Eligaĵon Kiel..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Halti Aŭtokonservon" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Presi Ekranon..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Alĝustigi Srollback..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Forviŝi rulumhistorion" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Klara Scrollback kaj Restarigi" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Sekva Profilo" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Antaŭa Profilo" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Ŝanĝi Profilon" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "M&eti Kodigon" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permesi Musan Spuradon" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Nur-Legebla" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Agordi aŭ Alinomi Langeton..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Ĉiuj L&angetoj en Aktuala Fenestro" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Selekti Langetojn..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Neniu" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopii Enigo Al" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModema Alŝuto..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Unufojaj Monitoroj" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Monitoro por Ŝel&invitilo" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitoro por &Aktiveco" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitoro por &Silento" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitoro por Proceza Finado" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Pligrandigi tiparon" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Ŝrumpi Tiparo" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Restarigi Tiparo Grandeco" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Sendi Signalon" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspendi Taskon" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Daŭrigi Taskon" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Haltigi" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrompi Taskon" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Finigi &Taskon" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Mortigi Tas&kon" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Uzanta Signalo &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Uzanta Signalo &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Krei novan profilon..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Modifi nunan profilon..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2414,7 +2508,7 @@ msgstr "" "Vi havas plurajn langetojn en ĉi tiu fenestro, ĉu vi certas ke vi volas " "finiĝi?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2423,18 +2517,18 @@ msgstr "" "La programo '%1' nuntempe funkcias en ĉi tiu seanco. Ĉu vi certas, ke vi " "volas fermi ĝin?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Konfirmi fermon" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Fermi Programon" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2443,37 +2537,37 @@ msgstr "" "Programo en ĉi tiu seanco ne mortus. Ĉu vi certas, ke vi volas mortigi ĝin " "perforte?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "La programo '%1' en ĉi tiu seanco ne mortus. Ĉu vi certas, ke vi volas " "mortigi ĝin perforte?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Mortigi Programon" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "La ŝelinvito estas montrata en seanco '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Malfermi Nunan Dosierujon Kun" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Konservi ZModem Elŝutu al..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2484,13 +2578,13 @@ msgstr "" "taŭga ZModem-programaro estis trovita en ĉi tiu sistemo.

          Vi eble volu " "instali la pakaĵon 'rzsz' aŭ 'lrzsz'.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "

          La nuna seanco jam havas ZModem-dosiertransdonon en progreso.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2499,7 +2593,7 @@ msgstr "" "

          Neniu taŭga ZModem-programaro estis trovita en ĉi tiu sistemo.

          Vi " "eble volu instali la pakaĵon 'rzsz' aŭ 'lrzsz'.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Elekti Dosieroj por ZModem Alŝuto" @@ -2522,144 +2616,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Agordi" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Serĉu:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Ebligi menuakceliloj" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Se ĝi estas ebligita, profilaj agordoj estos ignoritaj" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Memori fenestrograndecon" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Montri fenestrotitolon sur la titolbreto" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Enfokusigi terminalojn kiam la musmontrilo estas movita super ili" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Parigi uzante regulajn esprimojn" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Dum lanĉo de Konsole reuzi ekzistantan procezon se eble" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Ruli ĉiujn Konsole-fenestrojn en ununura procezo" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Emfazi ĉiujn kongruojn" +msgid "If enabled, profile settings will be ignored" +msgstr "Se ĝi estas ebligita, profilaj agordoj estos ignoritaj" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Agordas ĉu la serĉo distingas minusklecojn" +msgid "Remember window size" +msgstr "Memori fenestrograndecon" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Usklecodistinga" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Metu novajn langetojn:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Forigi fenestrotitolon kaj kadron" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Procezo kaj fenestro:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Sciigoj:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Ĉiuj dialogoj estos montritaj denove" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Ebligi ĉiujn mesaĝojn \"Ne Demandu Denove\"." - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Difinas ĉu serĉo devas komenci de malsupre" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Serĉi malantaŭen" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Agordas ĉu la serĉo distingas minusklecojn" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Usklecodistinga" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Procezo kaj fenestro:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Emfazi ĉiujn kongruojn" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Serĉu:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Difinas ĉu serĉo haltu anstataŭ volvi" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Neniu volvo" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Ebligi menuakceliloj" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Enfokusigi terminalojn kiam la musmontrilo estas movita super ili" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Ĉiuj dialogoj estos montritaj denove" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Ebligi ĉiujn mesaĝojn \"Ne Demandu Denove\"." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Montri fenestrotitolon sur la titolbreto" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Forigi fenestrotitolon kaj kadron" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Parigi uzante regulajn esprimojn" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2684,71 +2805,110 @@ msgstr "Uzi la nunan fenestran grandecon ĉe la sekva ekfunkciigo" msgid "The window size will be saved upon exiting Konsole" msgstr "La fenestra grandeco estos konservita post eliro de Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Dum lanĉo de Konsole reuzi ekzistantan procezon se eble" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Bildeto Larĝo" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Agordas la larĝon de la bildeto" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Uzi Shift por montri bildeton" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Uzi Alt por montri bildeton" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Uzi Ctrl por montri bildeton" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Serĉo distingas majusklojn" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Emfazi ĉiujn serĉajn kongruojn" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Difinas ĉu teksto kiu kongruas devus esti emfazita" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Serĉo haltas anstataŭ volvi" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Regi ĉu infanaj cgroups estas kreitaj por individuaj langetoj" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2756,91 +2916,97 @@ msgstr "Determinas la memorkonsuman nivelon super kiu la limigado komenciĝos" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Regi la videblecon de la tuta langeto" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Regi la grandecon de la tenilo inter paneloj" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Regi la pozicion de la langeto" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Regi la vidan stilon de la langeto" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Uzi uzant-difinitan .css-dosieron por la langeto" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "La .css-dosiero por uzi por la stilo de langeto" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permesi mezklaki sur malfermitaj langetoj por fermi ilin" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Regi la videblecon de la butono \"Nova Langeto\" sur la langeto" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Regi la videblecon de la butono 'Serĉi Langetojn' sur la langetaro" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Regi kie la butono \"Fermi langeton\" estos montrita" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Regi kie meti la novan langeton" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Pligrandigi la langetojn" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Por ruldorsaj dosieroj, uzi la tutsisteman dosierujon" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Por ruldorsaj dosieroj, uzi la specifan dosierujon de uzanto" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Por ruldorsaj dosieroj, uzi specifitan dosierujon" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Por ruldorsaj dosieroj, uzi ĉi tiun dosierujon" @@ -2852,16 +3018,23 @@ msgid "Enable memory monitoring:" msgstr "Ebligi monitoradon de memoro:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Ŝanĝoj efektiviĝos post rekomenco. Se ebligita, daŭra memorkonsumado de " "Konsole\n" @@ -2871,13 +3044,13 @@ msgstr "" "troe malaltaj valoroj povus ankoraŭ kaŭzi Konsole esti mortigita." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Memorlimo:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3038,125 +3211,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Neniu" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Montri la butonon Serĉi Langetoin:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Ĉiam" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Neniam" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diversaĵoj:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Montri la butonon \"Nova langeto\"." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Pligrandigi individuajn langetajn larĝojn al plena fenestro" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Uzi stilfolion difinitan de uzanto:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(neniu)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Konduto" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Metu novajn langetojn:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Ĉe la &fino" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Post ak&tuala langeto" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Fermi langeton ĉe mezklako" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Splitoj" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Montru kaplinion:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Kiam necesas" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Neniam" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Tren-Tenila Grandeco:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Malgranda" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Meza" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Granda" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3208,12 +3399,12 @@ msgstr "px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Por uzi ĉi tiun funkcion, ebligu Muso->Diverse->Substreku dosieroj en viaj profilaj agordoj

          " +"weight:600;\">Muso->Diversaj->Substreki dosierojn en viaj profilaj " +"agordoj

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3251,64 +3442,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Ebligi la generadon de bildetoj" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Grando: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Ĉu vi certas ke vi volas alglui %1 signon?" msgstr[1] "Ĉu vi certas ke vi volas alglui %1 signojn?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Konfirmi Algluon" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Fino de Teksto/Interrompo: povas eliri la nunan procezon" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Fino de Transdono: povas eliri la nunan procezon" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Sonorilo: provos elsendi aŭdeblan averton" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: suspendas eliron" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Anstataŭaĵo/Suspendi: povas suspendi la nunan procezon" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Fuĝo: uzata por manipuli fina staton" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Dosiera Disigilo/Ĉu: povas ĉesigi la nunan procezon" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3317,31 +3508,31 @@ msgstr "" "La teksto, kiun vi provas alglui, enhavas kaŝitajn stirsignojn, ĉu vi volas " "filtri ilin?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Konfirmi Paston" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Alglui &sen stirsignoj" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Alglui ĉion" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Nuligi" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been Eligo estis interrompita premante Ctrl+S. Premu Ctrl+Q por rekomenci." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Ĉi tiu terminalo estas nurlegebla." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Ŝanĝi &Dosierujon Al" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Alglui Lokon" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Dividita rigardo" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dividi rigardon vertikale" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dividi rigardon horizontale" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dividi Vidon Aŭtomate" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dividi Vidon Maldekstren/Dekstren de la sekva langeto" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dividi Vidon Supre/Malsupre de la sekva langeto" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dividi Vidon Aŭtomate de la sekva langeto" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Ŝargi novan langeton kun aranĝo 2x2 terminaloj" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Ŝargi novan langeton kun aranĝo 2x1-terminaloj" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Ŝargi novan langeton kun aranĝo 1x2-terminaloj" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Etendi rigardon" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Maletendi rigardon" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Forigi Aktualan &Vidon" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Forigi Aktualan Lage&ton" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Sekva Tab" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Antaŭa Tab" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fokuso Super Terminalo" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fokuso Sub Terminalo" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fokuso Maldekstra Terminalo" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fokuso Dekstra Terminalo" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokuso Maldekstra Terminalo" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokuso Sub Terminalo" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Ŝanĝi al Lasta Langeto" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Laste Uzitaj Langetoj" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Ŝanĝi inter du langetoj" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Laste Uzitaj Langetoj (Reverso)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Ŝaltigi maksimumigi la nunan vidon" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Ŝaltigi maksimumigi la nunan vidon" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Baskuligi zom-maksimumigi aktualan vidon" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Baskuligi zom-maksimumigi nunan vidon" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Movi langeton dekstren" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Movi langeton maldekstren" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Agordi semantikan integriĝon (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Baskuligi semantikajn sugestojn" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Baskuligi lininumerojn montri" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Egala grandeco al ĉiuj vidoj" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Ŝalti al langeto %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantikaj sugestoj" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Linia nombroj" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Konservi langetan aranĝon" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole Vida Aranĝo (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3608,7 +3815,7 @@ msgstr "" "Problemo okazis dum konservado de la Aranĝo.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3618,13 +3825,13 @@ msgstr "" "Problemo okazis dum ŝargo de la Aranĝo.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Ŝargi Tab Aranĝo" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3722,28 +3929,40 @@ msgstr "&Defaŭlta signokodprezento:" msgid "Shortcut for peeking the primary screen:" msgstr "Ŝparvojo por kaŝrigardi la ĉefan ekranon:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Meti intervalon inter aŭtokonservadoj:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms " + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Linionombroj:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Neniam" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Kiam montriĝas &URL-helpetoj" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3779,7 +3998,7 @@ msgstr "Modifi la elektitan koloraron" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3832,13 +4051,22 @@ msgstr "Desegni intensajn kolorojn per grasa tiparo" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Uzu la elektitan tiparon por liniosignoj anstataŭ la enkonstruita kodo" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Uzi liniajn signojn enhavitajn en tiparo" @@ -3959,29 +4187,45 @@ msgid "Make the cursor blink regularly" msgstr "Pulsigi la kursoron periode" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Ebligita" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktivigo:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Pulsigi la kursoron periode" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diversaj" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Fenestro:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3991,144 +4235,144 @@ msgstr "" "regrandigo" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Montri helpeton pri terminalgrandeco post regrandigo" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Ĉiam inversigi la kolorojn de elektita teksto" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Malheliga forto:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Koloro:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Elektu la koloron por desegni la borderon" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Neaktivaj Terminaloj:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Aktivaj Terminaloj:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminal-enhavo" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Linia interspaco:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "La nombro da pikseloj inter du linioj" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marĝenoj:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Vicigi al la centro:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indiki ĉu la fenestro estas aktiva mallumigante la kolorojn" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Mallumigi" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indiki ĉu la fenestro estas aktiva grafikante borderon" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Bordero" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Montri Vertikalan linion ĉe kolumno:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Kompleksa Teksta Aranĝo

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Kompleksa Teksta Aranĝo" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Ebligi tekstoreĝimon de vortreĝimo" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Vorta reĝimo" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4138,43 +4382,43 @@ msgstr "" "bildigo)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Uzi la samajn atributojn por tuta vorto" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Redoni vortojn de ASCII-signoj kune" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII-signoj" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Kunigi vortojn de brahmaj skribaj signoj" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Brahmaj skriptosignoj" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji-Tiparo:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4184,95 +4428,95 @@ msgstr "" "aŭ la hebrea)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Dudirekta teksta bildigo" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "Linioj ĉiam estas LTR, prefere ol determinitaj per unua forta signo" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "devigi LTR-linian direkton" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Trakti tabelajn desegnajn signojn kiel fortan LTR." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Tabelsignoj BiDi reĝimo anstataŭas" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignori wcwidth de problemecaj signoj" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Superregi wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Redakti profilon" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Ĝenerala" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Langetoj" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aspekto" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rulumado" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klavaro" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Klavkombinoj" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Muso" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Altnivela" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4284,49 +4528,56 @@ msgstr "" "ŝanĝu la permesojn de tiu dosiero aŭ agordu alian nomon por konservi la " "agordojn al nova profilo." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" "Profila Nomo estis malplena; bonvolu meti nomon por povi konservi agordojn." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Profilo kun la nomo \"%1\" jam ekzistas." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profilnomo superis maksimume allaseblan longon (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "La elstarigitaj signoj estas nevalidaj en profilnomoj: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Redaktante profilon: %2" msgstr[1] "Redaktante %1 profilojn: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Krei Novan Profilon" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Redakti profilon \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Neniu" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4336,7 +4587,7 @@ msgid_plural " columns" msgstr[0] " kolumno" msgstr[1] " kolumnoj" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4346,42 +4597,42 @@ msgid_plural " rows" msgstr[0] " vico" msgstr[1] " vicoj" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sistempepo" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Sistema Sciigoj" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Vida Sonorilo" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignori Sonorilajn Events" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Defaŭlta profilo por novaj finaj seancoj en %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Redakti ĉirkaŭaĵon" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Unu mediovariablo per linio" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4389,23 +4640,23 @@ msgid_plural " seconds" msgstr[0] " sekundo" msgstr[1] " sekundoj" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Elekti komencan dosierujon" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Ekpreni Novan..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Skemo %1 malsukcesis ŝargi." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4413,7 +4664,7 @@ msgid "" msgstr "" "Ĉi tiu koloraro uzas travideblan fonon kiun ŝajne via labortablo ne subtenas." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4422,12 +4673,12 @@ msgstr "" "Konsole estis komencita antaŭ ol labortablaj efikoj estis ebligitaj. Vi " "devas rekomenci Konsole por vidi travideblan fonon." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Defaŭlto por dosiertipo" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4456,7 +4707,7 @@ msgstr "" "estos ignorita kaj la dosiero estos malfermita per la defaŭlta tekst-\n" "redaktilo." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Tekstredaktilo Propra Komando" @@ -4546,26 +4797,54 @@ msgstr "Elekti la komencan dosierujon" msgid "Start in same directory as current session" msgstr "Komenci en la sama dosierujo kiel nuna seanco" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Komenci en la sama dosierujo kiel nuna seanco" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Mediovariabloj:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Modifi la liston de mediovariabloj kaj rilataj valoroj" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Komenca terminal-grande&co:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4578,31 +4857,31 @@ msgstr "" "ke ĉi tiuj enskriboj funkciu .

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Terminalpepa reĝimo:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantika Integriĝo" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Supren/Malsupren Sagoj emulado" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Musklako en eniglinio movas kursoron" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantikaj sugestoj:" @@ -4612,9 +4891,9 @@ msgstr "Semantikaj sugestoj:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4625,9 +4904,9 @@ msgstr "Neniam" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4638,34 +4917,34 @@ msgstr "Kiam montriĝas URL-sugestoj" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Ĉiam" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Ruĝaj eraraj stangoj:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Ruĝa erarfono:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Alternaj stangoj:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Alterna fono:" @@ -4780,7 +5059,7 @@ msgstr "El elekto" #: widgets/EditProfileMousePage.ui:186 #, kde-format msgid "Copy options:" -msgstr "Kopiaj opcioj:" +msgstr "Elektebloj de kopiado:" #. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextToClipboardButton) #: widgets/EditProfileMousePage.ui:196 @@ -5020,115 +5299,127 @@ msgid "Scrollback:" msgstr "Rulumo malantaŭen:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Rulumi Paĝon Supren/Malsupren:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Emfazi la liniojn rigardantajn" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Kaŝita" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Grandeco de ĉiu markilo (kiel procento de rulumbreta longo):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Emfazado:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rulumi la paĝon la duonan altecon de fenestro" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Duonekrana al&teco" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Koloro de rulumbretaj markiloj:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Koloro de rulumbretserĉaj emfaz-linioj:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Ĉirkaŭfluigi Liniojn:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rulumi la paĝon laŭ la plena alteco de la fenestro" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Plenekrana altec&o" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Pozicio de rulumskalo:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Vidigi la rulumskalon dekstre de la terminala fenestro" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "De&kstra flanko" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Vidigi la rulumskalon maldekstre de la terminala fenestro" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Ma&ldekstra flanko" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Kaŝita" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Emfazado:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Emfazi la liniojn rigardantajn" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Ĉirkaŭfluigi Liniojn:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Ĉirkaŭfluigi liniojn kiam terminalo regrandiĝas" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Koloro de rulumbretaj markiloj:" +msgid "Scrollbar position:" +msgstr "Pozicio de rulumskalo:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Grandeco de ĉiu markilo (kiel procento de rulumbreta longo):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Opakeco de serĉ-reliefiga linio:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5170,9 +5461,9 @@ msgid "" "choose a huge value, your system may run out of free RAM and cause serious " "issues with your system." msgstr "" -"Uzante ĉi tiun opcion, la retrorulumaj datumoj estos konservataj al RAM. Se " -"vi elektas grandegan valoron, via sistemo povus elĉerpiĝi je libera RAM kaj " -"kaŭzus gravajn problemojn kun via sistemo." +"Uzante ĉi tiun elekteblon, la retrorulumaj datumoj estos konservataj al RAM. " +"Se vi elektas grandegan valoron, via sistemo povus elĉerpiĝi je libera RAM " +"kaj kaŭzus gravajn problemojn kun via sistemo." #: widgets/HistorySizeWidget.cpp:69 #, kde-kuit-format @@ -5184,7 +5475,7 @@ msgid "" "Konsole → Temporary Files
          to select the location of the temporary " "files." msgstr "" -"Kiam vi uzas tiun opcion, la retrorulumaj datumoj estos skribataj neĉifrite " +"Uzante ĉi tiun elekteblon, la retrorulumaj datumoj estos skribataj neĉifrite " "al provizoraj dosieroj. Tiuj provizoraj dosieroj estos aŭtomate forigataj " "kiam Konsole estas fermita en normala maniero.Uzu Agordoj → " "Agordi Konsole → Provizoraj dosieroj por elekti la lokon de la " @@ -5234,115 +5525,116 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Neniu" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Trovu..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Enmeti la serĉendan tekston tie" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Sekva" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Trovi la sekvan kongruon kun la nuna serĉofrazo" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Antaŭa" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Trovi la antaŭan kongruon kun la nuna serĉofrazo" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Montri la opciomenuon" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Fermi la serĉobreton" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Usklecodistinga" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Agordas ĉu la serĉo distingas minusklecojn" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Montri la elekteblomenuon" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Fermi la serĉobreton" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Kongrui laŭ regula esprimo" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Emfazi ĉiujn kongruojn" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Difinas ĉu teksto kiu kongruas devus esti emfazita" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Serĉi malantaŭen" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Difinas ĉu serĉo devas komenci de malsupre" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Neniu volvo" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Difinas ĉu serĉo haltu anstataŭ volvi" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Serĉi la nunan serĉfrazon de la malsupro" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5353,7 +5645,7 @@ msgstr "Serĉi la nunan serĉfrazon de la supro" msgid "Print Shell" msgstr "Presa Ŝelo" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5393,6 +5685,13 @@ msgstr "Normala langeta titolformato" msgid "Tab Co&lor:" msgstr "Ko&loro de langeto:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "Ko&loro de langeto:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5486,32 +5785,54 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restarigi terminalon" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Malfermi novan langeton" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Serĉi Langetojn" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Fermi ĉi tiun langeton" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Dekroĉi langeton" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Agordi aŭ Alinomi langeton..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Fermi langeton" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "La D-Bus-metodoj sendText/runCommand ĵus estis uzitaj. Estas sekurecaj " +#~ "zorgoj pri permeso al ĉi tiuj metodoj esti publikaj. Se vi deziras, ĉi " +#~ "tiuj metodoj povas esti ŝanĝitaj al nur interna uzo per rekompilo de " +#~ "Konsole.

          Ĉi tiu averto aperos nur unufoje por ĉi tiu kazo de Konsole." + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Usklecodistinga" diff --git a/local/recipes/kde/konsole/source/po/es/docs/konsole/index.docbook b/local/recipes/kde/konsole/source/po/es/docs/konsole/index.docbook index ff0273ff0c..cee8331f43 100644 --- a/local/recipes/kde/konsole/source/po/es/docs/konsole/index.docbook +++ b/local/recipes/kde/konsole/source/po/es/docs/konsole/index.docbook @@ -239,7 +239,7 @@ >PreferenciasEditar perfil actual...Editar perfil actual… para abrir dicha ventana). @@ -335,7 +335,7 @@ >PreferenciasAdministrar perfiles...Administrar perfiles… @@ -350,7 +350,7 @@ Pulse el botón Nuevo perfil...Nuevo perfil…. @@ -384,7 +384,7 @@ >Pulse el botón Aceptar. La nueva sesión estará disponible en el diálogo Administrar perfiles...Administrar perfiles…. @@ -512,7 +512,7 @@ Ajustar el historial...Ajustar el historial… Editar el perfil actual...Editar el perfil actual… Archivo Guardar salida como...Guardar salida como… Archivo Imprimir pantalla ...Imprimir pantalla … Copiar entrada aSeleccionar pestañas...Seleccionar pestañas… EditarConfigurar las preferencias de las pestañas...Configurar las preferencias de las pestañas… EditarCarga de ZModem...Carga de ZModem… EditarBuscar...Buscar… MarcadoresPestañas de marcadores como carpeta...Pestañas de marcadores como carpeta… MarcadoresNueva carpeta de marcador...Nueva carpeta de marcador… PreferenciasEditar perfil actual...Editar perfil actual… PreferenciasAdministrar perfiles...Administrar perfiles… PreferenciasConfigurar idioma... Configurar idioma… PreferenciasConfigurar los atajos de teclado...Configurar los atajos de teclado… PreferenciasConfigurar las barras de herramientas...Configurar las barras de herramientas… PreferenciasConfigurar las notificaciones...Configurar las notificaciones… PreferenciasConfigurar &konsole;...Configurar &konsole;… PreferenciasEditar el perfil actual...Editar el perfil actual…Ratón[ProcessInfo] -CommonDirNames=name1,name2,name3... +CommonDirNames=name1,name2,name3… traducciones@rociogallego.com, Pablo de Vicente vicentea@oan.es, Marcos Fouces Lago , Carlos García Argos garcia@ieee.org Marcos Fouces Lago mfouces@yahoo.es y Santiago Fernández Sancho santi@kde-es.org,2001-2002,2003. -# Jaime Robles , 2003, 2004, 2005, 2007, 2008, 2009. -# Miguel Revilla Rodríguez , 2003, 2004. -# Pablo de Vicente , 2004, 2005. -# Jaime Robles , 2005. -# Santiago Fernandez Sancho , 2005. -# Pablo de Vicente , 2006. -# Pablo Pita Leira , 2007. -# Enrique Matias Sanchez (aka Quique) , 2007. -# SPDX-FileCopyrightText: 2009, 2010, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Eloy Cuadra -# Cristina Yenyxe González García , 2010, 2011, 2012, 2013. -# Javier Vinal , 2011. -# arklad, 2011. -# Rocio Gallego , 2013, 2014, 2015. +# SPDX-FileCopyrightText: 2001, 2002, 2003 Pablo de Vicente +# SPDX-FileCopyrightText: 2003, 2004, 2005, 2007, 2008, 2009 Jaime Robles +# SPDX-FileCopyrightText: 2003, 2004 Miguel Revilla Rodríguez +# SPDX-FileCopyrightText: 2004, 2005 Pablo de Vicente +# SPDX-FileCopyrightText: 2005 Jaime Robles +# SPDX-FileCopyrightText: 2005 Santiago Fernandez Sancho +# SPDX-FileCopyrightText: 2006 Pablo de Vicente +# SPDX-FileCopyrightText: 2007 Pablo Pita Leira +# SPDX-FileCopyrightText: 2007 Enrique Matias Sanchez (aka Quique) +# SPDX-FileCopyrightText: 2009, 2010, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Eloy Cuadra +# SPDX-FileCopyrightText: 2010, 2011, 2012, 2013 Cristina Yenyxe González García +# SPDX-FileCopyrightText: 2011 Javier Vinal +# SPDX-FileCopyrightText: 2011 arklad +# SPDX-FileCopyrightText: 2013, 2014, 2015 Rocio Gallego msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-19 01:17+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-21 00:35+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"com>\n" -"com>\n" -"com>\n" "First-Translator: Boris Wesslowski \n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 25.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -69,7 +66,7 @@ msgstr "Ver" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dividir vista" @@ -105,7 +102,7 @@ msgid "S&crollback" msgstr "&Historial" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra de herramientas de la sesión" @@ -192,48 +189,64 @@ msgstr "Ocultar la barra de menú, ignorando la preferencia por omisión" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Mostrar todas las barras de herramientas, ignorando la preferencia por " +"omisión" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Ocultar todas las barras de herramientas, ignorando la preferencia por " +"omisión" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Mostrar la barra de pestañas, ignorando la preferencia por omisión" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Ocultar la barra de pestañas, ignorando la preferencia por omisión" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Iniciar Konsole en modo de pantalla completa" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Deshabilitar los fondos transparentes, incluso si el sistema los soporta." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Lista de perfiles disponibles" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Muestra los nombres y tipo de todas las propiedades del perfil (usar con -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Cambia el valor de una propiedad del perfil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -243,7 +256,7 @@ msgstr "" "Orden a ejecutar. Esta opción usará todos los argumentos que siguen, por lo " "que debería usarla como última opción." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -253,13 +266,13 @@ msgstr "" "Forzar la reutilización de la instancia existente incluso si produce fallos " "de funcionalidad, como --new-tab. Principalmente para depuración." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumentos pasados a la orden" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -277,157 +290,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Primer plano" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fondo" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Primer plano (intenso)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fondo (intenso)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Color 1 (intenso)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Color 2 (intenso)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Color 3 (intenso)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Color 4 (intenso)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Color 5 (intenso)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Color 6 (intenso)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Color 7 (intenso)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Color 8 (intenso)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Primer plano (suave)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fondo (suave)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Color 1 (suave)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Color 2 (suave)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Color 3 (suave)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Color 4 (suave)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Color 5 (suave)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Color 6 (suave)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Color 7 (suave)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Color 8 (suave)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -586,7 +599,7 @@ msgstr "Escoger la imagen del fondo" #: widgets/EditProfileGeneralPage.ui:186 #, kde-format msgid "..." -msgstr "..." +msgstr "…" #. i18n: ectx: property (text), widget (QLabel, wallpaperScalingLabel) #: colorscheme/ColorSchemeEditor.ui:165 @@ -681,7 +694,41 @@ msgstr "Arriba" #: colorscheme/ColorSchemeViewDelegate.cpp:52 #, kde-format msgid "AaZz09..." -msgstr "AaZz09..." +msgstr "AaZz09…" + +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Máquina" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"El uso de contenedores no está disponible cuando Konsole se ejecuta en " +"Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [predeterminado]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" #: CopyInputDialog.cpp:30 #, kde-format @@ -728,7 +775,7 @@ msgstr "" msgid "Copy Location" msgstr "Copiar ubicación" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generando miniatura" @@ -746,7 +793,7 @@ msgstr "Copiar dirección del enlace" #: filterHotSpots/UrlFilterHotspot.cpp:95 #, kde-format msgid "Send Email To..." -msgstr "Enviar mensaje a..." +msgstr "Enviar mensaje a…" #: filterHotSpots/UrlFilterHotspot.cpp:97 #, kde-format @@ -759,13 +806,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Seleccionar tipo de letra" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Mostrar todos los tipos de letra" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -806,17 +853,17 @@ msgstr "Combinación de teclas" msgid "Output" msgstr "Salida" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nueva lista de asignaciones de teclas" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Editar lista de asignaciones de teclas" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -826,7 +873,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -860,225 +907,225 @@ msgstr "Entrada:" msgid "Output:" msgstr "Salida:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulador de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997-2022, los desarrolladores de Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Encargado, solución de errores y mejoras generales" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Encargado anterior, realizó el port a KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autor original" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Refactorización mayor, corrección de errores y mejoras importantes" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Corrección de errores y mejoras generales" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Corrección de errores y mejoras importantes" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Mejoras a nivel general" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Corrección de errores" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Soporte a Solaris e historial" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Corrección de errores y mejora del rendimiento al inicio" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Mejoras en las marcas" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1088,13 +1135,13 @@ msgstr "" "Konsole integrado\n" "Barra de herramientas y nombres de sesión" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,25 +1151,25 @@ msgstr "" "Konsole integrado\n" "Mejoras generales" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efectos visuales" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1132,132 +1179,132 @@ msgstr "" "Código del proyecto kvt\n" "Mejoras generales" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Mejoras de esquema y selección de texto" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Port a SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Port a FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Gracias a muchos otros.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nueva pestaña" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clonar pestaña" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nueva &ventana" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Cerrar la ventana" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Marcadores" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Esquema de color de las &ventanas" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." -msgstr "Gestionar perfiles..." +msgstr "Gestionar perfiles…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activar menú" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." -msgstr "Guardar configuración de pestañas..." +msgstr "Guardar configuración de pestañas…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." -msgstr "Cargar configuración de pestañas..." +msgstr "Cargar configuración de pestañas…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1268,67 +1315,67 @@ msgstr[0] "" msgstr[1] "" "Tiene %1 pestañas abiertas en esta ventana. ¿Está seguro de querer salir?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmar cierre" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Cerrar &ventana" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Cerrar pes&taña actual" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Hay %1 terminales abiertos en esta ventana. ¿Seguro que quiere salir?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Perfiles" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "General" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memoria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barra de pestañas/separadores" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Archivos temporales" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturas" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1351,7 +1398,7 @@ msgstr "Atajo de teclado:" #: plugins/QuickCommands/qcwidget.ui:52 plugins/SSHManager/sshwidget.ui:33 #, kde-format msgid "Filter..." -msgstr "Filtro..." +msgstr "Filtro…" #. i18n: ectx: property (text), widget (QCheckBox, invertFilter) #. i18n: ectx: property (text), widget (QCheckBox, btnInvertFilter) @@ -1412,7 +1459,7 @@ msgstr "Guardar" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualizar" @@ -1424,29 +1471,29 @@ msgid "Cancel" msgstr "Cancelar" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Órdenes rápidas" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Mostrar acceso rápido" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "No se han encontrado órdenes rápidas. Puede añadirlas usando «Complementos -" "> Órdenes rápidas»." -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Complementos - Órdenes rápidas" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Mostrar las órdenes rápidas" @@ -1489,7 +1536,7 @@ msgstr "" "con múltiples configuraciones. ¿Está seguro?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Está a punto de borrar %1. ¿Está seguro?" @@ -1542,11 +1589,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 es una carpeta para entradas SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configuración SSH" @@ -1611,24 +1658,24 @@ msgstr "" "(como bash, zsh o sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Clave SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Borrar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "No cambiar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1637,70 +1684,70 @@ msgstr "" "Está a punto de borrar la carpeta %1,\n" "con múltiples configuraciones de SSH. ¿Está seguro?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Borrar configuraciones de SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "Perfil SSH importado
          Algunos ajustes son de solo lectura." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Falta el nombre de la máquina" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Falta el nombre" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Si está activado «Usar configuración SSH», no especificar clave SSH ni " "usuario." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Debe definir al menos el nombre de usuario o la clave SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Falta la carpeta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Una sesión SSH debe tener un perfil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "No se puede borrar esta carpeta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Borrar carpeta y todo su contenido" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Doble clic para cambiar el nombre de la carpeta." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "No se puede borrar una entrada añadida automáticamente." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Borrar la entrada seleccionada" @@ -1893,25 +1940,25 @@ msgstr "Opciones de salida" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Modo amigable de la impresora (texto en negro, sin fondo)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "E&scalar la salida" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Integrado" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Perfil predeterminado" @@ -1970,17 +2017,44 @@ msgstr "Doble clic para cambiar el atajo de teclado" msgid "Tab Properties" msgstr "Propiedades de la pestaña" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Guardar salida de %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 es una URL no válida, la salida no puede guardarse." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "No se ha podido crear el archivo para guardar automáticamente en %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" +"Se ha detenido la función de guardar automáticamente debido al cambio de " +"pantallas." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"El archivo para guardar automáticamente se ha modificado externamente, " +"impidiendo que se siga guardando automáticamente en él." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"No se ha podido actualizar el estado de guardar automáticamente en los " +"cambios de salida." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2016,81 +2090,98 @@ msgstr "Brisa" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pasteles oscuros" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verde sobre negro" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Colores Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rojo sobre negro" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarizado" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Luz solarizada" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanco sobre negro" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Predeterminadas (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Consola de Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Consola de Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Buscar…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Introduzca aquí un nombre de pestaña para buscar" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Timbre en «%1» (sesión «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "No fue posible encontrar el binario: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Advertencia: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "No fue posible encontrar una shell interactiva." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2099,336 +2190,340 @@ msgstr "" "No fue posible encontrar «%1», iniciando «%2» en su lugar. Revise la " "configuración de su perfil." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "No fue posible iniciar «%1» con los argumentos «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silencio en «%1» (sesión «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Mostrar sesión" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"Se usarán los métodos D-Bus sendText/runCommand. Puede resultar inseguro que " -"estos métodos sean públicos. Si así lo desea, se puede hacer que estos " -"métodos solo se usen internamente volviendo a compilar Konsole.

          Esta " -"advertencia solo se mostrará una vez para esta instancia de Konsole.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Finalizado" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "El programa «%1» se cerró inesperadamente." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "El programa «%1» finalizó con el estado %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progreso de ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Actividad en «%1» (sesión «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"La API de DBus sensible a la seguridad está desactivada en la configuración." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "El proceso «%1» ha terminado su ejecución en la sesión «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole no sabe cómo abrir el marcador:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Buscar «%1» con" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." -msgstr "Configurar los atajos web..." +msgstr "Configurar los atajos web…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Cerrar la sesión" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Abrir gestor de archivos" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copiar" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dividir vista izquierda-derecha" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dividir vista arriba-abajo" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copiar omitiendo los «prompts»" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copiar entrada del usuario" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copiar salida de la orden" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Pegar selección" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Búsqueda en la Web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Seleccionar todo" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Seleccionar &modo" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Seleccionar &línea" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." -msgstr "Guardar la &salida como..." +msgstr "Guardar la &salida como…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Guardar automáticamente la salida como…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Detener la función de guardar automáticamente" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." -msgstr "Imprimir &pantalla..." +msgstr "Imprimir &pantalla…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." -msgstr "Ajustar historial de desplazamiento..." +msgstr "Ajustar historial de desplazamiento…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Limpiar historial de desplazamiento" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Limpiar historial de desplazamiento y reiniciar" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Perfil siguiente" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Perfil anterior" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Cambiar perfil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Establecer la codificación" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permitir el seguimiento del ratón" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Solo lectura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." -msgstr "&Configurar o cambiar el nombre de la pestaña..." +msgstr "&Configurar o cambiar el nombre de la pestaña…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Todas las pestañas de la ventana actual" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." -msgstr "&Seleccionar pestañas..." +msgstr "&Seleccionar pestañas…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ninguna" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copiar entrada a" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." -msgstr "Envío &ZModem..." +msgstr "Envío &ZModem…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Monitores de un solo uso" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Monitor de &línea de órdenes" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitor de &actividad" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitor de &silencio" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitor de terminación de procesos" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Agrandar la letra" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Reducir la letra" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Reiniciar el tamaño del tipo de letra" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Enviar señal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspender tarea" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continuar tarea" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Colgar" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrumpir tarea" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminar tarea" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Ma&tar la tarea" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Señal de usuario &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Señal de usuario &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." -msgstr "Crear nuevo perfil..." +msgstr "Crear nuevo perfil…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." -msgstr "Editar el perfil actual..." +msgstr "Editar el perfil actual…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2437,25 +2532,25 @@ msgstr "" "Se está ejecutando un programa en esta sesión. ¿Está seguro de querer " "cerrarlo?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "El programa «%1» se está ejecutando en esta sesión. ¿Quiere cerrarlo?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmar cierre" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Cerrar programa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2464,37 +2559,37 @@ msgstr "" "Un programa de esta sesión no se ha detenido. ¿Está seguro de querer forzar " "su terminación?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"El programa «%1» de esta sesion no se ha detenido. ¿Está seguro de querer " -"forzar su terminación?" +"El programa «%1» de esta sesión no se ha detenido. ¿Seguro que quiere forzar " +"su terminación?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Matar programa" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "La línea de órdenes se muestra en la sesión «%1»" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Abrir la carpeta actual con" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." -msgstr "Guardar descarga ZModem en..." +msgstr "Guardar descarga ZModem en…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2505,7 +2600,7 @@ msgstr "" "no se ha encontrado ningún software adecuado para ello en su equipo.

          Quizá desee instalar los paquetes «rzsz» o «lrzsz».

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " @@ -2513,7 +2608,7 @@ msgstr "" "

          La sesión actual ya está procesando una transferencia de archivo ZModem." -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2522,7 +2617,7 @@ msgstr "" "

          No se ha encontrado ningún software adecuado para ZModem en su equipo.

          Quizá desee instalar los paquetes «rzsz» o «lrzsz».

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Seleccione los archivos del envío por ZModem" @@ -2545,144 +2640,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configurar" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Búsqueda:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Activar aceleradores del menú" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Si está activada, se ignorarán las preferencias del perfil" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Recordar el tamaño de la ventana" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Mostrar el título de la ventana en la barra de título" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Pasar el foco al terminal cuando el puntero del ratón se sitúa encima" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Coincidir con expresiones regulares" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Reutilizar los procesos existentes al lanzar Konsole, si es posible" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Ejecutar todas las ventanas de Konsole en un único proceso" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Resaltar todas las coincidencias" +msgid "If enabled, profile settings will be ignored" +msgstr "Si está activada, se ignorarán las preferencias del perfil" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Define si la búsqueda debe distinguir entre mayúsculas y minúsculas" +msgid "Remember window size" +msgstr "Recordar el tamaño de la ventana" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Distinguir entre mayúsculas y minúsculas" +msgid "Force new tabs" +msgstr "Forzar nuevas pestañas" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Eliminar la barra de título y el marco de la ventana" +msgid "Listen for ZModem terminal codes" +msgstr "A la escucha de códigos de terminal ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Proceso y ventana:" +msgid "Show progress in taskbar" +msgstr "Mostrar avance en la barra de tareas" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notificaciones:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Todos los diálogos se mostrarán de nuevo" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Activar todos los mensajes «No volver a preguntar»" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Indica si la búsqueda debe empezar desde el final" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Buscar hacia atrás" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Define si la búsqueda debe distinguir entre mayúsculas y minúsculas" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Distinguir entre mayúsculas y minúsculas" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Proceso y ventana:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Resaltar todas las coincidencias" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Búsqueda:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Indica si la búsqueda debe detenerse en lugar de volver a empezar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "No volver a empezar" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Activar aceleradores del menú" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Pasar el foco al terminal cuando el puntero del ratón se sitúa encima" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Todos los diálogos se mostrarán de nuevo" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Activar todos los mensajes «No volver a preguntar»" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Mostrar el título de la ventana en la barra de título" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Activar las partes sensibles a la seguridad de la API de DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Eliminar la barra de título y el marco de la ventana" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Coincidir con expresiones regulares" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2711,71 +2832,112 @@ msgstr "Usar el tamaño actual de la ventana al iniciar la próxima vez" msgid "The window size will be saved upon exiting Konsole" msgstr "El tamaño de la ventana se guardará al salir de Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Cuando se inicia Konsole, crear nuevas pestañas en lugar de nuevas ventanas, " +"si es posible" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Mostrar avance en la barra de tareas" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Cuando un guion informa de su avance, se mostrará en la barra de tareas" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "Se activará ala API de DBus similar a runCommand" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "A la escucha de códigos de terminal ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Enviar/recibir archivos automáticamente por conexiones serie" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Anchura de la miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Define la anchura de la miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Usar «Mayúsculas» para mostrar una miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Usar «Alt» para mostrar una miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Usar «Ctrl» para mostrar una miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "La búsqueda distingue entre mayúsculas y minúsculas" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Resaltar todas las coincidencias de la búsqueda" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Define si se debe resaltar el texto coincidente" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "La búsqueda se detiene en lugar de volver a empezar" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Controlar si se crean «cgroups» secundarios para pestañas individuales" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2785,74 +2947,81 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controla la visibilidad de la barra de pestañas" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controla el tamaño del asa entre paneles" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controla la posición de la barra de pestañas" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controla el estilo visual de la barra de pestañas" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Usar un archivo .css definido por el usuario para la barra de pestañas" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Archivo .css que se usará para el estilo de la barra de pestañas" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permitir clic central en pestañas abiertas para cerrarlas" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" "Controla la visibilidad del botón «Nueva pestaña» en la barra de pestañas" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Controla la visibilidad del botón «Buscar pestañas» en la barra de pestañas" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controla dónde se muestra el botón «Cerrar pestaña»" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controla dónde colocar la nueva pestaña" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Expandir el ancho de las pestañas" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" @@ -2860,7 +3029,7 @@ msgstr "" "carpetas del sistema" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2868,7 +3037,7 @@ msgstr "" "carpetas particular para el usuario" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" @@ -2876,7 +3045,7 @@ msgstr "" "carpeta indicada" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Para los archivos de historial de desplazamiento, usar esta carpeta" @@ -2888,34 +3057,30 @@ msgid "Enable memory monitoring:" msgstr "Activar monitorización de memoria:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Los cambios tendrán efecto tras reiniciar. Si se activa, el consumo de " -"memoria sostenido en Konsole\n" -"que exceda del valor indicado hará que «systemd-oomd» elimine las pestañas " -"que contengan\n" -"procesos que usan memoria de forma intensiva. Nota: Su activación puede " -"provocar severas\n" -"ralentizaciones durante un consumo elevado de memoria, mientras que " -"especificar valores excesivamente bajos puede hacer que Konsole falle." +"memoria sostenido en Konsole que exceda del valor indicado hará que «systemd-" +"oomd» elimine las pestañas que contengan procesos que usan memoria de forma " +"intensiva. Nota: Su activación puede provocar severas ralentizaciones " +"durante un consumo elevado de memoria, mientras que especificar valores " +"excesivamente bajos puede hacer que Konsole falle." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Límite de memoria:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -2948,7 +3113,7 @@ msgstr "Crear un perfil nuevo basado en el perfil seleccionado" #: settings/ProfileSettings.ui:54 #, kde-format msgid "&New..." -msgstr "&Nuevo..." +msgstr "&Nuevo…" #. i18n: ectx: property (toolTip), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:64 @@ -2963,7 +3128,7 @@ msgstr "" #: settings/ProfileSettings.ui:67 #, kde-format msgid "&Edit..." -msgstr "&Editar..." +msgstr "&Editar…" #. i18n: ectx: property (toolTip), widget (QPushButton, deleteProfileButton) #: settings/ProfileSettings.ui:77 @@ -3077,125 +3242,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Ninguno" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Mostrar el botón «Buscar pestañas»:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Siempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nunca" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Otros:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Mostrar el botón «Nueva pestaña»" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Ajustar la anchura de las pestañas a la ventana completa" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Usar hoja de estilos del usuario:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ninguna)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportamiento" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Situar nuevas pestañas:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Al &final" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "&Tras la pestaña actual" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Cerrar pestañas con clic central" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Separadores" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Mostrar la cabecera:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Cuando sea necesario" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nunca" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Tamaño del asa de arrastre:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Pequeño" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Mediano" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grande" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3247,13 +3430,12 @@ msgstr " px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Para usar esta función, active Ratón->Varios->Subrayar archivos en las preferencias del perfil.

          " +"weight:600;\">Ratón->Varios->Subrayar archivos en las " +"preferencias del perfil.

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3291,64 +3473,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Activar la generación de miniaturas" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Tamaño: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "¿Seguro que quiere pegar %1 carácter?" msgstr[1] "¿Seguro que quiere pegar %1 caracteres?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirmar el pegado" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Fin de texto/Interrumpir: puede salir del proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Fin de transmisión: puede salir del proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Campana: tratará de emitir una advertencia sonora" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Retroceso" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Control de dispositivo 3/XOFF: suspende la salida" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Sustituir/Suspender: puede suspender el proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: se usa para manejar el estado del terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Separador de archivo/Salir: puede interrumpir el proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3357,31 +3539,31 @@ msgstr "" "El texto que está intentando pegar contiene caracteres de control ocultos. " "¿Desea eliminarlos?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirmar pegado" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Pe&gar sin caracteres de control" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Pegar todo" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Cancelar" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspendida pulsando Ctrl+S. Pulse Ctrl+Q para continuar." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Este terminal es de solo lectura." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Cambiar &directorio a" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Pegar posición" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Dividir vista" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dividir vista izquierda/derecha" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dividir vista arriba/abajo" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dividir vista automáticamente" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dividir vista izquierda/derecha desde la siguiente pestaña" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dividir vista arriba/abajo desde la siguiente pestaña" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dividir vista automáticamente desde la siguiente pestaña" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Cargar una nueva pestaña con un diseño de 2x2 terminales" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Cargar una nueva pestaña con un diseño de 2x1 terminales" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Cargar una nueva pestaña con un diseño de 1x2 terminales" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expandir vista" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Comprimir vista" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Desprender la &vista actual" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Desprender la pes&taña actual" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Pestaña siguiente" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Pestaña anterior" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Foco en el terminal superior" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Foco en el terminal inferior" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Foco en el terminal de la izquierda" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Foco en el terminal de la derecha" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Foco en el terminal siguiente" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Foco en el terminal anterior" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Cambiar a la última pestaña" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Últimas pestañas usadas" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Conmutar entre dos pestañas" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Últimas pestañas usadas (inverso)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Conmutar maximización de la vista actual" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Conmutar maximización de la vista actual" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Conmutar maximización de ampliación de la vista actual" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Conmutar maximización de ampliación de la vista actual" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Mover pestaña a la derecha" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Mover pestaña a la izquierda" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Configurar la integración semántica (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Conmutar la visualización de sugerencias semánticas " -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Conmutar la visualización de números de línea" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Mismo tamaño para todas las vistas" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Cambiar a la pestaña %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Sugerencias semánticas " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Números de línea " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Guardar configuración de pestañas" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Diseño de vista de Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3649,7 +3843,7 @@ msgstr "" "Ha ocurrido un problema al guardar el diseño.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3659,13 +3853,13 @@ msgstr "" "Ha ocurrido un problema al cargar el diseño.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Cargar configuración de pestañas" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3764,28 +3958,40 @@ msgstr "Co&dificación de caracteres predeterminada:" msgid "Shortcut for peeking the primary screen:" msgstr "Atajo de teclado para echar un vistazo a la pantalla principal:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Intervalo para guardar automáticamente:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Números de línea:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nunca" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Cuando se muestran sugerencias de &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3808,7 +4014,7 @@ msgstr "Crear un esquema de color nuevo basado en el esquema seleccionado" #, kde-format msgctxt "@action:button Create an alternate color scheme" msgid "New..." -msgstr "Nueva..." +msgstr "Nueva…" #. i18n: ectx: property (toolTip), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:79 @@ -3821,11 +4027,11 @@ msgstr "Editar el esquema de color seleccionado" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." -msgstr "Editar..." +msgstr "Editar…" #. i18n: ectx: property (toolTip), widget (QPushButton, removeColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:89 @@ -3860,7 +4066,7 @@ msgstr "Tipo de letra:" #, kde-format msgctxt "@action:button open a dialog with list of fonts" msgid "Choose..." -msgstr "Escoger..." +msgstr "Escoger…" #. i18n: ectx: property (text), widget (QCheckBox, antialiasTextButton) #: widgets/EditProfileAppearancePage.ui:174 @@ -3877,6 +4083,9 @@ msgstr "Dibujar colores intensos en negrita" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Usar el tipo de letra seleccionado para los caracteres de las líneas en " @@ -3885,6 +4094,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Usar caracteres de líneas contenidos en el tipo de letra" @@ -4006,29 +4218,43 @@ msgid "Make the cursor blink regularly" msgstr "Hacer que el cursor parpadee regularmente" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Activado" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animación:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Hacer que el cursor se anime suavemente" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Varios" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Ventana:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4038,144 +4264,144 @@ msgstr "" "columnas después de cambiar su tamaño" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Mostrar el tamaño del terminal después de cambiar su tamaño" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Invertir siempre los colores del texto seleccionado" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Solidez del oscurecimiento:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Color:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Seleccione el color para dibujar el borde" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminales inactivos:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminales activos:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Contenido del terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Espacio entre líneas:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "El número de píxels entre dos líneas" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Márgenes:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Centrar:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indicar cuándo está activa la ventana atenuando los colores" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Oscurecer" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indicar cuándo está activa la ventana dibujando un borde" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Borde" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Mostrar una línea vertical en la columna:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Disposición de texto compleja

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposición de texto compleja" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Activar la representación de texto en modo de palabras" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Modo de palabras" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4185,43 +4411,43 @@ msgstr "" "cambios de atributos romperían la palabra al representarla)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Usar los mismos atributos para palabras completas" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Representar palabras de caracteres ASCII juntas" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caracteres ASCII" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Representar palabras de caracteres de alfabetos bráhmicos juntas" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Caracteres de alfabetos bráhmicos" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Tipo de letra para emojis:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4231,13 +4457,13 @@ msgstr "" "persa y hebreo)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Representación de texto bidireccional" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4245,83 +4471,83 @@ msgstr "" "determinadas por el primer carácter fuerte." #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Forzar dirección de línea de izquierda a derecha" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tratar los caracteres de dibujo de tablas como LTR fuertes." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Sustitución del modo BiDi de los caracteres de tablas" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ingorar WcWidth de los caracteres problemáticos" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Ignorar WcWidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Editar perfil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "General" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Pestañas" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aspecto" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Desplazamiento" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Teclado" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Asignaciones de teclas" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Ratón" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avanzado" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4333,7 +4559,7 @@ msgstr "" "filename>.Cambie los permisos de dicho archivo o defina otro nombre " "para guardar las preferencias en un nuevo perfil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4341,42 +4567,47 @@ msgstr "" "El nombre del perfil está vacío. Defina un nombre para poder guardar las " "preferencias." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Ya existe un perfil con el nombre «%1»." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "El nombre del perfil excede la longitud máxima permitida (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Los caracteres resaltados no son válidos en los nombres de perfil: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Editando perfil: %2" msgstr[1] "Editando %1 perfiles: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Crear nuevo perfil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Editar perfil «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Ninguno" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4386,7 +4617,7 @@ msgid_plural " columns" msgstr[0] " columna" msgstr[1] " columnas" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4396,42 +4627,42 @@ msgid_plural " rows" msgstr[0] " fila" msgstr[1] " filas" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Timbre del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificaciones del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Timbre visual" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorar los eventos de timbre" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Perfil predeterminado para las nuevas sesiones de terminal en %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Editar entorno" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Una variable de entorno por línea" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4439,23 +4670,23 @@ msgid_plural " seconds" msgstr[0] " segundo" msgstr[1] " segundos" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Seleccionar directorio inicial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." -msgstr "Obtener novedades..." +msgstr "Obtener novedades…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "La carga del esquema %1 ha fallado." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4464,7 +4695,7 @@ msgstr "" "Esta combinación de colores tiene un fondo transparente que no admite su " "escritorio." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4473,12 +4704,12 @@ msgstr "" "Konsole se inició antes de activar los efectos de escritorio. Reinicie " "Konsole para ver el fondo transparente." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Predeterminado para el tipo de archivo" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4507,7 +4738,7 @@ msgstr "" "será ignorada y se abrirá el archivo con el editor de texto\n" "predeterminado." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Orden personalizada del editor de texto" @@ -4597,26 +4828,57 @@ msgstr "Escoja el directorio inicial" msgid "Start in same directory as current session" msgstr "Iniciar en el mismo directorio que la sesión actual" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Al abrir una nueva pestaña o división, entrar automáticamente en el mismo " +"contenedor (Toolbox, Distrobox) que la sesión actual" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Entrar en el mismo contenedor que la sesión actual" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Empezar siempre en el contenedor:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Empezar siempre nuevas sesiones usando este perfil dentro del contenedor " +"seleccionado" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Entorno:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Editar la lista de variables de entorno y valores asociados" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Ta&maño inicial del terminal:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4629,31 +4891,31 @@ msgstr "" "debe desactivar para que funcionen estas entradas.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Modo de &timbre de terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Integración semántica" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulación de las flechas arriba y abajo" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "El clic del ratón en la línea de entrada mueve el cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Sugerencias semánticas:" @@ -4663,9 +4925,9 @@ msgstr "Sugerencias semánticas:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4676,9 +4938,9 @@ msgstr "Nunca" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4689,34 +4951,34 @@ msgstr "Cuando se muestran sugerencias de URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Siempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barras de error rojas:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Fondo de error rojo:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barras alternativas:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Fondo alternativo:" @@ -4749,7 +5011,7 @@ msgstr "" #, kde-format msgctxt "@action:button Create an alternate key binding" msgid "New..." -msgstr "Nueva..." +msgstr "Nueva…" #. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:70 @@ -5079,119 +5341,131 @@ msgid "Scrollback:" msgstr "Historial de desplazamiento:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Desplazamiento hacia arriba/abajo:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Desplaza la página un tramo igual a la mitad de la pantalla" +msgid "Highlight the lines coming into view" +msgstr "Resaltar las líneas que entran en el visor" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" -msgstr "Mi&tad de la altura de la pantalla" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Desplaza la página un tramo igual a la altura total de la ventana" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "Alt&ura completa de la pantalla" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Posición de la barra de desplazamiento:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "" -"Mostrar la barra de desplazamiento a la derecha de la ventana del terminal" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, kde-format -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "A la &derecha" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "" -"Mostrar la barra de desplazamiento a la izquierda de la ventana del terminal" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, kde-format -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "A la &izquierda" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Oculta" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Resaltado:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Resaltar las líneas que entran en el visor" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Ajuste de líneas:" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "Ajustar las líneas cuando cambia el tamaño del terminal" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "Color de los marcadores de la barra de desplazamiento:" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" "Tamaño de los marcadores (como porcentaje de la longitud de la barra de " "desplazamiento):" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Resaltado:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "Desplaza la página un tramo igual a la mitad de la pantalla" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "Mi&tad de la altura de la pantalla" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Color de los marcadores de la barra de desplazamiento:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Color de las líneas resaltadas de la barra de desplazamiento:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Ajuste de líneas:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Desplaza la página un tramo igual a la altura total de la ventana" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "Alt&ura completa de la pantalla" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "" +"Mostrar la barra de desplazamiento a la derecha de la ventana del terminal" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "A la &derecha" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "" +"Mostrar la barra de desplazamiento a la izquierda de la ventana del terminal" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "A la &izquierda" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "Ajustar las líneas cuando cambia el tamaño del terminal" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "Posición de la barra de desplazamiento:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" +msgstr "Opacidad de líneas resaltadas de búsqueda:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5297,37 +5571,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Ninguna" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." -msgstr "Buscar..." +msgstr "Buscar…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Introduzca aquí el texto a buscar" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Siguiente" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Encontrar la siguiente coincidencia de esta búsqueda" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Anterior" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5335,77 +5609,77 @@ msgstr "Encontrar la coincidencia anterior de esta búsqueda" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Mostrar el menú de opciones" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Cerrar barra de búsqueda" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Distinguir entre mayúsculas y minúsculas" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Define si la búsqueda debe distinguir entre mayúsculas y minúsculas" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Mostrar el menú de opciones" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Cerrar barra de búsqueda" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Satisfacer expresión regular" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Resaltar todas las coincidencias" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Define si debe resaltarse el texto que coincida" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Buscar hacia atrás" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Indica si la búsqueda debe empezar desde el final" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "No volver a empezar" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Indica si la búsqueda debe detenerse en lugar de volver a empezar" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Buscar la siguiente coincidencia desde el final" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5416,7 +5690,7 @@ msgstr "Buscar la siguiente coincidencia desde el principio" msgid "Print Shell" msgstr "Imprimir intérprete de órdenes" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5456,6 +5730,12 @@ msgstr "Formato del título de pestaña normal" msgid "Tab Co&lor:" msgstr "Co&lor de las pestañas:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Color de la pestaña de &actividad:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5549,497 +5829,38 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restaurar terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Abrir una nueva pestaña" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Buscar pestañas" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Cerrar esta pestaña" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Desprender pestaña" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." -msgstr "&Configurar o cambiar el nombre de la pestaña..." +msgstr "&Configurar o cambiar el nombre de la pestaña…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Cerrar pestaña" - -#~ msgctxt "Do not save any lines to the scrollback history" -#~ msgid "None" -#~ msgstr "Ninguna" - -#~ msgid "open with" -#~ msgstr "abrir con" - -#~ msgid "text/css" -#~ msgstr "texto/css" - -#~ msgctxt "@title:window" -#~ msgid "Save File" -#~ msgstr "Guardar archivo" - -#~ msgctxt "@title:window" -#~ msgid "Open File" -#~ msgstr "Abrir archivo" - -#~ msgid "Size: XXX x XXX" -#~ msgstr "Tamaño: XXX x XXX" - -#~ msgctxt "@info:shell" -#~ msgid "Use the internal FALLBACK profile" -#~ msgstr "Usar el perfil interno FALLBACK" - -#~ msgctxt "Name of the default/builtin profile" -#~ msgid "Default" -#~ msgstr "Por omisión" - -#~ msgid "" -#~ "The name \"Default\" is reserved for the built-in fallback profile;\n" -#~ "the profile is going to be saved as \"%1\"" -#~ msgstr "" -#~ "El nombre «Default» está reservado para el perfil integrado por omisión.\n" -#~ "El perfil se va a guardar como «%1»." - -#~ msgctxt "@label:textbox added to the name of the current default profile" -#~ msgid " (default)" -#~ msgstr " (predeterminado)" - -#~ msgid "Allow Color Filters" -#~ msgstr "Permitir filtros de color" - -#~ msgid "Import entries from ~/.ssh/config" -#~ msgstr "Importar las entradas de ~/.ssh/config" - -#~ msgid "Import" -#~ msgstr "Importar" - -#~ msgid "Missing Port" -#~ msgstr "Falta el puerto" - -#~ msgid "Show menubar" -#~ msgstr "Mostrar la barra de menú" - -#~ msgid "Show menubar by default" -#~ msgstr "Mostrar la barra de menú por omisión" - -#~ msgid "Show menubar by default in each Konsole window" -#~ msgstr "" -#~ "Mostrar por defecto la barra de menú en cualquier ventana de Konsole" - -#~ msgid "" -#~ "

          Each profile must have a name before it can be saved into disk.

          " -#~ msgstr "" -#~ "

          Debe asignar un nombre al perfil antes de guardarlo en el disco.

          " - -#~ msgctxt "@label:textbox Name of the current default profile" -#~ msgid " (Default)" -#~ msgstr " (Predeterminado)" - -#~ msgctxt "@info:tooltip" -#~ msgid "Command used to open a file PATH at LINE/COLUMN." -#~ msgstr "" -#~ "Orden usada para abrir una RUTA de archivo en la LÍNEA/COLUMNA indicadas." - -#~ msgctxt "@info:whatsthis" -#~ msgid "" -#~ "\n" -#~ "

          The text editor command that will be used to open a " -#~ "file starting at the specified line and column.

          \n" -#~ "

          PATH, LINE and COLUMN are palceholders that will be " -#~ "replaced by the actual path to the file, line number and column number " -#~ "respectively.

          \n" -#~ "

          If PATH and LINE aren't specified in the command, " -#~ "the file will be opened with the system default text editor.

          \n" -#~ "

          For example:

          \n" -#~ "

          /usr/bin/kate PATH:LINE:COMLUMN

          \n" -#~ "

          /usr/bin/gedit +LINE:COLUMN PATH

          \n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "

          La orden del editor de texto que se usará para abrir " -#~ "un archivo en la línea y columna especificadas.

          \n" -#~ "

          RUTA, LÍNEA y COLUMNA son parámetros que se " -#~ "sustituirán, respectivamente, por la ruta del archivo, el número de línea " -#~ "y el número de columna reales.

          \n" -#~ "

          Si la RUTA y la LÍNEA no se indican en la orden, el " -#~ "archivo se abrirá con el editor de texto predeterminado del sistema.

          \n" -#~ "

          Por ejemplo:

          \n" -#~ "

          /usr/bin/kate RUTA:LÍNEA:COLUMNA

          \n" -#~ "

          /usr/bin/gedit +LÍNEA:COLUMNA RUTA

          \n" -#~ " " - -#~ msgid "Color from theme" -#~ msgstr "Color del tema" - -#~ msgid "&Current Tab Settings..." -#~ msgstr "Preferen&cias de la pestaña actual..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Shortcut won't work while the profile is not marked as visible." -#~ msgstr "" -#~ "El acceso rápido no funcionará hasta que marque el perfil como visible." - -#~ msgctxt "" -#~ "@info:tooltip List item's checkbox for making item (profile) visible in a " -#~ "menu" -#~ msgid "Show profile in menu" -#~ msgstr "Mostrar el perfil en el menú" - -#~ msgid "" -#~ "Profiles marked as visible will appear in context and File menu. A " -#~ "shortcut for creating a new tab can be assigned to each entry. However, " -#~ "only shortcuts of visible profiles will work." -#~ msgstr "" -#~ "Los perfiles marcados como visibles aparecerán en el menú «Archivo» y en " -#~ "el de contexto. Se puede asignar a cada entrada un acceso rápido para " -#~ "crear una nueva pestaña. No obstante, solo funcionarán los accesos " -#~ "rápidos de los perfiles visibles." - -#~ msgctxt "@action:inmenu" -#~ msgid "&Current Tab Settings..." -#~ msgstr "Preferen&cias de la pestaña actual..." - -#~ msgid "Dim the colors when the window loses focus" -#~ msgstr "Atenuar los colores cuando la ventana pierde el foco" - -#~ msgctxt "@title Preferences page name" -#~ msgid "Tab Bar" -#~ msgstr "Barra de pestañas" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Rename Tab..." -#~ msgstr "&Cambiar el nombre a la pestaña..." - -#~ msgid "^S Scroll lock: Locks terminal output" -#~ msgstr "^S Bloqueo de desplazamiento: bloquea la salida del terminal" - -#~ msgid "ESC: Used for special commands to the current process" -#~ msgstr "ESC: Se usa para órdenes especiales del proceso actual" - -#~ msgid "Other unprintable character (\\x%1)" -#~ msgstr "Otro carácter no imprimible (\\x%1)" - -#~ msgctxt "@action:button" -#~ msgid "&Remove unprintable" -#~ msgstr "&Eliminar no imprimibles" - -#~ msgctxt "@action:button" -#~ msgid "Confirm &paste" -#~ msgstr "Confirmar el &pegado" - -#~ msgid "Vary the background color for each tab" -#~ msgstr "Variar el color del fondo de cada pestaña" - -#~ msgctxt "@action:itooltip" -#~ msgid "Maximize / Restore Terminal" -#~ msgstr "Maximizar/restaurar terminal" - -#~ msgctxt "@title Preferences page name" -#~ msgid "TabBar" -#~ msgstr "TabBar" - -#~ msgctxt "@title Preferences page name" -#~ msgid "File Location" -#~ msgstr "Ubicación del archivo" - -#~ msgid "" -#~ "Scrollback File Location

          Use this groupbox to determine where " -#~ "Konsole will store the scrollback files.

          " -#~ msgstr "" -#~ "Ubicación del archivo de historial de desplazamiento

          Usar este " -#~ "cuadro para determinar dónde almacenará Konsole los archivos de historial " -#~ "de desplazamiento.

          " - -#~ msgid "" -#~ "These settings only apply when Profile->Scrolling->Unlimited scrollback " -#~ "is selected." -#~ msgstr "" -#~ "Estas preferencias solo se aplican cuando se ha seleccionado la opción " -#~ "Perfil->Desplazamiento->Historial de desplazamiento ilimitado." - -#~ msgid "Use system &location" -#~ msgstr "Usar la &ubicación del sistema" - -#~ msgid "Use user specific location" -#~ msgstr "Usar la ubicación específica del usuario" - -#~ msgid "Use specified loca&tion" -#~ msgstr "Usar la u&bicación indicada" - -#~ msgid "" -#~ "For the 'Use user specific location', any application using KonsolePart " -#~ "will have the app name instead of konsole." -#~ msgstr "" -#~ "Para «Usar la ubicación específica del usuario», cualquier aplicación que " -#~ "use KonsolePart tendrá el nombre de la aplicación en lugar de «konsole»." - -#~ msgid "For any changes to take effect, quit Konsole and restart." -#~ msgstr "" -#~ "Para que los cambios surtan efecto, hay que salir de Konsole y " -#~ "reiniciarla." - -#~ msgid "Konsole Window" -#~ msgstr "Ventana de Konsole" - -#~ msgctxt "@info:tooltip" -#~ msgid "Click to toggle status" -#~ msgstr "Pulse para conmutar el estado" - -#~ msgctxt "@title:column Profile label" -#~ msgid "Name" -#~ msgstr "Nombre" - -#~ msgid "&New Profile..." -#~ msgstr "&Nuevo perfil..." - -#~ msgid "&Edit Profile..." -#~ msgstr "&Editar perfil..." - -#~ msgid "&Delete Profile" -#~ msgstr "&Borrar perfil" - -#~ msgid "The 'Show' column must be checked for these shortcuts to work." -#~ msgstr "" -#~ "Debe marcar la columna «Mostrar» para que estos accesos rápidos funcionen." - -#~ msgid "Tab bar position:" -#~ msgstr "Posición de la barra de pestañas:" - -#~ msgid "Always Show Tab Bar" -#~ msgstr "Mostrar barra de pestañas" - -#~ msgid "Show Tab Bar When Needed" -#~ msgstr "Mostrar barra pestañas cuando se necesite" - -#~ msgid "Always Hide Tab Bar" -#~ msgstr "Esconder barra de pestañas" - -#~ msgid "Tab bar visibility:" -#~ msgstr "Visibilidad de la barra de pestañas:" - -#~ msgid "New tab behavior:" -#~ msgstr "Comportamiento de las pestañas nuevas:" - -#~ msgid "Put New Tab At The End" -#~ msgstr "Colocar la nueva pestaña al final" - -#~ msgctxt "@action Shortcut entry" -#~ msgid "Next View Container" -#~ msgstr "Siguiente contenedor de vista" - -#~ msgid "&Close Tab" -#~ msgstr "&Cerrar pestaña" - -#~ msgctxt "@action:inmenu Close Active View" -#~ msgid "Close Active" -#~ msgstr "Cerrar activa" - -#~ msgctxt "@action:inmenu Close Other Views" -#~ msgid "Close Others" -#~ msgstr "Cerrar otras" - -#~ msgid "Expand the tab widths (Qt5.9+ uses the full window width)" -#~ msgstr "" -#~ "Expandir la anchura de las pestañas (Qt5.9+ usa la anchura completa de la " -#~ "ventana)" - -#~ msgid "Starting with Qt 5.9, the next two options have different effects." -#~ msgstr "" -#~ "A partir de Qt 5.9, las dos siguientes opciones producen efectos " -#~ "diferentes." - -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgid "Select Any Font" -#~ msgstr "Seleccionar un tipo de letra" - -#~ msgid "Select Fixed Width Font" -#~ msgstr "Seleccionar tipo de letra de ancho fijo" - -#~ msgctxt "@title:group Generic, common options" -#~ msgid "General" -#~ msgstr "General" - -#~ msgid "Rows" -#~ msgstr "Filas" - -#~ msgid "This will not alter any open windows." -#~ msgstr "Esto no modificará ninguna de las ventanas abiertas" - -#~ msgid "Qt::ElideRight" -#~ msgstr "Qt::ElideRight" - -#~ msgid "Select the font used in this profile" -#~ msgstr "Seleccione el tipo de letra usando en este perfil" - -#~ msgid "Show all fonts instead of the monospaced fonts" -#~ msgstr "" -#~ "Mostrar todos los tipos de letra en lugar de los tipos de letra de ancho " -#~ "fijo" - -#~ msgid "Scroll Bar" -#~ msgstr "Barra de desplazamiento " - -#~ msgid "Hide the scroll bar" -#~ msgstr "Ocultar la barra de desplazamiento" - -#~ msgctxt "@option:radio Hide the scroll bar" -#~ msgid "Hide" -#~ msgstr "Ocultar" - -#~ msgid "Show on left side" -#~ msgstr "Mostrar a la izquierda" - -#~ msgid "Select Text" -#~ msgstr "Seleccionar texto" - -#~ msgid "Characters considered part of a word when double clicking:" -#~ msgstr "" -#~ "Caracteres considerados parte de una palabra cuando se hace doble clic:" - -#~ msgid "Which part of current line should be selected with triple click ." -#~ msgstr "Qué parte de la línea actual se seleccionará al hacer triple clic." - -#~ msgid "Copy && Paste" -#~ msgstr "Copiar y pegar" - -#~ msgid "Mouse middle button:" -#~ msgstr "Botón central del ratón:" - -#~ msgid "Show URL hints when these keys are pressed:" -#~ msgstr "Mostrar pistas de URL al pulsar estas teclas:" - -#~ msgid "Enable flow control using Ctrl+S, Ctrl+Q" -#~ msgstr "Habilitar el control de flujo mediante Ctrl+S , Ctrl+Q" - -#~ msgid "Cursor shape:" -#~ msgstr "Forma del cursor:" - -#~ msgid "Encoding" -#~ msgstr "Codificación" - -#~ msgctxt "@action:button Pick an encoding" -#~ msgid "Select" -#~ msgstr "Seleccionar" - -#~ msgid "No scrollback" -#~ msgstr "Sin historial de desplazamiento" - -#~ msgid "Show application name on the titlebar" -#~ msgstr "Mostrar el nombre de la aplicación en la barra de título" - -#~ msgid "Show \"- Konsole\" on the titlebar" -#~ msgstr "Mostrar «- Konsole» en la barra de título" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Close Tab" -#~ msgstr "&Cerrar pestaña" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a new tab. Press and hold to select profile from menu" -#~ msgstr "" -#~ "Crear una nueva pestaña. Pulse y mantenga para seleccionar un perfil del " -#~ "menú" - -#~ msgctxt "@info:whatsthis" -#~ msgid "" -#~ "Tab BarThe tab bar allows you to switch and move " -#~ "tabs. You can double-click a tab to change its name." -#~ msgstr "" -#~ "Barra de pestañasLa barra de pestañas le permite " -#~ "cambiar y mover pestañas. Puede hacer doble clic sobre una pestaña para " -#~ "cambiar su nombre." - -#~ msgctxt "@action:button Display options menu" -#~ msgid "Options" -#~ msgstr "Opciones" - -#~ msgctxt "@action:button Search from bottom" -#~ msgid "From bottom" -#~ msgstr "Desde el final" - -#~ msgctxt "@action:button Search from top" -#~ msgid "From top" -#~ msgstr "Desde el principio" - -#~ msgid "Profile name is empty." -#~ msgstr "El nombre del perfil está vacío." - -#~ msgid "This terminal is read-only. Dismiss" -#~ msgstr "" -#~ "Este terminal es de solo lectura. Descartar" - -#~ msgid "&Stop" -#~ msgstr "&Alto" - -#~ msgid "Icon:" -#~ msgstr "Icono:" - -#~ msgctxt "@info:tooltip" -#~ msgid "Click to rename profile" -#~ msgstr "Pulse para cambiar el nombre del perfil" - -#, fuzzy -#~| msgctxt "@title" -#~| msgid "Konsole" -#~ msgctxt "@title" -#~ msgid "Demo KonsolePart" -#~ msgstr "Konsole" - -#, fuzzy -#~| msgctxt "@info:credit" -#~| msgid "(c) 1997-2017, The Konsole Developers" -#~ msgctxt "@info:credit" -#~ msgid "(c) 2017, The Konsole Developers" -#~ msgstr "© 1997-2017, los desarrolladores de Konsole" - -#~ msgid "Show URL hint overlays that can be triggered when holding down CTRL." -#~ msgstr "" -#~ "Mostrar pistas de URL superpuestas que se pueden activar al pulsar la " -#~ "tecla CTRL." - -#~ msgid "DEC VT420 Terminal" -#~ msgstr "Terminal DEC VT420" - -#~ msgctxt "@info:shell" -#~ msgid "Use --nofork to run in the foreground (helpful with the -e option)." -#~ msgstr "" -#~ "Utilice --nofork para ejecutarla en primer plano (es útil con la opción -" -#~ "e)." - -#~ msgid "Manage Profiles..." -#~ msgstr "Gestionar perfiles..." - -#~ msgctxt "@title" -#~ msgid "Konsole" -#~ msgstr "Konsole" - -#~ msgid "Shell" -#~ msgstr "Intérprete de órdenes" - -#~ msgid "--- Type anything in this box ---" -#~ msgstr "--- Escriba algo en este cuadro ---" - -#~ msgid "Set the window size and position for this profile when exiting" -#~ msgstr "" -#~ "Establecer el tamaño y posición de las ventanas para este perfil al salir" - -#~ msgid "Save window size and position on exit" -#~ msgstr "Guardar el tamaño y posición de las ventanas al salir" diff --git a/local/recipes/kde/konsole/source/po/et/konsole.po b/local/recipes/kde/konsole/source/po/et/konsole.po index deb6b00743..7cf9e21c3f 100644 --- a/local/recipes/kde/konsole/source/po/et/konsole.po +++ b/local/recipes/kde/konsole/source/po/et/konsole.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2020-10-23 12:16+0200\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian <>\n" @@ -53,7 +53,7 @@ msgstr "Vaade" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Vaate poolitamine" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "&Kerimine" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -174,49 +174,65 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Menüüriba peitmine sõltumata vaikeseadistusest" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Kaardiriba näitamine sõltumata vaikeseadistusest" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Kaardiriba peitmine sõltumata vaikeseadistusest" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Kaardiriba näitamine sõltumata vaikeseadistusest" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Kaardiriba peitmine sõltumata vaikeseadistusest" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsooli käivitamine täisekraanirežiimis" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Läbipaistva tausta keelamine, isegi kui süsteem seda toetab." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Saadaolevate profiilide nimekiri" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Kõigi profiili omaduste nimede ja tüüpide nimekiri (kasutamiseks võtmega -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Profiili omaduse väärtuse muutmine." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -226,7 +242,7 @@ msgstr "" "Käivitatav käsk. See võtab omaks kõik edasised argumendid, nii et kasuta " "seda viimasena." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,13 +250,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Käsule edastatavad argumendid" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -258,157 +274,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Esiplaan" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Taust" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Värv 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Värv 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Värv 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Värv 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Värv 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Värv 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Värv 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Värv 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Esiplaan (intensiivne)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Taust (intensiivne)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Värv 1 (intensiivne)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Värv 2 (intensiivne)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Värv 3 (intensiivne)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Värv 4 (intensiivne)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Värv 5 (intensiivne)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Värv 6 (intensiivne)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Värv 7 (intensiivne)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Värv 8 (intensiivne)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Esiplaan (nõrk)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Taust (nõrk)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Värv 1 (nõrk)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Värv 2 (nõrk)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Värv 3 (nõrk)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Värv 4 (nõrk)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Värv 5 (nõrk)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Värv 6 (nõrk)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Värv 7 (nõrk)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Värv 8 (nõrk)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -671,6 +687,41 @@ msgstr "&Üleval" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Masin:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "Name of the default/builtin profile" +#| msgid "Default" +msgid " [default]" +msgstr "Vaikimisi" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -714,7 +765,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopeeri asukoht" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Pisipildi genereerimine" @@ -745,13 +796,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Fondi valimine" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Kõigi fontide näitamine" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -791,17 +842,17 @@ msgstr "Klahvikombinatsioon" msgid "Output" msgstr "Väljund" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Uus kiirklahvide nimekiri" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Kiirklahvide nimekirja muutmine" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Kiirklahviskeemi ei saa salvestada, kui kirjeldus puudub." @@ -809,7 +860,7 @@ msgstr "Kiirklahviskeemi ei saa salvestada, kui kirjeldus puudub." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -843,19 +894,19 @@ msgstr "Sisend:" msgid "Output:" msgstr "Väljund:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsool" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminaliemulaator" -#: main.cpp:190 +#: main.cpp:193 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "(c) 1997-2020, The Konsole Developers" @@ -863,49 +914,49 @@ msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2020: Konsole arendajad" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Üldine hooldaja, veaparandused ja üldised parandused" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Endine hooldaja, port KDE4 peale" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Algne autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -913,56 +964,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Üldine hooldaja, veaparandused ja üldised parandused" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Veaparandused ja üldised parandused" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -970,7 +1021,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Veaparandused ja üldised parandused" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -978,98 +1029,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Üldised parandused" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Veaparandused" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solarise toetus ning ajalugu" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Veaparandused ja käivitamise parandamine" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Märgistamise parandused" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1079,13 +1130,13 @@ msgstr "" "Põimitud Konsool\n" "Tööriistariba ja seansside nimed" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1095,25 +1146,25 @@ msgstr "" "Põimitud Konsool\n" "Üldised parandused" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visuaalsed efektid" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1123,122 +1174,122 @@ msgstr "" "Kvt projekti kood\n" "Üldised parandused" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Skeemi ja teksti valiku täiustamine" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI port" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD port" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Tänu ka kõigile teistele.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Uus kaart" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klooni kaart" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Uus &aken" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Sulge aken" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Järjehoidjad" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Uus värviskeem" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profiilide haldamine..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktiveeri menüü" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move tab to the left" @@ -1246,13 +1297,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Kaardi liigutamine vasakule" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1261,67 +1312,67 @@ msgid_plural "" msgstr[0] "Selles aknas töötab üks protsess. Kas tõesti väljuda?" msgstr[1] "Selles aknas töötab %1 protsessi. Kas tõesti väljuda?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Sulgemise kinnitus" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Sulge ake&n" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Sulge ak&tiivne kaart" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Selles aknas on avatud %1 terminali. Kas tõesti soovid väljuda?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiilid" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Üldine" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Kaardiriba ja poolitamine" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Ajutised failid" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Pisipildid" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1417,7 +1468,7 @@ msgstr "Ava fail" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1431,29 +1482,29 @@ msgid "Cancel" msgstr "Loo&bu" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Käsk:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Käsk:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1496,7 +1547,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1558,11 +1609,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Configure" @@ -1626,97 +1677,97 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Suuruse seadistamine" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Tee topeltklõps kiirklahvi muutmiseks" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Algset seanssi ei suleta lõpetamisel automaatselt." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1925,25 +1976,25 @@ msgstr "Väljundi valikud" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Printerisõ&bralik režiim (must tekst, taustata)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Väljundi &skaleerimine" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Vaikeprofiil" @@ -2008,17 +2059,39 @@ msgstr "Tee topeltklõps kiirklahvi muutmiseks" msgid "Tab Properties" msgstr "Kaardi omadused" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 - väljundi salvestamine" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 ei ole korrektne URL, väljundit ei saa salvestada." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Faili pole võimalik kirjutada." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2054,82 +2127,103 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tumedad pastellvärvid" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Roheline mustal" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linuxi värvid" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Punane mustal" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Ülesäritatud" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Ülesäritatud valgus" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Valge mustal" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Vaikimisi (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linuxi konsool" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solarise konsool" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Otsing:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Kirjuta siia otsitav tekst" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Signaal seansis '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Binaarfaili ei leitud: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Hoiatus: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Käivitamiseks ei leitud interaktiivset shelli." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2138,217 +2232,220 @@ msgstr "" "'%1' ei leitud, selle asemel käivitatakse '%2'. Palun kontrolli profiili " "seadistusi." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Programmi '%1' ei saa argumentidega '%2' käivitada." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Vaikus seansis '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Switch to Session %1" msgid "Show session" msgstr "Lülitu seansile %1" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"Äsja kasutati D-Busi meetodeid sendText/runCommand. Nende meetodite avaliku " -"kasutamisega on seotud mõningad turbeprobleemid. Soovi korral võib need " -"meetodid muuta Konsooli ümber kompileerides ainult sisemiseks kasutamiseks " -"mõelduks.

          Seda hoiatust näidatakse antud Konsooli isendi korral ainult " -"ühel korral.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Lõpetatud" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programmi '%1' tabas krahh." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programm '%1' lõpetas töö staatusega %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Zmodemi edenemine" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktiivsus seansis '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsool" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Protsess \"%1\" lõpetas seansis \"%2\" töö" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ei tea, kuidas avada järjehoidjat: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Otsi \"%1\" mootoriga" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Seadista veebikiirklahve..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Sul&ge seanss" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Ava failihaldur" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopeeri" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Poolita vaade vertikaalselt" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Poolita vaade horisontaalselt" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Sisendi kopeerimine" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Sisendi kopeerimine" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Aseta valik" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Veebiotsing" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Vali kõik" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Vali &rida" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Vali &rida" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "S&alvesta väljund..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "S&alvesta väljund..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Trüki ekraan..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Ajaloo kohandamine..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Puhasta ajalugu" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Puhasta ajalugu ja lähtesta" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Profiili muutmine" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Eelmine vaade" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Profiili vahetamine" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Kod&eering" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2356,136 +2453,136 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Kirjutuskaitstud" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Seadista kaarti ..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Kõik &aktiivse akna kaardid" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Vali kaar&did..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Mitte ükski" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopeeri sisend" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Saada &Zmodemiga..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Jälgi &aktiivsust" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Jälgi &aktiivsust" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Jälgi &vaikust" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Protsesside töö lõpetamise jälgimine" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Suurenda fonti" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Vähenda fonti" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Lähtesta fondi suurus" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Signaali saatmine" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Prot&sess passiivseks" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Jätka protsessi tööd" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Toru ma&ha" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Katk&esta protsess" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Lõpe&ta protsess" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Ta&pa protsess" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Kasutaja signaal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Kasutaja signaal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "Uus profiil" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Aktiivse profiili muutmine..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2493,7 +2590,7 @@ msgid "" msgstr "" "Selles seansis töötab praegu programm. Kas tõesti soovid seansi sulgeda?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2501,12 +2598,12 @@ msgid "" msgstr "" "Selles seansis töötab praegu programm '%1'. Kas tõesti soovid seansi sulgeda" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Sulgemise kinnitus" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Close Tab" @@ -2514,7 +2611,7 @@ msgctxt "@action:button" msgid "Close Program" msgstr "Sulge kaart" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2523,37 +2620,40 @@ msgstr "" "Üks selles seansi programm ei taha tööd lõpetada. Kas tõesti lõpetada selle " "töö vägisi?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Selle seansi programm '%1' ei taha tööd lõpetada. Kas tõesti lõpetada selle " "töö vägisi?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Salvesta Zmodemi allalaadimine..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2563,13 +2663,13 @@ msgstr "" "

          Tuvastati Zmodemi failiedastuse katse, kuid süsteemis ei leitud kõlbuliku " "Zmodemi tarkvara.

          Võiksid paigaldada paketi 'rzsz' või 'lrzsz'.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "

          Praegusel seansil on juba käsil Zmodemi failiedastus.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2578,7 +2678,7 @@ msgstr "" "

          Süsteemist ei leitud kõlblikku Zmodemi tarkvara.

          Võiksid paigaldada " "paketi 'rzsz' või 'lrzsz'.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Failide valimine ZModemiga üleslaadimiseks" @@ -2601,56 +2701,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Seadistamine" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Otsing:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Menüü kiirklahvide lubamine" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Sisselülitamisel eiratakse profiili seadistusi" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Akna suurus jäetakse meelde" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Akna tiitli näitamine tiitliribal" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Terminal saab fookuse, kui selle kohale viiakse hiirekursor" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Regulaaravaldisega sobimine" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2658,89 +2711,163 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Kõigi Konsooli akende käitamine ühe protsessina" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Kõigi vastete esiletõstmine" +msgid "If enabled, profile settings will be ignored" +msgstr "Sisselülitamisel eiratakse profiili seadistusi" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Siin saab määrata, kas otsing on tõstutundlik" +msgid "Remember window size" +msgstr "Akna suurus jäetakse meelde" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Tõstutundlik" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Uue kaardi asukoht:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Akna tiitliriba ja raami eemaldamine" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Protsess ja aken:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Märguanded:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Kõiki dialooge näidatakse uuesti" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Kõigi \"Rohkem ei küsita\" teadete lubamine" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Siin saab määrata, kas otsingut tuleb alustada alt" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Otsimine tagasisuunas" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Siin saab määrata, kas otsing on tõstutundlik" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Tõstutundlik" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Protsess ja aken:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Kõigi vastete esiletõstmine" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Otsing:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Siin saab määrata, kas otsingut tuleb alustada alt" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Menüü kiirklahvide lubamine" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Terminal saab fookuse, kui selle kohale viiakse hiirekursor" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Kõiki dialooge näidatakse uuesti" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Kõigi \"Rohkem ei küsita\" teadete lubamine" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Akna tiitli näitamine tiitliribal" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Akna tiitliriba ja raami eemaldamine" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Regulaaravaldisega sobimine" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2766,71 +2893,111 @@ msgstr "Aktiivse aknasuuruse kasutamine järgmisel käivitamisel" msgid "The window size will be saved upon exiting Konsole" msgstr "Akna suuruse salvestamine väljumisel" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Konsooli käivitamisel kasutatakse võimaluse korral juba töötavat protsessi" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Pisipildi laius" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Pisipildi laiuse määramine" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Tõstuklahvi kasutamine pisipildi näitamiseks" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Alt-klahvi kasutamine pisipildi näitamiseks" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Ctrl-klahvi kasutamine pisipildi näitamiseks" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Otsing on tõstutundlik" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Kõigi vastete esiletõstmine" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Siin saab määrata, kas leitud tekst tõstetakse esile" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2838,91 +3005,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Kogu kaardiriba nähtavuse kontrollimine" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Paneelide vahele jäetava pideme suuruse määramine" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Kaardiriba asukoha kontrollimine" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Kaardiriba visuaalse stiili kontrollimine" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Kasutaja määratud .css-faili kasutamine kaardiribal" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr ".css-fail kaardiriba stiili määramiseks" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Keskklõpsuga avatud kaardil suleb selle" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Kaardiriba \"uue kaardi\" nupu näitamine või peitmine" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Kaardiriba \"uue kaardi\" nupu näitamine või peitmine" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Nupu \"Sulge kaart\" näitamine või peitmine" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Määramine, kuhu asetada uus kaart" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Kaartide laiuse suurendamine" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Ajaloofailid salvestatakse süsteemsesse kataloogi" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Ajaloofailid salvestatakse kasutaja määratud kataloogi" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Ajaloofailid salvestatakse määratud kataloogi" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Ajaloofailid salvestatakse sellesse kataloogi" @@ -2935,26 +3109,24 @@ msgid "Enable memory monitoring:" msgstr "Kaartide jälgimine" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3120,125 +3292,148 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Ei näidata" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Kaardi sulgemise nupu näitamine:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Alati" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Mitte kunagi" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Muu:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Nupu \"Uus kaart\" näitamine" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Üksikute kaartide laiendamine täisekraani" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Kasutaja määratud laaditabeli kasutamine:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(puudub)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Käitumine" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Uue kaardi asukoht:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Lõ&pus" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Aktiivse kaardi &järel" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Kaardi sulgemine keskklõpsuga" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Poolitatud vaade" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Päise näitamine:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Kui vaja" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Mitte kunagi" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Lohistuspideme suurus:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Väike" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Keskmine" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Suur" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3287,11 +3482,15 @@ msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Selle funktsiooni kasutamiseks lülita oma profiili " "seadistuses sisse Hiir->Muu->Failide " @@ -3334,64 +3533,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Menüü kiirklahvide lubamine" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Suurus: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Kas tõesti asetada %1 märk?" msgstr[1] "Kas tõesti asetada %1 märki?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Asetamise kinnitus" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Teksti lõpp/katkestus: võib lõpetada aktiivse protsessi töö" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Ülekande lõpp: võib väljuda aktiivsest protsessist" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Kell: püüab anda kuuldava hoiatuse" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Kustutusklahv (Backspace)" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Seadme juhtimine kolm/XOFF: väljundi peatamine" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Asendamine/peatamine: võib peatada aktiivse protsessi" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: kasutatakse terminali oleku manipuleerimiseks" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Failieraldaja/Väljumine: võib lõpetada aktiivse protsessi töö" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3400,31 +3599,31 @@ msgstr "" "Tekst, mida üritad asetada, sisaldab peidetud juhtmärke. Kas filtreerida " "need välja?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Asetamise kinnitus" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Aseta &ilma juhtmärkideta" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Aseta kõik" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "Loo&bu" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been peatatud kiirklahviga Ctrl+S. Taasalustamiseks vajuta Ctrl+Q." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "See terminal on kirjutuskaitstud." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Muu&da kataloogiks" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Aseta asuko&ht" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Vaate poolitamine" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Poolita vaade vertikaalselt" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Poolita vaade horisontaalselt" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3477,7 +3676,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Poolita vaade horisontaalselt" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3485,7 +3684,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Poolita vaade vertikaalselt" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3493,7 +3692,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Poolita vaade horisontaalselt" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3501,121 +3700,137 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Poolita vaade horisontaalselt" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Laienda vaadet" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Vähenda vaadet" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Haagi aktiivne vaade lahti" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Haagi aktiivne kaart lahti" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Järgmine kaart" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Eelmine kaart" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fookus ülemisel terminalil" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fookus alumisel terminalil" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fookus vasakpoolsel terminalil" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fookus parempoolsel terminalil" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fookus vasakpoolsel terminalil" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fookus alumisel terminalil" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Lülitumine viimasele kaardile" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Viimati kasutatud kaardid" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Lülitumine kahe kaardi vahel" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Viimati kasutatud kaardid (teistpidi)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Aktiivse vaate maksimeerimise lülitamine" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Lülita aktiivse vaate maksimeerimist" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Toggle maximize current view" @@ -3623,7 +3838,7 @@ msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Aktiivse vaate maksimeerimise lülitamine" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Toggle maximize current view" @@ -3631,61 +3846,61 @@ msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Lülita aktiivse vaate maksimeerimist" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Kaardi liigutamine paremale" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Kaardi liigutamine vasakule" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Lülitumine kaardile %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Text interaction" msgid "Semantic hints " msgstr "Teksti käitlemine" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Ridade arv: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move tab to the left" @@ -3693,13 +3908,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Kaardi liigutamine vasakule" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3712,7 +3927,7 @@ msgstr "" "Väljundi salvestamisel tekkis probleem.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3725,13 +3940,13 @@ msgstr "" "Väljundi salvestamisel tekkis probleem.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3830,15 +4045,27 @@ msgstr "Vaikimisi kodeering:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Ridade arv: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, fuzzy, kde-format #| msgid "&Never" msgctxt "Never" @@ -3846,7 +4073,7 @@ msgid "&Never" msgstr "&Mitte kunagi" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, fuzzy, kde-format #| msgid "Enable URL hints" msgctxt "When showing URL hints" @@ -3854,7 +4081,7 @@ msgid "When &URL hints show" msgstr "URL-i vihje lubamine" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -3892,7 +4119,7 @@ msgstr "Muuda valitud värviskeemi" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3945,14 +4172,23 @@ msgstr "Jõuliste värvide kasutamine rasvase kirja puhul" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Joonestuselementide puhul sisseehitatud koodi asemel valitud fondi kasutamine" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Fondi joonestuselementide kasutamine" @@ -4075,29 +4311,45 @@ msgid "Make the cursor blink regularly" msgstr "Kursor pannakse regulaarselt vilkuma" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Lubatud" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktiveerimine:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Kursor pannakse regulaarselt vilkuma" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Muu" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Aken:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4107,25 +4359,25 @@ msgstr "" "muutmist" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Terminali suuruse vihje näitamine pärast suuruse muutmist" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Tumendamise intensiivsus:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "Cursor color options" #| msgid "Color:" @@ -4134,123 +4386,123 @@ msgid "Color:" msgstr "Värv:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Vali kursori jaoks kasutatav värv" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Mitteaktiivsed terminalid:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Inactive Terminals:" msgid "Active Terminals:" msgstr "Mitteaktiivsed terminalid:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminali sisu" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Reavahe:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Pikslite arv kahe rea vahel" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Veerised:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Keskjoondus:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Värvide tumendamisega antakse märku, et aken pole enam aktiivne" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Tumendamine" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, fuzzy, kde-format #| msgid "Indicate whether the window is active by dimming the colors" msgid "Indicate whether the window is active by drawing a border" msgstr "Värvide tumendamisega antakse märku, et aken pole enam aktiivne" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Püstjoone asukohaveerg:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Kahesuunalise teksti renderdamine" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4258,46 +4510,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, fuzzy, kde-format #| msgid "Word characters:" msgid "ASCII characters " msgstr "Sõna märgid:" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Match current character" msgid "Brahmic scripts characters" msgstr "Kursori värviks määratakse aktiivse märgi värv" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font:" msgid "Emoji Font:" msgstr "Font:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4307,37 +4559,37 @@ msgstr "" "keele puhul)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Kahesuunalise teksti renderdamine" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Paste &without control characters" @@ -4345,59 +4597,59 @@ msgid "Ignore wcwidth of problematic characters" msgstr "Aseta &ilma juhtmärkideta" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profiili muutmine" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Üldine" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Kaardid" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Välimus" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Kerimine" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klaviatuur" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Kiirklahvid" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Hiir" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Muu" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, fuzzy, kde-kuit-format #| msgid "" #| "

          Konsole does not have permission to save this profile to:
          " @@ -4414,51 +4666,58 @@ msgstr "" "p>

          Seadistuste salvestamiseks muuda profiili seadistusfaili õigusi või " "muuda profiili nime ja salvesta sel moel seadistused uue profiili all.

          " -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "

          A profile with this name already exists.

          " msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "

          Sellise nimega profiil on juba olemas.

          " -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Profiili muutmine: %2" msgstr[1] "%1 profiili muutmine: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile" msgstr "Uus profiil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Profiili \"%1\" muutmine" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Ei näidata" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4468,7 +4727,7 @@ msgid_plural " columns" msgstr[0] " veerg" msgstr[1] " veergu" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4478,47 +4737,47 @@ msgid_plural " rows" msgstr[0] " rida" msgstr[1] " rida" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "Süsteemne si&gnaal" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications:" msgid "System Notifications" msgstr "Märguanded:" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "&Visuaalne signaal" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "" "Valitud profiili määramine uute terminaliseansside vaikimisi profiiliks" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Keskkonna muutmine" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Üks keskkonnamuutuja rea kohta" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4526,23 +4785,23 @@ msgid_plural " seconds" msgstr[0] " sekund" msgstr[1] " sekundit" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Algkataloogi valik" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Hangi uus ..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Skeemi %1 laadimine nurjus." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4551,7 +4810,7 @@ msgstr "" "Sellel värviskeemil on läbipaistev taust, mida sinu töölaud ei paista " "toetavat." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4560,13 +4819,13 @@ msgstr "" "Konsole käivitati enne seda, kui lubati töölauaefektid. Läbipaistva tausta " "kasutamiseks tuleb Konsole taaskäivitada." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Vaikeprofiil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4583,7 +4842,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4674,27 +4933,55 @@ msgstr "Algkataloogi valimine" msgid "Start in same directory as current session" msgstr "Käivitamine aktiivse seansiga samas kataloogis" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Käivitamine aktiivse seansiga samas kataloogis" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Keskkond:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Muuda keskkonnamuutujate nimekirja ja nende väärtusi" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" msgstr "Terminali algsuurus:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4707,7 +4994,7 @@ msgstr "" "määrangute kasutamiseks olema välja lülitatud.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4715,26 +5002,26 @@ msgid "&Terminal bell mode:" msgstr "Terminaliemulaator" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Text interaction" msgid "Semantic Integration" msgstr "Teksti käitlemine" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4744,9 +5031,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, fuzzy, kde-format #| msgctxt "@option:radio Never show the split header" #| msgid "Never" @@ -4759,9 +5046,9 @@ msgstr "Mitte kunagi" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, fuzzy, kde-format #| msgid "Enable URL hints" msgctxt "When showing URL hints" @@ -4773,9 +5060,9 @@ msgstr "URL-i vihje lubamine" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -4784,26 +5071,26 @@ msgid "Always" msgstr "Alati" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Blur background" msgid "Red error background:" msgstr "Tausta hägustamine" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Blur background" msgid "Alternating background:" @@ -5151,51 +5438,94 @@ msgid "Scrollback:" msgstr "Kerimine ehk ajalugu:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Lehekülje üles-alla kerimise maht:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Vaatevälja tulevate ridade esiletõstmine" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Peidetud" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Esiletõstmine:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Lehte keritakse poole akna kaupa" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half screen height" msgid "Half screen heigh&t" msgstr "Poole lehe jagu" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Lehte keritakse kogu akna jagu" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full screen height" msgid "F&ull screen height" msgstr "Täislehe jagu" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Kerimisriba asukoht:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Kerimisriba näidatakse terminaliakna paremas servas" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the right side" #| msgid "Right side" @@ -5204,13 +5534,13 @@ msgid "Ri&ght side" msgstr "Paremas servas" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Kerimisriba näidatakse terminaliakna vasakus servas" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the left side" #| msgid "Left side" @@ -5218,53 +5548,22 @@ msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Vasakus servas" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Peidetud" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Esiletõstmine:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Vaatevälja tulevate ridade esiletõstmine" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Kerimisriba asukoht:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5382,116 +5681,117 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Mitte ükski" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Otsing ..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Kirjuta siia otsitav tekst" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Järgmine" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Aktiivse otsingusõna järgmise esinemise otsimine" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Eelmine" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Aktiivse otsingusõna eelmise esinemise otsimine" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Valikute menüü näitamine" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Otsinguriba sulgemine" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Tõstutundlik" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Siin saab määrata, kas otsing on tõstutundlik" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Valikute menüü näitamine" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Otsinguriba sulgemine" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Regulaaravaldisega sobimine" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Kõigi vastete esiletõstmine" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Siin saab määrata, kas leitud tekst tõstetakse esile" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Otsimine tagasisuunas" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Siin saab määrata, kas otsingut tuleb alustada alt" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Siin saab määrata, kas otsingut tuleb alustada alt" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Aktiivse otsingusõna otsimine alates alt" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5502,7 +5802,7 @@ msgstr "Aktiivse otsingusõna otsimine alates ülalt" msgid "Print Shell" msgstr "Shelli trükkimine" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "Do not show a close button" #| msgid "None" @@ -5546,6 +5846,13 @@ msgstr "Tavaline kaardinimetuse vorming" msgid "Tab Co&lor:" msgstr "Kaardi värv:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Vali kaar&di värv" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5641,14 +5948,22 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Lähtesta ja puhasta terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&On each tab" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "I&gal kaardil" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Haagi kaart lahti" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Close tab" @@ -5656,24 +5971,40 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Sulge kaart" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Haagi kaart lahti" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Seadista kaarti ..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Sulge kaart" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "Äsja kasutati D-Busi meetodeid sendText/runCommand. Nende meetodite " +#~ "avaliku kasutamisega on seotud mõningad turbeprobleemid. Soovi korral " +#~ "võib need meetodid muuta Konsooli ümber kompileerides ainult sisemiseks " +#~ "kasutamiseks mõelduks.

          Seda hoiatust näidatakse antud Konsooli isendi " +#~ "korral ainult ühel korral.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Tõstutundlik" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Puudub" @@ -6255,9 +6586,6 @@ msgstr "Sulge kaart" #~ msgid "New" #~ msgstr "Uus " -#~ msgid "Select &Tab Color" -#~ msgstr "Vali kaar&di värv" - #~ msgid "Basic Profile Options" #~ msgstr "Profiili põhivalikud" @@ -6753,9 +7081,6 @@ msgstr "Sulge kaart" #~ msgid "Overwrite" #~ msgstr "Kirjuta üle" -#~ msgid "Unable to write to file." -#~ msgstr "Faili pole võimalik kirjutada." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/eu/konsole.po b/local/recipes/kde/konsole/source/po/eu/konsole.po index 0762e25142..bc6b8623ec 100644 --- a/local/recipes/kde/konsole/source/po/eu/konsole.po +++ b/local/recipes/kde/konsole/source/po/eu/konsole.po @@ -1,27 +1,27 @@ # Translation for konsole.po to Euskara/Basque (eu). -# Copyright (C) 2002-2024 This file is copyright: +# Copyright (C) 2002-2026 This file is copyright: # This file is distributed under the same license as the konsole package. -# SPDX-FileCopyrightText: 2023, 2024 KDE euskaratzeko proiektuko arduraduna +# SPDX-FileCopyrightText: 2023-2026 KDE euskaratzeko proiektuaren arduraduna # # Translators: # Marcos , 2002, 2003, 2005, 2006. # Juan Irigoien , 2004. # Asier Urio Larrea , 2008. -# Iñigo Salvador Azurmendi , 2011, 2018, 2019, 2020, 2021, 2022, 2023, 2024. +# Iñigo Salvador Azurmendi , 2011, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026. # Iñaki Larrañaga Murgoitio , 2011. msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-19 08:48+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-06-24 23:26+0200\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 26.04.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #, kde-format @@ -60,7 +60,7 @@ msgstr "Ikuspegia" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Zatitu ikuspegia" @@ -96,7 +96,7 @@ msgid "S&crollback" msgstr "Atzerantz &kiribiltzea" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Saioko tresna-barra" @@ -169,45 +169,57 @@ msgstr "Ibili banatutako prozesu batean" #, kde-format msgctxt "@info:shell" msgid "Show the menubar, overriding the default setting" -msgstr "Erakutsi menu-barra, lehenetsitako ezarpena indargabetuz" +msgstr "Erakutsi menu-barra, lehenetsitako ezarpena gaindituz" #: Application.cpp:67 #, kde-format msgctxt "@info:shell" msgid "Hide the menubar, overriding the default setting" -msgstr "Ezkutatu menu-barra, lehenetsitako ezarpena indargabetuz" +msgstr "Ezkutatu menu-barra, lehenetsitako ezarpena gaindituz" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Erakutsi tresna-barra guztiak, lehenetsitako ezarpena gaindituz" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Ezkutatu Fitxa-barra, lehenetsitako ezarpena gaindituz" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Erakutsi Fitxa-barra, lehenetsitako ezarpena indargabetuz" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Ezkutatu Fitxa-barra, lehenetsitako ezarpena indargabetuz" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Abiarazi Konsole pantaila-bete moduan" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Desgaitu atzealde gardenak, sistemak onartzen dituenean ere." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Zerrendatu profil erabilgarriak" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -215,13 +227,13 @@ msgstr "" "Zerrendatu profil-propietateen izen guztiak eta beraien mota (-p aukerarekin " "erabiltzeko)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Aldatu profil-propietate baten balioa." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -231,7 +243,7 @@ msgstr "" "Exekutatu beharreko komandoa. Aukera honek jarraian dituen argumentu guztiak " "harrapatuko ditu, beraz erabili azken aukera gisa." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -241,13 +253,13 @@ msgstr "" "Behartu dagoen instantzia berrerabiltzea funtzionalitatea hausten badu ere, " "adib. «--new-tab». Gehienbat arazteko." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Komandoari emandako argumentuak" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -265,157 +277,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Aurrealdea" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Atzealdea" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "1 kolorea" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "2 kolorea" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "3 kolorea" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "4 kolorea" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "5 kolorea" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "6 kolorea" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "7 kolorea" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "8 kolorea" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Aurrealdea (bizia)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Atzealde (bizia)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "1 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "2 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "3 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "4 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "5 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "6 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "7 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "8 kolorea (bizia)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Aurrealdea (leuna)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Atzealde (leuna)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "1 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "2 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "3 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "4 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "5 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "6 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "7 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "8 kolorea (leuna)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -671,6 +683,39 @@ msgstr "Goian" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Ostalaria" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Edukiontzi-euskarria ez dago erabilgarri Konsole Flatpak barruan dabilenean." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [Lehenetsia]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -716,7 +761,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiatu kokalekua" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Koadro-txikiak sortzea" @@ -747,13 +792,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Hautatu letra-tipoa" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Erakutsi letra-tipo guztiak" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -794,17 +839,17 @@ msgstr "Tekla-konbinazioa" msgid "Output" msgstr "Irteera" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Tekla-konbinazioen zerrenda berria" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Editatu tekla-konbinazioen zerrenda" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -813,7 +858,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -847,67 +892,67 @@ msgstr "Sarrera:" msgid "Output:" msgstr "Irteera:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminal emulatzailea" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, «Konsole»ren garatzaileak" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Mantentzaile orokorra, akatsen konponketa eta hobekuntza orokorrak" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Aurreko mantentzailea, KDE4ra eratortzea" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Jatorrizko egilea" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" @@ -915,159 +960,159 @@ msgstr "" "Birfaktorizatze garrantzitsua, akatsak konpontzea eta hobekuntza " "garrantzitsuak" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Akatsen konponketa eta hobekuntza orokorrak" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Akats zuzenketak eta hobekuntza garrantzitsuak" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Hobekuntza orokorrak" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Akatsak konpontzea" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-en euskarria eta historia" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Akatsen konponketa eta abioaren performantzia hobetua" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Markatze hobekuntzak" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1077,13 +1122,13 @@ msgstr "" "Kapsulatutako Konsole\n" "Tresna-barra eta saio-izenak" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1093,25 +1138,25 @@ msgstr "" "Kapsulatutako Konsole\n" "Hobekuntza orokorrak" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Ikuste-efektuak" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1121,132 +1166,132 @@ msgstr "" "kvt proiektuko kodea\n" "Hobekuntza orokorrak" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Eskema eta testu hautaketa hobekuntzak" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI eratorpena" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD eratorpena" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Eskerrik asko beste askori ere.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Fitxa berria" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Bikoiztu fitxa" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Leiho berria" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Itxi leihoa" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Laster-&markak" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Leihoaren kolore-antolaera" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Kudeatu profilak..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktibatu menua" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Gorde fitxen antolaera..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Zamatu fitxen antolaera..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1255,67 +1300,67 @@ msgid_plural "" msgstr[0] "Prozesu bat martxan dago leiho honetan. Hala ere irten nahi duzu?" msgstr[1] "%1 prozesu daude martxan leiho honetan. Hala ere irten nahi duzu?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Berretsi ixtea" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Itxi &leihoa" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Itxi uneko &fitxa" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Leiho honetan %1 terminal irekita daude. Hala ere irten nahi duzu?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profilak" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Orokorra" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memoria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Fitxa-barra / Banatzaileak" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Aldi baterako fitxategiak" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Koadro-txikiak" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1399,7 +1444,7 @@ msgstr "Gorde" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Eguneratu" @@ -1411,28 +1456,28 @@ msgid "Cancel" msgstr "Utzi" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Komando azkarrak" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Erakutsi sarbide azkarrak" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Ez da komando azkarrik aurkitu. Bat gehitzeko, Pluginak -> Komando azkarrak" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Pluginak - Komando azkarrak" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Erakutsi komando azkarrak" @@ -1474,7 +1519,7 @@ msgstr "" "ziur zaude? " #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "%1 ezabatzera zoaz, ziur zaude?" @@ -1527,11 +1572,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 SSH sarreretarako karpeta bat da" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH konfigurazioa" @@ -1594,24 +1639,24 @@ msgstr "" "Ezin da jaulki SSH komandoa oskol aplikaziotik kanpo (adib. bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH gakoa" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Ezabatu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ez aldatu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1620,71 +1665,71 @@ msgstr "" "%1 karpeta ezabatzera zoaz, SSH konfigurazio\n" "anitz dituena, ziur zaude?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Ezabatu SSH konfigurazioak" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" "SSH profila inportatu da
          Ezarpen batzuk bakarrik irakurtzeko dira." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Ostalari-izena falta da" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Izena falta da" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Erabili SSH konfigurazioa ezarrita badago, ez zehaztu SSH-gako edo " "erabiltzaile-izenik." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Gutxienez erabiltzaile-izena edo SSH-gakoa ezarri behar da" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Karpeta falta da" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH saio batek profil bat izan behar du" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Ezin du karpeta hau ezabatu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Ezabatu karpeta eta haren eduki guztia" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Klik-bikoitza karpeta-izena aldatzeko." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Ezin duzu ezabatu automatikoki gehitutako sarrera bat." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Ezabatu hautatutako sarrera" @@ -1879,25 +1924,25 @@ msgstr "Irteeraren aukerak" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Inprimatzeko modu adiskidetsua (testu beltza, atzealderik gabe)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "E&skalatu irteera" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Barneratua" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Profil lehenetsia" @@ -1956,17 +2001,41 @@ msgstr "Klik-bikoitza egin lasterbidea aldatzeko" msgid "Tab Properties" msgstr "Fitxen propietateak" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Gorde irteera %1(e)tik" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 baliogabeko URLa da. Ezin izan da irteera gorde." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "%1(a)n automatikoki gordetzeko fitxategia sortzea huts egin du." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Pantaila aldaketa dela eta gordetze automatikoa gelditzen." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Automatikoki gordetzeko fitxategia kanpotik aldatu da, gordetze automatiko " +"gehiago egitea eragotziz." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Irteera aldaketetan gordetze automatikoaren egoera eguneratzea huts egin du." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2002,85 +2071,102 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastel ilunak" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Berdea beltzaren gainean" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-en koloreak" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Gorria beltzean" # Solarized is a sixteen color palette (eight monotones, eight accent colors) designed for use with terminal and gui applications. # http://ethanschoonover.com/solarized -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" # Solarized is a sixteen color palette (eight monotones, eight accent colors) designed for use with terminal and gui applications. # http://ethanschoonover.com/solarized -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized argia" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Zuria beltzaren gainean" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Lehenetsia (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "linux-eko kontsola" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-eko kontsola" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Bilatu..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Sartu hemen bilatu beharreko fitxaren izena" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Txirrina «%1»(e)an («%2» saioa)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Ezin izan da bitarra aurkitu:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Abisua:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Ezin izan da hasteko shell elkarreragile bat aurkitu." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2089,362 +2175,364 @@ msgstr "" "Ezin izan da '%1' aurkitu, horren ordez '%2' abiarazten. Egiaztatu zure " "profilaren ezarpenak." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Ezin izan da '%1' programa '%2' argumentuekin abiarazi." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Isiltasuna «%1»(e)an (Saioa «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Erakutsi saioa" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"\"D-Bus\"en sendText/runCommand metodoak erabili berri dira. Segurtasun " -"aferak daude bi metodo hauek publiko izaten uztearekin. Hala nahi izan " -"ezkero, metodo hauek soilik barneko erabilerarako izateko alda daitezke " -"Konsole bir-konpilatuta.

          Abisua behin baino ez da erakutsiko Konsoleren " -"instantzia honentzat.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Amaituta" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "'%1' programa kraskatu egin da" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "'%1' programa %2 egoerarekin amaituta." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-aren aurrerapena" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "«%1»(e)ko jarduera («%2» saioa)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "Segurtasunarekiko sentikorra den DBus APIa ezarpenetan ezgaituta dago." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Kontsola" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "«%1» prozesuaren exekuzioa amaitu da «%2» saioan" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole-k ez daki laster-marka nola ireki:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Bilatu '%1' honekin" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Konfiguratu web-lasterbideak..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Itxi saioa" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Ireki fitxategi-kudeatzailea" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopiatu" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Zatitu ikuspegia ezker-eskuin" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Zatitu ikuspegia goian-behean" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopiatu gonbita salbu" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopiatu erabiltzailearen sarrerakoa" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopiatu komandoaren irteerakoa" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Itsatsi hautapena" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Web bilaketa" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Hautatu guztia" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Hautatu &modua" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Hautatu &lerroa" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Gorde irteera &honela..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Gorde automatikoki irteera honela..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Gelditu gordetze automatikoa" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Pantaila inprimatu..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Doitu Atzerantz kiribiltzea..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Garbitu Atzerantz kiribiltzea" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Garbitu Atzerantz kiribiltzea eta berrezarri" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Hurrengo profila" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Aurreko profila" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Aldatu profila" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Ezarri &kodeketa" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Baimendu saguaren jarraipena egitea" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Irakurtzeko soilik" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Fitxa &konfiguratu edo berrizendatu..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Uneko leihoko fitxa &guztiak" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Hautatu fitxak..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Bat ere ez" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiatu sarrera hemen" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem igoera..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Erabilera bakarreko begiraleak" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Gainbegiratu &gonbita" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Gainbegiratu &jarduerak" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Gainbegiratu &isiltasuna" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Gainbegiratu prozesuen amaitzea" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Handitu letra-tipoa" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Txikitu letra-tipoa" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Berrezarri letra-tipoaren neurria" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Bidali seinalea" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "E&seki ataza" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Jarraitu atazarekin" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Ese&ki" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Eten ataza" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Amaitu ataza" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "A&kabatu ataza" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Erabiltzailearen seinalea &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Erabiltzailearen seinalea &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Sortu profil berria..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Editatu uneko profila..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Programa bat exekutatzen ari da saioan. Ziur zaude itxi nahi duzula?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "'%1' programa exekutatzen ari da saioan. Ziur zaude itxi nahi duzula?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Berretsi itxiera" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Itxi programa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2453,37 +2541,37 @@ msgstr "" "Saio honetako programa bat ez da hiltzen. Ziur zaude indarrez akabatu nahi " "duzula?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Saio honetako '%1' programa ez da hiltzen. Ziur zaude indarrez akabatu nahi " "duzula?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Akabatu programa" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Oskoleko gonbita '%1' saioan azaltzen da" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Ireki uneko karpeta honekin," -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Gorde ZModem-ek jaitsitakoa hemen..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2494,7 +2582,7 @@ msgstr "" "ZModem software egokia aurkitu sistema honetan.

          Agian 'rzsz' edo " "'lrzsz' paketea instalatzea nahi duzu.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " @@ -2502,7 +2590,7 @@ msgstr "" "

          Uneko saioak dagoeneko ZModem fitxategi-transferentzia bat martxan dauka." "

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2511,7 +2599,7 @@ msgstr "" "

          Ez da ZModem software egokia aurkitu sistema honetan.

          Agian 'rzsz' " "edo 'lrzsz' paketea instalatzea nahi duzu.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Hautatu fitxategiak ZModem-ekin igotzeko" @@ -2534,144 +2622,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Konfiguratu" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Bilatu:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Gaitu menu azeleratzaileak" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Gaituta badago, profilaren ezarpenei ez zaie jaramon egingo" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Gogoratu leihoaren neurria" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Erakutsi leihoaren titulua titulu-barran" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Arreta terminalei saguaren erakuslea haien gainean ipintzean" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Bat-etortzeak adierazpen erregularrak erabiliz" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Konsole abiaraztean berrerabili dagoen prozesua ahal denean" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Ibili Konsoleren leiho guztiak prozesu bakarrean" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Nabarmendu bat-etortze guztiak" +msgid "If enabled, profile settings will be ignored" +msgstr "Gaituta badago, profilaren ezarpenei ez zaie jaramon egingo" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Bilaketak maius./minus. bereiziko dituen ezartzen du" +msgid "Remember window size" +msgstr "Gogoratu leihoaren neurria" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Bereizi maius./minus." +msgid "Force new tabs" +msgstr "Behartu fitxa berriak" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Kendu leihoaren titulu-barra eta markoa" +msgid "Listen for ZModem terminal codes" +msgstr "Entzun ZModem terminal-kodeak" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Prozesua eta leihoa:" +msgid "Show progress in taskbar" +msgstr "Erakutsi aurrerapena ataza-barran" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Jakinarazpenak:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Elkarrizketa-koadro guztiak berriz erakutsiko dira" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Gaitu \"Ez berriz galdetu\" mezu guztiak" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Bilaketa behetik hasi beharko litzatekeen ezartzen du" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Bilatu atzerantz" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Bilaketak maius./minus. bereiziko dituen ezartzen du" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Bereizi maius./minus." + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Prozesua eta leihoa:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Nabarmendu bat-etortze guztiak" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Bilatu:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Bilaketa abiapuntura itzuli ordez gelditu behar duen ezartzen du" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Ez itzuli abiapuntura" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Gaitu menu azeleratzaileak" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Arreta terminalei saguaren erakuslea haien gainean ipintzean" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Elkarrizketa-koadro guztiak berriz erakutsiko dira" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Gaitu \"Ez berriz galdetu\" mezu guztiak" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Erakutsi leihoaren titulua titulu-barran" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Gaitu segurtasunarekiko sentikorrak diren DBus APIaren zatiak" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Kendu leihoaren titulu-barra eta markoa" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Bat-etortzeak adierazpen erregularrak erabiliz" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2698,72 +2812,112 @@ msgstr "Erabili uneko lehio-neurria hurrengo abioan" msgid "The window size will be saved upon exiting Konsole" msgstr "Leihoaren neurria gordeko da Konsoletik irtetean" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Konsole abiaraztean, ahal denean, sortu fitxa berri bat leiho berrien ordez" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Erakutsi aurrerapen ataza-barran" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Gidoiak bere aurrerapenaren berri ematen duenean, ataza-barran erakutsiko da" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "runCommand gisako DBus APIak gaitu egingo dira" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Entzun ZModem terminal-kodeak" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Fitxategiak serie konexioetatik automatikoki bidali/jaso" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Koadro-txikiaren zabalera" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Koadro-txikiaren zabalera ezartzen du" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Erabili «Maius» koadro-txiki bat azaltzeko" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Erabili «Alt» koadro-txiki bat azaltzeko" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Erabili «Ktrl» koadro-txiki bat azaltzeko" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Bilaketak maius./minus. bereizten ditu" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Nabarmendu bilaketako bat-etortze guztiak" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Bat datorren testua nabarmendu behar den ezartzen du" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Bilaketa gelditu behar du abiapuntura itzuli ordez" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" "Fitxetarako, banakako haur-«cgroup»ak sortu behar diren kontrolatzen du" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2773,73 +2927,79 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Kontrolatu fitxa-barra osoaren ikusgaitasuna" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Kontrolatu panelen arteko heldulekuaren neurria" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Kontrolatu fitxa-barraren kokapena" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Kontrolatu fitxa-barraren ikus-estiloa" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Erabili erabiltzaileak finkatutako .css fitxategi bat fitxa-barrarako" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Fitxa-barraren estilorako erabili beharreko .css fitxategia" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Utzi irekitako fitxak erdiko klikarekin ixten" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Kontrolatu fitxa-barrako 'Fitxa berria' botoiaren ikusgaitasuna" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Fitxen barran 'Bilatu fitxak' botoiaren ikusgaitasuna kontrolatu" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Kontrolatu \"Itxi fitxa\" botoia non bistaratuko den" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Kontrolatu fitxa berria non ipini" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Zabaldu fitxen zabalera" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" @@ -2847,7 +3007,7 @@ msgstr "" "kokalekua" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2855,7 +3015,7 @@ msgstr "" "karpeta kokalekua" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" @@ -2863,7 +3023,7 @@ msgstr "" "kokalekua" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Atzerantz kiribiltzeko fitxategietarako, erabili karpeta hau" @@ -2875,33 +3035,30 @@ msgid "Enable memory monitoring:" msgstr "Gaitu memoria gainbegiratzea:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Aldaketek, berriz abiatzen denean izango dute eragina. Gaituta badago, " -"zehaztutako balioa gainditzen\n" -"duen «Konsole»ren memoria kontsumo iraunkorrak, «systemd-oomd»ek memoria-" -"intentsiboko\n" -"prozesua(k) ditu(zt)en fitxa(k) deuseztatzea eragingo du. Oharra: gaitzeak,\n" -"moteltze handiagoak eragin litzake memoria kontsumo handia ematen denean\n" -"eta balio txikiegiak zehazteak, oraindik, «Konsole» akabatzea eragin lezake." +"zehaztutako balioa gainditzen duen «Konsole»ren memoria kontsumo " +"iraunkorrak, \"systemd-oomd\"ek memoria-intentsiboko prozesua(k) ditu(zt)en " +"fitxa(k) deuseztatzea eragingo du. Oharra: gaitzeak, moteltze handiagoak " +"eragin litzake memoria kontsumo handia ematen denean eta balio txikiegiak " +"zehazteak, gainera, Konsole akabatzea eragin lezake." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Memoria muga:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3062,125 +3219,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Bat ere ez" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Erakutsi fitxak bilatzeko botoia:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Beti" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Inoiz ez" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Hainbat:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Erakutsi 'fitxa berria' botoia" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Zabaldu banakako fitxen zabalera leiho osora" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Erabili erabiltzaileak finkatutako estilo-orria:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(bat ere ez)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Jokabidea" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Ipini fitxa berriak:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Amaie&ran" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Uneko fi&txaren ondoren" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Itxi fitxa erdiko klikarekin" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Zatiak" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Erakutsi goiburua:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Beharrezkoa denean" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Inoiz ez" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Arrasterako heldulekuaren neurria:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Txikia" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Ertaina" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Handia" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3232,12 +3407,12 @@ msgstr "px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Ezaugarri hau erabiltzeko, gaitu Sagua->Hainbat->Azpimarra fitxategiak zure profileko ezarpenetan

          " +"weight:600;\">Sagua->Hainbat->Azpimarra fitxategiak zure " +"profileko ezarpenetan

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3275,64 +3450,64 @@ msgstr "Ktrl" msgid "Enable thumbnails generation" msgstr "Gaitu koadro txikiak sortzea" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Neurria: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Ziur zaude karaktere %1 itsatsi nahi duzula?" msgstr[1] "Ziur zaude %1 karaktere itsatsi nahi dituzula?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Berretsi itsastea" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Testuaren amaiera/Eten: uneko prozesua itxi lezake" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Transmisioaren amaiera: uneko prozesua itxi lezake" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Txirrina: Abisu entzungarri bat igortzen saiatuko da" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Atzera-tekla" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Gailu agintea 3 (DC3)/XOFF: irteerakoa esekitzen du" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Ordeztu/Eseki: uneko prozesua eseki lezake" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Ihes egin: terminalaren egoerak manipulatzeko erabilia" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Fitxategi banatzailea/Irten: uneko prozesua galaraz dezake" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3341,31 +3516,31 @@ msgstr "" "Itsatsi nahian zabiltzan testuak ezkutuko aginterako karaktereak ditu, haiek " "iragazi nahi dituzu?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Berretsi itsastea" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Itsatsi aginterako karaktererik &gabe" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Itsatsi dena" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Utzi" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been eten egin da Ktrl+S sakatzeagatik. Sakatu Ktrl+Q berrekiteko." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Terminal hau soilik-irakurtzeko da." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Aldatu &Direktorioa hona" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Itsatsi kokalekua" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Zatitu ikuspegia" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Zatitu ikuspegia ezkerrean/eskuinean" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Zatitu ikuspegia goian/behean" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Ikuspegia automatikoki zatitu" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Zatitu ikuspegia ezker/eskuin hurrengo fitxatik aurrera" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Zatitu ikuspegia gain/azpi hurrengo fitxatik aurrera" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Ikuspegia automatikoki zatitu hurrengo fitxatik aurrera" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Zamatu 2x2 terminalen antolaera duen fitxa berri bat" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Zamatu 2x1 terminalen antolaera duen fitxa berri bat" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Zamatu 1x2 terminalen antolaera duen fitxa berri bat" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Zabaldu ikuspegia" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Txikitu ikuspegia" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Bereizi uneko &ikuspegia" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Bereizi uneko &fitxa" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Hurrengo fitxa" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Aurreko fitxa" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fokatu gaineko terminala" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fokatu azpiko terminala" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fokatu ezkerreko terminala" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fokatu eskuineko terminala" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokuratu hurrengo terminala" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokuratu aurreko terminala" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Aldatu azken fitxara" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Erabilitako azken fitxak" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Txandakatu bi fitxen artean" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Erabilitako azken fitxak (alderantziz)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Txandakatu maximizatu uneko ikuspegia" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Txandakatu maximizatu uneko ikuspegia" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Txandakatu zooma maximizatu uneko ikuspegian" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Txandakatu zooma maximizatu uneko ikuspegian" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Eraman fitxa eskuinera" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Eraman fitxa ezkerrera" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Ezarri bateratze semantikoa (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Txandakatu aholku semantikoak azaltzea" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Txandakatu lerro-zenbakiak azaltzea" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Neurri bera ikuspegi guztiei" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Aldatu %1 fitxara" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Aholku semantikoak" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Lerro-zenbakiak" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Gorde fitxen antolaera" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsoleren ikuspegi antolaera (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3633,7 +3820,7 @@ msgstr "" "Arazo bat gertatu da antolaera gordetzean.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3643,13 +3830,13 @@ msgstr "" "Arazo bat gertatu da antolaera zamatzean.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Zamatu fitxen antolaera" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3747,28 +3934,40 @@ msgstr "Karaktere-kodeketa le&henetsia:" msgid "Shortcut for peeking the primary screen:" msgstr "Pantaila nagusiari kirika egiteko lasterbidea:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Ezarri gordetze automatikoen arteko bitartea:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Lerro-zenbakiak:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "I&noiz ez" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "&URL aholkuak erakustean" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3804,7 +4003,7 @@ msgstr "Editatu hautatutako kolore-antolaera" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3858,16 +4057,22 @@ msgstr "Marraztu kolore biziak letra-tipo lodian" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" -"Erabili hautatutako letra-tipoa lerroko karaktereekin barneratutako kodearen " -"ordez" +"Lerro-karaktereetarako, barneratutako kodearen ordez, hautatutako letra-" +"tipoa erabili" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Erabili letra-tipoan dauden lerroko karaktereak" +msgstr "Erabili letra-tipoan dauden lerro-karaktereak" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3987,29 +4192,43 @@ msgid "Make the cursor blink regularly" msgstr "Egin kurtsorea erregularki keinu egitea" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Gaituta" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animazioa:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Kurtsorearen animazioa leundu" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Hainbat" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Leihoa:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4019,146 +4238,146 @@ msgstr "" "aldatu ondoren" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" "Erakutsi terminalaren neurriari buruzko argibidea neurriz aldatu ondoren" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Alderantzikatu beti hautatutako testuaren koloreak" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Iluntzearen sendotasuna:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Kolorea:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Hautatu ertza marrazteko erabilitako kolorea" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminalaren ez-aktiboak:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminalaren aktiboak:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminalaren edukia" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Lerroartea:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Bi lerroren arteko pixel kopurua" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marjinak:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Lerrokatu erdian:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Adierazi leihoa aktibo dagoen koloreak motelduz" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Ilundu" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Adierazi leihoa aktibo dagoen ertz bat marraztuz" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Ertza" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Erakutsi lerro bertikal bat zutabean:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" "

          Testuaren antolamendu konplexua

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Testuaren antolamendu konplexua" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Gaitu hitz-moduko testu errendatzea" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Hitz modua" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4168,43 +4387,43 @@ msgstr "" "aldaketek hitza hausten dute)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Erabili atributu berdinak hitz osoan" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Errendatu ASCII karaktereko hitzak elkarrekin" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII karaktereak" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" -msgstr "Errendatu Brahma-gidoietako karaktereak elkarrekin" +msgstr "Brahma-gidoietako karaktereak elkarrekin errendatu" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Brahma-gidoietako karaktereak" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Aurpegiera letra-tipoa:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4214,95 +4433,95 @@ msgstr "" "Arabiarrarentzat, Farsia edo hebreera)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Bi norabideetako testua errendatzea" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "Lerroak beti LTR dira, aurreneko karaktere sendoak zehaztu beharrean" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "behartu LTR lerro noranzkoa" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Taulak marrazteko karaktereak LTR sendotzat hartu." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" -msgstr "Tauletako karaktereen BiDi modua gainidaztea" +msgstr "Tauletako karaktereen BiDi modua gainditu" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ezikusi karaktere arazotsuen «wcwidth»" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" -msgstr "Gainidatzi «wcwidth»" +msgstr "Gainditu wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Editatu profila" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Orokorra" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Fitxak" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Itxura" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Kiribiltzea" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Teklatua" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Tekla-konbinazioak" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Sagua" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Aurreratua" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4314,7 +4533,7 @@ msgstr "" "ez.Aldatu fitxategi horren baimenak edo ipini beste izen bat ezarpenak " "profil berri batean gordetzeko." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4322,42 +4541,47 @@ msgstr "" "Profilaren izena hutsik zegoen; mesedez, ezarri izen bat ezarpenak gorde " "ahal izateko." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Lehendik ere badago «%1» izeneko profil bat." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profilaren izenak baimendutako gehienezko luzera gainditu du (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Nabarmendutako karaktereek ez dute balio profil-izenetan: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Profila editatzea: %2" msgstr[1] "%1 profil editatzen: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Sortu profil berria" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Editatu \"%1\" profila" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Bat ere ez" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4367,7 +4591,7 @@ msgid_plural " columns" msgstr[0] " zutabe" msgstr[1] " zutabe" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4377,42 +4601,42 @@ msgid_plural " rows" msgstr[0] " errenkada" msgstr[1] " errenkada" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sistemako txirrina" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Sistemaren jakinarazpenak" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Irudizko txirrina" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ezikusi txirrin gertaerak" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "%1(e)ko terminal saio berrientzako profil lehenetsia" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Editatu ingurunea" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Inguruneko aldagai bat lerroko" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4420,23 +4644,23 @@ msgid_plural " seconds" msgstr[0] " segundo" msgstr[1] " segundo" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Hautatu hasierako direktorioa" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Lortu berria..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "%1 antolaera zamatzea huts egin du." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4445,7 +4669,7 @@ msgstr "" "Kolore-antolaera honek atzealde gardena erabiltzen du eta ez dirudi zure " "mahaigainak onartzen duenik" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4454,12 +4678,12 @@ msgstr "" "Konsole, mahaigaineko efektuak gaitu aurretik abiarazi da. Konsole " "berrabiatu behar duzu atzealde gardena ikusteko." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Fitxategi-motarako lehenetsia" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4488,7 +4712,7 @@ msgstr "" "ezikusi egingo zaio eta fitxategia testu-editore lehenetsiarekin\n" "irekiko da." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Testu-editore norberak finkatutako komandoa" @@ -4578,26 +4802,56 @@ msgstr "Hautatu hasierako direktorioa" msgid "Start in same directory as current session" msgstr "Hasi uneko saioko direktorio berean" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Fitxa edo zatiketa berri bat irekitzean, sartu automatikoki uneko saioaren " +"edukiontzi berean (Toolbox, Distrobox)" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Sartu uneko saioko edukiontzi berean" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Hasi beti edukiontzian:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Profil hau erabiltzen duten saio berriak beti hautatutako edukiontzian hasi" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ingurunea:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Editatu inguruneko aldagaien zerrenda eta esleitutako balioak" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Terminalaren hasierako ne&urria:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4610,31 +4864,31 @@ msgstr "" "behar da sarrera hauek ibil daitezen.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Terminaleko t&xirrin modua:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Bateratze semantikoa" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Gora/Behera gezien emulazioa" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Saguaren klik sarrera-lerroan sagua kurtsorea mugitzen du" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Aholku semantikoak:" @@ -4644,9 +4898,9 @@ msgstr "Aholku semantikoak:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4657,9 +4911,9 @@ msgstr "Inoiz ez" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4670,34 +4924,34 @@ msgstr "URL aholkuak erakustean" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Beti" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Erroreen barra gorriak:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Erroreen atzeko plano gorria:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Txandakako barrak:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Txandakako atzeko planoa:" @@ -5059,116 +5313,128 @@ msgid "Scrollback:" msgstr "Atzerantz kiribiltzea:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Kiribildu orria gora/behera:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Nabarmendu ikuspegira datozen lerroak" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Ezkutuan" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" +"Markatzaile bakoitzaren neurria (kiribiltze-barraren luzeraren ehuneko gisa):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Nabarmentzea:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Kiribildu orria leihoaren altueraren erdia" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Pantaila erdiaren al&tuera" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Kiribiltze-barrako markatzaileen kolorea:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Kiribiltze-barrako bilaketa nabarmentzeko lerroen kolorea:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Lerroak berregokitu:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Kiribildu orria leihoaren altuera osoa" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Pantaila &osoaren altuera" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Kiribiltze-barraren kokapena:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Erakutsi kiribiltze-barra terminal-leihoaren eskuineko aldean" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "E&skuin aldean" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Erakutsi kiribiltze-barra terminala-leihoaren ezkerreko aldean" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "E&zker aldea" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Ezkutuan" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Nabarmentzea:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Nabarmendu ikuspegira datozen lerroak" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Lerroak berregokitu:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Lerroak berregokitu terminalaren neurria aldatzean" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Kiribiltze-barrako markatzaileen kolorea:" +msgid "Scrollbar position:" +msgstr "Kiribiltze-barraren kokapena:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" -"Markatzaile bakoitzaren neurria (kiribiltze-barraren luzeraren ehuneko gisa):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Bilaketa nabarmentzeko lerroaren opakutasuna:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5274,37 +5540,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Bat ere ez" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Aurkitu..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Sartu hemen bilatu beharreko testua" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Hurrengoa" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Aurkitu uneko bilaketa esaldiaren hurrengo bat-etortzea" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Aurrekoa" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5312,77 +5578,77 @@ msgstr "Aurkitu uneko bilaketa esaldiaren aurreko bat-etortzea" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Bistaratu aukeren menua" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Itxi bilaketa-barra" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Bereizi maiuskulak" +msgstr "Maius./minus. bereizi" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Bilaketak maiuskulak bereiziko dituen ezartzen du" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Bistaratu aukeren menua" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Itxi bilaketa-barra" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Parekatu adierazpen erregularra" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Nabarmendu bat-etortze guztiak" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Bat datorren testua nabarmendu behar den ezartzen du" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Bilatu atzerantz" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Bilaketa behetik hasi behar den ezartzen du" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Ez itzuli abiapuntura" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Bilaketa abiapuntura itzuli ordez gelditu behar duen ezartzen du" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Bilatu uneko bilaketa esaldia behetik" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5393,7 +5659,7 @@ msgstr "Bilatu uneko bilaketa esaldia goitik" msgid "Print Shell" msgstr "Inprimatu Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5433,6 +5699,12 @@ msgstr "Fitxa arruntaren tituluaren formatua" msgid "Tab Co&lor:" msgstr "Fitxaren ko&lorea:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "J&arduera-fitxaren kolorea:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5526,36 +5798,58 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Lehengoratu terminala" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Ireki fitxa berri bat" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Bilatu fitxak" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Itxi fitxa hau" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Bereizi fitxa" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Fitxa &konfiguratu edo berrizendatu..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Itxi fitxa" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "\"D-Bus\"en sendText/runCommand metodoak erabili berri dira. Segurtasun " +#~ "aferak daude bi metodo hauek publiko izaten uztearekin. Hala nahi izan " +#~ "ezkero, metodo hauek soilik barneko erabilerarako izateko alda daitezke " +#~ "Konsole bir-konpilatuta.

          Abisua behin baino ez da erakutsiko " +#~ "Konsoleren instantzia honentzat.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Bereizi maiuskulak" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Bat ere ez" diff --git a/local/recipes/kde/konsole/source/po/fa/konsole.po b/local/recipes/kde/konsole/source/po/fa/konsole.po index 93672f61f1..942ff9ed78 100644 --- a/local/recipes/kde/konsole/source/po/fa/konsole.po +++ b/local/recipes/kde/konsole/source/po/fa/konsole.po @@ -5,21 +5,19 @@ # Nasim Daniarzadeh , 2006, 2007. # مهدی فولادگر , 2007. # Mohamad Reza Mirdamadi , 2011. -# SPDX-FileCopyrightText: 2024 Mohi Mirdamadi -# SPDX-FileCopyrightText: 2024 aligholipour msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-24 00:11+0330\n" -"Last-Translator: Mohi Mirdamadi \n" -"Language-Team: fa\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2011-10-05 00:26+0330\n" +"Last-Translator: Mohamad Reza Mirdamadi \n" +"Language-Team: Farsi (Persian) <>\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #, kde-format @@ -30,11 +28,12 @@ msgstr "محمدرضا میردامادی , نازنین کاظمی , محمد #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "mohi.pub@gmail.com , kazemi@itland.ir , mebrahim@gmail.com" +msgstr "mohi@ubuntu.ir , kazemi@itland.ir , mebrahim@gmail.com" #. i18n: ectx: Menu (file) #: ../desktop/konsoleui.rc:6 -#, kde-format +#, fuzzy, kde-format +#| msgid "File" msgid "File" msgstr "پرونده" @@ -42,26 +41,30 @@ msgstr "پرونده" #. i18n: ectx: Menu (edit) #: ../desktop/konsoleui.rc:16 plugins/QuickCommands/quickcommandswidget.cpp:296 #: plugins/SSHManager/sshwidget.ui:300 -#, kde-format +#, fuzzy, kde-format +#| msgid "Edit" msgid "Edit" -msgstr "عویرایش" +msgstr "ویرایش" #. i18n: ectx: Menu (view) #: ../desktop/konsoleui.rc:19 -#, kde-format +#, fuzzy, kde-format +#| msgid "View" msgid "View" -msgstr "uنما" +msgstr "نما" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 -#, kde-format +#: ../desktop/sessionui.rc:64 +#, fuzzy, kde-format +#| msgid "Split View" msgid "Split View" msgstr "شکافتن نما" #. i18n: ectx: Menu (settings) #: ../desktop/konsoleui.rc:41 -#, kde-format +#, fuzzy, kde-format +#| msgid "Settings" msgid "Settings" msgstr "تنظیمات" @@ -92,7 +95,7 @@ msgid "S&crollback" msgstr "عقب‌لغز" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format msgid "Session Toolbar" msgstr "نام" @@ -180,22 +183,34 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "" #| "The background transparency setting will not be used because your desktop " @@ -206,27 +221,27 @@ msgstr "" "تنظیم شفافیت زمینه استفاده نمی شود زیرا به نظر نمی‌رسد رومیزی شما پنجره‌های " "شفاف را پشتیبانی نمی‌کند." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "فهرست profileهای موجود" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "تغییر مقدار ویژگی profile" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,7 +249,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -242,14 +257,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "نشانوندها به فرمان گذر داده شد" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -270,217 +285,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "پیش‌زمینه" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "زمینه" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "رنگ ۱" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "رنگ ۲" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "رنگ ۳" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "رنگ ۴" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "رنگ ۵" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "رنگ ۶" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "رنگ ۷" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "رنگ ۸" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "پیش‌زمینه )شدید(" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "زمینه )شدید(" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "رنگ ۱ )شدید(" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "رنگ ۲ )شدید(" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "رنگ ۳ )شدید(" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "رنگ ۴ )شدید(" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "رنگ ۵ )شدید(" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "رنگ ۶ )شدید(" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "رنگ ۷ )شدید(" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "رنگ ۸ )شدید(" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "پیش‌زمینه )شدید(" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "زمینه )شدید(" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "رنگ ۱ )شدید(" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "رنگ ۲ )شدید(" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "رنگ ۳ )شدید(" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "رنگ ۴ )شدید(" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "رنگ ۵ )شدید(" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "رنگ ۶ )شدید(" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "رنگ ۷ )شدید(" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "رنگ ۸ )شدید(" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -505,7 +520,7 @@ msgstr "رنگ" #, kde-format msgctxt "@label:listbox Column header text for the actual intense colors" msgid "Intense color" -msgstr "رنگ تند" +msgstr "" #: colorscheme/ColorSchemeEditor.cpp:112 #, fuzzy, kde-format @@ -531,13 +546,13 @@ msgstr "" #, kde-format msgctxt "@title:window" msgid "Select wallpaper image file" -msgstr "پرونده تصویرزمینه را انتخاب کنید" +msgstr "" #: colorscheme/ColorSchemeEditor.cpp:190 #, kde-format msgctxt "@label:textbox Filter in file open dialog" msgid "Supported Images" -msgstr "نگاره های پشتیبانی شده" +msgstr "" #: colorscheme/ColorSchemeEditor.cpp:334 #, fuzzy, kde-format @@ -751,6 +766,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "میزبان:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "تنظیم به عنوان پیش‌فرض‌" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, fuzzy, kde-format msgid "Copy Input" @@ -795,7 +844,7 @@ msgstr "" msgid "Copy Location" msgstr "گزینه‌های مکان‌نما" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -827,13 +876,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "ویرایش قلم..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -871,17 +920,17 @@ msgstr "ترکیب کلید" msgid "Output" msgstr "خروجی" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "کلید جدید فهرست مقیدسازی" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "ویرایش فهرست مقیدسازی کلید" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -889,7 +938,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -924,247 +973,247 @@ msgstr "ورودی:" msgid "Output:" msgstr "خروجی:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "مقلد پایانه‌" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "رفع اشکالها و اصلاحات کلی" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "مقلد پایانه‌" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "رفع اشکالها و اصلاحات کلی" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "رفع اشکالها و اصلاحات کلی" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "رفع اشکالها و اصلاحات کلی" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "رفع اشکالها و اصلاحات کلی" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "رفع اشکالها" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "پشتیبانی سولاریس و تاریخچه" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "رفع اشکالها و بهینه‌سازیهای کارایی راه‌اندازی" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "نشان گذاری اصلاحات" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1177,14 +1226,14 @@ msgstr "" "Konsole نهفته\n" "میله ابزار و نام نشستها" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1197,28 +1246,28 @@ msgstr "" "Konsole نهفته\n" "بهینه‌سازیهای عمومی" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "جلوه‌های تصویری" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1231,151 +1280,151 @@ msgstr "" "کد از پروژه kvt\n" "بهینه‌سازیهای عمومی" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "طرحواره و اصلاحات گزینش متن" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "درگاه SGI" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "درگاه FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "با تشکر از بسیاری دیگر.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&تب جدید‌" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&بستن تب‌" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&پنجره جدید‌" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&چوب الفها‌" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "طرحواره رنگ جدید" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "مدیریت Profileها" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "حرکت نما به چپ" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1386,26 +1435,26 @@ msgid_plural "" msgstr[0] "شما در این پنجره چند صفحک دارید، آیا مطمئنید که می‌خواهید خارج شوید؟" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "&بستن تب‌" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1413,45 +1462,46 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "شما در این پنجره چند صفحک دارید، آیا مطمئنید که می‌خواهید خارج شوید؟" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profile جدید" -#: MainWindow.cpp:884 -#, kde-format +#: MainWindow.cpp:1019 +#, fuzzy, kde-format +#| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "عمومی" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format #| msgid "Tab Bar Options" msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "گزینه‌های میله تب" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1539,7 +1589,7 @@ msgstr "باز کردن پیوند" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1551,29 +1601,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "فرمان:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "فرمان:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1615,7 +1665,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1672,11 +1722,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1738,93 +1788,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "اتصال دور" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgid "Delete selected entry" @@ -2028,26 +2078,26 @@ msgstr "گزینه‌ها" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "حالت &مطلوب چاپگر )متن سیاه، بدون زمینه(‌" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, fuzzy, kde-format #| msgid "Search Output" msgid "&Scale output" msgstr "خروجی جستجو" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2111,17 +2161,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "ذخیره خروجی از %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 نشانی وب نامعتبری است، خروجی توانست ذخیره شود." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2158,446 +2229,472 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "سبز روی سیاه" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "رنگهای لینوکس" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "سفید روی سیاه" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "سفید روی سیاه" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "پیش‌فرض )XFree 4(" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "پیشانه لینوکس" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "پیشانه لینوکس" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "خروجی جستجو" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "متن را برای جستجو اینجا وارد کنید" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "زنگ در نشست »%1«" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "سکوت در نشست »%1«" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "یافتن:" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format msgid "Program '%1' crashed." msgstr "نشست »%1« به طور غیرمنتظره‌ای خارج شد." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format msgid "Program '%1' exited with status %2." msgstr "نشست »%1« با وضعیت %2 خارج شد." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "پیشرفت ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "فعالیت در نشست »%1«" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "مدیریت Profileها..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&رونوشت‌" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "شکافتن نما به چپ/راست" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "شکافتن نما به بالا/پایین" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format msgid "Copy user input" msgstr "ورودی" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format msgid "Copy command output" msgstr "ورودی" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "گزیده را بچسبان" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format msgid "&Select All" msgstr "برگزیدن" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "برگزیدن" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "برگزیدن" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "ذخیره خروجی..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "ذخیره خروجی..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "مدیریت Profileها..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "پاک کردن Scrollback" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "پاک کردن Scrollback و بازنشانی" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "ویرایش Profile" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "نمای قبلی" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "ویرایش Profile" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "کدبندی" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&تغییر نام تب..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "&تغییر نام تب..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format msgid "Copy Input To" msgstr "ورودی" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "پایشگری برای &فعالیت‌" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "پایشگری برای &فعالیت‌" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "پایشگری برای &سکوت‌" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "پایشگری برای &فعالیت‌" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "کوچک‌سازی نما" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "افزایش اندازه متن" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "&بستن تب‌" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "ویژگیهای پایانه" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, fuzzy, kde-format #| msgid "User name" msgid "User Signal &1" msgstr "نام کاربر" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, fuzzy, kde-format #| msgid "User name" msgid "User Signal &2" msgstr "نام کاربر" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Profile جدید..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "ویرایش Profile جدید..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -2606,26 +2703,26 @@ msgid "" "close it?" msgstr "شما در این پنجره چند صفحک دارید، آیا مطمئنید که می‌خواهید خارج شوید؟" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&بستن تب‌" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -2634,37 +2731,37 @@ msgid "" "by force?" msgstr "شما در این پنجره چند صفحک دارید، آیا مطمئنید که می‌خواهید خارج شوید؟" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "شما در این پنجره چند صفحک دارید، آیا مطمئنید که می‌خواهید خارج شوید؟" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2672,20 +2769,20 @@ msgid "" "or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2708,149 +2805,176 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "تطبیق عبارت منظم" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "مشخص کردن همه" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "تنظیم می‌کند آیا جستجو باید حساس به حالت باشد" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "فعال را ببند" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "متن تب جدید را وارد کنید:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "تنظیم می‌کند آیا جستجو باید حساس به حالت باشد" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "فعال را ببند" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "مشخص کردن همه" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "یافتن تطبیق بعدی برای عبارت جستجوی جاری" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "تطبیق عبارت منظم" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2875,73 +2999,111 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format msgid "Search is case sensitive" msgstr "تنظیم می‌کند آیا جستجو باید حساس به حالت باشد" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "مشخص کردن همه" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "تنظیم می‌کند آیا متن تطابق باید مشخص شود" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2949,92 +3111,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "استفاده از رنگ سفارشی و ثابتی برای مکان‌نما" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3046,26 +3214,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3229,110 +3395,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&بستن تب‌" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "&بستن تب‌" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "استفاده از رنگ سفارشی و ثابتی برای مکان‌نما" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "متن تب جدید را وارد کنید:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close current tab" msgid "After current &tab" msgstr "صفحک جاری را ببند" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "شکافتن نما" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "نمایش میله گزینگان" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3340,14 +3525,14 @@ msgid "Small" msgstr "کوچک" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3355,7 +3540,7 @@ msgid "Large" msgstr "بزرگ" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3409,8 +3594,8 @@ msgstr "" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3450,97 +3635,97 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "اندازه: %1 x %2‌" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "تنظیم رنگ مکان‌نما برای تطبیق نویسه جاری" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "گزیده را بچسبان" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been خروجی با فشار مهار+S معلق شده است. مهار+Q را برای ازسرگیری فشار دهید." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format #| msgid "Change Directory" msgid "Change &Directory To" msgstr "تغییر فهرست راهنما" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "گزیده را بچسبان" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "شکافتن نما" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "شکافتن نما به چپ/راست" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "شکافتن نما به بالا/پایین" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3597,7 +3782,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "شکافتن نما به بالا/پایین" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3605,7 +3790,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "شکافتن نما به چپ/راست" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3613,7 +3798,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "شکافتن نما به بالا/پایین" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3621,203 +3806,215 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "شکافتن نما به بالا/پایین" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "گسترش نما" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "کوچک‌سازی نما" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "&بستن تب‌" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "&بستن تب‌" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&تب جدید‌" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "قبلی" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "نمایشهای بالای پایانه" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "نمایشهای زیر پایانه" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "نمایشهای بالای پایانه" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "نمایشهای زیر پایانه" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "حرکت نما به راست" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "حرکت نما به چپ" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format msgid "Semantic hints " msgstr "گزینه‌های درج" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "تعداد ثابت خطوط: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "حرکت نما به چپ" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3830,7 +4027,7 @@ msgstr "" "هنگام ذخیره خروجی مسئله‌ای رخ داد.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3843,13 +4040,13 @@ msgstr "" "هنگام ذخیره خروجی مسئله‌ای رخ داد.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3949,29 +4146,41 @@ msgstr "کدبندی نویسه پیش‌فرض:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "تعداد ثابت خطوط: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4009,7 +4218,7 @@ msgstr "ویرایش طرحواره رنگ برگزیده" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4066,12 +4275,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4198,29 +4413,45 @@ msgid "Make the cursor blink regularly" msgstr "ایجاد منظم مکان‌نمای چشمک‌زن" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "توصیف:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "ایجاد منظم مکان‌نمای چشمک‌زن" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format msgid "Window:" msgstr "&پنجره جدید‌" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4228,25 +4459,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4254,28 +4485,28 @@ msgid "Color:" msgstr "رنگ" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "برگزیدن رنگ مورد استفاده برای ترسیم مکان‌نما" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "ویژگیهای پایانه" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "ویژگیهای پایانه" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4283,94 +4514,94 @@ msgid "Terminal contents" msgstr "ویژگیهای پایانه" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4378,44 +4609,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "تنظیم رنگ مکان‌نما برای تطبیق نویسه جاری" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:951 +#, fuzzy, kde-format +#| msgid "Font" msgid "Emoji Font:" -msgstr "قلم شکلک:" +msgstr "قلم" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4423,99 +4655,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "تنظیم رنگ مکان‌نما برای تطبیق نویسه جاری" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "ویرایش Profile" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "عمومی" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "تبها" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "ظاهر" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "لغزاندن" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "مقیدسازیهای کلید" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "پیشرفته" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4524,31 +4756,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4556,18 +4788,23 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "ویرایش Profile »%1«" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Profile جدید..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "ویرایش Profile »%1«" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4577,7 +4814,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4587,45 +4824,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "گزیده را بچسبان" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "جلوه‌های تصویری" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "تنظیم profile برگزیده به عنوان پیش‌فرض برای نشستهای پایانه جدید" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "ویرایش محیط" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4633,44 +4870,44 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "برگزیدن فهرست راهنمای آغازین" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "جدید..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "حذف profile" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4687,7 +4924,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4782,27 +5019,54 @@ msgstr "مرور برای فهرست راهنمای آغازین" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "محیط:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "ویرایش فهرست محیطهای موجود و مقادیر مربوط" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "ویژگیهای پایانه" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4812,32 +5076,32 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "مقلد پایانه‌" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format msgid "Semantic Integration" msgstr "گزینه‌های درج" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4847,9 +5111,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4860,9 +5124,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4873,35 +5137,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "زمینه" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5256,50 +5520,93 @@ msgid "Scrollback:" msgstr "عقب‌لغز" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "مخفی کردن" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "موقعیت میله تب:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "نمایش میله لغزش در سمت راست پنجره پایانه" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5307,67 +5614,36 @@ msgid "Ri&ght side" msgstr "نمایش در سمت راست" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "نمایش میله لغزش در سمت چپ پنجره پایانه" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "اندازه متن:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "مخفی کردن" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "موقعیت میله تب:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5470,42 +5746,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "یافتن:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "متن را برای جستجو اینجا وارد کنید" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "بعدی" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "یافتن تطبیق بعدی برای عبارت جستجوی جاری" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "قبلی" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5513,87 +5789,87 @@ msgid "Find the previous match for the current search phrase" msgstr "یافتن تطبیق برای عبارت جستجوی جاری" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "فعال را ببند" + +#: widgets/IncrementalSearchBar.cpp:103 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "تنظیم می‌کند آیا جستجو باید حساس به حالت باشد" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "بستن میله جستجو" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "فعال را ببند" - -#: widgets/IncrementalSearchBar.cpp:121 -#, fuzzy, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "تنظیم می‌کند آیا جستجو باید حساس به حالت باشد" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "تطبیق عبارت منظم" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "مشخص کردن همه" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "تنظیم می‌کند آیا متن تطابق باید مشخص شود" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "یافتن تطبیق بعدی برای عبارت جستجوی جاری" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "یافتن تطبیق بعدی برای عبارت جستجوی جاری" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "یافتن تطبیق بعدی برای عبارت جستجوی جاری" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "یافتن تطبیق بعدی برای عبارت جستجوی جاری" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5606,7 +5882,7 @@ msgstr "یافتن تطبیق بعدی برای عبارت جستجوی جاری msgid "Print Shell" msgstr "چاپ &سرآیند‌" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5649,6 +5925,13 @@ msgstr "قالب عنوان تب عادی " msgid "Tab Co&lor:" msgstr "رنگ" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "برگزیدن رنگ &تب‌" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format msgid "Program Name: %n" @@ -5753,41 +6036,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&بستن تب‌" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&جداسازی نما‌" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&جداسازی نما‌" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "بستن میله جستجو" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&جداسازی نما‌" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&تغییر نام تب..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&بستن تب‌" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "فعال را ببند" + #, fuzzy #~| msgid "Open Link" #~ msgctxt "@title:window" @@ -6222,10 +6519,6 @@ msgstr "&بستن تب‌" #~ msgid "Decrease Text Size" #~ msgstr "کاهش اندازه متن" -#, fuzzy -#~ msgid "Search Output..." -#~ msgstr "خروجی جستجو" - #~ msgid "Find Next" #~ msgstr "یافتن بعدی" @@ -6250,9 +6543,6 @@ msgstr "&بستن تب‌" #~ msgid "New" #~ msgstr "جدید " -#~ msgid "Select &Tab Color" -#~ msgstr "برگزیدن رنگ &تب‌" - #~ msgid "Show tab bar when needed" #~ msgstr "نمایش میله تب هنگام نیاز" diff --git a/local/recipes/kde/konsole/source/po/fi/konsole.po b/local/recipes/kde/konsole/source/po/fi/konsole.po index df5b3c1c5a..b4fa2a26ef 100644 --- a/local/recipes/kde/konsole/source/po/fi/konsole.po +++ b/local/recipes/kde/konsole/source/po/fi/konsole.po @@ -5,7 +5,7 @@ # Author: Lliehu # Author: Niklas Laxström # Author: Rytilahti -# SPDX-FileCopyrightText: 2009, 2010, 2011, 2024 Tommi Nieminen +# SPDX-FileCopyrightText: 2009, 2010, 2011, 2024, 2025, 2026 Tommi Nieminen # Kim Enkovaara , 2002,2003, 2006. # Teemu Rytilahti , 2003, 2012. # Mikko Ikola , 2003, 2005. @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-04-18 22:56+0300\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-01-05 17:20+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -29,8 +29,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2012-12-01 22:22:03+0000\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 25.04.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -69,7 +68,7 @@ msgstr "Näkymä" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Jaettu näkymä" @@ -105,7 +104,7 @@ msgid "S&crollback" msgstr "&Rivihistoria" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Istuntotyökalurivi" @@ -186,36 +185,52 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Piilota valikkorivi oletusasetuksesta riippumatta" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Näytä välilehtipalkki oletusasetuksesta riippumatta" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Piilota välilehtipalkki oletusasetuksesta riippumatta" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Näytä välilehtipalkki oletusasetuksesta riippumatta" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Piilota välilehtipalkki oletusasetuksesta riippumatta" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Käynnistä Konsole koko näytön tilassa" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Poista läpinäkyvät taustat käytöstä, vaikka järjestelmä tukisi niitä." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Luettele käytettävissä olevat profiilit" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -223,13 +238,13 @@ msgstr "" "Luettele kaikkien profiiliominaisuuksien nimet ja tyypit (käytettäväksi -p:n " "kanssa)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Muuta profiiliominaisuuden arvoa." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -239,7 +254,7 @@ msgstr "" "Suoritettava komento. Tämä valinta kaappaa kaikki seuraavat parametrit, " "joten käytä tätä viimeisenä valintana." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -249,13 +264,13 @@ msgstr "" "Pakota käyttämään nykyistä ilmentymää uudelleen, vaikka se särkisi jotakin, " "esim. --new-tab. Lähinnä virheenpaikannukseen." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Komennolle annettavat parametrit" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -274,157 +289,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Edustaväri" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Taustaväri" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Väri 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Väri 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Väri 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Väri 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Väri 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Väri 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Väri 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Väri 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Edustaväri (voimakas)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Taustaväri (voimakas)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Väri 1 (voimakas)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Väri 2 (voimakas)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Väri 3 (voimakas)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Väri 4 (voimakas)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Väri 5 (voimakas)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Väri 6 (voimakas)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Väri 7 (voimakas)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Väri 8 (voimakas)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Tekstiväri (hento)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Taustaväri (hento)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Väri 1 (hento)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Väri 2 (hento)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Väri 3 (hento)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Väri 4 (hento)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Väri 5 (hento)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Väri 6 (hento)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Väri 7 (hento)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Väri 8 (hento)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -681,6 +696,41 @@ msgstr "Ylhäällä" msgid "AaZz09..." msgstr "AaÖö09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Palvelin: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Oletus]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -726,7 +776,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopioinnin kohde" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Luodaan pienoiskuvaa" @@ -758,13 +808,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Valitse fontti" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Näytä kaikki fontit" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -804,17 +854,17 @@ msgstr "Näppäinyhdistelmä" msgid "Output" msgstr "Tuloste" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Uusi näppäinsidoskokoelma" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Muokkaa näppäinsidoksia" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Kuvauksetonta näppäinsidosmallia ei voi tallentaa." @@ -822,7 +872,7 @@ msgstr "Kuvauksetonta näppäinsidosmallia ei voi tallentaa." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -856,225 +906,225 @@ msgstr "Syöte:" msgid "Output:" msgstr "Tuloste:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Pääte-emulaattori" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997–2022 Konsolen kehittäjät" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Yleisylläpitäjä; virhekorjauksia ja yleisparannuksia" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Aiempi ylläpitäjä, sovitus KDE 4:ään" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Alkuperäinen tekijä" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Isompi uudistus, vianpaikkauksia ja isoja parannuksia" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Virhekorjauksia ja yleisparannuksia" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Vianpaikkauksia ja isoja parannuksia" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Yleisparannuksia" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Virhekorjauksia" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-tuki ja historia" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Virheenkorjauksia ja nopeampi käynnistys" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Merkkausparannuksia" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1084,13 +1134,13 @@ msgstr "" "Upotettu Konsole\n" "Työkalurivi ja istuntojen nimet" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1100,25 +1150,25 @@ msgstr "" "Upotettu Konsole\n" "Yleisparannuksia" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visuaaliset tehosteet" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1128,132 +1178,132 @@ msgstr "" "Koodi kvt-projektista\n" "Yleisiä parannuksia" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Teeman ja tekstinvalinnan parannuksia" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-siirros" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-siirros" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Kiitokset monille muille.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Uusi &välilehti" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "M&onista välilehti" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Uusi &ikkuna" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Sulje ikkuna" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Kirjanmerkit" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Ikkunan väriteema" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Hallitse profiileja…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktivoi valikko" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Tallenna välilehtiasettelu…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Lataa välilehtiasettelu…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1263,67 +1313,67 @@ msgstr[0] "Ikkunassa on prosessi käynnissä. Haluatko silti lopettaa ohjelman?" msgstr[1] "" "Ikkunassa on %1 prosessia käynnissä. Haluatko silti lopettaa ohjelman?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Vahvista sulkeminen" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Sulje ikkuna" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Sulje nykyinen &välilehti" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Ikkunassa on auki %1 päätettä. Haluatko silti lopettaa?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiilit" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Perusasetukset" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Muisti" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Välilehtipalkki / Jakoviivat" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Väliaikaistiedostot" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Pienoiskuvat" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1408,7 +1458,7 @@ msgstr "Tallenna" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Päivitä" @@ -1420,29 +1470,29 @@ msgid "Cancel" msgstr "Peru" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Pikakomennot" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Näytä pikasaanti" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Pikakomentoja ei löytynyt. Niitä voi lisätä kohdassa Liitännäiset → " "Pikakomennot" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Liitännäiset – Pikakomennot" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Näytä pikakomennot" @@ -1484,7 +1534,7 @@ msgstr "" "on useita asetuksia: oletko varma?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Olet poistamassa kohdetta %1: oletko varma?" @@ -1537,11 +1587,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 on SSH-kohteiden kansio" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH-asetukset" @@ -1603,24 +1653,24 @@ msgstr "" "SSH-komentoa ei voi suorittaa komentotulkin (esim. Bash, Zsh) ulkopuolella" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH-avain" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Poista" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Älä muuta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1629,70 +1679,70 @@ msgstr "" "Olet poistamassa kansiota %1,\n" "jossa on useampia SSH-asetuksia. Oletko varma?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Poista SSH-asetukset" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." -msgstr "" +msgstr "Tuotiin SSH-profiili
          Jotkin asetukset ovat vain luettavissa." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Konenimi puuttuu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Nimi puuttuu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Jos ”Käytä SSH-asetusta” on käytössä, älä anna SSH-avainta tai -" "käyttäjätunnusta." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Ainakin käyttäjätunnus tai SSH-avain on asetettava" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Kansio puuttuu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH-istunto vaatii profiilin" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Tätä kansiota ei voi poistaa" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Poista kansio sisältöineen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Muuta kansion nimeä kaksoisnapsauttamalla." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Automaattisesti lisättyä kohdetta ei voi poistaa." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Poista valittu kohde" @@ -1884,25 +1934,25 @@ msgstr "Tulosteasetukset" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Tulostin&ystävällinen tila (musta teksti, ei taustaa)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Sovita tuloste" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Sisään rakennettu" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Oletusprofiili" @@ -1961,17 +2011,42 @@ msgstr "Vaihda pikanäppäin kaksoisnapsauttamalla" msgid "Tab Properties" msgstr "Välilehden ominaisuudet" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Tallenna tuloste istunnosta %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "Sijainti ”%1” ei kelpaa. Rivihistorian tallennus epäonnistui." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Automaattitallennustiedoston ”%1” luominen epäonnistui." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Näytönvaihdon vuoksi lopetetaan automaattitallennus." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Automaattitallennustiedostoa on ulkoisesti muutettu, mikä estää sen " +"jatkamisen." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Ulostulomuutosten takia automaattitallennuksen tilan päivittäminen " +"epäonnistui." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2007,83 +2082,100 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tummat pastellivärit" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Vihreää mustalla taustalla" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-värit" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Punaista mustalla taustalla" # http://ethanschoonover.com/solarized -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" # http://ethanschoonover.com/solarized -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized Light" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Valkoista mustalla taustalla" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Oletus (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-pääte" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-pääte" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Etsi…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Kirjoita etsittävän välilehden nimi tähän" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Äänimerkki päätteessä ”%1” (istunto ”%2”)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Ohjelmaa ei löytynyt:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Varoitus: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Ei löytynyt vuorovaikutteista komentotulkkia, jota käynnistää." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2092,365 +2184,366 @@ msgstr "" "Ohjelmaa ”%1” ei löytynyt, käynnistetään ”%2” sen sijasta. Tarkasta " "profiilisi asetukset." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Ohjelmaa ”%1” ei voitu käynnistää parametrein ”%2”." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Hiljaisuus päätteessä ”%1” (istunto ”%2”)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Näytä istunto" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"Äsken käytettiin D-Bus-metodeja sendText/runCommand. Julkisina nämä metodit " -"aiheuttavat turvallisuusriskin. Ne voi muuttaa ainoastaan sisäisesti " -"käytettäviksi vain koostamalla Konsole uudelleen.

          Tämä varoitus näytetään " -"vain kerran tälle Konsolen ilmentymälle.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Valmis" # ei-ASCII-lainausmerkit eivät näkyneet oikein -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Ohjelma ”%1” kaatui." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Ohjelma ”%1” päättyi paluuarvoon %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-tiedonsiirron edistyminen" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktiivisuutta päätteessä ”%1” (istunto ”%2”)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "Asetuksista on poistettu käytöstä DBus-API, jossa on tietoturvariski" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Prosessi ”%1” on päättänyt suorituksen istunnossa ”%2”" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ei tiedä, miten avata kirjanmerkkiä: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Etsi ”%1” hakukoneella" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Muokkaa WWW-pikavalintoja…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Sulje istunto" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Avaa tiedostonhallinta" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopioi" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Jaa näkymä vasempaan ja oikeaan osaan" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Jaa näkymä ylä- ja alaosaan" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopioi paitsi kehotteet" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopioi käyttäjän syöte" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopioi komennon tuloste" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Liitä hiirivalinnan sisältö" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Verkkohaku" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "V&alitse kaikki" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Valintatila" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Valitse &rivi" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Tallenna tuloste nimellä…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Automaattitallenna tuloste nimellä…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Pysäytä automaattitallennus" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "T&ulosta näyttö…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Säädä rivihistorian kokoa…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Tyhjennä rivihistoria" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Tyhjennä rivihistoria ja alusta näkymä" -#: session/SessionController.cpp:757 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:795 +#, kde-format msgid "Next Profile" -msgstr "Muokkaa profiilia" +msgstr "Seuraava profiili" -#: session/SessionController.cpp:762 -#, fuzzy, kde-format -#| msgid "Previous View" +#: session/SessionController.cpp:800 +#, kde-format msgid "Previous Profile" -msgstr "Edellinen näkymä" +msgstr "Edellinen profiiili" # Tämä muoto, koska kyseessä on alivalikko, jossa on luettelo profiileista. -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Vaihda profiiliin" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Aseta koodaus" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Salli hiiren jäljitys" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Vain luku" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Muuta välilehden asetuksia tai nimeä…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "K&aikki nykyisen ikkunan välilehdet" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Valitse välilehdet…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ei mitään" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopioi syöte…" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem-lähetys…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Kertaluonteiset valvonnat" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Ke&hotteen valvonta" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&Aktiviteetin valvonta" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Hiljaisuuden valvonta" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Prosessin valmistumisen valvonta" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Suurenna fonttia" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Pienennä fonttia" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Palauta fonttikoko" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Lähetä signaali" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Pysäytä tehtävä" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Jatka tehtävää" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "K&atkaise yhteys" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "K&eskeytä tehtävä" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Lopeta tehtävä" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Tapa tehtävä" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Käyttäjän signaali &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Käyttäjän signaali &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Luo uusi profiili…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Muokkaa nykyistä profiilia…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Tässä istunnossa on ohjelma käynnissä. Haluatko silti sulkea sen?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "Tässä istunnossa on käynnissä ohjelma ”%1”. Haluatko silti sulkea sen?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Vahvista sulkeminen" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Sulje ohjelma" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2459,37 +2552,37 @@ msgstr "" "Tämän istunnon ohjelma ei suostu lopettamaan. Haluatko varmasti tappaa sen " "väkisin?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"Tämän istunnon ohjelma %1 ei suostu lopettamaan. Haluatko varmasti tappaa " +"Tämän istunnon ohjelma %1 ei suostunut päättymään. Haluatko varmasti tappaa " "sen väkisin?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Tapa ohjelma" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Istunnossa ”%1” näytetään komentokehote" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Avaa nykyinen kansio ohjelmalla" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Tallenna ZModem-lataus kohteeseen…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2500,13 +2593,13 @@ msgstr "" "ei löytynyt järjestelmästä.

          Saatat haluta asentaa rzsz- tai lrzsz-" "paketin.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "

          Nykyisessä istunnossa on jo ZModem-tiedostonsiirto käynnissä.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2515,7 +2608,7 @@ msgstr "" "

          Järjestelmästä ei löytynyt sopivaa ZModem-ohjelmistoa.

          Haluat " "luultavasti asentaa rzsz- tai lrzsz-paketin.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Valitse ZModem-lähetettävät tiedostot" @@ -2538,56 +2631,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Asetukset" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Etsi:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Käytä valikon valintanäppäimiä" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Jos käytössä, profiilin asetukset ohitetaan" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Muista ikkunan koko" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Näytä ikkunan otsikko otsikkopalkissa" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Kohdista pääte hiiriosoittimen siirtyessä sen ylle" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Käytä säännöllisiä lausekkeita" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2596,88 +2642,161 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Suorita kaikki Konsole-ikkunat yhtenä prosessina" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Korosta kaikki osumat" +msgid "If enabled, profile settings will be ignored" +msgstr "Jos käytössä, profiilin asetukset ohitetaan" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Asettaa, erotetaanko haussa pien- ja suuraakkoset" +msgid "Remember window size" +msgstr "Muista ikkunan koko" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Erota pien- ja suuraakkoset" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Sijoita uudet välilehdet:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Poista ikkunan otsikkorivi ja kehys" +msgid "Listen for ZModem terminal codes" +msgstr "Kuuntele ZModem-päätekoodeja" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Prosessi ja ikkuna:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Ilmoitukset:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Kaikki ilmoitusikkunat näytetään uudelleen" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Ota käyttöön kaikki ”Älä kysy uudelleen” -viestit" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Asettaa, aloitetaanko haku lopusta" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Etsi taaksepäin" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Asettaa, erotetaanko haussa pien- ja suuraakkoset" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Erota pien- ja suuraakkoset" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Prosessi ja ikkuna:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Korosta kaikki osumat" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Etsi:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format msgid "Sets whether search should stop instead of wrapping" -msgstr "Asettaa haun alkamisen alhaalta" +msgstr "Asettaa, pysähtyykö haku vai kiertääkö se toiseen päähän" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" -msgstr "" +msgstr "Ei kiertoa" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Käytä valikon valintanäppäimiä" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Kohdista pääte hiiriosoittimen siirtyessä sen ylle" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Kaikki ilmoitusikkunat näytetään uudelleen" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Ota käyttöön kaikki ”Älä kysy uudelleen” -viestit" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Näytä ikkunan otsikko otsikkopalkissa" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Ota käyttöön DBus-APIn osat, joissa on tietoturvariski" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Poista ikkunan otsikkorivi ja kehys" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Käytä säännöllisiä lausekkeita" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 @@ -2704,71 +2823,112 @@ msgstr "Käytä nykyisen ikkunan kokoa seuraavassa käynnistyksessä" msgid "The window size will be saved upon exiting Konsole" msgstr "Ikkunan koko tallennetaan, kun Konsole lopetetaan" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Konsolea käynnistettäessä käytä mahdollisuuksien mukaan uudelleen olemassa " +"olevaa prosessia" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "Otetaan käyttöön DBus-API kuten runCommand" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Kuuntele ZModem-päätekoodeja" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Tiedostojen automaattinen lähetys ja vastaanotto sarjaliitäntöjen yli" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Pienoiskuvan leveys" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Asettaa pienoiskuvan leveyden" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Näytä pienoiskuva vaihtonäppäimellä" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Näytä pienoiskuva Alt-näppäimellä" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Näytä pienoiskuva Ctrl-näppäimellä" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Haku erottaa pien- ja suuraakkoset" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Korosta kaikki osumat" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Asettaa, korostetaanko hakuosumat" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Haku pysähtyy kiertämättä" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Asettaa, luodaanko lapsi-cgroupit yksittäisille välilehdille" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2776,91 +2936,97 @@ msgstr "Määrittää muistinkulutustason, josta rajoittaminen alkaa" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Säädä koko välilehtipalkin näkyvyyttä" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Säädä paneelien välisen kahvan kokoa" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Muuta välilehtipalkin sijaintia" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Muuta välilehtipalkin ulkoasutyyliä" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Käytä välilehtipalkissa käyttäjän omaa CSS-tiedostoa" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Välilehtipalkin tyylin CSS-tiedosto" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Sulje avoimet välilehdet keskipainikkeen napsautuksella" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Valitse, milloin näytetään ”Uusi välilehti” -painike" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Valitse, milloin välilehtirivillä näytetään ”Etsi välilehteä” -painike" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Valitse, milloin näytetään ”Sulje välilehti” -painike" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Aseta, minne uusi välilehti sijoitetaan" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Lavenna sarkainleveydet" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Käytä rivihistoriatiedostoille järjestelmänlaajuista kansiota" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Käytä rivihistoriatiedostoille käyttäjäkohtaista kansiota" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Aseta rivihistoriatiedostokansioiden sijainti" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Käytä rivihistoriatiedostoille tätä kansiota" @@ -2872,35 +3038,29 @@ msgid "Enable memory monitoring:" msgstr "Käytä muistinvalvontaa:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Muutokset tulevat voimaan uudelleenkäynnistettäessä. Jos käytössä, Konsolen " -"jatkuva arvon\n" -"ylittävä muistinkäyttö saa systemd-oomd:n lopettamaan muistia kuluttavia " -"prosesseja\n" -"suorittavat välilehdet. Huom! Asetuksen käyttö voi aiheuttaa hidastumista, " -"kun muistia\n" -"käytetään paljon, ja liian pienen arvon asettaminen voi johtaa siihen, että " -"Konsole\n" -"lopetetaan." +"jatkuva arvon ylittävä muistinkäyttö saa systemd-oomd:n lopettamaan muistia " +"kuluttavia prosesseja suorittavat välilehdet. Huom! Asetuksen käyttö voi " +"aiheuttaa hidastumista, kun muistia käytetään paljon, ja liian pienen arvon " +"asettaminen voi johtaa siihen, että Konsole lopetetaan." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Muistirajoitus:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " Mt" @@ -3024,17 +3184,15 @@ msgstr "Päätteen &alla" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the left of terminal area" -msgstr "Päätteen &alla" +msgstr "Päätealueesta vasempaan" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the &right of terminal area" -msgstr "Päätteen &alla" +msgstr "Päätealueesta &oikeaan" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 @@ -3044,8 +3202,7 @@ msgstr "Näytä Sulje välilehti -painike:" #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 -#, fuzzy, kde-format -#| msgid "&On each tab" +#, kde-format msgid "On ea&ch tab" msgstr "K&ussakin välilehdessä" @@ -3062,126 +3219,144 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Ei milloinkaan" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Näytä Etsi välilehteä -painike:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "aina" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "ei koskaan" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Sekalaista:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Näytä ”Uusi välilehti” - painike" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Laajenna yksittäisten välilehtien leveydet koko ikkunaan" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Käyttäjän määrittämä tyylisivu:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ei mitään)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Toiminta" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Sijoita uudet välilehdet:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "&Viimeiseksi" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "N&ykyisen välilehden jälkeen" # *** TARKISTA: mahtuisiko ”keskimmäisen painikkeen napsautuksella”, joka olisi selkeämpi? #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Sulje välilehti keskinapsautuksella" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Jakoviivat" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Näytä otsake:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "tarvittaessa" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "ei koskaan" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Vetokahvan koko:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Pieni" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Keskikokoinen" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Suuri" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3233,12 +3408,12 @@ msgstr " px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Ominaisuuden saa käyttöön valitsemalla profiilin " -"asetuksista Hiiri→Sekalaista→Alleviivaa " -"tiedostot

          " +"asetuksista Hiiri → Sekalaista → " +"Alleviivaa tiedostot

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3276,95 +3451,95 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Käytä pienoiskuvien luontia" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Koko %1×%2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Haluatko varmasti liittää %1 merkin?" msgstr[1] "Haluatko varmasti liittää %1 merkkiä?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Vahvista liittäminen" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Tekstin loppu/Keskeytys: voi lopettaa nykyisen prosessin" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Siirron loppu: voi lopettaa nykyisen prosessin" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Kello: yrittää tuottaa äänimerkin" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Askelpalautin" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "XOFF: keskeyttää tulostuksen" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Korvaa/Keskeytä: voi keskeyttää nykyisen prosessin" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: käytetään päätteen tilan muuttamiseen" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Tiedostoerotin/Lopetus: voi lopettaa nykyisen prosessin" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "Liitettävä teksti sisältää ohjausmerkkejä. Haluatko suodattaa ne pois?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Vahvista liittäminen" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Liitä &ohjausmerkeittä" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Liitä k&aikki" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Peru" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
          keskeytetty painamalla Ctrl+S. Jatka suoritusta painamalla Ctrl+Q.
          " -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Tätä päätettä voi vain lukea." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "&Siirry kansioon" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Liitä &sijainti" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Jaettu näkymä" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Jaa näkymä pystysuunnassa" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Jaa näkymä vaakasuunnassa" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Jaa näkymä automaattisesti" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Jaa näkymä vasempaan ja oikeaan osaan seuraavalta välilehdeltä" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Jaa näkymä ylä- ja alaosaan seuraavalta välilehdeltä" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Jaa näkymä automaattisesti seuraavalta välilehdeltä" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Lataa uusi välilehti 2×2-asettelun päätteille" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Lataa uusi välilehti 2×1-asettelun päätteille" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Lataa uusi välilehti 1×2-asettelun päätteille" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Laajenna näkymää" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Kavenna näkymää" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "&Irrota nykyinen näkymä" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Irrota nykyinen &välilehti" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Seuraava välilehti" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Edellinen välilehti" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Kohdistus päätteen ylle" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Kohdistus päätteen alle" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Kohdista vasemmanpuoleiseen päätteeseen" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Kohdista oikeanpuoleiseen päätteeseen" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Kohdista seuraavaan päätteeseen" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Kohdistus edelliseen alle" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Siirry viimeiselle välilehdelle" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Viimeksi käytetyt välilehdet" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Vaihda kahden välilehden välillä" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Viimeksi käytetyt välilehdet (käänteinen)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Suurenna/palauta nykyinen näkymä" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Suurenna/palauta nykyinen näkymä" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Suurenna tai palauta nykyinen näkymä" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Suurenna tai palauta nykyinen näkymä" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Siirrä välilehteä oikealle" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Siirrä välilehteä vasemmalle" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Aseta semanttinen integrointi (Bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Näytä tai piilota semanttiset vihjeet" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Näytä tai piilota rivinumerointi" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Sama koko kaikille näkymille" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Siirry välilehdelle %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semanttiset vihjeet" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Rivinumerointi" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Tallenna välilehtiasettelu" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole-näkymäasettelu (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3632,7 +3819,7 @@ msgstr "" "Asettelua tallennettaessa sattui ongelma.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3642,13 +3829,13 @@ msgstr "" "Asettelua ladattaessa sattui ongelma.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Lataa välilehtiasettelu" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3668,7 +3855,7 @@ msgstr "Verkko-osoitevihjeet näyttävä näppäinyhdistelmä:" #, kde-format msgctxt "key on keyboard" msgid "Shift" -msgstr "Shift" +msgstr "Vaihto" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierCtrl) #: widgets/EditProfileAdvancedPage.ui:70 @@ -3736,10 +3923,9 @@ msgstr "Vuonhallinta" #. i18n: ectx: property (text), widget (QLabel, label_14) #: widgets/EditProfileAdvancedPage.ui:222 -#, fuzzy, kde-format -#| msgid "Default character encoding:" +#, kde-format msgid "&Default character encoding:" -msgstr "Oletusmerkistökoodaus:" +msgstr "Oletus&merkistökoodaus:" #. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) #: widgets/EditProfileAdvancedPage.ui:242 @@ -3747,38 +3933,44 @@ msgstr "Oletusmerkistökoodaus:" msgid "Shortcut for peeking the primary screen:" msgstr "Pikanäppäin ensisijaisen näytön vilkaisemiseksi:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 -#, fuzzy, kde-format -#| msgid "Line numbers " +#, kde-format +msgid "Set interval between autosaves:" +msgstr "Aseta automaattitallennusväli:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" -msgstr "Rivinumerointi" +msgstr "Rivinumerointi:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 -#, fuzzy, kde-format -#| msgid "&Never" +#: widgets/EditProfileAdvancedPage.ui:285 +#, kde-format msgctxt "Never" msgid "&Never" -msgstr "&Ei koskaan" +msgstr "&ei koskaan" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 -#, fuzzy, kde-format -#| msgctxt "When showing URL hints" -#| msgid "When URL hints show" +#: widgets/EditProfileAdvancedPage.ui:295 +#, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" -msgstr "Näytettäessä osoitevihjeet" +msgstr "näytettäessä &osoitevihjeitä" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 -#, fuzzy, kde-format -#| msgctxt "Always" -#| msgid "Always" +#: widgets/EditProfileAdvancedPage.ui:305 +#, kde-format msgctxt "Always" msgid "A&lways" -msgstr "Aina" +msgstr "&aina" #. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) #: widgets/EditProfileAppearancePage.ui:36 @@ -3810,7 +4002,7 @@ msgstr "Muokkaa valittua väriteemaa" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3864,31 +4056,35 @@ msgstr "Osoita kirkkaat värit lihavoidulla fontilla" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" -msgstr "Käytä valittua fonttia viivamerkkeihin sisäänrakennetun koodin sijaan" +msgstr "Käytä viivamerkkeihin sisään rakennetun koodin sijaan valittua fonttia" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Käytä fontin sisältämiä viivamerkkejä" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 -#, fuzzy, kde-format -#| msgid "" -#| "Use the selected font for line characters instead of the builtin code" +#, kde-format msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" -msgstr "Käytä valittua fonttia viivamerkkeihin sisäänrakennetun koodin sijaan" +msgstr "" +"Käytä pistekirjoitukseen valittua fonttia sisäänrakennetun koodin sijaan" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 -#, fuzzy, kde-format -#| msgid "Use line characters contained in font" +#, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "Käytä fontin sisältämiä viivamerkkejä" +msgstr "Käytä fontin sisältämiä pistekirjoitusmerkkejä" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -3992,29 +4188,45 @@ msgid "Make the cursor blink regularly" msgstr "Panee kohdistimen vilkkumaan tasaisesti" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Käytössä" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktivointi:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Panee kohdistimen vilkkumaan tasaisesti" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Sekalaista" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Ikkuna:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4024,146 +4236,146 @@ msgstr "" "muutettu" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Näytä päätteen koko, kun sitä on muutettu" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Käännä aina valitun tekstin värit" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Tummennusvoimakkuus:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Väri:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Valitse reunaviivan piirtoväri" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Passiiviset päätteet:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Aktiiviset päätteet:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Päätteen sisältö" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Riviväli:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Kuvapisteiden määrä kahden rivin välissä" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Reunukset:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Keskitä:" # HUOM: Värejä himmennetään *passiiviselta* ikkunalta! #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Osoita ikkunan passiivisuus värejä himmentämällä" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Tummenna" # HUOM: Värejä himmennetään *passiiviselta* ikkunalta! #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Osoita ikkunan aktiivisuus piirtämällä reunaviiva" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Reunaviiva" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Näytä pystyviiva sarakkeessa:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Monimutkaisen tekstin asettelu

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Monimutkaisen tekstin asettelu" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Käytä sanatilan tekstinhahmonnusta" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Sanatila" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4173,44 +4385,44 @@ msgstr "" "sanan hahmonnettaessa)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Käytä samoja määritteitä koko sanaan" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Hahmonna ASCII-merkkejä sisältävät sanat yhdessä" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII-merkit" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Hahmonna intialaisia kirjoitusmerkkejä sisältävät sanat yhdessä" # Periaatteessa oikein, koska kaikki Intiassa käytetyt kirjoitusjärjestelmät (pl. latinalainen ja arabialainen) ovat ”brahmiinisia” #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Intialaisten kirjoitusjärjestelmien merkit" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emojifontti:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4219,13 +4431,13 @@ msgstr "" "Ota käyttöön kaksisuuntainen teksti (vain arabiassa, farsissa ja hepreassa)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Käytä kaksisuuntaisen tekstin hahmonnus" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4233,83 +4445,83 @@ msgstr "" "merkki määrittäisi" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" -msgstr "pakota rivisuunta vasemmalta oikealle" +msgstr "Pakota rivin suunta vasemmalta oikealle" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Pidä taulukonpiirtomerkkejä vahvoina vasemmalta oikealle -merkkeinä." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Taulukkomerkkien molempisuuntaisohitus" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Sivuuta ongelmamerkkien wc-leveys" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Sivuuta wc-leveys" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Muokkaa profiilia" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Perusasetukset" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Välilehdet" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Ulkoasu" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Vieritys" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Näppäimistö" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Näppäinsidokset" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Hiiri" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Lisäasetukset" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4321,48 +4533,55 @@ msgstr "" "filename>.Muuta joko tiedoston käyttöoikeuksia tai aseta toinen nimi " "tallentaaksesi asetukset uuteen profiiliin." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Profiilin nimi oli tyhjä: tallentaaksesi asetukset aseta nimi." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Profiili nimeltä ”%1” on jo olemassa." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profiilin nimi on yli sallitun enimmäispituuden (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Korostetut merkit profiilinimissä ovat virheellisiä: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Muokataan profiilia: %2" msgstr[1] "Muokataan %1 profiilia: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Luo uusi profiili" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Muokkaa profiilia ”%1”" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Ei milloinkaan" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4372,7 +4591,7 @@ msgid_plural " columns" msgstr[0] " sarake" msgstr[1] " saraketta" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4382,42 +4601,42 @@ msgid_plural " rows" msgstr[0] " rivi" msgstr[1] " riviä" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Järjestelmän äänimerkki" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Järjestelmäilmoitukset" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Visuaalinen äänimerkki" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ohita äänimerkkitapahtumat" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Uusien pääteistuntojen oletusprofiili – %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Ympäristömuuttujat" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Yksi ympäristömuuttuja per rivi" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4425,23 +4644,23 @@ msgid_plural " seconds" msgstr[0] " sekunti" msgstr[1] " sekuntia" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Valitse oletussijainti" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Hae uusia…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Teeman %1 lataus epäonnistui." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4449,7 +4668,7 @@ msgid "" msgstr "" "Väriteema käyttää läpinäkyvää taustaa, mitä laitteistosi ei näy tukevan" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4458,13 +4677,12 @@ msgstr "" "Konsole käynnistyi ennen työpöytätehosteiden käyttöönottoa. Näet läpinäkyvän " "taustan käynnistettyäsi Konsolen uudelleen." -#: widgets/EditProfileDialog.cpp:1913 -#, fuzzy, kde-format -#| msgid "Default profile" +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format msgid "Default for file type" -msgstr "Oletusprofiili" +msgstr "Tiedostotyypin oletus" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4492,7 +4710,7 @@ msgstr "" "Ellei SIJAINTIa tai RIVIä anneta, asetus ohitetaan, ja\n" "tiedosto avataan oletustekstimuokkaimeen." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Mukautettu tekstinmuokkauskomento" @@ -4550,10 +4768,9 @@ msgstr "/bin/sh" #. i18n: ectx: property (text), widget (QLabel, label_9) #: widgets/EditProfileGeneralPage.ui:157 -#, fuzzy, kde-format -#| msgid "Initial directory:" +#, kde-format msgid "I&nitial directory:" -msgstr "Aloituskansio:" +msgstr "A&loituskansio:" #. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:170 @@ -4580,27 +4797,54 @@ msgstr "Valitse aloituskansio" msgid "Start in same directory as current session" msgstr "Aloita nykyisen istunnon kansiossa" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Aloita nykyisen istunnon kansiossa" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ympäristömuuttujat:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Muokkaa ympäristömuuttujien ja niiden arvojen luetteloa" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 -#, fuzzy, kde-format -#| msgid "Initial terminal size:" +#: widgets/EditProfileGeneralPage.ui:320 +#, kde-format msgid "Initial terminal si&ze:" -msgstr "Päätteen alustava koko:" +msgstr "&Päätteen alustava koko:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4613,32 +4857,31 @@ msgstr "" "käytöstä, jotta nämä kohdat toimisivat.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 -#, fuzzy, kde-format -#| msgid "Terminal bell mode:" +#: widgets/EditProfileGeneralPage.ui:411 +#, kde-format msgid "&Terminal bell mode:" -msgstr "Järjestelmän äänimerkin tyyli:" +msgstr "Järjestelmän &äänimerkin tyyli:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semanttinen integrointi" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Ylös- ja Alas-nuoliemulointi" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Hiiren napsautus syöterivillä siirtää kohdistinta" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semanttiset vihjeet:" @@ -4648,9 +4891,9 @@ msgstr "Semanttiset vihjeet:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4661,9 +4904,9 @@ msgstr "ei koskaan" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4674,34 +4917,34 @@ msgstr "näytettäessä osoitevihjeitä" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "aina" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Punaiset virhepalkit:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Punainen virhetausta:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Vuorottelevat palkit:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Vuorotteleva tausta:" @@ -4783,17 +5026,15 @@ msgstr "Kolmoisnapsautus valitsee:" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) #: widgets/EditProfileMousePage.ui:104 -#, fuzzy, kde-format -#| msgid "The whole line" +#, kde-format msgid "&The whole line" -msgstr "koko rivin" +msgstr "k&oko rivin" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 -#, fuzzy, kde-format -#| msgid "From mouse position to the end of line" +#, kde-format msgid "From mouse position to the end of &line" -msgstr "tekstin hiirikohdistimesta rivin loppuun" +msgstr "&hiiren sijainnista rivin loppuun" #. i18n: ectx: property (text), widget (QLabel, label_13) #: widgets/EditProfileMousePage.ui:140 @@ -5059,122 +5300,128 @@ msgid "Scrollback:" msgstr "Rivihistoria:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "PgUp/PgDn-vieritys:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Vieritä sivua puolet ikkunan korkeudesta" +msgid "Highlight the lines coming into view" +msgstr "Korosta näkyviin tulevat rivit" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half screen height" -msgid "Half screen heigh&t" -msgstr "puolet näytön korkeudesta" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Vieritä sivua ikkunan koko korkeuden verran" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full screen height" -msgid "F&ull screen height" -msgstr "koko näytön korkeus" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Vierityspalkin sijainti:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Näytä vierityspalkki päätteen oikeassa reunassa." - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the right side" -#| msgid "Right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "oikealla" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Näytä vierityspalkki päätteen vasemmassa reunassa." - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the left side" -#| msgid "Left side" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "vasemmalla" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "piilotettu" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Kunkin merkin koko (osuutena vierityspalkin pituudesta):" + #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 +#: widgets/EditProfileScrollingPage.ui:97 #, kde-format msgid "Highlighting:" msgstr "Korostus:" -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format -msgid "Highlight the lines coming into view" -msgstr "Korosta näkyviin tulevat rivit" +msgid "Scroll the page the half height of window" +msgstr "Vieritä sivua puolet ikkunan korkeudesta" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "&puolet näytön korkeudesta" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Vierityspalkkimerkkien väri:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Vierityspalkin haun korostettujen rivien väri:" # Tämän yllä ”Highlighting:” on substantiivi (”Korostus:”), joten yhdenmukaisuussyistä tämänkin on hyvä olla substantiivi #. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 +#: widgets/EditProfileScrollingPage.ui:181 #, kde-format msgid "Reflow Lines:" msgstr "Rivitys:" +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Vieritä sivua ikkunan koko korkeuden verran" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "&koko näytön korkeus" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Näytä vierityspalkki päätteen oikeassa reunassa." + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "&oikealla" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Näytä vierityspalkki päätteen vasemmassa reunassa." + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "&vasemmalla" + #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Rivitä uudelleen päätteen koon muututtua" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Vierityspalkin sijainti:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "" +msgid "Search highlighting line opacity:" +msgstr "Haun korostetun rivin peittävyys:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5244,10 +5491,9 @@ msgstr "Voit rajoittaa rivihistoriaan tallennettavien rivien määrää" #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 -#, fuzzy, kde-format -#| msgid "Fixed size:" +#, kde-format msgid "Fi&xed size:" -msgstr "annettu koko:" +msgstr "k&iinteä koko:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 @@ -5264,12 +5510,10 @@ msgstr "Rivihistoriasta ei poisteta mitään, ellet tyhjennä sitä itse" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgctxt "Save all lines to the scrollback history" -#| msgid "Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "ei rajoitettu" +msgstr "ei &rajoitettu" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5279,44 +5523,42 @@ msgstr "Älä muista aiempaa tulostetta" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" -msgstr "&Ei mitään" +msgstr "&ei mitään" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Etsi…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Kirjoita etsittävä teksti tähän" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Seuraava" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Etsii seuraavan osuman" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Edellinen" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5324,78 +5566,77 @@ msgstr "Etsii edellisen osuman" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Näyttää valintavalikon" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Sulje hakurivi" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Erota pien- ja suuraakkoset" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Asettaa, erotetaanko pien- ja suuraakkoset etsittäessä" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Näyttää valintavalikon" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Sulje hakurivi" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Säännöllinen lauseke" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Korosta kaikki osumat" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Asettaa osumien korostuksen" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Etsi taaksepäin" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Asettaa, alkaako haku alhaalta" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "" +msgstr "Ei kiertoa" -#: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" -msgstr "Asettaa haun alkamisen alhaalta" +msgstr "Asettaa, pysähtyykö haku vai kiertääkö se toiseen päähän" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Etsi nykyistä hakulauseketta alhaalta alkaen" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5407,7 +5648,7 @@ msgstr "Etsi nykyistä hakulauseketta ylhäältä alkaen" msgid "Print Shell" msgstr "Komentotulkin tulostaminen" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5431,10 +5672,9 @@ msgstr "Etävälilehden otsikon muoto:" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/RenameTabWidget.ui:79 -#, fuzzy, kde-format -#| msgid "Tab title format:" +#, kde-format msgid "&Tab title format:" -msgstr "Välilehden otsikon muoto:" +msgstr "Välilehden &otsikon muoto:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5444,10 +5684,16 @@ msgstr "Tavallisen välilehtiotsikon muoto" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgid "Tab Color:" +#, kde-format msgid "Tab Co&lor:" -msgstr "Välilehden väri:" +msgstr "&Välilehden väri:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Valitse &välilehden väri" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5542,36 +5788,57 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Palauta pääte" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Avaa uuteen välilehteen" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Etsi välilehteä" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Sulje tämä välilehti" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Irrota välilehti" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Muuta välilehden asetuksia tai nimeä…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Sulje välilehti" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "Äsken käytettiin D-Bus-metodeja sendText/runCommand. Julkisina nämä " +#~ "metodit aiheuttavat turvallisuusriskin. Ne voi muuttaa ainoastaan " +#~ "sisäisesti käytettäviksi vain koostamalla Konsole uudelleen.

          Tämä " +#~ "varoitus näytetään vain kerran tälle Konsolen ilmentymälle.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Erota pien- ja suuraakkoset" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "ei rivihistoriaa" @@ -6200,6 +6467,3 @@ msgstr "Sulje välilehti" #~ msgid "New" #~ msgstr "Uusi" - -#~ msgid "Select &Tab Color" -#~ msgstr "Valitse &välilehden väri" diff --git a/local/recipes/kde/konsole/source/po/fr/konsole.po b/local/recipes/kde/konsole/source/po/fr/konsole.po index 52eace384c..cca8753271 100644 --- a/local/recipes/kde/konsole/source/po/fr/konsole.po +++ b/local/recipes/kde/konsole/source/po/fr/konsole.po @@ -11,7 +11,7 @@ # Nicolas Ternisien , 2005, 2007, 2008, 2010. # Sébastien Renard , 2008. # Anne-Marie Mahfouf , 2009, 2012. -# SPDX-FileCopyrightText: 2012, 2013, 2020, 2021, 2022, 2023, 2024 Xavier Besnard +# SPDX-FileCopyrightText: 2012-2013, 2020-2026 Xavier Besnard # Sebastien Renard , 2013, 2014, 2015. # Vincent Pinon , 2017. # Peter Potrowl , 2017, 2018, 2019. @@ -21,10 +21,10 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-16 14:12+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-04-05 08:53+0200\n" "Last-Translator: Xavier Besnard \n" -"Language-Team: French >\n" +"Language-Team: fr\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: &\n" "X-Environment: kde\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 26.04.1\n" "X-Text-Markup: kde4\n" #, kde-format @@ -73,7 +73,7 @@ msgstr "Affichage" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Scinder la vue" @@ -109,7 +109,7 @@ msgid "S&crollback" msgstr "&Historique" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barre d'outils de session" @@ -199,22 +199,36 @@ msgstr "Masquer la barre de menus en écrasant la configuration par défaut" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Afficher toutes les barres d'outils en écrasant la configuration par défaut" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Masquer toutes les barres d'outils en écrasant la configuration par défaut" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Afficher la barre des onglets en écrasant la configuration par défaut" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Masquer la barre des onglets en écrasant la configuration par défaut" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Démarrer Konsole en mode plein écran" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." @@ -222,13 +236,13 @@ msgstr "" "Désactiver les arrières-plans transparents, même si le système les prend en " "charge." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Lister les profils disponibles" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -236,13 +250,13 @@ msgstr "" "Lister tous les noms des propriétés du profil, ainsi que leurs types (à " "utiliser avec « -p »)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Modifier la valeur d'une propriété du profil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -252,7 +266,7 @@ msgstr "" "Commande à exécuter. Cette option prendra en compte tous les arguments " "suivants. Veuillez donc l'utiliser comme dernière option." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -262,13 +276,13 @@ msgstr "" "Forcer la réutilisation de l'instance existante même si elle casse la " "fonctionnalité, par exemple, --new-tab. Principalement pour le débogage." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Arguments passés à la commande" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -286,157 +300,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Premier plan" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Arrière-plan" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Couleur 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Couleur 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Couleur 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Couleur 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Couleur 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Couleur 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Couleur 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Couleur 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Premier plan (Intense)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Arrière-plan (Intense)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Couleur 1 (Intense)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Couleur 2 (Intense)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Couleur 3 (Intense)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Couleur 4 (Intense)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Couleur 5 (Intense)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Couleur 6 (Intense)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Couleur 7 (Intense)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Couleur 8 (Intense)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Premier plan (doux)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Arrière-plan (doux)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Couleur 1 (douce)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Couleur 2 (douce)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Couleur 3 (douce)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Couleur 4 (douce)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Couleur 5 (douce)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Couleur 6 (douce)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Couleur 7 (douce)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Couleur 8 (douce)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -693,6 +707,40 @@ msgstr "Haut" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Hôte" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"La prise en charge des conteneurs n’est pas disponible lorsque Konsole " +"fonctionne à l’intérieur de Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr "[Par défaut]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Boîte à outils" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -738,7 +786,7 @@ msgstr "" msgid "Copy Location" msgstr "Copier l'emplacement" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Génération de la vignette" @@ -769,13 +817,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Sélectionner une police" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Afficher toutes les polices" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -816,17 +864,17 @@ msgstr "Combinaison de touches" msgid "Output" msgstr "Sortie" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nouvelle liste de correspondance des touches" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Modifier la liste de correspondance des touches" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -836,7 +884,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -870,225 +918,225 @@ msgstr "Entrée :" msgid "Output:" msgstr "Sortie :" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Émulateur de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997 - 2022, Les développeurs de Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Mainteneur principal, correction de bogues et améliorations générales" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Mainteneur précédent, portage vers KDE 4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Auteur originel" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Remaniement majeur, correction de bogues et améliorations majeures" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Correction de bogues et améliorations générales" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Correction de bogues et améliorations majeures" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Améliorations générales" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Correction de bogues" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" -msgstr "Stephan Kulow" +msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Prise en charge de « Solaris » et historique" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Corrections de bogues et augmentation de la vitesse de démarrage" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Améliorations marquantes" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1098,13 +1146,13 @@ msgstr "" "Konsole intégrée\n" "Barre d'outils et noms de session" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1114,25 +1162,25 @@ msgstr "" "Konsole intégrée\n" "Améliorations générales" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Effets visuels" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1142,132 +1190,132 @@ msgstr "" "Code du projet « kvt »\n" "Améliorations générales" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Améliorations de la sélection de texte et du modèle" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Portage SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Portage vers FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Remerciements aux nombreux autres contributeurs.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nouvel onglet" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Cloner l'onglet" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nouvelle &fenêtre" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Fermer la fenêtre" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Signets" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Thème de couleurs pour &fenêtres" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gérer les profils..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activer le menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Enregistrer une disposition d'onglets..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Charger une disposition d'onglets..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1280,68 +1328,68 @@ msgstr[1] "" "%1 processus sont en cours d'exécution dans cette fenêtre. Voulez-vous " "vraiment quitter ?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmer la fermeture" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Fermer la &fenêtre" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Fermer l'ongle&t actuel" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Cette fenêtre contient %1 terminaux ouverts. Voulez-vous vraiment quitter ?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profils" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Général" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Mémoire" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barre d'onglets / Séparateurs" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Fichiers temporaires" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Vignettes" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1426,7 +1474,7 @@ msgstr "Enregistrer" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Mise à jour" @@ -1438,29 +1486,29 @@ msgid "Cancel" msgstr "Annuler" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Commandes rapides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Afficher un accès rapide" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Aucune commande rapide trouvée. Vous pouvez en ajouter une avec le menu " "Modules externes / Commandes rapides." -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Modules externes - Commandes rapides" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Afficher les commandes rapides" @@ -1504,7 +1552,7 @@ msgstr "" "avec plusieurs configurations. Voulez-vous vraiment le supprimer ?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1558,11 +1606,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 est un dossier d'entrées « SSH »" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configuration « SSH »" @@ -1627,24 +1675,24 @@ msgstr "" "(ex : bash, zsh, sh)." #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Clé SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Supprimer" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ne pas modifier" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1653,71 +1701,71 @@ msgstr "" "Vous êtes sur le point de supprimer le dossier %1,\n" "avec plusieurs configurations « SSH ». Voulez-vous vraiment le supprimer ? " -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Supprimer les configurations « SSH »" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" "Importé d'un profil « SSH ».
          Certains paramètres sont en lecture seule." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Nom d'hôte manquant" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Nom manquant" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Si la configuration indique l'utilisation de « SSH », ne spécifiez pas de " "clé « SSH » ou de nom d'utilisateur." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Au moins un nom d'utilisateur ou une clé SSH doit être défini." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Dossier manquant" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Une session SSH doit posséder un profil." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Impossible de supprimer ce dossier " -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Supprimer un dossier et la totalité de son contenu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Double cliquez pour modifier le nom du dossier." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Vous ne pouvez supprimer une entrée ajoutée automatiquement." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Supprimer l'entrée sélectionnée" @@ -1912,25 +1960,25 @@ msgstr "Options de sortie" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Mode &compatible de l'impression (texte en noir, pas de fond)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Mettre à l'échelle la &sortie" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Intégré" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Profil par défaut" @@ -1989,19 +2037,45 @@ msgstr "Double cliquer pour modifier le raccourci clavier" msgid "Tab Properties" msgstr "Propriétés de l'onglet" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Enregistrer la sortie de %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" "« %1 » est une adresse URL mal formée. La sortie ne pourra pas être " "enregistrée." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Impossible de créer un fichier d'enregistrement automatique à %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" +"Arrêt de l'enregistrement automatique en raison du changement d'écrans." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Le fichier d'enregistrement automatique a été modifié par un logiciel " +"externe, ce qui empêche d'autres enregistrements automatiques." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Impossible de mettre à jour l'état d'enregistrement automatique pour les " +"modifications de sortie." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2037,81 +2111,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastels foncés" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Vert sur noir" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Couleurs Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rouge sur noir" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarisé" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Lumière solarisée" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanc sur noir" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Par défaut (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Console Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Console Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Rechercher..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Saisissez un nom d'onglet à rechercher ici" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Avertissement sonore de « %1 » (Session « %2 »)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Impossible de trouver l'exécutable : " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Avertissement : " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Impossible de trouver un terminal interactif à exécuter." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2120,337 +2211,341 @@ msgstr "" "Impossible de trouver « %1 », démarrage de « %2 » à la place. Veuillez " "vérifier la configuration de votre profil." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Impossible de démarrer le programme « %1 » avec les arguments « %2 »." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silence de « %1 » (Session « %2 »)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Afficher une session" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"Les méthodes « sendText / runCommand » de « D-Bus » viennent juste d'être " -"utilisées. Il y a des soucis de sécurité à autoriser ces méthodes à être " -"publiques. Si vous le souhaitez, ces méthodes peuvent être changées pour un " -"usage interne seulement en recompilant Konsole.

          Cet avertissement ne sera " -"affiché qu'une seule fois pour cette instance de Konsole.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Terminé" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Le programme « %1 » s'est terminée d'une manière inattendue." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Le programme « %1 » s'est terminé avec l'état « %2 »." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progression de « ZMODEM »" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activité de « %1 » (Session « %2 »)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"L'API « D-Bus » de confidentialité pour la sécurité est désactivée dans la " +"configuration." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Le processus « %1 » s'est terminé dans la session « %2 »" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ne sait pas comment ouvrir le signet : " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Rechercher « %1 » avec " -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configurer les raccourcis Web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Fermer la &session" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Ouvrir le gestionnaire de fichiers" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copier" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Scinder la vue gauche / droite" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Scinder la vue haut / bas" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copier sauf les invites" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copier l'entrée utilisateur" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copier la sortie de la commande" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Coller la sélection" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Recherche Web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Tout &sélectionner" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Sélectionnez un &mode" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Sélectionner la &ligne" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Enregistrer l&a sortie sous..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Enregistrer automatiquement la sortie sous..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Arrêter l'enregistrement automatique" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Im&primer l'écran..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Ajuster l'historique..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Effacer l'historique" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Effacer l'historique et le réinitialiser" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Profil suivant" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Profil précédent" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Changer de profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Définir l'&encodage" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permettre le suivi de la souris" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Lecture seule" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configurer ou renommer l'onglet..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Tous les onglets de l&a fenêtre active" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Sélectionner les onglets..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Aucun" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copier l'entrée vers" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Chargement de &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Surveillances ponctuelles" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Surveiller l'apparition du &prompt" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Surveiller l'&activité" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Surveiller l'inactivité" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Surveiller la clôture du processus" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Agrandir la police" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Réduire la police" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Réinitialiser la taille de la police" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Envoyer un signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspendre la tâche" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continuer la tâche" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Suspendre" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrompre la tâche" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminer la tâche" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Tuer la tâche" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Signal de l'utilisateur &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Signal de l'utilisateur &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Créer un nouveau profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Modifier le profil actuel..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2459,7 +2554,7 @@ msgstr "" "Un programme est actuellement lancé dans cette session. Voulez-vous vraiment " "la fermer ?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2468,18 +2563,18 @@ msgstr "" "Le programme « %1 » est actuellement lancé dans cette session. Voulez-vous " "vraiment la fermer ?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmer la fermeture" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Fermer un programme" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2488,37 +2583,37 @@ msgstr "" "Un programme de cette session ne veut pas être arrêté. Voulez-vous vraiment " "forcer l'arrêt ?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Le programme « %1 » de cette session ne veut pas être arrêté. Voulez-vous " "vraiment forcer l'arrêt ?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Tuer un programme" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Le prompt du shell est affiché dans la session « %1 »." -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Ouvrir le dossier courant avec" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Enregistrer le téléchargement de ZModem à..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2529,7 +2624,7 @@ msgstr "" "aucune application « ZModem » n'a été trouvée sur ce système.

          Vous " "devriez installer les paquets « rzsz » ou « lrzsz ».

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " @@ -2537,7 +2632,7 @@ msgstr "" "

          La session actuelle possède déjà un transfert de fichier « ZModem » en " "cours.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2546,7 +2641,7 @@ msgstr "" "

          Aucune application « ZModem » n'a été trouvée sur ce système.

          Vous " "devriez installer les paquets « rzsz » ou « lrzsz ».

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Sélectionner les fichiers pour le chargement de « ZModem »" @@ -2569,136 +2664,106 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configurer" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Chercher :" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Activer les accélérateurs de menu" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Si activé, la configuration du profile sera ignorée" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Mémoriser la taille de la fenêtre" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Afficher le titre de la fenêtre dans la barre de titre" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" -"Donner le focus aux terminaux lors du déplacement du pointeur de souris au-" -"dessus" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Correspondance utilisant les expressions rationnelles" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "En démarrant Konsole, réutiliser le processus existant si possible" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Exécuter toutes les fenêtres Konsole dans un processus unique" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Mettre en valeur toutes les correspondances" +msgid "If enabled, profile settings will be ignored" +msgstr "Si activé, la configuration du profile sera ignorée" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Définit si la recherche doit tenir compte de la casse" +msgid "Remember window size" +msgstr "Mémoriser la taille de la fenêtre" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Sensible à la casse" +msgid "Force new tabs" +msgstr "Forcer les nouveaux onglets" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Enlever la barre de titre et les bordures" +msgid "Listen for ZModem terminal codes" +msgstr "Se mettre à l'écoute des codes de terminal « ZModem »" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Processus et fenêtre :" +msgid "Show progress in taskbar" +msgstr "Afficher la progression dans la barre de tâches" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notifications :" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Toutes les boîtes de dialogues seront affichées à nouveau" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Activer tous les messages « Ne plus poser la question »" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Définit si la recherche doit se faire ou non à partir du bas" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Chercher en arrière" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Définit si la recherche doit tenir compte de la casse" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Sensible à la casse" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Processus et fenêtre :" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Mettre en valeur toutes les correspondances" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Chercher :" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" @@ -2706,11 +2771,68 @@ msgstr "" "ligne suivante" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Aucun retour à la ligne" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Activer les accélérateurs de menu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" +"Donner le focus aux terminaux lors du déplacement du pointeur de souris au-" +"dessus" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Toutes les boites de dialogues seront affichées à nouveau" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Activer tous les messages « Ne plus poser la question »" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Afficher le titre de la fenêtre dans la barre de titre" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" +"Activer les parties de l'API « D-Bus » de confidentialité pour la sécurité" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Enlever la barre de titre et les bordures" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Correspondance utilisant les expressions rationnelles" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2739,65 +2861,109 @@ msgstr "Utiliser la taille de la fenêtre actuelle au prochain démarrage" msgid "The window size will be saved upon exiting Konsole" msgstr "La taille de la fenêtre sera enregistrée à la fermeture de Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Durant le démarrage de Konsole, créer un nouvel onglet plutôt que d'une " +"nouvelle fenêtre, si possible" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Afficher la progression dans la barre de tâches" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Lorsqu'un script indique son avancement, ce dernier sera affiché dans la " +"barre de tâches" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "L'API « D-Bus » comme « runCommand » sera activée." + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Se mettre à l'écoute des codes de terminal « ZModem »" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" +"Envoyer / Recevoir automatiquement des fichiers sur des connexions en mode " +"série" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Largeur de la vignette" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Définit la largeur de la vignette" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Utiliser la touche « Maj » pour afficher une vignette" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Utiliser la touche « ALT » pour afficher une vignette" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Utiliser la touche « CTRL » pour afficher une vignette" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "La recherche tient compte de la casse" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Surligner toutes les correspondances de recherche" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Définit si le texte en correspondance doit être surligné" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "La recherche se termine plutôt que de continuer sur la ligne suivante." #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" @@ -2805,7 +2971,7 @@ msgstr "" "individuelle" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2815,80 +2981,88 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Contrôler la visibilité de la totalité de la barre des onglets" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Contrôler la taille des poignées entre les panneaux" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Contrôler la position de la barre des onglets" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Contrôler l'apparence visuelle de la barre des onglets" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Utiliser un fichier .css personnalisé pour la barre des onglets" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Le fichier .css à utiliser pour le style de la barre des onglets" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Cliquer avec le bouton central sur un onglet pour le fermer" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" "Contrôler la visibilité du bouton « Nouvel onglet » de la barre des onglets" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Contrôler la visibilité du bouton « Rechercher des onglets » de la barre des " +"onglets" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Contrôler la position de l'affichage du bouton « Fermer l'onglet »" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Contrôler où mettre un nouvel onglet" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Agrandir la largeur des onglets" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Pour les fichiers d'historique, utiliser l'emplacement global système" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2896,13 +3070,13 @@ msgstr "" "l'utilisateur" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Pour les fichiers d'historique, utiliser l'emplacement spécifié" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Pour les fichiers d'historique, utiliser ce dossier" @@ -2914,36 +3088,32 @@ msgid "Enable memory monitoring:" msgstr "Activer la surveillance de la mémoire :" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Les modifications prendront effet au redémarrage. Si cette option est " -"activée, la consommation de mémoire prise en\n" -" compte par Konsole dépassant la valeur spécifiée conduira le module " -"« systemd-oomd » a fermé les onglets\n" +"activée, la consommation de mémoire prise en compte par Konsole dépassant la " +"valeur spécifiée conduira le module « systemd-oomd » a fermé les onglets " "contenant le ou les processus(s) nécessitant beaucoup de mémoire. Remarque : " -"activation de cette option\n" -"peut provoquer des ralentissements plus importants lors d'une consommation " -"de mémoire élevée et la définition\n" -" de valeurs excessivement basses pourraient ensuite provoquer la fermeture " -"de Konsole." +"l'activation de cette option peut provoquer des ralentissements plus " +"importants lors d'une consommation de mémoire élevée et la définition de " +"valeurs excessivement basses pourraient ensuite provoquer la fermeture de " +"Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Limite de mémoire :" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " Mo" @@ -3106,125 +3276,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Aucun" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Afficher le bouton « Rechercher des onglets » :" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Toujours" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Jamais" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Divers :" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Afficher le bouton « Nouvel onglet »" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Augmenter la largeur de chaque tabulation à la largeur de la fenêtre" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Utiliser un style personnalisé :" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(aucun)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportement" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Mettre les nouveaux onglets :" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "À la &fin" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Après l'onglet ac&tuel" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Fermer l'onglet lors d'un clic central" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Séparateurs" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Afficher l'en-tête :" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Si nécessaire" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Jamais" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Taille des poignées de glisser :" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Petit" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Moyen" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grand" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3276,13 +3464,12 @@ msgstr "px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" -"\"\"\"

          Pour utiliser cette fonctionnalité, veuillez " -"activer l'option Souris->Divers->" -"Souligner les fichiers dans " -"les paramètres de votre profil

          \"\"\"" +"

          Pour utiliser cette fonctionnalité, veuillez activer " +"l'option Souris / Divers / Souligner les " +"fichiers dans les paramètres de votre profil

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3320,65 +3507,65 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Activer la génération des vignettes" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Taille : %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Voulez-vous vraiment coller %1 caractère ? " msgstr[1] "Voulez-vous vraiment coller %1 caractères ? " -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirmer le collage" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Fin de texte / Interruption : peut fermer le processus actuel" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Fin de transmission : peut fermer le processus actuel" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Cloche : essaie d'émettre un avertissement audible" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Retour arrière" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Contrôle de périphérique « Trois / XOFF » : suspend la sortie" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substituer /Suspendre : peut suspendre le processus actuel" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Échap : utiliser pour manipuler l'état du terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" "Séparateur de fichiers / Quitter : peut interrompre le processus actuel" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3387,31 +3574,31 @@ msgstr "" "Le texte que vous essayez de coller contient des caractères de contrôle " "cachés. Voulez-vous les filtrer ?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirmer le collage" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Coller &sans les caractères de contrôle" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Coller &tout" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Annuler" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspendue par l'utilisation de « Ctrl+S ». Veuillez appuyer sur " "« Ctrl+Q » pour reprendre." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Ce terminal est en lecture seule." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Modifier le &dossier vers" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Coller l'emplacement" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Scinder la vue" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Scinder la vue gauche / droite" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Scinder la vue haut / bas" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Scinder automatiquement la vue" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Scinder la vue gauche / droite à partir du prochain onglet" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Scinder la vue haut / bas à partir du prochaine onglet" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Scinder automatiquement la vue à partir du prochain onglet" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Charger un nouvel onglet avec une disposition en 2 x 2 terminaux" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Charger un nouvel onglet avec une disposition en 2 x 1 terminaux" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Charger un nouvel onglet avec une disposition en 1 x 2 terminaux" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Étendre la vue" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Réduire la vue" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Détacher la vue actuelle" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Détacher l'ongle&t actuel" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Onglet suivant" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Onglet précédent" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Donner le focus au terminal du haut" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Donner le focus au terminal du bas" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Donner le focus au terminal de gauche" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Donner le focus au terminal de droite" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Donner le focus au terminal suivant" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Donner le focus au terminal précédent" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Passer au dernier onglet" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Derniers onglets utilisés" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Basculer entre deux onglets" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Derniers onglets utilisés (ordre inverse)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Maximiser / Réduire la vue actuelle" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Maximiser / Réduire la vue actuelle" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Basculer ou non la vue courante en taille maximale" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Basculer ou non la vue courante en taille maximale" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Déplacer l'onglet vers la droite" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Déplacer l'onglet vers la gauche" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Paramétrer l'intégration sémantique (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Basculer ou non l'affichage de astuces sémantiques" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Basculer ou non l'affichage des numéros de ligne" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Taille identique pour tous les affichages" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Passer à l'onglet %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Astuces sémantiques" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Numéros de lignes " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Enregistrer une disposition d'onglets" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Disposition de l'affichage de Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3679,7 +3878,7 @@ msgstr "" "Un problème est survenu durant l'enregistrement de la disposition.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3689,13 +3888,13 @@ msgstr "" "Un problème est survenu durant le chargement de la disposition.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Charger une disposition d'onglets" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3797,28 +3996,40 @@ msgstr "Encodage par défaut des caractères :" msgid "Shortcut for peeking the primary screen:" msgstr "Raccourci pour identifier l'écran primaire :" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Définir l'intervalle entre enregistrements automatiques :" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Numéros de lignes :" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Jamais" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Lorsque les conseils d'&URL s'affichent" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3854,7 +4065,7 @@ msgstr "Modifier le modèle de couleurs sélectionné" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3908,6 +4119,9 @@ msgstr "Afficher les couleurs intenses en gras" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Utiliser la police sélectionnée pour les caractères de ligne plutôt que le " @@ -3916,6 +4130,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Utiliser les caractères de lignes contenus dans la police" @@ -4038,29 +4255,43 @@ msgid "Make the cursor blink regularly" msgstr "Faire clignoter le curseur régulièrement" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Activé" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animation :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Animer le curseur de façon douce" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Divers" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Fenêtre :" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4070,144 +4301,144 @@ msgstr "" "fenêtre après un redimensionnement" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Afficher les conseils de taille de terminal après un redimensionnement" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Toujours inverser les couleurs du texte sélectionné" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Niveau d'assombrissement :" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Couleur : " #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Sélectionner la couleur utilisée pour dessiner la bordure" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminaux inactifs :" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminaux actifs :" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Contenus du terminal :" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Espacement des lignes :" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Le nombre de pixels entre deux lignes" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marges :" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Aligner au centre :" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indiquer si la fenêtre est active en atténuant les couleurs" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Assombrir" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indiquer si la fenêtre est active en dessinant une bordure" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Bordure" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Afficher une ligne verticale à la colonne :" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Disposition complexe de texte

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposition complexe de texte" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Activer le rendu de texte en mode « Mot »" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Mode « Mot »" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4217,25 +4448,25 @@ msgstr "" "changements d'attribut coupent le mot lors du rendu)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Utiliser les mêmes attributs que le mot entier" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Effectuer un rendu de mots incluant aussi des caractères « ASCII »" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caractères « ASCII »" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" @@ -4243,19 +4474,19 @@ msgstr "" "script" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Caractères « brahmi » de script" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Police pour émoticônes :" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4265,13 +4496,13 @@ msgstr "" "le perse et l'hébreu uniquement)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Affichage bi-directionnel du texte" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4279,83 +4510,83 @@ msgstr "" "déterminé par un premier caractère en majuscule." #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Forcer la direction de ligne de gauche à droite (LTR)" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Traiter les caractères de dessin de la table comme une LTR fort." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Annulation du mode « BiDi » de caractères de table" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorer « wcwidth » des caractères à problème" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Contourner « wcwidth »" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Modifier le profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Général" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Onglets" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Apparence" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Barre de défilement" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Clavier" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Combinaisons de touches" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Souris" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avancé" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4368,7 +4599,7 @@ msgstr "" "fichier, soit définir un nom différent pour enregistrer la configuration " "dans un nouveau profil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4376,19 +4607,19 @@ msgstr "" "Le nom du profil était vide. Veuillez définir un nom pour avoir la " "possibilité d'enregistrer les paramètres." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Un profil avec ce même nom « %1 » existe déjà." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Le nom du profil a dépassé la longueur maximale autorisée (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." @@ -4396,24 +4627,29 @@ msgstr "" "Les caractères mis en évidence sont non valables dans les noms de profils : " "%1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Modifier le profil « %2 »" msgstr[1] "Modifier les %1 profils : %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Créer un nouveau profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Modifier le profil « %1 »" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Aucun" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4423,7 +4659,7 @@ msgid_plural " columns" msgstr[0] " colonne" msgstr[1] " colonnes" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4433,42 +4669,42 @@ msgid_plural " rows" msgstr[0] " ligne" msgstr[1] " lignes" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Cloche du système" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notifications du système" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Cloche visuelle" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorer les évènements de la cloche du système" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Profil par défaut pour les nouvelles sessions de terminal dans %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Modifier l'environnement" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Une variable d'environnement par ligne" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4476,23 +4712,23 @@ msgid_plural " seconds" msgstr[0] " seconde" msgstr[1] " secondes" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Sélectionner le dossier initial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "En obtenir d'autres..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Impossible de charger le modèle %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4501,7 +4737,7 @@ msgstr "" "Ce modèle de couleurs possède un arrière-plan transparent qui ne semble pas " "être géré par votre bureau." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4510,12 +4746,12 @@ msgstr "" "Konsole a été démarré avant que les effets de bureau soient actifs. Vous " "devez redémarrer Konsole pour utiliser l'arrière-plan transparent." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Application par défaut pour ce type de fichier" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4546,7 +4782,7 @@ msgstr "" "sera ignoré et le fichier sera ouvert avec l'éditeur de texte\n" "par défaut." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Commande pour la personnalisation de l'éditeur de texte" @@ -4637,27 +4873,59 @@ msgstr "Sélectionner le dossier initial" msgid "Start in same directory as current session" msgstr "Démarrer dans le même dossier que la session actuelle" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Lors de l'ouverture d'un nouvel onglet ou d'une division, veuillez saisir " +"automatiquement le même conteneur (Toolbox, Distrobox) que la session en " +"cours" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Saisir le même conteneur que la session courante" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Toujours commencer dans le conteneur :" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Toujours commencer de nouvelles sessions en utilisant ce profil dans le " +"conteneur sélectionné" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Environnement :" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" "Modifier la liste des variables d'environnement et leurs valeurs associées" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Taille initiale du termina&l :" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4670,31 +4938,31 @@ msgstr "" "être désactivé pour que ces options fonctionnent.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Mode de cloche de &terminal : " #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Interaction sémantique" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Émulation des flèches vers le haut et vers le bas" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Un clic de souris dans la ligne de saisie déplace le curseur" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Astuces sémantiques :" @@ -4704,9 +4972,9 @@ msgstr "Astuces sémantiques :" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4717,9 +4985,9 @@ msgstr "Jamais" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4730,34 +4998,34 @@ msgstr "Lorsque les indications d'URL affichent" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Toujours" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barres rouges d'erreurs :" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Arrière-plan rouge d'erreurs :" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barres alternatives :" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Arrière-plan alternatif :" @@ -5133,119 +5401,131 @@ msgid "Scrollback:" msgstr "Historique :" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Monter/descendre d'une page :" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Faire défiler la page d'une demi-hauteur de la fenêtre" +msgid "Highlight the lines coming into view" +msgstr "Mettre en valeur les nouvelles lignes de l'affichage" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" -msgstr "Demi-hau&teur d'écran" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Faire défiler la page d'un hauteur complète de la fenêtre" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "Ha&uteur totale de l'écran" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Position de la barre de défilement :" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "" -"Afficher la barre de défilement sur le côté droit de la fenêtre de terminal" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, kde-format -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Côté &droit" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "" -"Afficher la barre de défilement sur le côté gauche de la fenêtre de terminal" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, kde-format -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Côté &gauche" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Caché" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Mise en évidence :" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Mettre en valeur les nouvelles lignes de l'affichage" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Reformater les lignes :" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "Reformater les lignes quand le terminal change de taille" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "Couleur des marqueurs de la barre de défilement :" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" "Taille de chaque marqueur (En pourcentage de la longueur de la barre de " "défilement) :" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Mise en évidence :" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "Faire défiler la page d'une demi-hauteur de la fenêtre" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "Demi-hau&teur d'écran" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Couleur des marqueurs de la barre de défilement :" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Couleur des lignes de surbrillance de la barre de défilement :" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Reformater les lignes :" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Faire défiler la page d'un hauteur complète de la fenêtre" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "Ha&uteur totale de l'écran" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "" +"Afficher la barre de défilement sur le côté droit de la fenêtre de terminal" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Côté &droit" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "" +"Afficher la barre de défilement sur le côté gauche de la fenêtre de terminal" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Côté &gauche" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "Reformater les lignes quand le terminal change de taille" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "Position de la barre de défilement :" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" +msgstr "Opacité de la ligne de surbrillance de la recherche :" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5353,38 +5633,38 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "Aucu&n" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Chercher..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Saisissez le texte à chercher ici" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Suivant" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" "Trouver la prochaine correspondance pour la phrase actuellement recherchée" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Précédent" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5393,65 +5673,65 @@ msgstr "" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Afficher le menu des options" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Fermer la barre de recherche" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Sensible à la casse" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Définit si la recherche doit tenir compte de la casse" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Afficher le menu des options" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Fermer la barre de recherche" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Correspond à une expression rationnelle" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Mettre en valeur toutes les correspondances" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Définit si le texte en correspondance doit être mis en évidence" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Chercher en arrière" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Définit si la recherche doit se faire ou non à partir du bas" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Aucun retour à la ligne" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" @@ -5459,13 +5739,13 @@ msgstr "" "Définit si la recherche doit se terminer plutôt que de continuer sur la " "ligne suivante" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Recherchez la phrase actuelle de recherche à partir du bas" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5476,7 +5756,7 @@ msgstr "Recherchez la phrase actuelle de recherche à partir du haut" msgid "Print Shell" msgstr "Imprimer le terminal" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5516,6 +5796,12 @@ msgstr "Format du titre d'un onglet normal" msgid "Tab Co&lor:" msgstr "Cou&leur de l'onglet : " +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Couleur de l'onglet de l'&activité : " + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5609,36 +5895,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restaurer le terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Ouvrir un nouvel onglet" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Rechercher des onglets" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Fermer cet onglet" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Détacher l'onglet" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configurer ou renommer l'onglet..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Fermer l'onglet" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox : %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Boîte à outils : %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "Les méthodes « sendText / runCommand » de « D-Bus » viennent juste d'être " +#~ "utilisées. Il y a des soucis de sécurité à autoriser ces méthodes à être " +#~ "publiques. Si vous le souhaitez, ces méthodes peuvent être changées pour " +#~ "un usage interne seulement en recompilant Konsole.

          Cet avertissement " +#~ "ne sera affiché qu'une seule fois pour cette instance de Konsole.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Sensible à la casse" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Aucune" diff --git a/local/recipes/kde/konsole/source/po/fy/konsole.po b/local/recipes/kde/konsole/source/po/fy/konsole.po index de6ee84b5e..d4c9eddb4f 100644 --- a/local/recipes/kde/konsole/source/po/fy/konsole.po +++ b/local/recipes/kde/konsole/source/po/fy/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2009-09-13 16:45+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frysk \n" @@ -52,7 +52,7 @@ msgstr "Werjefte" # msgid "Shrink Font" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Werjefte spjalte" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "Te&bekskowe" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number" msgid "Session Toolbar" @@ -182,22 +182,34 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" @@ -205,27 +217,27 @@ msgid "Disable transparent backgrounds, even if the system supports them." msgstr "TRochsichtige eftergrûnen útskeakelje, ek as it systeem har stipet." # msgid "List available session profiles" -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "List mei beskikbere profilen" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Feroarje de wearde fn in profyleigenskip" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -233,7 +245,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -242,14 +254,14 @@ msgid "" msgstr "" # msgid "Arguments for 'command'" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Arguminten trochstjoerd oan kommando" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -270,217 +282,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Foargrûn" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Eftergrûn" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Kleur 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Kleur 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Kleur 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Kleur 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Kleur 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Kleur 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Kleur 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Kleur 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Foargrûn (yntins)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Eftergrûn (yntins)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Kleur 1 (yntins)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Kleur 2 (yntins)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Kleur 3 (yntins)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Kleur 4 (yntins)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Kleur 5 (yntins)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Kleur 6 (yntins)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "kleur 7 (yntins)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Kleur 8 (yntins)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Foargrûn (yntins)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Eftergrûn (yntins)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Kleur 1 (yntins)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Kleur 2 (yntins)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Kleur 3 (yntins)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Kleur 4 (yntins)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Kleur 5 (yntins)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Kleur 6 (yntins)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "kleur 7 (yntins)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Kleur 8 (yntins)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -754,6 +766,41 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +# msgid "&Save as Default" +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "Ynstelle as standert" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -799,7 +846,7 @@ msgstr "" msgid "Copy Location" msgstr "Ynfier ferstjoere nei..." -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -832,14 +879,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Lettertype bewurkje..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Egale lettertypen" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -879,17 +926,17 @@ msgstr "Toets kombinaasje" msgid "Output" msgstr "Utfier" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nije list mei toetsbinings" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "List mei toetsbinings bewurkje" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -897,7 +944,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -931,7 +978,7 @@ msgstr "Ynfier:" msgid "Output:" msgstr "Utfier:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" @@ -939,20 +986,20 @@ msgid "Konsole" msgstr "Konsole" # msgid "&Close Terminal Emulator" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Terminal emulator" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" @@ -960,27 +1007,27 @@ msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" # msgid "bug fixing and improvements" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Brekreparaasjes en algemiene ferbetterings" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" @@ -988,127 +1035,127 @@ msgid "Lars Doelle" msgstr "Lars Doelle" # msgid "&Close Terminal Emulator" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Terminal emulator" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" # msgid "bug fixing and improvements" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Brekreparaasjes en algemiene ferbetterings" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" # msgid "bug fixing and improvements" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Brekreparaasjes en algemiene ferbetterings" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" # msgid "bug fixing and improvements" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Brekreparaasjes en algemiene ferbetterings" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" # msgid "bug fixing and improvements" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Brekreparaasjes en algemiene ferbetterings" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" @@ -1116,21 +1163,21 @@ msgid "Chris Machemer" msgstr "Chris Machemer" # msgid "bug fixing" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Brekreparaasjes" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" @@ -1138,28 +1185,28 @@ msgid "Stephan Kulow" msgstr "Stephan Kulow" # msgid "Solaris support and work on history" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris stipe en skiednis" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Brekreparaasjes en ferbettere starttiid" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" @@ -1167,14 +1214,14 @@ msgid "Peter Silva" msgstr "Peter Silva" # msgid "bug fixing and improvements" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "Markear ferbetterings" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" @@ -1184,7 +1231,7 @@ msgstr "Lotzi Boloni" # msgid "" # "partification\n # "Toolbar and session names" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1197,14 +1244,14 @@ msgstr "" "Ynsletten Konsole\n" "Arkbalke en sesjenammen" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1217,28 +1264,28 @@ msgstr "" "Ynsletten Konsole\n" "Algemiene ferbeterings" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Fisuele effekten" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1251,7 +1298,7 @@ msgstr "" "Koade fan it kvt-projekt\n" "Algemiene ferbetterings" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" @@ -1259,14 +1306,14 @@ msgid "Warwick Allison" msgstr "Warwick Allison" # msgid "schema and selection improvements" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "skema- en tekstseleksjeferbetterings" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" @@ -1274,56 +1321,56 @@ msgid "Dan Pilone" msgstr "Dan Pilone" # msgid "SGI Port" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-poarte" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-oerdracht" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" @@ -1331,75 +1378,75 @@ msgid "Thanks to many others.\n" msgstr "Mei tank oan in soad oaren.\n" # msgid "New " -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Nije &ljepper" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Ljepper s&lute" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nij &finster" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Blêdwizers" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nij kleurenskema" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profilen beheare" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" # msgid "&Move Session Left" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Finster nei lofts ferpleatse" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1414,14 +1461,14 @@ msgstr[1] "" "Jo hawwe yn dit finster meardere ljeppers iepenstean. Wolle jo dochs der " "útgean?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Slute befêstigje" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" @@ -1429,14 +1476,14 @@ msgid "Close &Window" msgstr "Konsole" # msgid "Close the current session" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Aktive ljepper slute" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1446,45 +1493,45 @@ msgstr "" "Jo hawwe yn dit finster meardere ljeppers iepenstean. Wolle jo dochs der " "útgean?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Nij profyl" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Algemien" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1576,7 +1623,7 @@ msgstr "Keppeling iepenje" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1588,29 +1635,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Kommando:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Kommando:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1654,7 +1701,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1715,11 +1762,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1782,24 +1829,24 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1807,71 +1854,71 @@ msgid "" msgstr "" # msgid "Word Connectors" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Eksterne ferbining" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Slút it rinnende sesje net automatysk as it einigd." # msgid "List available session profiles" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2082,25 +2129,25 @@ msgstr "Utfier" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2165,17 +2212,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Utfier fan %1 bewarje" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 is in ûnjildich URL-adres, de utfier kin net bewarre wurde." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2213,87 +2281,106 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Dûnkere pastelkleuren" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Grien op swart" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-kleuren" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Wyt op swart" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Wyt op swart" # msgid "XTerm (XFree 4.x.x)" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standert (XFree 4)" # msgid "linux console" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "linux-konsole" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" # msgid "linux console" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-konsole" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Utfier trochsykje..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Fier hjir de tekst yn wêr jo om sykje wolle" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Belle yn sesje '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Koe binary net fine." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Warskôging:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Koe gjin ynteraktive shell fine om te starten." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2302,378 +2389,386 @@ msgstr "" "Koe '%1' net dine, begjin ynstee dêrfan mei '%2'. Kontrolearje jo profyl " "ynstellings." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Koe programma '%1' net starte mei de arguminten '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Stilte yn sesje '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Foltôge" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programma '%1' ferûngelokke." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programma '%1' is der útgong mei tastân %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-fuortgong" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktiviteit yn sesje '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" # msgid "Save Sessions &Profile..." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Profilen beheare..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" # msgid "&Top" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Kopiearje" # msgid "M&ove Session Right" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Finster rjochts/lofts spjalte" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Finster boppe/ûnder spjalte" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Ynfier kopiearje" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Ynfier kopiearje" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Seleksje plakke" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" # msgid "Se&lect..." -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Alles selektearje" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Selektearje" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Selektearje" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "Utfier bewarje..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "Utfier bewarje..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" # msgid "Save Sessions &Profile..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Profilen beheare..." # msgid "Sc&rollbar" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Tebekskowe opskjinje" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "Tebekskowe opskjinje en weromsette" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Profyl bewurkje" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Foarige finster" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Profyl bewurkje" # msgid "&Encoding" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Kodearring" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" # msgid "&Rename Session..." -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "L&jepper omneame" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" # msgid "&Rename Session..." -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "L&jepper omneame" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Copy Input To..." msgid "Copy Input To" msgstr "Ynfier ferstjoere nei..." -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Sneupe nei &aktiviteit" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Sneupe nei &aktiviteit" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Sneupe nei &stilte" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Sneupe nei &aktiviteit" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" # msgid "Shrink Font" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "Finster ferlytsje" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Tekst fergrutsje" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "Ljepper s&lute" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" # msgid "&Terminate Task" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Terminal funskjes" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" # msgid "Save Sessions &Profile..." -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Nij profyl..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Aktyf profyl bewurkje..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2682,7 +2777,7 @@ msgstr "" "In programma rint op it stuit yn dizze sesje. Binne jo wis dat jo it slúte " "wolle" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2691,19 +2786,19 @@ msgstr "" "It programma '%1' rint op it stuit yn dizze sesje. Binne jo wis dat jo it " "slute wolle?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Slute befêstigje" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "Ljepper s&lute" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2715,40 +2810,40 @@ msgstr "" "In programma rint op it stuit yn dizze sesje. Binne jo wis dat jo it slúte " "wolle" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "It programma '%1' rint op it stuit yn dizze sesje. Binne jo wis dat jo it " "slute wolle?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2756,20 +2851,20 @@ msgid "" "or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2795,79 +2890,75 @@ msgctxt "@title:window" msgid "Configure" msgstr "Slute befêstigje" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -# msgid "As ®ular expression" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Oerienkomme mei reguliere ekspresje" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Alles markearje" +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Nije ljeppertekst:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Sets whether the search is case sensitive" @@ -2877,72 +2968,103 @@ msgstr "" # msgid "C&lose Session" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" msgid "Case sensitive" msgstr "Aktive slúte" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, kde-format -msgid "Notifications:" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Alles markearje" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 #, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" +msgctxt "@item:intext Search options" +msgid "Search:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Gean nei de folgjende oerienkomst op it aktive sykterm" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +# msgid "As ®ular expression" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Oerienkomme mei reguliere ekspresje" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2967,41 +3089,79 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" @@ -3010,33 +3170,33 @@ msgstr "" "lytse letters." #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Alles markearje" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Beskiede of oerienkommende tekst markearre wurde moat" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -3044,92 +3204,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Brûk in oanpaste fêste kleur foar it rinnerke" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3142,26 +3308,24 @@ msgid "Enable memory monitoring:" msgstr "Bi-Directional teksttekenjen ynskeakelje" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3334,16 +3498,35 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "Ljepper s&lute" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" @@ -3351,96 +3534,96 @@ msgstr "" "De knoppen 'Nije ljepper' en 'Ljepper slute' sjen litte yn de ljepbalke" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "Brûk in oanpaste fêste kleur foar it rinnerke" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Nije ljeppertekst:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" # msgid "Close the current session" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Aktive ljepper slute" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" # msgid "Shrink Font" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Werjefte spjalte" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Menubalke sjen litte" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3448,14 +3631,14 @@ msgid "Small" msgstr "Lyts" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3463,7 +3646,7 @@ msgid "Large" msgstr "Grut" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3516,8 +3699,8 @@ msgstr "" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3557,99 +3740,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Grutte: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Slute befêstigje" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Slute befêstigje" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Rinnerke hat deselde kleur as it aktive teken" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Seleksje plakke" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been stilsetten troch it drukken op Ctrl+S. Druk op Ctrl+Q om te " "ferfetsjen." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Seleksje plakke" # msgid "Shrink Font" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" @@ -3688,19 +3871,19 @@ msgid "Split View" msgstr "Werjefte spjalte" # msgid "M&ove Session Right" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Finster rjochts/lofts spjalte" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Finster boppe/ûnder spjalte" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3709,7 +3892,7 @@ msgid "Split View Automatically" msgstr "Finster boppe/ûnder spjalte" # msgid "M&ove Session Right" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3717,7 +3900,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Finster rjochts/lofts spjalte" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3725,7 +3908,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Finster boppe/ûnder spjalte" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3733,39 +3916,39 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Finster boppe/ûnder spjalte" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Finster útwreidzje" # msgid "Shrink Font" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Finster ferlytsje" # msgid "Close the current session" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" @@ -3773,7 +3956,7 @@ msgid "Detach Current &View" msgstr "Aktive ljepper slute" # msgid "Close the current session" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" @@ -3781,7 +3964,7 @@ msgid "Detach Current &Tab" msgstr "Aktive ljepper slute" # msgid "New " -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" @@ -3789,90 +3972,104 @@ msgid "Next Tab" msgstr "Nije &ljepper" # msgid "Find Pre&vious" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Foarige" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Boppe terminal werjeften" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Under terminal werjeften" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Boppe terminal werjeften" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Under terminal werjeften" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Wikselje nei ljepper %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" # msgid "M&ove Session Right" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" @@ -3880,72 +4077,72 @@ msgid "Move tab to the right" msgstr "Finster nei rjochts ferpleatse" # msgid "&Move Session Left" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Finster nei lofts ferpleatse" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Wikselje nei ljepper %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Mûs ynteraksje" # msgid "&Number of lines: " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Fêst oantal rigels: " # msgid "&Move Session Left" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Finster nei lofts ferpleatse" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3958,7 +4155,7 @@ msgstr "" "Der barde swierrigens ûnder it bewarjen fan de útfier.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3971,13 +4168,13 @@ msgstr "" "Der barde swierrigens ûnder it bewarjen fan de útfier.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -4081,30 +4278,42 @@ msgstr "Standert tekensetkodearring:" msgid "Shortcut for peeking the primary screen:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + # msgid "&Number of lines: " #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Fêst oantal rigels: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4144,7 +4353,7 @@ msgstr "It selektearre kleurenskema bewurkje" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4202,12 +4411,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4342,30 +4557,46 @@ msgid "Make the cursor blink regularly" msgstr "Lit it rinnerke mei regelmaat knipperje" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "Beskriuwing:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Lit it rinnerke mei regelmaat knipperje" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Finster" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4373,25 +4604,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4399,7 +4630,7 @@ msgid "Color:" msgstr "Kleur" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" @@ -4407,7 +4638,7 @@ msgstr "Selektearje de kleur dy brûkt wurdt foar it rinnerke" # msgid "&Terminate Task" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" @@ -4415,7 +4646,7 @@ msgstr "Terminal funskjes" # msgid "&Terminate Task" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" @@ -4423,7 +4654,7 @@ msgstr "Terminal funskjes" # msgid "&Terminate Task" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4431,95 +4662,95 @@ msgid "Terminal contents" msgstr "Terminal funskjes" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Bi-Directional teksttekenjen ynskeakelje" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4527,45 +4758,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Rinnerke hat deselde kleur as it aktive teken" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Lettertype" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4575,101 +4806,101 @@ msgstr "" "Farsyske en hebriuwsk allinne)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Bi-Directional teksttekenjen ynskeakelje" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Rinnerke hat deselde kleur as it aktive teken" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profyl bewurkje" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Algemien" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Ljeppers" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Uterlik" # msgid "Sc&rollbar" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Skowe" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Toetsebinings" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avansearre" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4678,31 +4909,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4710,18 +4941,23 @@ msgstr[0] "Bewurkje profyl: %2" msgstr[1] "Bewurkje %1 profilen: %2" # msgid "Save Sessions &Profile..." -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Nij profyl..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Profyl \"%1\" bewurkje" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4731,7 +4967,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4741,45 +4977,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "Seleksje plakke" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "Fisuele effekten" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Set it selektearre profyl as standert foar nije terminalsesjes" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Omjouwing bewurkje" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4787,25 +5023,25 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Begjintafel selektearje" # msgid "New " -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Nij..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4814,20 +5050,20 @@ msgstr "" "Dit kleurenskema hat in trochsichtich eftergrûn, mar dit wurdt net troch jo " "buroblêd stipe." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Profyl wiskje" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4844,7 +5080,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4940,28 +5176,56 @@ msgstr "Blêdzje nij begjintafel" msgid "Start in same directory as current session" msgstr "Start yn deselde triemtafel as de aktive ljepper" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Start yn deselde triemtafel as de aktive ljepper" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Omjouwing:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Bewurkje de list mei omjouwingsfariabelen en byhearrende wearden" # msgid "&Terminate Task" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Terminal funskjes" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4972,33 +5236,33 @@ msgstr "" # msgid "&Close Terminal Emulator" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Terminal emulator" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Mûs ynteraksje" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -5008,9 +5272,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -5021,9 +5285,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -5034,35 +5298,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Eftergrûn" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5427,51 +5691,94 @@ msgid "Scrollback:" msgstr "Te&bekskowe" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +# msgid "&Hide" +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Ferburgen" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -# msgid "Tab &Options" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Ljepbalke posysje:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Skowbalke rjochts yn it terminalfinster sjen litte" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5479,68 +5786,37 @@ msgid "Ri&ght side" msgstr "Oan rjochterkant sjen litte" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Skowbalke lofts yn it terminalfinster sjen litte" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Tekstgrutte:" -# msgid "&Hide" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Ferburgen" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +# msgid "Tab &Options" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Ljepbalke posysje:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5644,28 +5920,28 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Sykje:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Fier hjir de tekst yn wêr jo om sykje wolle" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Folgjende" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5673,43 +5949,30 @@ msgid "Find the next match for the current search phrase" msgstr "Gean nei de folgjende oerienkomst op it aktive sykterm" # msgid "Find Pre&vious" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Foarige" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Gean nei de foarige oerienkomst op it aktive sykterm" -#: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "De sykbalke slute" - # msgid "C&lose Session" -#: widgets/IncrementalSearchBar.cpp:119 +#: widgets/IncrementalSearchBar.cpp:102 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Aktive slúte" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" @@ -5718,62 +5981,75 @@ msgstr "" "Beskiede of der by it sykjen ûnderskied makke wurde moat tusken haad- en " "lytse letters." +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "De sykbalke slute" + # msgid "As ®ular expression" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Oerienkomme mei reguliere ekspresje" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Alles markearje" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Beskiede of oerienkommende tekst markearre wurde moat" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Gean nei de folgjende oerienkomst op it aktive sykterm" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Gean nei de folgjende oerienkomst op it aktive sykterm" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Gean nei de folgjende oerienkomst op it aktive sykterm" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Gean nei de folgjende oerienkomst op it aktive sykterm" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5787,7 +6063,7 @@ msgstr "Gean nei de folgjende oerienkomst op it aktive sykterm" msgid "Print Shell" msgstr "Flues" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5829,6 +6105,13 @@ msgstr "Opmaak normale ljeppertitels" msgid "Tab Co&lor:" msgstr "Kleur" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Kleur" + # msgctxt "NAME OF TRANSLATORS" # msgid "Your names" #: widgets/TabTitleFormatButton.cpp:21 @@ -5951,14 +6234,22 @@ msgid "Restore terminal" msgstr "Ljepper s&lute" # msgid "&Detach Session" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Finster los&meitsje" -#: widgets/ViewContainer.cpp:61 +# msgid "&Detach Session" +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Finster los&meitsje" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" @@ -5966,7 +6257,7 @@ msgid "Close this tab" msgstr "De sykbalke slute" # msgid "&Detach Session" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" @@ -5974,20 +6265,28 @@ msgid "&Detach Tab" msgstr "Finster los&meitsje" # msgid "&Rename Session..." -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "L&jepper omneame" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Ljepper s&lute" +# msgid "C&lose Session" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Aktive slúte" + #, fuzzy #~| msgid "Open Link" #~ msgctxt "@title:window" @@ -6442,9 +6741,6 @@ msgstr "Ljepper s&lute" #~ msgid "Decrease Text Size" #~ msgstr "Tekst ferlystje" -#~ msgid "Search Output..." -#~ msgstr "Utfier trochsykje..." - # msgid "Find" #~ msgid "Find Next" #~ msgstr "Folgjende sykje" diff --git a/local/recipes/kde/konsole/source/po/ga/konsole.po b/local/recipes/kde/konsole/source/po/ga/konsole.po index bc94f9be15..63ff559ef2 100644 --- a/local/recipes/kde/konsole/source/po/ga/konsole.po +++ b/local/recipes/kde/konsole/source/po/ga/konsole.po @@ -2,19 +2,19 @@ # Copyright (C) 2002 Free Software Foundation, Inc. # Séamus Ó Ciardhuáin , 2002 # Kevin Scannell , 2009 +# SPDX-FileCopyrightText: 2025 Charlotte msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2004-12-03 14:52-0500\n" -"Last-Translator: Kevin Scannell \n" -"Language-Team: Irish \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2025-12-19 17:46+0000\n" +"Last-Translator: Charlotte \n" +"Language-Team: Irish \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.0beta1\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" @@ -50,7 +50,7 @@ msgstr "Amharc" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Amharc Roinnte" @@ -65,7 +65,7 @@ msgstr "Socruithe" #: ../desktop/konsoleui.rc:54 #, kde-format msgid "Plugins" -msgstr "" +msgstr "Breiseáin" #. i18n: ectx: Menu (help) #: ../desktop/konsoleui.rc:57 @@ -77,7 +77,7 @@ msgstr "Cabhair" #: ../desktop/konsoleui.rc:61 #, kde-format msgid "Main Toolbar" -msgstr "" +msgstr "Príomhbharra Uirlisí" #. i18n: ectx: Menu (history) #: ../desktop/partui.rc:20 @@ -86,11 +86,10 @@ msgid "S&crollback" msgstr "Iars&crollú" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 -#, fuzzy, kde-format -#| msgid "Session" +#: ../desktop/sessionui.rc:80 +#, kde-format msgid "Session Toolbar" -msgstr "Seisiún" +msgstr "Barra Uirlisí Seisiúin" #: Application.cpp:53 #, kde-format @@ -99,157 +98,163 @@ msgid "Name of profile to use for new Konsole instance" msgstr "Ainm na próifíle le húsáid i bhfuinneog nua Konsole" #: Application.cpp:54 -#, fuzzy, kde-format -#| msgctxt "@info:shell" -#| msgid "Name of profile to use for new Konsole instance" +#, kde-format msgctxt "@info:shell" msgid "json layoutfile to be loaded to use for new Konsole instance" -msgstr "Ainm na próifíle le húsáid i bhfuinneog nua Konsole" +msgstr "comhad leagan amach json le luchtú le húsáid don chás nua Konsole" #: Application.cpp:55 -#, fuzzy, kde-format -#| msgid "Create a new profile based upon the selected profile" +#, kde-format msgctxt "@info:shell" msgid "Use the built-in profile instead of the default profile" -msgstr "Cruthaigh próifíl nua bunaithe ar an bpróifíl roghnaithe" +msgstr "Úsáid an phróifíl ionsuite in ionad an phróifíl réamhshocraithe" #: Application.cpp:56 -#, fuzzy, kde-format -#| msgid "Set the initial working directory of the new tab or window to 'dir'" +#, kde-format msgctxt "@info:shell" msgid "Set the initial working directory of the new tab or window to 'dir'" msgstr "" -"Socraigh an chéad chomhadlann oibre sa chluaisín nó fuinneog nua go 'dir'" +"Socraigh an chéad eolaire oibre den chluaisín nó den fhuinneog nua go 'dir'" #: Application.cpp:57 -#, fuzzy, kde-format -#| msgid "Do not close the initial session automatically when it ends." +#, kde-format msgctxt "@info:shell" msgid "Do not close the initial session automatically when it ends." -msgstr "Ná dún an bunseisiún go huathoibríoch nuair a thagann sé chun deiridh." +msgstr "Ná dún an seisiún tosaigh go huathoibríoch nuair a chríochnaíonn sé." #: Application.cpp:61 -#, fuzzy, kde-format -#| msgid "" -#| "Create a new tab in an existing window rather than creating a new window" +#, kde-format msgctxt "@info:shell" msgid "" "Create a new tab in an existing window rather than creating a new window " "('Run all Konsole windows in a single process' must be enabled)" msgstr "" -"Cruthaigh cluaisín nua i bhfuinneog atá ann in ionad fuinneog nua a chruthú" +"Cruthaigh cluaisín nua i bhfuinneog atá ann cheana féin seachas fuinneog nua " +"a chruthú (ní mór 'Rith gach fuinneog Konsole i bpróiseas amháin' a bheith " +"cumasaithe)" #: Application.cpp:62 #, kde-format msgctxt "@info:shell" msgid "Create tabs as specified in given tabs configuration file" msgstr "" +"Cruthaigh cluaisíní mar atá sonraithe sa chomhad cumraíochta cluaisíní tugtha" #: Application.cpp:64 -#, fuzzy, kde-format -#| msgid "" -#| "Start Konsole in the background and bring to the front when Ctrl+Shift" -#| "+F12 (by default) is pressed" +#, kde-format msgctxt "@info:shell" msgid "" "Start Konsole in the background and bring to the front when Ctrl+Shift+F12 " "(by default) is pressed" msgstr "" -"Tosaigh Konsole sa chúlra agus tabhair é chun tosaigh nuair a bhrúitear Ctrl" +"Tosaigh Konsole sa chúlra agus tabhair chun tosaigh é nuair a bhrúitear Ctrl" "+Shift+F12 (de réir réamhshocraithe)" #: Application.cpp:65 #, kde-format msgctxt "@info:shell" msgid "Run in a separate process" -msgstr "" +msgstr "Rith i bpróiseas ar leithligh" #: Application.cpp:66 #, kde-format msgctxt "@info:shell" msgid "Show the menubar, overriding the default setting" -msgstr "" +msgstr "Taispeáin an barra roghchláir, ag sárú an socraithe réamhshocraithe" #: Application.cpp:67 #, kde-format msgctxt "@info:shell" msgid "Hide the menubar, overriding the default setting" -msgstr "" +msgstr "Folaigh an barra roghchláir, ag sárú an socraithe réamhshocraithe" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" -msgstr "" +msgid "Show the tabbar, overriding the default setting" +msgstr "Taispeáin an barra cluaisíní, ag sárú an socraithe réamhshocraithe" #: Application.cpp:71 -#, fuzzy, kde-format -#| msgid "Disable transparent backgrounds, even if the system supports them." +#, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." -msgstr "Díchumasaigh cúlraí trédhearcacha, fiú má thacaíonn an córas leo." +msgid "Hide the tabbar, overriding the default setting" +msgstr "Folaigh an barra cluaisíní, ag sárú an socraithe réamhshocraithe" #: Application.cpp:72 -#, fuzzy, kde-format -#| msgid "List the available profiles" +#, kde-format msgctxt "@info:shell" -msgid "List the available profiles" -msgstr "Taispeáin na próifílí atá ar fáil" +msgid "Start Konsole in fullscreen mode" +msgstr "Tosaigh Konsole i mód lánscáileáin" #: Application.cpp:73 #, kde-format msgctxt "@info:shell" -msgid "List all the profile properties names and their type (for use with -p)" -msgstr "" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "Díchumasaigh cúlraí trédhearcacha, fiú má thacaíonn an córas leo." #: Application.cpp:74 -#, fuzzy, kde-format -#| msgid "Change the value of a profile property." +#, kde-format msgctxt "@info:shell" -msgid "Change the value of a profile property." -msgstr "Athraigh luach d'airí próifíle." +msgid "List the available profiles" +msgstr "Liostaigh na próifílí atá ar fáil" + +#: Application.cpp:75 +#, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" +msgstr "" +"Liostaigh ainmneacha na n-airíonna próifíle go léir agus a gcineál (le " +"húsáid le -p)" #: Application.cpp:76 #, kde-format msgctxt "@info:shell" +msgid "Change the value of a profile property." +msgstr "Athraigh luach airí próifíle." + +#: Application.cpp:78 +#, kde-format +msgctxt "@info:shell" msgid "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." msgstr "" +"Ordú le forghníomhú. Gabhfaidh an rogha seo na hargóintí seo a leanas go " +"léir, mar sin bain úsáid as mar an rogha dheireanach." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" "Force re-using the existing instance even if it breaks functionality, e. g. " "--new-tab. Mostly for debugging." msgstr "" +"Athúsáid fhorleathan a dhéanamh ar an gcás atá ann cheana fiú má bhriseann " +"sé feidhmiúlacht, e.g. --new-tab. Den chuid is mó le haghaidh dífhabhtaithe." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argóintí a sheoltar chuig ordú" -#: Application.cpp:516 -#, fuzzy, kde-format -#| msgctxt "@item:intable palette" -#| msgid "Background (Intense)" +#: Application.cpp:546 +#, kde-format msgctxt "@item" msgid "Toggle Background Window" -msgstr "Cúlra (Tréan)" +msgstr "Fuinneog an Chúlra a Athrú" #: BookmarkHandler.cpp:107 #, kde-format @@ -263,192 +268,161 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Tulra" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Cúlra" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Dath 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Dath 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Dath 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Dath 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Dath 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Dath 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Dath 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Dath 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Tulra (Tréan)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Cúlra (Tréan)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Dath 1 (Tréan)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Dath 2 (Tréan)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Dath 3 (Tréan)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Dath 4 (Tréan)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Dath 5 (Tréan)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Dath 6 (Tréan)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Dath 7 (Tréan)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Dath 8 (Tréan)" -#: colorscheme/ColorScheme.cpp:143 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Foreground (Intense)" +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" -msgstr "Tulra (Tréan)" - -#: colorscheme/ColorScheme.cpp:144 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Background (Intense)" -msgctxt "@item:intable palette" -msgid "Background (Faint)" -msgstr "Cúlra (Tréan)" +msgstr "Túlra (Lagánta)" #: colorscheme/ColorScheme.cpp:145 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" -msgid "Color 1 (Faint)" -msgstr "Dath 1 (Tréan)" +msgid "Background (Faint)" +msgstr "Cúlra (Lagánta)" #: colorscheme/ColorScheme.cpp:146 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" -msgid "Color 2 (Faint)" -msgstr "Dath 2 (Tréan)" +msgid "Color 1 (Faint)" +msgstr "Dath 1 (Lagánta)" #: colorscheme/ColorScheme.cpp:147 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" -msgid "Color 3 (Faint)" -msgstr "Dath 3 (Tréan)" +msgid "Color 2 (Faint)" +msgstr "Dath 2 (Lagánta)" #: colorscheme/ColorScheme.cpp:148 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" -msgid "Color 4 (Faint)" -msgstr "Dath 4 (Tréan)" +msgid "Color 3 (Faint)" +msgstr "Dath 3 (Lagánta)" #: colorscheme/ColorScheme.cpp:149 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" -msgid "Color 5 (Faint)" -msgstr "Dath 5 (Tréan)" +msgid "Color 4 (Faint)" +msgstr "Dath 4 (Lagánta)" #: colorscheme/ColorScheme.cpp:150 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" -msgid "Color 6 (Faint)" -msgstr "Dath 6 (Tréan)" +msgid "Color 5 (Faint)" +msgstr "Dath 5 (Lagánta)" #: colorscheme/ColorScheme.cpp:151 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" -msgid "Color 7 (Faint)" -msgstr "Dath 7 (Tréan)" +msgid "Color 6 (Faint)" +msgstr "Dath 6 (Lagánta)" #: colorscheme/ColorScheme.cpp:152 -#, fuzzy -#| msgctxt "@item:intable palette" -#| msgid "Color 8 (Intense)" +msgctxt "@item:intable palette" +msgid "Color 7 (Faint)" +msgstr "Dath 7 (Lagánta)" + +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" -msgstr "Dath 8 (Tréan)" +msgstr "Dath 9 (Lagánta)" -#: colorscheme/ColorScheme.cpp:451 -#, fuzzy, kde-format -#| msgid "Un-named Color Scheme" +#: colorscheme/ColorScheme.cpp:452 +#, kde-format msgctxt "@item" msgid "Un-named Color Scheme" -msgstr "Scéim Datha Gan Ainm" +msgstr "Scéim Dathanna Gan Ainm" #: colorscheme/ColorSchemeEditor.cpp:110 #, kde-format @@ -466,14 +440,13 @@ msgstr "Dath" #, kde-format msgctxt "@label:listbox Column header text for the actual intense colors" msgid "Intense color" -msgstr "" +msgstr "Dath dian" #: colorscheme/ColorSchemeEditor.cpp:112 -#, fuzzy, kde-format -#| msgid "Linux Colors" +#, kde-format msgctxt "@label:listbox Column header text for the actual faint colors" msgid "Faint color" -msgstr "Dathanna Linux" +msgstr "Dath lag" #: colorscheme/ColorSchemeEditor.cpp:137 #, kde-format @@ -489,46 +462,43 @@ msgstr "" #, kde-format msgctxt "@title:window" msgid "Select wallpaper image file" -msgstr "" +msgstr "Roghnaigh comhad íomhá cúlbhrat" #: colorscheme/ColorSchemeEditor.cpp:190 #, kde-format msgctxt "@label:textbox Filter in file open dialog" msgid "Supported Images" -msgstr "" +msgstr "Íomhánna Tacaithe" #: colorscheme/ColorSchemeEditor.cpp:334 -#, fuzzy, kde-format -#| msgid "New Color Scheme" +#, kde-format msgctxt "@title:window" msgid "New Color Scheme" -msgstr "Scéim Nua Dathanna" +msgstr "Scéim Dathanna Nua" #: colorscheme/ColorSchemeEditor.cpp:337 -#, fuzzy, kde-format -#| msgid "Edit Color Scheme" +#, kde-format msgctxt "@title:window" msgid "Edit Color Scheme" -msgstr "Cuir an Scéim Datha in Eagar" +msgstr "Cuir Scéim Dathanna in Eagar" #: colorscheme/ColorSchemeEditor.cpp:383 #, kde-format msgctxt "@info:tooltip" msgid "Click to choose color" -msgstr "" +msgstr "Cliceáil chun dath a roghnú" #: colorscheme/ColorSchemeEditor.cpp:388 #, kde-format msgctxt "@info:tooltip" msgid "Click to choose intense color" -msgstr "" +msgstr "Cliceáil chun dath dian a roghnú" #: colorscheme/ColorSchemeEditor.cpp:393 -#, fuzzy, kde-format -#| msgid "Click to send an email to %1." +#, kde-format msgctxt "@info:tooltip" msgid "Click to choose Faint color" -msgstr "Cliceáil chun ríomhphost a sheoladh chuig %1." +msgstr "Cliceáil chun dath lag a roghnú" #. i18n: ectx: property (text), widget (QLabel, descriptionLabel) #. i18n: ectx: property (text), widget (QLabel, discriptionLabel) @@ -546,27 +516,29 @@ msgid "" "settings.\n" "To see any effect, set colors with saturation value greater than 0." msgstr "" +"Déantar luachanna datha agus sáithiúcháin dathanna réamhshocraithe an tulra " +"agus an chúlra a randamú de réir réamhshocraithe. D’fhéadfadh socruithe " +"randamaithe difriúla a bheith in úsáid ag roinnt scéimeanna dathanna.\n" +"Chun aon éifeacht a fheiceáil, socraigh dathanna le luach sáithiúcháin níos " +"mó ná 0." #. i18n: ectx: property (text), widget (QCheckBox, randomizedBackgroundCheck) #: colorscheme/ColorSchemeEditor.ui:53 #, kde-format msgid "Randomly adjust colors for each session" -msgstr "" +msgstr "Coigeartaigh dathanna go randamach do gach seisiún" #. i18n: ectx: property (text), widget (QCheckBox, blurCheckBox) #: colorscheme/ColorSchemeEditor.ui:60 -#, fuzzy, kde-format -#| msgctxt "@item:intable palette" -#| msgid "Background" +#, kde-format msgid "Blur background" -msgstr "Cúlra" +msgstr "Cúlra doiléir" #. i18n: ectx: property (text), widget (QLabel, transparencyLabel) #: colorscheme/ColorSchemeEditor.ui:69 -#, fuzzy, kde-format -#| msgid "Background transparency:" +#, kde-format msgid "Background color transparency:" -msgstr "Trédhearcachas an chúlra:" +msgstr "Trédhearcacht dath an chúlra:" #. i18n: ectx: property (text), widget (QLabel, transparencyPercentLabel) #. i18n: ectx: property (text), widget (QLabel, wallpaperTransparencyPercentLabel) @@ -577,10 +549,9 @@ msgstr "Céatadán" #. i18n: ectx: property (text), widget (QLabel, wallpaperTransparencyLabel) #: colorscheme/ColorSchemeEditor.ui:103 -#, fuzzy, kde-format -#| msgid "Background transparency:" +#, kde-format msgid "Wallpaper transparency:" -msgstr "Trédhearcachas an chúlra:" +msgstr "Trédhearcacht cúlbhrat:" #. i18n: ectx: property (text), widget (QLabel, wallpaperLabel) #: colorscheme/ColorSchemeEditor.ui:137 @@ -592,14 +563,13 @@ msgstr "Íomhá chúlra:" #: colorscheme/ColorSchemeEditor.ui:144 #, kde-format msgid "Edit the path of the background image" -msgstr "" +msgstr "Cuir cosán na híomhá cúlra in eagar" #. i18n: ectx: property (toolTip), widget (QToolButton, wallpaperSelectButton) #: colorscheme/ColorSchemeEditor.ui:151 -#, fuzzy, kde-format -#| msgid "Background image:" +#, kde-format msgid "Choose the background image" -msgstr "Íomhá chúlra:" +msgstr "Roghnaigh an íomhá chúlra" #. i18n: ectx: property (text), widget (QToolButton, wallpaperSelectButton) #. i18n: ectx: property (text), widget (QToolButton, dirSelectButton) @@ -612,102 +582,132 @@ msgstr "..." #. i18n: ectx: property (text), widget (QLabel, wallpaperScalingLabel) #: colorscheme/ColorSchemeEditor.ui:165 -#, fuzzy, kde-format -#| msgid "Wallpaper:" +#, kde-format msgid "Wallpaper scaling:" -msgstr "Cúlbhrat:" +msgstr "Scálú cúlbhrat:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:173 #, kde-format msgid "Tile" -msgstr "" +msgstr "Tíleanna" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:178 #, kde-format msgid "Stretch" -msgstr "" +msgstr "Síneadh" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:183 #, kde-format msgid "Crop" -msgstr "" +msgstr "Barr" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:188 #, kde-format msgid "Adapt" -msgstr "" +msgstr "Oiriúnú" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:193 -#, fuzzy, kde-format -#| msgid "Scrolling" +#, kde-format msgid "NoScaling" -msgstr "Scrollú" +msgstr "Gan Scálú" #. i18n: ectx: property (text), widget (QLabel, wallpaperFlipLabel) #: colorscheme/ColorSchemeEditor.ui:205 -#, fuzzy, kde-format -#| msgid "Wallpaper:" +#, kde-format msgid "Wallpaper flip:" -msgstr "Cúlbhrat:" +msgstr "Smeach cúlbhrat:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:213 #, kde-format msgid "NoFlip" -msgstr "" +msgstr "Gan Flip" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:218 #, kde-format msgid "Horizontal" -msgstr "" +msgstr "Cothrománach" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:223 #, kde-format msgid "Vertical" -msgstr "" +msgstr "Ingearach" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:228 #, kde-format msgid "Both" -msgstr "" +msgstr "An dá cheann" #. i18n: ectx: property (text), widget (QLabel, wallpaperHorizontalAnchorLabel) #: colorscheme/ColorSchemeEditor.ui:240 #, kde-format msgid "Horizontal Anchor:" -msgstr "" +msgstr "Ancaire Cothrománach:" #. i18n: ectx: property (text), widget (QLabel, wallpaperHorizontalAnchorPosition) #: colorscheme/ColorSchemeEditor.ui:266 -#, fuzzy, kde-format -#| msgid "&Left" +#, kde-format msgid "Left" -msgstr "Ar &Chlé" +msgstr "Ar chlé" #. i18n: ectx: property (text), widget (QLabel, wallpaperVerticalAnchorLabel) #: colorscheme/ColorSchemeEditor.ui:277 #, kde-format msgid "Vertical Anchor:" -msgstr "" +msgstr "Ancaire Ingearach:" #. i18n: ectx: property (text), widget (QLabel, wallpaperVerticalAnchorPosition) #: colorscheme/ColorSchemeEditor.ui:303 -#, fuzzy, kde-format -#| msgid "&Top" +#, kde-format msgid "Top" -msgstr "&Barr" +msgstr "Barr" #: colorscheme/ColorSchemeViewDelegate.cpp:52 #, kde-format msgid "AaZz09..." +msgstr "AaZz09..." + +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Óstach: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Réamhshocrú]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" msgstr "" #: CopyInputDialog.cpp:30 @@ -735,11 +735,10 @@ msgid "Deselect All" msgstr "Díroghnaigh Uile" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, fuzzy, kde-format -#| msgid "Preview:" +#, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" -msgstr "Réamhamharc:" +msgstr "Réamhamharc Dathanna" #: filterHotSpots/FileFilterHotspot.cpp:158 #, kde-format @@ -747,17 +746,18 @@ msgid "" "Could not open file with the text editor specified in the profile settings;\n" "it will be opened with the system default editor." msgstr "" +"Níorbh fhéidir an comhad a oscailt leis an eagarthóir téacs atá sonraithe " +"sna socruithe próifíle; osclófar é leis an eagarthóir réamhshocraithe córais." #: filterHotSpots/FileFilterHotspot.cpp:172 -#, fuzzy, kde-format -#| msgid "Cursor Options" +#, kde-format msgid "Copy Location" -msgstr "Roghanna an Chúrsóra" +msgstr "Cóipeáil Suíomh" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" -msgstr "" +msgstr "Mionsamhail á Giniúint" #: filterHotSpots/UrlFilterHotspot.cpp:90 #, kde-format @@ -780,20 +780,18 @@ msgid "Copy Email Address" msgstr "Cóipeáil Seoladh Ríomhphoist" #: FontDialog.cpp:26 -#, fuzzy, kde-format -#| msgid "Select Font..." +#, kde-format msgctxt "@title:window" msgid "Select font" -msgstr "Roghnaigh Cló..." +msgstr "Roghnaigh cló" -#: FontDialog.cpp:38 -#, fuzzy, kde-format -#| msgid "Smooth fonts" +#: FontDialog.cpp:37 +#, kde-format msgctxt "@action:button" msgid "Show all fonts" -msgstr "Clónna míne" +msgstr "Taispeáin na clónna uile" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -801,6 +799,10 @@ msgid "" "equal width (monospace). Any non monospaced font may cause display issues. " "This should not be necessary except in rare cases." msgstr "" +"De réir a nádúir féin, éilíonn clár teirminéal carachtair cló atá " +"comhleitheadach (aonspás). D’fhéadfadh aon chló nach bhfuil aonspásáilte " +"fadhbanna taispeána a chruthú. Níor cheart go mbeadh gá leis seo ach amháin " +"i gcásanna neamhchoitianta." #: HistorySizeDialog.cpp:25 #, kde-format @@ -812,13 +814,13 @@ msgstr "Coigeartaigh Iarscrollú" #, kde-format msgctxt "@info:status" msgid "Any adjustments are only temporary to this session." -msgstr "" +msgstr "Ní bheidh aon choigeartuithe ach sealadach don seisiún seo." #: KeyBindingEditor.cpp:54 #, kde-format msgctxt "@label:textbox" msgid "Enter descriptive label" -msgstr "" +msgstr "Cuir isteach lipéad tuairisciúil" #: KeyBindingEditor.cpp:63 #, kde-format @@ -830,25 +832,25 @@ msgstr "Teaglaim Cnaipí" msgid "Output" msgstr "Aschur" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Liosta Nua Ceangal Eochracha" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Cuir an Liosta Ceangal Eochracha in Eagar" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." -msgstr "" +msgstr "Ní féidir scéim cheangail eochracha a shábháil le cur síos folamh." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -882,232 +884,225 @@ msgstr "Ionchur:" msgid "Output:" msgstr "Aschur:" -#: main.cpp:186 -#, fuzzy, kde-format -#| msgid "Konsole" +#: main.cpp:189 +#, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Aithriseoir teirminéil" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" -msgstr "" +msgstr "(c) 1997-2022, Forbróirí Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Cothaitheoir ginearálta, ceartúcháin agus feabhsúcháin ghinearálta" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" -msgstr "" +msgstr "Cothaitheoir roimhe seo, aistrithe chuig KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "An chéad údar" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" -msgstr "" +msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 -#, fuzzy, kde-format -#| msgctxt "@info:credit" -#| msgid "General maintainer, bug fixes and general improvements" +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 +#, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" -msgstr "Cothaitheoir ginearálta, ceartúcháin agus feabhsúcháin ghinearálta" +msgstr "Athchóiriú mór, ceartúcháin fabhtanna agus feabhsuithe móra" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" -msgstr "" +msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" -msgstr "" +msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" -msgstr "" +msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" -msgstr "" +msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Ceartúcháin agus feabhsúcháin ghinearálta" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" -msgstr "" +msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" -msgstr "" +msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" -msgstr "" +msgstr "Mariusz Glebocki" -#: main.cpp:370 -#, fuzzy, kde-format -#| msgctxt "@info:credit" -#| msgid "Bug fixes and general improvements" +#: main.cpp:398 +#, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" -msgstr "Ceartúcháin agus feabhsúcháin ghinearálta" +msgstr "Ceartúcháin fabhtanna agus feabhsuithe móra" -#: main.cpp:372 -#, fuzzy, kde-format -#| msgctxt "@info:credit" -#| msgid "Thomas Dreibholz" +#: main.cpp:400 +#, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" -msgstr "Thomas Dreibholz" +msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Feabhsúcháin ghinearálta" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Ceartúcháin" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Tacaíocht le Solaris agus obair ar stair" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Ceartúcháin agus luas níos fearr ag am tosaithe" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Feabhsúcháin mharcála" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1117,13 +1112,13 @@ msgstr "" "Konsole Leabaithe\n" "Barra Uirlisí agus ainmneacha seisiúin" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1133,25 +1128,25 @@ msgstr "" "Konsole Leabaithe\n" "Feabhsúcháin ghinearálta" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Maisíochtaí amhairc" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1161,233 +1156,208 @@ msgstr "" "Cód ó thionscadal kvt\n" "Feabhsúcháin ghinearálta" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Feabhsúcháin ar scéimrí agus ar roghnú téacs" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Leagan SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Leagan FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Agus buíochas le go leor daoine eile.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Cluaisín &Nua" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Cóipeáil Cluaisín" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Fuinneog Nua" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Dún an Fhuinneog" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Lea&bharmharcanna" -#: MainWindow.cpp:379 -#, fuzzy, kde-format -#| msgid "New Color Scheme" +#: MainWindow.cpp:447 +#, kde-format msgid "&Window Color Scheme" -msgstr "Scéim Nua Dathanna" +msgstr "&Scéim Dathanna Fuinneoige" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Bainistigh Próifílí..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Gníomhachtaigh Roghchlár" -#: MainWindow.cpp:403 -#, fuzzy, kde-format -#| msgctxt "@action Shortcut entry" -#| msgid "Move Tab Left" +#: MainWindow.cpp:471 +#, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." -msgstr "Bog an Cluaisín Faoi Chlé" +msgstr "Sábháil Leagan Amach na gCluaisíní..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." -msgstr "" +msgstr "Luchtaigh Leagan Amach na gCluaisíní..." -#: MainWindow.cpp:726 MainWindow.cpp:743 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "There are %1 tab open in this window. Do you still want to quit?" -#| msgid_plural "" -#| "There are %1 tabs open in this window. Do you still want to quit?" +#: MainWindow.cpp:827 MainWindow.cpp:844 +#, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" -msgstr[0] "" -"Tá %1 chluaisín oscailte agat san fhuinneog seo; an bhfuil tú cinnte go " -"dteastaíonn uait scor?" -msgstr[1] "" -"Tá %1 chluaisín oscailte agat san fhuinneog seo; an bhfuil tú cinnte go " -"dteastaíonn uait scor?" -msgstr[2] "" -"Tá %1 chluaisín oscailte agat san fhuinneog seo; an bhfuil tú cinnte go " -"dteastaíonn uait scor?" -msgstr[3] "" -"Tá %1 gcluaisín oscailte agat san fhuinneog seo; an bhfuil tú cinnte go " -"dteastaíonn uait scor?" -msgstr[4] "" -"Tá %1 cluaisín oscailte agat san fhuinneog seo; an bhfuil tú cinnte go " -"dteastaíonn uait scor?" +msgstr[0] "Tá próiseas ag rith sa fhuinneog seo. Ar mhaith leat scor fós?" +msgstr[1] "Tá %1 próiseas ag rith sa fhuinneog seo. Ar mhaith leat scor fós?" +msgstr[2] "Tá %1 próiseas ag rith sa fhuinneog seo. Ar mhaith leat scor fós?" +msgstr[3] "Tá %1 próiseas ag rith sa fhuinneog seo. Ar mhaith leat scor fós?" +msgstr[4] "Tá %1 próiseas ag rith sa fhuinneog seo. Ar mhaith leat scor fós?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Deimhnigh Dúnadh" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Dún an &Fhuinneog" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Dún an &Cluaisín Reatha" -#: MainWindow.cpp:760 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "There are %1 tab open in this window. Do you still want to quit?" -#| msgid_plural "" -#| "There are %1 tabs open in this window. Do you still want to quit?" +#: MainWindow.cpp:861 +#, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" -msgstr "" -"Tá %1 chluaisín oscailte agat san fhuinneog seo; an bhfuil tú cinnte go " -"dteastaíonn uait scor?" +msgstr "Tá %1 teirminéil oscailte sa fhuinneog seo. Ar mhaith leat scor fós?" -#: MainWindow.cpp:867 Part.cpp:297 -#, fuzzy, kde-format -#| msgctxt "@item This will be used as part of the file name" -#| msgid "New Profile" +#: MainWindow.cpp:1001 Part.cpp:317 +#, kde-format msgctxt "@title Preferences page name" msgid "Profiles" -msgstr "Próifíl Nua" +msgstr "Próifílí" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Ginearálta" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" -msgstr "" +msgstr "Cuimhne" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" -msgstr "" +msgstr "Barra Cluaisíní / Scoilteoirí" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" -msgstr "" +msgstr "Comhaid Shealadacha" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" -msgstr "" +msgstr "Mionsamhlacha" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" -msgstr "" +msgstr "Eolas faoi Chuid" #. i18n: ectx: property (windowTitle), widget (QWidget, QuickCommandsWidget) #: plugins/QuickCommands/qcwidget.ui:14 @@ -1397,32 +1367,27 @@ msgstr "Foirm" #. i18n: ectx: property (text), widget (QLabel, label_2) #: plugins/QuickCommands/qcwidget.ui:22 -#, fuzzy, kde-format -#| msgctxt "@title:column Profile shortcut text" -#| msgid "Shortcut" +#, kde-format msgid "Shortcut:" -msgstr "Aicearra" +msgstr "Aicearra:" #. i18n: ectx: property (placeholderText), widget (QLineEdit, filterLine) #. i18n: ectx: property (placeholderText), widget (QLineEdit, filterText) #: plugins/QuickCommands/qcwidget.ui:52 plugins/SSHManager/sshwidget.ui:33 -#, fuzzy, kde-format -#| msgid "Filter:" +#, kde-format msgid "Filter..." -msgstr "Scagaire:" +msgstr "Scagaire..." #. i18n: ectx: property (text), widget (QCheckBox, invertFilter) #. i18n: ectx: property (text), widget (QCheckBox, btnInvertFilter) #: plugins/QuickCommands/qcwidget.ui:59 plugins/SSHManager/sshwidget.ui:46 #, kde-format msgid "Invert" -msgstr "" +msgstr "Inbhéartaigh" #. i18n: ectx: property (text), widget (QLabel, label) #: plugins/QuickCommands/qcwidget.ui:97 -#, fuzzy, kde-format -#| msgctxt "@item:intable The session title" -#| msgid "Title" +#, kde-format msgid "Title" msgstr "Teideal" @@ -1430,124 +1395,115 @@ msgstr "Teideal" #: plugins/QuickCommands/qcwidget.ui:107 #, kde-format msgid "Tooltip" -msgstr "" +msgstr "Leid Uirlis" #. i18n: ectx: property (text), widget (QLabel, labelGroup) #: plugins/QuickCommands/qcwidget.ui:117 #, kde-format msgid "Group" -msgstr "" +msgstr "Grúpa" #. i18n: ectx: property (text), item, widget (QComboBox, group) #. i18n: ectx: property (currentText), widget (QComboBox, folder) #: plugins/QuickCommands/qcwidget.ui:128 plugins/SSHManager/sshwidget.ui:213 -#, fuzzy, kde-format -#| msgid "&Set as Default" +#, kde-format msgid "Default" -msgstr "&Socraigh mar Réamhshocrú" +msgstr "Réamhshocrú" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: plugins/QuickCommands/qcwidget.ui:143 -#, fuzzy, kde-format -#| msgid "Command:" +#, kde-format msgid "Command" -msgstr "Ordú:" +msgstr "Ordú" #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #: plugins/QuickCommands/qcwidget.ui:193 #: plugins/QuickCommands/quickcommandswidget.cpp:333 -#, fuzzy, kde-format -#| msgctxt "@info:shell Alert the user with red color text" -#| msgid "Warning: " +#, kde-format msgid "Warnings" -msgstr "Rabhadh: " +msgstr "Rabhaidh" #. i18n: ectx: property (text), widget (QPushButton, btnRun) #: plugins/QuickCommands/qcwidget.ui:236 #, kde-format msgid "Run" -msgstr "" +msgstr "Rith" #. i18n: ectx: property (text), widget (QPushButton, btnSave) #: plugins/QuickCommands/qcwidget.ui:256 -#, fuzzy, kde-format -#| msgid "Open File Manager" +#, kde-format msgid "Save" -msgstr "Oscail Bainisteoir Comhad" +msgstr "Sábháil" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" -msgstr "" +msgstr "Nuashonrú" #. i18n: ectx: property (text), widget (QPushButton, btnCancel) #: plugins/QuickCommands/qcwidget.ui:276 plugins/SSHManager/sshwidget.ui:320 #, kde-format msgid "Cancel" -msgstr "" +msgstr "Cealaigh" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 -#, fuzzy, kde-format -#| msgid "Command:" +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 +#, kde-format msgid "Quick Commands" -msgstr "Ordú:" +msgstr "Orduithe Tapa" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" -msgstr "" +msgstr "Taispeáin Rochtain Thapa" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" +"Níor aimsíodh aon orduithe tapa. Is féidir leat ceann a chur leis ar " +"Bhreiseáin -> Orduithe Tapa" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 -#, fuzzy, kde-format -#| msgid "Command:" +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 +#, kde-format msgid "Plugins - Quick Commands" -msgstr "Ordú:" +msgstr "Breiseáin - Orduithe Tapa" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" -msgstr "" +msgstr "Taispeáin Orduithe Tapa" #: plugins/QuickCommands/quickcommandswidget.cpp:166 #: plugins/QuickCommands/quickcommandswidget.cpp:177 #, kde-format msgid "A duplicate item exists" -msgstr "" +msgstr "Tá mír dhúblach ann" #: plugins/QuickCommands/quickcommandswidget.cpp:183 #, kde-format msgid "Please fix all the warnings before trying to run this script" msgstr "" +"Deisigh na rabhaidh go léir sula ndéanann tú iarracht an script seo a rith" #: plugins/QuickCommands/quickcommandswidget.cpp:215 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "There are %1 tab open in this window. Do you still want to quit?" -#| msgid_plural "" -#| "There are %1 tabs open in this window. Do you still want to quit?" +#, kde-format msgid "There are some errors on the script, do you really want to run it?" msgstr "" -"Tá %1 chluaisín oscailte agat san fhuinneog seo; an bhfuil tú cinnte go " -"dteastaíonn uait scor?" +"Tá roinnt earráidí sa script, an bhfuil tú cinnte gur mhaith leat é a rith?" #: plugins/QuickCommands/quickcommandswidget.cpp:216 #, kde-format msgid "Shell Errors" -msgstr "" +msgstr "Earráidí Sliogáin" #: plugins/QuickCommands/quickcommandswidget.cpp:217 #, kde-format msgctxt "@action:button" msgid "Run" -msgstr "" +msgstr "Rith" #: plugins/QuickCommands/quickcommandswidget.cpp:242 #, kde-format @@ -1555,233 +1511,229 @@ msgid "" "You are about to delete the group %1,\n" " with multiple configurations, are you sure?" msgstr "" +"Tá tú ar tí an grúpa %1 a scriosadh,\n" +" le cumraíochtaí iolracha, an bhfuil tú cinnte?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" -msgstr "" +msgstr "Tá tú ar tí %1 a scriosadh, an bhfuil tú cinnte?" #: plugins/QuickCommands/quickcommandswidget.cpp:246 -#, fuzzy, kde-format -#| msgid "Remote Connection" +#, kde-format msgid "Delete Quick Commands Configurations" -msgstr "Ceangal Cianda" +msgstr "Scrios Cumraíochtaí Orduithe Tapa" #: plugins/QuickCommands/quickcommandswidget.cpp:276 #, kde-format msgid "Title can not be empty or blank" -msgstr "" +msgstr "Ní féidir leis an teideal a bheith folamh ná bán" #: plugins/QuickCommands/quickcommandswidget.cpp:280 -#, fuzzy, kde-format -#| msgid "Command to execute" +#, kde-format msgid "Command can not be empty" -msgstr "Ordú le rith" +msgstr "Ní féidir an t-ordú a fhágáil folamh" #: plugins/QuickCommands/quickcommandswidget.cpp:300 -#, fuzzy, kde-format -#| msgid "Rename Tab" +#, kde-format msgid "Rename" -msgstr "Athainmnigh an Cluaisín" +msgstr "Athainmnigh" #: plugins/QuickCommands/quickcommandswidget.cpp:304 #, kde-format msgid "Delete" -msgstr "" +msgstr "Scrios" #: plugins/QuickCommands/quickcommandswidget.cpp:335 -#, fuzzy, kde-format -#| msgctxt "@info:shell Alert the user with red color text" -#| msgid "Warning: " +#, kde-format msgid "Warnings (*)" -msgstr "Rabhadh: " +msgstr "Rabhaidh (*)" #: plugins/SSHManager/sshmanagermodel.cpp:46 -#, fuzzy, kde-format -#| msgid "Confirm Close" +#, kde-format msgctxt "@item:inlistbox Hosts from ssh/config file" msgid "SSH Config" -msgstr "Deimhnigh Dúnadh" +msgstr "Cumraíocht SSH" #: plugins/SSHManager/sshmanagermodel.cpp:49 -#, fuzzy, kde-format -#| msgid "&Set as Default" +#, kde-format msgctxt "@item:inlistbox The default list of ssh hosts" msgid "Default" -msgstr "&Socraigh mar Réamhshocrú" +msgstr "Réamhshocrú" #: plugins/SSHManager/sshmanagermodel.cpp:75 #, kde-format msgid "%1 is a folder for SSH entries" -msgstr "" +msgstr "Is fillteán é %1 le haghaidh iontrálacha SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 -#, fuzzy, kde-format -#| msgid "Confirm Close" +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 +#, kde-format msgid "SSH Config" -msgstr "Deimhnigh Dúnadh" +msgstr "Cumraíocht SSH" #: plugins/SSHManager/sshmanagermodel.cpp:103 -#, fuzzy, kde-format -#| msgid "Host:" +#, kde-format msgid "Host: %1" -msgstr "Óstríomhaire:" +msgstr "Óstach: %1" #: plugins/SSHManager/sshmanagerplugin.cpp:66 #, kde-format msgid "SSH Manager" -msgstr "" +msgstr "Bainisteoir SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:96 -#, fuzzy, kde-format -#| msgid "Show Menu Bar" +#, kde-format msgid "Show SSH Manager" -msgstr "Taispeáin an Barra Roghchláir" +msgstr "Taispeáin Bainisteoir SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:115 #, kde-format msgid "Show Quick Access for SSH Actions" -msgstr "" +msgstr "Taispeáin Rochtain Thapa do Ghníomhartha SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:146 #, kde-format msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" msgstr "" +"Níor aimsíodh aon chumraíocht SSH shábháilte. Is féidir leat ceann a chur " +"leis ar Bhreiseáin -> Bainisteoir SSH." #: plugins/SSHManager/sshmanagerplugin.cpp:147 -#, fuzzy, kde-format -#| msgid "Hide Menu Bar" +#, kde-format msgid "Plugins - SSH Manager" -msgstr "Taispeáin an Barra Roghchláir" +msgstr "Breiseáin - Bainisteoir SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:153 #, kde-format msgid "SSH Entries" -msgstr "" +msgstr "Iontrálacha SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:182 #, kde-format msgid "" "Could not get the process name, assume that we can't request a connection" msgstr "" +"Níorbh fhéidir ainm an phróisis a fháil, glactar leis nach féidir linn nasc " +"a iarraidh" #: plugins/SSHManager/sshmanagerplugin.cpp:182 #: plugins/SSHManager/sshmanagerplugin.cpp:194 #, kde-format msgid "Error issuing SSH Command" -msgstr "" +msgstr "Earráid ag eisiúint Ordú SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:194 #, kde-format msgid "" "Can't issue SSH command outside the shell application (eg, bash, zsh, sh)" msgstr "" +"Ní féidir ordú SSH a eisiúint lasmuigh den fheidhmchlár sliogáin (m.sh., " +"bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" -msgstr "" +msgstr "Eochair SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" -msgstr "" +msgstr "Scrios" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" -msgstr "" +msgstr "Ná hathraigh" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" +"Tá tú ar tí an fillteán %1 a scriosadh,\n" +" le Cumraíochtaí SSH iolracha, an bhfuil tú cinnte?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 -#, fuzzy, kde-format -#| msgid "Remote Connection" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" -msgstr "Ceangal Cianda" +msgstr "Scrios Cumraíochtaí SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." -msgstr "" +msgstr "Próifíl SSH Iompórtáilte
          Tá roinnt socruithe inléite amháin." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" -msgstr "" +msgstr "Ainm Óstach ar Iarraidh" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" -msgstr "" +msgstr "Ainm ar Iarraidh" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" +"Mura bhfuil Úsáid Cumraíocht Ssh socraithe, ná sonraigh sshkey ná ainm " +"úsáideora." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" -msgstr "" +msgstr "Ní mór Ainm Úsáideora nó Eochair SSH a shocrú ar a laghad" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" -msgstr "" +msgstr "Fillteán ar Iarraidh" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" -msgstr "" +msgstr "Ní mór próifíl a bheith ag seisiún SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" -msgstr "" +msgstr "Ní féidir an fillteán seo a scriosadh" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" -msgstr "" +msgstr "Scrios an fillteán agus a bhfuil ann go léir" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." -msgstr "" +msgstr "Cliceáil faoi dhó chun ainm an fhillteáin a athrú." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 -#, fuzzy, kde-format -#| msgid "Do not close the initial session automatically when it ends." +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 +#, kde-format msgid "You can't delete an automatically added entry." -msgstr "Ná dún an bunseisiún go huathoibríoch nuair a thagann sé chun deiridh." +msgstr "Ní féidir leat iontráil a cuireadh leis go huathoibríoch a scriosadh." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 -#, fuzzy, kde-format -#| msgid "Edit the selected profile(s)" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 +#, kde-format msgid "Delete selected entry" -msgstr "Cuir na próifílí roghnaithe in eagar" +msgstr "Scrios an iontráil roghnaithe" #. i18n: ectx: property (text), widget (QLabel, label_6) #: plugins/SSHManager/sshwidget.ui:19 -#, fuzzy, kde-format -#| msgctxt "@title:column Profile shortcut text" -#| msgid "Shortcut" +#, kde-format msgid "Shortcut" msgstr "Aicearra" @@ -1789,83 +1741,80 @@ msgstr "Aicearra" #: plugins/SSHManager/sshwidget.ui:43 #, kde-format msgid "Show entries that don't match the filter" -msgstr "" +msgstr "Taispeáin iontrálacha nach bhfuil ag teacht leis an scagaire" #. i18n: ectx: property (toolTip), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:57 #, kde-format msgid "Change profile on connect/disconnect" -msgstr "" +msgstr "Athraigh próifíl ar cheangal/dícheangal" #. i18n: ectx: property (text), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:60 -#, fuzzy, kde-format -#| msgctxt "@title:window" -#| msgid "Manage Profiles" +#, kde-format msgid "Manage profile" -msgstr "Bainistigh Próifílí" +msgstr "Bainistigh próifíl" #. i18n: ectx: property (text), widget (QLabel, label_2) #: plugins/SSHManager/sshwidget.ui:82 #, kde-format msgid "Identifier" -msgstr "" +msgstr "Aitheantóir" #. i18n: ectx: property (toolTip), widget (QLineEdit, name) #: plugins/SSHManager/sshwidget.ui:89 #, kde-format msgid "A name for this ssh entry" -msgstr "" +msgstr "Ainm don iontráil ssh seo" #. i18n: ectx: property (placeholderText), widget (QLineEdit, name) #: plugins/SSHManager/sshwidget.ui:92 #, kde-format msgid "The name of this entry on the list" -msgstr "" +msgstr "Ainm an iontrála seo ar an liosta" #. i18n: ectx: property (text), widget (QLabel, label) #: plugins/SSHManager/sshwidget.ui:99 #, kde-format msgid "SSH Hostname" -msgstr "" +msgstr "Ainm Óstach SSH" #. i18n: ectx: property (toolTip), widget (QLineEdit, hostname) #. i18n: ectx: property (placeholderText), widget (QLineEdit, hostname) #: plugins/SSHManager/sshwidget.ui:106 plugins/SSHManager/sshwidget.ui:109 -#, fuzzy, kde-format -#| msgid "Change the shape of the cursor" +#, kde-format msgid "The hostname of the server" -msgstr "Athraigh cruth an chúrsóra" +msgstr "Ainm óstach an fhreastalaí" #. i18n: ectx: property (text), widget (QLabel, label_3) #: plugins/SSHManager/sshwidget.ui:116 #, kde-format msgid "Port" -msgstr "" +msgstr "Port" #. i18n: ectx: property (toolTip), widget (QLineEdit, port) #: plugins/SSHManager/sshwidget.ui:123 #, kde-format msgid "The port of the server, 22 is the default for ssh connections" -msgstr "" +msgstr "Is é 22 an port réamhshocraithe le haghaidh naisc ssh" #. i18n: ectx: property (text), widget (QLineEdit, port) #: plugins/SSHManager/sshwidget.ui:126 #, kde-format msgid "22" -msgstr "" +msgstr "22" #. i18n: ectx: property (toolTip), widget (QLineEdit, sshkey) #: plugins/SSHManager/sshwidget.ui:142 #, kde-format msgid "The private key to be used for this connection" -msgstr "" +msgstr "An eochair phríobháideach le húsáid don nasc seo" #. i18n: ectx: property (placeholderText), widget (QLineEdit, sshkey) #: plugins/SSHManager/sshwidget.ui:148 #, kde-format msgid "The private key" -msgstr "" +msgstr "An eochair phríobháideach" #. i18n: ectx: property (toolTip), widget (QCheckBox, useSshConfig) #: plugins/SSHManager/sshwidget.ui:167 @@ -1874,99 +1823,93 @@ msgid "" "If this is set, we don't rely on the SSH key set above, but on the " "configuration on ~/.ssh/config" msgstr "" +"Más rud é go bhfuil sé seo socraithe, ní bheimid ag brath ar an eochair SSH " +"atá socraithe thuas, ach ar an chumraíocht ar ~/.ssh/config" #. i18n: ectx: property (text), widget (QCheckBox, useSshConfig) #: plugins/SSHManager/sshwidget.ui:170 #, kde-format msgid "Use ~/.ssh/config for key" -msgstr "" +msgstr "Úsáid ~/.ssh/config don eochair" #. i18n: ectx: property (text), widget (QLabel, label_7) #: plugins/SSHManager/sshwidget.ui:177 -#, fuzzy, kde-format -#| msgid "User Name: %u" +#, kde-format msgid "Username" -msgstr "Ainm Úsáideora: %u" +msgstr "Ainm úsáideora" #. i18n: ectx: property (toolTip), widget (QLineEdit, username) #: plugins/SSHManager/sshwidget.ui:184 -#, fuzzy, kde-format -#| msgid "New Remote Connection" +#, kde-format msgid "The username for the connection" -msgstr "Ceangal Nua Cianda" +msgstr "Ainm úsáideora an naisc" #. i18n: ectx: property (placeholderText), widget (QLineEdit, username) #: plugins/SSHManager/sshwidget.ui:187 -#, fuzzy, kde-format -#| msgctxt "NAME OF TRANSLATORS" -#| msgid "Your names" +#, kde-format msgid "Your username" -msgstr "Séamus Ó Ciardhuáin,Kevin Scannell" +msgstr "D'ainm úsáideora" #. i18n: ectx: property (text), widget (QLabel, folderLabel) #: plugins/SSHManager/sshwidget.ui:194 #, kde-format msgid "Folder" -msgstr "" +msgstr "Fillteán" #. i18n: ectx: property (toolTip), widget (QComboBox, folder) #: plugins/SSHManager/sshwidget.ui:207 #, kde-format msgid "For organizational purposes, this entry will be inside of this folder." msgstr "" +"Chun críocha eagrúcháin, beidh an iontráil seo taobh istigh den fhillteán " +"seo." #. i18n: ectx: property (text), widget (QLabel, label_5) #: plugins/SSHManager/sshwidget.ui:220 -#, fuzzy, kde-format -#| msgctxt "@item This will be used as part of the file name" -#| msgid "New Profile" +#, kde-format msgid "Profile" -msgstr "Próifíl Nua" +msgstr "Próifíl" #. i18n: ectx: property (toolTip), widget (QComboBox, profile) #: plugins/SSHManager/sshwidget.ui:233 #, kde-format msgid "The profile to be active when the ssh session starts" -msgstr "" +msgstr "An phróifíl le bheith gníomhach nuair a thosaíonn an seisiún ssh" #. i18n: ectx: property (toolTip), widget (QPushButton, newSSHConfig) #: plugins/SSHManager/sshwidget.ui:271 #, kde-format msgid "Add a new SSH Entry" -msgstr "" +msgstr "Cuir Iontráil SSH nua leis" #. i18n: ectx: property (toolTip), widget (QPushButton, btnDelete) #: plugins/SSHManager/sshwidget.ui:284 -#, fuzzy, kde-format -#| msgid "Edit the selected profile(s)" +#, kde-format msgid "Delete selected SSH entry" -msgstr "Cuir na próifílí roghnaithe in eagar" +msgstr "Scrios an iontráil SSH roghnaithe" #. i18n: ectx: property (toolTip), widget (QPushButton, btnEdit) #: plugins/SSHManager/sshwidget.ui:297 -#, fuzzy, kde-format -#| msgid "Edit the selected profile(s)" +#, kde-format msgid "Edit selected entry" -msgstr "Cuir na próifílí roghnaithe in eagar" +msgstr "Cuir an iontráil roghnaithe in eagar" #. i18n: ectx: property (toolTip), widget (QPushButton, btnAdd) #: plugins/SSHManager/sshwidget.ui:307 -#, fuzzy, kde-format -#| msgid "Remote Connection" +#, kde-format msgid "Add new SSH Configuration" -msgstr "Ceangal Cianda" +msgstr "Cuir Cumraíocht SSH nua leis" #. i18n: ectx: property (toolTip), widget (QPushButton, btnCancel) #: plugins/SSHManager/sshwidget.ui:317 #, kde-format msgid "Cancel Add or Edit" -msgstr "" +msgstr "Cealaigh Cuir leis nó Cuir in Eagar" #: pluginsystem/PluginManager.cpp:70 -#, fuzzy, kde-format -#| msgid "No profiles available" +#, kde-format msgid "No plugins available" -msgstr "Níl aon phróifílí ar fáil" +msgstr "Níl aon bhreiseáin ar fáil" #. i18n: ectx: property (windowTitle), widget (QWidget, PrintOptions) #. i18n: ectx: property (title), widget (QGroupBox, OutputOptions) @@ -1977,53 +1920,48 @@ msgstr "Roghanna Aschurtha" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Mód cairdiúil don phrintéir (téacs dubh, gan chúlra)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" -msgstr "" +msgstr "&Scálaigh an t-aschur" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" -msgstr "" +msgstr "Tógtha isteach" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Próifíl réamhshocraithe" #: profile/ProfileManager.cpp:280 -#, fuzzy, kde-format -#| msgid "Edit Profile \"%1\"" +#, kde-format msgctxt "New profile name, %1 is a number" msgid "Profile %1" -msgstr "Cuir Próifíl \"%1\" in Eagar" +msgstr "Próifíl %1" #: profile/ProfileManager.cpp:294 #, kde-format msgid "Konsole does not have permission to save this profile to %1" -msgstr "" +msgstr "Níl cead ag Konsole an phróifíl seo a shábháil chuig %1" #: profile/ProfileModel.cpp:55 -#, fuzzy, kde-format -#| msgctxt "@label:listbox Column header text for color names" -#| msgid "Name" +#, kde-format msgctxt "@title:column Profile name" msgid "Name" msgstr "Ainm" #: profile/ProfileModel.cpp:57 -#, fuzzy, kde-format -#| msgctxt "@title:column Profile shortcut text" -#| msgid "Shortcut" +#, kde-format msgctxt "@title:column Profile keyboard shortcut" msgid "Shortcut" msgstr "Aicearra" @@ -2034,43 +1972,65 @@ msgctxt "" "@label:textbox added to the name of the built-in profile, to point out it's " "read-only" msgid " [Read-only]" -msgstr "" +msgstr " [Léigh amháin]" #: profile/ProfileModel.cpp:84 -#, fuzzy, kde-format -#| msgid "&Set as Default" +#, kde-format msgctxt "@label:textbox added to the name of the current default profile" msgid " [Default]" -msgstr "&Socraigh mar Réamhshocrú" +msgstr " [Réamhshocrú]" #: profile/ProfileModel.cpp:99 #, kde-format msgctxt "@info:tooltip" msgid "Built-in profile is always available" -msgstr "" +msgstr "Tá próifíl ionsuite ar fáil i gcónaí" #: profile/ProfileModel.cpp:111 #, kde-format msgctxt "@info:tooltip" msgid "Double click to change shortcut" -msgstr "" +msgstr "Cliceáil faoi dhó chun aicearra a athrú" #: RenameTabDialog.cpp:25 #, kde-format msgid "Tab Properties" -msgstr "" +msgstr "Airíonna na gCluaisíní" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Sábháil Aschur ó %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "URL neamhbhailí é %1; níorbh fhéidir an t-aschur a shábháil." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Theip ar chruthú comhad uathshábháilte ag %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Ag stopadh uathshábháil mar gheall ar athrú scáileáin." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Tá an comhad uath-shábháilte modhnaithe go seachtrach, rud a chuireann cosc ​​" +"ar thuilleadh uath-shábháil." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Theip ar staid uathshábháil a nuashonrú ar athruithe aschuir." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2102,86 +2062,103 @@ msgstr "Gorm ar Dhubh" #: schemas.cpp:5 #, kde-format msgid "Breeze" -msgstr "" +msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastail Dhorcha" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Uaine ar Dhubh" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Dathanna Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Dearg ar Dhubh" -#: schemas.cpp:10 -#, kde-format -msgid "Solarized" -msgstr "" - #: schemas.cpp:11 #, kde-format -msgid "Solarized Light" -msgstr "" +msgid "Solarized" +msgstr "Gréinithe" #: schemas.cpp:12 #, kde-format +msgid "Solarized Light" +msgstr "Solarized Light" + +#: schemas.cpp:13 +#, kde-format msgid "White on Black" msgstr "Bán ar Dhubh" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Réamhshocrú (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Consól Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" -msgstr "" +msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Consól Solaris" -#: session/Session.cpp:109 -#, fuzzy, kde-format -#| msgid "Bell in session '%1'" -msgid "Bell in '%1' (Session '%2')" -msgstr "Cloigín i seisiún '%1'" +# or "Aschur an Chuardaigh"? +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Cuardaigh..." -#: session/Session.cpp:417 +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Cuir isteach ainm cluaisín le cuardach a dhéanamh air anseo" + +#: session/Session.cpp:131 +#, kde-format +msgid "Bell in '%1' (Session '%2')" +msgstr "Clog i '%1' (Seisiún '%2')" + +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Níorbh fhéidir clár inrite a aimsiú: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Rabhadh: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Níorbh fhéidir blaosc idirghníomhach a aimsiú." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2189,352 +2166,340 @@ msgid "" msgstr "" "'%1' gan aimsiú, '%2' á thosú ina ionad. Seiceáil socruithe do phróifíle." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Níorbh fhéidir ríomhchlár '%1' a thosú le hargóintí '%2'." -#: session/Session.cpp:741 -#, fuzzy, kde-format -#| msgid "Silence in session '%1'" -msgid "Silence in '%1' (Session '%2')" -msgstr "Tost i seisiún '%1'" - -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 -#, fuzzy, kde-format -#| msgid "Switch to Session %1" -msgid "Show session" -msgstr "Athraigh go Seisiún %1" - -#: session/Session.cpp:1026 +#: session/Session.cpp:816 #, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" +msgid "Silence in '%1' (Session '%2')" +msgstr "Ciúnas i '%1' (Seisiún '%2')" -#: session/Session.cpp:1066 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 +#, kde-format +msgid "Show session" +msgstr "Taispeáin seisiún" + +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Críochnaithe" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Thuairteáil ríomhchlár '%1'." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Críochnaíodh clár '%1' le stádas %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Dul chun cinn ZModem" -#: session/Session.cpp:2079 -#, fuzzy, kde-format -#| msgid "Activity in session '%1'" +#: session/Session.cpp:2248 +#, kde-format msgid "Activity in '%1' (Session '%2')" -msgstr "Gníomhaíocht i seisiún '%1'" +msgstr "Gníomhaíocht i '%1' (Seisiún '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"Tá API DBus atá íogair ó thaobh slándála de díchumasaithe sna socruithe." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" -msgstr "" +msgstr "Tá an próiseas '%1' críochnaithe ag rith i seisiún '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " -msgstr "" +msgstr "Níl a fhios ag Konsole conas an leabharmharc a oscailt:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Déan cuardach ar '%1' le" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Cumraigh Aicearraí Gréasáin..." -#: session/SessionController.cpp:641 -#, fuzzy, kde-format -#| msgid "New Session" +#: session/SessionController.cpp:668 +#, kde-format msgid "&Close Session" -msgstr "Seisiún Nua" +msgstr "&Dún an Seisiún" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Oscail Bainisteoir Comhad" -#: session/SessionController.cpp:660 -#, fuzzy, kde-format -#| msgid "&Copy" +#: session/SessionController.cpp:690 +#, kde-format msgid "Copy" -msgstr "&Cóipeáil" +msgstr "Cóipeáil" -#: session/SessionController.cpp:667 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: session/SessionController.cpp:697 +#, kde-format msgid "Split View Left-Right" -msgstr "Scoilt an tAmharc Clé/Deas" +msgstr "Radharc Scoilte Clé-Deas" -#: session/SessionController.cpp:672 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: session/SessionController.cpp:702 +#, kde-format msgid "Split View Top-Bottom" -msgstr "Scoilt an tAmharc Barr/Bun" +msgstr "Radharc Scoilte Barr-Bun" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" -msgstr "" +msgstr "Cóipeáil seachas leideanna" -#: session/SessionController.cpp:682 -#, fuzzy, kde-format -#| msgid "Copy Input" +#: session/SessionController.cpp:712 +#, kde-format msgid "Copy user input" -msgstr "Cóipeáil an tIonchur" +msgstr "Cóipeáil ionchur úsáideora" -#: session/SessionController.cpp:688 -#, fuzzy, kde-format -#| msgid "Copy Input" +#: session/SessionController.cpp:718 +#, kde-format msgid "Copy command output" -msgstr "Cóipeáil an tIonchur" +msgstr "Cóipeáil aschur ordaithe" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Greamaigh Roghnúchán" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" -msgstr "" +msgstr "Cuardach Gréasáin" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Roghnaigh Uile" -#: session/SessionController.cpp:720 -#, fuzzy, kde-format -#| msgid "Select Text" +#: session/SessionController.cpp:750 +#, kde-format msgid "Select &Mode" -msgstr "Roghnaigh Téacs" +msgstr "Roghnaigh &Mód" -#: session/SessionController.cpp:725 -#, fuzzy, kde-format -#| msgid "Select Text" +#: session/SessionController.cpp:755 +#, kde-format msgid "Select &Line" -msgstr "Roghnaigh Téacs" +msgstr "Roghnaigh &Líne" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Sábháil an tAschur M&ar..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Sábháil Aschur Uathoibríoch Mar..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Stop an Sábháil Uathoibríoch" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Priontáil Scáileán..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Coigeartaigh Iarscrollú..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Glan Iarscrollú" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Glan Iarscrollú agus Athshocraigh" -#: session/SessionController.cpp:757 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:795 +#, kde-format msgid "Next Profile" -msgstr "Cuir Próifíl in Eagar" +msgstr "An Chéad Phróifíl Eile" -#: session/SessionController.cpp:762 -#, fuzzy, kde-format -#| msgid "Previous View" +#: session/SessionController.cpp:800 +#, kde-format msgid "Previous Profile" -msgstr "An tAmharc Roimhe Seo" +msgstr "Próifíl Roimhe Seo" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" -msgstr "" +msgstr "Próifíl Athraigh" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Socraigh &Ionchódú" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" -msgstr "" +msgstr "Ceadaigh Rianú Luiche" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" -msgstr "" +msgstr "Léamh-Amháin" -#: session/SessionController.cpp:832 -#, fuzzy, kde-format -#| msgid "&Rename Tab..." +#: session/SessionController.cpp:868 +#, kde-format msgid "&Configure or Rename Tab..." -msgstr "&Athainmnigh an Cluaisín..." +msgstr "&Cumraigh nó Athainmnigh an Cluaisín..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" -msgstr "" +msgstr "&Gach Cluaisín sa Fhuinneog Reatha" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." -msgstr "" +msgstr "&Roghnaigh Cluaisíní..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "N&eamhní" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Cóipeáil an tIonchur Go" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Uasluchtú &ZMóideime..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" -msgstr "" +msgstr "Monatóirí Aon-Urchar" -#: session/SessionController.cpp:877 -#, fuzzy, kde-format -#| msgid "Monitor for &Activity" +#: session/SessionController.cpp:913 +#, kde-format msgid "Monitor for &Prompt" -msgstr "Fair ar &Ghníomhaíocht" +msgstr "Monatóireacht don Leid" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Fair ar &Ghníomhaíocht" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Fair ar &Chiúnas" -#: session/SessionController.cpp:896 -#, fuzzy, kde-format -#| msgid "Monitor for &Activity" +#: session/SessionController.cpp:932 +#, kde-format msgid "Monitor for Process Finishing" -msgstr "Fair ar &Ghníomhaíocht" +msgstr "Monatóireacht le haghaidh Críochnú Próisis" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Méadaigh an Cló" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Laghdaigh an Cló" -#: session/SessionController.cpp:916 -#, fuzzy, kde-format -#| msgid "Increase Text Size" +#: session/SessionController.cpp:952 +#, kde-format msgid "Reset Font Size" -msgstr "Cló Níos Mó" +msgstr "Athshocraigh Méid an Chló" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Seol Comhartha" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Cuir an Tasc ar &Fionraí" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Lean leis an Tasc" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Croch suas" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Bris Isteach ar Tasc" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" -msgstr "" +msgstr "&Críochnaigh an Tasc" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Maraigh Tasc" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Comhartha Úsáideora &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Comhartha Úsáideora &2" -#: session/SessionController.cpp:979 -#, fuzzy, kde-format -#| msgid "&New Profile..." +#: session/SessionController.cpp:1015 +#, kde-format msgid "Create New Profile..." -msgstr "Próifíl &Nua..." +msgstr "Cruthaigh Próifíl Nua..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Cuir an Phróifíl Reatha in Eagar..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2543,7 +2508,7 @@ msgstr "" "Tá ríomhchlár ag rith sa seisiún seo faoi láthair. An bhfuil tú cinnte go " "dteastaíonn uait é a dhúnadh?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2552,79 +2517,87 @@ msgstr "" "Tá ríomhchlár '%1' ag rith sa seisiún seo faoi láthair. An bhfuil tú cinnte " "go dteastaíonn uait é a dhúnadh?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Deimhnigh Dúnadh" -#: session/SessionController.cpp:1124 -#, fuzzy, kde-format -#| msgid "&Close Tab" +#: session/SessionController.cpp:1169 +#, kde-format msgctxt "@action:button" msgid "Close Program" -msgstr "&Dún an Cluaisín" +msgstr "Dún an Ríomhchlár" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" +"Ní rachadh clár sa seisiún seo i léig. An bhfuil tú cinnte gur mian leat é a " +"mharú le fórsa?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" +"Ní rachadh an clár '%1' sa seisiún seo i léig. An bhfuil tú cinnte gur mian " +"leat é a mharú le fórsa?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" -msgstr "" +msgstr "Clár Maraithe" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "" +msgstr "Taispeántar an leid bhlaosc i seisiún '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" -msgstr "" +msgstr "Oscail an Fillteán Reatha Le" -#: session/SessionController.cpp:2108 -#, fuzzy, kde-format -#| msgid "&ZModem Upload..." +#: session/SessionController.cpp:2225 +#, kde-format msgid "Save ZModem Download to..." -msgstr "Uasluchtú &ZMóideime..." +msgstr "Sábháil Íoslódáil ZModem chuig..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " "software was found on this system.

          You may wish to install the 'rzsz' " "or 'lrzsz' package.

          " msgstr "" +"

          Braithíodh iarracht aistrithe comhaid ZModem, ach ní bhfuarthas aon " +"bhogearraí ZModem oiriúnacha ar an gcóras seo.

          B’fhéidir gur mhaith " +"leat an pacáiste ‘rzsz’ nó ‘lrzsz’ a shuiteáil.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" +"

          Tá aistriú comhaid ZModem ar siúl cheana féin sa seisiún reatha.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " msgstr "" +"

          Níor aimsíodh aon bhogearraí ZModem oiriúnacha ar an gcóras seo.

          B’fhéidir gur mhaith leat an pacáiste ‘rzsz’ nó ‘lrzsz’ a shuiteáil.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" -msgstr "" +msgstr "Roghnaigh Comhaid le haghaidh Uaslódáil ZModem" #: session/SessionListModel.cpp:89 #, kde-format @@ -2639,385 +2612,450 @@ msgid "Title" msgstr "Teideal" #: settings/ConfigurationDialog.cpp:31 -#, fuzzy, kde-format -#| msgid "Confirm Close" +#, kde-format msgctxt "@title:window" msgid "Configure" -msgstr "Deimhnigh Dúnadh" - -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Socraigh teideal na fuinneoga" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Comhoiriúnaigh do shlonn ionadaíochta" +msgstr "Cumraigh" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" -msgstr "" +msgstr "Agus Konsole á sheoladh athúsáid an próiseas atá ann cheana más féidir" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" +msgstr "Rith gach fuinneog Konsole i bpróiseas amháin" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "Má chuirtear ar chumas é, déanfar neamhaird de shocruithe próifíle" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "Cuimhnigh méid na fuinneoige" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, kde-format +msgid "Force new tabs" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Aibhsigh uile" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "Socraigh cé acu an bhfuil an cuardach cásíogair nó nach bhfuil" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "Cásíogair" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "" +msgid "Listen for ZModem terminal codes" +msgstr "Éist le haghaidh cóid teirminéal ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, fuzzy, kde-format -#| msgid "System &Notification" +#: settings/GeneralSettings.ui:112 +#, kde-format msgid "Notifications:" -msgstr "&Fógairt an Chórais" - -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" +msgstr "Fógraí:" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" -msgstr "" +msgstr "Socraíonn sé an dtosóidh an cuardach ón mbun" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" -msgstr "" +msgstr "Cuardaigh ar gcúl" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Socraíonn sé an bhfuil an cuardach íogair ó thaobh cás de" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Cás-íogair" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Próiseas agus fuinneog:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Aibhsigh na cluichí go léir" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Cuardaigh:" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Find the next match for the current search phrase" +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format msgid "Sets whether search should stop instead of wrapping" -msgstr "Aimsigh an chéad sampla eile den fhrása cuardaigh" +msgstr "Socraíonn sé an gcuardach a stopadh in ionad é a fhilleadh" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" -msgstr "" +msgstr "Gan fillteán" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Cumasaigh luasairí roghchláir" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Fócas ar teirminéil nuair a bhogtar pointeoir na luiche tharstu" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Taispeánfar na dialóga go léir arís" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Cumasaigh gach teachtaireacht \"Ná Fiafraigh Arís\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Taispeáin teideal na fuinneoige ar an mbarra teidil" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Cumasaigh na codanna íogaire slándála de API DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Bain barra teidil agus fráma na fuinneoige" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Meaitseáil ag baint úsáide as nathanna rialta" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format msgid "Show window title set by escape sequence on the titlebar" msgstr "" +"Taispeáin teideal na fuinneoige a shocraítear le seicheamh éalaithe ar an " +"mbarra teidil" #. i18n: ectx: tooltip, entry (AllowMenuAccelerators), group (KonsoleWindow) #: settings/konsole.kcfg:23 #, kde-format msgid "Allow users to access top menu through Alt+Key combination" msgstr "" +"Lig d’úsáideoirí rochtain a fháil ar an roghchlár barr trí chomhcheangal Alt" +"+Eochracha" #. i18n: ectx: label, entry (RememberWindowSize), group (KonsoleWindow) #: settings/konsole.kcfg:27 #, kde-format msgid "Use current window size on next startup" -msgstr "" +msgstr "Úsáid méid reatha na fuinneoige ar an gcéad tosaithe eile" #. i18n: ectx: tooltip, entry (RememberWindowSize), group (KonsoleWindow) #: settings/konsole.kcfg:28 #, kde-format msgid "The window size will be saved upon exiting Konsole" +msgstr "Sábhálfar méid na fuinneoige nuair a fhágfar Konsole" + +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format -msgid "Thumbnail Width" +msgid "Show progress in task bar" msgstr "" -#. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:43 #, kde-format -msgid "Sets the width of the thumbnail" +msgid "When a script reports its progress, it will be shown in the task bar" msgstr "" +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "Cumasófar API DBus cosúil le runCommand" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Éist le cóid teirminéal ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Comhaid a sheoladh/a fháil go huathoibríoch thar naisc sraitheacha" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format +msgid "Thumbnail Width" +msgstr "Leithead na Mionsamhail" + +#. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:63 +#, kde-format +msgid "Sets the width of the thumbnail" +msgstr "Socraíonn sé leithead an mhionsamhail" + #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" -msgstr "" +msgstr "Úsáid Shift chun mionsamhail a thaispeáint" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" -msgstr "" +msgstr "Úsáid Alt chun mionsamhail a thaispeáint" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" -msgstr "" +msgstr "Úsáid Ctrl chun mionsamhail a thaispeáint" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Sets whether the search is case sensitive" +#: settings/konsole.kcfg:84 +#, kde-format msgid "Search is case sensitive" -msgstr "Socraigh cé acu an bhfuil an cuardach cásíogair nó nach bhfuil" +msgstr "Tá an cuardach íogair ó thaobh cás de" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" +#: settings/konsole.kcfg:93 +#, kde-format msgid "Highlight all search matches" -msgstr "Aibhsigh uile" +msgstr "Aibhsigh gach meaitseáil cuardaigh" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 -#, fuzzy, kde-format -#| msgid "Sets whether matching text should be highlighted" +#: settings/konsole.kcfg:94 +#, kde-format msgid "Sets whether matching text should be highlighted" -msgstr "" -"Socraigh cé acu an n-aibhsítear téacs comhoiriúnach nó nach n-aibhsítear" +msgstr "Socraíonn sé an bhfuil téacs comhoiriúnach le haibhsiú nó nach bhfuil" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Stopann an cuardach in ionad fillteán" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" -msgstr "" +msgstr "Rialú an gcruthaítear cgroups leanaí do chluaisíní aonair" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" msgstr "" +"Cinneann sé an leibhéal ídithe cuimhne os a chionn a thosóidh an luasghéarú" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" -msgstr "" +msgstr "Rialú infheictheacht an bharra cluaisíní ar fad" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 -#, kde-format -msgid "Control the size of the handle between panels" -msgstr "" - -#. i18n: ectx: label, entry (TabBarPosition), group (TabBar) #: settings/konsole.kcfg:129 #, kde-format +msgid "Control the size of the handle between panels" +msgstr "Rialú méid an láimhseála idir painéil" + +#. i18n: ectx: label, entry (TabBarPosition), group (TabBar) +#: settings/konsole.kcfg:149 +#, kde-format msgid "Control the position of the tab bar" -msgstr "" +msgstr "Rialú suíomh an bharra cluaisíní" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 -#, kde-format -msgid "Control the visual style of the tab bar" -msgstr "" - -#. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 -#, fuzzy, kde-format -#| msgid "Use a custom, fixed color for the cursor" -msgid "Use a user-defined .css file for the tab bar" -msgstr "Úsáid dath saincheaptha socraithe le haghaidh an chúrsóra" - -#. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 -#, kde-format -msgid "The .css file to use for the tab bar style" -msgstr "" - -#. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 -#, kde-format -msgid "Allow middle-clicking on open tabs to close them" -msgstr "" - -#. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 -#, kde-format -msgid "Control the visibility of 'New Tab' button on the tab bar" -msgstr "" - -#. i18n: ectx: label, entry (CloseTabButton), group (TabBar) #: settings/konsole.kcfg:159 #, kde-format -msgid "Control where the \"Close tab\" button will be displayed" +msgid "Control the visual style of the tab bar" +msgstr "Rialú stíl amhairc an bharra cluaisíní" + +#. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) +#: settings/konsole.kcfg:163 +#, kde-format +msgid "Use a user-defined .css file for the tab bar" +msgstr "Úsáid comhad .css atá sainithe ag an úsáideoir don bharra cluaisíní" + +#. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) +#: settings/konsole.kcfg:167 +#, kde-format +msgid "The .css file to use for the tab bar style" +msgstr "An comhad .css le húsáid don stíl barra cluaisíní" + +#. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) +#: settings/konsole.kcfg:171 +#, kde-format +msgid "Allow middle-clicking on open tabs to close them" +msgstr "Ceadaigh cliceáil lár ar chluaisíní oscailte chun iad a dhúnadh" + +#. i18n: ectx: label, entry (NewTabButton), group (TabBar) +#: settings/konsole.kcfg:175 +#, kde-format +msgid "Control the visibility of 'New Tab' button on the tab bar" +msgstr "Rialú infheictheacht an chnaipe 'Cluaisín Nua' ar an mbarra cluaisíní" + +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" msgstr "" +"Rialú infheictheacht an chnaipe 'Cuardaigh Cluaisíní' ar an mbarra cluaisíní" + +#. i18n: ectx: label, entry (CloseTabButton), group (TabBar) +#: settings/konsole.kcfg:187 +#, kde-format +msgid "Control where the \"Close tab\" button will be displayed" +msgstr "Rialú cá háit a dtaispeánfar an cnaipe \"Dún an cluaisín\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" -msgstr "" +msgstr "Rialú cá háit le cur an cluaisín nua" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" -msgstr "" +msgstr "Leathnaigh leithead na gcluaisíní" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" +"I gcás comhad scrollaigh siar, bain úsáid as suíomh fillteáin ar fud an " +"chórais" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" +"I gcás comhad scrollaigh siar, bain úsáid as suíomh fillteáin shonrach an " +"úsáideora" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" +"I gcás comhad scrollaigh siar, bain úsáid as suíomh fillteáin shonraithe" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" -msgstr "" +msgstr "Le haghaidh comhaid scrollaigh siar, bain úsáid as an bhfillteán seo" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 -#, fuzzy, kde-format -#| msgid "Enable Bi-Directional text rendering" +#, kde-format msgid "Enable memory monitoring:" -msgstr "Cumasaigh rindreáil déthreoch" +msgstr "Cumasaigh monatóireacht chuimhne:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" +"Tiocfaidh na hathruithe i bhfeidhm nuair a atosófar iad. Má chuirtear ar " +"chumas é, má sháraíonn tomhaltas cuimhne leanúnach ag Konsole an luach " +"sonraithe, cuirfidh systemd-oomd deireadh leis an gcluaisín/na cluaisíní ina " +"bhfuil an próiseas/na próisis atá dian ar chuimhne. Tabhair faoi deara: " +"d’fhéadfadh moilliú níos mó a bheith mar thoradh ar chumasú le linn " +"tomhaltas ard cuimhne agus d’fhéadfadh luachanna thar a bheith ísle a shonrú " +"go marófaí Konsole fós." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" -msgstr "" +msgstr "Teorainn chuimhne:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" -msgstr "" +msgstr " MB" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/PartInfo.ui:17 @@ -3030,51 +3068,52 @@ msgid "" "format=guided&product=konsole&component=kpart\">bug report if you desire " "a change to how these are handled." msgstr "" +"

          Roinneann feidhmchláir a úsáideann KonsolePart " +"próifílí.

          Ní roinneann siad le Konsole ná le feidhmchláir eile:" +"

          • próifíl réamhshocraithe
          • taispeáin sa roghchlár
          • aicearraí

          Is féidir leat tuairisc " +"fabht Konsole a oscailt más mian leat athrú a dhéanamh ar an gcaoi a " +"láimhseálann tú iad seo." #. i18n: ectx: property (toolTip), widget (QPushButton, newProfileButton) #: settings/ProfileSettings.ui:51 -#, fuzzy, kde-format -#| msgid "Create a new profile based upon the selected profile" +#, kde-format msgid "Create a new profile based on the selected profile" msgstr "Cruthaigh próifíl nua bunaithe ar an bpróifíl roghnaithe" #. i18n: ectx: property (text), widget (QPushButton, newProfileButton) #: settings/ProfileSettings.ui:54 -#, fuzzy, kde-format -#| msgctxt "@action:button Create an alternate color scheme" -#| msgid "New..." +#, kde-format msgid "&New..." -msgstr "Nua..." +msgstr "&Nua..." #. i18n: ectx: property (toolTip), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:64 -#, fuzzy, kde-format -#| msgid "Set the selected profile as the default for new terminal sessions" +#, kde-format msgid "" "Edit the selected profile (this button is disabled for read-only profiles)" msgstr "" -"Socraigh an phróifíl roghnaithe mar réamhshocrú i seisiúin nua teirminéil" +"Cuir an phróifíl roghnaithe in eagar (tá an cnaipe seo díchumasaithe le " +"haghaidh próifílí inléite amháin)" #. i18n: ectx: property (text), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:67 -#, fuzzy, kde-format -#| msgid "Edit..." +#, kde-format msgid "&Edit..." -msgstr "Eagar..." +msgstr "&Eagarthóireacht..." #. i18n: ectx: property (toolTip), widget (QPushButton, deleteProfileButton) #: settings/ProfileSettings.ui:77 -#, fuzzy, kde-format -#| msgid "Delete the selected profile(s)" +#, kde-format msgid "Delete the selected profile" -msgstr "Scrios na próifílí roghnaithe" +msgstr "Scrios an phróifíl roghnaithe" #. i18n: ectx: property (text), widget (QPushButton, deleteProfileButton) #: settings/ProfileSettings.ui:80 -#, fuzzy, kde-format -#| msgid "Remove" +#, kde-format msgid "&Remove" -msgstr "Bain" +msgstr "&Bain" #. i18n: ectx: property (toolTip), widget (QPushButton, setAsDefaultButton) #: settings/ProfileSettings.ui:90 @@ -3091,240 +3130,231 @@ msgstr "&Socraigh mar Réamhshocrú" #. i18n: ectx: attribute (title), widget (QWidget, appearanceTab) #: settings/TabBarSettings.ui:39 -#, fuzzy, kde-format -#| msgid "Appearance" +#, kde-format msgctxt "@title:tab Tab bar settings" msgid "Appearance" -msgstr "Cuma" +msgstr "Dealramh" #. i18n: ectx: property (text), widget (QLabel, showTabBarLabel) #: settings/TabBarSettings.ui:53 #, kde-format msgid "Show:" -msgstr "" +msgstr "Taispeáin:" #. i18n: ectx: property (text), widget (QRadioButton, ShowTabBarWhenNeeded) #: settings/TabBarSettings.ui:63 #, kde-format msgid "When needed" -msgstr "" +msgstr "Nuair is gá" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowTabBar) #: settings/TabBarSettings.ui:73 #, kde-format msgid "Alwa&ys" -msgstr "" +msgstr "I gcón&aí" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideTabBar) #: settings/TabBarSettings.ui:83 #, kde-format msgid "&Never" -msgstr "" +msgstr "&Choíche" #. i18n: ectx: property (text), widget (QLabel, positionLabel) #: settings/TabBarSettings.ui:109 -#, fuzzy, kde-format -#| msgid "Description:" +#, kde-format msgid "Position:" -msgstr "Cur Síos:" +msgstr "Seasamh:" #. i18n: ectx: property (text), widget (QRadioButton, Top) #: settings/TabBarSettings.ui:119 -#, fuzzy, kde-format -#| msgid "Above Terminal Area" +#, kde-format msgid "Above terminal area" msgstr "Os cionn limistéar an teirminéil" #. i18n: ectx: property (text), widget (QRadioButton, Bottom) #: settings/TabBarSettings.ui:129 -#, fuzzy, kde-format -#| msgid "Below Terminal Area" +#, kde-format msgid "Be&low terminal area" -msgstr "Faoi limistéar an teirminéil" +msgstr "Limistéar teirminé&il faoi bhun" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Below Terminal Area" +#, kde-format msgid "To the left of terminal area" -msgstr "Faoi limistéar an teirminéil" +msgstr "Ar chlé den limistéar teirminéil" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Below Terminal Area" +#, kde-format msgid "To the &right of terminal area" -msgstr "Faoi limistéar an teirminéil" +msgstr "Ar dheis &den limistéar teirminéil" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 -#, fuzzy, kde-format -#| msgid "&Close Tab" +#, kde-format msgid "Show Close Tab button:" -msgstr "&Dún an Cluaisín" +msgstr "Taispeáin an cnaipe Dún an Chluaisín:" #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "&Detach Tab" +#, kde-format msgid "On ea&ch tab" -msgstr "&Dícheangail Cluaisín" +msgstr "Ar ga&ch cluaisín" #. i18n: ectx: property (text), widget (QRadioButton, OnTabBar) #: settings/TabBarSettings.ui:195 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "&Detach Tab" +#, kde-format msgid "On &the tab bar" -msgstr "&Dícheangail Cluaisín" +msgstr "Ar an m&barra cluaisíní" #. i18n: ectx: property (text), widget (QRadioButton, None) #: settings/TabBarSettings.ui:205 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not show a close button" msgid "None" -msgstr "N&eamhní" +msgstr "Dada" + +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Taispeáin cnaipe na gCluaisíní Cuardaigh:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "I gcónaí" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Choíche" #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 -#, fuzzy, kde-format -#| msgid "Miscellaneous" +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 +#, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" -msgstr "Rudaí éagsúla" +msgstr "Ilghnéitheach:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 -#, fuzzy, kde-format -#| msgid "Show 'New Tab' and 'Close Tab' buttons" +#: settings/TabBarSettings.ui:287 +#, kde-format msgid "Show 'New Tab' button" -msgstr "Taispeáin cnaipí 'Cluaisín Nua' agus 'Dún an Cluaisín'" +msgstr "Taispeáin an cnaipe 'Cluaisín Nua'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" -msgstr "" +msgstr "Leathnaigh leithead na gcluaisíní aonair go dtí an fhuinneog iomlán" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 -#, fuzzy, kde-format -#| msgid "Use a custom, fixed color for the cursor" +#: settings/TabBarSettings.ui:301 +#, kde-format msgid "Use user-defined stylesheet:" -msgstr "Úsáid dath saincheaptha socraithe le haghaidh an chúrsóra" +msgstr "Use user-defined stylesheet:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" -msgstr "" +msgstr "(níl aon cheann)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 -#, fuzzy, kde-format -#| msgid "Behavior" +#: settings/TabBarSettings.ui:350 +#, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" -msgstr "Oibriú" +msgstr "Iompar" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Create new tab" +#: settings/TabBarSettings.ui:364 +#, kde-format msgid "Put new tabs:" -msgstr "Cruthaigh cluaisín nua" +msgstr "Cuir cluaisíní nua:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 -#, kde-format -msgid "At &the end" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 -#, fuzzy, kde-format -#| msgctxt "@action:button" -#| msgid "Close Current &Tab" -msgid "After current &tab" -msgstr "Dún an &Cluaisín Reatha" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) #: settings/TabBarSettings.ui:374 #, kde-format +msgid "At &the end" +msgstr "Ag &an deireadh" + +#. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) +#: settings/TabBarSettings.ui:384 +#, kde-format +msgid "After current &tab" +msgstr "Tar éis an chluaisín rea&tha" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) +#: settings/TabBarSettings.ui:420 +#, kde-format msgid "Close tab on middle-click" -msgstr "" +msgstr "Dún an cluaisín ar chliceáil sa lár" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 -#, fuzzy, kde-format -#| msgid "Split View" +#: settings/TabBarSettings.ui:443 +#, kde-format msgid "Splits" -msgstr "Amharc Roinnte" +msgstr "Scoilteanna" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 -#, fuzzy, kde-format -#| msgid "Show Menu Bar" +#: settings/TabBarSettings.ui:449 +#, kde-format msgid "Show Header:" -msgstr "Taispeáin an Barra Roghchláir" +msgstr "Taispeáin Ceanntásc:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" -msgstr "" +msgstr "Nuair is gá" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" -msgstr "" +msgstr "Choíche" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" -msgstr "" +msgstr "Méid Láimhseála Tarraingthe:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 -#, fuzzy, kde-format -#| msgctxt "@item:inrange Minimum Size" -#| msgid "Small" +#: settings/TabBarSettings.ui:502 +#, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Beag" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" -msgstr "" +msgstr "Meánach" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 -#, fuzzy, kde-format -#| msgctxt "@item:inrange Maximum Size" -#| msgid "Large" +#: settings/TabBarSettings.ui:522 +#, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Mór" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" -msgstr "" +msgstr "I gcónaí" #: settings/TemporaryFilesSettings.cpp:31 #, kde-format @@ -3332,7 +3362,7 @@ msgctxt "" "@option:radio File location; %1: path to directory " "placeholder" msgid "System temporary directory (%1)" -msgstr "" +msgstr "Eolaire sealadach an chórais (%1)" #: settings/TemporaryFilesSettings.cpp:33 #, kde-format @@ -3340,494 +3370,474 @@ msgctxt "" "@option:radio File location; %1: path to directory " "placeholder" msgid "User cache directory (%1)" -msgstr "" +msgstr "Eolaire taisce úsáideora (%1)" #. i18n: ectx: property (text), widget (QLabel, label_4) #: settings/TemporaryFilesSettings.ui:25 -#, fuzzy, kde-format -#| msgid "Scrollback Options" +#, kde-format msgid "Scrollback file location:" -msgstr "Roghanna Iarscrollaithe" +msgstr "Suíomh comhaid scrollaigh siar:" #. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseSpecifiedLocation) #: settings/TemporaryFilesSettings.ui:64 -#, fuzzy, kde-format -#| msgid "&Custom..." +#, kde-format msgctxt "@option:radio Custom (file location); followed by text entry field" msgid "Custom:" -msgstr "Sain&cheaptha..." +msgstr "Saincheaptha:" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/ThumbnailsSettings.ui:17 #, kde-format msgid "Size:" -msgstr "" +msgstr "Méid:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_ThumbnailSize) #: settings/ThumbnailsSettings.ui:24 #, kde-format msgid "px" -msgstr "" +msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" +"

          Chun an ghné seo a úsáid, cumasaigh Luch->Miscellaneous->Fo-líneáil comhaid i do " +"shocruithe próifíle.

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 -#, fuzzy, kde-format -#| msgctxt "@item" -#| msgid "Activate Menu" +#, kde-format msgid "Activation:" -msgstr "Gníomhachtaigh Roghchlár" +msgstr "Gníomhachtú:" #. i18n: ectx: property (text), widget (QLabel, label_5) #: settings/ThumbnailsSettings.ui:63 #, kde-format msgid "Mouse hover plus" -msgstr "" +msgstr "Luchóg móide" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailShift) #: settings/ThumbnailsSettings.ui:70 #, kde-format msgid "Shift" -msgstr "" +msgstr "Shift" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailAlt) #: settings/ThumbnailsSettings.ui:77 #, kde-format msgid "Alt" -msgstr "" +msgstr "Alt" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailCtrl) #: settings/ThumbnailsSettings.ui:84 #, kde-format msgid "Ctrl" -msgstr "" +msgstr "Ctrl" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableThumbnails) #: settings/ThumbnailsSettings.ui:93 #, kde-format msgid "Enable thumbnails generation" -msgstr "" +msgstr "Cumasaigh giniúint mionsamhlacha" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Méid: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +msgstr[0] "An bhfuil tú cinnte gur mian leat %1 carachtar a ghreamú?" +msgstr[1] "An bhfuil tú cinnte gur mian leat %1 carachtar a ghreamú?" +msgstr[2] "An bhfuil tú cinnte gur mian leat %1 carachtar a ghreamú?" +msgstr[3] "An bhfuil tú cinnte gur mian leat %1 carachtar a ghreamú?" +msgstr[4] "An bhfuil tú cinnte gur mian leat %1 carachtar a ghreamú?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Deimhnigh Greamú" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" +"Deireadh Téacs/Idirbhriseadh: féadfaidh sé an próiseas reatha a fhágáil" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" -msgstr "" +msgstr "Deireadh an Tarchuir: féadfaidh sé an próiseas reatha a fhágáil" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" -msgstr "" +msgstr "Clog: déanfaidh sé iarracht rabhadh inchloiste a scaoileadh" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" -msgstr "" +msgstr "Cúlspás" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" -msgstr "" +msgstr "Rialú Gléas a Trí/XOFF: cuireann sé an t-aschur ar fionraí" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" +"Ionadaigh/Cuir ar Fionraí: féadfaidh sé an próiseas reatha a chur ar fionraí" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" -msgstr "" +msgstr "Éalaithe: a úsáidtear chun staid an teirminéal a ionramháil" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" +"Deighilteoir Comhad/Scoir: féadfaidh sé an próiseas reatha a chur ar ceal" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" +"Tá carachtair rialaithe i bhfolach sa téacs atá tú ag iarraidh a ghreamú, ar " +"mhaith leat iad a scagadh amach?" -#: terminalDisplay/TerminalDisplay.cpp:2326 -#, fuzzy, kde-format -#| msgid "Confirm Paste" +#: terminalDisplay/TerminalDisplay.cpp:2386 +#, kde-format msgctxt "@title" msgid "Confirm Paste" -msgstr "Deimhnigh Greamú" +msgstr "Deimhnigh Greamaigh" -#: terminalDisplay/TerminalDisplay.cpp:2327 -#, fuzzy, kde-format -#| msgid "Set cursor color to match current character" +#: terminalDisplay/TerminalDisplay.cpp:2387 +#, kde-format msgctxt "@action:button" msgid "Paste &without control characters" -msgstr "" -"Socraigh go bhfuil dath an chúrsóra comhoiriúnach do dhath an charachtair " -"reatha" +msgstr "Greamaigh gan carachtair rialaithe" -#: terminalDisplay/TerminalDisplay.cpp:2328 -#, fuzzy, kde-format -#| msgid "Paste Selection" +#: terminalDisplay/TerminalDisplay.cpp:2388 +#, kde-format msgctxt "@action:button" msgid "&Paste everything" -msgstr "Greamaigh Roghnúchán" +msgstr "&Greamaigh gach rud" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" -msgstr "" +msgstr "&Cealaigh" -#: terminalDisplay/TerminalDisplay.cpp:2560 -#, fuzzy, kde-format -#| msgid "" -#| "Output has been suspended by pressing Ctrl+S. Press Ctrl+Q to resume." +#: terminalDisplay/TerminalDisplay.cpp:2620 +#, kde-format msgid "" "Output has been suspended by pressing Ctrl+S. Press Ctrl+Q to resume." msgstr "" -"Cuireadh an t-aschur ar fionraí le Ctrl+S. Brúigh Ctrl+Q chun tosú arís." +"Cuireadh an t-aschur ar fionraí trí Ctrl+S a bhrú. Brúigh Ctrl+Q chun atosú." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." -msgstr "" +msgstr "Is teirminéal léite amháin é seo." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Athraigh an Chomha&dlann Go" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Greamaigh Suíomh" -#: ViewManager.cpp:120 -#, fuzzy, kde-format -#| msgid "Split View" +#: ViewManager.cpp:124 +#, kde-format msgctxt "@action:inmenu" msgid "Split View" -msgstr "Amharc Roinnte" +msgstr "Radharc Scoilte" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Scoilt an tAmharc Clé/Deas" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Scoilt an tAmharc Barr/Bun" -#: ViewManager.cpp:143 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:147 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" -msgstr "Scoilt an tAmharc Barr/Bun" +msgstr "Scoilt an Radharc go hUathoibríoch" -#: ViewManager.cpp:153 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: ViewManager.cpp:157 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" -msgstr "Scoilt an tAmharc Clé/Deas" +msgstr "Radharc Scoilte Ar Chlé/Ar Dheas ón gcéad chluaisín eile" -#: ViewManager.cpp:161 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:165 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" -msgstr "Scoilt an tAmharc Barr/Bun" +msgstr "Radharc Scoilte Barr/Bun ón gcéad chluaisín eile" -#: ViewManager.cpp:169 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:173 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" -msgstr "Scoilt an tAmharc Barr/Bun" +msgstr "Scoilt an Amharc go Huathoibríoch ón gcéad chluaisín eile" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" -msgstr "" +msgstr "Luchtaigh cluaisín nua le leagan amach teirminéil 2x2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" -msgstr "" +msgstr "Luchtaigh cluaisín nua le leagan amach teirminéil 2x1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" -msgstr "" +msgstr "Luchtaigh cluaisín nua le leagan amach teirminéil 1x2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Méadaigh an tAmharc" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Laghdaigh an tAmharc" -#: ViewManager.cpp:223 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "D&etach Current Tab" +#: ViewManager.cpp:227 +#, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" -msgstr "&Dícheangail an Cluaisín Reatha" +msgstr "Dícheangail an &Radharc Reatha" -#: ViewManager.cpp:235 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "D&etach Current Tab" +#: ViewManager.cpp:239 +#, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" -msgstr "&Dícheangail an Cluaisín Reatha" +msgstr "Dícheangail an &Cluaisín Reatha" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "An Chéad Chluaisín Eile" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "An Cluaisín Roimhe Seo" -#: ViewManager.cpp:256 -#, fuzzy, kde-format -#| msgid "Above Terminal Area" +#: ViewManager.cpp:260 +#, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" -msgstr "Os cionn limistéar an teirminéil" +msgstr "Fócas Os Cionn an Teirminéal" -#: ViewManager.cpp:263 -#, fuzzy, kde-format -#| msgid "Below Terminal Area" +#: ViewManager.cpp:267 +#, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" -msgstr "Faoi limistéar an teirminéil" +msgstr "Fócas Faoin Teirminéal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" -msgstr "" +msgstr "Fócas ar an Teirminéal Clé" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" -msgstr "" +msgstr "Fócas ar an Teirminéal ar Dheis" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fócas ar an Teirminéal Eile" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fócas ar an Teirminéal Roimhe Seo" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Go dtí an Cluaisín Deiridh" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" -msgstr "" +msgstr "Cluaisíní Úsáidte Deiridh" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" -msgstr "" +msgstr "Athraigh Idir Dhá Chluaisín" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" -msgstr "" +msgstr "Cluaisíní Úsáidte Deiridh (Ar Ais)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" -msgstr "" +msgstr "Uasmhéadaigh an radharc reatha" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" -msgstr "" - -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, fuzzy, kde-format -#| msgctxt "@action Shortcut entry" -#| msgid "Move Tab Right" -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "Bog an Cluaisín Faoi Dheis" +msgstr "Uasmhéadaigh an radharc reatha" #: ViewManager.cpp:327 -#, fuzzy, kde-format -#| msgctxt "@action Shortcut entry" -#| msgid "Move Tab Left" +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "Scoránaigh súmáil-uasmhéadaigh an radharc reatha" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "Scoránaigh súmáil-uasmhéadaigh an radharc reatha" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "Bog an cluaisín ar dheis" + +#: ViewManager.cpp:343 +#, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" -msgstr "Bog an Cluaisín Faoi Chlé" +msgstr "Bog an cluaisín ar chlé" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" -msgstr "" +msgstr "Socraigh comhtháthú séimeantach (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" -msgstr "" +msgstr "Taispeáin leideanna séimeantacha a scoránaigh" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" -msgstr "" +msgstr "Athraigh taispeáint uimhreacha líne" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" -msgstr "" +msgstr "Méid comhionann do gach radharc" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Téigh go Cluaisín %1" -#: ViewManager.cpp:576 -#, fuzzy, kde-format -#| msgid "Mouse Interaction" +#: ViewManager.cpp:602 +#, kde-format msgid "Semantic hints " -msgstr "Idirghníomhaíocht Luiche" +msgstr "Leideanna seimeantacha " -#: ViewManager.cpp:592 -#, fuzzy, kde-format -#| msgid "Fixed number of lines: " +#: ViewManager.cpp:618 +#, kde-format msgid "Line numbers " -msgstr "Líon socraithe línte: " +msgstr "Uimhreacha líne " -#: ViewManager.cpp:1177 -#, fuzzy, kde-format -#| msgctxt "@action Shortcut entry" -#| msgid "Move Tab Left" +#: ViewManager.cpp:1239 +#, kde-format msgctxt "@title:window" msgid "Save Tab Layout" -msgstr "Bog an Cluaisín Faoi Chlé" +msgstr "Sábháil Leagan Amach na gCluaisíní" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" -msgstr "" +msgstr "Leagan Amach Amhairc Konsole (*.json)" -#: ViewManager.cpp:1192 -#, fuzzy, kde-format -#| msgid "" -#| "A problem occurred when saving the output.\n" -#| "%1" +#: ViewManager.cpp:1257 +#, kde-format msgctxt "@label:textbox" msgid "" "A problem occurred when saving the Layout.\n" "%1" msgstr "" -"Tharla earráid agus an t-aschur á shábháil.\n" +"Tharla fadhb agus an Leagan Amach á shábháil.\n" "%1" -#: ViewManager.cpp:1253 -#, fuzzy, kde-format -#| msgid "" -#| "A problem occurred when saving the output.\n" -#| "%1" +#: ViewManager.cpp:1349 +#, kde-format msgctxt "@label:textbox" msgid "" "A problem occurred when loading the Layout.\n" "%1" msgstr "" -"Tharla earráid agus an t-aschur á shábháil.\n" +"Tharla fadhb agus an Leagan Amach á luchtú.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" -msgstr "" +msgstr "Luchtaigh Leagan Amach na gCluaisíní" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3840,57 +3850,54 @@ msgstr "" #: widgets/EditProfileAdvancedPage.ui:19 #, kde-format msgid "Key combination to show URL hints:" -msgstr "" +msgstr "Teaglaim eochracha chun leideanna URL a thaispeáint:" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierShift) #: widgets/EditProfileAdvancedPage.ui:51 #, kde-format msgctxt "key on keyboard" msgid "Shift" -msgstr "" +msgstr "Shift" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierCtrl) #: widgets/EditProfileAdvancedPage.ui:70 #, kde-format msgctxt "key on keyboard" msgid "Ctrl" -msgstr "" +msgstr "Ctrl" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierAlt) #: widgets/EditProfileAdvancedPage.ui:89 #, kde-format msgctxt "key on keyboard" msgid "Alt" -msgstr "" +msgstr "Alt" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierMeta) #: widgets/EditProfileAdvancedPage.ui:108 #, kde-format msgctxt "key on keyboard" msgid "Meta" -msgstr "" +msgstr "Meitea" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/EditProfileAdvancedPage.ui:154 -#, fuzzy, kde-format -#| msgid "Miscellaneous" +#, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous:" -msgstr "Rudaí éagsúla" +msgstr "Ilghnéitheach:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableReverseUrlHints) #: widgets/EditProfileAdvancedPage.ui:164 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Find the next match for the current search phrase" +#, kde-format msgid "Number URL hints in reverse, starting from the bottom" -msgstr "Aimsigh an chéad sampla eile den fhrása cuardaigh" +msgstr "Uimhrigh leideanna URL ar ais, ag tosú ón mbun" #. i18n: ectx: property (text), widget (QCheckBox, enableReverseUrlHints) #: widgets/EditProfileAdvancedPage.ui:167 #, kde-format msgid "Reverse URL hint numbering" -msgstr "" +msgstr "Uimhriú leid URL droim ar ais" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingTextButton) #: widgets/EditProfileAdvancedPage.ui:180 @@ -3914,55 +3921,64 @@ msgstr "Ceadaigh an t-aschur a chur ar fionraí le Ctrl+S" #: widgets/EditProfileAdvancedPage.ui:199 #, kde-format msgid "Flow control" -msgstr "" +msgstr "Rialú sreabhadh" #. i18n: ectx: property (text), widget (QLabel, label_14) #: widgets/EditProfileAdvancedPage.ui:222 -#, fuzzy, kde-format -#| msgid "Default character encoding:" +#, kde-format msgid "&Default character encoding:" -msgstr "Ionchódú réamhshocraithe carachtar:" +msgstr "&Códú carachtar réamhshocraithe:" #. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) #: widgets/EditProfileAdvancedPage.ui:242 #, kde-format msgid "Shortcut for peeking the primary screen:" -msgstr "" +msgstr "Aicearra chun an príomhscáileán a fheiceáil:" + +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "Socraigh an t-eatramh idir uath-shábháil:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 -#, fuzzy, kde-format -#| msgid "Fixed number of lines: " +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" -msgstr "Líon socraithe línte: " +msgstr "Uimhreacha Líne:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" -msgstr "" +msgstr "&Choíche" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" -msgstr "" +msgstr "Cathain a thaispeántar leideanna &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" -msgstr "" +msgstr "&I gcónaí" #. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) #: widgets/EditProfileAppearancePage.ui:36 -#, fuzzy, kde-format -#| msgid "Color Scheme && Background" +#, kde-format msgid "Color scheme && font" -msgstr "Scéim Datha agus Cúlra" +msgstr "Scéim dathanna && cló" #. i18n: ectx: property (toolTip), widget (QPushButton, newColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:69 @@ -3988,7 +4004,7 @@ msgstr "Cuir an scéim roghnaithe in eagar" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4002,33 +4018,32 @@ msgstr "Scrios an scéim roghnaithe dathanna" #. i18n: ectx: property (toolTip), widget (QPushButton, resetColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:99 -#, fuzzy, kde-format -#| msgid "Delete the selected color scheme" +#, kde-format msgid "Reset the selected color scheme settings to the default values" -msgstr "Scrios an scéim roghnaithe dathanna" +msgstr "" +"Athshocraigh socruithe na scéime dathanna roghnaithe go dtí na luachanna " +"réamhshocraithe" #. i18n: ectx: property (text), widget (QPushButton, resetKeyBindingsButton) #. i18n: ectx: property (text), widget (QPushButton, resetColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:102 #: widgets/EditProfileKeyboardPage.ui:93 -#, fuzzy, kde-format -#| msgid "&Set as Default" +#, kde-format msgid "Defaults" -msgstr "&Socraigh mar Réamhshocrú" +msgstr "Réamhshocruithe" #. i18n: ectx: property (text), widget (QLabel, label_7) #: widgets/EditProfileAppearancePage.ui:135 -#, fuzzy, kde-format -#| msgid "Font" +#, kde-format msgid "Font:" -msgstr "Cló" +msgstr "Cló:" #. i18n: ectx: property (text), widget (QPushButton, chooseFontButton) #: widgets/EditProfileAppearancePage.ui:167 #, kde-format msgctxt "@action:button open a dialog with list of fonts" msgid "Choose..." -msgstr "" +msgstr "Roghnaigh..." #. i18n: ectx: property (text), widget (QCheckBox, antialiasTextButton) #: widgets/EditProfileAppearancePage.ui:174 @@ -4040,19 +4055,27 @@ msgstr "Clónna míne" #: widgets/EditProfileAppearancePage.ui:181 #, kde-format msgid "Draw intense colors in bold font" -msgstr "" +msgstr "Tarraing dathanna láidre i gcló trom" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" +"Úsáid an cló roghnaithe le haghaidh carachtair líne in ionad an chóid " +"ionsuite" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "" +msgstr "Úsáid carachtair líne atá sa chló" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -4061,12 +4084,14 @@ msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" msgstr "" +"Úsáid an cló roghnaithe le haghaidh carachtair Braille Unicode in ionad an " +"chóid ionsuite" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 #, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "" +msgstr "Úsáid carachtair Braille Unicode atá sa chló" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -4078,13 +4103,11 @@ msgstr "Cúrsóir" #: widgets/EditProfileAppearancePage.ui:229 #, kde-format msgid "Shape:" -msgstr "" +msgstr "Cruth:" #. i18n: ectx: property (text), widget (QRadioButton, cursorShapeBlock) #: widgets/EditProfileAppearancePage.ui:239 -#, fuzzy, kde-format -#| msgctxt "The shape of the cursor" -#| msgid "Block" +#, kde-format msgctxt "A solid rectangular" msgid "Block" msgstr "Bloc" @@ -4092,30 +4115,24 @@ msgstr "Bloc" # FCT92! #. i18n: ectx: property (text), widget (QRadioButton, cursorShapeIBeam) #: widgets/EditProfileAppearancePage.ui:249 -#, fuzzy, kde-format -#| msgctxt "The shape of the cursor, similar to a capital I" -#| msgid "I-Beam" +#, kde-format msgctxt "A vertical line on the left edge" msgid "I-Beam" msgstr "I-Bhíoma" #. i18n: ectx: property (text), widget (QRadioButton, cursorShapeUnderline) #: widgets/EditProfileAppearancePage.ui:259 -#, fuzzy, kde-format -#| msgctxt "The shape of the cursor" -#| msgid "Underline" +#, kde-format msgctxt "A hortizonal line on the bottom edge" msgid "Underline" -msgstr "Líne Faoi" +msgstr "Folínigh" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/EditProfileAppearancePage.ui:291 -#, fuzzy, kde-format -#| msgctxt "@label:listbox Column header text for the actual colors" -#| msgid "Color" +#, kde-format msgctxt "Cursor color options" msgid "Color:" -msgstr "Dath" +msgstr "Dath:" #. i18n: ectx: property (toolTip), widget (QRadioButton, autoCursorColorButton) #: widgets/EditProfileAppearancePage.ui:307 @@ -4127,12 +4144,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, autoCursorColorButton) #: widgets/EditProfileAppearancePage.ui:310 -#, fuzzy, kde-format -#| msgid "Set cursor color to match current character" +#, kde-format msgid "Match current character" -msgstr "" -"Socraigh go bhfuil dath an chúrsóra comhoiriúnach do dhath an charachtair " -"reatha" +msgstr "Meaitseáil an carachtar reatha" #. i18n: ectx: property (toolTip), widget (QRadioButton, customCursorColorButton) #: widgets/EditProfileAppearancePage.ui:326 @@ -4142,17 +4156,15 @@ msgstr "Úsáid dath saincheaptha socraithe le haghaidh an chúrsóra" #. i18n: ectx: property (text), widget (QRadioButton, customCursorColorButton) #: widgets/EditProfileAppearancePage.ui:329 -#, fuzzy, kde-format -#| msgid "Custom cursor color:" +#, kde-format msgid "Custom cursor color" -msgstr "Dath saincheaptha an chúrsóra:" +msgstr "Dath cúrsóra saincheaptha" #. i18n: ectx: property (text), widget (QLabel, customCursorColorLabel) #: widgets/EditProfileAppearancePage.ui:360 -#, fuzzy, kde-format -#| msgid "Cursor" +#, kde-format msgid "Cursor:" -msgstr "Cúrsóir" +msgstr "Cúrsóir:" #. i18n: ectx: property (toolTip), widget (KColorButton, customColorSelectButton) #: widgets/EditProfileAppearancePage.ui:373 @@ -4164,21 +4176,20 @@ msgstr "Roghnaigh an dath a úsáidfear chun an cúrsóir a dhearadh" #: widgets/EditProfileAppearancePage.ui:393 #, kde-format msgid "Text:" -msgstr "" +msgstr "Téacs:" #. i18n: ectx: property (toolTip), widget (KColorButton, customTextColorSelectButton) #: widgets/EditProfileAppearancePage.ui:406 -#, fuzzy, kde-format -#| msgid "Select the color used to draw the cursor" +#, kde-format msgid "Select the color used to draw the character underneath the cursor" -msgstr "Roghnaigh an dath a úsáidfear chun an cúrsóir a dhearadh" +msgstr "" +"Roghnaigh an dath a úsáidtear chun an carachtar faoin gcúrsóir a tharraingt" #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/EditProfileAppearancePage.ui:431 -#, fuzzy, kde-format -#| msgid "Blinking cursor" +#, kde-format msgid "Blinking:" -msgstr "Cúrsóir caochta" +msgstr "Ag splancadh:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingCursorButton) #: widgets/EditProfileAppearancePage.ui:447 @@ -4187,233 +4198,236 @@ msgid "Make the cursor blink regularly" msgstr "Cuir an cúrsóir á chaochadh go rialta" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 -#, fuzzy, kde-format -#| msgid "&Enable" +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 +#, kde-format msgid "Enabled" -msgstr "&Cumasaigh" +msgstr "Cumasaithe" + +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 -#, fuzzy, kde-format -#| msgid "Miscellaneous" +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 +#, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" -msgstr "Rudaí éagsúla" +msgstr "Ilghnéitheach" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 -#, fuzzy, kde-format -#| msgid "Window" +#: widgets/EditProfileAppearancePage.ui:510 +#, kde-format msgid "Window:" -msgstr "Fuinneog" +msgstr "Fuinneog:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " "resizing" msgstr "" +"Taispeáin méid an teirminéil i gcolúin agus i línte i lár na fuinneoige tar " +"éis athrú méide" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" -msgstr "" +msgstr "Taispeáin leid maidir le méid an teirminéal tar éis athrú méide" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" -msgstr "" +msgstr "Déan dathanna an téacs roghnaithe a aisiompú i gcónaí" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" -msgstr "" +msgstr "Neart dorchadaithe:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 -#, fuzzy, kde-format -#| msgctxt "@label:listbox Column header text for the actual colors" -#| msgid "Color" +#: widgets/EditProfileAppearancePage.ui:569 +#, kde-format msgctxt "Border color options" msgid "Color:" -msgstr "Dath" +msgstr "Dath:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 -#, fuzzy, kde-format -#| msgid "Select the color used to draw the cursor" +#: widgets/EditProfileAppearancePage.ui:585 +#, kde-format msgid "Select the color used to draw the border" -msgstr "Roghnaigh an dath a úsáidfear chun an cúrsóir a dhearadh" +msgstr "Roghnaigh an dath a úsáidtear chun an teorainn a tharraingt" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 -#, fuzzy, kde-format -#| msgid "Terminal Features" +#: widgets/EditProfileAppearancePage.ui:607 +#, kde-format msgid "Inactive Terminals:" -msgstr "Sainghnéithe an Teirminéil" +msgstr "Teirminéil Neamhghníomhacha:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 -#, fuzzy, kde-format -#| msgid "Terminal Features" +#: widgets/EditProfileAppearancePage.ui:617 +#, kde-format msgid "Active Terminals:" -msgstr "Sainghnéithe an Teirminéil" +msgstr "Teirminéil Ghníomhacha:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 -#, fuzzy, kde-format -#| msgid "Terminal Features" +#: widgets/EditProfileAppearancePage.ui:627 +#, kde-format msgctxt "@title:group" msgid "Terminal contents" -msgstr "Sainghnéithe an Teirminéil" +msgstr "Ábhar an teirminéal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 -#, fuzzy, kde-format -#| msgid "Line Spacing:" +#: widgets/EditProfileAppearancePage.ui:639 +#, kde-format msgid "Line spacing:" -msgstr "Spásáil na Línte:" +msgstr "Spásáil líne:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" -msgstr "" +msgstr "Líon na bpicteilíní idir dhá líne" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" -msgstr "" +msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" -msgstr "" +msgstr "Imill:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 -#, kde-format -msgid "Align to center:" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 -#, kde-format -msgid "Indicate whether the window is active by dimming the colors" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) #: widgets/EditProfileAppearancePage.ui:746 #, kde-format +msgid "Align to center:" +msgstr "Ailínigh go lár:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) +#: widgets/EditProfileAppearancePage.ui:769 +#, kde-format +msgid "Indicate whether the window is active by dimming the colors" +msgstr "Léirigh an bhfuil an fhuinneog gníomhach trí na dathanna a mhaolú" + +#. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) +#: widgets/EditProfileAppearancePage.ui:772 +#, kde-format msgid "Darken" -msgstr "" +msgstr "Dorchaigh" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" -msgstr "" +msgstr "Léirigh an bhfuil an fhuinneog gníomhach trí imeall a tharraingt" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" -msgstr "" +msgstr "Teorainn" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" -msgstr "" +msgstr "Taispeáin líne ingearach ag an gcolún:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " -msgstr "" +msgstr "

          Leagan Amach Téacs Casta

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" -msgstr "" +msgstr "Leagan Amach Téacs Casta" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 -#, fuzzy, kde-format -#| msgid "Enable Bi-Directional text rendering" +#: widgets/EditProfileAppearancePage.ui:887 +#, kde-format msgid "Enable word mode text rendering" -msgstr "Cumasaigh rindreáil déthreoch" +msgstr "Cumasaigh rindreáil téacs i mód focal" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" -msgstr "" +msgstr "Mód focal" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " "when rendering)" msgstr "" +"Déan neamhaird d'athruithe tréithe i lár focal (seachas sin, brisfidh " +"athruithe tréithe an focal agus é á rindreáil)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" -msgstr "" +msgstr "Úsáid na tréithe céanna don fhocal iomlán" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" -msgstr "" +msgstr "Rindreáil focail de charachtair ASCII le chéile" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " -msgstr "" +msgstr "Carachtair ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" -msgstr "" +msgstr "Rindreáil focail charachtair scripte Brahmic le chéile" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 -#, fuzzy, kde-format -#| msgid "Set cursor color to match current character" +#: widgets/EditProfileAppearancePage.ui:938 +#, kde-format msgid "Brahmic scripts characters" -msgstr "" -"Socraigh go bhfuil dath an chúrsóra comhoiriúnach do dhath an charachtair " -"reatha" +msgstr "Carachtair scripteanna Brahmic" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 -#, fuzzy, kde-format -#| msgid "Font" +#: widgets/EditProfileAppearancePage.ui:951 +#, kde-format msgid "Emoji Font:" -msgstr "Cló" +msgstr "Cló Emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4423,100 +4437,97 @@ msgstr "" "Fairsise agus na hEabhraise amháin)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 -#, fuzzy, kde-format -#| msgid "Enable Bi-Directional text rendering" +#: widgets/EditProfileAppearancePage.ui:980 +#, kde-format msgid "Bi-Directional text rendering" -msgstr "Cumasaigh rindreáil déthreoch" +msgstr "Rindreáil téacs déthreoch" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" +"Bíonn línte i gcónaí LTR, seachas iad a chinneadh ag an gcéad charachtar " +"láidir" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" -msgstr "" +msgstr "treo líne fórsa LTR" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." -msgstr "" +msgstr "Déan carachtair líníochta tábla a láimhseáil mar LTR láidir." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" -msgstr "" +msgstr "Carachtair tábla sárú mód dé-dhiosca" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 -#, fuzzy, kde-format -#| msgid "Set cursor color to match current character" +#: widgets/EditProfileAppearancePage.ui:1025 +#, kde-format msgid "Ignore wcwidth of problematic characters" -msgstr "" -"Socraigh go bhfuil dath an chúrsóra comhoiriúnach do dhath an charachtair " -"reatha" +msgstr "Déan neamhaird de wcwidth carachtar fadhbach" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" -msgstr "" +msgstr "Sáraigh wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Cuir Próifíl in Eagar" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Ginearálta" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Cluaisíní" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Cuma" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Scrollú" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Méarchlár" -#: widgets/EditProfileDialog.cpp:152 -#, fuzzy, kde-format -#| msgid "Key Bindings" +#: widgets/EditProfileDialog.cpp:156 +#, kde-format msgid "Key bindings" -msgstr "Ceangail Eochracha" +msgstr "Ceangail eochracha" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Luch" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Casta" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4524,37 +4535,37 @@ msgid "" ">Either change the permissions of that file or set a different name to save " "the settings to a new profile." msgstr "" +"Ceadanna neamhleor chun socruithe a shábháil chuig: %1." +"Athraigh ceadanna an chomhaid sin nó socraigh ainm difriúil chun na " +"socruithe a shábháil chuig próifíl nua." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" +"Bhí Ainm na Próifíle folamh; socraigh ainm le do thoil chun go mbeidh tú in " +"ann socruithe a shábháil." -#: widgets/EditProfileDialog.cpp:312 -#, fuzzy, kde-format -#| msgid "" -#| "A file with this name already exists.\n" -#| "Do you want to overwrite it?" +#: widgets/EditProfileDialog.cpp:316 +#, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." -msgstr "" -"Tá comhad ann cheana agus an t-ainm seo air.\n" -"An bhfuil fonn ort scríobh air?" +msgstr "Tá próifíl leis an ainm \"%1\" ann cheana féin." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." -msgstr "" +msgstr "Sháraigh ainm an phróifíle an fad uasta ceadaithe (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." -msgstr "" +msgstr "Tá na carachtair atá aibhsithe neamhbhailí in ainmneacha próifílí: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4564,113 +4575,110 @@ msgstr[2] "%1 phróifíl á gcur in eagar: %2" msgstr[3] "%1 bpróifíl á gcur in eagar: %2" msgstr[4] "%1 próifíl á gcur in eagar: %2" -#: widgets/EditProfileDialog.cpp:420 -#, fuzzy, kde-format -#| msgid "&New Profile..." +#: widgets/EditProfileDialog.cpp:424 +#, kde-format msgid "Create New Profile" -msgstr "Próifíl &Nua..." +msgstr "Cruthaigh Próifíl Nua" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Cuir Próifíl \"%1\" in Eagar" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " "separate it from the number value." msgid " column" msgid_plural " columns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +msgstr[0] " colún" +msgstr[1] " colúin" +msgstr[2] " colúin" +msgstr[3] " colúin" +msgstr[4] " colúin" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " "separate it from the number value." msgid " row" msgid_plural " rows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +msgstr[0] " ró" +msgstr[1] " rónna" +msgstr[2] " rónna" +msgstr[3] " rónna" +msgstr[4] " rónna" -#: widgets/EditProfileDialog.cpp:526 -#, fuzzy, kde-format -#| msgid "System &Bell" +#: widgets/EditProfileDialog.cpp:561 +#, kde-format msgid "System Bell" -msgstr "&Cloigín an Chórais" +msgstr "Clog an Chórais" -#: widgets/EditProfileDialog.cpp:526 -#, fuzzy, kde-format -#| msgid "System &Notification" +#: widgets/EditProfileDialog.cpp:561 +#, kde-format msgid "System Notifications" -msgstr "&Fógairt an Chórais" +msgstr "Fógraí Córais" -#: widgets/EditProfileDialog.cpp:526 -#, fuzzy, kde-format -#| msgid "&Visible Bell" +#: widgets/EditProfileDialog.cpp:561 +#, kde-format msgid "Visual Bell" -msgstr "&Cloigín Infheicthe" +msgstr "Clog Amhairc" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" -msgstr "" +msgstr "Déan neamhaird d'imeachtaí Bell" -#: widgets/EditProfileDialog.cpp:535 -#, fuzzy, kde-format -#| msgid "Set the selected profile as the default for new terminal sessions" +#: widgets/EditProfileDialog.cpp:570 +#, kde-format msgid "Default profile for new terminal sessions in %1" -msgstr "" -"Socraigh an phróifíl roghnaithe mar réamhshocrú i seisiúin nua teirminéil" +msgstr "Próifíl réamhshocraithe do sheisiúin teirminéal nua i %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Cuir Timpeallacht in Eagar" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" -msgstr "" +msgstr "Athróg timpeallachta amháin in aghaidh an líne" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +msgstr[0] " soicind" +msgstr[1] " soicindí" +msgstr[2] " soicindí" +msgstr[3] " soicindí" +msgstr[4] " soicindí" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Roghnaigh Comhadlann Tosaigh" -#: widgets/EditProfileDialog.cpp:946 -#, fuzzy, kde-format -#| msgctxt "@action:button Create an alternate color scheme" -#| msgid "New..." +#: widgets/EditProfileDialog.cpp:1003 +#, kde-format msgid "Get New..." -msgstr "Nua..." +msgstr "Faigh Nua..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." -msgstr "" +msgstr "Theip ar luchtú na scéime %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4679,20 +4687,21 @@ msgstr "" "Tá cúlra trédhearcach ag an scéim datha seo ach ní thacaíonn do dheasc leis " "seo." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" +"Cuireadh tús le Konsole sular cumasaíodh éifeachtaí deisce. Ní mór duit " +"Konsole a atosú chun an cúlra trédhearcach a fheiceáil." -#: widgets/EditProfileDialog.cpp:1913 -#, fuzzy, kde-format -#| msgid "Default profile" +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format msgid "Default for file type" -msgstr "Próifíl réamhshocraithe" +msgstr "Réamhshocrú don chineál comhaid" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4708,18 +4717,28 @@ msgid "" "will be ignored and the file will be opened by the default text\n" "editor." msgstr "" +"Is é an fhormáid m.sh. 'editorExec PATH:LINE:COLUMN'\n" +"\n" +"Cuirfear an cosán chuig an gcomhad téacs in ionad PATH\n" +"Cuirfear uimhir na líne in ionad LINE\n" +"Cuirfear uimhir an cholúin in ionad COLUMN (roghnach)\n" +"Nóta: beidh ort 'PATH:LINE:COLUMN' a athsholáthar leis an gcomhréir iarbhír " +"a dtacaíonn an t-eagarthóir is mian leat a úsáid leis; m.sh.:\n" +"gedit +LINE:COLUMN PATH\n" +"\n" +"Mura bhfuil PATH nó LINE i láthair san ordú, déanfar neamhaird den socrú seo " +"agus osclóidh an t-eagarthóir téacs réamhshocraithe an comhad." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" -msgstr "" +msgstr "Ordú Saincheaptha Eagarthóra Téacs" #. i18n: ectx: attribute (title), widget (QWidget, general) #: widgets/EditProfileGeneralPage.ui:42 -#, fuzzy, kde-format -#| msgid "Default character encoding:" +#, kde-format msgid "General Settings" -msgstr "Ionchódú réamhshocraithe carachtar:" +msgstr "Socruithe Ginearálta" #. i18n: ectx: property (toolTip), widget (QPushButton, iconSelectButton) #: widgets/EditProfileGeneralPage.ui:66 @@ -4736,18 +4755,16 @@ msgstr "Ainm tuairisciúil ar an bpróifíl" #. i18n: ectx: property (placeholderText), widget (QLineEdit, profileNameEdit) #: widgets/EditProfileGeneralPage.ui:87 -#, fuzzy, kde-format -#| msgid "Profile name:" +#, kde-format msgctxt "@label:textbox" msgid "Profile name" -msgstr "Ainm na próifíle:" +msgstr "Ainm próifíle" #. i18n: ectx: property (text), widget (QCheckBox, setAsDefaultButton) #: widgets/EditProfileGeneralPage.ui:94 -#, fuzzy, kde-format -#| msgid "Default profile" +#, kde-format msgid "Default Profile" -msgstr "Próifíl réamhshocraithe" +msgstr "Próifíl Réamhshocraithe" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/EditProfileGeneralPage.ui:125 @@ -4769,14 +4786,13 @@ msgstr "" #: widgets/EditProfileGeneralPage.ui:144 #, kde-format msgid "/bin/sh" -msgstr "" +msgstr "/bin/sh" #. i18n: ectx: property (text), widget (QLabel, label_9) #: widgets/EditProfileGeneralPage.ui:157 -#, fuzzy, kde-format -#| msgid "Initial directory:" +#, kde-format msgid "I&nitial directory:" -msgstr "Comhadlann tosaigh:" +msgstr "E&olaire tosaigh:" #. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:170 @@ -4791,7 +4807,7 @@ msgstr "" #: widgets/EditProfileGeneralPage.ui:176 #, kde-format msgid "/home/username" -msgstr "" +msgstr "/home/ainm-úsáideora" #. i18n: ectx: property (toolTip), widget (QToolButton, dirSelectButton) #: widgets/EditProfileGeneralPage.ui:183 @@ -4801,33 +4817,58 @@ msgstr "Roghnaigh an bhunchomhadlann" #. i18n: ectx: property (text), widget (QCheckBox, startInSameDirButton) #: widgets/EditProfileGeneralPage.ui:193 -#, fuzzy, kde-format -#| msgid "Start in same directory as current tab" +#, kde-format msgid "Start in same directory as current session" -msgstr "Tosaigh sa chomhadlann chéanna leis an gcluaisín reatha" +msgstr "Tosaigh san eolaire céanna leis an seisiún reatha" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Timpeallacht:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" "Cuir na hathróga timpeallachta agus na luachanna comhcheangailte leo in eagar" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 -#, fuzzy, kde-format -#| msgid "Terminal Features" +#: widgets/EditProfileGeneralPage.ui:320 +#, kde-format msgid "Initial terminal si&ze:" -msgstr "Sainghnéithe an Teirminéil" +msgstr "Méi&d teirminéal tosaigh:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4835,114 +4876,107 @@ msgid "" "Configure Konsole → General → Remember window size must be disabled " "for these entries to work.

          " msgstr "" +"

          Socruithe → " +"Cumraigh Konsole → Ginearálta → Cuimhnigh méid na fuinneoige. ní mór " +"é a bheith díchumasaithe chun go n-oibreoidh na hiontrálacha seo.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 -#, fuzzy, kde-format -#| msgctxt "@title" -#| msgid "Terminal emulator" +#: widgets/EditProfileGeneralPage.ui:411 +#, kde-format msgid "&Terminal bell mode:" -msgstr "Aithriseoir teirminéil" +msgstr "Mód cloigín &teirminéil:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 -#, fuzzy, kde-format -#| msgid "Mouse Interaction" +#: widgets/EditProfileGeneralPage.ui:429 +#, kde-format msgid "Semantic Integration" -msgstr "Idirghníomhaíocht Luiche" +msgstr "Comhtháthú Seimeantach" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" -msgstr "" +msgstr "Aithris Saigheada Suas/Síos" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" -msgstr "" +msgstr "Bogann cliceáil luiche sa líne ionchuir an cúrsóir" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" -msgstr "" +msgstr "Leideanna seimeantacha:" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsNever) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" -msgstr "" +msgstr "Choíche" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsURL) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" -msgstr "" +msgstr "Nuair a thaispeántar leideanna URL" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" -msgstr "" +msgstr "I gcónaí" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" -msgstr "" +msgstr "Barraí earráide dearga:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 -#, fuzzy, kde-format -#| msgctxt "@item:intable palette" -#| msgid "Background" +#: widgets/EditProfileGeneralPage.ui:547 +#, kde-format msgid "Red error background:" -msgstr "Cúlra" +msgstr "Cúlra earráide dearg:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" -msgstr "" +msgstr "Barraí malartacha:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 -#, fuzzy, kde-format -#| msgctxt "@item:intable palette" -#| msgid "Background" +#: widgets/EditProfileGeneralPage.ui:639 +#, kde-format msgid "Alternating background:" -msgstr "Cúlra" +msgstr "Cúlra malartach:" #. i18n: ectx: property (text), widget (QLabel, note) #: widgets/EditProfileKeyboardPage.ui:17 -#, fuzzy, kde-format -#| msgid "" -#| "Key bindings control how combinations of keystrokes in the terminal " -#| "window are converted into the stream of characters which are sent to the " -#| "current terminal program." +#, kde-format msgctxt "@info" msgid "" "Key bindings control how combinations of keystrokes in the terminal window " @@ -4950,18 +4984,17 @@ msgid "" "terminal program. For more information on how to customize the key bindings " "check the Konsole Handbook." msgstr "" -"Leis na ceangail eochracha, is féidir leat rialú conas a thiontaíonn " -"eochairbhrúnna i bhfuinneog an teirminéil go sruth carachtar a sheoltar " -"chuig an fheidhmchlár atá ag rith sa teirminéal faoi láthair." +"Rialaíonn ceangail eochracha conas a thiontaítear teaglamaí de bhuillí " +"eochracha sa fhuinneog teirminéal go sruth carachtar a sheoltar ansin chuig " +"an gclár teirminéal reatha. Le haghaidh tuilleadh eolais ar conas na " +"ceangail eochracha a shaincheapadh, féach ar Lámhleabhar Konsole." #. i18n: ectx: property (toolTip), widget (QPushButton, newKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:60 -#, fuzzy, kde-format -#| msgid "Create a new key bindings list based upon the selected bindings" +#, kde-format msgid "Create a new key bindings scheme based upon the selected bindings" msgstr "" -"Cruthaigh liosta nua eochracha comhcheangailte bunaithe ar na comhcheangail " -"roghnaithe" +"Cruthaigh scéim cheangail eochracha nua bunaithe ar na ceangail roghnaithe" #. i18n: ectx: property (text), widget (QPushButton, newKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:63 @@ -4972,146 +5005,140 @@ msgstr "Nua..." #. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:70 -#, fuzzy, kde-format -#| msgid "Edit the selected key bindings list" +#, kde-format msgid "Edit the selected key bindings scheme" -msgstr "Cuir an liosta eochracha comhcheangailte atá roghnaithe in eagar" +msgstr "Cuir an scéim ceangail eochracha roghnaithe in eagar" #. i18n: ectx: property (toolTip), widget (QPushButton, removeKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:80 -#, fuzzy, kde-format -#| msgid "Delete the selected key bindings list" +#, kde-format msgid "Delete the selected key bindings scheme" -msgstr "Scrios an liosta eochracha comhcheangailte atá roghnaithe" +msgstr "Scrios an scéim cheangail eochracha roghnaithe" #. i18n: ectx: property (toolTip), widget (QPushButton, resetKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:90 -#, fuzzy, kde-format -#| msgid "Delete the selected color scheme" +#, kde-format msgid "Reset the selected key bindings scheme to its default values" -msgstr "Scrios an scéim roghnaithe dathanna" +msgstr "" +"Athshocraigh an scéim cheangail eochracha roghnaithe go dtí a luachanna " +"réamhshocraithe" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: widgets/EditProfileMousePage.ui:36 -#, fuzzy, kde-format -#| msgid "Mouse Interaction" +#, kde-format msgid "Text interaction" -msgstr "Idirghníomhaíocht Luiche" +msgstr "Idirghníomhaíocht téacs" #. i18n: ectx: property (toolTip), widget (QLabel, label_11) #. i18n: ectx: property (toolTip), widget (QLineEdit, wordCharacterEdit) #: widgets/EditProfileMousePage.ui:50 widgets/EditProfileMousePage.ui:71 -#, fuzzy, kde-format -#| msgid "" -#| "Characters which are considered part of a word when double-clicking to " -#| "select whole words in the terminal" +#, kde-format msgctxt "@info:tooltip" msgid "" "Characters which are considered part of a word when double-clicking to " "select whole words in the terminal." msgstr "" -"Carachtair nach mbeidh cuid den fhocal nuair a chliceálfaidh tú faoi dhó " -"chun focal iomlán a roghnú sa teirminéal" +"Carachtair a mheastar a bheith mar chuid de fhocal nuair a chliceálann tú " +"faoi dhó chun focail iomlána a roghnú sa teirminéal." #. i18n: ectx: property (text), widget (QLabel, label_11) #: widgets/EditProfileMousePage.ui:53 #, kde-format msgid "Word characters:" -msgstr "" +msgstr "Carachtair focal:" #. i18n: ectx: property (text), widget (QLabel, label_17) #: widgets/EditProfileMousePage.ui:94 #, kde-format msgid "Triple-click selects:" -msgstr "" +msgstr "Roghnaigh trí chliceáil:" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) #: widgets/EditProfileMousePage.ui:104 -#, fuzzy, kde-format -#| msgid "The whole current line" +#, kde-format msgid "&The whole line" -msgstr "An líne reatha ina hiomláine" +msgstr "&An líne iomlán" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 #, kde-format msgid "From mouse position to the end of &line" -msgstr "" +msgstr "Ó shuíomh na luiche go dtí deireadh na &líne" #. i18n: ectx: property (text), widget (QLabel, label_13) #: widgets/EditProfileMousePage.ui:140 #, kde-format msgid "Middle-click pastes:" -msgstr "" +msgstr "Greamaigh cliceáil sa lár:" #. i18n: ectx: property (text), widget (QRadioButton, pasteFromClipboardButton) #: widgets/EditProfileMousePage.ui:150 -#, fuzzy, kde-format -#| msgid "Paste from selection" +#, kde-format msgid "From clipboard" -msgstr "Greamaigh ón roghnúchán" +msgstr "Ón ghearrthaisce" #. i18n: ectx: property (text), widget (QRadioButton, pasteFromX11SelectionButton) #: widgets/EditProfileMousePage.ui:160 -#, fuzzy, kde-format -#| msgid "Paste from selection" +#, kde-format msgid "From selection" -msgstr "Greamaigh ón roghnúchán" +msgstr "Ó rogha" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/EditProfileMousePage.ui:186 -#, fuzzy, kde-format -#| msgid "Cursor Options" +#, kde-format msgid "Copy options:" -msgstr "Roghanna an Chúrsóra" +msgstr "Roghanna cóipeála:" #. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextToClipboardButton) #: widgets/EditProfileMousePage.ui:196 #, kde-format msgid "Automatically copy selected text into clipboard" -msgstr "" +msgstr "Cóipeáil an téacs roghnaithe go huathoibríoch isteach sa ghearrthaisce" #. i18n: ectx: property (text), widget (QCheckBox, copyTextToClipboardButton) #: widgets/EditProfileMousePage.ui:199 #, kde-format msgid "Copy on select" -msgstr "" +msgstr "Cóipeáil ar rogha" #. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextAsHTMLButton) #: widgets/EditProfileMousePage.ui:206 #, kde-format msgid "Copy text as HTML (including formatting, font faces, colors... etc)" msgstr "" +"Cóipeáil téacs mar HTML (lena n-áirítear formáidiú, clónna, dathanna... srl.)" #. i18n: ectx: property (text), widget (QCheckBox, copyTextAsHTMLButton) #: widgets/EditProfileMousePage.ui:209 #, kde-format msgid "Copy text as HTML" -msgstr "" +msgstr "Cóipeáil téacs mar HTML" #. i18n: ectx: property (toolTip), widget (QCheckBox, trimLeadingSpacesButton) #: widgets/EditProfileMousePage.ui:216 #, kde-format msgid "Trim leading spaces in selected text, useful in some instances" msgstr "" +"Bearr spásanna tosaigh i dtéacs roghnaithe, úsáideach i gcásanna áirithe" #. i18n: ectx: property (text), widget (QCheckBox, trimLeadingSpacesButton) #: widgets/EditProfileMousePage.ui:219 #, kde-format msgid "Trim leading spaces" -msgstr "" +msgstr "Bearr spásanna tosaigh" #. i18n: ectx: property (toolTip), widget (QCheckBox, trimTrailingSpacesButton) #: widgets/EditProfileMousePage.ui:226 #, kde-format msgid "Trim trailing spaces in selected text, useful in some instances" msgstr "" +"Bearr spásanna deiridh i dtéacs roghnaithe, úsáideach i gcásanna áirithe" #. i18n: ectx: property (text), widget (QCheckBox, trimTrailingSpacesButton) #: widgets/EditProfileMousePage.ui:229 #, kde-format msgid "Trim trailing spaces" -msgstr "" +msgstr "Bearr spásanna deiridh" #. i18n: ectx: property (toolTip), widget (QCheckBox, underlineLinksButton) #: widgets/EditProfileMousePage.ui:266 @@ -5120,13 +5147,14 @@ msgid "" "Text recognized as a link or an email address will be underlined when " "hovered by the mouse pointer." msgstr "" +"Beidh líne faoi théacs a aithnítear mar nasc nó mar sheoladh ríomhphoist " +"nuair a bheidh an luchóg ag gluaiseacht thar an téacs." #. i18n: ectx: property (text), widget (QCheckBox, underlineLinksButton) #: widgets/EditProfileMousePage.ui:269 -#, fuzzy, kde-format -#| msgid "Underline links" +#, kde-format msgid "Underline links" -msgstr "Cuir Línte Faoi Naisc" +msgstr "Cuir líne faoi naisc" #. i18n: ectx: property (toolTip), widget (QCheckBox, underlineFilesButton) #: widgets/EditProfileMousePage.ui:276 @@ -5135,13 +5163,14 @@ msgid "" "Text recognized as a file will be underlined when hovered by the mouse " "pointer." msgstr "" +"Beidh líne faoi théacs a aithnítear mar chomhad nuair a bheidh pointeoir na " +"luiche ag luí thar an téacs." #. i18n: ectx: property (text), widget (QCheckBox, underlineFilesButton) #: widgets/EditProfileMousePage.ui:279 -#, fuzzy, kde-format -#| msgid "Underline links" +#, kde-format msgid "Underline files" -msgstr "Cuir Línte Faoi Naisc" +msgstr "Cuir líne faoi chomhaid" #. i18n: ectx: property (toolTip), widget (QLabel, textEditorCommandLabel) #. i18n: ectx: property (toolTip), widget (QComboBox, textEditorCombo) @@ -5150,12 +5179,14 @@ msgstr "Cuir Línte Faoi Naisc" msgctxt "@info:tooltip" msgid "Text editor to use when opening text file URLs at a given line/column." msgstr "" +"Eagarthóir téacs le húsáid agus URLanna comhad téacs á n-oscailt ag líne/" +"colún ar leith." #. i18n: ectx: property (text), widget (QLabel, textEditorCommandLabel) #: widgets/EditProfileMousePage.ui:291 #, kde-format msgid "Text Editor Command: " -msgstr "" +msgstr "Ordú Eagarthóra Téacs: " #. i18n: ectx: property (toolTip), widget (QCheckBox, openLinksByDirectClickButton) #: widgets/EditProfileMousePage.ui:335 @@ -5164,18 +5195,20 @@ msgid "" "Text recognized as a file, link or an email address can be opened by direct " "mouse click." msgstr "" +"Is féidir téacs a aithnítear mar chomhad, nasc nó seoladh ríomhphoist a " +"oscailt trí chliceáil dhíreach ar an luch." #. i18n: ectx: property (text), widget (QCheckBox, openLinksByDirectClickButton) #: widgets/EditProfileMousePage.ui:338 #, kde-format msgid "Open files/links by direct click" -msgstr "" +msgstr "Oscail comhaid/naisc le cliceáil dhíreach" #. i18n: ectx: property (text), widget (QCheckBox, allowLinkEscapeSequenceButton) #: widgets/EditProfileMousePage.ui:349 #, kde-format msgid "Allow escape sequences for links" -msgstr "" +msgstr "Ceadaigh seichimh éalaithe do naisc" #. i18n: ectx: property (text), widget (QLabel, allowLinkEscapeSequenceButtonWarning) #: widgets/EditProfileMousePage.ui:356 @@ -5185,31 +5218,35 @@ msgid "" "to be shown as another URL or hidden.
          Make sure you understand the " "implications before turning this on." msgstr "" +"RABHADH: Tá impleachtaí slándála leis seo mar go gceadaíonn sé " +"URLanna mailíseacha a thaispeáint mar URL eile nó a cheilt.
          Déan cinnte " +"go dtuigeann tú na himpleachtaí sula gcuireann tú seo ar siúl." #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/EditProfileMousePage.ui:374 -#, fuzzy, kde-format -#| msgid "Allow blinking text" +#, kde-format msgid "Allowed link formats: " -msgstr "Ceadaigh téacs caochta" +msgstr "Formáidí nasc ceadaithe: " #. i18n: ectx: property (toolTip), widget (QLineEdit, linkEscapeSequenceTexts) #: widgets/EditProfileMousePage.ui:384 #, kde-format msgid "The formats of possible links, like http://, https:// and file://" -msgstr "" +msgstr "Na formáidí nasc féideartha, amhail http://, https:// agus file://" #. i18n: ectx: property (toolTip), widget (QCheckBox, ctrlRequiredForDragButton) #: widgets/EditProfileMousePage.ui:395 #, kde-format msgid "Selected text will require control key plus click to drag." msgstr "" +"Beidh an eochair rialaithe móide cliceáil chun an téacs roghnaithe a " +"tharraingt ag teastáil." #. i18n: ectx: property (text), widget (QCheckBox, ctrlRequiredForDragButton) #: widgets/EditProfileMousePage.ui:398 #, kde-format msgid "Require Ctrl key for drag && drop" -msgstr "" +msgstr "Éilítear eochair Ctrl le haghaidh tarraingt && scaoil" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableAlternateScrollingButton) #: widgets/EditProfileMousePage.ui:405 @@ -5218,12 +5255,14 @@ msgid "" "Mouse scroll wheel will emulate up/down key presses in programs that use the " "Alternate Screen buffer (e.g. less)" msgstr "" +"Déanfaidh roth scrolla na luiche aithris ar bhrúnna eochracha suas/síos i " +"gcláir a úsáideann an maolán Scáileáin Mhalartach (m.sh. níos lú)" #. i18n: ectx: property (text), widget (QCheckBox, enableAlternateScrollingButton) #: widgets/EditProfileMousePage.ui:408 #, kde-format msgid "Enable Alternate Screen buffer scrolling" -msgstr "" +msgstr "Cumasaigh scrollú maoláin Scáileáin Mhalartach" #. i18n: ectx: property (toolTip), widget (QCheckBox, dropUrlsAsText) #: widgets/EditProfileMousePage.ui:415 @@ -5232,24 +5271,26 @@ msgid "" "Always paste dropped files and URLs as text without offering move, copy and " "link actions." msgstr "" +"Greamaigh comhaid agus URLanna a scaoiltear mar théacs i gcónaí gan " +"gníomhartha bogtha, cóipeála ná nasctha a thairiscint." #. i18n: ectx: property (text), widget (QCheckBox, dropUrlsAsText) #: widgets/EditProfileMousePage.ui:418 #, kde-format msgid "Disable drag && drop menu for files && URLs" -msgstr "" +msgstr "Díchumasaigh an roghchlár tarraing & scaoil do chomhaid agus URLanna" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableMouseWheelZoomButton) #: widgets/EditProfileMousePage.ui:425 #, kde-format msgid "Pressing Ctrl+scrollwheel will increase/decrease the text size." -msgstr "" +msgstr "Méadóidh/laghdóidh brú Ctrl+roth scrollaigh méid an téacs." #. i18n: ectx: property (text), widget (QCheckBox, enableMouseWheelZoomButton) #: widgets/EditProfileMousePage.ui:428 #, kde-format msgid "Allow Ctrl+scrollwheel to zoom text size" -msgstr "" +msgstr "Ceadaigh Ctrl+roth scrollaigh méid an téacs a shúmáil" #. i18n: ectx: property (toolTip), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:435 @@ -5258,12 +5299,14 @@ msgid "" "When positioning the mouse over a hexadecimal color it will be displayed in " "a frame next to the mouse pointer" msgstr "" +"Nuair a chuirtear an luch os cionn dath heicsidheachúlach, taispeánfar é i " +"bhfráma in aice leis an pointeoir luiche." #. i18n: ectx: property (text), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:438 #, kde-format msgid "Preview Colors on hover" -msgstr "" +msgstr "Réamhamharc ar na Dathanna ar an luchóg" #. i18n: ectx: property (toolTip), widget (QCheckBox, allowMouseTrackingButton) #: widgets/EditProfileMousePage.ui:458 @@ -5272,135 +5315,144 @@ msgid "" "Some terminal applications have mouse support, this allows them to get it by " "default. It can be toggled on/off while running as well." msgstr "" +"Tá tacaíocht luiche ag roinnt feidhmchlár teirminéal, rud a ligeann dóibh é " +"a fháil de réir réamhshocraithe. Is féidir é a chasadh air/as agus é ag rith " +"chomh maith." #. i18n: ectx: property (text), widget (QCheckBox, allowMouseTrackingButton) #: widgets/EditProfileMousePage.ui:461 #, kde-format msgid "Allow terminal applications to handle clicks and drags" -msgstr "" +msgstr "Lig d’fheidhmchláir teirminéal cliceáil agus tarraingt a láimhseáil" #. i18n: ectx: property (text), widget (QLabel, historySizeLabel) #: widgets/EditProfileScrollingPage.ui:25 -#, fuzzy, kde-format -#| msgid "Scrollback" +#, kde-format msgid "Scrollback:" -msgstr "Iarscrollú" +msgstr "Scrollaigh siar:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" -msgstr "" +msgstr "Scrollaigh Leathanach Suas/Síos:" + +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Aibhsigh na línte atá ag teacht chun solais" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "I bhfolach" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Méid gach marcóra (mar chéatadán de fhad an bharra scrollaithe):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Ag aibhsiú:" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" -msgstr "" +msgstr "Scrollaigh an leathanach leath airde na fuinneoige" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" -msgstr "" +msgstr "Airde lea&thscáileáin" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Dath marcóirí scrollbharra:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Dath línte aibhsithe cuardaigh scrollbharra:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Línte Athshreafa:" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" -msgstr "" +msgstr "Scrollaigh an leathanach airde iomlán na fuinneoige" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Ionad bharra na gcluaisíní:" +msgstr "Airde lánscáileáin" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Taispeáin an scrollbharra ar thaobh na láimhe deise den teirminéal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" -msgstr "Taispeáin ar thaobh na láimhe deise" +msgstr "T&aobh deas" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Taispeáin an scrollbharra ar thaobh na láimhe clé den teirminéal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" -msgstr "Clómhéid:" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgctxt "@option:radio Conceal the scroll bar" -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Folaithe" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" +msgstr "&Taobh clé" #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" -msgstr "" +msgstr "Athshreabhadh línte nuair a athraítear méid an teirminéal" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Suíomh an bharra scrollaithe:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "" +msgid "Search highlighting line opacity:" +msgstr "Teimhneacht líne aibhsithe cuardaigh:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5412,33 +5464,30 @@ msgstr "Teidil na gCluaisíní" #: widgets/EditProfileTabsPage.ui:65 #, kde-format msgid "Tab Monitoring" -msgstr "" +msgstr "Monatóireacht Cluaisíní" #. i18n: ectx: property (text), widget (QLabel, silenceSecondsLabel) #: widgets/EditProfileTabsPage.ui:80 #, kde-format msgid "Threshold for continuous silence:" -msgstr "" +msgstr "Tairseach le haghaidh tost leanúnach:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, silenceSecondsSpinner) #: widgets/EditProfileTabsPage.ui:93 #, kde-format msgid "The threshold for continuous silence to be detected by Konsole" -msgstr "" +msgstr "An tairseach le haghaidh tost leanúnach atá le braith ag Konsole" #: widgets/HistorySizeWidget.cpp:40 -#, fuzzy, kde-format -#| msgctxt "Unit of scrollback" -#| msgid " line" -#| msgid_plural " lines" +#, kde-format msgctxt "@label:textbox Unit of scrollback" msgid " line" msgid_plural " lines" msgstr[0] " líne" -msgstr[1] " líne" -msgstr[2] " líne" -msgstr[3] " líne" -msgstr[4] " líne" +msgstr[1] " línte" +msgstr[2] " línte" +msgstr[3] " línte" +msgstr[4] " línte" #: widgets/HistorySizeWidget.cpp:57 #, kde-format @@ -5448,6 +5497,9 @@ msgid "" "choose a huge value, your system may run out of free RAM and cause serious " "issues with your system." msgstr "" +"Agus an rogha seo á úsáid, sábhálfar na sonraí scrollaigh siar chuig RAM. Má " +"roghnaíonn tú luach ollmhór, d’fhéadfadh do chóras rith as RAM saor in aisce " +"agus fadhbanna tromchúiseacha a chruthú leis." #: widgets/HistorySizeWidget.cpp:69 #, kde-kuit-format @@ -5459,6 +5511,11 @@ msgid "" "Konsole → Temporary Files to select the location of the temporary " "files." msgstr "" +"Agus an rogha seo á úsáid, scríobhfar na sonraí scrollaigh siar gan chriptiú " +"chuig comhaid shealadacha. Scriosfar na comhaid shealadacha sin go " +"huathoibríoch nuair a dhúnfar Konsole ar an ngnáthbhealach.Úsáid " +"Socruithe → Cumraigh Konsole → Comhaid Shealadacha chun " +"suíomh na gcomhad sealadach a roghnú." #. i18n: ectx: property (toolTip), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:60 @@ -5468,10 +5525,9 @@ msgstr "Ná meabhraigh níos mó ná líon socraithe línte" #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 -#, fuzzy, kde-format -#| msgid "Fixed size scrollback:" +#, kde-format msgid "Fi&xed size:" -msgstr "Iarscrollú buanmhéide:" +msgstr "Méid socraithe:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 @@ -5487,8 +5543,7 @@ msgstr "Meabhraigh an t-aschur go léir a dhéanann an teirminéal" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgid "&Set Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" msgstr "&Gan Teorainn" @@ -5501,46 +5556,42 @@ msgstr "Ná meabhraigh an t-aschur roimhe seo" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" -msgstr "N&eamhní" +msgstr "&Dada" -#: widgets/IncrementalSearchBar.cpp:49 -#, fuzzy, kde-format -#| msgctxt "@label:textbox" -#| msgid "Find:" +#: widgets/IncrementalSearchBar.cpp:50 +#, kde-format msgctxt "@label:textbox" msgid "Find..." -msgstr "Aimsigh:" +msgstr "Aimsigh..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" -msgstr "" +msgstr "Cuir isteach an téacs atá le cuardach anseo" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Ar Aghaidh" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Aimsigh an chéad sampla eile den fhrása cuardaigh" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Roimhe Seo" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5548,104 +5599,92 @@ msgstr "Aimsigh an sampla roimhe seo den fhrása cuardaigh" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Dún an barra cuardaigh" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Cásíogair" +msgstr "Cás-íogair" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Socraigh cé acu an bhfuil an cuardach cásíogair nó nach bhfuil" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Taispeáin an roghchlár roghanna" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Dún an barra cuardaigh" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Comhoiriúnaigh do shlonn ionadaíochta" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Aibhsigh uile" -#: widgets/IncrementalSearchBar.cpp:130 -#, fuzzy, kde-format -#| msgid "Sets whether matching text should be highlighted" +#: widgets/IncrementalSearchBar.cpp:137 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" -msgstr "" -"Socraigh cé acu an n-aibhsítear téacs comhoiriúnach nó nach n-aibhsítear" - -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Aimsigh an chéad sampla eile den fhrása cuardaigh" +msgstr "Socraíonn sé an bhfuil téacs comhoiriúnach le haibhsiú nó nach bhfuil" #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" -msgstr "" +msgid "Search backwards" +msgstr "Cuardaigh ar gcúl" #: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Find the next match for the current search phrase" +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Socraíonn sé an dtosóidh an cuardach ón mbun" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "Gan fillteán" + +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" -msgstr "Aimsigh an chéad sampla eile den fhrása cuardaigh" +msgstr "Socraíonn sé an gcuardach a stopadh in ionad é a fhilleadh" -#: widgets/IncrementalSearchBar.cpp:171 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Find the next match for the current search phrase" +#: widgets/IncrementalSearchBar.cpp:184 +#, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" -msgstr "Aimsigh an chéad sampla eile den fhrása cuardaigh" +msgstr "Cuardaigh an frása cuardaigh reatha ón mbun" -#: widgets/IncrementalSearchBar.cpp:176 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Find the next match for the current search phrase" +#: widgets/IncrementalSearchBar.cpp:189 +#, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" -msgstr "Aimsigh an chéad sampla eile den fhrása cuardaigh" +msgstr "Cuardaigh an frása cuardaigh reatha ón mbarr" #: widgets/KonsolePrintManager.cpp:50 #, kde-format msgid "Print Shell" -msgstr "" +msgstr "Priontáil Shell" -#: widgets/RenameTabWidget.cpp:37 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 +#, kde-format msgctxt "@label:listbox No color selected" msgid "None" -msgstr "N&eamhní" +msgstr "Dada" #. i18n: ectx: property (toolTip), widget (QLineEdit, remoteTabTitleEdit) #: widgets/RenameTabWidget.ui:41 @@ -5665,10 +5704,9 @@ msgstr "Formáid teidil cluaisíní cianda:" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/RenameTabWidget.ui:79 -#, fuzzy, kde-format -#| msgid "Tab title format:" +#, kde-format msgid "&Tab title format:" -msgstr "Formáid teidil cluaisíní:" +msgstr "Formáid teidil &Cluaisín:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5678,11 +5716,15 @@ msgstr "Gnáthfhormáid teidil cluaisíní" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgctxt "@label:listbox Column header text for the actual colors" -#| msgid "Color" +#, kde-format msgid "Tab Co&lor:" -msgstr "Dath" +msgstr "Dath an Ch&luaisín:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5713,17 +5755,15 @@ msgstr "Ainm Úsáideora: %u" #: widgets/TabTitleFormatButton.cpp:27 msgid "Local Host: %h" -msgstr "" +msgstr "Óstach Áitiúil: %h" #: widgets/TabTitleFormatButton.cpp:28 msgid "User's Bourne prompt sigil: %B" -msgstr "" +msgstr "Síntiús leid Bourne an úsáideora: %B" #: widgets/TabTitleFormatButton.cpp:35 -#, fuzzy -#| msgid "User Name: %u" msgid "User Name@ (if given): %U" -msgstr "Ainm Úsáideora: %u" +msgstr "Ainm Úsáideora@ (más tugtha): %U" #: widgets/TabTitleFormatButton.cpp:36 msgid "Remote Host (Short): %h" @@ -5736,7 +5776,7 @@ msgstr "Óstríomhaire Cianda (Fada): %H" #: widgets/TabTitleFormatButton.cpp:38 #, c-format msgid "Command and arguments: %c" -msgstr "" +msgstr "Ordú agus argóintí: %c" #: widgets/TabTitleFormatButton.cpp:48 #, kde-format @@ -5756,904 +5796,61 @@ msgid "Insert remote title format" msgstr "Ionsáigh formáid teidil cianda" #: widgets/TerminalHeaderBar.cpp:80 widgets/TerminalHeaderBar.cpp:188 -#, fuzzy, kde-format -#| msgid "C&lear Terminal" +#, kde-format msgctxt "@info:tooltip" msgid "Maximize terminal" -msgstr "G&lan Teirminéal" +msgstr "Uasmhéadaigh teirminéal" #: widgets/TerminalHeaderBar.cpp:91 -#, fuzzy, kde-format -#| msgid "Above Terminal Area" +#, kde-format msgctxt "@info:tooltip" msgid "Move terminal to new tab" -msgstr "Os cionn limistéar an teirminéil" +msgstr "Bog críochfort go cluaisín nua" #: widgets/TerminalHeaderBar.cpp:101 -#, fuzzy, kde-format -#| msgid "C&lear Terminal" +#, kde-format msgctxt "@info:tooltip" msgid "Close terminal" -msgstr "G&lan Teirminéal" +msgstr "Dún teirminéal" #: widgets/TerminalHeaderBar.cpp:186 -#, fuzzy, kde-format -#| msgid "&Reset && Clear Terminal" +#, kde-format msgctxt "@info:tooltip" msgid "Restore terminal" -msgstr "Athshoc&raigh agus Glan Teirminéal" +msgstr "Athchóirigh teirminéal" -#: widgets/ViewContainer.cpp:56 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "&Detach Tab" +#: widgets/ViewContainer.cpp:60 +#, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" -msgstr "&Dícheangail Cluaisín" +msgstr "Oscail cluaisín nua" -#: widgets/ViewContainer.cpp:61 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Close tab" +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Cuardaigh Cluaisíní" + +#: widgets/ViewContainer.cpp:70 +#, kde-format msgctxt "@info:tooltip" msgid "Close this tab" -msgstr "Dún an cluaisín" +msgstr "Dún an cluaisín seo" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Dícheangail Cluaisín" -#: widgets/ViewContainer.cpp:100 -#, fuzzy, kde-format -#| msgid "&Rename Tab..." +#: widgets/ViewContainer.cpp:112 +#, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." -msgstr "&Athainmnigh an Cluaisín..." +msgstr "&Cumraigh nó Athainmnigh an Cluaisín..." -#: widgets/ViewContainer.cpp:105 -#, fuzzy, kde-format -#| msgid "&Close Tab" +#: widgets/ViewContainer.cpp:117 +#, kde-format msgctxt "@action:inmenu" msgid "Close Tab" -msgstr "&Dún an Cluaisín" - -#, fuzzy -#~| msgctxt "@action:inmenu Do not select any tabs" -#~| msgid "&None" -#~ msgctxt "Do not save any lines to the scrollback history" -#~ msgid "None" -#~ msgstr "N&eamhní" - -#, fuzzy -#~| msgid "Open File Manager" -#~ msgctxt "@title:window" -#~ msgid "Save File" -#~ msgstr "Oscail Bainisteoir Comhad" - -#, fuzzy -#~| msgid "Open File Manager" -#~ msgctxt "@title:window" -#~ msgid "Open File" -#~ msgstr "Oscail Bainisteoir Comhad" - -#~ msgid "Size: XXX x XXX" -#~ msgstr "Méid: XXX × XXX" - -#, fuzzy -#~| msgid "&Set as Default" -#~ msgctxt "Name of the default/builtin profile" -#~ msgid "Default" -#~ msgstr "&Socraigh mar Réamhshocrú" - -#, fuzzy -#~| msgid "&Set as Default" -#~ msgctxt "@label:textbox added to the name of the current default profile" -#~ msgid " (default)" -#~ msgstr "&Socraigh mar Réamhshocrú" - -#, fuzzy -#~| msgctxt "@info:credit" -#~| msgid "SGI port" -#~ msgid "Import" -#~ msgstr "Leagan SGI" - -#, fuzzy -#~| msgid "Show Menu Bar" -#~ msgid "Show menubar" -#~ msgstr "Taispeáin an Barra Roghchláir" - -#, fuzzy -#~| msgid "&Set as Default" -#~ msgctxt "@label:textbox Name of the current default profile" -#~ msgid " (Default)" -#~ msgstr "&Socraigh mar Réamhshocrú" - -#, fuzzy -#~| msgid "New Color Scheme" -#~ msgid "Color from theme" -#~ msgstr "Scéim Nua Dathanna" - -#, fuzzy -#~| msgctxt "@title:column Display profile in file menu" -#~| msgid "Show in Menu" -#~ msgctxt "" -#~ "@info:tooltip List item's checkbox for making item (profile) visible in a " -#~ "menu" -#~ msgid "Show profile in menu" -#~ msgstr "Taispeáin sa Roghchlár" - -#, fuzzy -#~| msgid "Tab Bar" -#~ msgctxt "@title Preferences page name" -#~ msgid "Tab Bar" -#~ msgstr "Barra na gCluaisíní" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Rename Tab..." -#~ msgstr "&Athainmnigh an Cluaisín..." - -#, fuzzy -#~| msgid "Confirm Paste" -#~ msgctxt "@action:button" -#~ msgid "Confirm &paste" -#~ msgstr "Deimhnigh Greamú" - -#~ msgid "Vary the background color for each tab" -#~ msgstr "Úsáid dathanna difriúla i gcúlra gach cluaisín" - -#, fuzzy -#~| msgid "&Paste Location" -#~ msgctxt "@title Preferences page name" -#~ msgid "File Location" -#~ msgstr "&Greamaigh Suíomh" - -#, fuzzy -#~| msgid "&Paste Location" -#~ msgid "Use system &location" -#~ msgstr "&Greamaigh Suíomh" - -#, fuzzy -#~| msgid "&Paste Location" -#~ msgid "Use user specific location" -#~ msgstr "&Greamaigh Suíomh" - -#, fuzzy -#~| msgid "&Paste Location" -#~ msgid "Use specified loca&tion" -#~ msgstr "&Greamaigh Suíomh" - -#~ msgid "Konsole Window" -#~ msgstr "Fuinneog Konsole" - -#~ msgctxt "@title:column Profile label" -#~ msgid "Name" -#~ msgstr "Ainm" - -#~ msgid "&New Profile..." -#~ msgstr "Próifíl &Nua..." - -#~ msgid "&Edit Profile..." -#~ msgstr "Cuir an Phróifíl in &Eagar..." - -#~ msgid "&Delete Profile" -#~ msgstr "&Scrios an Phróifíl" - -#~ msgid "Tab bar position:" -#~ msgstr "Ionad bharra na gcluaisíní:" - -#~ msgid "Always Show Tab Bar" -#~ msgstr "Taispeáin Barra na gCluaisíní i gcónaí" - -#~ msgid "Show Tab Bar When Needed" -#~ msgstr "Taispeáin Barra na gCluaisíní más gá" - -#~ msgid "Always Hide Tab Bar" -#~ msgstr "Folaigh Barra na gCluaisíní i gcónaí" - -#, fuzzy -#~| msgid "Tab bar position:" -#~ msgid "Tab bar visibility:" -#~ msgstr "Ionad bharra na gcluaisíní:" - -#~ msgctxt "@action Shortcut entry" -#~ msgid "Next View Container" -#~ msgstr "An Chéad Choimeádán Amhairc Eile" - -#~ msgid "&Close Tab" -#~ msgstr "&Dún an Cluaisín" - -#~ msgctxt "@action:inmenu Close Active View" -#~ msgid "Close Active" -#~ msgstr "Dún an tAmharc Reatha" - -#~ msgctxt "@action:inmenu Close Other Views" -#~ msgid "Close Others" -#~ msgstr "Dún na Cinn Eile" - -#~ msgid "%1" -#~ msgstr "%1" - -#, fuzzy -#~| msgid "Select All" -#~ msgid "Select Any Font" -#~ msgstr "Roghnaigh Uile" - -#~ msgctxt "@title:group Generic, common options" -#~ msgid "General" -#~ msgstr "Ginearálta" - -#~ msgid "Select the font used in this profile" -#~ msgstr "Roghnaigh an cló a úsáidtear sa phróifíl seo" - -#~ msgid "Scroll Bar" -#~ msgstr "Scrollbharra" - -#~ msgid "Hide the scroll bar" -#~ msgstr "Folaigh an scrollbharra" - -#~ msgid "Show on left side" -#~ msgstr "Taispeáin ar thaobh na láimhe clé" - -#~ msgid "Select Text" -#~ msgstr "Roghnaigh Téacs" - -#~ msgid "Characters considered part of a word when double clicking:" -#~ msgstr "" -#~ "Carachtair a ghlacfar san fhocal nuair a chliceálfaidh tú faoi dhó: " - -#, fuzzy -#~| msgid "Confirm Paste" -#~ msgid "Copy && Paste" -#~ msgstr "Deimhnigh Greamú" - -#~ msgid "Enable flow control using Ctrl+S, Ctrl+Q" -#~ msgstr "Cumasaigh sreabhrialú le Ctrl+S, Ctrl+Q" - -#~ msgid "Cursor shape:" -#~ msgstr "Cruth an chúrsóra:" - -#~ msgid "Encoding" -#~ msgstr "Ionchódú" - -#~ msgctxt "@action:button Pick an encoding" -#~ msgid "Select" -#~ msgstr "Roghnaigh" - -#~ msgid "No scrollback" -#~ msgstr "Gan iarscrollú" - -#~ msgid "Unlimited scrollback" -#~ msgstr "Iarscrollú gan teorainn" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Close Tab" -#~ msgstr "&Dún an Cluaisín" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Close the active tab" -#~ msgstr "Dún an cluaisín gníomhach" - -#~ msgctxt "@action:button Display options menu" -#~ msgid "Options" -#~ msgstr "Roghanna" - -#~ msgid "Profile name is empty." -#~ msgstr "Tá ainm na próifíle folamh." - -#~ msgid "&Stop" -#~ msgstr "&Stad" - -#~ msgid "Icon:" -#~ msgstr "Deilbhín:" - -#, fuzzy -#~| msgid "Konsole" -#~ msgctxt "@title" -#~ msgid "Demo KonsolePart" -#~ msgstr "Konsole" - -#~ msgid "DEC VT420 Terminal" -#~ msgstr "Teirminéal DEC VT420" - -#~ msgid "Manage Profiles..." -#~ msgstr "Bainistigh Próifílí..." - -#~ msgctxt "@title" -#~ msgid "Konsole" -#~ msgstr "Konsole" - -#~ msgid "Shell" -#~ msgstr "Blaosc" - -#~ msgid "Accessible Color Scheme" -#~ msgstr "Scéim Inrochtana Datha" - -#~ msgid "%1, size %2" -#~ msgstr "%1, méid %2" - -#~ msgid "Adjust the font size used in this profile" -#~ msgstr "Coigeartaigh an chlómhéid a úsáidtear sa phróifíl seo" - -#~ msgid "" -#~ "Try to enable transparency, even if the system does not appear to support " -#~ "it." -#~ msgstr "" -#~ "Bain triail as cúlraí trédhearcacha a chumasú, fiú má dhealraíonn sé nach " -#~ "dtacaíonn an córas leo." - -#~ msgid "Input" -#~ msgstr "Ionchur" - -#~ msgid "Fixed size scrollback: " -#~ msgstr "Iarscrollú buanmhéide: " - -#~ msgid "Edit normal tab title format" -#~ msgstr "Cuir gnáthfhormáid teidil cluaisíní in eagar" - -#~ msgid "Edit tab title format used when executing remote commands" -#~ msgstr "" -#~ "Cuir formáid theideal an chluaisín nuair atá ordú cianda á rith in eagar" - -#~ msgid "Allow terminal programs to resize the window" -#~ msgstr "Ceadaigh do ríomhchláir theirminéil méid na fuinneoige a athrú" - -#~ msgid "Allow programs to resize terminal window" -#~ msgstr "Ceadaigh do ríomhchláir méid na fuinneoige teirminéil a athrú" - -#~ msgid "Configure Current Profile..." -#~ msgstr "Cumraigh an Phróifíl Reatha..." - -#~ msgid "&Switch Profile" -#~ msgstr "&Athraigh an Phróifíl" - -#~ msgid "Debug" -#~ msgstr "Dífhabhtaigh" - -#~ msgid "Show or hide the menu bar in terminal windows" -#~ msgstr "Taispeáin nó folaigh an barra roghchláir i bhfuinneoga teirminéil" - -#~ msgid "Disable scrollback" -#~ msgstr "Díchumasaigh iarscrollú" - -#~ msgid "&Paste as text" -#~ msgstr "&Greamaigh mar théacs" - -#~ msgid "&Change Profile" -#~ msgstr "&Athraigh an Phróifíl" - -#~ msgid "Change Profile" -#~ msgstr "Athraigh an Phróifíl" - -#~ msgid "Maintainer" -#~ msgstr "Cothaitheoir" - -#~ msgid "Author" -#~ msgstr "Údar" - -#~ msgid "Remote Connection..." -#~ msgstr "Ceangal Cianda..." - -#~ msgid "User:" -#~ msgstr "Úsáideoir:" - -#~ msgid "Lookup..." -#~ msgstr "Cuardach..." - -#~ msgid "Service:" -#~ msgstr "Seirbhís:" - -#~ msgid "SSH" -#~ msgstr "SSH" - -#~ msgid "Secure FTP" -#~ msgstr "FTP Daingean" - -#~ msgid "Background color:" -#~ msgstr "Dath an chúlra:" - -#~ msgid "Save as custom session" -#~ msgstr "Sábháil mar sheisiún saincheaptha" - -#~ msgid "Connect" -#~ msgstr "Ceangail" - -#~ msgid "Next View" -#~ msgstr "An Chéad Amharc Eile" - -#~ msgid "Match case" -#~ msgstr "Comhoiriúnaigh an cás" - -#~ msgid "" -#~ "Sets whether the search phrase is interpreted as normal text or as a " -#~ "regular expression" -#~ msgstr "" -#~ "Socraigh cé acu gnáth-théacs nó slonn ionadaíochta atá sa fhrása cuardaigh" - -#~ msgid "Search reached bottom, continued from top." -#~ msgstr "Ag an mbun, ag leanúint ón mbarr." - -#~ msgid "Search reached top, continued from bottom." -#~ msgstr "Ag an mbarr, ag leanúint ón mbun." - -#~ msgid "New &Tab" -#~ msgstr "&Cluaisín Nua" - -#~ msgid "Move Up" -#~ msgstr "Bog Suas" - -#~ msgid "Move Down" -#~ msgstr "Bog Síos" - -#~ msgid "Word characters for double-click selection: " -#~ msgstr "Carachtair a chuimsíonn focal nuair a chliceálann tú faoi dhó: " - -#~ msgid "Character Encoding" -#~ msgstr "Ionchódú Carachtar" - -#~ msgid "&Detach View" -#~ msgstr "&Dícheangail Amharc" - -#~ msgid "Decrease Text Size" -#~ msgstr "Cló Níos Lú" - -# or "Aschur an Chuardaigh"? -#~ msgid "Search Output..." -#~ msgstr "Cuardaigh san Aschur..." - -#~ msgid "Find Next" -#~ msgstr "An Chéad Cheann Eile" - -#~ msgid "Find Previous" -#~ msgstr "An Ceann Roimhe Seo" - -#~ msgid "Open Browser Here" -#~ msgstr "Oscail Brabhsálaí Anseo" - -#~ msgid "C&lear Display" -#~ msgstr "G&lan an Scáileán" - -#~ msgctxt "Regular expression to remove accelerators from menu items" -#~ msgid "\\(\\s*\\&.*\\)|\\&" -#~ msgstr "\\(\\s*\\&.*\\)|\\&" - -#~ msgid "KWrited - Listening on Device %1" -#~ msgstr "KWrited - Éisteacht le Gléas %1" - -#~ msgid "FONT PREVIEW TEXT" -#~ msgstr "RÉAMHAMHARC AN CHLÓ" - -#~ msgid "DEFAULTENCODING" -#~ msgstr "IONCHÓDÚRÉAMHSHOCRAITHE" - -#~ msgid "New" -#~ msgstr "Nua" - -#~ msgid "Select &Tab Color" -#~ msgstr "Roghnaigh Da&th an Chluaisín" - -#~ msgid "Enable transparent backgrounds" -#~ msgstr "Cumasaigh cúlraí trédhearcacha" - -#~ msgid "TextLabel" -#~ msgstr "Lipéad" - -#~ msgid "Really Quit?" -#~ msgstr "Scoir i nDáiríre?" - -#~ msgid "Session '%1' exited with signal %2 and dumped core." -#~ msgstr "Críochnaíodh seisiún '%1' le comhartha %2 agus dumpáladh an cór." - -#~ msgid "Session '%1' exited with signal %2." -#~ msgstr "Críochnaíodh seisiún '%1' le comhartha %2." - -#~ msgid "Basic Profile Options" -#~ msgstr "Bunroghanna Próifíle" - -#~ msgid "Window Options" -#~ msgstr "Roghanna Fuinneoige" - -#~ msgid "Scrollback Options..." -#~ msgstr "Roghanna Iarscrollaithe..." - -#~ msgid "" -#~ "

          ...that you can start a new standard session by pressing the \"New\" " -#~ "button in the tabbar?\n" -#~ msgstr "" -#~ "

          ... gur féidir leat seisiún nua caighdeánach a thosú ach an cnaipe " -#~ "\"Nua\" sa bharra cluaisíní a bhrú?\n" - -#~ msgid "" -#~ "

          ...that you can cycle through the Konsole sessions by holding down the " -#~ "Shift key and\n" -#~ "pressing the Left or Right Arrow keys?\n" -#~ msgstr "" -#~ "

          ... gur féidir leat aistriú ó sheisiún go seisiún i Konsole ach an " -#~ "eochair\n" -#~ "iomlaoide a choimeád thíos agus na heochracha \"Saighead Clé\" agus\n" -#~ "\"Saighead Dheas\" a bhrúigh?\n" - -#~ msgid "" -#~ "

          ...that you can rename your Konsole sessions by clicking with the " -#~ "right mouse\n" -#~ "button and selecting \"Rename session\"? The change will be reflected in " -#~ "the\n" -#~ "Konsole tabbar, making it easier to remember the content of the session.\n" -#~ msgstr "" -#~ "

          ... gur féidir leat do sheisiúin Konsole a athainmniú trí chliceáil " -#~ "le\n" -#~ "cnaipe dheis na luiche agus \"Athainmnigh Seisiún\" a roghnú?\n" -#~ "Feicfear an t-athrú i mbarra cluaisíní Konsole agus beidh sé níos fusa\n" -#~ "smaoineamh ar inneachar an tseisiúin.\n" - -#~ msgid "" -#~ "

          ...that you can rename a Konsole session by double-clicking its tab?\n" -#~ msgstr "" -#~ "

          ... gur féidir leat ainm seisiúin Konsole a athrú ach a chluaisín a " -#~ "dhéchliceáil?\n" - -#~ msgid "

          ...that you can activate the menu with the Ctrl+Alt+M shortcut?\n" -#~ msgstr "

          ... gur féidir leat an roghchlár a ghníomhú le Ctrl+Alt+M?\n" - -#~ msgid "" -#~ "

          ...that you can rename your current Konsole session with the Ctrl+Alt" -#~ "+S shortcut?\n" -#~ msgstr "" -#~ "

          ... gur féidir leat an seisiún reatha de Konsole a athainmniú le Ctrl" -#~ "+Alt+S?\n" - -#~ msgid "" -#~ "

          ...that you can create your own session types by using the session \n" -#~ "editor which you can find under \"Settings->Configure Konsole...\"?\n" -#~ msgstr "" -#~ "

          ... gur féidir leat do chineálacha seisiúin féin a chruthú leis an\n" -#~ "eagarthóir seisiúin atá le fáil i \"Socruithe/Cumraigh Konsole...\"?\n" -#~ "

          \n" - -#~ msgid "" -#~ "

          ...that you can create your own color schemes by using the schema " -#~ "editor\n" -#~ "which you can find under \"Settings->Configure Konsole...\"?\n" -#~ "

          \n" -#~ msgstr "" -#~ "

          ... gur féidir leat do scéimeanna dhathanna féin a chruthú leis an\n" -#~ "eagarthóir scéimre atá le fáil i \"Socruithe/Cumraigh Konsole...\"?\n" -#~ "

          \n" - -#~ msgid "" -#~ "

          ...that you can insert the clipboard by holding down the Shift key " -#~ "and \n" -#~ "pressing the Insert key?\n" -#~ msgstr "" -#~ "

          ... gur féidir leat aistriú ó sheisiún go seisiún i Konsole ach an " -#~ "eochair\n" -#~ "iomlaoide a choimeád thíos agus na heochracha \"Saighead Clé\" agus\n" -#~ "\"Saighead Dheas\" a bhrú?\n" - -#~ msgid "" -#~ "

          ...that you can let Konsole set the current directory as the window " -#~ "title?\n" -#~ "For Bash, put 'export PS1=$PS1\"\\[\\e]0;\\H:\\w\\a\\]\"' in your ~/." -#~ "bashrc .\n" -#~ msgstr "" -#~ "

          ... gur féidir le Konsole ainm na comhadlainne reatha a úsáid mar " -#~ "theideal na fuinneoga?\n" -#~ "Más Bash atá agat, cur 'export PS1=$PS1\"\\[\\e]0;\\H:\\w\\a\\]' i do " -#~ "chomhad ~/.bashrc.\n" - -#~ msgid "" -#~ "

          ...that you can let Konsole set the current directory as the session " -#~ "name?\n" -#~ "For Bash, put 'export PS1=$PS1\"\\[\\e]30;\\H:\\w\\a\\]\"' in your ~/." -#~ "bashrc .\n" -#~ msgstr "" -#~ "

          ... gur féidir le Konsole ainm na comhadlainne reatha a úsáid mar " -#~ "theideal an tseisiúin?\n" -#~ "Más Bash atá agat, cuir 'export PS1=$PS1\"\\[\\e]30;\\H:\\w\\a\\]\"' i do " -#~ "chomhad ~/.bashrc .\n" - -#~ msgid "Send Input to All" -#~ msgstr "Seol Ionchur chuig gach uile" - -#~ msgid "Click to open %1 in your browser." -#~ msgstr "Cliceáil chun %1 a oscailt i do bhrabhsálaí." - -#~ msgid "* { background-color: #FFCCCC ; border-radius: 3px }" -#~ msgstr "* { background-color: #FFCCCC ; border-radius: 3px }" - -#~ msgid "Paste" -#~ msgstr "Greamaigh" - -#~ msgid "Link Here" -#~ msgstr "Nasc Anseo" - -#~ msgid "Marble" -#~ msgstr "Marmar" - -#~ msgid "Paper" -#~ msgstr "Páipéar" - -#~ msgid "Transparent Konsole" -#~ msgstr "Konsole trédhearcach" - -#~ msgid "Transparent for MC" -#~ msgstr "Trédhearcach le haghaidh MC" - -#~ msgid "Transparent, Light Background" -#~ msgstr "Trédhearcach, Cúlra Geal" - -#~ msgid "XTerm Colors" -#~ msgstr "Dathanna XTerm" - -#~ msgid "System Colors" -#~ msgstr "Dathanna an Chórais" - -#~ msgid "vt100 (historical)" -#~ msgstr "vt100 (stairiúil)" - -#~ msgid "VT420PC" -#~ msgstr "VT420PC" - -#~ msgid "XTerm (XFree 3.x.x)" -#~ msgstr "XTerm (XFree 3.x.x)" - -#~ msgid "Sch&ema" -#~ msgstr "Scéi&mre" - -#~ msgid "&Right" -#~ msgstr "Ar &Dheis" - -#~ msgid "&Enlarge Font" -#~ msgstr "&Méadaigh an Cló" - -#~ msgid "S&ize" -#~ msgstr "&Méid" - -#~ msgid "40x15 (&Small)" -#~ msgstr "40×15 (&Beag)" - -#~ msgid "80x24 (&VT100)" -#~ msgstr "80×24 (&VT100)" - -#~ msgid "80x25 (&IBM PC)" -#~ msgstr "80×25 (&IBM PC)" - -#~ msgid "80x40 (&XTerm)" -#~ msgstr "80×40 (&XTerm)" - -#~ msgid "80x52 (IBM V&GA)" -#~ msgstr "80×52 (IBM V&GA)" - -#~ msgid "&Tip of the Day" -#~ msgstr "&Leid an Lae" - -#~ msgid "New Sess&ion" -#~ msgstr "Se&isiún Nua" - -#~ msgid "&Text && Icons" -#~ msgstr "&Téacs agus Deilbhíní" - -#~ msgid "Text &Only" -#~ msgstr "Téacs &Amháin" - -#~ msgid "&Icons Only" -#~ msgstr "&Deilbhíní Amháin" - -#~ msgid "&Dynamic Hide" -#~ msgstr "&Folaigh go hUathoibríoch" - -#~ msgid "S&ave History As..." -#~ msgstr "Sábháil an St&air Mar..." - -#~ msgid "Clear All H&istories" -#~ msgstr "Gla&n Gach Stair" - -#~ msgid "&Rename Session..." -#~ msgstr "&Athainmnigh an Seisiún... " - -#~ msgid "Stop Monitoring for &Activity" -#~ msgstr "Ná Fair ar &Ghníomhaíocht" - -#~ msgid "Stop Monitoring for &Silence" -#~ msgstr "Ná Fair ar &Chiúnas" - -#~ msgid "Send &Input to All Sessions" -#~ msgstr "Seol &Ionchur go Gach Seisiún" - -#~ msgid "List Sessions" -#~ msgstr "Liostáil Seisiúin" - -#~ msgid "Go to Previous Session" -#~ msgstr "Téigh go dtí an seisiún roimhe seo" - -#~ msgid "Go to Next Session" -#~ msgstr "Téigh go dtí an chéad Seisiún eile" - -#~ msgid "Toggle Bidi" -#~ msgstr "Scoránaigh Bidi" - -#~ msgid "Save Sessions Profile" -#~ msgstr "Sábháil Próifíl na Seisiún" - -#~ msgid "Use the right mouse button to bring back the menu" -#~ msgstr "Úsáid cnaipe deis na luiche chun an roghchlár a thabhairt ar ais." - -#~ msgid "Session List" -#~ msgstr "Liosta na Seisiún" - -#~ msgid "Rename Session" -#~ msgstr "Athainmnigh an Seisiún " - -#~ msgid "" -#~ "End of history reached.\n" -#~ "Continue from the beginning?" -#~ msgstr "" -#~ "Deireadh na staire sroichte.\n" -#~ "Lean ar aghaidh ón tús?" - -#~ msgid "" -#~ "Beginning of history reached.\n" -#~ "Continue from the end?" -#~ msgstr "" -#~ "Tús na staire sroichte.\n" -#~ "Lean ar aghaidh ón deireadh?" - -#~ msgid "File Exists" -#~ msgstr "Tá an comhad ann" - -#~ msgid "Overwrite" -#~ msgstr "Forscríobh" - -#~ msgid "Unable to write to file." -#~ msgstr "Ní féidir scríobh sa chomhad." - -#~ msgid "&Download" -#~ msgstr "Í&osluchtaigh" - -#~ msgid "Print %1" -#~ msgstr "Priontáil %1" - -#~ msgid "Number of columns:" -#~ msgstr "Líon na gcolún:" - -#~ msgid "Number of lines:" -#~ msgstr "Líon na línte:" - -#~ msgid "&History..." -#~ msgstr "&Stair..." - -#~ msgid "&0" -#~ msgstr "&0" - -#~ msgid "&1" -#~ msgstr "&1" - -#~ msgid "&2" -#~ msgstr "&2" - -#~ msgid "&3" -#~ msgstr "&3" - -#~ msgid "&4" -#~ msgstr "&4" - -#~ msgid "&5" -#~ msgstr "&5" - -#~ msgid "&6" -#~ msgstr "&6" - -#~ msgid "&7" -#~ msgstr "&7" - -#~ msgid "&8" -#~ msgstr "&8" - -#~ msgid "Show Fr&ame" -#~ msgstr "T&aispeáin Fráma" - -#~ msgid "Hide Fr&ame" -#~ msgstr "Folaigh &Fráma" - -#~ msgid "S&ettings" -#~ msgstr "&Socruithe" - -#~ msgid "Set window class" -#~ msgstr "Socraigh cineál na fuinneoga" - -#~ msgid "Start login shell" -#~ msgstr "Tosaigh blaosc logála isteach" - -#~ msgid "" -#~ "Specify terminal type as set in the TERM\n" -#~ "environment variable" -#~ msgstr "" -#~ "Sonraigh cineál an teirminéil mar atá socruithe\n" -#~ "san athróg thimpeallachta TERM" - -#~ msgid "Do not save lines in history" -#~ msgstr "Ná sábháil línte sa stair" - -#~ msgid "Do not display menubar" -#~ msgstr "Ná taispeáin an barra roghchláir" - -#~ msgid "Do not display tab bar" -#~ msgstr "Ná taispeáin an barra cluaisíní" - -#~ msgid "Do not display frame" -#~ msgstr "Ná taispeáin fráma" - -#~ msgid "Do not use Xft (anti-aliasing)" -#~ msgstr "Ná húsáid Xft (frithailiasáil)" - -#~ msgid "Terminal size in columns x lines" -#~ msgstr "Méid an Teirminéil, Colúin × Línte" - -#~ msgid "List available schemata" -#~ msgstr "Taispeáin na scéimrí atá ar fáil" - -#~ msgid "Change working directory to 'dir'" -#~ msgstr "Athraigh an chomhadlann oibre go 'dir'" - -#~ msgid "Execute 'command' instead of shell" -#~ msgstr "Rith 'ordú' in áit na blaoisce" - -#~ msgid "[no title]" -#~ msgstr "[gan teideal]" - -#~ msgid "Konsole Default" -#~ msgstr "Réamhshocrú Konsole" - -#~ msgid "" -#~ "You have open sessions (besides the current one). These will be killed if " -#~ "you continue.\n" -#~ "Are you sure you want to quit?" -#~ msgstr "" -#~ "Tá seisiúin (seachas an ceann reatha) ar oscailt agat. Scriosfar iad má " -#~ "leanann tú ar aghaidh.\n" -#~ "An bhfuil tú cinnte go dteastaíonn uait scor?" - -#~ msgid "&Install" -#~ msgstr "&Suiteáil" - -#~ msgid "Do Not Install" -#~ msgstr "Ná Suiteáil" - -#~ msgid "Could not install %1 into fonts:/Personal/" -#~ msgstr "Níorbh fhéidir %1 a shuiteáil i fonts:/Personal/" - -#~ msgid "This is not a local file.\n" -#~ msgstr "Ní chomhad logánta é seo.\n" - -#~ msgid "X terminal for use with KDE." -#~ msgstr "Teirminéal X le haghaidh KDE." - -#~ msgid "faster startup, bug fixing" -#~ msgstr "tosú níos tapúla, réiteach fabhtanna" - -#~ msgid "decent marking" -#~ msgstr "marcáil deas" - -#~ msgid "" -#~ "partification\n" -#~ "overall improvements" -#~ msgstr "" -#~ "cur in ord le haghaidh kparts\n" -#~ "feabhasanna ginearálta" - -#~ msgid "" -#~ "most of main.C donated via kvt\n" -#~ "overall improvements" -#~ msgstr "" -#~ "a thug an cuid is mó de main.C ó kvt\n" -#~ "feabhasanna ginearálta" - -#~ msgid "" -#~ "Thanks to many others.\n" -#~ "The above list only reflects the contributors\n" -#~ "I managed to keep track of." -#~ msgstr "" -#~ "Buíochas le neart daoine eile.\n" -#~ "Níl sa liosta thuas ach na cuiditheoirí\n" -#~ "a d'éirigh liom cuntas a choimeád díobh." +msgstr "Dún an Cluaisín" diff --git a/local/recipes/kde/konsole/source/po/gl/konsole.po b/local/recipes/kde/konsole/source/po/gl/konsole.po index 94c63e39c9..b0277f1b8c 100644 --- a/local/recipes/kde/konsole/source/po/gl/konsole.po +++ b/local/recipes/kde/konsole/source/po/gl/konsole.po @@ -9,7 +9,7 @@ # Marce Villarino , 2009, 2011, 2012, 2013, 2014. # Miguel Branco , 2013. # Adrián Chaves Fernández , 2015, 2016, 2017. -# SPDX-FileCopyrightText: 2023, 2024 Adrián Chaves (Gallaecio) +# SPDX-FileCopyrightText: 2023, 2024, 2025 Adrián Chaves (Gallaecio) # # Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas # colaborar connosco, podes atopar máis información en http://trasno.gpul.org @@ -20,16 +20,16 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-22 19:36+0200\n" -"Last-Translator: Adrián Chaves (Gallaecio) \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2025-05-04 13:45+0200\n" +"Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 25.04.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -43,7 +43,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" "mvillarino@users.sourceforge.net, xabigf@gmx.net, jba@pobox.com, mgl." -"branco@gmail.com, xosecalvo@gmail.com, adrian@chaves.io" +"branco@gmail.com, xosecalvo@gmail.com, adrian@chaves.gal" #. i18n: ectx: Menu (file) #: ../desktop/konsoleui.rc:6 @@ -67,7 +67,7 @@ msgstr "Vista" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dividir a vista" @@ -103,7 +103,7 @@ msgid "S&crollback" msgstr "&Historial" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra de ferramentas de sesións" @@ -188,38 +188,58 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Agochar a barra de menú, sobredefinindo a configuración predeterminada" #: Application.cpp:68 +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" +msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Amosar a barra de separadores, sobredefinindo a configuración predeterminada." + +#: Application.cpp:69 +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Agochar a barra de separadores, sobredefinindo a configuración " +"predeterminada." + +#: Application.cpp:70 #, kde-format msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "" -"Amosar a barra de lapelas, sobredefinindo a configuración predeterminada." +"Amosar a barra de separadores, sobredefinindo a configuración predeterminada." -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "" -"Agochar a barra de lapelas, sobredefinindo a configuración predeterminada." +"Agochar a barra de separadores, sobredefinindo a configuración " +"predeterminada." -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Iniciar o Konsole no modo de pantalla completa" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Desactivar os fondos transparentes, mesmo se o sistema os admitir." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Listar os perfís dispoñíbeis" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -227,13 +247,13 @@ msgstr "" "Listar todos os nomes das propiedades do perfil e o seu tipo (para usar con -" "p)." -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Cambiar o valor dunha propiedade do perfil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -243,7 +263,7 @@ msgstr "" "A orde que se vai executar. Esta opción captura todos os argumentos " "seguintes, polo que a hai que usar como última opción." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -253,13 +273,13 @@ msgstr "" "Forzar reutilizar a instancia existente aínda que rompa funcionalidades, p. " "ex. --new-tab. Existe principalmente para depurar problemas." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumentos pasados á orde" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -277,157 +297,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Primeiro plano" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fondo" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Cor 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Cor 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Cor 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Cor 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Cor 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Cor 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Cor 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Cor 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Primeiro plano (intensa)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fondo (intensa)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Cor 1 (intensa)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Cor 2 (intensa)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Cor 3 (intensa)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Cor 4 (intensa)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Cor 5 (intensa)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Cor 6 (intensa)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Cor 7 (intensa)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Cor 8 (intensa)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Primeiro plano (suave)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fondo (suave)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Cor 1 (suave)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Cor 2 (suave)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Cor 3 (suave)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Cor 4 (suave)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Cor 5 (suave)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Cor 6 (suave)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Cor 7 (suave)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Cor 8 (suave)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -684,6 +704,41 @@ msgstr "Superior" msgid "AaZz09..." msgstr "AaZz09…" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Servidor: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [predeterminado]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -729,7 +784,7 @@ msgstr "" msgid "Copy Location" msgstr "Copiar a localización" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Xerando a miniatura" @@ -760,13 +815,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Seleccionar o tipo de letra" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Amosar todos os tipos de letra" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -807,17 +862,17 @@ msgstr "Combinación de teclas" msgid "Output" msgstr "Saída" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nova lista de asociacións de teclas" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Editar a lista de asociación de teclas" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -827,7 +882,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -861,225 +916,225 @@ msgstr "Entrada:" msgid "Output:" msgstr "Saída:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulador de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997-2022 O grupo de desenvolvemento de Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Mantemento xeral, correccións de fallos e melloras." -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Mantemento anterior e quen portou a KDE4." -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autoría orixinal." -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Redeseño significativo, corrección de fallos e melloras importantes." -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Correccións de fallos e melloras" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Corrección de fallos e melloras importantes." -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Melloras xerais" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Correccións de fallos" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Compatibilidade con Solaris e historial." -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Correccións de fallos e rendemento de arranque mellorado" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Melloras no marcado" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1089,13 +1144,13 @@ msgstr "" "Konsole incrustada.\n" "Barra de ferramentas e nomes de sesións." -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1105,25 +1160,25 @@ msgstr "" "Konsole incrustada.\n" "Melloras xerais." -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efectos visuais" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1133,132 +1188,132 @@ msgstr "" "Código do proxecto kvt\n" "Melloras xerais" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Melloras nos esquemas e na escolla de texto" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Porte a SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Porte a FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Graza a moitos outros.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nova lapela" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clonar a lapela" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nova &xanela" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Pechar a xanela" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Marcadores" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Esquema de cores de &xanela" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Xestionar os perfís…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activar o menú" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Gardar a disposición de lapelas…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Cargar unha disposición de lapelas…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1267,67 +1322,67 @@ msgid_plural "" msgstr[0] "Hai un proceso a executarse nesta xanela. Quere saír aínda así?" msgstr[1] "Hai %1 procesos a executarse nesta xanela. Quere saír aínda así?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmar o peche" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Pechar a &xanela" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Pechar a &lapela actual" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Hai %1 terminais abertos nesta xanela. Quere saír aínda así?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Perfís" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Xeral" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memoria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" -msgstr "Barra de lapelas / Divisores" +msgstr "Barra de separadores / Divisores" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Ficheiros temporais" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturas" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1411,7 +1466,7 @@ msgstr "Gardar" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualizar" @@ -1423,29 +1478,29 @@ msgid "Cancel" msgstr "Cancelar" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Ordes rápidas" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Amosar o acceso rápido" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Non se atoparon ordes rápidas. Pode engadir unha desde «Complementos → Ordes " "rápidas»" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Complementos — Ordes rápidas" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Amosar as ordes rápidas" @@ -1487,7 +1542,7 @@ msgstr "" " con varias configuracións, seguro que quere proceder?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Está a piques de eliminar %1, seguro que quere proceder?" @@ -1540,11 +1595,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 é un cartafol para entradas de SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configuración de SSH" @@ -1609,24 +1664,24 @@ msgstr "" "(p. ex. bash, zsh, sh)." #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Chave de SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Eliminar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Non cambiar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1635,28 +1690,28 @@ msgstr "" "Esta a piques de eliminar o cartafol %1,\n" " con varias configuracións de SSH, seguro que quere proceder?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Eliminar as configuracións de SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "Importouse o perfil de SSH.
          Algunhas opción son de só lectura." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Falta o servidor" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Falta o nome" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" @@ -1664,42 +1719,42 @@ msgstr "" "nome de usuaria." # skip-rule: trasno-username -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Debe definir polo menos Username ou SSHKey" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Falta un cartafol" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Unha sesión de SSH debe ter un perfil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Non é posíbel eliminar este cartafol" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Eliminar o cartafol e todo o seu contido" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Faga clic duplo para cambiar o nome do cartafol." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Non pode eliminar unha entrada engadida automaticamente." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Eliminar a entrada seleccionada" @@ -1893,25 +1948,25 @@ msgstr "Opcións de saída" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Modo para &impresora (texto negro, sen fondo)." #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Escalar a saída." -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Incluído" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Perfil predeterminado" @@ -1970,17 +2025,41 @@ msgstr "Faga dobre clic para cambiar un atallo." msgid "Tab Properties" msgstr "Propiedades da lapela" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Gardar a saída de %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 é un URL incorrecto, non foi posíbel gardar a saída." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Non foi posíbel crear un ficheiro de garda automática en %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Detendo a garda automática polo cambio de pantallas." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"O ficheiro de garda automática recibiu modificacións externas, polo que non " +"se farán máis gardas automáticas." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Non foi posíbel actualizar o estado de garda automática nos cambios da saída." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2016,82 +2095,99 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pasteis escuros" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verde sobre negro" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Cores de Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Vermello sobre negro" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarización" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Luz de solarización" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Branco sobre negro" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Predeterminado (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Consola de Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Consola de Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Buscar…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Escriba aquí o nome da lapela para buscar." + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Badalada en «%1» (sesión «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Non foi posíbel atopar o binario: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Aviso: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" "Non foi posíbel atopar un intérprete de ordes interactivo para iniciar." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2100,345 +2196,346 @@ msgstr "" "Non foi posíbel atopar «%1», no canto iniciarase «%2». Comprobe a " "configuración do perfil." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Non foi posíbel iniciar o programa «%1» cos argumentos «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silencio en «%1» (sesión «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Amosar a sesión" -# skip-rule: trasno-file-a_reverse, trasno-command_reverse -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"Acaban de usarse os métodos de D-Bus «sendText» (enviar un texto) e " -"«runCommand» (executar unha orde). Permitir que estes métodos sexan públicos " -"supón un posíbel problema de seguridade. É posíbel reconstruír Konsole para " -"cambiar os métodos para que só poidan usarse internamente.

          Este aviso só " -"se amosará unha vez para esta instancia de Konsole.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Rematado" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "O programa «%1» quebrou." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "O programa «%1» saíu co estado %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progreso do ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Actividade en «%1» (sesión «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "O proceso «%1» rematou a execución na sesión «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole non é quen de abrir o marcador: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Buscar «%1» con" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configurar os atallos da web…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Pechar a &sesión" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Abrir o xestor de ficheiros" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copiar" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dividir a vista entre esquerda e dereita" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dividir a vista en horizontal" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copiar sen os signos de entrada" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copiar a entrada de usuaria" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copiar a saída da orde" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Pegar a selección" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Busca na web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Escoller &todo" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Seleccionar un &modo" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Escoller unha &liña" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Gardar a saída &como…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Gardar a saída automaticamente como…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Deter a garda automática" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Imprimir a pantalla…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Axustar o historial…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Limpar o historial" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Limpar o historial e restabelecer" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Seguinte perfil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Perfil anterior" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Cambiar de perfil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Definir a &codificación" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permitir seguir o rato" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Só lectura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configurar ou renomear a lapela…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "As lapelas da xanela &actual" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Seleccionar as lapelas…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ningún" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copiar a entrada en…" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Envío de &ZModem…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Monitores dun só disparo" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Monitorizar as &peticións" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitorizar a &actividade" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitorizar o &silencio" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitorizar a finalización do proceso" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Aumentar o tipo de letra" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Diminuír o tipo de letra" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Restabelecer o tamaño do texto" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Enviar o sinal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspender a tarefa" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continuar a tarefa" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Colgar" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interromper a tarefa" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminar esta tarefa" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Matar a tarefa" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Sinal de persoa usuaria &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Sinal de persoa usuaria &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Crear un novo perfil…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Editar o perfil actual…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Hai un programa a executarse nesta sesión. Seguro que quere pechala?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2446,18 +2543,18 @@ msgid "" msgstr "" "O programa «%1» está a executarse nesta sesión. Seguro que quere pechala?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmar o peche" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Pechar o programa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2465,37 +2562,36 @@ msgid "" msgstr "" "Un programa desta sesión non se dá cerrado. Seguro que quere matalo á forza?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"O programa «%1» está nesta sesión e non se dá morto. Seguro que quere matalo " -"á forza?" +"O programa «%1» desta sesión non dá morto. Seguro que quere matalo á forza?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Matar o programa" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "A petición do intérprete de ordes amósase na sesión «%1»." -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Abrir o cartafol actual con" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Gardar a descarga de ZModem en…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2506,14 +2602,14 @@ msgstr "" "atopou ningún programa axeitado neste sistema para isto.

          Quizais " "queira instalar o paquete «rzsz» ou «lrzsz».

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" "

          Esta sesión xa ten unha transferencia de ficheiro ZModem en marcha.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2522,10 +2618,10 @@ msgstr "" "

          Non se atopou ningún programa de ZModem axeitado neste sistema.

          Quizais queira instalar o paquete «rzsz» ou «lrzsz».

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" -msgstr "Escoller ficheiros para enviar por ZModem" +msgstr "Escoller ficheiros para subir por ZModem" #: session/SessionListModel.cpp:89 #, kde-format @@ -2545,144 +2641,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configurar" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Buscar:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Activar os aceleradores de menú." - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Se escolle esta opción para que se ignore a configuración do perfil." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Lembrar o tamaño da xanela." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Amosar o título da xanela na barra de títulos." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Enfocar os terminais cando o rato se mova sobre eles." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Buscar coincidencias mediante expresións regulares." - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Ao iniciar Konsole, reusar cando sexa posíbel un proceso existente." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Executar as xanelas de Konsole nun mesmo proceso." -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Realzar as aparicións." +msgid "If enabled, profile settings will be ignored" +msgstr "Se escolle esta opción para que se ignore a configuración do perfil." -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Define se a busca distingue maiúsculas de minúsculas." +msgid "Remember window size" +msgstr "Lembrar o tamaño da xanela." -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Distinguir as maiúsculas." +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Poñer as novas lapelas:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Retirar a barra de título e o marco da xanela." +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Proceso e xanela:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notificacións:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Volveranse amosar todos os diálogos." - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Activar todas as mensaxes de «Non volver preguntar»" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Define se a busca debe comezar desde o final." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Busca cara atrás." +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Define se a busca distingue maiúsculas de minúsculas." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Distinguir as maiúsculas." + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Proceso e xanela:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Realzar as aparicións." + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Buscar:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Define se a busca debe deterse en vez de continuar polo principio." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Non volver ao principio." +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Activar os aceleradores de menú." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Enfocar os terminais cando o rato se mova sobre eles." + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Volveranse amosar todos os diálogos." + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Activar todas as mensaxes de «Non volver preguntar»" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Amosar o título da xanela na barra de títulos." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Retirar a barra de título e o marco da xanela." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Buscar coincidencias mediante expresións regulares." + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2711,71 +2834,110 @@ msgstr "Usar o tamaño da xanela actual no seguinte inicio." msgid "The window size will be saved upon exiting Konsole" msgstr "O tamaño da xanela gardarase tal e como estivera ao saír Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Ao iniciar Konsole, reusar cando sexa posíbel un proceso existente." + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Anchura da miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Define a anchura da miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "User Maiús para amosar unha miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Usar Alt para amosar unha miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Usar Ctrl para amosar unha miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "A busca distingue maiúsculas de minúsculas" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Realzar todas as coincidencias da busca" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Define se os textos atopados deben realzarse." #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "A busca detense en vez de continuar polo principio." #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Controlar se se crean grupos-c aniñados para as lapelas individuais." #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2785,74 +2947,84 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" -msgstr "Controlar a visibilidade da barra de lapelas" +msgstr "Controlar a visibilidade da barra de separadores" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controlar o tamaño da asa entre paneis" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" -msgstr "Controlar a posición da barra de lapelas" +msgstr "Controlar a posición da barra de separadores" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" -msgstr "Controlar o estilo visual da barra de lapelas" +msgstr "Controlar o estilo visual da barra de separadores" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" -"Usar un ficheiro de CSS definido pola persoa usuaria para a barra de lapelas." +"Usar un ficheiro de CSS definido pola persoa usuaria para a barra de " +"separadores." #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" -msgstr "O ficheiro de CSS que usar para o estilo da barra de lapelas" +msgstr "O ficheiro de CSS que usar para o estilo da barra de separadores" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permitir clic central nas lapelas abertas para pechalas." #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" -msgstr "Controlar a visibilidade d botón de «Nova lapela» na barra de lapelas" +msgstr "" +"Controlar a visibilidade d botón de «Nova lapela» na barra de separadores" + +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Controlar a visibilidade d botón de «Buscar nas lapelas» na barra de " +"separadores." #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controlar se se amosa o botón de «Pechar a lapela»." #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controlar onde se coloca a nova lapela." #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Expandir a anchura das tabulacións" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" @@ -2860,7 +3032,7 @@ msgstr "" "no sistema." #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2868,14 +3040,14 @@ msgstr "" "da persoa usuaria." #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" "Para os ficheiros do historial, usar a localización do cartafol indicado." #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Para os ficheiros do historial, usar este cartafol." @@ -2887,16 +3059,23 @@ msgid "Enable memory monitoring:" msgstr "Activar a monitorización de memoria:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Os cambios aplicaranse ao reiniciar. Se escolle esta opción, cando o consumo " "de memoria por\n" @@ -2909,13 +3088,13 @@ msgstr "" "Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Límite de memoria:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3077,125 +3256,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nada" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Amosar o botón de buscar nas lapelas:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nunca" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diversos:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Amosar o botón de «Nova lapela»." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Expandir anchuras de tabulacións individuais á xanela completa." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Usar unha folla de estilo definida pola persoa usuaria:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ningún)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportamento" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Poñer as novas lapelas:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Ao &final" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Tras a lapela ac&tual" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Pechar as lapelas co clic central." #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Divide" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Amosar a cabeceira:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Cando se necesite." #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nunca." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Tamaño da asa para arrastrar:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Pequeno." #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Mediano." #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grande." #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3247,13 +3444,12 @@ msgstr "px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Para usar esta funcionalidade, active Rato->Diversos->Subliñar os ficheiros na configuración do seu perfil

          " +"font-weight:600;\">Rato->Diversos->Subliñar os ficheiros na " +"configuración do seu perfil

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3294,64 +3490,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Activar a xeración de miniaturas." -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Tamaño: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Seguro que quere pegar %1 carácter?" msgstr[1] "Seguro que quere pegar %1 caracteres?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirmar o pegado" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Fin de texto ou interromper: podería saír do proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Fin da transmisión: podería saír do proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Campá: intentará emitir un aviso audíbel" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Retroceso" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Control de dispositivo tres ou XOFF: suspende a saída" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substituír ou suspender: podería suspender o proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: úsase para manipular o estado do terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Separador de ficheiros ou saír: podería interromper o proceso actual" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3360,31 +3556,31 @@ msgstr "" "O texto que intenta pegar contén caracteres de control agochados, quere " "filtralos?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirmar o pegado" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Pegar &sen caracteres de control" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Pegalo todo" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Cancelar" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspendeuse ao premer Ctrl+S. Prema Ctrl+Q para continuala." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Este terminal é de só lectura." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Cambiar o &cartafol a" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Pegar a localización" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Dividir a vista" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dividir a vista entre esquerda e dereita" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dividir a vista en horizontal" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dividir a vista automaticamente" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dividir a vista en vertical coa seguinte lapela" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dividir a vista en horizontal coa seguinte lapela" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dividir a vista automaticamente coa seguinte lapela" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Cargar unha nova lapela con terminais de disposición 2×2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Cargar unha nova lapela con terminais de disposición 2×1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Cargar unha nova lapela con terminais de disposición 1×2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expandir a vista" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Reducir a vista" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Desprender esta &vista" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Desprender a lapela ac&tual" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Seguinte lapela" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Lapela anterior" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Enfocar o terminal superior" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Enfocar o terminal inferior" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Enfocar o terminal esquerdo" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Enfocar o terminal dereito" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Enfocar o terminal esquerdo" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Enfocar o terminal inferior" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Ir á última lapela" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Últimas lapelas usadas" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Conmutar entre dous lapelas" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Últimas lapelas usadas (inverso)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Conmutar maximizar a vista actual" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Conmutar maximizar a vista actual" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Conmutar ampliar ao máximo a vista actual" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Conmutar ampliar ao máximo a vista actual" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Mover a lapela á dereita" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Mover a lapela á esquerda" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Preparar a integración semántica (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Conmutar a visualización de consellos semánticos" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Conmutar a visualización de números de liña" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Mesmo tamaño para todas as vistas" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Ir á lapela %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Consellos semánticos" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Números de liña" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" -msgstr "Gardar a disposición de lapelas" +msgstr "Gardar a disposición de separadores" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Disposición de vista de Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3652,7 +3864,7 @@ msgstr "" "Produciuse un problema ao gardar a disposición.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3662,13 +3874,13 @@ msgstr "" "Produciuse un problema ao cargar a disposición.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" -msgstr "Cargar unha disposición de lapelas" +msgstr "Cargar unha disposición de separadores" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3768,28 +3980,40 @@ msgstr "Codificación de caracteres pre&determinada:" msgid "Shortcut for peeking the primary screen:" msgstr "Atallo para ollar a pantalla principal:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Definir o intervalo entre gardas automáticas:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Números de liña:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nunca" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Ao amosar os consellos de &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3825,7 +4049,7 @@ msgstr "Edita o esquema de cores escollido." #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3881,6 +4105,9 @@ msgstr "Debuxar as cores intensas en letra grosa." #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Usar o tipo de letra seleccionado para os caracteres da liña en vez do " @@ -3888,9 +4115,16 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "" +#| "Characters for drawing lines for a frame or box in TUI programs. Not a " +#| "row of characters." +#| msgid ">Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Usar os caracteres de liña do tipo de letra." +msgstr ">Usar os caracteres de liña do tipo de letra." #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -4010,29 +4244,45 @@ msgstr "Escintilar o cursor regularmente." # skip-rule: proposta-gl-punto-final #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Activado" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Activación:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Escintilar o cursor regularmente." + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diversos" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Xanela:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4042,147 +4292,147 @@ msgstr "" "redimensionalo." #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" "Amosar unha indicación do tamaño do terminal despois de redimensionalo." #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Inverter sempre as cores do texto seleccionado." #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Intensidade ao escurecer:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Cor:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Escolla a cor usada para debuxar o bordo." #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminais inactivos:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminais activos:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Contido do terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Espazo entre liñas:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "O número de píxeles entre dúas liñas." #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marxes:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Centrar:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indicar se a xanela está activa reducindo a intensidade das cores." # skip-rule: proposta-gl-punto-final #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Escurecer" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indicar se a xanela está activa debuxando un bordo." # skip-rule: proposta-gl-punto-final #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Bordo" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Amosar unha liña vertical na columna:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Disposición de texto complexa.

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposición de texto complexa" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Activar o debuxado de texto en modo palabra." #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Modo de palabra." #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4192,43 +4442,43 @@ msgstr "" "atributo rompen as palabras ao renderizar)." #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Usar os mesmos atributos para toda a palabra." #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Renderizar as palabras de caracteres ASCII xuntas." #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caracteres ASCII." #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Renderizar as palabras de caracteres de alfabetos índicos xuntas." #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Caracteres de alfabetos índicos." #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Tipo de letra de expresións:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4238,13 +4488,13 @@ msgstr "" "persa e hebreo)." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Escritura bidireccional dos textos." #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4252,13 +4502,13 @@ msgstr "" "carácter forte." #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Forzar a dirección de liña de esquerda a dereita." #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" @@ -4266,71 +4516,71 @@ msgstr "" "dereita." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Sobredefinición do modo BiDi dos caracteres de táboas." #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorar o wcwidth de caracteres problemáticos." #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Sobredefinir o wcwidth." -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Editar un perfil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Xeral" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Lapelas" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aparencia" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Desprazamento" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Teclado" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Asociacións de teclas" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Rato" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avanzado" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4342,49 +4592,56 @@ msgstr "" "filename>.Cambie os permisos dese ficheiro ou escolla un nome distinto " "para gardar a configuración nun novo perfil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" "O nome de perfil estaba baleiro; defina un nome para gardar a configuración." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Xa existe un perfil chamado «%1»." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "O nome do perfil superou a lonxitude máxima permitida (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Os caracteres realzados non son válidos en nomes de perfís: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Editando o perfil: %2" msgstr[1] "Estanse a editar %1 perfís: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Crear un perfil novo" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Editar o perfil «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Nada" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4394,7 +4651,7 @@ msgid_plural " columns" msgstr[0] "columna" msgstr[1] "columnas" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4404,43 +4661,43 @@ msgid_plural " rows" msgstr[0] "fila" msgstr[1] "filas" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Badalada do sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificacións do sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Badalada visual" # skip-rule: proposta-event-evento -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorar as badaladas" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Perfil predeterminado para novas sesións de terminal en %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Editar o contorno" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Unha variábel de contorno por liña" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4448,23 +4705,23 @@ msgid_plural " seconds" msgstr[0] " segundo" msgstr[1] " segundos" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Escolla o cartafol inicial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Obter un novo…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Produciuse un erro ao cargar o esquema %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4473,7 +4730,7 @@ msgstr "" "Este esquema de cores ten un fondo transparente que non semella estar " "permitido polo escritorio." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4482,13 +4739,13 @@ msgstr "" "Konsole iniciouse antes de se activaren os efectos de escritorio. Precisas " "reiniciar Konsole para verlle transparente o fondo." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Predeterminada do tipo de ficheiro" # skip-rule: PT-2011-dual_edit -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4517,7 +4774,7 @@ msgstr "" "ignorarase e o ficheiro abrirase no editor de texto\n" "predeterminado." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Orde personalizada de editor de texto" @@ -4607,26 +4864,54 @@ msgstr "Escoller o cartafol inicial." msgid "Start in same directory as current session" msgstr "Iniciar no mesmo cartafol que a sesión actual." +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Iniciar no mesmo cartafol que a sesión actual." + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Contorno:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Editar a lista de variábeis de contorno e os valores asociados." #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Ta&maño inicial do terminal:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4640,31 +4925,31 @@ msgstr "" "span>.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Modo de badalada de &terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Integración semántica" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulación de frechas de arriba e abaixo." #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Un clic do rato na liña de entrada move o cursor." #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Consellos semánticos:" @@ -4674,9 +4959,9 @@ msgstr "Consellos semánticos:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4687,9 +4972,9 @@ msgstr "Nunca" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4700,34 +4985,34 @@ msgstr "Ao amosar os consellos de URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barras de erro vermello:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Fondo de erro vermello:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barras alternantes:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Fondo alternante:" @@ -5095,117 +5380,129 @@ msgid "Scrollback:" msgstr "Historial:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Subir ou baixar unha páxina:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Desprazar a páxina a metade da altura da xanela." +msgid "Highlight the lines coming into view" +msgstr "Realzar as liñas que entran na vista." -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" -msgstr "Al&tura da metade da pantalla" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Desprazar a páxina a altura completa da xanela." - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "Alt&ura de toda a pantalla" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Posición da barra de desprazamento:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Amosar a barra de desprazamento á dereita da xanela da terminal." - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, kde-format -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Parte &dereita." - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Amosar a barra de desprazamento á esquerda da xanela da terminal." - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, kde-format -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Parte &esquerda." +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "%" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Agochada." -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Realzado:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Realzar as liñas que entran na vista." - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Cambiar o fluxo das liñas:" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "Cambiar o fluxo das liñas ao cambiar o tamaño do terminal." - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "Cor dos marcadores das barras de desprazamento:" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" "O tamaño de cada marcador (como porcentaxe da lonxitude da barra de " "desprazamento):" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "%" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Realzado:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "Desprazar a páxina a metade da altura da xanela." + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "Al&tura da metade da pantalla" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Cor dos marcadores das barras de desprazamento:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Cor das liñas de realce de busca das barras de desprazamento:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Cambiar o fluxo das liñas:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Desprazar a páxina a altura completa da xanela." + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "Alt&ura de toda a pantalla" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Amosar a barra de desprazamento á dereita da xanela da terminal." + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Parte &dereita." + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Amosar a barra de desprazamento á esquerda da xanela da terminal." + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Parte &esquerda." + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "Cambiar o fluxo das liñas ao cambiar o tamaño do terminal." + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "Posición da barra de desprazamento:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" +msgstr "Opacidade das liñas de realce de busca:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5311,115 +5608,116 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Ningunha" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Atopar…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Insira aquí o texto para buscar." -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Seguinte" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Atopar a seguinte aparición da frase buscada." -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Anterior" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Atopar a aparición anterior da frase buscada." #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Amosar o menú de opcións." - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Pechar a barra de busca." - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Distinguir as maiúsculas" +msgstr "Distinguir as maiúsculas." -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Define se a busca distingue maiúsculas de minúsculas." -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Amosar o menú de opcións." + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Pechar a barra de busca." + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Corresponder a unha expresión regular" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Realzar todas as aparicións" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Define se os textos atopados deben realzarse." -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Busca cara atrás" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Define se a busca debe comezar desde o final." -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Non volver ao principio." -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Define se a busca debe deterse en vez de continuar polo principio." -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Buscar desde o final a frase a buscar." -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5430,7 +5728,7 @@ msgstr "Buscar desde o inicio a frase a buscar." msgid "Print Shell" msgstr "Imprimir o intérprete de ordes" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5470,6 +5768,13 @@ msgstr "Formato normal do título das lapelas." msgid "Tab Co&lor:" msgstr "Cor da &lapela:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "Cor da &lapela:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5563,36 +5868,59 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restaurar o terminal." -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Abrir unha nova lapela." -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Buscar nas lapelas" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Pechar esta lapela." -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Desprender a lapela" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configurar ou renomear a lapela…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Pechar a lapela" +# skip-rule: trasno-file-a_reverse, trasno-command_reverse +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "Acaban de usarse os métodos de D-Bus «sendText» (enviar un texto) e " +#~ "«runCommand» (executar unha orde). Permitir que estes métodos sexan " +#~ "públicos supón un posíbel problema de seguridade. É posíbel reconstruír " +#~ "Konsole para cambiar os métodos para que só poidan usarse internamente. " +#~ "

          Este aviso só se amosará unha vez para esta instancia de Konsole.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Distinguir as maiúsculas" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Nada" diff --git a/local/recipes/kde/konsole/source/po/gu/konsole.po b/local/recipes/kde/konsole/source/po/gu/konsole.po index c9afe1360a..ad4acfd174 100644 --- a/local/recipes/kde/konsole/source/po/gu/konsole.po +++ b/local/recipes/kde/konsole/source/po/gu/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2010-06-22 16:43+0530\n" "Last-Translator: Sweta Kothari \n" "Language-Team: Gujarati\n" @@ -51,7 +51,7 @@ msgstr "દેખાવ" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "અલગ દેખાવ" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "પાછળજાવ (&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number" msgid "Session Toolbar" @@ -170,48 +170,60 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "પ્રાપ્ત રૂપરેખાઓની યાદી" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "રૂપરેખા ગુણધર્મની કિંમત બદલો." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -219,7 +231,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -227,14 +239,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "આદેશને આપવાનું પરિમાણ" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -253,217 +265,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "અગ્રરંગ" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "પાશ્વરંગ" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "રંગ ૧" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "રંગ ૨" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "રંગ ૩" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "રંગ ૪" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "રંગ ૫" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "રંગ ૬" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "રંગ ૭" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "રંગ ૮" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "અગ્રરંગ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "પાશ્વરંગ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "રંગ ૧ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "રંગ ૨ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "રંગ ૩ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "રંગ ૪ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "રંગ ૫ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "રંગ ૬ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "રંગ ૭ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "રંગ ૮ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "અગ્રરંગ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "પાશ્વરંગ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "રંગ ૧ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "રંગ ૨ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "રંગ ૩ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "રંગ ૪ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "રંગ ૫ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "રંગ ૬ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "રંગ ૭ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "રંગ ૮ (ઘાટાં)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -726,6 +738,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "યજમાન:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "મૂળભૂત તરીકે ગોઠવો" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -770,7 +816,7 @@ msgstr "" msgid "Copy Location" msgstr "ઇનપુટને અહીં નકલ કરો" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -802,14 +848,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "ફોન્ટ ફેરફાર કરો..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "લીસાં ફોન્ટસ" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -847,17 +893,17 @@ msgstr "કળ જોડાણ" msgid "Output" msgstr "આઉટપુટ" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "નવી કળ જોડાણ યાદી" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "કળ જોડાણ યાદી ફેરફાર કરો" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -865,7 +911,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -899,249 +945,249 @@ msgstr "ઇનપુટ:" msgid "Output:" msgstr "આઉટપુટ:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "કોન્સોલ" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "ટર્મિનલ ઇમ્યુલેટર" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "કુર્ટ વી. હિન્ડેનબર્ગ" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "ક્ષતિ સુધારાઓ અને સામાન્ય સુધારાઓ" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "રોબર્ટ નાઇટ" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "લાર્સ ડોલ્લે" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "ટર્મિનલ ઇમ્યુલેટર" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "ક્ષતિ સુધારાઓ અને સામાન્ય સુધારાઓ" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "ક્ષતિ સુધારાઓ અને સામાન્ય સુધારાઓ" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "ક્ષતિ સુધારાઓ અને સામાન્ય સુધારાઓ" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "થોમસ ડ્રિભોલ્ઝ" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "વાલ્ડો બાસ્ટિઅન" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "સ્ટીફન બિનેર" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "થોમસ ડ્રિભોલ્ઝ" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "સામાન્ય સુધારાઓ" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "ક્રીસ માકેમેર" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "ક્ષતિ સુધારાઓ" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "સ્ટીફન કુલો" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "સોલારિસ આધાર અને ઇતિહાસ" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "એલેક્ઝાન્ડર ન્યુડ્રોફ" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "ક્ષતિ સુધારાઓ અને સુધારેલ શરૂઆત કાર્યક્ષમતા" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "પીટર સિલ્વા" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "નિશાનીઓ સુધારાઓ" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "લોટ્ઝી બોલોનિ" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1154,14 +1200,14 @@ msgstr "" "જડિત કોન્સોલ\n" "સાધનપટ્ટી અને સત્ર નામો" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "ડેવિડ ફોઉરે" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1174,28 +1220,28 @@ msgstr "" "જડિત કોન્સોલ\n" "સામાન્ય સુધારાઓ" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "એન્ટોનિઓ લાર્રોસ" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "દેખાવ અસરો" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "મેથ્થિઆસ ઇટ્રિચ" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1208,125 +1254,125 @@ msgstr "" "kvt પ્રોજેક્ટમાંથી કોડ\n" "સામાન્ય સુધારાઓ" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "વોરવિક એલિસન" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "સ્કિમા અને લખાણ પસંદગી સુધારાઓ" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "ડાન પિલોન" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI પોર્ટ" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "કેવિન સ્ટ્રીટ" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD પોર્ટ" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "સવેન ફિશર" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "ડેલ એમ. ફ્લેવેન" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "માર્ટિન જોન્સ" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "લાર્સ નોલ" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "બીજા ઘણાં બધાનો આભાર.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "નવી ટેબ (&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ટેબ બંધ કરો (&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "નવી વિન્ડો (&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "કોન્સોલ" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "બુકમાર્કો (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "નવી રંગ પધ્ધતિ" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Manage Profiles" @@ -1334,26 +1380,26 @@ msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "રૂપરેખાઓ ગોઠવો" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "દેખાવ ડાબે ખસેડો" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1364,28 +1410,28 @@ msgid_plural "" msgstr[0] "તમારે આ વિન્ડોમાં અનેક ટેબ્સ છે, શું તમે બહાર નીકળવા માટે ચોક્કસ છો?" msgstr[1] "તમારે આ વિન્ડોમાં અનેક ટેબ્સ છે, શું તમે બહાર નીકળવા માટે ચોક્કસ છો?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "બંઘ કરવાની ખાતરી કરો" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "કોન્સોલ" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "હાલની ટેબ બંધ કરો" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1393,7 +1439,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "તમારે આ વિન્ડોમાં અનેક ટેબ્સ છે, શું તમે બહાર નીકળવા માટે ચોક્કસ છો?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1401,7 +1447,7 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "નવી રૂપરેખા" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgctxt "@title:tab Generic, common options" #| msgid "General" @@ -1409,31 +1455,31 @@ msgctxt "@title Preferences page name" msgid "General" msgstr "સામાન્ય" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1526,7 +1572,7 @@ msgstr "ઓપન ફાઇલ સંચાલક" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1538,29 +1584,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "આદેશ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "આદેશ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1602,7 +1648,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1662,11 +1708,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1729,93 +1775,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "દૂરસ્થ જોડાણ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2022,25 +2068,25 @@ msgstr "આઉટપુટ" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "મૂળભૂત રૂપરેખા" @@ -2105,17 +2151,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 માંથી આઉટપુટ સંગ્રહ કરો" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 એ અયોગ્ય URL છે, આઉટપુટ સંગ્રહ કરી શકાતું નથી." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2152,467 +2219,493 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "ઘાટું લખેલ" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "કાળા પર લીલું" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "લિનક્સ રંગો" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "કાળા પર સફેદ" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "કાળા પર સફેદ" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "મૂળભૂત (XFree ૪)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "લિનક્સ કોન્સોલ" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "સોલારિસ કોન્સોલ" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "શોધવા માટે લખાણ અહીં દાખલ કરો" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "સત્ર '%1' માં ઘંટ" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "બાયનરી શોધી શકતું નથી: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "ચેતવણી: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "શરૂ કરવા માટે ઇન્ટરએક્ટિવ શેલ મળ્યું નહી." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "કાર્યક્રમ '%1' વિકલ્પ '%2' સાથે શરૂ કરી શકાયો નહી." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "સત્ર '%1' માં શાંતિ" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "કોન્સોલ" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "સમાપ્ત" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "કાર્યક્રમ '%1' ભાંગી પડ્યો." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "કાર્યક્રમ '%1' સ્થિતિ %2 વડે બહાર નીકળી ગયો." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem પ્રગતિ" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "સત્ર '%1' માં ક્રિયા" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "કોન્સોલ" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole જાણતુ નથી કે કેવી રીતે બુકમાર્ક ને ખોલવુ: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "કોન્સોલ" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ઓપન ફાઇલ સંચાલક" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "દેખાવ ડાબે/જમણે છૂટો પાડો" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "દેખાવ ઉપર/નીચે છૂટો પાડો" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ઇનપુટ નકલ કરો" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ઇનપુટ નકલ કરો" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "પસંદગી કરેલ મૂકો" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "બધું પસંદ કરો" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Mode" msgstr "પસંદ કરો" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Line" msgstr "પસંદ કરો" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "આઉટપુટને આ રીતે સંગ્રહો (&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "આઉટપુટને આ રીતે સંગ્રહો (&A)..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Configure Scrollback..." msgid "Adjust Scrollback..." msgstr "સ્ક્રોલબેકને રૂપરેખાંકિત કરો..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "પાછાંસરકવાનું સાફ કરો" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "સ્ક્રોલબેક અને પુન:સુયોજિત કરવાનું સાફ કરો" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "રૂપરેખા ફેરફાર કરો" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "પાછળનો દેખાવ" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "રૂપરેખા ફેરફાર કરો" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "એન્કોડિંગને સુયોજિત કરો (&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "ટેબનું નામ બદલો (&R)..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "હાલની વિન્ડોમાં બધી ટેબો (&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "ટેબો પસંદ કરો (&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "કંઇ નહી (&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "ઇનપુટને અહીં નકલ કરો" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ZModem અપલોડ (&Z)..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "ક્રિયા માટે નજર રાખો (&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "ક્રિયા માટે નજર રાખો (&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "શાંતિ માટે નજર રાખો (&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "ક્રિયા માટે નજર રાખો (&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "ફોન્ટને મોટા કરો" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "ફોન્ટને સંકોચો" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "ટેબ બંધ કરો (&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "ટર્મિનલ લાક્ષણિકતાઓ" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "નવી રૂપરેખા..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Configure Current Profile..." msgid "Edit Current Profile..." msgstr "હાલની રૂપરેખાને રૂપરેખાંકિત કરો..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "કાર્યક્રમ અત્યારે આ સત્રમાં ચાલી રહ્યો છે. શું તમે બહાર નીકળવા માંગો છો?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "બંઘ કરવાની ખાતરી કરો" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "ટેબ બંધ કરો (&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2622,39 +2715,39 @@ msgid "" "by force?" msgstr "કાર્યક્રમ અત્યારે આ સત્રમાં ચાલી રહ્યો છે. શું તમે બહાર નીકળવા માંગો છો?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " #| "close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "કાર્યક્રમ અત્યારે આ સત્રમાં ચાલી રહ્યો છે. શું તમે બહાર નીકળવા માંગો છો?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "ZModem અપલોડ (&Z)..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2662,20 +2755,20 @@ msgid "" "or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem અપલોડ માટે ફાઇલોને પસંદ કરો" @@ -2701,151 +2794,178 @@ msgctxt "@title:window" msgid "Configure" msgstr "બંઘ કરવાની ખાતરી કરો" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, fuzzy, kde-format -#| msgid "Save window size and position on exit" -msgid "Show window title on the titlebar" -msgstr "બહાર નીકળવા પર વિન્ડો માપ અને સ્થિતિ સંગ્રહો" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "રેગ્યુલર એક્સપ્રેશન મેળવો" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "બધું પ્રકાશિત કરો" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "નક્કી કરો કે શોધ કિસ્સા પર આધારિત છે કે નહી" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "સક્રિય બંધ કરો" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "નવું ટેબ લખાણ દાખલ કરો:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "નક્કી કરો કે શોધ કિસ્સા પર આધારિત છે કે નહી" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "સક્રિય બંધ કરો" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "બધું પ્રકાશિત કરો" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "હાલનાં શોધ લખાણનું આગળનો મેળ શોધો" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, fuzzy, kde-format +#| msgid "Save window size and position on exit" +msgid "Show window title on the titlebar" +msgstr "બહાર નીકળવા પર વિન્ડો માપ અને સ્થિતિ સંગ્રહો" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "રેગ્યુલર એક્સપ્રેશન મેળવો" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2872,74 +2992,112 @@ msgstr "બહાર નીકળવા પર વિન્ડો માપ અ msgid "The window size will be saved upon exiting Konsole" msgstr "બહાર નીકળવા પર વિન્ડો માપ અને સ્થિતિ સંગ્રહો" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "નક્કી કરો કે શોધ કિસ્સા પર આધારિત છે કે નહી" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "બધું પ્રકાશિત કરો" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "નક્કી કરો કે મળતું લખાણ પ્રકાશિત કરવું જોઇએ કે નહી" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2947,92 +3105,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "પોતાનો, ચોક્કસ રંગ કર્સર માટે વાપરો" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3045,26 +3209,24 @@ msgid "Enable memory monitoring:" msgstr "દ્રિ-દિશાનું લખાણ રેન્ડરીંગ સક્રિય કરો" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3237,110 +3399,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "કંઇ નહી (&N)" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "ટેબ બંધ કરો (&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "'નવી ટેબ' અને 'ટેબ બંધ કરો' બટનો ટેબ બારમાં બતાવો" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "પોતાનો, ચોક્કસ રંગ કર્સર માટે વાપરો" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "નવું ટેબ લખાણ દાખલ કરો:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "હાલની ટેબ બંધ કરો" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "અલગ દેખાવ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menu bar in new windows" msgid "Show Header:" msgstr "નવી વિન્ડોમાં મેનુ પટ્ટી બતાવો" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3349,14 +3530,14 @@ msgid "Small" msgstr "નાનાં" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3365,7 +3546,7 @@ msgid "Large" msgstr "મોટાં" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3418,8 +3599,8 @@ msgstr "" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3459,99 +3640,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "કદ: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "બંઘ કરવાની ખાતરી કરો" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "બંઘ કરવાની ખાતરી કરો" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "હાલનાં અક્ષરને મળતો કર્સર રંગ વાપરો" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "પસંદગી કરેલ મૂકો" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been આઉટપુટ છોડી નાખવામાં " "આવ્યું છે Ctrl+S દબાવીને. પાછું શરૂ કરવા Ctrl+Q દબાવો." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "પસંદગી કરેલ મૂકો" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "અલગ દેખાવ" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "દેખાવ ડાબે/જમણે છૂટો પાડો" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "દેખાવ ઉપર/નીચે છૂટો પાડો" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3607,7 +3788,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "દેખાવ ઉપર/નીચે છૂટો પાડો" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3615,7 +3796,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "દેખાવ ડાબે/જમણે છૂટો પાડો" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3623,7 +3804,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "દેખાવ ઉપર/નીચે છૂટો પાડો" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3631,58 +3812,58 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "દેખાવ ઉપર/નીચે છૂટો પાડો" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "દેખાવ વિસ્તૃત કરો" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "દેખાવ સંકોચો" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "હાલની ટેબને છૂટી પાડો (&e)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "હાલની ટેબને છૂટી પાડો (&e)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "Next Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "નવી ટેબ" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" @@ -3690,152 +3871,166 @@ msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "પાછળ" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ટર્મિનલ ડિસ્પ્લેની ઉપર" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ટર્મિનલ ડિસ્પ્લેની નીચે" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ટર્મિનલ ડિસ્પ્લેની ઉપર" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ટર્મિનલ ડિસ્પ્લેની નીચે" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "%1 ટેબ પર જાવ" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "દેખાવ જમણે ખસેડો" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "દેખાવ ડાબે ખસેડો" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1 ટેબ પર જાવ" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "માઉસ પ્રતિક્રિયાઓ" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "લીટીઓની ચોક્કસ સંખ્યા: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "દેખાવ ડાબે ખસેડો" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3848,7 +4043,7 @@ msgstr "" "આઉટપુટ સંગ્રહ કરતી વખતે મુશ્કેલી આવી.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3861,13 +4056,13 @@ msgstr "" "આઉટપુટ સંગ્રહ કરતી વખતે મુશ્કેલી આવી.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3965,29 +4160,41 @@ msgstr "મૂળભૂત અક્ષર એન્કોડિંગ:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "લીટીઓની ચોક્કસ સંખ્યા: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4024,7 +4231,7 @@ msgstr "પસંદ કરેલ રંગ પધ્ધતિમાં ફે #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4081,12 +4288,18 @@ msgstr "ઘાટાં રંગો ઘાટાં ફોન્ટમાં #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4218,30 +4431,46 @@ msgid "Make the cursor blink regularly" msgstr "કર્સરને ઝબૂકવાનું નિયમિત બનાવો" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "વર્ણન:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "કર્સરને ઝબૂકવાનું નિયમિત બનાવો" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "વિન્ડો" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4249,25 +4478,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4276,28 +4505,28 @@ msgid "Color:" msgstr "રંગ" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "કર્સર દોરવા માટે વપરાતો રંગ પસંદ કરો" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "ટર્મિનલ લાક્ષણિકતાઓ" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "ટર્મિનલ લાક્ષણિકતાઓ" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4305,95 +4534,95 @@ msgid "Terminal contents" msgstr "ટર્મિનલ લાક્ષણિકતાઓ" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "દ્રિ-દિશાનું લખાણ રેન્ડરીંગ સક્રિય કરો" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4401,45 +4630,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "હાલનાં અક્ષરને મળતો કર્સર રંગ વાપરો" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "ફોન્ટ" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4448,98 +4677,98 @@ msgstr "" "દ્રિ-દિશાનું લખાણ ટર્મિનલ માટે સક્રિય કરો (માત્ર અરેબિક, ફારસી અથવા હિબ્રૂ માટે યોગ્ય)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "દ્રિ-દિશાનું લખાણ રેન્ડરીંગ સક્રિય કરો" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "હાલનાં અક્ષરને મળતો કર્સર રંગ વાપરો" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "રૂપરેખા ફેરફાર કરો" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "સામાન્ય" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ટેબ્સ" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "દેખાવ" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "સરકવું" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "કળ જોડાણો" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "ઉચ્ચ" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4548,49 +4777,56 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "રૂપરેખા ફેરફાર કરો છો: %2" msgstr[1] "રૂપરેખાઓ %1 ફેરફાર કરો છો: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "નવી રૂપરેખા..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" રૂપરેખા ફેરફાર કરો" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "કંઇ નહી (&N)" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4600,7 +4836,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4610,45 +4846,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "પસંદગી કરેલ મૂકો" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "દેખાવ અસરો" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "નવાં ટર્મિનલ સત્રો માટે પસંદ કરેલ રૂપરેખા મૂળભૂત તરીકે ગોઠવો" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "વાતાવરણ ફેરફાર કરો" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4656,45 +4892,45 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "શરૂઆત ડિરેક્ટરી પસંદ કરો" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "નવું..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "મૂળભૂત રૂપરેખા" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4711,7 +4947,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4807,27 +5043,55 @@ msgstr "શરૂઆતની ડિરેક્ટરીમાં શોધો" msgid "Start in same directory as current session" msgstr "હાલની ટેબ મુજબ એ જ ડિરેક્ટરીમાં શરૂ કરો" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "હાલની ટેબ મુજબ એ જ ડિરેક્ટરીમાં શરૂ કરો" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "વાતાવરણ:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "ટર્મિનલ લાક્ષણિકતાઓ" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4837,33 +5101,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "ટર્મિનલ ઇમ્યુલેટર" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "માઉસ પ્રતિક્રિયાઓ" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4873,9 +5137,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4886,9 +5150,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4899,35 +5163,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "પાશ્વરંગ" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5273,72 +5537,25 @@ msgid "Scrollback:" msgstr "પાછળજાવ (&c)" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ટેબ પટ્ટી સ્થિતિ:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "ટર્મિનલ વિન્ડોની જમણી બાજુએ સરકતી પટ્ટી બતાવો" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "જમણી બાજુ બતાવો" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "ટર્મિનલ વિન્ડોની ડાબી બાજુએ સરકતી પટ્ટી બતાવો" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "લખાણ કદ:" - #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5346,46 +5563,105 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "છૂપાયેલ" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "ટર્મિનલ વિન્ડોની જમણી બાજુએ સરકતી પટ્ટી બતાવો" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "જમણી બાજુ બતાવો" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "ટર્મિનલ વિન્ડોની ડાબી બાજુએ સરકતી પટ્ટી બતાવો" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "લખાણ કદ:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ટેબ પટ્ટી સ્થિતિ:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5490,40 +5766,40 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "કંઇ નહી (&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "શોધો:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "શોધવા માટે લખાણ અહીં દાખલ કરો" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "આગળ" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "હાલનાં શોધ લખાણનું આગળનો મેળ શોધો" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "પાછળ" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5531,88 +5807,88 @@ msgid "Find the previous match for the current search phrase" msgstr "હાલનાં શોધ લખાણનું પાછળનો મેળ શોધો" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "શોધ પટ્ટી બંધ કરો" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "સક્રિય બંધ કરો" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "નક્કી કરો કે શોધ કિસ્સા પર આધારિત છે કે નહી" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "શોધ પટ્ટી બંધ કરો" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "રેગ્યુલર એક્સપ્રેશન મેળવો" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "બધું પ્રકાશિત કરો" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "નક્કી કરો કે મળતું લખાણ પ્રકાશિત કરવું જોઇએ કે નહી" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "હાલનાં શોધ લખાણનું આગળનો મેળ શોધો" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "હાલનાં શોધ લખાણનું આગળનો મેળ શોધો" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "હાલનાં શોધ લખાણનું આગળનો મેળ શોધો" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "હાલનાં શોધ લખાણનું આગળનો મેળ શોધો" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5625,7 +5901,7 @@ msgstr "હાલનાં શોધ લખાણનું આગળનો મ msgid "Print Shell" msgstr "શૅલ" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5668,6 +5944,14 @@ msgstr "સામાન્ય ટેબ શિર્ષક બંધારણ" msgid "Tab Co&lor:" msgstr "રંગ" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "રંગ" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5782,7 +6066,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ટેબ બંધ કરો (&C)" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5790,33 +6074,48 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "ટેબને છૂટો પાડો (&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ટેબને છૂટો પાડો (&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "શોધ પટ્ટી બંધ કરો" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "ટેબને છૂટો પાડો (&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ટેબનું નામ બદલો (&R)..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "ટેબ બંધ કરો (&C)" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "સક્રિય બંધ કરો" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" diff --git a/local/recipes/kde/konsole/source/po/he/konsole.po b/local/recipes/kde/konsole/source/po/he/konsole.po index f2f29971c0..c5e7fe476c 100644 --- a/local/recipes/kde/konsole/source/po/he/konsole.po +++ b/local/recipes/kde/konsole/source/po/he/konsole.po @@ -17,13 +17,13 @@ # tahmar1900 , 2008. # elkana bardugo , 2016. # Elkana Bardugo , 2017. #zanata -# SPDX-FileCopyrightText: 2023, 2024 Yaron Shahrabani +# SPDX-FileCopyrightText: 2023-2026 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-10-30 12:52+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-05-07 10:30+0300\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" @@ -32,7 +32,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 26.04.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -66,7 +66,7 @@ msgstr "תצוגה" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "תצוגה מפוצלת" @@ -102,7 +102,7 @@ msgid "S&crollback" msgstr "היסטוריה נ&גללת" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "סרגל כלי הפעלה" @@ -183,46 +183,58 @@ msgstr "הסתרת התפריט, התעלמות מברירת המחדל" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "להציג את כל סרגלי הכלים, התעלמות מברירת המחדל" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "להסתיר את כל סרגלי הכלים, התעלמות מברירת המחדל" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "הצגת סרגל הכלים, התעלמות מברירת המחדל" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "הסתרת סרגל הכלים, התעלמות מברירת המחדל" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "הפעלת Konsole במסך מלא" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "משבית את השימוש ברקעים שקופים, גם אם המערכת תומכת בהם." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "הצגת הפרופילים הזמינים" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "הצגת כל שמות הפרופילים והסוגים שלהם (לשימוש עם ‎-p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "שינוי ערך מאפיין של פרופיל." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,7 +244,7 @@ msgstr "" "פקודה להפעלה. אפשרות זו תלכוד את כל הארגומנטים, כך שכדאי להשתמש בה בתור " "המוצא האחרון." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -242,13 +254,13 @@ msgstr "" "לאלץ שימוש חוזר במופע קיים גם אם זה יפגע ביכולות, למשל: ‎--new-tab. מיועד " "בעיקר לניפוי תקלות." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "ארגומנטים המועברים לפקודה" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -266,157 +278,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "קדמה" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "רקע" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "צבע 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "צבע 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "צבע 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "צבע 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "צבע 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "צבע 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "צבע 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "צבע 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "חזית (עז)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "רקע (עז)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "צבע 1 (עז)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "צבע 2 (עז)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "צבע 3 (עז)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "צבע 4 (עז)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "צבע 5 (עז)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "צבע 6 (עז)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "צבע 7 (עז)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "צבע 8 (עז)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "חזית (חלש)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "רקע (חלש)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "צבע 1 (חלש)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "צבע 2 (חלש)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "צבע 3 (חלש)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "צבע 4 (חלש)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "צבע 5 (חלש)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "צבע 6 (חלש)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "צבע 7 (חלש)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "צבע 8 (חלש)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -669,7 +681,39 @@ msgstr "למעלה" #: colorscheme/ColorSchemeViewDelegate.cpp:52 #, kde-format msgid "AaZz09..." -msgstr "AaZz09..." +msgstr "AaZz09…" + +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "מארח" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "אין תמיכה במכולות כש־Konsole רץ מתוך Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [ברירת מחדל]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" #: CopyInputDialog.cpp:30 #, kde-format @@ -715,7 +759,7 @@ msgstr "" msgid "Copy Location" msgstr "העתקת מקום" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "התמונה הממוזערת נוצרת" @@ -746,13 +790,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "בחירת גופן" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "הצגת כל הגופנים" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -791,17 +835,17 @@ msgstr "צירוף מקשים" msgid "Output" msgstr "פלט" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "רשימת מיפוי תווים חדשה" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "עריכת רשימת צירופי מקשים" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "אי אפשר לשמור סכמת צירופי מקשים עם תיאור ריק." @@ -809,7 +853,7 @@ msgstr "אי אפשר לשמור סכמת צירופי מקשים עם תיאו #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -829,7 +873,7 @@ msgstr "הסרה" #, kde-format msgctxt "Title of the area where you test your keys are properly configured" msgid "Test Area" -msgstr "איזור בדיקה" +msgstr "אזור בדיקה" #. i18n: ectx: property (text), widget (QLabel, label) #: KeyBindingEditor.ui:115 @@ -843,225 +887,225 @@ msgstr "קלט:" msgid "Output:" msgstr "פלט:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "מדמה מסוף" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997‏-2022, מפתחי Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "קרט הינדנבורג" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "מתחזק ראשי, תיקוני תקלות ושיפורים כללים" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "רוברט נייט" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "מתחזק קודם, הסבה אל KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "לארס דואל" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "יוצר מקורי" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "אחמד סמיר" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "כתיבה מחדש משמעותית, תיקוני תקלות ושיפורים משמעותיים" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "קרלוס אלביס" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "טומאש קנאבראווה" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "גוסטבו קרניירו" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "אדווין פוחוס" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "תיקוני תקלות ושיפורים כלליים" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "מרטין ט. ה. זנדסמרק" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "נייט גרהם" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "מריוש גלבוצ׳קי" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "תיקוני תקלות ושיפורים משמעותיים" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "תומס סורל" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "ג׳קיל וו" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "ולדו בסטיאן" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "סטפן בינר" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "תומס דרייבהולץ" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "שיפורים כלליים" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "תיקוני תקלות" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "תמיכה בסולאריס והיסטוריה" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "אלכסנדר נוינדורף" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "תיקוני תקלות ושיפור בביצועי ההפעלה" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "פיטר סילבה" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "שיפורים בסימניות" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "לוצי בולוני" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1071,13 +1115,13 @@ msgstr "" "מסוף מוטמע\n" "סרגלי כלים ושמות הפעלות" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "דיויד פור" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1087,25 +1131,25 @@ msgstr "" "מסוף מוטמע\n" "שיפורים כלליים" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "אנטוניו לרוסה" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "אפקטים חזותיים" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "מתיאס אטריק" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1115,132 +1159,132 @@ msgstr "" "לקח קוד ממיזם kvt\n" "שיפורים כלליים" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "וורוויק אליסון" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "שיפורי ערכות צבע ובחירת טקסט" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "דן פיילון" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "הסבה ל־SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "קווין סטריט" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "הסבה ל־FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "סוון פישר" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "מרטין ג׳ונס" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "תודה לרבים אחרים.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&לשונית חדשה" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&שכפול לשונית" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&חלון חדש" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "סגירת חלון" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&סימניות" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&סכמת צבע חלון" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "ניהול פרופילים…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "הפעלת תפריט" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "שמירת פריסת הלשוניות…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "טעינת פריסת לשוניות…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1251,67 +1295,67 @@ msgstr[1] "יש שני תהליכים רצים בחלון זה. לצאת בכל msgstr[2] "יש %1 תהליכים רצים בחלון זה. לצאת בכל זאת?" msgstr[3] "יש %1 תהליכים רצים בחלון זה. לצאת בכל זאת?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "אישור יציאה" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "סגירת החלון" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "סגירת ה&לשונית הנוכחית" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "יש עוד %1 מסופים פתוחים בחלון הזה. לצאת בכל זאת?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "פרופילים" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "כללי" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "זיכרון" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "סרגל לשוניות / מפצלים" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "קבצים זמניים" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "תמונות ממוזערות" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1395,7 +1439,7 @@ msgstr "שמירה" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "עדכון" @@ -1407,27 +1451,27 @@ msgid "Cancel" msgstr "ביטול" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "פקודות מהירות" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "הצגת גישה מהירה" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "לא נמצאו פקודות מהירות. ניתן להוסיף תחת תוספים -> פקודות מהירות" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "תוספים - פקודות מהירות" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "הצגת פקודות מהירות" @@ -1469,7 +1513,7 @@ msgstr "" " על מגוון ההגדרות שלה, להמשיך?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "פעולה זו תמחק את %1, להמשיך?" @@ -1522,11 +1566,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 היא תיקייה לרשומות SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "הגדרות SSH" @@ -1585,24 +1629,24 @@ msgid "" msgstr "אי אפשר להריץ פקודות SSH מחוץ ליישומי מסוף (למשל: bash,‏ zsh,‏ sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "מפתח SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "מחיקה" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "לא לשנות" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1611,68 +1655,68 @@ msgstr "" "פעולה זו תמחק את התיקייה %1,\n" " על מגוון הגדרות ה־SSH שבה, להמשיך?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "מחיקת הגדרות SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." -msgstr "יובא פרופיל SSH
          חלק מההגדרות הן לקריאה בלבד." +msgstr "יובא פרופיל SSH
          חלק מההגדרות הן לקריאה בלבד." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "שם מארח חסר" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "שם חסר" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "אם הוגדר שימוש בהגדרות Ssh, לא לציין מפתח ssh או שם משתמש." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "יש להגדיר לפחות שם משתמש או מפתח SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "תיקייה חסרה" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "להפעלת SSH חייב להיות פרופיל" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "אי אפשר למחוק את התיקייה הזאת" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "מחיקת התיקייה על תוכנה" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "לחיצה כפולה תשנה את שם התיקייה." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "אי אפשר למחוק רשומה שנוספה אוטומטית." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "מחיקת הרשומה הנבחרת" @@ -1864,25 +1908,25 @@ msgstr "אפשרויות פלט" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "הדפסה י&דידותית (טקסט שחור, ללא רקע)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "התאמת פלט ל&קנה מידה" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "מובנה" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "פרופיל ברירת־המחדל" @@ -1941,17 +1985,38 @@ msgstr "לחיצה כפולה כדי לשנות את הקיצור" msgid "Tab Properties" msgstr "מאפייני לשונית" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "שמירת הפלט של %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "הכתובת %1 שגויה, אי אפשר לשמור את הפלט." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "יצירת קובץ שמירה אוטומטית ב־%1 נכשלה." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "שמירה אוטומטית נעצרת עקב החלפת מסכים." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "קובץ השמירה האוטומטית השתנה מבחוץ, מה שמונע שמירות אוטומטיות נוספות" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "עדכון מצב השמירה האוטומטית עם שינויי הפלט נכשל." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1987,81 +2052,98 @@ msgstr "בריזה" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "קמפבל" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "פסטלים כהים" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "ירוק על גבי שחור" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "צבעי לינוקס" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "אדום על גבי שחור" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "זורח" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "זורח בהיר" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "לבן על גבי שחור" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "ברירת מחדל (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "מסוף לינוקס" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "מסוף Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "חיפוש…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "נא למלא כאן שם לשונית לחיפוש" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "פעמון אצל ‚%1’ (הפעלה ‚%2’)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "אי אפשר למצוא את קובץ ההפעלה: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "אזהרה: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "אי אפשר למצוא מעטפת אינטראקטיבית להפעלה." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2069,396 +2151,399 @@ msgid "" msgstr "" "אי אפשר למצוא את ‚%1’,‏ ‚%2’ מופעל במקום. נא לבדוק את הגדרות הפרופיל שלך." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "אי אפשר להפעיל את התוכנית ‚%1’ עם הארגונמטים ‚%2’." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "שקט אצל ‚%1’ (הפעלה ‚%2’)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "הצגת הפעלה" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"נעשה כרגע שימוש במתודות sendText/runCommand של D-Bus. יש כל מיני חששות " -"אבטחת מידע שנוגעים לאישור ההנגשה של המתודות האלו לציבור. אם יש צורך בכך, " -"אפשר לשנות את המתודות האלו לשימוש פנימי בלבד על ידי הידור של Konsole מחדש. " -"

          אזהרה זו תופיע רק פעם אחת בעותק זה של Konsole.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "הסתיים" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "התוכנית ‚%1’ קרסה." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "התוכנית ‚%1’ נסגרה עם מצב %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "תהליך ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "פעילות אצל ‚%1’ (הפעלה ‚%2’)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "ה־API של D-Bus שרגיש מבחינת אבטחת מידע מושבת בהגדרות." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "התהליך ‚%1’ סיים לרוץ בהפעלה ‚%2’" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole לא יודע איך לפתוח את הסימנייה: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "חיפוש אחר ‚%1’ בעזרת" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "הגדרת קיצורי רשת…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&סגירת הפעלה" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "פתיחת מנהל הקבצים" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "העתקה" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "פיצול התצוגה ימין/שמאל" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "פיצול התצוגה מעלה/מטה" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "העתקה בלי הקידומות" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "העתק קלט משתמש" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "העתקת פלט פקודה" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "הדבקת בחירה" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "חיפוש ברשת" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "בחירה בה&כול" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "מצב &בחירה" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "בחירה ב&שורה" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "שמירת הפלט &בתור…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "שמירת הפלט אוטומטית בתור…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "עצירת שמירה אוטומטית" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "ה&דפסת מסך…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "כיוון היסטוריית גלילה…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "פינוי היסטוריית גלילה" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "פינוי היסטוריית הגלילה ואיפוס" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "הפרופיל הבא" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "הפרופיל הקודם" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "החלפת פרופיל" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "הגדרת &קידוד" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "לאפשר מעקב אחרי העכבר" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "קריאה בלבד" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "ה&גדרה או שינוי שם לשונית…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&כל הלשוניות בחלון הנוכחי" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&בחירת לשוניות…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&כלום" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "העתקת קלט אל" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ה&עלאת ZModem…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "צגים להתראה חד־פעמית" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "מעקב אחר המ&תנה לקלט" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "מ&עקב אחר פעילות" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "מעקב אחר &חוסר פעילות" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "מעקב אחר סיום תהליך" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "הגדלת כתב" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "הקטנת כתב" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "איפוס גודל כתב" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "שליחת אות" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "ה&שהיית משימה" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "ה&משך משימה" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&ניתוק" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&עצירת משימה" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&סיום משימה" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&חיסול משימה" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "איתות משתמש &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "איתות משתמש &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "יצירת פרופיל חדש…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "עריכת פרופיל נוכחי…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "יש תוכנית שרצה בהפעלה הזאת. לסגור אותה?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "התוכנית ‚%1’ רצה בהפעלה הזאת. לסגור אותה?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "אישור יציאה" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "סגירת התוכנית" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "התוכנית שרצה בהפעלה הזאת לא נסגרת. לחסל אותה בכוח?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "התוכנית ‚%1’ שרצה בהפעלה הזאת לא נסגרת. לחסל אותה בכוח?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "חיסול תוכנית" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "שורת הפקודה מופיעה בהפעלה ‚%1’" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "פתיחת התיקייה הנוכחית עם" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "שמירת הורדת ZModem אל…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2468,13 +2553,13 @@ msgstr "" "

          זוהה ניסיון העברה של קובץ בעזרת ZModem, אך לא נמצא יישום מתאים עבור " "ZModem במערכת.

          עליך להתקין את חבילה rzsz או lrzsz.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "

          ההפעלה הנוכחית כבר מכילה העברה של קובץ בעזרת ZModem.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2483,7 +2568,7 @@ msgstr "" "

          לא נמצא יישום מתאים עבור ZModem במערכת.

          עליך להתקין את חבילה rzsz " "או lrzsz.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "בחירת קבצים להעלאת ZModem" @@ -2506,144 +2591,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "הגדרה" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "חיפוש:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "הפעלת מקשי האצה בתפריטים" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "אם מאופשר, התעלם מהגדרות הפרופיל" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "שימור גודל החלון" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "הצגת שם החלון בכרטיסייה" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "העברת המיקוד למסופים כאשר סמן העכבר עובר מעליהם" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "להשתמש בביטויים רגולריים" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "בעת טעינת Konsole להשתמש בתהליך קיים מחדש אם ניתן" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "להפעיל את כל חלונות Konsole בתהליך יחיד" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "הדגשת כל ההתאמות" +msgid "If enabled, profile settings will be ignored" +msgstr "אם מאופשר, התעלם מהגדרות הפרופיל" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "קובע אם החיפוש הוא תלוי רישיות" +msgid "Remember window size" +msgstr "שימור גודל החלון" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "תלוי רישיות" +msgid "Force new tabs" +msgstr "אכיפת לשוניות חדשות" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "הסרת שורת הכותרת והמסגרת של החלון" +msgid "Listen for ZModem terminal codes" +msgstr "האזנה לקודים של מסוף ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "תהליך וחלון:" +msgid "Show progress in taskbar" +msgstr "הצגת התקדמות בשורת המשימות" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "התראות:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "כל החלוניות יוצגו שוב" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "לאפשר את כל ההודעות שסומנו ב„לא לשאול שוב”" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "מגדיר האם החיפוש יתחיל מהסוף" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "חיפוש לאחור" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "קובע אם החיפוש הוא תלוי רישיות" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "תלוי רישיות" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "תהליך וחלון:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "הדגשת כל ההתאמות" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "חיפוש:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "מגדיר האם החיפוש ייעצר במקום לגלוש" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "ללא גלישה" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "הפעלת מקשי האצה בתפריטים" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "העברת המיקוד למסופים כאשר סמן העכבר עובר מעליהם" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "כל החלוניות יוצגו שוב" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "לאפשר את כל ההודעות שסומנו ב„לא לשאול שוב”" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "הצגת שם החלון בכרטיסייה" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "הפעלת החלקים הרגישים מבחינת אבטחת מידע של ה־API של D-Bus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "הסרת שורת הכותרת והמסגרת של החלון" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "להשתמש בביטויים רגולריים" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2668,71 +2779,109 @@ msgstr "להשתמש בגודל החלון הנוכחי בהפעלה הבאה" msgid "The window size will be saved upon exiting Konsole" msgstr "גודל החלון יישמר עם היציאה מ־Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "בעת טעינת Konsole ליצור לשונית חדשה במקום חלונות חדשים אם ניתן" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "הצגת התקדמות בשורת המשימות" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "כאשר סקריפט מדווח על ההתקדמות שלו, היא תופיע בשורת המשימות" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "תופעל runCommand דמויית API של D-Bus" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "האזנה לקודים של מסוף ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "שליחה/קבלה של קבצים דרך חיבור טורי אוטומטית" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "רוחב תמונה ממוזערת" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "הגדרת רוחב התמונה הממוזערת" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "להשתמש ב־Shift כדי להציג תמונה ממוזערת" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "להשתמש ב־Alt כדי להציג תמונה ממוזערת" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "להשתמש ב־Ctrl כדי להציג תמונה ממוזערת" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "החיפוש תלוי רישיות" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "הדגשת כל התוצאות" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "מגדיר האם להדגיש את הטקסט שנמצא" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "החיפוש נעצר במקום לגלוש" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "שליטה האם תיווצרנה cgroups צאצאיות עבור כל לשונית בנפרד" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2740,91 +2889,97 @@ msgstr "קביעת רמת צריכת הזיכרון שמעבר לה תתחיל #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "שליטה במצב התצוגה של כל שורת הכרטיסיות" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "שליטה בגודל הידית בין שני הלוחות" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "שליטה במיקום של שורת הכרטיסיות" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "שולט בעיצוב הנראה של סרגל הכרטיסיות" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "השתמש בקובץ CSS המודר על ידי המשתמש לשורת הכרטיסיות" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "קובץ ה־‎.css‏ לשימוש בעיצוב סרגל הכרטיסיות" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "לאפשר פתיחת וסגירת לשוניות בלחיצה כפולה" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "שליטה בחשיפת כפתור ‚לשונית חדשה’ בסרגל הלשוניות" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "שליטה בחשיפת כפתור ‚חיפוש לשוניות’ בסרגל הלשוניות" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "לשלוט איפה מופיע כפתור „סגירת לשונית”" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "קבע איפה לשים את הכרטיסייה החדשה" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "הרחבת הלשוניות" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "לקובצי היסטוריה נגללת, להשתמש בתיקייה הכלל־מערכתית" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "לקובצי היסטוריה נגללת, להשתמש בתיקייה המסוימת למשתמש" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "לקובצי היסטוריה נגללת, להשתמש במיקום של תיקייה מסוימת" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "לקובצי היסטוריה נגללת, להשתמש בתיקייה הזאת" @@ -2836,31 +2991,29 @@ msgid "Enable memory monitoring:" msgstr "הפעלת מעקב זיכרון:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" -"השינויים יחולו לאחר הפעלה מחדש. אם האפשרות פעילה, צריכת זיכרון\n" -"ממושכת על ידי Konsole שחורגת מהערך שצוין תגרום\n" -"ל־systemd-oomd לסלק את הלשוניות שמכילות את התהליכים שמעמיסים\n" -"על הזיכרון. לתשומת ליבך: הפעלה עלולה לגרום להאטות בעת שימוש מוגזם\n" -"בזיכרון וציון של ערכים נמוכים במיוחד עלולים לגרום לסגירה של Konsole." +"השינויים יחולו לאחר הפעלה מחדש. אם האפשרות פעילה, צריכת זיכרון ממושכת על ידי " +"Konsole שחורגת מהערך שצוין תגרום ל־systemd-oomd לסלק את הלשוניות שמכילות את " +"התהליכים שמעמיסים על הזיכרון. לתשומת ליבך: הפעלה עלולה לגרום להאטות בעת " +"שימוש מוגזם בזיכרון וציון של ערכים נמוכים במיוחד עלולים לגרום לסגירה של " +"Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "מגבלת זיכרון:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " מ״ב" @@ -3018,125 +3171,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "לא" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "הצגת כפתור חיפוש לשוניות:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "תמיד" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "אף פעם לא" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "שונות:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "הצגת כפתור ‚לשונית חדשה’" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "הרחבת רוחבי לשוניות בודדות לחלון מלא" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "להשתמש בגיליונות סגנון של המשתמש:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(אין)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "התנהגות" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "הצבת לשוניות חדשות:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "ב&סוף" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "אחרי הלשונית ה&נוכחית" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "סגירת לשונית בלחיצה אמצעית" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "פיצולים" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "הצגת כותרת:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "בעת הצורך" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "אף פעם לא" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "גודל ידית גרירה:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "קטן" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "בינוני" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "גדול" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3188,12 +3359,12 @@ msgstr "פיקסלים" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          כדי להשתמש ביכולת הזאת, יש להפעיל את עכבר->שונות->קו תחתי לקבצים בהגדרות הפרופיל שלך

          " +"style=\" font-weight:600;\">עכבר->שונות->קו תחתי לקבצים בהגדרות " +"הפרופיל שלך

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3231,12 +3402,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "הפעלת יצירת תמונות ממוזערות" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "גודל: %1 על %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3245,83 +3416,83 @@ msgstr[1] "להדביק שני תווים?" msgstr[2] "להדביק %1 תווים?" msgstr[3] "להדביק %1 תווים?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "אישור הדבקה" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "סוף הטקסט/הפרעה: עשוי לצאת מהתהליך הנוכחי" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "סוף ההעברה: עשוי לצאת מהתהליך הנוכחי" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "פעמון: ינסה להזהיר באמצעות שמע" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "בקרת מכשיר שלוש/XOFF: משהה את הפלט" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "החלפה/השהיה: עשוי להשהות את התהליך הנוכחי" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: משמש לתפעול מצב המסוף" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "מפריד קובץ/יציאה: עשוי להשבית את התהליך הנוכחי" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "הטקסט שמיועד להדבקה מכיל תווי בקרה מוסתרים, לסנן אותם החוצה?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "אישור הדבקה" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "הדבקה &בלי תווי בקרה" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "הדבקה של ה&כול" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&ביטול" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been הושעה על ידי לחיצה על Ctrl+S. יש ללחוץ על Ctrl+Q כדי להמשיך." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "המסוף הזה הוא לקריאה בלבד." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "מעבר ל&תיקייה" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "ה&דבקת מיקום" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "פיצול התצוגה" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "פיצול תצוגה ימינה/שמאלה" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "פיצול תצוגה מעלה/מטה" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "פיצול התצוגה אוטומטית" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "פיצול התצוגה לשמאל/ימין מהלשונית הבאה" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "פיצול התצוגה למעלה/מטה מהלשונית הבאה" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "פיצול התצוגה אוטומטית מהלשונית הבאה" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "טעינת לשונית חדשה עם מסופים בפריסת 2×2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "טעינת לשונית חדשה עם מסופים בפריסת 1×2" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "טעינת לשונית חדשה עם מסופים בפריסת 2×1" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "הרחבת תצוגה" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "צמצום תצוגה" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "ניתוק הת&צוגה הנוכחית" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ניתוק ה&לשונית הנוכחית" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "הלשונית הבאה" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "הלשונית הקודמת" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "מיקוד מעל המסוף" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "מיקוד מתחת למסוף" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "התמקדות במסוף השמאלי" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "התמקדות במסוף הימני" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "התמקדות במסוף הבא" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "התמקדות במסוף הקודמת" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "מעבר ללשונית האחרונה" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "הלשוניות האחרונות שהיו בשימוש" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "מעבר בין שתי לשוניות" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "הלשוניות האחרונות שהיו בשימוש (אחורה)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "החלפת מצב הגדלת התצוגה הנוכחית" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "החלפת מצב הגדלת התצוגה הנוכחית" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "החלפת מצב הגדלת-תקריב התצוגה הנוכחית" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "החלפת מצב הגדלת-תקריב התצוגה הנוכחית" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "העברת לשונית ימינה" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "העברת לשונית שמאלה" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "הגדרת שילוב סמנטי (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "החלפת מצב תצוגת עצות סמנטיות" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "החלפת מצב תצוגת מספרי שורות" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "גודל שווה לכל התצוגות" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "מעבר ללשונית %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "רמזים סמנטיים " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "מספרי שורות " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "שמירת פריסת לשוניות" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "פריסת תצוגת Konsole‏ (‎*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3589,7 +3772,7 @@ msgstr "" "אירעה שגיאה בשמירת הפריסה.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3599,13 +3782,13 @@ msgstr "" "אירעה שגיאה בטעינת הפריסה.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "טעינת פריסת לשוניות" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3703,28 +3886,40 @@ msgstr "קידוד &ברירת מחדל:" msgid "Shortcut for peeking the primary screen:" msgstr "קיצור דרך להצצה במסך העיקרי:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "הגדרת מרווח בין שמירות אוטומטיות:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " מ״ש" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "מספרי שורות:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&אף פעם לא" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "כאשר מופיעים &רמזים לכתובת" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3760,7 +3955,7 @@ msgstr "עריכת ערכת העיצוב הנבחרת" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3814,12 +4009,18 @@ msgstr "צביעת גופנים מודגשים בצבעים עזים" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" -msgstr "השתמש בגופן הנבחר עבור מספרי שורות במקום בגופן המובנה" +msgstr "להשתמש בגופן הנבחר עבור מספרי שורות במקום בגופן המובנה" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "להשתמש בתווי שורה הכלולים בגופן" @@ -3938,29 +4139,43 @@ msgid "Make the cursor blink regularly" msgstr "סמן מהבהב באופן קבוע" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "מופעל" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "הנפשה:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "הנפשה חלקה של הסמן" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "שונות" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "חלון:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3968,144 +4183,144 @@ msgid "" msgstr "הצגת גודל המסוף בשורות ועמודות במרכז החלון לאחר שינוי הגודל" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "הצגת רמז לגודל המסוף לאחר שינוי הגודל" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "תמיד להפוך את הצבעים של הטקסט הנבחר" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "עוצמת הכהיה:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "צבע:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "בחירת הצבע לציור המסגרת" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "מסופים לא פעילים:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "מסופים פעילים:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "תוכני מסוף" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "ריווח בין שורות:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "מספר הפיקסלים בין שתי שורות" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " פיקסלים" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "גבולות:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "יישור למרכז:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "ציון האם החלון פעיל על ידי עמעום הצבעים" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "הכהיה" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "ציון האם החלון פעיל על ידי ציור מסגרת" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "מסגרת" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "הצגת קו אנכי בעמודה:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          פריסת טקסט מורכבת

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "פריסת טקסט מורכבת" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "הפעלת עיבוד טקסט במצב מילים" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "מצב מילים" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4115,43 +4330,43 @@ msgstr "" "העיבוד)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "להשתמש באותם המאפיינים לכל המילה" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "עיבוד מילים של תווי ASCII יחד" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "תווי ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "עיבוד מילים עם תווים בסוגי כתב בראהמיים יחד" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "תווים של סוגי כתב בראהמיים" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "גופן אמוג׳י:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4159,95 +4374,95 @@ msgid "" msgstr "הפעל תצוגה דו־כיוונית במסופים (פועל על ערבית, פרסית ועברית בלבד)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "עיבוד טקסט דו־כיווני" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "השורות הן תמיד משמאל לימין, במקום החלטה לפי התו החזק הראשון" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "אילוץ כיוון שורה משמאל לימין" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "התייחסות לתווי ציור טבלה כשמאל לימין חזק." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "דריסת מצב דו־כיווניות לתווי טבלה" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "התעלמות מתווים בעייתיים של wcwidth" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "דריסת wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "ערוך פרופיל" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "כללי" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "כרטיסיות" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "מראה" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "גלילה" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "מקלדת" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "צירופי תווים" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "עכבר" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "מתקדם" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4259,31 +4474,31 @@ msgstr "" "לשנות את ההרשאות של הקובץ הזה או להגדיר שם שונה כדי לשמור את ההגדרות לפרופיל " "חדש." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "שם הפרופיל היה ריק, נא להגדיר שם כדי שאפשר יהיה לשמור את ההגדרות." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "כבר קיים פרופיל בשם „%1”." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "שם הפרופיל חורג מהאורך המותר (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "התווים המודגשים שגויים לשמות פרופילים: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4292,17 +4507,22 @@ msgstr[1] "עריכת שני פרופילים: %2" msgstr[2] "עריכת %1 פרופילים: %2" msgstr[3] "עריכת %1 פרופילים: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "יצירת פרופיל חדש" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "ערוך את הפרופיל \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "ללא" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4314,7 +4534,7 @@ msgstr[1] " עמודות" msgstr[2] " עמודות" msgstr[3] " עמודות" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4326,42 +4546,42 @@ msgstr[1] " שורות" msgstr[2] " שורות" msgstr[3] " שורות" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "פעמון מערכת" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "התראות מערכת" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "פעמון חזותי" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "התעלמות מאירועי פעמון" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "פרופיל ברירת מחדל להפעלות מסוף חדשות ב־%1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "עריכת הסביבה" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "משתנה סביבה אחד בשורה" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4371,30 +4591,30 @@ msgstr[1] " שניות" msgstr[2] " שניות" msgstr[3] " שניות" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "בחירת ספרייה התחלתית" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "הורדת חדשה…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "טעינת הסכמה %1 נכשלה." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "ערכת נושא זו משתמשת ברקע שקוף שלא נתמך בשולחן העבודה שלך" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4403,12 +4623,12 @@ msgstr "" "היישום Konsole הופעל לפני שהאפקטים של שולחן העבודה הופעלה. עליך להפעיל את " "Konsole בכדי לראות רקע שקוף." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "ברירת המחדל לסוג הקובץ" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4437,7 +4657,7 @@ msgstr "" "לא תהיה השפעה והקובץ הזה ייפתח על ידי עורך\n" "הטקסט שמוגדר כברירת המחדל." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "פקודה מותאמת אישית לעורך טקסט" @@ -4524,26 +4744,55 @@ msgstr "בחר את הספרייה ההתחלתית" msgid "Start in same directory as current session" msgstr "התחלה באותה התיקייה כמו ההפעלה הנוכחית" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"בעת פתיחת לשונית חדשה או פיצול, להיכנס אוטומטית לאותה המכולה (Distrobox,‏ " +"Toolbox) כמו ההפעלה הנוכחית" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "להיכנס לאותה המכולה כמו ההפעלה הנוכחית" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "תמיד להתחיל במכולה:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "תמיד להקים הפעלות חדשות באמצעות הפרופיל הזה בתוך המכולה הנבחרת" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "סביבה:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "ערוך את רשימת משתני הסביבה והערכים המשוייכים" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "&גודל מסוף התחלתי:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4556,31 +4805,31 @@ msgstr "" "שהרשומות האלו תעבודנה.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "מצב &פעמון מסוף:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "שילוב סמנטי" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "הדמיה של חיצי מעלה/מטה" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "לחיצת עכבר בשורת הקלט מזיזה את הסמן" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "רמיזות סמנטיות:" @@ -4590,9 +4839,9 @@ msgstr "רמיזות סמנטיות:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4603,9 +4852,9 @@ msgstr "אף פעם לא" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4616,34 +4865,34 @@ msgstr "כאשר מופיע רמז לכתובת" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "תמיד" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "פסי שגיאה אדומים:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "רקע שגיאה אדום:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "פסים מתחלפים:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "רקע מתחלף:" @@ -4673,7 +4922,7 @@ msgstr "יצירת סכמת צירופי מקשים חדשה המבוססת על #, kde-format msgctxt "@action:button Create an alternate key binding" msgid "New..." -msgstr "חדשה..." +msgstr "חדשה…" #. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:70 @@ -4812,7 +5061,7 @@ msgid "" "Text recognized as a link or an email address will be underlined when " "hovered by the mouse pointer." msgstr "" -"טקסט שמזוהה בתור קישור או כתובת דוא\"ל יודגש בקו תחתי כאשר העכבר עובר מעליו." +"טקסט שמזוהה בתור קישור או כתובת דוא״ל יודגש בקו תחתי כאשר העכבר עובר מעליו." #. i18n: ectx: property (text), widget (QCheckBox, underlineLinksButton) #: widgets/EditProfileMousePage.ui:269 @@ -4912,8 +5161,8 @@ msgid "" "Mouse scroll wheel will emulate up/down key presses in programs that use the " "Alternate Screen buffer (e.g. less)" msgstr "" -"גלגלת העכבר תדמה לחיצות מקשים למעלה/למטה בתוכניות שמשתמשות בזכרון המסך " -"החלופי (למשל: less)" +"גלגלת העכבר תדמה לחיצות מקשים למעלה/למטה בתוכניות שמשתמשות בזיכרון מסך חלופי " +"(למשל: less)" #. i18n: ectx: property (text), widget (QCheckBox, enableAlternateScrollingButton) #: widgets/EditProfileMousePage.ui:408 @@ -4986,115 +5235,127 @@ msgid "Scrollback:" msgstr "היסטוריה נגללת:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "גלילה של עמוד למעלה/למטה:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "הדגשת השורות שנכנסות לתצוגה" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "מוסתר" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "הגודל של כל סמן (כאחוז מאורך פס הגלילה):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "הדגשה:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "גלול את העמוד בחצי מגודל החלון" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "גובה מ&חצית חלון" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "צבע סמני פסי הגלילה:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "צבע שורות מודגשות בחיפוש בפסי הגלילה:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "יישור שורות מחדש:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "גלול את העמוד בגודל החלון" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "גובה חלון &מלא" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "מיקום פס גלילה:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "הצגת פס הגלילה בצד ימין של חלון המסוף" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "צד &ימין" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "הצגת פס הגלילה בצד שמאל של חלון המסוף" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "צד &שמאל" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "מוסתר" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "הדגשה:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "הדגשת השורות שנכנסות לתצוגה" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "יישור שורות מחדש:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "יישור שורות מחדש לאחר שינוי גודל המסוף" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "צבע סמני פסי הגלילה:" +msgid "Scrollbar position:" +msgstr "מיקום פס גלילה:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "הגודל של כל סמן (כאחוז מאורך פס הגלילה):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "אטימות הדגשת שורה בחיפוש:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5160,7 +5421,7 @@ msgstr "" #: widgets/HistorySizeWidget.ui:60 #, kde-format msgid "Limit the remembered output to a fixed number of lines" -msgstr "הגבל את מספר השורות של פלט בזכרון למספר קבוע" +msgstr "הגבל את מספר השורות של פלט בזיכרון למספר קבוע" #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 @@ -5200,37 +5461,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&כלום" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "איתור…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "הכנס כאן את הטקסט לחיפוש" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "הבא" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "מצא את המופע הבא של מחרוזת החיפוש הנוכחית" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "הקודם" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5238,77 +5499,77 @@ msgstr "מצא את המופע הקודם של מחרוזת החיפוש הנו #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "הצגת תפריט האפשרויות" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "סגור את סרגל החיפוש" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "תלוי רישיות" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "הגדרה האם החיפוש הוא תלוי רישיות" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "הצגת תפריט האפשרויות" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "סגור את סרגל החיפוש" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "התאם ביטוי רגולרי" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "הדגש את כל ההתאמות" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "הגדרה האם להדגיש את הטקסט שאותר" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "חיפוש לאחור" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "הגדרה האם החיפוש יתחיל מהסוף" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "ללא גלישה" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "מגדיר האם החיפוש ייעצר במקום לגלוש" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "חיפוש אחר ביטוי החיפוש הנוכחי מהסוף" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5319,7 +5580,7 @@ msgstr "חיפוש אחר ביטוי החיפוש הנוכחי מההתחלה" msgid "Print Shell" msgstr "הדפס מעטפת" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5359,6 +5620,12 @@ msgstr "תסדיר כותרת הכרטיסיות" msgid "Tab Co&lor:" msgstr "&צבע לשונית:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "&צבע לשונית פעילות:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5452,36 +5719,63 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "שחזור מסוף" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "פתיחת לשונית חדשה" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "חיפוש לשוניות" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "סגירת הלשונית הזאת" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&ניתוק לשונית" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ה&גדרה או שינוי שם לשונית…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "סגירת לשונית" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "נעשה כרגע שימוש במתודות sendText/runCommand של D-Bus. יש כל מיני חששות " +#~ "אבטחת מידע שנוגעים לאישור ההנגשה של המתודות האלו לציבור. אם יש צורך בכך, " +#~ "אפשר לשנות את המתודות האלו לשימוש פנימי בלבד על ידי הידור של Konsole " +#~ "מחדש.

          אזהרה זו תופיע רק פעם אחת בעותק זה של Konsole.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "תלוי רישיות" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "ללא" diff --git a/local/recipes/kde/konsole/source/po/hi/konsole.po b/local/recipes/kde/konsole/source/po/hi/konsole.po index 10701a9d38..d68b4c10bc 100644 --- a/local/recipes/kde/konsole/source/po/hi/konsole.po +++ b/local/recipes/kde/konsole/source/po/hi/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2021-08-21 16:25+0530\n" "Last-Translator: Raghavendra Kamath \n" "Language-Team: kde-hindi\n" @@ -51,7 +51,7 @@ msgstr "दृश्य" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "विभाजित दृश्य" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "स्क्रॉलबैक (&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session number" msgid "Session Toolbar" @@ -176,49 +176,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "पारदर्शी पृष्ठभूमि बंद करें, तब भी यदि तंत्र में उनका समर्थन है." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "उपलब्ध प्रोफ़ाइलों के नाम बताएँ" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "प्रोफ़ाइल गुण का मूल्य बदलें." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -226,7 +238,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,14 +246,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "कमांड को भेजा गया आर्गुमेंट" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -262,217 +274,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "अग्रभूमि" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "पृष्ठभूमि" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "रग 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "रग 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "रंग 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "रंग 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "रंग 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "रंग 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "रंग 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "रंग 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "अग्रभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "पृष्ठभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "रंग 1 (तीव्र)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "रंग 2 (तीव्र)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "रंग 3 (तीव्र)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "रंग 4 (तीव्र)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "रंग 5 (तीव्र)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "रंग 6 (तीव्र)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "रंग 7 (तीव्र)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "रंग 8 (तीव्र)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "अग्रभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "पृष्ठभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "रंग 1 (तीव्र)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "रंग 2 (तीव्र)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "रंग 3 (तीव्र)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "रंग 4 (तीव्र)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "रंग 5 (तीव्र)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "रंग 6 (तीव्र)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "रंग 7 (तीव्र)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "रंग 8 (तीव्र)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -738,6 +750,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "होस्टः" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "डिफ़ॉल्ट रूप में नियत करें" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -782,7 +828,7 @@ msgstr "" msgid "Copy Location" msgstr "संकेतक विकल्प" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -814,14 +860,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "फ़ॉन्ट संपादित करें..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "सुघढ़ फ़ॉन्ट" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -859,17 +905,17 @@ msgstr "कुंजी संयोजन" msgid "Output" msgstr "आउटपुट" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "नई कुंजी बाइंडिंग सूची" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "कुंजी बाइंडिंग सूची संपादित करें" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -877,7 +923,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -912,247 +958,247 @@ msgstr "इनपुटः" msgid "Output:" msgstr "आउटपुटः" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "कंसोल" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "टर्मिनल एमुलेटर" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "कुर्त वी. हिंडेनबर्ग" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "बग सुधार व सामान्य सुधार" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "रॉबर्ट नाइट" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "लार्स डोएल्ले" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "टर्मिनल एमुलेटर" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "बग सुधार व सामान्य सुधार" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "बग सुधार व सामान्य सुधार" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "बग सुधार व सामान्य सुधार" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "वाल्दो बास्तियान" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "स्टीफन बिनर" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "बग सुधार व सामान्य सुधार" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "क्रिस मेकमर" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "बग फिक्सेस" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "स्टीफन कुलोव" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "सोलारिस समर्थन व इतिहास" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "अलेक्ज़ेंडर न्यून्दॉर्फ" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "बग सुधार व स्टार्टअप परफ़ॉर्मेंस में सुधार" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "पीटर सिल्वा" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "उन्नतियों को चिह्नित करना" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "लोत्जी बोलोनी" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1165,14 +1211,14 @@ msgstr "" "अंतर्निर्मित कंसोल\n" "औजारपट्टी तथा सत्र नाम" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "डेविड फॉउरे" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1185,28 +1231,28 @@ msgstr "" "अंतर्निर्मित कंसोल\n" "सामान्य सुधार" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "अंतोनियो लारोसा" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "दृश्यमय प्रभाव" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "मेथियास एट्रिच" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1219,151 +1265,151 @@ msgstr "" "केवीटी परियोजना से स्रोत\n" "सामान्य सुधार" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "वारविक एलिसन" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "प्रसंग व पाठ चयन सुधार" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "डान पिलोन" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "एसजीआई पोर्ट" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "केविन स्ट्रीट" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "फ्रीबीएसडी पोर्ट" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "स्वेन फिशर" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "डेल एम. फ्लेवन" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "मार्टिन जोन्स" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "लार्स क्नोल" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "और भी बहुतों को धन्यवाद.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "नया टैब (&T)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "टैब बंद करें (&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "नया विंडो (&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "कंसोल" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr " पुस्तचिन्ह (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "नई रंग योजना" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "प्रोफ़ाइल प्रबंधित करें" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "दृश्य बाएँ खिसकाएँ" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1374,28 +1420,28 @@ msgid_plural "" msgstr[0] "इस विंडो में बहुत सारे टैब खुले हैं, क्या आप वाक़ई बाहर होना चाहते हैं?" msgstr[1] "इस विंडो में बहुत सारे टैब खुले हैं, क्या आप वाक़ई बाहर होना चाहते हैं?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "बंद करने की पुष्टि करें" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "कंसोल" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "वर्तमान टैब बंद करें" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1403,45 +1449,45 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "इस विंडो में बहुत सारे टैब खुले हैं, क्या आप वाक़ई बाहर होना चाहते हैं?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "नया प्रोफ़ाइल" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "सामान्य" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1532,7 +1578,7 @@ msgstr "लिंक खोलें" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1544,29 +1590,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "कमांडः" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "कमांडः" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1608,7 +1654,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1667,11 +1713,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1734,94 +1780,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "रिमोट कनेक्शन" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "जब आरंभिक सत्र समाप्त हो जाता है तो सत्र को स्वचालित बन्द नहीं करें." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2026,25 +2072,25 @@ msgstr "विंडो विकल्प" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2108,17 +2154,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 से आउटपुट सहेजें" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 एक अवैध यूआरएल है, आउटपुट सहेजा नहीं जा सकता." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2155,84 +2222,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "गहरा पेस्टल" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "काला पर हरा" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "लिनक्स रंग" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "काले पर सफेद" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "काले पर सफेद" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "डिफ़ॉल्ट (एक्सफ्री४)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "लिनक्स कंसोल" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "सोलारिस कंसोल" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "ढूंढने का आउटपुट..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ढूंढा जाने वाला पाठ यहाँ भरें" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "'%1' सत्र में घंटी" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "द्विचर ढूंढ नहीं पाया:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "चेतावनी:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "प्रारंभ करने के लिए कोई इंटरेक्टिव शैल ढूंढ नहीं सका." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2241,366 +2327,374 @@ msgstr "" "'%1' को ढूंढ नहीं सका, बदले में '%2' को प्रारंभ किया जा रहा है. कृपया अपना प्रोफ़ाइल " "सेटिंग जाँचें." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "प्रोग्राम '%1' को आर्गुमेंट '%2'.के साथ प्रारंभ नहीं किया जा सका." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' सत्र में शांति" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "कंसोल" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "सम्पन्न" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "प्रोग्राम '%1' क्रैश हो गया." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "प्रोग्राम '%1' स्थिति %2 के साथ बाहर हुआ." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ज़ेड-मॉडम प्रगति" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1' सत्र में क्रिया" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "कंसोल" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "प्रोफ़ाइल प्रबंधित करें..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "कंसोल" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "नक़ल (&C)" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "विभाजित दृश्य बायाँ/दायाँ" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "विभाजित दृश्य शीर्ष/तल" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "इनपुट नक़ल करेंं" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "इनपुट नक़ल करेंं" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "चयन चिपकाएँ" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "सभी चुनें" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "चुनें" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "चुनें" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "आउटपुट सहेजें..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "आउटपुट सहेजें..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "प्रोफ़ाइल प्रबंधित करें..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "स्क्रॉलबैक साफ करें" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "स्क्रॉलबैक साफ करें व रीसेट करें" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "प्रोफ़ाइल संपादित करें" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "पिछला दृश्य" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "प्रोफ़ाइल संपादित करें" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "एनकोडिंग" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "टैब का नाम बदलें... (&R)" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "टैब का नाम बदलें... (&R)" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Copy Input To..." msgid "Copy Input To" msgstr "इनपुट यहाँ नक़ल करें..." -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "क्रिया के लिए मॉनीटर करें (&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "क्रिया के लिए मॉनीटर करें (&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "शान्ति के लिए मॉनीटर करें (&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "क्रिया के लिए मॉनीटर करें (&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "छोटा दृश्य" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "पाठ आकार बढ़ाएँ" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "टैब बंद करें (&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "टर्मिनल विशेषताएँ" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "नया प्रोफ़ाइल..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "वर्तमान प्रोफ़ाइल संपादित करें..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2608,7 +2702,7 @@ msgid "" msgstr "" "एक प्रोग्राम अभी इस सत्र में चल रहा है. क्या आप सुनिश्चित हैं कि आप इसे बन्द करना चाहते हैं?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2617,19 +2711,19 @@ msgstr "" "प्रोग्राम '%1' अभी इस सत्र में चल रहा है. क्या आप सुनिश्चित हैं कि आप इसे बन्द करना चाहते " "हैं?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "बंद करने की पुष्टि करें" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "टैब बंद करें (&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2640,40 +2734,40 @@ msgid "" msgstr "" "एक प्रोग्राम अभी इस सत्र में चल रहा है. क्या आप सुनिश्चित हैं कि आप इसे बन्द करना चाहते हैं?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "प्रोग्राम '%1' अभी इस सत्र में चल रहा है. क्या आप सुनिश्चित हैं कि आप इसे बन्द करना चाहते " "हैं?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2681,20 +2775,20 @@ msgid "" "or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2720,150 +2814,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "बंद करने की पुष्टि करें" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "रेगुलर एक्सप्रेशन मिलान करें" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "सभी को उभारें" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "सेट करता है कि क्या ढूंढा जाना केस-सेंसिटिव होगा" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "सक्रिय को बन्द करें" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "नया टैब पाठ भरें:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "सेट करता है कि क्या ढूंढा जाना केस-सेंसिटिव होगा" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "सक्रिय को बन्द करें" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "सभी को उभारें" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "वर्तमान में ढूंढे जा रहे वाक्यांश के अगले मिलान को ढूंढें" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "रेगुलर एक्सप्रेशन मिलान करें" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2888,74 +3009,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "सेट करता है कि क्या ढूंढा जाना केस-सेंसिटिव होगा" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "सभी को उभारें" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "सेट करता है कि क्या मिलान करने वाले पाठों को उभारा जाना है" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2963,92 +3122,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "संकेतक के लिए मनपसंद, स्थिर रंग प्रयोग करें" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3061,26 +3226,24 @@ msgid "Enable memory monitoring:" msgstr "दोनों तरफ पाठ रेंडरिंग सक्षम करें" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3248,110 +3411,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "टैब बंद करें (&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "टैब पट्टी 'नया टैब' तथा 'बन्द टैब' बटन दिखाएँ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "संकेतक के लिए मनपसंद, स्थिर रंग प्रयोग करें" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "नया टैब पाठ भरें:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "वर्तमान टैब बंद करें" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "विभाजित दृश्य" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "मेन्यूपट्टी दिखाएँ" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3359,14 +3541,14 @@ msgid "Small" msgstr "छोटा" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3374,7 +3556,7 @@ msgid "Large" msgstr "बड़ा" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3427,8 +3609,8 @@ msgstr "" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3468,99 +3650,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "आकार: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "बंद करने की पुष्टि करें" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "बंद करने की पुष्टि करें" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "संकेतक रंग को वर्तमान अक्षर के रंग से मिलता सेट करें" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "चयन चिपकाएँ" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been आउटपुट कोसस्पैंड किया गया है " "कंट्रोल+S को दबाकर. बहाल करने के लिए कंट्रोल+Q को दबाएँ." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "चयन चिपकाएँ" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "विभाजित दृश्य" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "विभाजित दृश्य बायाँ/दायाँ" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3616,7 +3798,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3624,7 +3806,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "विभाजित दृश्य बायाँ/दायाँ" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3632,7 +3814,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3640,208 +3822,222 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "विस्तारित दृश्य" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "छोटा दृश्य" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "वर्तमान टैब बंद करें" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "वर्तमान टैब बंद करें" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "नया टैब (&T)" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "पिछला" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "टर्मिनल के ऊपर प्रदर्शित करता है" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "टर्मिनल के नीचे प्रदर्शित करता है" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "टर्मिनल के ऊपर प्रदर्शित करता है" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "टर्मिनल के नीचे प्रदर्शित करता है" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "दृश्य दाएँ खिसकाएँ" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "दृश्य बाएँ खिसकाएँ" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "माउस इंटरेक्शन" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "स्थिर लाइनों की संख्या:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "दृश्य बाएँ खिसकाएँ" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3854,7 +4050,7 @@ msgstr "" "आउटपुट सहेजने के दौरान एक त्रुटि हुई.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3867,13 +4063,13 @@ msgstr "" "आउटपुट सहेजने के दौरान एक त्रुटि हुई.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3973,29 +4169,41 @@ msgstr "डिफ़ॉल्ट अक्षर एनकोडिंग:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "स्थिर लाइनों की संख्या:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4033,7 +4241,7 @@ msgstr "चयनित रंग योजना को संपादित #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4090,12 +4298,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4223,30 +4437,46 @@ msgid "Make the cursor blink regularly" msgstr "संकेतक को नियमति टिमटिमाता बनाएँ" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "वर्णनः" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "संकेतक को नियमति टिमटिमाता बनाएँ" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "विंडो" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4254,25 +4484,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4280,28 +4510,28 @@ msgid "Color:" msgstr "रंग" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "संकेतक बनाने के लिए प्रयोग में लिए जाने वाले रंग को चुनें" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "टर्मिनल विशेषताएँ" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "टर्मिनल विशेषताएँ" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4309,95 +4539,95 @@ msgid "Terminal contents" msgstr "टर्मिनल विशेषताएँ" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "दोनों तरफ पाठ रेंडरिंग सक्षम करें" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4405,45 +4635,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "संकेतक रंग को वर्तमान अक्षर के रंग से मिलता सेट करें" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "फ़ॉन्ट" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4451,100 +4681,100 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "दोनों तरफ पाठ रेंडरिंग सक्षम करें" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "संकेतक रंग को वर्तमान अक्षर के रंग से मिलता सेट करें" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "प्रोफ़ाइल संपादित करें" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "सामान्य" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "टैब्स" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "रूप" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "स्क्रॉलिंग" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "कुंजी बाइंडिंग्स" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "विस्तृत" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4553,31 +4783,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4585,18 +4815,23 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "प्रोफ़ाइल संपादित करें \"%1\"" msgstr[1] "प्रोफ़ाइल संपादित करें \"%1\"" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "नया प्रोफ़ाइल..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "प्रोफ़ाइल संपादित करें \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4606,7 +4841,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4616,45 +4851,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "चयन चिपकाएँ" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "दृश्यमय प्रभाव" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "नए टर्मिनल सत्र के लिए चयनित प्रोफ़ाइल को डिफ़ॉल्ट रूप में सेट करें" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "वातावरण संपादित करें" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4662,44 +4897,44 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "आरंभिक डिरेक्ट्री चुनें" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "नया..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "इस रंग योजना में पारदर्शी पृष्ठभूमि है जो आपके डेस्कटॉप में समर्थित नहीं हैं." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "प्रोफ़ाइल मिटाएँ" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4716,7 +4951,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4810,27 +5045,55 @@ msgstr "आरंभिक डिरेक्ट्री के लिए ब msgid "Start in same directory as current session" msgstr "वर्तमान टैब की उसी डिरेक्ट्री में प्रारंभ करें" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "वर्तमान टैब की उसी डिरेक्ट्री में प्रारंभ करें" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "वातावरण:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "एनवायरनमेंट वेरिएबल तथा संबंधित मूल्यों की सूची को संपादित करें" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "टर्मिनल विशेषताएँ" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4840,33 +5103,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "टर्मिनल एमुलेटर" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "माउस इंटरेक्शन" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4876,9 +5139,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4889,9 +5152,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4902,35 +5165,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "पृष्ठभूमि" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5279,50 +5542,93 @@ msgid "Scrollback:" msgstr "स्क्रॉलबैक (&c)" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "छुपा" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "टैब पट्टी स्थिति:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "टर्मिनल विंडो के दाएँ बाजू में स्क्रॉल पट्टी दिखाएँ" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5330,67 +5636,36 @@ msgid "Ri&ght side" msgstr "दाएँ बाजू में दिखाएँ" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "टर्मिनल विंडो के बाएँ बाजू में स्क्रॉल पट्टी दिखाएँ" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "पाठ आकारः" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "छुपा" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "टैब पट्टी स्थिति:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5493,42 +5768,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "ढूंढें:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ढूंढा जाने वाला पाठ यहाँ भरें" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "अगला" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "वर्तमान में ढूंढे जा रहे वाक्यांश के अगले मिलान को ढूंढें" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "पिछला" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5536,88 +5811,88 @@ msgid "Find the previous match for the current search phrase" msgstr "वर्तमान में ढूंढे जा रहे वाक्यांश के पिछले मिलान को ढूंढें" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "खोज पट्टी बन्द करें" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "सक्रिय को बन्द करें" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "सेट करता है कि क्या ढूंढा जाना केस-सेंसिटिव होगा" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "खोज पट्टी बन्द करें" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "रेगुलर एक्सप्रेशन मिलान करें" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "सभी को उभारें" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "सेट करता है कि क्या मिलान करने वाले पाठों को उभारा जाना है" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "वर्तमान में ढूंढे जा रहे वाक्यांश के अगले मिलान को ढूंढें" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "वर्तमान में ढूंढे जा रहे वाक्यांश के अगले मिलान को ढूंढें" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "वर्तमान में ढूंढे जा रहे वाक्यांश के अगले मिलान को ढूंढें" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "वर्तमान में ढूंढे जा रहे वाक्यांश के अगले मिलान को ढूंढें" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5630,7 +5905,7 @@ msgstr "वर्तमान में ढूंढे जा रहे वा msgid "Print Shell" msgstr "शेल" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5673,6 +5948,13 @@ msgstr "सामान्य टैब शीर्षक फ़ॉर्मे msgid "Tab Co&lor:" msgstr "रंग" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "टैब रंग (&T) चुनें" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5787,41 +6069,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "टैब बंद करें (&C)" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "दृश्य अलग करें (&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "दृश्य अलग करें (&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "खोज पट्टी बन्द करें" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "दृश्य अलग करें (&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "टैब का नाम बदलें... (&R)" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "टैब बंद करें (&C)" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "सक्रिय को बन्द करें" + #, fuzzy #~| msgid "Open Link" #~ msgctxt "@title:window" @@ -6249,9 +6545,6 @@ msgstr "टैब बंद करें (&C)" #~ msgid "Decrease Text Size" #~ msgstr "पाठ आकार घटाएँ" -#~ msgid "Search Output..." -#~ msgstr "ढूंढने का आउटपुट..." - #~ msgid "Find Next" #~ msgstr "अगला ढूंढें" @@ -6276,9 +6569,6 @@ msgstr "टैब बंद करें (&C)" #~ msgid "New" #~ msgstr "नया" -#~ msgid "Select &Tab Color" -#~ msgstr "टैब रंग (&T) चुनें" - #~ msgid "TextLabel" #~ msgstr "पाठ लेबल" diff --git a/local/recipes/kde/konsole/source/po/hne/konsole.po b/local/recipes/kde/konsole/source/po/hne/konsole.po index 381d76a14e..9c0f641adc 100644 --- a/local/recipes/kde/konsole/source/po/hne/konsole.po +++ b/local/recipes/kde/konsole/source/po/hne/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2009-01-29 20:59+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -51,7 +51,7 @@ msgstr "दृस्य" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "विभाजित दृस्य" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "स्क्रालबैक (&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session number" msgid "Session Toolbar" @@ -176,49 +176,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "पारदर्सी पिछोत अंगना बंद करव, तभू घलोक यदि तंत्र मं ओखर समर्थन हे." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "मिलत प्रोफाइल मन के सूची देव" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "प्रोफाइल गुन के मूल्य बदलव." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -226,7 +238,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,14 +246,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "कमांड ल भेजे गे आर्गुमेंट" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -262,217 +274,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "आगू तरफ" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "पिछोत अंगना" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "रंग 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "रंग 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "रंग 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "रंग 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "रंग 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "रंग 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "रंग 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "रंग 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "आगू तरफ (कड़क)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "पिछोत अंगना (कड़क)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "रंग 1 (कड़क)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "रंग 2 (कड़क)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "रंग 3 (कड़क)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "रंग 4 (कड़क)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "रंग 5 (कड़क)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "रंग 6 (कड़क)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "रंग 7 (कड़क)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "रंग 8 (कड़क)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "आगू तरफ (कड़क)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "पिछोत अंगना (कड़क)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "रंग 1 (कड़क)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "रंग 2 (कड़क)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "रंग 3 (कड़क)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "रंग 4 (कड़क)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "रंग 5 (कड़क)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "रंग 6 (कड़क)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "रंग 7 (कड़क)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "रंग 8 (कड़क)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -741,6 +753,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "होस्टः" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "डिफाल्ट रूप मं सेट करव" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -785,7 +831,7 @@ msgstr "" msgid "Copy Location" msgstr "संकेतक विकल्प" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -817,14 +863,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "फोंट संपादित करव..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "सुघढ़ फोंट" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -862,17 +908,17 @@ msgstr "कुंजी संयोजन" msgid "Output" msgstr "आउटपुट" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "नवा कुंजी बाइंडिंग सूची" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "कुंजी बाइंडिंग सूची संपादित करव" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -880,7 +926,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -914,247 +960,247 @@ msgstr "इनपुटः" msgid "Output:" msgstr "आउटपुटः" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "कंसोल" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "टर्मिनल एमुलेटर" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "कुर्त वी. हिंडेनबर्ग" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "बग सुधार अउ सामान्य सुधार" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "राबर्ट नाइट" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "लार डोएल्ले" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "टर्मिनल एमुलेटर" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "बग सुधार अउ सामान्य सुधार" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "बग सुधार अउ सामान्य सुधार" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "बग सुधार अउ सामान्य सुधार" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "वाल्दो बास्तियान" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "स्टीफन बिनर" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "बग सुधार अउ सामान्य सुधार" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "क्रिस मेकमर" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "बग फिक्सेस" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "स्टीफन कुलोव" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "सोलारिस समर्थन अउ इतिहास" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "अलेक्जेंडर न्यून्दार्फ" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "बग सुधार अउ स्टार्टअप परफारमेंस मं सुधार" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "पीटर सिल्वा" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "सुधार ल चिनहित करना" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "लोत्जी बोलोनी" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1167,14 +1213,14 @@ msgstr "" "भीतर मं बने कंसोल\n" "औजारपट्टी अउ सत्र नाम" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "डेविड फाउरे" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1187,28 +1233,28 @@ msgstr "" "भीतर मं बने कंसोल\n" "सामान्य सुधार" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "अन्तोनियो लारोसा" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "दिखत प्रभाव" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "मेथियास एट्रिच" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1221,151 +1267,151 @@ msgstr "" "केवीटी परियोजना से स्रोत\n" "सामान्य सुधार" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "वारविक एलिसन" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "प्रसंग अउ पाठ चयन सुधार" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "डान पिलोन" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "एसजीआई पोर्ट" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "केविन स्ट्रीट" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "फ्रीबीएसडी पोर्ट" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "स्वेन फिसर" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "डेल एम. फ्लेवन" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "मार्टिन जोन्स" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "लार क्नोल" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "अउ बहुत झन ल धन्यवाद.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "नवा टैब (&T)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "टैब बंद करव (&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "नवा विंडो (&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "कंसोल" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "निसानी (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "नवा रंग योजना" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "प्रोफाइल प्रबंधित करव" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "दृस्य डेरी खिसकाव" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1376,28 +1422,28 @@ msgid_plural "" msgstr[0] "ये विंडो मं बहुत से टैब खुले हे, का आप मन सही मं बाहिर होना चाहथो ?" msgstr[1] "ये विंडो मं बहुत से टैब खुले हे, का आप मन सही मं बाहिर होना चाहथो ?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "बंद करे के पुस्टि करव" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "कंसोल" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "अभी हाल के टैब बंद करव" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1405,45 +1451,45 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "ये विंडो मं बहुत से टैब खुले हे, का आप मन सही मं बाहिर होना चाहथो ?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "नवा प्रोफाइल" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "सामान्य" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1534,7 +1580,7 @@ msgstr "संकली खोलव" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1546,29 +1592,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "कमांडः" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "कमांडः" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1610,7 +1656,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1669,11 +1715,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1736,94 +1782,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "रिमोट कनेक्सन" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "जब सुरू के सत्र खतम हो जाथे तहां सत्र ल अपने अपन बन्द नइ करव." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2028,25 +2074,25 @@ msgstr "विंडो विकल्प" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2110,17 +2156,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 से आउटपुट सहेजव" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 एक अवैध यूआरएल हे, आउटपुट सहेज नइ सकिस." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2157,84 +2224,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "गहरा पेस्टल" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "काला मं हरा" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "लिनक्स रंग" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "काला मं सफेद" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "काला मं सफेद" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "डिफाल्ट (एक्सफ्री४)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "लिनक्स कंसोल" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "सोलारिस कंसोल" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "खोजे के आउटपुट..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "खोजइया पाठ इहां भरव" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "'%1' सत्र मं घंटी" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "द्विचर खोज नइ सकिस:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "चेतावनी:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "सुरू करे बर कोनो इंटरेक्टिव सैल खोज नइ सकिस." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2243,392 +2329,400 @@ msgstr "" "'%1' ल खोज नइ सकिस, बदला मं '%2' ल चालू करत हे. किरपा करके, अपन प्रोफाइल सेटिंग " "जांचव." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "प्रोग्राम '%1' ल आर्गुमेंट '%2'.के साथ चालू नइ कर सकिस." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' सत्र मं सांति" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "कंसोल" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "पूरा" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "प्रोग्राम '%1' क्रैस होइस." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "प्रोग्राम '%1' स्थिति %2 के साथ बाहिर होइस." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "जेड-माडम प्रगति" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1' सत्र मं काम" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "कंसोल" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "प्रोफाइल प्रबंधित करव..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "कंसोल" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "नकल (&C)" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "विभाजित दृस्य डेरी/जेवनी" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "विभाजित दृस्य सीर्स/तल" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "इनपुट नकल करवं" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "इनपुट नकल करवं" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "चुने ल चिपकाव" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "सब्बो चुनव" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "चुनव" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "चुनव" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "आउटपुट सहेजव..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "आउटपुट सहेजव..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "प्रोफाइल प्रबंधित करव..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "स्क्रालबैक साफ करव" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "स्क्रालबैक साफ करव अउ रीसेट करव" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "प्रोफाइल संपादित करव" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "पिछला दृस्य" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "प्रोफाइल संपादित करव" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "एनकोडिंग" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "टैब के नाम बदलव... (&R)" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "टैब के नाम बदलव... (&R)" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Copy Input To..." msgid "Copy Input To" msgstr "इनपुट इहां नकल करव..." -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "काम बर मानीटर करव (&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "काम बर मानीटर करव (&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "सान्ति बर मानीटर करव (&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "काम बर मानीटर करव (&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "छोटा दृस्य" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "पाठ आकार बढ़ाव" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "टैब बंद करव (&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "टर्मिनल विसेसता" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "नवा प्रोफाइल..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "अभी हाल के प्रोफाइल संपादित करव..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "एक प्रोग्राम अभी एखर सत्र मं चलत हे. का आप मन सही मं एला बन्द करना चाहथो ?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "प्रोग्राम '%1' अभी एखर सत्र मं चलत हे. का आप मन सही मं एला बन्द करना चाहथो?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "बंद करे के पुस्टि करव" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "टैब बंद करव (&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2638,38 +2732,38 @@ msgid "" "by force?" msgstr "एक प्रोग्राम अभी एखर सत्र मं चलत हे. का आप मन सही मं एला बन्द करना चाहथो ?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "प्रोग्राम '%1' अभी एखर सत्र मं चलत हे. का आप मन सही मं एला बन्द करना चाहथो?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2677,20 +2771,20 @@ msgid "" "or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2716,150 +2810,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "बंद करे के पुस्टि करव" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "रेगुलर एक्सप्रेसन मिलान करव" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "सब्बो ल चमकाव" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "सेट करथे कि का खोजना केस-सेंसिटिव होही" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "सक्रिय ल बन्द करव" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "नवा टैब पाठ भरव:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "सेट करथे कि का खोजना केस-सेंसिटिव होही" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "सक्रिय ल बन्द करव" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "सब्बो ल चमकाव" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "अभी हाल के मं ढूंढे जा रहे वाक्यांस के अगले मैच ल खोजव" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "रेगुलर एक्सप्रेसन मिलान करव" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2884,74 +3005,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "सेट करथे कि का खोजना केस-सेंसिटिव होही" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "सब्बो ल चमकाव" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "सेट करथे कि का मैच करत पाठ मन ल उभारे जाना हे" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2959,92 +3118,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "संकेतक बर मनमाफिक, स्थिर रंग परयोग करव" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3057,26 +3222,24 @@ msgid "Enable memory monitoring:" msgstr "दूनों तरफ पाठ रेंडरिंग सक्छम करव" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3244,110 +3407,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "टैब बंद करव (&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "टैब पट्टी 'नवा टैब' अउ 'बन्द टैब' बटन देखाव" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "संकेतक बर मनमाफिक, स्थिर रंग परयोग करव" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "नवा टैब पाठ भरव:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "अभी हाल के टैब बंद करव" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "विभाजित दृस्य" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "मेन्यूपट्टी देखाव" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3355,14 +3537,14 @@ msgid "Small" msgstr "छोटा" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3370,7 +3552,7 @@ msgid "Large" msgstr "बड़ा" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3423,8 +3605,8 @@ msgstr "" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3464,99 +3646,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "आकार: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "बंद करे के पुस्टि करव" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "बंद करे के पुस्टि करव" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "संकेतक रंग ल अभी हाल के अक्छर के रंग से मिलत सेट करव" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "चुने ल चिपकाव" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been आउटपुट ल सस्पैंड कर दे गे हे " "कंट्रोल+S ल दबाकर. बहाल करे बर कंट्रोल+Q ल दबाव." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "चुने ल चिपकाव" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "विभाजित दृस्य" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "विभाजित दृस्य डेरी/जेवनी" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "विभाजित दृस्य सीर्स/तल" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3612,7 +3794,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "विभाजित दृस्य सीर्स/तल" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3620,7 +3802,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "विभाजित दृस्य डेरी/जेवनी" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3628,7 +3810,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "विभाजित दृस्य सीर्स/तल" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3636,210 +3818,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "विभाजित दृस्य सीर्स/तल" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "विस्तारित दृस्य" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "छोटा दृस्य" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "अभी हाल के टैब बंद करव" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "अभी हाल के टैब बंद करव" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "नवा टैब (&T)" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "पिछला" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "टर्मिनल के ऊपर प्रदर्सित करथे " -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "टर्मिनल के नीचे प्रदर्सित करथे " -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "टर्मिनल के ऊपर प्रदर्सित करथे " + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "टर्मिनल के नीचे प्रदर्सित करथे " + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "टैब %1 मं स्विच करव" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "दृस्य जेवनी खिसकाव" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "दृस्य डेरी खिसकाव" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "टैब %1 मं स्विच करव" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "मुसुवा इंटरेक्सन" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "स्थिर लाइन मन के संख्या:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "दृस्य डेरी खिसकाव" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3852,7 +4048,7 @@ msgstr "" "आउटपुट सहेजे के समय एक गलती होइस.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3865,13 +4061,13 @@ msgstr "" "आउटपुट सहेजे के समय एक गलती होइस.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3971,29 +4167,41 @@ msgstr "डिफाल्ट अक्छर एनकोडिंग:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "स्थिर लाइन मन के संख्या:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4031,7 +4239,7 @@ msgstr "चुने गे रंग योजना ल संपादित #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4088,12 +4296,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4218,30 +4432,46 @@ msgid "Make the cursor blink regularly" msgstr "संकेतक ल नियमित टिमटिमाव" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "वर्ननः" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "संकेतक ल नियमित टिमटिमाव" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "विंडो" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4249,25 +4479,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4275,28 +4505,28 @@ msgid "Color:" msgstr "रंग" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "संकेतक बनाए बर परयोग मं ले वाले रंग ल चुनव" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "टर्मिनल विसेसता" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "टर्मिनल विसेसता" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4304,95 +4534,95 @@ msgid "Terminal contents" msgstr "टर्मिनल विसेसता" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "दूनों तरफ पाठ रेंडरिंग सक्छम करव" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4400,45 +4630,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "संकेतक रंग ल अभी हाल के अक्छर के रंग से मिलत सेट करव" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "फोंट" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4446,100 +4676,100 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "दूनों तरफ पाठ रेंडरिंग सक्छम करव" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "संकेतक रंग ल अभी हाल के अक्छर के रंग से मिलत सेट करव" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "प्रोफाइल संपादित करव" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "सामान्य" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "टैब्स" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "रूप" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "स्क्रालिंग" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "कुंजी बाइंडिंग्स" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "विस्तृत" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4548,49 +4778,54 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "प्रोफाइल संपादित करव \"%1\"" msgstr[1] "प्रोफाइल संपादित करव \"%1\"" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "नवा प्रोफाइल..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "प्रोफाइल संपादित करव \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4600,7 +4835,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4610,45 +4845,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "चुने ल चिपकाव" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "दिखत प्रभाव" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "नवा टर्मिनल सत्र बर चुने गे प्रोफाइल ल डिफाल्ट रूप मं सेट करव" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "वातावरन संपादित करव" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4656,44 +4891,44 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "सुरू के डिरेक्टरी चुनव" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "नवा..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "ये रंग योजना मं पारदर्सी पिछोत अंगना हे जऊन आप मन के डेस्कटाप मं समर्थित नइ हे." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "प्रोफाइल मेटाव" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4710,7 +4945,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4803,27 +5038,55 @@ msgstr "सुरू के डिरेक्टरी बर ब्राउ msgid "Start in same directory as current session" msgstr "अभी हाल के टैब के ओही डिरेक्टरी मं चालू करव" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "अभी हाल के टैब के ओही डिरेक्टरी मं चालू करव" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "वातावरन:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "एनवायरनमेंट वेरिएबल अउ संबंधित मूल्य मन के सूची ल संपादित करव" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "टर्मिनल विसेसता" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4833,33 +5096,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "टर्मिनल एमुलेटर" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "मुसुवा इंटरेक्सन" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4869,9 +5132,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4882,9 +5145,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4895,35 +5158,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "पिछोत अंगना" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5269,50 +5532,93 @@ msgid "Scrollback:" msgstr "स्क्रालबैक (&c)" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "छुपा" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "टैब पट्टी स्थिति:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "टर्मिनल विंडो के जेवनी बाजू मं स्क्राल पट्टी देखाव" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5320,67 +5626,36 @@ msgid "Ri&ght side" msgstr "जेवनी बाजू मं देखाव" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "टर्मिनल विंडो के डेरी बाजू मं स्क्राल पट्टी देखाव" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "पाठ आकारः" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "छुपा" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "टैब पट्टी स्थिति:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5483,42 +5758,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "खोजव:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "खोजइया पाठ इहां भरव" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "अगला" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "अभी हाल के मं ढूंढे जा रहे वाक्यांस के अगले मैच ल खोजव" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "पिछला" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5526,88 +5801,88 @@ msgid "Find the previous match for the current search phrase" msgstr "अभी हाल के मं ढूंढे जा रहे वाक्यांस के पिछले मैच ल खोजव" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "खोज पट्टी बन्द करव" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "सक्रिय ल बन्द करव" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "सेट करथे कि का खोजना केस-सेंसिटिव होही" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "खोज पट्टी बन्द करव" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "रेगुलर एक्सप्रेसन मिलान करव" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "सब्बो ल चमकाव" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "सेट करथे कि का मैच करत पाठ मन ल उभारे जाना हे" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "अभी हाल के मं ढूंढे जा रहे वाक्यांस के अगले मैच ल खोजव" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "अभी हाल के मं ढूंढे जा रहे वाक्यांस के अगले मैच ल खोजव" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "अभी हाल के मं ढूंढे जा रहे वाक्यांस के अगले मैच ल खोजव" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "अभी हाल के मं ढूंढे जा रहे वाक्यांस के अगले मैच ल खोजव" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5620,7 +5895,7 @@ msgstr "अभी हाल के मं ढूंढे जा रहे व msgid "Print Shell" msgstr "सेल" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5662,6 +5937,13 @@ msgstr "सामान्य टैब सीर्सक फारमेट" msgid "Tab Co&lor:" msgstr "रंग" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "टैब रंग (&T) चुनव" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5776,41 +6058,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "टैब बंद करव (&C)" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "दृस्य अलग करव (&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "दृस्य अलग करव (&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "खोज पट्टी बन्द करव" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "दृस्य अलग करव (&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "टैब के नाम बदलव... (&R)" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "टैब बंद करव (&C)" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "सक्रिय ल बन्द करव" + #, fuzzy #~| msgid "Open Link" #~ msgctxt "@title:window" @@ -6239,9 +6535,6 @@ msgstr "टैब बंद करव (&C)" #~ msgid "Decrease Text Size" #~ msgstr "पाठ आकार घटाव" -#~ msgid "Search Output..." -#~ msgstr "खोजे के आउटपुट..." - #~ msgid "Find Next" #~ msgstr "अगला खोजव" @@ -6270,9 +6563,6 @@ msgstr "टैब बंद करव (&C)" #~ msgid "New" #~ msgstr "नवा" -#~ msgid "Select &Tab Color" -#~ msgstr "टैब रंग (&T) चुनव" - #~ msgid "TextLabel" #~ msgstr "पाठ लेबल" diff --git a/local/recipes/kde/konsole/source/po/hr/konsole.po b/local/recipes/kde/konsole/source/po/hr/konsole.po index 3de85762b4..d4242050ee 100644 --- a/local/recipes/kde/konsole/source/po/hr/konsole.po +++ b/local/recipes/kde/konsole/source/po/hr/konsole.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2011-07-18 11:49+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -66,7 +66,7 @@ msgstr "Pogled" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Razdvojeni pogled" @@ -102,7 +102,7 @@ msgid "S&crollback" msgstr "P&rijepis" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -194,36 +194,48 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Isključi transparentnu pozadinu iako je sustav podržava." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Izlistaj sve dostupne profile" -#: Application.cpp:73 +#: Application.cpp:75 #, fuzzy, kde-format #| msgid "" #| "List all the profile properties names and their type (for use with -p)" @@ -231,14 +243,14 @@ msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Navedi sve nazive svojstva profila i njihove vrste (za upotrebu s -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Promijeni vrijednost profilskog svojstva." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -246,7 +258,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -254,14 +266,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenti prosljeđeni naredbi" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -280,217 +292,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Istaknuto" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Pozadina" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Boja 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Boja 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Boja 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Boja 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Boja 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Boja 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Boja 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Boja 7" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Istaknuto (intenzivno)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Pozadina (intenzivno)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Boja 1 (intenzivno)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Boja 2 (intenzivno)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Boja 3 (intenzivno)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Boja 4 (intenzivno)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Boja 5 (intenzivno)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Boja 6 (intenzivno)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Boja 7 (intenzivno)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Boja 8 (intenzivno)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Istaknuto (intenzivno)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Pozadina (intenzivno)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Boja 1 (intenzivno)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Boja 2 (intenzivno)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Boja 3 (intenzivno)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Boja 4 (intenzivno)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Boja 5 (intenzivno)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Boja 6 (intenzivno)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Boja 7 (intenzivno)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Boja 8 (intenzivno)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -755,6 +767,39 @@ msgstr "Na &vrhu" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Domaćin:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Uobičajena konzola" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -799,7 +844,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiraj unos na" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -831,14 +876,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Uredi pismo…" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Glatko pismo" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -876,17 +921,17 @@ msgstr "Kombinacija tipaka" msgid "Output" msgstr "Ispis" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nova lista tipkovničkog vezanja" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Uredi listu tipkovničkog vezanja" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -894,7 +939,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -929,249 +974,249 @@ msgid "Output:" msgstr "Ispis:" # pmap: =/nom=Konzola/gen=Konzole/dat=Konzoli/aku=Konzole/lok=Konzolu/ins=Konzolom/_r=ž/_b=j/ -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalski emulator" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Ispravke grešaka i opća poboljšanja" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Terminalski emulator" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Ispravke grešaka i opća poboljšanja" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Ispravke grešaka i opća poboljšanja" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Ispravke grešaka i opća poboljšanja" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Općenita poboljšanja" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Ispravke grešaka" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Podrška za Solaris i rad na povijesti" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Ispravke grešaka i poboljšanje pokretačkih performansi" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "Obilježavanje poboljšanja" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1184,14 +1229,14 @@ msgstr "" "Ugrađena Konsolea\n" "Traka s alatim i imena sjednica" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1204,28 +1249,28 @@ msgstr "" "Ugrađena Konsolea\n" "Opća poboljšanja" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Vizualni efekti" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1238,125 +1283,125 @@ msgstr "" "Kod iz kvt projekta\n" "Opća poboljšanja" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Poboljšanja u paleti i označavanju teksta" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "Prebacio na SGI" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Prebacio na FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Zahvala i mnogim drugima.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nova kartica" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Zatvori karticu" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "Novi &prozor" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Novi &prozor" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Oznake" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nova paleta boja" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Manage Profiles" @@ -1364,27 +1409,27 @@ msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Upravljanje profilima" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Aktiviraj izbornik" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Karticu pomakni ulijevo" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1399,28 +1444,28 @@ msgstr[1] "" msgstr[2] "" "Imate otvoreno više kartica u ovom prozoru, jeste li sigurni da želite izaći?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Potvrdite zatvaranje" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:button" msgid "Close &Window" msgstr "Novi &prozor" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zatvori trenutnu karticu" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1429,7 +1474,7 @@ msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Imate otvoreno više kartica u ovom prozoru, jeste li sigurni da želite izaći?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1437,7 +1482,7 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Novi profil" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgctxt "@title:tab Generic, common options" #| msgid "General" @@ -1445,31 +1490,31 @@ msgctxt "@title Preferences page name" msgid "General" msgstr "Općenito" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Opcije taba" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1562,7 +1607,7 @@ msgstr "Otvori u upravitelju datotekama" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1574,29 +1619,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Naredba:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Naredba:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1639,7 +1684,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1698,11 +1743,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1765,94 +1810,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Podešavanje veličine" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Ne zatvaraj početnu sjednicu automatski kada završi." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2064,25 +2109,25 @@ msgstr "Opcije" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Mod prilagođen pisaču (crni tekst, bez pozadine)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Zadani profil" @@ -2146,17 +2191,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Spremi ispis iz %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 nije valjan URL, ispis ne može biti spremljen." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Nemogu pisati u datoteku." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2193,83 +2260,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Crne pastele" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zeleno na crnom" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux boje" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Bijelo na crnom" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Bijelo na crnom" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Zadan (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-konzola" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-konzola" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Traži ispis …" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Unesite tekst za pretragu ovdje" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Zvono u sjednici '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nije bilo moguće naći binarno:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Upozorenje: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nije bilo moguće naći" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2278,361 +2364,369 @@ msgstr "" "Nije bilo moguće naći '%1', umjesto toga se pokreće '%2'. Molim vas da " "provjerite postavke vašeg profila." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nije bilo moguće pokrenuti program '%1' s argumentima '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Tišina u sjednici '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Nova sesija" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Završeno" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program '%1' se srušio." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program '%1' završio je sa statusom %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Napredak ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktivnost u sjednici '%1'" +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + # pmap: =/nom=Konzola/gen=Konzole/dat=Konzoli/aku=Konzole/lok=Konzolu/ins=Konzolom/_r=ž/_b=j/ -#: session/SessionController.cpp:139 +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ne zna kako otvoriti oznaku: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Traženi niz '%1' nije nađen." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Configure Scrollback..." msgid "Configure Web Shortcuts..." msgstr "Podešavanje prijepisa" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "&Zatvori sesiju" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Otvori u upravitelju datotekama" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Kopiraj" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Razdvojeni pogled lijevo/desno" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Razdvojeni pogled gore/dolje" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kopiraj unos" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kopiraj unos" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Umetni odabrano" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Odaberi sve" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Mode" msgstr "Odaberite" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Line" msgstr "Odaberite" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Spremi ispis k&ao…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Spremi ispis k&ao…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Ispiši zaslon" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Configure Scrollback..." msgid "Adjust Scrollback..." msgstr "Podešavanje prijepisa" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Očisti prijepis" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Očisti prijepis i pokreni ponovno" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Uredi profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Prethodni pogled" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Uredi profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Postavi kodiranj&e" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "P&reimenuj karticu…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Sve k&artice u trenutnom prozoru" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Odaberi kartice…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nijedan" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiraj unos na" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModemsko slanje…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Pazi na &aktivnosti" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Pazi na &aktivnosti" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Pazi na &tišinu" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Pazi na &aktivnosti" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Uvećaj pismo" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Smanji pismo" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Povećaj veličinu teksta" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "Pošalji &signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Odgodi zadatak" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Nastavi zadatak" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Objesi" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Prekini zadatak" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Mogućnosti terminala" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Ubij zadatak" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Korisnikov signal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Korisnikov signal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Novi profil…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Uredi trenutni profil …" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2641,7 +2735,7 @@ msgstr "" "Trenutno se izvršava pogram u ovoj sjednici. Jeste li sigurni da je želite " "zatvoriti?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2650,19 +2744,19 @@ msgstr "" "Program '%1' trenutno se izvršava u ovoj sjednici. Jeste li sigurni da ga " "želite zatvoriti?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potvrdite zatvaranje" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Zatvori karticu" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2674,41 +2768,41 @@ msgstr "" "Trenutno se izvršava pogram u ovoj sjednici. Jeste li sigurni da je želite " "zatvoriti?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Program '%1' trenutno se izvršava u ovoj sjednici. Jeste li sigurni da ga " "želite zatvoriti?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "Spremi ZModemsko preuzimanje u…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2719,13 +2813,13 @@ msgstr "" "računalu nije pronađen prikladni ZModem softver.

          Možda biste trebali " "instalirati pakete 'rzsz' ili 'lrzsz'

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "

          Trenutna sjednica već ima ZModem prijenos datoteka u tijeku.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2734,7 +2828,7 @@ msgstr "" "

          Na vašem sustavu nije pronađen prikladni ZModem softver.

          Možda " "biste trebali instalirati pakete 'rzsz' ili 'lrzsz'.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Odaberite datoteke za ZModem Otpremu" @@ -2758,151 +2852,178 @@ msgctxt "@title:window" msgid "Configure" msgstr "Potvrdite zatvaranje" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Podesi naslov prozora" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Podudaranje s regularnim izrazom" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Istakni sva podudaranja" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "Postavlja da li će pretraga paziti na veličinu slova" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "Osjetljivost na veličinu slova" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, fuzzy, kde-format +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Podesi naslov prozora" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Unesi tekst nove kartice:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "&Obavijest sustava" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "Postavlja da li će pretraga paziti na veličinu slova" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "Osjetljivost na veličinu slova" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Istakni sva podudaranja" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Nađi sljedeći rezultat koji odgovara trenutnoj traženoj frazi" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Podudaranje s regularnim izrazom" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2928,74 +3049,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "Spremi veličinu i položaj prozora pri izlasku" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "Postavlja da li će pretraga paziti na veličinu slova" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all matches" msgid "Highlight all search matches" msgstr "Istakni sva podudaranja" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Postavlja da li će podudarani tekst biti osvijetljen" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -3003,91 +3162,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3100,26 +3265,24 @@ msgid "Enable memory monitoring:" msgstr "Omogući dvosmjerno iscrtavanje teksta" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3292,16 +3455,35 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Nijedan" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Zatvori karticu" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" @@ -3309,93 +3491,93 @@ msgstr "" "Prikazuj gumbe 'Nova kartica' i 'Zatvori karticu' unutar trake s karticama" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Unesi tekst nove kartice:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Zatvori trenutnu karticu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Razdvojeni pogled" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Prikaži traku s izbornikom" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3404,14 +3586,14 @@ msgid "Small" msgstr "Mala" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3420,7 +3602,7 @@ msgid "Large" msgstr "Velika" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3474,8 +3656,8 @@ msgstr "" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3515,12 +3697,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Veličina: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3528,87 +3710,87 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Potvrdite zatvaranje" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Potvrdite zatvaranje" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Postavi pokazivač da odgovara trenutnom znaku" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Umetni odabrano" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been obustavljen pritiskom na Ctrl+S. Pritisnite Ctrl+Q za nastavak." "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "Promjeni radni dirketorij konzole u 'dir'" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Umetni odabrano" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Razdvojeni pogled" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Razdvojeni pogled lijevo/desno" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Razdvojeni pogled gore/dolje" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3665,7 +3847,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Razdvojeni pogled gore/dolje" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3673,7 +3855,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Razdvojeni pogled lijevo/desno" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3681,7 +3863,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Razdvojeni pogled gore/dolje" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3689,210 +3871,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Razdvojeni pogled gore/dolje" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Proširi pogled" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Suzi pogled" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Odvoji tr&enutnu karticu" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Odvoji tr&enutnu karticu" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "Next Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Sljedeća kartica" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous Tab" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Prethodna kartica" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Iznad prikaza terminala" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Ispod prikaza terminala" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Iznad prikaza terminala" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Ispod prikaza terminala" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Prebaci u karticu %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move Tab Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Karticu pomakni udesno" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Karticu pomakni ulijevo" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Prebaci u karticu %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Interakcija mišem" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Stalan broj redaka:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Karticu pomakni ulijevo" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3905,7 +4101,7 @@ msgstr "" "Pojavio se problem prilikom snimanja ispisa.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3918,13 +4114,13 @@ msgstr "" "Pojavio se problem prilikom snimanja ispisa.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -4024,29 +4220,41 @@ msgstr "Zadano znakovno enkodiranje" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Stalan broj redaka:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4083,7 +4291,7 @@ msgstr "Uredi odabranu paletu boja" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4139,12 +4347,18 @@ msgstr "Iscrtavaj intenzivne boje podebljanim pismom" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4276,31 +4490,47 @@ msgid "Make the cursor blink regularly" msgstr "Neka pokazivač redovno trepće" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "&Omogući" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Aktiviraj izbornik" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Neka pokazivač redovno trepće" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Prozor" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4308,25 +4538,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4335,28 +4565,28 @@ msgid "Color:" msgstr "Boja" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Odaberi boju koja iscrtava pokazivač" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "Veličina terminala je fiksna" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "Veličina terminala je fiksna" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4364,96 +4594,96 @@ msgid "Terminal contents" msgstr "Mogućnosti terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "Prore&d" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Omogući dvosmjerno iscrtavanje teksta" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4461,45 +4691,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Postavi pokazivač da odgovara trenutnom znaku" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Pismo" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4509,99 +4739,99 @@ msgstr "" "ili hebrejski)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Omogući dvosmjerno iscrtavanje teksta" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Postavi pokazivač da odgovara trenutnom znaku" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Uredi profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Općenito" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Kartice" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Izgled" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Klizač" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "&Tipkovnica" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Tipkovničko vezanje" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Napredno" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4610,13 +4840,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4627,19 +4857,19 @@ msgstr "" "Istoimena datoteka već postoji.\n" "Želite ovu snimiti preko nje?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4647,18 +4877,25 @@ msgstr[0] "Uredi %1 profil: %2" msgstr[1] "Uredi %1 profila: %2" msgstr[2] "Uredi %1 profila: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Novi profil…" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Uredi profil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&Nijedan" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4669,7 +4906,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4680,46 +4917,46 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "Zvonce sustava" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "&Obavijest sustava" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "&Vidljivo zvonce" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Postavi odabrani profil kao zadani za novu terminalsku sjednicu" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Uredi okolinu" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4728,25 +4965,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Odaberi početni direktorij" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Nova…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4755,20 +4992,20 @@ msgstr "" "Ova paleta boja koristi transparentnu pozadinu koja izgleda da nije podržana " "na vašoj radnoj površini" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Zadani profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4785,7 +5022,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4882,27 +5119,55 @@ msgstr "Traži početni direktorij" msgid "Start in same directory as current session" msgstr "Pokreni u istom direktoriju u kojem je i trenutna kartica" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Pokreni u istom direktoriju u kojem je i trenutna kartica" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Okolina:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Uredi listu okolišnih varijabli i pridruženih im vrijednosti" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "Veličina terminala je fiksna" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4912,33 +5177,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Terminalski emulator" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Interakcija mišem" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4948,9 +5213,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4961,9 +5226,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4974,35 +5239,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Pozadina" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5371,72 +5636,25 @@ msgid "Scrollback:" msgstr "Prijepis" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Pozicija trake s karticama:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Prikaži klizač na desnoj strani terminalskog prozora" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Prikaži na desnoj strani" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Prikaži klizač na lijevoj strani terminalskog prozora" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Veličina teksta:" - #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5444,46 +5662,105 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Skriven" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Prikaži klizač na desnoj strani terminalskog prozora" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Prikaži na desnoj strani" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Prikaži klizač na lijevoj strani terminalskog prozora" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Veličina teksta:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Pozicija trake s karticama:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5589,40 +5866,40 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nijedan" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Nađi:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Unesite tekst za pretragu ovdje" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Sljedeće" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Nađi sljedeći rezultat koji odgovara trenutnoj traženoj frazi" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Prethodno" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5631,87 +5908,87 @@ msgstr "Nađi prethodni rezultat koji odgovara trenutnoj traženoj frazi" #: widgets/IncrementalSearchBar.cpp:102 #, fuzzy, kde-format -#| msgid "Display the options menu" -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Prikaži izbornik s opcijama" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zatvori traku za pretragu" - -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format #| msgid "Case sensitive" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Osjetljivost na veličinu slova" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Postavlja da li će pretraga paziti na veličinu slova" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, fuzzy, kde-format +#| msgid "Display the options menu" +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Prikaži izbornik s opcijama" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zatvori traku za pretragu" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Podudaranje s regularnim izrazom" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all matches" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Istakni sva podudaranja" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Postavlja da li će podudarani tekst biti osvijetljen" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Nađi sljedeći rezultat koji odgovara trenutnoj traženoj frazi" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Nađi sljedeći rezultat koji odgovara trenutnoj traženoj frazi" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Nađi sljedeći rezultat koji odgovara trenutnoj traženoj frazi" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Nađi sljedeći rezultat koji odgovara trenutnoj traženoj frazi" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5724,7 +6001,7 @@ msgstr "Nađi sljedeći rezultat koji odgovara trenutnoj traženoj frazi" msgid "Print Shell" msgstr "Ispis &zaglavlja" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5769,6 +6046,14 @@ msgstr "Običan oblik naslova kartice" msgid "Tab Co&lor:" msgstr "Boja" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Boja" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5883,7 +6168,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Resetiraj i očisti terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5891,33 +6176,47 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Odvoji karticu" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Odvoji karticu" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Zatvori karticu" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Odvoji karticu" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "P&reimenuj karticu…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Zatvori karticu" +#, fuzzy +#~| msgid "Case sensitive" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Osjetljivost na veličinu slova" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" @@ -6354,9 +6653,6 @@ msgstr "&Zatvori karticu" #~ msgid "Decrease Text Size" #~ msgstr "Smanji veličinu teksta" -#~ msgid "Search Output..." -#~ msgstr "Traži ispis …" - #~ msgid "Find Next" #~ msgstr "Nađi sljedeći" @@ -6849,9 +7145,6 @@ msgstr "&Zatvori karticu" #~ "Dosegli ste početak povijesti.\n" #~ "Želite li krenuti od kraja?" -#~ msgid "Unable to write to file." -#~ msgstr "Nemogu pisati u datoteku." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/hsb/konsole.po b/local/recipes/kde/konsole/source/po/hsb/konsole.po index fbcbaca145..a76e3b8e33 100644 --- a/local/recipes/kde/konsole/source/po/hsb/konsole.po +++ b/local/recipes/kde/konsole/source/po/hsb/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2021-10-15 10:45+0200\n" "Last-Translator: Prof. Dr. Eduard Werner \n" "Language-Team: Upper Sorbian\n" @@ -49,7 +49,7 @@ msgstr "Napohlad" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Napohlad dźělić" @@ -85,7 +85,7 @@ msgid "S&crollback" msgstr "Wróćo přesuwać" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Nastrojowy pas za posedźenje" @@ -163,46 +163,58 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Profil posedźenja zawěsćić" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -210,7 +222,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -218,13 +230,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -244,157 +256,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "W prědku" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "W pozadku" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Barba 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Barba 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Barba 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Barba 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Barba 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Barba 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Barba 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Barba 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -648,6 +660,39 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Default" +msgid " [default]" +msgstr "Standard" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -692,7 +737,7 @@ msgstr "" msgid "Copy Location" msgstr "Wubrany tekst zasunyć" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -724,13 +769,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Proces za&kónčić" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -769,17 +814,17 @@ msgstr "Konfiguracija wulkosće" msgid "Output" msgstr "Nachwilny pomjatk zawěsćić" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -787,7 +832,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -821,226 +866,226 @@ msgstr "Input:" msgid "Output:" msgstr "Output:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator za terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Začinić" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Njemóžach nachwilny pomjatk zawěsćić." -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1048,13 +1093,13 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1062,25 +1107,25 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1088,121 +1133,121 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nowy jězdnik" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Interpreter &zakónčić" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nowa se&sija" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Zapołožki" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Kombinacija &barbow za wokno" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profile rjadować..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Meni zaswěćić" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Save tab layout to file" @@ -1210,7 +1255,7 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Layout jězdnikow do dataje zawěsćić" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Load tab layout from file" @@ -1218,7 +1263,7 @@ msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Layout jězdnikow z dataje začitać" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1229,68 +1274,68 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Začinjenje wobkrućić" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Wokno začinić" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Aktualny jězdnik začinić" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@title Preferences page name" msgid "Profiles" msgstr "&Profilowu dataju zawěsćić..." -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Powšitkownje" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Tabulatorowy pas / dźělaki" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Temporarne dataje" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Mini-wobrazki" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1377,7 +1422,7 @@ msgstr "Dataju zawěsćić" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1389,29 +1434,29 @@ msgid "Cancel" msgstr "Přetorhnyć" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Přikaz:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Přikaz:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1451,7 +1496,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1506,11 +1551,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1569,92 +1614,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format msgid "Delete selected entry" msgstr "Profil posedźenja zawěsćić" @@ -1846,25 +1891,25 @@ msgstr "Nachwilny pomjatk zawěsćić" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default profile" @@ -1928,17 +1973,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Nachwilny pomjatk zawěsćić" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1972,498 +2038,526 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format -msgid "Green on Black" +msgid "Dark Pastels" msgstr "" #: schemas.cpp:8 +#, kde-format +msgid "Green on Black" +msgstr "" + +#: schemas.cpp:9 #, fuzzy, kde-format #| msgid "Konsole" msgid "Linux Colors" msgstr "Konsole" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "" -#: schemas.cpp:14 +#: schemas.cpp:15 #, fuzzy, kde-format #| msgid "Konsole" msgid "Linux console" msgstr "Konsole" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, fuzzy, kde-format #| msgid "Konsole" msgid "Solaris console" msgstr "Konsole" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "&Pomjatk wuprózdnić" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Tekst, za kotrymž ma so pytać" + +#: session/Session.cpp:131 #, fuzzy, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "in" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Njemóžach nachwilny pomjatk zawěsćić." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "in" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Posedźenje zakónčić" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Find" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Pytać" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format msgid "Program '%1' crashed." msgstr "Interpreter." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format msgid "Program '%1' exited with status %2." msgstr "Interpreter." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "in" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Posedźenje zakónčić" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Datajowy rjadowak wočinić" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopěrować" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Napohlad dźělić nalěwo/naprawo" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Napohlad dźělić horjeka/deleka" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Input kopěrować" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Input kopěrować" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Wubrany tekst zasunyć" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "W interneće pytać" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Wšitko wubrać" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "&Linku wubrać" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "&Linku wubrać" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Output zawěsćić jako..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Output zawěsćić jako..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Wobrazowku &wućišćeć..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Adjust Scrollback..." msgstr "&Profilowu dataju zawěsćić..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgctxt "Unlimited (number of lines)" #| msgid "Unlimited" msgid "Clear Scrollback" msgstr "Bjez wobmjezowanja" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear &History" msgid "Clear Scrollback and Reset" msgstr "&Pomjatk wuprózdnić" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Profil wobdźěłać" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgid "Previous Profile" msgstr "Pře&dchadny namakać" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Switch Profile" msgstr "&Profilowu dataju zawěsćić..." -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Jěznik připrawić abo přemjenować..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Wšitke jězdniki w aktualnym woknje" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Jězdni&ki wubrać..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Dźiwać na &aktiwity" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Dźiwać na &aktiwity" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Dźiwać na &ćišinu" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Dźiwać na &aktiwity" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format msgid "Shrink Font" msgstr "Mjeńše pismo" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format msgid "&Continue Task" msgstr "Interpreter &zakónčić" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Terminate Task" msgstr "Proces za&kónčić" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile..." msgstr "&Profilowu dataju zawěsćić..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Current Profile..." msgstr "&Profilowu dataju zawěsćić..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Interpreter &zakónčić" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2471,20 +2565,20 @@ msgid "" "or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2509,146 +2603,173 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "Jako &prawidłowny wuraz" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" -msgstr "Interpreter &zakónčić" +#| msgid "&Detach Session" +msgid "Force new tabs" +msgstr "&Interpreter w pozadku dale běžeć dać" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "Interpreter &zakónčić" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "Jako &prawidłowny wuraz" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2673,72 +2794,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "Interpreter &zakónčić" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2746,91 +2905,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2843,26 +3008,24 @@ msgid "Enable memory monitoring:" msgstr "Wobkedźbowanje jězdnika" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3019,104 +3182,122 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +msgid "Show Search Tabs button:" +msgstr "Interpreter &zakónčić" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format msgid "Show 'New Tab' button" msgstr "Interpreter &zakónčić" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format msgid "After current &tab" msgstr "Interpreter &zakónčić" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format msgid "Splits" msgstr "Mjeńše pismo" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "&Bell" msgctxt "@option:radio Small height/width of splitter widget" @@ -3124,21 +3305,21 @@ msgid "Small" msgstr "&Zwónčk" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3191,8 +3372,8 @@ msgstr "" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3232,12 +3413,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Wulkosć: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3246,84 +3427,84 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Wubrany tekst zasunyć" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Wubrany tekst zasunyć" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Napohlad dźělić" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Napohlad dźělić nalěwo/naprawo" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Napohlad dźělić horjeka/deleka" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3373,7 +3554,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Napohlad dźělić horjeka/deleka" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3381,7 +3562,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Napohlad dźělić nalěwo/naprawo" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3389,7 +3570,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Napohlad dźělić horjeka/deleka" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3397,186 +3578,202 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Napohlad dźělić horjeka/deleka" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Nowy jězdnik z 2x2 terminalomaj" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Nowy jězdnik z 2x1 terminalom" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Nowy jězdnik z 1x2 terminalomaj" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Napohlad rozćahnyć" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Napohlad sćahnyć" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Aktualny na&pohlad wotlěpić" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Aktualny jězdnik wo&tlěpić" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Přichodny jězdnik" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Předchadny jězdnik" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fokus nad terminalom" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fokus pod terminalom" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fokus na lěwym terminalu" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fokus na prawym terminalu" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokus na lěwym terminalu" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokus pod terminalom" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Posledni jězdnik aktiwizować" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Runje wužiwane Jězdniki" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Mjez jězdnikomaj tam a sem chodźić" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Jězdnik naprawo přesunyć" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Jězdnik nalěwo přesunyć" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Dźi k jězdnikej %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line numbers " msgstr "&Kelko linkow:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Save tab layout to file" @@ -3584,13 +3781,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Layout jězdnikow do dataje zawěsćić" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3598,7 +3795,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3606,7 +3803,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Load tab layout from file" @@ -3614,7 +3811,7 @@ msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Layout jězdnikow z dataje začitać" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3710,29 +3907,41 @@ msgstr "" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line Numbers:" msgstr "&Kelko linkow:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3769,7 +3978,7 @@ msgstr "Profil posedźenja zawěsćić" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3824,12 +4033,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3951,29 +4166,44 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Steji k dispoziciji" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgid "Animation:" +msgstr "&Pomjatk wuprózdnić" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Wokno:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3981,25 +4211,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "Cursor color options" #| msgid "Color:" @@ -4008,120 +4238,120 @@ msgid "Color:" msgstr "Barba:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Njeaktiwne terminale:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Inactive Terminals:" msgid "Active Terminals:" msgstr "Njeaktiwne terminale:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Wobsah terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Wotstawk mjez linkomaj:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Ličba dypkow mjez dwěmaj linkomaj" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Kromy:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Na centrum wusměrić:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Zaćěmnić" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4129,44 +4359,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font:" msgid "Emoji Font:" msgstr "Pismo:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4174,95 +4404,95 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profil wobdźěłać" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Jězdniki" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Napohlad" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Přesuwanje" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Tastaturowe skrótšenki" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Myš" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4271,31 +4501,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Editing profile: %2" @@ -4305,19 +4535,24 @@ msgstr[1] "&Profilowu dataju zawěsćić..." msgstr[2] "&Profilowu dataju zawěsćić..." msgstr[3] "&Profilowu dataju zawěsćić..." -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile" msgstr "&Profilowu dataju zawěsćić..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile \"%1\"" msgstr "&Profilowu dataju zawěsćić..." -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4329,7 +4564,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4341,42 +4576,42 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Systemowy zwónčk" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Systemowe zdźělenki" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Optiski zwónčk" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Zwónčki ignorowac" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Profil posedźenja zawěsćić" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4386,43 +4621,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Nowe wobstarać..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default for file type" msgstr "&Profilowu dataju zawěsćić..." -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4439,7 +4674,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4532,27 +4767,55 @@ msgstr "Spočatny zapisk wubrać" msgid "Start in same directory as current session" msgstr "W samsnym zapisku započeć kaž tute posedźenje" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "W samsnym zapisku započeć kaž tute posedźenje" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Wokolina:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "Initial terminal si&ze:" msgstr "Proces za&kónčić" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4562,31 +4825,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format msgid "&Terminal bell mode:" msgstr "Začinić" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4596,9 +4859,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4609,9 +4872,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4622,34 +4885,34 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "" @@ -4982,116 +5245,128 @@ msgid "Scrollback:" msgstr "Bjez wobmjezowanja" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Clear &History" -msgid "Scrollbar position:" -msgstr "&Pomjatk wuprózdnić" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, kde-format -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, kde-format -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgid "&Hide" msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "&Chować" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgid "Scrollbar position:" +msgstr "&Pomjatk wuprózdnić" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5195,119 +5470,119 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Pytać ..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Tekst, za kotrymž ma so pytać" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Přichodna namakanka" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Přichodna namakanka aktualneho pytanja" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Pře&dchadny namakać" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Interpreter &zakónčić" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Interpreter &zakónčić" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Interpreter &zakónčić" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Jako &prawidłowny wuraz" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5319,7 +5594,7 @@ msgstr "" msgid "Print Shell" msgstr "&Zwónčk" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5359,6 +5634,14 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Barba:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "Cursor color options" +#| msgid "Color:" +msgid "&Activity Tab Color:" +msgstr "Barba:" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgctxt "NAME OF TRANSLATORS" @@ -5462,40 +5745,53 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Interpreter &zakónčić" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Interpreter w pozadku dale běžeć dać" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Interpreter w pozadku dale běžeć dać" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Interpreter &zakónčić" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Interpreter w pozadku dale běžeć dać" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Proces za&kónčić" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Interpreter &zakónčić" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Interpreter &zakónčić" + #, fuzzy #~| msgid "Save File" #~ msgctxt "@title:window" @@ -5731,11 +6027,6 @@ msgstr "Interpreter &zakónčić" #~ msgid "&Detach View" #~ msgstr "&Interpreter w pozadku dale běžeć dać" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "&Pomjatk wuprózdnić" - #, fuzzy #~| msgid "Find Pre&vious" #~ msgid "Find Previous" diff --git a/local/recipes/kde/konsole/source/po/hu/konsole.po b/local/recipes/kde/konsole/source/po/hu/konsole.po index 9f23e98340..a9756b546e 100644 --- a/local/recipes/kde/konsole/source/po/hu/konsole.po +++ b/local/recipes/kde/konsole/source/po/hu/konsole.po @@ -3,13 +3,13 @@ # Kristóf Kiszel , 2010, 2011, 2012, 2014, 2015. # Balázs Úr , 2012, 2013, 2014. # Kiszel Kristóf , 2017. -# SPDX-FileCopyrightText: 2021, 2022, 2024 Kristof Kiszel +# SPDX-FileCopyrightText: 2021-2022, 2024-2026 Kristof Kiszel msgid "" msgstr "" "Project-Id-Version: KDE 4.2\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-31 22:16+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-06-18 21:50+0200\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 26.04.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -51,7 +51,7 @@ msgstr "Nézet" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Nézetmegosztás" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "P&ufferelés" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Munkamenet eszköztár" @@ -168,24 +168,40 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Menüsáv elrejtése az alapértelmezett beállítás felülírásával" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Lapsáv megjelenítése az alapértelmezett beállítás felülírásával" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Lapsáv elrejtése az alapértelmezett beállítás felülírásával" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Lapsáv megjelenítése az alapértelmezett beállítás felülírásával" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Lapsáv elrejtése az alapértelmezett beállítás felülírásával" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "A Konsole indítása teljes képernyős módban" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." @@ -193,13 +209,13 @@ msgstr "" "Az áttetsző hátterek letiltása akkor is, ha a rendszer támogatja a " "használatukat." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Az elérhető profilok listája" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -207,13 +223,13 @@ msgstr "" "Az összes profiltulajdonság nevének és típusának listázása ( a -p " "kapcsolóval való használathoz)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Profilváltozó értékének módosítása." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -223,7 +239,7 @@ msgstr "" "A végrehajtandó parancs. Ez az opció minden utána következő argumentumot " "megkap, ezért használja utolsóként." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,13 +250,13 @@ msgstr "" "funkcionalitást, például a --new-tab kapcsoló. Főleg hibakeresés esetén " "hasznos." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "A parancsnak átadott argumentumok" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -258,157 +274,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Előtér" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Háttér" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "1. szín" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "2. szín" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "3. szín" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "4. szín" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "5. szín" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "6. szín" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "7. szín" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "8. szín" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Előtér (intenzív)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Háttér (intenzív)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "1. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "2. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "3. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "4. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "5. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "6. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "7. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "8. szín (intenzív)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Előtér (halvány)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Háttér (halvány)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "1. szín (halvány)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "2. szín (halvány)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "3. szín (halvány)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "4. szín (halvány)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "5. szín (halvány)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "6. szín (halvány)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "7. szín (halvány)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "8. szín (halvány)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -665,6 +681,41 @@ msgstr "Fent" msgid "AaZz09..." msgstr "AaZz09…" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Gépnév: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Alapértelmezett]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -710,7 +761,7 @@ msgstr "" msgid "Copy Location" msgstr "Hely másolása" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Bélyegkép generálása" @@ -741,13 +792,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Betűtípus kiválasztása" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Összes betűtípus megjelenítése" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -788,17 +839,17 @@ msgstr "Billentyűkombináció" msgid "Output" msgstr "Kimenet" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Új billentyűparancs-lista" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Billentyűparancs-lista szerkesztése" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Billentyűparancs-séma nem menthető üres leírással." @@ -806,7 +857,7 @@ msgstr "Billentyűparancs-séma nem menthető üres leírással." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -840,225 +891,225 @@ msgstr "Bemenet:" msgid "Output:" msgstr "Kimenet:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminálemulátor" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© A Konsole fejlesztői, 1997-2022." -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Általános karbantartó, hibajavítások és általános fejlesztések" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Korábbi karbantartó, portolás KDE4-re" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Eredeti szerző" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Komoly refaktorálás, hibajavítások és nagyobb fejlesztések" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Hibajavítások és általános fejlesztések" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Hibajavítások és nagyobb fejlesztések" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Általános fejlesztések" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Hibajavítások" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-támogatás és naplózás" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Hibajavítások és továbbfejlesztett indulási teljesítmény" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Javított jelölés" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1068,13 +1119,13 @@ msgstr "" "Beágyazott Konsole\n" "Eszköztár- és munkafolyamat-nevek" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1084,25 +1135,25 @@ msgstr "" "Beágyazott Konsole\n" "Általános fejlesztések" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vizuális effektek" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1112,132 +1163,132 @@ msgstr "" "Kód importálása a kvt projektből\n" "Általános fejlesztések" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Séma- és szövegkiválasztás fejlesztések" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Portolás SGI-re" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Portolás FreeBSD-re" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "És még sokan mások.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Ú&j lap" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Lap meg&kettőzése" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Új &ablak" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Ablak bezárása" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Könyvjelzők" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Ablak színsémája" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profilok kezelése…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Menü aktiválása" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Lapelrendezés mentése…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Lapelrendezés betöltése…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1247,67 +1298,67 @@ msgstr[0] "" "Ebben az ablakban egy futó folyamat van. Biztosan ki szeretne lépni?" msgstr[1] "Ebben az ablakban %1 futó folyamat van. Biztosan ki szeretne lépni?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Bezárás megerősítése" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Ablak bezárása" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Aktuális &lap bezárása" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Ebben az ablakban %1 nyitott terminál van. Biztosan ki szeretne lépni?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profilok" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Általános" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memória" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Lapsáv / Elválasztók" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Ideiglenes fájlok" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Bélyegképek" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1391,7 +1442,7 @@ msgstr "Mentés" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Frissítés" @@ -1400,32 +1451,32 @@ msgstr "Frissítés" #: plugins/QuickCommands/qcwidget.ui:276 plugins/SSHManager/sshwidget.ui:320 #, kde-format msgid "Cancel" -msgstr "Mégsem" +msgstr "Mégse" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Gyorsparancsok" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Gyorselérés megjelenítése" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Nem találhatók gyorsparancsok. A Bővítmények -> Gyorsparancsok menüpontban " "adhat hozzá" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Bővítmények - Gyorsparancsok" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Gyorsparancsok megjelenítése" @@ -1469,7 +1520,7 @@ msgstr "" " több konfigurációval, biztos benne?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "A(z) %1 törlésére készül, biztos benne?" @@ -1522,11 +1573,11 @@ msgid "%1 is a folder for SSH entries" msgstr "A(z) %1 egy mappa SSH bejegyzésekhez" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH konfiguráció" @@ -1591,24 +1642,24 @@ msgstr "" "sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH kulcs" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Törlés" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ne módosítsa" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1617,70 +1668,70 @@ msgstr "" "A(z) %1 mappa törlésére készül,\n" " több SSH konfigurációval, biztos benne?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH konfigurációk törlése" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "Importált SSH profil
          Néhány beállítás csak olvasható." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Hiányzó gépnév" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Hiányzó név" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Ha az SSH konfiguráció használata be van állítva, ne adjon meg sshkey-t vagy " "felhasználónevet." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Legalább a felhasználónevet vagy az SSHKey-t be kell állítani" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Hiányzó mappa" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Egy SSH munkamenetnek rendelkeznie kell egy profillal" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Nem lehet törölni ezt a mappát" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Mappa és teljes tartalmának törlése" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Kattintson duplán a mappa nevének módosításához." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Nem törölhet egy automatikusan felvett bejegyzést." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Kijelölt bejegyzés törlése" @@ -1872,25 +1923,25 @@ msgstr "Kimenet beállítások" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Nyomtató&kímélő mód (fekete szöveg, üres háttérrel)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Kimenet &méretezése" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Beépített" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Alapértelmezett profil" @@ -1949,17 +2000,42 @@ msgstr "Kattintson duplán a gyorsbillentyű módosításához" msgid "Tab Properties" msgstr "Laptulajdonságok" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Kimenet mentése innen: %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "A(z) %1 egy érvénytelen URL, a kimenet nem menthető." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Nem sikerült automatikus mentési fájlt létrehozni itt: %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Automatikus mentés leállítása képernyőváltás miatt." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Az automatikus mentési fájl külsőleg módosult, ami megakadályozza a további " +"automatikus mentéseket." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Nem sikerült frissíteni az automatikus mentés állapotát a kimeneti " +"változásakor." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1995,81 +2071,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Sötét pasztellszínek" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Fekete alapon zöld" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux színek" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Fekete alapon vörös" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Égetett" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Égetett világos" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Fekete alapon fehér" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Alapértelmezés (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux konzol" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris konzol" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Keresés…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Itt adja meg a keresendő lap nevét" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Csengő - „%1” („%2” munkamenet)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nem található ez a program: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Figyelmeztetés: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nem található indítható terminálprogram." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2078,362 +2171,364 @@ msgstr "" "„%1” nem található, „%2” indul el helyette. Ellenőrizze a profil " "beállításait." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nem sikerült elindítani: „%1” (argumentumok: „%2”)." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Üresjárat - „%1” („%2” munkamenet)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Munkamenet megjelenítése" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"A sendText/runCommand D-Bus metódusokat most használták. Biztonsági aggályok " -"merültek fel azzal kapcsolatban, hogy ezek a metódusok publikusak legyenek-" -"e. Ha szükséges, ezek a a Konsole újrafordításával csak belső használatra " -"módosíthatók.

          Ez figyelmeztetés csak egyszer jelenik meg ebben a Konsole " -"példányban.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Befejezve" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "A(z) „%1” program összeomlott." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "A(z) „%1” program %2 állapotkóddal fejeződött be." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-állapot" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivitás - „%1” („%2” munkamenet)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "A biztonságérzékeny D-Bus API le van tiltva a beállításokban." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "A(z) „%1” folyamat befejezte a futást a(z) „%2” munkamenetben" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "A Konsole nem tudja, hogyan nyissa meg a könyvjelzőt: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "„%1” keresése ezzel:" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Keresőazonosítók beállítása…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Munkamenet bezárása" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Fájlkezelő megnyitása" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Másolás" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Nézetfelezés (bal-jobb)" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Nézetfelezés (felül-alul)" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Másolás a prompt nélkül" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Felhasználói bemenet másolása" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Parancskimenet másolása" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Kijelölés beillesztése" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Webes keresés" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Minden kijelölé&se" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Mód kijelölése" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "&Sor kijelölése" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Kimenet mentése &másként…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Kimenet automatikus mentése &másként…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Automatikus mentés leállítása" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Képernyő &nyomtatása…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Pufferelés beállítása…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Puffer törlése" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Puffer törlése és visszaállítás" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Következő profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Előző profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Profilváltás" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "A kódolás b&eállítása" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Egérkövetés bekapcsolása" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Csak olvasható" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Lap &beállítása vagy átnevezése…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Az összes lap a jelenlegi ablakban" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Lapok kivála&sztása…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nincs" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Bemenet másolása ide" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem feltöltés…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Egyszer használatos jelzők" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "&Promptjelző" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&Aktivitásjelző" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Üresjáratjelző" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Folyamatjelző" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Nagyobb betűméret" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Kisebb betűméret" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Betűméret visszaállítása" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Szignál küldése" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Feladat &felfüggesztése" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Feladat f&olytatása" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Bo&ntás" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Feladat m&egszakítása" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Feladat &befejezése" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Feladat &kilövése" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Felhasználói szignál &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Felhasználói szignál &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Új profil létrehozása…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Jelenlegi profil szerkesztése…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Egy program még fut a munkamenetben. Biztosan be szeretné zárni?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "A munkamenetben még fut a(z) „%1” program. Biztosan be szeretné zárni?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Bezárás megerősítése" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Program bezárása" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2441,37 +2536,37 @@ msgid "" msgstr "" "Egy program a munkamenetben nem akar meghalni. Biztosan ki szeretné lőni?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "A munkamenetben még nem akar meghalni a(z) „%1” nevű program. Biztosan ki " "szeretné lőni?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Program kilövése" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "A parancsértelmező promptja a(z) „%1” munkamenetben jelenik meg" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Aktuális mappa megnyitása mással" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "ZModem letöltés mentése másként…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2482,14 +2577,14 @@ msgstr "" "megfelelő ZModem szoftver a rendszeren.

          Telepítse az „rzsz” vagy " "„lrzsz” csomagot.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" "

          A jelenlegi munkamenetben már folyamatban van egy ZModem fájlátvitel.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2498,7 +2593,7 @@ msgstr "" "

          Nem található megfelelő ZModem szoftver a rendszeren.

          Telepítse az " "„rzsz” vagy „lrzsz” csomagot.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Fájlok kiválasztása a ZModem feltöltéshez" @@ -2521,56 +2616,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Beállítás" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Keresés:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Menügyorsítók bekapcsolása" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Ha engedélyezve van, a profilbeállítások mellőzve lesznek" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Ablakméret megjegyzése" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Ablakcím megjelenítése a címsávban" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Terminálok fókuszálása, amikor az egérmutató felettük mozog" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Reguláris kifejezések használata" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2578,88 +2626,162 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Összes Konsole ablak futtatása egy folyamatban" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Összes találat kiemelése" +msgid "If enabled, profile settings will be ignored" +msgstr "Ha engedélyezve van, a profilbeállítások mellőzve lesznek" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Beállítja, hogy a keresés kis- és nagybetűérzékeny legyen-e" +msgid "Remember window size" +msgstr "Ablakméret megjegyzése" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Nagybetűk megkülönböztetése" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Új lapok helye:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Címsor és keret elrejtése" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Folyamat és ablak:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Értesítések:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Minden párbeszédablak újból megjelenik" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "„Ne kérdezze többet” üzenetek engedélyezése" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Beállítja, hogy a keresés lentről induljon-e" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Keresés visszafelé" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Beállítja, hogy a keresés kis- és nagybetűérzékeny legyen-e" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Nagybetűk megkülönböztetése" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Folyamat és ablak:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Összes találat kiemelése" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Keresés:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Beállítja, hogy a keresés megálljon-e, ahelyett, hogy újrakezdődne" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Nincs újrakezdés" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Menügyorsítók bekapcsolása" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Terminálok fókuszálása, amikor az egérmutató felettük mozog" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Minden párbeszédablak újból megjelenik" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "„Ne kérdezze többet” üzenetek engedélyezése" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Ablakcím megjelenítése a címsávban" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "A biztonságérzékeny D-Bus API elemeinek engedélyezése" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Címsor és keret elrejtése" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Reguláris kifejezések használata" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2687,72 +2809,112 @@ msgstr "A jelenlegi ablakméret használata a következő indításkor" msgid "The window size will be saved upon exiting Konsole" msgstr "Az ablakméret mentésre kerül a Konsole-ból való kilépéskor" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"A meglévő folyamat újra felhasználása a Konsole indításakor, ha lehetséges" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "A runCommand-hoz hasonló D-Bus API-k engedélyezve lesznek." + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Bélyegképszélesség" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "A bélyegkép szélességének beállítása" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Shift használata a bélyegkép megjelenítéséhez" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Alt használata a bélyegkép megjelenítéséhez" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Ctrl használata a bélyegkép megjelenítéséhez" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "A keresés kis- és nagybetűérzékeny" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Összes találat kiemelése" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Beállítja, hogy ki legyenek-e emelve a találati szövegek" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Keresés leállítása újrakezdés helyett" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" "Annak vezérlése, hogy az egyes lapokhoz létrejöjjenek-e gyermek cgroupok" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2762,91 +2924,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Az egész lapsáv láthatóságának vezérlése" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "A panelek közötti fogantyú méretének szabályozása" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "A lapsáv pozíciójának szabályozása" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "A lapsáv vizuális stílusának szabályozása" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Felhasználó által megadott .css fájl használata a lapsávhoz" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "A használandó .css fájl a lapsáv stílushoz" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Nyitott lapok bezárása a középső egérgombbal kattintva" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Az „Új lap” gomb láthatóságának szabályozása a lapsávon" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "A „Lapok keresése” gomb láthatóságának szabályozása a lapsávon" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "A „Lap bezárása” gomb megjelenítési helyének szabályozása" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Az új lapok elhelyezésének szabályozása" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Lapszélességek kiterjesztése" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Rendszerszintű mappa használata a fájlok puffereléséhez" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Felhasználó-specifikus mappa használata a fájlok puffereléséhez" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Megadott mappa használata a fájlok puffereléséhez" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Ezen mappa használata a fájlok puffereléséhez" @@ -2858,34 +3026,29 @@ msgid "Enable memory monitoring:" msgstr "Memóriafigyelés bekapcsolása:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "A változtatások újraindításkor lépnek életbe. Ha be van kapcsolva, a Konsole-" -"nak a megadott\n" -"értéket túllépő tartós memóriafogyasztása hatására a systemd-oomd " -"eltávolítja a \n" -"memóriaintenzív folyamatokat tartalmazó lapokat. Megjegyzés: a bekapcsolás\n" -"jelentős lassulást okozhat magas memóriafogyasztás során, túl alacsony " -"értékek\n" -"megadása pedig a Konsole kilövését is okozhatja." +"nak a megadott értéket túllépő tartós memóriafogyasztása hatására a systemd-" +"oomd eltávolítja a memória-intenzív folyamatokat tartalmazó lapokat. " +"Megjegyzés: a bekapcsolás jelentős lassulást okozhat magas memóriafogyasztás " +"során, túl alacsony értékek megadása pedig a Konsole kilövését is okozhatja." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Memóriakorlát:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3046,125 +3209,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nincs" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Lapok keresése gomb megjelenítése:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Mindig" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Soha" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Egyéb:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "„Új lap” gomb megjelenítése" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Fülek kiterjesztése a teljes ablakra" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Egyedi stíluslap használata:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(nincs)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Működés" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Új lapok helye:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "A &végén" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Az aktuális &lap után" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Lapok bezárása középső gombbal kattintva" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Felosztások" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Fejléc megjelenítése:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Ha szükséges" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Soha" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Fogó mérete:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Kicsi" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Közepes" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Nagy" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3216,13 +3397,12 @@ msgstr "képpont" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          A funkció használatához kapcsolja be az Egér->Egyéb->Fájlok aláhúzása opciót a profil beállításaiban

          " +"font-weight:600;\">Egér->Egyéb->Fájlok aláhúzása opciót a profil " +"beállításaiban

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3260,64 +3440,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Bélyegkép-generálás bekapcsolása" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Méret: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Biztosan be szeretne illeszteni %1 karaktert?" msgstr[1] "Biztosan be szeretne illeszteni %1 karaktert?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Beillesztés megerősítése" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "End Of Text/Megszakítás: kiléphet az aktuális folyamatból" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "End of Transmission: kiléphet az aktuális folyamatból" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Csengő: megkísérel kiadni egy hallható figyelmeztetést" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: felfüggeszti a kimenetet" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitute/Suspend: felfüggeszheti az aktuális folyamatot" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: a terminál állapotának manipulálására szolgál" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "File Separator/Quit: megszakíthatja az aktuális folyamatot" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3326,31 +3506,31 @@ msgstr "" "A beilleszteni kívánt szöveg rejtett vezérlőkaraktereket tartalmaz, szeretné " "kiszűrni azokat?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Beillesztés megerősítése" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Beillesztés vezérlőkarakteren &nélkül" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Minden &beillesztése" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" -msgstr "&Mégsem" +msgstr "&Mégse" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
          fel lett függesztve a Ctrl+S megnyomásával. A folytatáshoz nyomja meg " "a Ctrl+Q-t.
          " -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Ez a terminál csak." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Mappa váltá&sa erre" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Hely bei&llesztése" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Nézetfelezés" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Nézetfelezés függőlegesen" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Nézetfelezés vízszintesen" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Automatikus nézetfelezés" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Nézetfelezés függőlegesen a következő laptól" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Nézetfelezés vízszintesen a következő laptól" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Automatikus nézetfelezés a következő laptól" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Új lap betöltése 2x2-es terminálelrendezéssel" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Új lap betöltése 2x1-es terminálelrendezéssel" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Új lap betöltése 1x2-es terminálelrendezéssel" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Nézet kiterjesztése" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Nézet leszűkítése" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Aktuális &nézet kiemelése külön ablakba" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Aktuális lap ki&emelése külön ablakba" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Következő lap" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Előző lap" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fókusz a felső terminálra" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fókusz az alsó terminálra" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fókusz a bal oldali terminálra" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fókusz a jobb oldali terminálra" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fókusz a bal oldali terminálra" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fókusz az alsó terminálra" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Váltás az utolsó lapra" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Legutoljára használt lapok" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Váltás két lap között" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Legutoljára használt lapok (visszafelé)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Aktuális nézet maximalizálása be-ki" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Aktuális nézet maximalizálása be-ki" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Aktuális nézet nagyítása-maximalizálása be-ki" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Aktuális nézet nagyítása-maximalizálása be-ki" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Lap mozgatása jobbra" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Lap mozgatása balra" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Szemantikai integráció telepítése (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Szemantikai tippek megjelenítése be-ki" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Sorszámok megjelenítése be-ki" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Egyenlő méret minden nézetben" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Váltás erre a lapra: %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Szemantikai tippek " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Sorszámok" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Lapelrendezés mentése" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole nézetelrendezés (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3618,7 +3814,7 @@ msgstr "" "Hiba történt az elrendezés mentésekor.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3628,13 +3824,13 @@ msgstr "" "Hiba történt az elrendezés betöltésekor.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Lapelrendezés betöltése" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3732,28 +3928,40 @@ msgstr "Ala&pértelmezett kódolás:" msgid "Shortcut for peeking the primary screen:" msgstr "Gyorsbillentyű az elsődleges képernyőbe tekintéshez:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Automatikus mentések időköze:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Sorszámok:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Soha" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "&URL-tippek megjelenítésekor" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3789,7 +3997,7 @@ msgstr "A kijelölt színséma szerkesztése" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3845,6 +4053,9 @@ msgstr "Intenzív színű félkövér betűk rajzolása" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "A kiválasztott betűkészlet használata a sorjelekhez a beépített kód helyett" @@ -3852,6 +4063,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "A betűkészlet sorjeleinek használata" @@ -3972,29 +4186,45 @@ msgid "Make the cursor blink regularly" msgstr "Villogó kurzor" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Bekapcsolva" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktiválás:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Villogó kurzor" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Egyéb" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Ablak:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4004,144 +4234,144 @@ msgstr "" "x sor)" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Javasolt terminálméret megjelenítése átméretezés után" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Mindig invertálja a kiválasztott szöveg színét" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Sötétítés erőssége:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Szín:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "A szegély kirajzolásához használt szín" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Inaktív terminálok:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Aktív terminálok:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Termináltartalom" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Sorköz:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "A két sor közötti képpontok száma" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " képpont" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margók:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Igazítás középre:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "A színek elhalványításával jelzi, hogy az ablak aktív-e" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Sötétítés" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Keret rajzolásával jelzi, hogy az ablak aktív-e" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Szegély" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Függőleges vonal ebben az oszlopban:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Komplex szövegelrendezés

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Komplex szövegelrendezés" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Szó módú szövegmegjelenítés bekapcsolása" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Szó mód" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4151,43 +4381,43 @@ msgstr "" "attribútumváltozások megtörik a szót rendereléskor)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Ugyanazon attribútumok használata a teljes szóra" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "ASCII karakterekből álló szavak együttes megjelenítése" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII karakterek" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Bráhmi írásrendszerek karaktereiből álló szavak együttes megjelenítése" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Bráhmi írásrendszerek karakterei" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emodzsi-betűkészlet:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4197,13 +4427,13 @@ msgstr "" "héber nyelveknél)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Kétirányú szövegmegjelenítés" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4211,83 +4441,83 @@ msgstr "" "meghatározottak" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "LTR sorirány kényszerítése" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Táblázatrajzoló karakterek kezelése erős LTR-ként." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "A táblázatkarakterfek felülírják a kétirányú módot" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "A problémás karakterek szélességének figyelmen kívül hagyása" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Wcwidth felülírása" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profil szerkesztése" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Általános" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Lapok" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Megjelenés" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Görgetés" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Billentyűzet" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Billentyűparancsok" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Egér" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Speciális" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4299,48 +4529,55 @@ msgstr "" "%1.Vagy módosítsa a fájl jogosultságait, vagy adjon másik " "nevet a beállítások mentéséhez egy új profilba." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "A profilnév üres; adjon meg egy nevet a beállítások mentéséhez." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Már létezik „%1” nevű profil." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "A profilnév hossza meghaladja a megengedett maximumot (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "A kiemelt karakterek nem használhatók profilnevekben: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Profil szerkesztése: %2" msgstr[1] "%1 profil szerkesztése: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Új profil létrehozása" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Profil szerkesztése - „%1”" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Nincs" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4350,7 +4587,7 @@ msgid_plural " columns" msgstr[0] " oszlop" msgstr[1] "oszlop" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4360,42 +4597,42 @@ msgid_plural " rows" msgstr[0] " sor" msgstr[1] " sor" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Rendszercsengő" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Rendszerüzenetek" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Vizuális csengő" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Csengő események mellőzése" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Alapértelmezett profil új munkamenetekhez a(z) %1 alkalmazásban" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Környezeti változók" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Egy környezeti változó soronként" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4403,23 +4640,23 @@ msgid_plural " seconds" msgstr[0] " másodperc" msgstr[1] " másodperc" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Kezdőmappa" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Új letöltése…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "A(z) %1 séma betöltése sikertelen." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4428,7 +4665,7 @@ msgstr "" "Ez a színséma átlátszó hátteret használ, melyet azonban a gép grafikus " "alrendszere nem támogat." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4437,12 +4674,12 @@ msgstr "" "A Konsole az asztali effektusok bekapcsolása előtt lett indítva. Újra kell " "indítania a Konsole-t, hogy lássa az átlátszó hátteret." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Alapértelmezés fájltípushoz" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4469,7 +4706,7 @@ msgstr "" "Ha a PATH vagy SOR nincs benne a parancsban, ez a beállítás mellőzve lesz,\n" "és a fájlt az alapértelmezett szövegszerkesztő nyitja meg." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Szövegszerkesztő egyéni parancs" @@ -4558,26 +4795,54 @@ msgstr "Kezdőmappa kiválasztása" msgid "Start in same directory as current session" msgstr "Indulás abban a könyvtárban, ahol az aktuális munkamenet" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Indulás abban a könyvtárban, ahol az aktuális munkamenet" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Környezet:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "A környezeti változók neveinek és értékeinek szerkesztése" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Kezdeti terminálmé&ret:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4590,31 +4855,31 @@ msgstr "" "bejegyzésekhez, hogy működjön.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Terminálcsengő mód:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Szemantikai integráció" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Fel/le nyilak emulációja" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr " Az egérkattintás a beviteli sorban mozgatja a kurzort" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Szemantikai tippek:" @@ -4624,9 +4889,9 @@ msgstr "Szemantikai tippek:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4637,9 +4902,9 @@ msgstr "Soha" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4650,34 +4915,34 @@ msgstr "URL-tippek megjelenítésekor" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Mindig" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Vörös hibasávok:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Vörös hibaháttér:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Váltakozó sávok:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Váltakozó háttér:" @@ -5037,115 +5302,127 @@ msgid "Scrollback:" msgstr "Pufferelés:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Page Up/Down görgetés:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "A nézetbe belépő sorok kiemelése" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Rejtett" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Az egyes jelölések mérete (a görgetősáv hosszának százalékában):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Kiemelés:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Az oldal görgetése az ablak magasságának felével" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Fél képern&yőmagasság" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "A görgetősávjelzők színe:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "A görgetősávkeresés-kiemelő sorainak színe:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Sorok újrarendezése:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Az oldal görgetése az ablak teljes magasságával" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "T&eljes képernyőmagasság" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Gördítősáv helye:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "A gördítősáv a terminálablak jobb oldalán legyen" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "&Jobb oldal" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "A gördítősáv a terminálablak bal oldalán legyen" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Bal oldal" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Rejtett" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Kiemelés:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "A nézetbe belépő sorok kiemelése" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Sorok újrarendezése:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Sorok újrarendezése a terminál átméretezésekor" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "A görgetősávjelzők színe:" +msgid "Scrollbar position:" +msgstr "Gördítősáv helye:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Az egyes jelölések mérete (a görgetősáv hosszának százalékában):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Kereséskiemelő vonal átlátszatlansága:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5251,37 +5528,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nincs" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Keresés…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Itt adja meg a keresendő szöveget" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Következő" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "A kifejezés következő előfordulásának keresése" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Előző" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5289,77 +5566,77 @@ msgstr "A kifejezés előző előfordulásának keresése" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "A beállítások menü megjelenítése" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "A keresősáv bezárása" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Kis- és nagybetűk megkülönböztetése" +msgstr "Nagybetűk megkülönböztetése" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Beállítja, hogy a keresés kis- és nagybetűérzékeny legyen-e" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "A beállítások menü megjelenítése" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "A keresősáv bezárása" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Reguláris kifejezés illeszkedése" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Összes találat kiemelése" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Beállítja, hogy ki legyenek-e emelve a találati szövegek" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Keresés visszafelé" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Beállítja, hogy a keresés lentről induljon-e" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Nincs újrakezdés" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Beállítja, hogy a keresés megálljon-e, ahelyett, hogy újrakezdődne" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "A jelenlegi keresési kifejezés keresése lentről" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5370,7 +5647,7 @@ msgstr "A jelenlegi keresési kifejezés keresése fentről" msgid "Print Shell" msgstr "Terminál nyomtatása" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5410,6 +5687,13 @@ msgstr "Normál lap névformátuma" msgid "Tab Co&lor:" msgstr "L&apszín:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "L&apszín:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5503,36 +5787,58 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Visszaállítja a terminált" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Megnyit egy új lapot" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Lapok keresése" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Bezárja ezt a lapot" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Lap le&választása" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Lap &beállítása vagy átnevezése…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Lap bezárása" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "A sendText/runCommand D-Bus metódusokat most használták. Biztonsági " +#~ "aggályok merültek fel azzal kapcsolatban, hogy ezek a metódusok " +#~ "publikusak legyenek-e. Ha szükséges, ezek a a Konsole újrafordításával " +#~ "csak belső használatra módosíthatók.

          Ez figyelmeztetés csak egyszer " +#~ "jelenik meg ebben a Konsole példányban.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Kis- és nagybetűk megkülönböztetése" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Nincs" diff --git a/local/recipes/kde/konsole/source/po/ia/konsole.po b/local/recipes/kde/konsole/source/po/ia/konsole.po index 7d41d9be52..dbd50e82b3 100644 --- a/local/recipes/kde/konsole/source/po/ia/konsole.po +++ b/local/recipes/kde/konsole/source/po/ia/konsole.po @@ -1,14 +1,14 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# SPDX-FileCopyrightText: 2010, 2011, 2012, 2013, 2014, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 g.sora -# giovanni , 2023, 2024. +# SPDX-FileCopyrightText: 2010, 2011, 2012, 2013, 2014, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 g.sora +# giovanni , 2023, 2024, 2026. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-18 12:26+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-04-06 18:59+0200\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" "Language: ia\n" @@ -50,7 +50,7 @@ msgstr "Vide" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Scinde Vista" @@ -86,7 +86,7 @@ msgid "S&crollback" msgstr "&Retro rola" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra de instrumento de session" @@ -173,47 +173,60 @@ msgstr "Cela le barra de menu, ultrapassante le preferentia predefinite" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Monstra omne barras de scheda, ultrapassante le preferentia predefinite" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Cela omne barras de scheda, ultrapassante le preferentia predefinite" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Monstra la barra de scheda, ultrapassante le preferentia predefinite" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Cela la barra de scheda, ultrapassante le preferentia predefinite" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Starta Konsole de modo a schermo plen" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Dishabilita fundos transparente, anque si le systema supporta los." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Lista le profilos disponibile" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Lista omne le nomines de proprietates de profilo e lor typo (de usar con -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Cambia le valor de un proprietate de profilo." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -223,7 +236,7 @@ msgstr "" "Commando de executar. Iste option capturara tote le sequente argumentos, " "assi tu usa lo como ultime option." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -233,13 +246,13 @@ msgstr "" "Fortia le re-usar le instantia existente anque si illo rumpe le " "functionalitate, p.ex. --new-tab. Principalmente per debugging." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumentos passate al commando" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -257,157 +270,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Prime Plano" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fundo" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Prime Plano (Intense)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fundo (Intense)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Color 1 (Intense)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Color 2 (Intense)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Color 3 (Intense)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Color 4 (Intense)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Color 5 (Intense)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Color 6 (Intense)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Color 7 (Intense)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Color 8 (Intense)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Prime Plano (Debile)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fundo (Debile)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Color 1 (Debile)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Color 2 (Debile)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Color 3 (Debile)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Color 4 (Debile)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Color 5 (Debile)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Color 6 (Debile)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Color 7 (Debile)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Color 8 (Debile)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -663,6 +676,40 @@ msgstr "Culmine" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Hospite" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Supporto de Container (Contenitor) non es disponibile quandoKonsole es " +"executabile intra Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [Default]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Instrumentario (Cassetta de instrumentos)" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -708,7 +755,7 @@ msgstr "" msgid "Copy Location" msgstr "Copia location" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generante Miniatura" @@ -739,13 +786,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Selectiona le Font" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Monstra omne fonts" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -786,17 +833,17 @@ msgstr "Combination de Clave" msgid "Output" msgstr "Exito" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nove Lista Ligante de Clave" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Modifica Lista Ligante de Clave" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -806,7 +853,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -840,225 +887,225 @@ msgstr "Ingresso:" msgid "Output:" msgstr "Egresso:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator de Terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022 , Le disveloppatores de Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Mantenitor general, Fixationes de bug e melioramentos general" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Previe mantenitor, portate a KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autor original" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Mantenitor general, correctiones de bug e melioramentos major" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Fixationes de bug e melioramentos general" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Correctiones de bug e melioramentos major" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Melioramentos General" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Fixationes de bug" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Supporto de Solaris e historia" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Fixationes de bug e meliorate prestationes de initio" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Marcar melioramentos" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1068,13 +1115,13 @@ msgstr "" "Konsole Interne\n" "Barra de instrumento e nomines de session" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1084,25 +1131,25 @@ msgstr "" "Konsole Interne\n" "Melioramentos General" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Effectos Visual" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1112,132 +1159,132 @@ msgstr "" "Codice ex le projecto kvt\n" "Melioramentos General" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Melioramentos de Schema e selection de texto" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Porto a SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Porto a FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M.Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Gratias a multe alteres.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nove scheda" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Cona scheda" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nove &Fenestra" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Claude Fenestra" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Marcatores de li&bro" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Schema de Color de Fenestra" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gere profilos..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activa menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Salveguarda disposition de scheda..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Carga disposition de scheda..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1247,67 +1294,67 @@ msgstr[0] "" "Il ha un processo executante in iste fenestra. Ancora tu vole quitar?" msgstr[1] "Tu ha %1 schedas in le fenestra, tu es secur que tu vole quitar?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirma Clausura" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Claude &Fenestra" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Claude &Scheda Currente" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Il ha %1 terminales aperite in iste fenestra. Ancora tu vole quitar?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profilos" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "General" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memoria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barra de Scheda / Splitters" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Files temporanee" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturas" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1391,7 +1438,7 @@ msgstr "Salveguarda" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualisa" @@ -1403,29 +1450,29 @@ msgid "Cancel" msgstr "Cancella" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Commandos rapide" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Monstra Accesso Rapide" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Necun commandos rapide trovate. Tu pote adder un sur Plugins - Commandos " "rapide" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Plugins - Commandos rapide" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Monstra Commandos Rapide" @@ -1467,7 +1514,7 @@ msgstr "" "con multiple configurationes, tu es secur?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Tu es preste per remover le dossier %1, tu es secur?" @@ -1520,11 +1567,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 es un dossier per entratas de SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configura SSH" @@ -1589,24 +1636,24 @@ msgstr "" "sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Clave SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Dele" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Non modifica" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1615,70 +1662,70 @@ msgstr "" "Tu es preste per remover le dossier %1,\n" "con multiple configurationes de SSH, tu es secur?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Dele configurationes de SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "Importava Profilo de SSH
          Alcun preferentias es de sol lectura." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Nomine de Hospite mancante" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Nomine mancante" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Si Use Ssh Config (Usa config de Ssh) es fixate, non specifica sshkey o " "nomine de usator." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Al minus Nomine de usator o SSHKey (Clave de SSH) debe esser fixate" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Dossier mancante" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Un session de SSH debe haber un profilo" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Non pote deler iste dossier" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Dele dossier e omne su contentos" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Duple clicca pro modificar le nomine de dossier." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Non pote deler un entrata addite automaticamente." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Dele entrata selectionate" @@ -1813,7 +1860,7 @@ msgstr "Dossier" #, kde-format msgid "For organizational purposes, this entry will be inside of this folder." msgstr "" -"Per intentiones de organisation, iste entrata essara intra iste dossier." +"Per intentiones de organisation, iste entrata essera intra iste dossier." #. i18n: ectx: property (text), widget (QLabel, label_5) #: plugins/SSHManager/sshwidget.ui:220 @@ -1871,25 +1918,25 @@ msgstr "Optiones de exito" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Modo de impression &amic (Texto nigre sin fundo)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Scalar exito" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Includite" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Profilo predefinite" @@ -1948,17 +1995,41 @@ msgstr "Duple clicca pro modificar via breve" msgid "Tab Properties" msgstr "Proprietates de scheda" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Salveguarda resultato de egresso ex %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 es un invalide URL, le resultato de egresso non pote esser salvate." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Falleva a crear file de salveguardar automatic a %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Stoppante salveguardar automatic debite a commutar de schermos." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"File de salveguardar automatic ha essite modificate externemente, impediente " +"ulterior salvamentos automatic." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Falleva a actualisar le stato de salveguardar automatic sur cambios de exito." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1994,81 +2065,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastellos Obscur" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verde sur nigre" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Colores de Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rubie sur Nigre" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Al sol" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Al luce del sol (Solarized Light)" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanco sur Nigre" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Predefinite (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "console de Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "console de Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Cerca..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Inserta hic un nomine de scheda a cercar " + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Campana in '%1' (Session '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Il non pote trovar binari:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Aviso: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Il non pote trovar un shell interactive de initiar." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2077,337 +2165,339 @@ msgstr "" "Il non pote trovar '%1', in vice il initiava '%2'. Pro favor tu verifica tu " "preferentias de profilo." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Il non pote initiar programma '%1' con argumentos '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silentio in '%1' (Session '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Monstra Session" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" -"Le methodos de D-Bus sendText/runCommand esseva apena usate. Il ha " -"anxietate de securitate sur permitter que iste methods es public. Si " -"desirate, iste methodos pote esser modificate a uso interne per recompilar " -"Konsole

          Iste aviso essera monstrate solmente un vice per iste instantia " -"de Konsole.

          " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Terminate" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programma '%1' ruinava." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programma '%1' habeva exite con status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progresso de ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activitate in '%1' (Session '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "DBus API sensibile a securitate es dishabilitate in le preferentias." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Le processo '%1' ha terminate executante in session '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole non sape como aperir le marcator de libro:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Cerca de '%1' con" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configura vias breve de Web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Claude Session" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Aperi Gerente de File" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copia" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Scinde vista a Sinistra/Dextera" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Scinde le vista a Culmine/Basso" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copia excepte prompts" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copia ingresso de usator" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copia exito de commando" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Colla Selection" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Cerca de Web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Selectiona omne" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Selectiona &Modo" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Selectiona &Linea" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "S&alva resultato de egresso como ..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Salveguarda automaticamente exito como ..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Stoppa Dalveguardar Atomatic" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Im&prime schermo..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Adjusta retro rolo ..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Netta retro rolo" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Netta retro rolo e re-Initia" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Proxime profilo" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Previe profilo" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Commuta profilo" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Fixa codifica" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permitte traciar de mus" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Solmente de lectura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configura o Renomina Scheda..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Omne sched&as in le fenestra currente" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Selectiona scheda ..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Necun" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copia ingresso a" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem incargante ..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Monitores de un singule vice (One-Shot)" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Monitor pro facer le &Prompt" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitor pro &Activitate" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitor pro &Silentio" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitor pro terminar processo" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Allarga Font (Allarga dimension de litteras)" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Restringe Font (Restringe dimension de litteras)" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Refixa Grandor de Font" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Invia signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspende carga" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continua carga" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Appende" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrumpe carga" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Termina carga" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Kill (termina) carga" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Signal de usator &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Signal de usator &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Crea Nove profilo..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Modifica profilo currente..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2416,7 +2506,7 @@ msgstr "" "Un programma ex executante in iste session. Tu es secur que tu vole clauder " "lo?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2425,18 +2515,18 @@ msgstr "" "Le programma '%1' es currentemente executante in iste session. Tu es secur " "que tu vole clauder lo?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirma Clausura" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Claude Programma" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2445,37 +2535,37 @@ msgstr "" "Un programma in iste session non volerea morir. Tu es secur que tu vole " "occider lo per fortia?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Le programma '%1' in iste session non volerea morir. Tu es secur que tu vole " "occider lo per fortia?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Terminaq (Kill) programma" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Le prompt de shell es monstrate in session '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Aperi dossier currente con" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Salva le discargamento de ZModem a ..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2486,14 +2576,14 @@ msgstr "" "non ha disponibilitate de software de ZModem super iste systema.

          Tu " "pote desirar de installar le pacchetto 'rzsz' o 'lrzsz'.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" "

          le currente session ja ha un transferimento de file ZModem in action.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2502,7 +2592,7 @@ msgstr "" "

          Nulle software disponibile de ZModem ha trovate in iste systema.

          " "Tu pote voler installar le pacchetto 'rzsz' o 'lrzsz'.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Selige files pro incargar de ZModem" @@ -2525,77 +2615,74 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configura" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Cerca:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Habilita acceleratores de menu" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Si habilitate, preferentias de profilo essera ignorate" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Rememora grandor de fenestra" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Monstra titulo de fenestra sur le barra de titulo" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" -"Activa le foco sur terminales quando le punctator de mus es movite sur illos" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Cerca de correspondentia usante expressiones regular" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Quando on lancea Konsole reusara le processo existente si possibile" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Executa omne fenestras de Konsole in un singule processo" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Evidentia omne coincidentias" +msgid "If enabled, profile settings will be ignored" +msgstr "Si habilitate, preferentias de profilo essera ignorate" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "Rememora grandor de fenestra" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, kde-format +msgid "Force new tabs" +msgstr "Fortia nove schedas" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "Ascolta per codices de terminal de ZModem" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "Monstra progresso in barra de cargas" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "Notificationes:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "Fixa si le cerca deberea initiar ab le fin" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "Cerca retro" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, kde-format msgid "Sets whether the search is case sensitive" msgstr "" @@ -2603,69 +2690,98 @@ msgstr "" "minusculas" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, kde-format msgid "Case sensitive" msgstr "Sensibile al differentia inter majusculas e minusculas" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "Remove barra de titulo de fenestra e quadro" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "Processo e fenestra:" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 #, kde-format -msgid "Notifications:" -msgstr "Notificationes:" +msgid "Highlight all matches" +msgstr "Evidentia omne coincidentias" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 #, kde-format -msgid "All dialogs will be shown again" -msgstr "Omne dialogos essera monstrate de novo" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Habilita omne messages de \"Non demanda de novo\"" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "Fixa si le cerca deberea initiar ab le fin" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "Cerca retro" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Cerca:" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Assigna si le cerca deberea stoppar in loco de inveloppar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Non inveloppa" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Habilita acceleratores de menu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" +"Activa le foco sur terminales quando le punctator de mus es movite sur illos" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Omne dialogos essera monstrate de novo" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Habilita omne messages de \"Non demanda de novo\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Monstra titulo de fenestra sur le barra de titulo" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Habilita le partes sensibile a securitate del DBus API" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Remove barra de titulo de fenestra e quadro" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Cerca de correspondentia usante expressiones regular" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2692,72 +2808,114 @@ msgstr "Salveguarda grandor de fenestra currente le proxime initio" msgid "The window size will be saved upon exiting Konsole" msgstr "Le grandor de fenestra essera salveguardate quando on abandona Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Quando on lancea Konsole crea un nove scheda in loco de crear un nove " +"fenestra si possibile" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Monstra progresso in barra de cargas" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Quando un script reporta su progresso, illo essera monstrate in le barra de " +"cargas" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "runCommand simile a DBus API essera habilitate" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Ascolta codices de terminal de ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Inviar/Reciper files automaticamente sur connexiones serial" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Largessa de miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Fixa le largessa del miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Usa Shift per monstrar un miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Usa Alt per monstrar un miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Usa Ctrl per monstrar un miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "" "Si le recerca es sensibile al differentia inter majusculas e minusculas" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Evidentia omne cerca de coincidentias" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Il fixa si le texto correspondente debe esser evidentiate" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Cerca haltos in loco de inveloppar" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Controla si cgroups de filio ws create per schedas individual" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2766,94 +2924,102 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controla le visibilitate del integre barra de scheda" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controla le grandor de manear inter pannellos" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controla le position del barra de scheda" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controla le stilo visual del barra de scheda" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" "Usa un file .css personalisate per le usator pro le barra de tabulation." #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Le file .css de usar pro le stilo de barra de tabulation" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permitte pulsar in le medie sur le schedas aperite pro clauder los" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" "Controla le visibilitate del button de \"Nove Scheda\" sur le barra de " "scheda" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Controla le visibilitate del button de \"Cerca Schedas\" sur le barra de " +"scheda" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controla ubi le button de \"Claude scheda\" essera monstrate" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controla ubi poner le nove scheda" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Expande le largessa de scheda" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Pro files de retrorolar, usa le location de dossier de toto le systema" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Pro files de retro rolar,usa le location specific del usator" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Pro files de retro rolar, usa le location de dossier specificate" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Pro files de retrorolar, usa iste dossier" @@ -2865,33 +3031,30 @@ msgid "Enable memory monitoring:" msgstr "Habilita Controlante de Memoria" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" -"Modificationes habera effecto quando on restarta. Si habilitate, consumo\n" -"de memoria sustenite per Konsole excedente le valor specificate causara\n" -"que systemd-doom eliminara le scheda(s) continente le processo(s) con \n" -"requestas de memoria intensive.\n" -"Nota: habilitar pote causar relantamentos plus grande durante le consumo\n" -"de memoria elevate e specificar valores excessivemente basse pote anque\n" -"causar que Konsole es occidite. " +"Modificationes habera effecto quando on restarta. Si habilitate, consumode " +"memoria sustenite per Konsole excedente le valor specificate causaraque " +"systemd-oomd eliminara le scheda(s) continente le processo(s) conrequestas " +"de memoria intensive. Nota: habilitar pote causar relantamentos plus grande " +"durante le consumo de memoria elevate e specificar valores excessivemente " +"basse pote anque causar que Konsole es occidite. " #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Limite de memoria:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3053,125 +3216,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Necun" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Monstra button de Cerca Schedas:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Jammais" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Miscellanea:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Monstra button de 'Nove scheda'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Expande Largessas de scheda individual a fenestra plen" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Usa le folio de stylo definite per le usator:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(necun)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportamento" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Pone nove schedas:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Al &fin" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Pos&tea scheda currente" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Claude scheda sur le pulsar in le medio" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Fissuras" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Monstra capite:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Quando necessita" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Jammais" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Trahe grandor de maneator:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Parve" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Medie" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grande (Large)" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3223,13 +3404,12 @@ msgstr "px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" "

          Per usar iste characteristica, habilita Mus->Miscellanee->Sublinea files in tu preferentias de profilo

          " +"font-weight:600;\">Mus->Miscellanee->Sublinea files in tu " +"preferentias de profilo

          " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3267,64 +3447,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Habilita generation de miniaturas" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Dimension: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Tu es secur que tu vole collar %1 character?" msgstr[1] "Tu es secur que tu vole collar %1 characteres?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirma Collar" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Fin de Texto/Interrumper: pote exir le processo currente" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Fin de Transmission: pote exir le processo currente" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Campana: essayara emitter un aviso audibile" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "RetroSpatio" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Dispositivo Controlo Tres/XOFF: suspende exito" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitue/Suspende: pote suspender processo currente" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escappar: usate per manipular stato de terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Separator de file/Quit: pote abortar le processo currente" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3333,31 +3513,31 @@ msgstr "" "Le texto que tu es essayante a collar contine chracteres de controlo celate, " "Tu vole excluder los?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirma Collar" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Colla &sin controlar characteres" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Colla &Toto" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Cancella" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspenditeper premer Ctrl+S. Tu pulsa Ctrl+Qpro resumer lo." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Iste terminal es de sol lectura." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Modifica un &Directorio in" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Colla &Location" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Scinde Vista" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Scinde vista a Sinistra/Dextera" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Scinde le vista a Culmine/Basso" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Scinde le vista automaticamente" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Scinde vista a Sinistra/Dextera ex proxime scheda" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Scinde le vista a Culmine/Basso ex proxime scheda" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Scinde le vista automaticamente ex proxime scheda" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Carga un nove scheda con terminales de disposition 2x2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Carga un nove scheda con terminales de disposition 1x2" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Carga un nove scheda con terminales de disposition 1x2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expande vista" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Restringe vista" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Distacca &Vista currente" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Dis&tacca scheda currente" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Proxime scheda" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Previe scheda" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Focus supra terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Focus a basso de terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Focalisa Terminal sinistre" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Focalisa terminal dextere" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Focalisa Proxime Terminal " + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Focus Previe Terminal" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Passa a ultime scheda" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Ultime schedas usate" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Commuta inter duo schedas" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Ultime shedas usate (Invertite)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Commuta maximisa vista currente" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Commuta maximisar vista currente" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Commuta zoom-maximisa vista currente" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Commuta zoom-maximisa vista currente" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Move scheda a dextera" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Move scheda a sinistra" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Integration semntic de configuration (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Commuta monstrator de suggestiones semantic" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Commuta monstrator de numeros de linea" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Grandor equal a omne vistas" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Passa a scheda %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Suggestiones Semantic" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Numeros de linea" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Salveguarda disposition de scheda" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole View Layout (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3625,7 +3817,7 @@ msgstr "" "Un problema occurreva durante que il salveguardava le disposition (Layout).\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3635,13 +3827,13 @@ msgstr "" "Un problema occurreva durante que il cargava le disposition (Layout).\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Carga disposition de scheda" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3740,28 +3932,40 @@ msgstr "Character pre&definite de codifica:" msgid "Shortcut for peeking the primary screen:" msgstr "Via breve per reguardar le schermo primari:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Assigna intervallo inter salvamentos automatic:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Numeros de linea:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nunquam" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Quando suggestiones de &URL se monstra" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3797,7 +4001,7 @@ msgstr "Edita le selectionate schema de color" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3851,6 +4055,9 @@ msgstr "Designa colores intense in font grasse" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Usa le font selectionate per characteres de linea in loco del codice " @@ -3859,8 +4066,11 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Usa characteres de line continite in font" +msgstr "Usa characteres de linea continite in font" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3979,29 +4189,43 @@ msgid "Make the cursor blink regularly" msgstr "Facer palpebrar regularmente le cursor" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Habilitate" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animation:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Facer animar lisiemente le cursor" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Miscellanea" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Fenestra:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4011,144 +4235,144 @@ msgstr "" "postea redimensionar" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Monstra intention per grandor de terminal postea redimensionar" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Sempre inverte le colores del texto selectionate" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Fortia de obscurar:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Color:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Selige le color usate pro designar le bordo" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminales inactive:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminales active:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Contentos de Terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Spatiar de linea:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Le numero de pixels inter duo lineas" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margines:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Alinea al centro :" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indica se le fenestra es avtive per obscurar le colores" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Obscura" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indica si le fenestra es active per designar un bordo" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Bordo" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Monstra linea vertical a columna:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "

          Disposition de Texto Complexe

          " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposition de Texto Complexe" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Habilita rendition (rendering) de texto de modo de parola" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Modo de parola" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4158,43 +4382,43 @@ msgstr "" "rupte quando render)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Usale mesme attributo per parola integre" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Rende parolas de characteres ASCII conjunctemente" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Characteres ASCII" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Rende parolas de characheres de scripts Brahmic conjunctemente" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Characteres de scriptos Brahmic" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Font de Emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4204,96 +4428,96 @@ msgstr "" "Arabic, Hebreo e Farsi)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Habilita rendition (rendering) de texto Bi-Directional" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" "Lineas es sempre LTR, plus tosto que determinate per le prime character forte" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "fortia direction de linea LTR" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tracta characteres de designar de tabula como LTR forte." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Modo BiDI de characteres de tabula supplanta" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignora wcwidth de characteres problematic" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Ultrapassa wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Edita profilo" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "General" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Schedas" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Apparentia" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rolar" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Claviero" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Ligamines Clave" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avantiate" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4305,7 +4529,7 @@ msgstr "" "filename>, O cambia le permissiones de ille file o fixa un nomine " "differente per salveguardar le preferentias a unnove profilo." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4313,42 +4537,47 @@ msgstr "" "Nomine de profilo esseva vacue: pro favor tu fixa un nomine per permitter " "salveguardar preferentias." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Un profilo con iste nomine \"%1\" ja existe." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Nomine de profilo excedeva le longitude maxime permittite (%1)" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Le characteres evigentiate es invalide innomines de profilo: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Edita profilo: %2" msgstr[1] "Edita %1 profilos: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Crea Nove profilo" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Edita profilo \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Necun" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4358,7 +4587,7 @@ msgid_plural " columns" msgstr[0] "columna" msgstr[1] "columnas" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4368,42 +4597,42 @@ msgid_plural " rows" msgstr[0] "Linea" msgstr[1] " Lineas" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Campana de systema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificationes de Systema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Campana visibile" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignora eventos de campana" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Profilo predefinite le nove sessiones de terminal in %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Edita ambiente" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Un variabile de ambiente per linea" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4411,23 +4640,23 @@ msgid_plural " seconds" msgstr[0] " secunda" msgstr[1] " secundas" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Selectiona directorio initial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Obtene Nove..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Schema %1 falleva a cargar." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4436,7 +4665,7 @@ msgstr "" "Iste schema de color usa un fundo de transparentia que il non appare esser " "supportate per tu scriptorio" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4445,12 +4674,12 @@ msgstr "" "Konsole esseva initiate ante que effectos de scriptorio esseva habilitate. " "Tu necessita de reinitiar Konsole pro vider fundos transparente." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Predefinite per typo de file" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4479,7 +4708,7 @@ msgstr "" "essera ignorate e le file essera aperite per le editor de texto\n" "predefinite." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Commando personalisate de editor de texto" @@ -4570,26 +4799,58 @@ msgstr "Selige le directorio initial" msgid "Start in same directory as current session" msgstr "Initia in le mesme directorio que le scheda currente" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Quando aperiente un nove scheda o split (area de division), inserta " +"automaticamente le mesme container (Instrumentario,Distrobox) comole session " +"currente" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Initia in le mesme container como session currente" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Sempre starta in contenitor (container):" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Sempre starta sessiones usante iste profilo intra le contenitor (container) " +"seligite" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ambiente:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Edita le lista de variabiles de ambiente e valores associate" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "G&randor initial de Terminal" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4602,31 +4863,31 @@ msgstr "" "dishabilitate pro iste entratas a travaliar.

          " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Modo de campana de &Terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Intergration Semantic" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulation de flechas in alto/a basso" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Click de mus in linea de ingresso move cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Suggestiones Semantic" @@ -4636,9 +4897,9 @@ msgstr "Suggestiones Semantic" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4649,9 +4910,9 @@ msgstr "Jammais" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4662,34 +4923,34 @@ msgstr "Quando suggestiones de URL se monstra" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barras de error rubie:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Fundo de error rubie:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barrar alternante:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Fundo alternante:" @@ -5048,116 +5309,128 @@ msgid "Scrollback:" msgstr "Retro rola:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Rola pagina a basso/in alto" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Evitentia le rangos que veni in vista" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Celate" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" +"Grandor de cata marcator (como un percentage de longessa del barra de rolar):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Evidentiar:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rola le pagina de medie altessa de fenestra" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Al&tessa de medie schermo" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Color de marcatores de barra de rolar:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Color de lineas de cercar a evidentiar de barra de rolar:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Reflue lineas:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rola le pagina de altessa complete de fenestra" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Altessa de sc&hermo plen" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Position de barra de rolar:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Monstra le barra de rolo a latere dextere del fenestra de terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Latere &dextere" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Monstra le barra de rolo a latere dextere del fenestra de terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Latere &sinistre" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Celate" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Evidentiar:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Evitentia le rangos que veni in vista" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Reflue lineas:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Reflue rangos quando le terminal redimensiona" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Color de marcatores de barra de rolar:" +msgid "Scrollbar position:" +msgstr "Position de barra de rolar:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" -"Grandor de cata marcator (como un percentage de longessa del barra de rolar):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Cerca opacitate de linea a evidentiar:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5214,7 +5487,7 @@ msgid "" "files." msgstr "" "Quando on usa iste option, le datos de retrorolar essera scribite non " -"cryptate in files temporanee. Illos files temporari essera delite " +"cryptate in files temporanee. Illos files temporanee essera delite " "automaticamente quando Konsole es claudite de modo normal.Usa " "Preferentias->Configura Konsole->Files Temporanee pro " "seliger le location del files temporanee." @@ -5263,37 +5536,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Necun" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Trova..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Inserta hic le texto que tu vole cercar " -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Proxime" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Trova le proxime correspondentia pro le currente phrase de recerca" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Previe" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5301,23 +5574,11 @@ msgstr "Trova le previe correspondentia pro le currente phrase de recerca" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Monstra le menu de optiones" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Claude le barra de recerca" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Sensibile al differentia inter majusculas e minusculas" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" @@ -5325,55 +5586,67 @@ msgstr "" "Il fixa si le recerca es sensibile al differentia inter majusculas e " "minusculas" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Monstra le menu de optiones" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Claude le barra de recerca" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Corresponde (cerca) expressiones regular" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Evidentia omne coincidentias" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Il fixa si le texto correspondente debe esser evidentiate" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Cerca de retro" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Fixa si le cerca deberea initiar ab le fin" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Non inveloppa" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Assigna si le cerca deberea stoppar in loco de inveloppar" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Cerca le currente phrase de recerca ab le fin" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5384,7 +5657,7 @@ msgstr "Cerca le currente phrase de recerca ab le initio" msgid "Print Shell" msgstr "Imprime shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5424,6 +5697,12 @@ msgstr "Formato de titulo de scheda normal" msgid "Tab Co&lor:" msgstr "Co&lor de scheda:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Color de scheda de &Activitate:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5517,36 +5796,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restabili terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Aperir un nove scheda" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Cerca Schedas" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Claude iste scheda" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Distacca Scheda" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configura o Renomina Scheda..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Claude scheda" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Instrumentario (Cassetta de instrumentos): %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

          This warning will only show once for this Konsole instance.

          " +#~ msgstr "" +#~ "Le methodos de D-Bus sendText/runCommand esseva apena usate. Il ha " +#~ "anxietate de securitate sur permitter que iste methods es public. Si " +#~ "desirate, iste methodos pote esser modificate a uso interne per " +#~ "recompilar Konsole

          Iste aviso essera monstrate solmente un vice per " +#~ "iste instantia de Konsole.

          " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Sensibile al differentia inter majusculas e minusculas" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Necun" diff --git a/local/recipes/kde/konsole/source/po/id/konsole.po b/local/recipes/kde/konsole/source/po/id/konsole.po index 2fe46f05df..de1f763ded 100644 --- a/local/recipes/kde/konsole/source/po/id/konsole.po +++ b/local/recipes/kde/konsole/source/po/id/konsole.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2022-09-27 18:12+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" @@ -53,7 +53,7 @@ msgstr "Tampilan" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Belahkan Tampilan" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "Per&guliran" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Bilah Alat Sesi" @@ -171,50 +171,66 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Sembunyikan bilah menu, menimpa pengaturan baku" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Tampilkan bilah tab, menimpa pengaturan baku" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Sembunyikan bilah tab, menimpa pengaturan baku" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Tampilkan bilah tab, menimpa pengaturan baku" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Sembunyikan bilah tab, menimpa pengaturan baku" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Jalankan Konsole dalam mode layar penuh" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Nonfungsikan latar belakang transparan, bahkan jika sistem mendukungnya." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Senarai profil yang tersedia" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Senarai semua nama properti profil dan tipenya (untuk digunakan dengan -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Ubah nilai sebuah properti profil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -224,7 +240,7 @@ msgstr "" "Perintah untuk mengeksekusi. Opsi ini akan menangkap semua argumen berikut, " "jadi gunakan ini sebagai opsi terakhir." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,13 +248,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumen diteruskan ke perintah" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -256,157 +272,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Latardepan" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Latarbelakang" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Warna 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Warna 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Warna 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Warna 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Warna 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Warna 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Warna 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Warna 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Latardepan (Intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Latarbelakang (Intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Warna 1 (Intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Warna 2 (Intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Warna 3 (Intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Warna 4 (Intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Warna 5 (Intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Warna 6 (Intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Warna 7 (Intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Warna 8 (Intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Latardepan (Redup)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Latarbelakang (Redup)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Warna 1 (Redup)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Warna 2 (Redup)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Warna 3 (Redup)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Warna 4 (Redup)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Warna 5 (Redup)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Warna 6 (Redup)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Warna 7 (Redup)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Warna 8 (Redup)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -659,6 +675,41 @@ msgstr "Atas" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Bawaan]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -702,7 +753,7 @@ msgstr "" msgid "Copy Location" msgstr "Salin Lokasi" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -733,13 +784,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Pilih font" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Tampilkan semua font" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -776,17 +827,17 @@ msgstr "Kombinasi Tuts" msgid "Output" msgstr "Output" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Senarai Pengikat Tuts Baru" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Edit Senarai Pengikat Tuts" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -794,7 +845,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -828,225 +879,225 @@ msgstr "Input:" msgid "Output:" msgstr "Output:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Pengelola umum, perbaikan bug dan peningkatan umum" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Pengelola sebelumnya, dipindahkan ke KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Penulis asli" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Faktor ulang besar, perbaikan kutu dan perbaikan besar" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Perbaikan bug dan peningkatan umum" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Perbaikan kutu dan perbaikan besar" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Peningkatan umum" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Perbaikan bug" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Dukungan Solaris dan histori" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Perbaikan bug dan peningkatan performa pemulaian" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Peningkatan penandaan" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1056,13 +1107,13 @@ msgstr "" "Konsole terbenam\n" "Bilah Alat dan nama sesi" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1072,25 +1123,25 @@ msgstr "" "Konsole terbenam\n" "Peningkatan umum" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efek visual" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1100,120 +1151,120 @@ msgstr "" "Kode dari projek kvt\n" "Peningkatan umum" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Skema dan peningkatan pemilihan teks" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI port" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD port" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Terima kasih kepada yang lainnya.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Tab &Baru" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klona Tab" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Jendela Baru" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Tutup Jendela" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Markah" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Skema Warna Jendela" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Atur Profil..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktifkan Menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Save tab layout to file" @@ -1221,13 +1272,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Simpan tata letak tab ke file" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1240,68 +1291,68 @@ msgstr[1] "" "Ada %1 proses yang berjalan di jendela ini. Apakah kamu masih ingin " "memberhentikan?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Konfirmasi Tutup" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Tutup &Jendela" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Tutup &Tab Saat Ini" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Ada %1 terminal terbuka dalam jendela ini. Apakah Anda masih ingin keluar?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profil" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Umum" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Bilah Tab / Pembelah" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "File Sementara" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Thumbnail" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1387,7 +1438,7 @@ msgstr "Simpan" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Perbarui" @@ -1399,29 +1450,29 @@ msgid "Cancel" msgstr "Batal" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Perintah Cepat" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, fuzzy, kde-format #| msgid "Show Quick Commands" msgid "Show Quick Access" msgstr "Tampilkan Perintah Cepat" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Quick Commands" msgid "Plugins - Quick Commands" msgstr "Perintah Cepat" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Tampilkan Perintah Cepat" @@ -1464,7 +1515,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1520,11 +1571,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Konfigurasi SSH" @@ -1584,96 +1635,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Kunci SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, fuzzy, kde-format #| msgid "Delete" msgctxt "@action:inmenu" msgid "Delete" msgstr "Hapus" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remove SSH Configurations" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Hapus Konfigurasi SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
          Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Klik ganda untuk mengubah nama folder." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Jangan tutup sesi awal secara otomatis ketika sesi berakhir." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Remove selected entry" msgid "Delete selected entry" @@ -1869,25 +1920,25 @@ msgstr "Opsi Output" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Mode &ramah pencetak (teks hitam, tanpa latar belakang)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skala output" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Profil baku" @@ -1947,17 +1998,38 @@ msgstr "Klik ganda untuk mengubah pintasan" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Simpan Output Dari %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 adalah URL yang tidak absah, output tidak dapat disimpan." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1993,81 +2065,102 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastel Gelap" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Hijau di Atas Hitam" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Warna Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Merah di Atas Hitam" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized Ringan" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Putih di Atas Hitam" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Baku (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Konsol Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Konsol Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Pencarian:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Masukkan teks untuk dicari dari sini" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Bel di '%1' (Sesi '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Tak dapat menemukan biner: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Peringatan: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Tak dapat menemukan sebuah shell interaktif untuk dijalankan." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2075,210 +2168,218 @@ msgid "" msgstr "" "Tak dapat menemukan '%1', memulai '%2'. Silakan cek pengaturan profil anda." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Tak dapat menjalankan program '%1' dengan argumen '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Diam di '%1' (Sesi '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Tutup Sesi" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Selesai" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program '%1' mogok." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program '%1' keluar dengan status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progres ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivitas di '%1' (Sesi '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole tidak tahu bagaimana cara untuk membuka markah: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Cari '%1' dengan" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Konfigurasikan Pintasan Web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Tutup Sesi" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Buka Pengelola File" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Salin" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Belahkan Tampilan Kiri/Kanan" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Belahkan Tampilan Atas/Bawah" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Salin Input" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Salin Input" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Seleksi Tempel" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Pencarian Web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Pilih Semua" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Pilih &Baris" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Pilih &Baris" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Simpan &Output Sebagai..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Simpan &Output Sebagai..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Cetak Layar..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Sesuaikan Perguliran..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Bersihkan Perguliran" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Bersihkan Perguliran dan Set ulang" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Edit Profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Tampilan Sebelumnya" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Ganti Profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Atur &Penyandian" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2286,134 +2387,134 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Hanya-baca" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Konfigurasikan atau Ubah Nama Tab..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Semua Tab di Jendela Saat Ini" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Ganti Nama Tab..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nihil" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Salin Input Ke" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Pengunggah &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Pemantau &Aktivitas" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Pemantau &Aktivitas" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Pemantau &Diam" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Pantauan untuk Penyelesaian Proses" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Besarkan Font" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Kecilkan Font" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Atur Ulang Ukuran Font" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Kirim Sinyal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspensi Tugas" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Lanjutkan Tugas" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Putus" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interupsi Tugas" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Hentikan Tugas" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Matikan Tugas" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Sinyal Pengguna &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Sinyal Pengguna &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Buat Profil Baru..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Edit Profil Saat Ini..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2422,7 +2523,7 @@ msgstr "" "Sebuah program saat ini berjalan di sesi ini. Apakah anda yakin ingin " "menutupnya?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2431,12 +2532,12 @@ msgstr "" "Program '%1' saat ini berjalan di sesi ini. Apakah anda yakin ingin " "menutupnya?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Konfirmasi Tutup" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Close Tab" @@ -2444,7 +2545,7 @@ msgctxt "@action:button" msgid "Close Program" msgstr "Tutup Tab" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2453,37 +2554,40 @@ msgstr "" "Sebuah program di sesi ini tidak akan mati. Apakah anda yakin ingin " "mematikannya secara paksa?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Program '%1' di sesi ini tidak akan mati. Apakah anda yakin ingin " "mematikannya secara paksa?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Simpan Unduhan ZModem ke..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2494,14 +2598,14 @@ msgstr "" "perangkat lunak ZModem yang ditemukan di sistem ini.

          Anda mungkin " "perlu menginstal paket 'rzsz' atau 'lrzsz'.

          " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " msgstr "" "

          Sesi saat ini telah memiliki transfer file ZModem yang berjalan.

          " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " @@ -2510,7 +2614,7 @@ msgstr "" "

          Tak ada perangkat lunak ZModem yang cocok yang ditemukan di sistem ini.

          Anda mungkin perlu menginstal paket 'rzsz' atau 'lrzsz'.

          " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Pilih File Untuk Unggahan ZModem" @@ -2533,145 +2637,172 @@ msgctxt "@title:window" msgid "Configure" msgstr "Konfigurasikan" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Pencarian:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Fungsikan akselerator menu" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Jika difungsikan, pengaturan profil akan diabaikan" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Ingat ukuran jendela" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Tampilkan judul jendela di bilah judul" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Fokus terminal ketika pointer mouse dipindahkan di atasnya" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Cocokkan dengan ekspresi reguler" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Jalankan semua jendela Konsole dalam satu proses" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Sorot semua kecocokan" +msgid "If enabled, profile settings will be ignored" +msgstr "Jika difungsikan, pengaturan profil akan diabaikan" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Atur apakah pencarian sensitif huruf" +msgid "Remember window size" +msgstr "Ingat ukuran jendela" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Sensitif huruf" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Tempatkan tab baru:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Hapus bilah judul dan kerangka" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Proses dan jendela:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notifikasi:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Semua dialog akan ditampilkan lagi" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Fungsikan semua pesan \"Jangan Tanya Lagi\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Atur apakah pencarian harus dimulai dari bawah" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Cari mundur" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Atur apakah pencarian sensitif huruf" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Sensitif huruf" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Proses dan jendela:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Sorot semua kecocokan" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Pencarian:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Atur apakah pencarian harus dimulai dari bawah" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Fungsikan akselerator menu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Fokus terminal ketika pointer mouse dipindahkan di atasnya" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Semua dialog akan ditampilkan lagi" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Fungsikan semua pesan \"Jangan Tanya Lagi\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Tampilkan judul jendela di bilah judul" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Hapus bilah judul dan kerangka" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Cocokkan dengan ekspresi reguler" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2697,71 +2828,109 @@ msgstr "Gunakan ukuran jendela saat ini pada pemulaian selanjutnya" msgid "The window size will be saved upon exiting Konsole" msgstr "Ukuran jendela akan disimpan ketika keluar Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Pencarian sensitif huruf" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Sorot semua kecocokan pencarian" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Atur apakah teks yang cocok harus disorot" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2769,91 +2938,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Kendali keterlihatan seluruh bilah tab" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Atur ukuran pegangan antara panel" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Kendali posisi bilah tab" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Kendali gaya visual bilah tab" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Gunakan file .css yang ditentukan pengguna untuk bilah tab" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "File .css untuk digunakan pada gaya bilah tab" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Atur visibilitas tombol 'Tab Baru' di bilah tab" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Atur visibilitas tombol 'Tab Baru' di bilah tab" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Kendali dimana meletakkan tab baru" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2866,26 +3042,24 @@ msgid "Enable memory monitoring:" msgstr "Pemantauan Tab" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3041,125 +3215,148 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nihil" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Tampilkan tombol Tutup Tab:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Selalu" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Tidak pernah" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Beraneka:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Tampilkan tombol 'Tab Baru'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Gunakan lembar gaya yang ditentukan pengguna:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(nihil)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Perilaku" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Tempatkan tab baru:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Setelah tab &saat ini" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Terpisah" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Tampilkan Tajuk:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Bila diperlukan" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Tidak pernah" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Kecil" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Sedang" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Besar" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3211,8 +3408,8 @@ msgstr "px" #, kde-format msgid "" "

          To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

          " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

          " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3251,95 +3448,95 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Aktifkan pembuatan thumbnail" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Ukuran: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Apakah kamu yakin ingin menempel %1 karakter?" msgstr[1] "Apakah kamu yakin ingin menempel %1 karakter?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Konfirmasi Tempel" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Konfirmasi Tempel" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Tempelkan &tanpa karakter kontrol" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Tempel semuanya" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Batal" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been disuspensi dengan menekan Ctrl+S. Tekan Ctrl" "+Q untuk melanjutkan." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Ubah &Direktori Ke" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Lokasi Tempel" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Belah Tampilan" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Belahkan Tampilan Kiri/Kanan" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Belahkan Tampilan Atas/Bawah" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3391,7 +3588,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Belahkan Tampilan Atas/Bawah" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3399,7 +3596,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Belahkan Tampilan Kiri/Kanan" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3407,7 +3604,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Belahkan Tampilan Atas/Bawah" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3415,187 +3612,203 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Belahkan Tampilan Atas/Bawah" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Bentangkan Tampilan" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Susutkan Tampilan" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Le&pas Tampilan Saat Ini" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "L&epas Tab Saat Ini" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Tab Selanjutnya" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Tab Sebelumnya" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fokus Di Atas Terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fokus Di Bawah Terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Above Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokus Di Atas Terminal" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokus Di Bawah Terminal" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Ganti ke Tab Terakhir" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Pindah tab ke kanan" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Pindah tab ke kiri" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Ganti ke Tab %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Interaksi Tetikus" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Jumlah baris yang tetap: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Save tab layout to file" @@ -3603,13 +3816,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Simpan tata letak tab ke file" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the Layout.\n" @@ -3622,7 +3835,7 @@ msgstr "" "Sebuah masalah terjadi ketika menyimpan Tataletak.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when loading the Layout.\n" @@ -3635,13 +3848,13 @@ msgstr "" "Sebuah masalah terjadi ketika memuat Tataletak.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3743,15 +3956,27 @@ msgstr "Penyandian karakter baku:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Jumlah baris yang tetap: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, fuzzy, kde-format #| msgid "&Never" msgctxt "Never" @@ -3759,14 +3984,14 @@ msgid "&Never" msgstr "Tida&k pernah" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -3804,7 +4029,7 @@ msgstr "Edit skema warna terpilih" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3859,12 +4084,18 @@ msgstr "Gambar warna intens dalam font tebal" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3984,29 +4215,45 @@ msgid "Make the cursor blink regularly" msgstr "Buat kursor berkedip secara teratur" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Fungsikan" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktivasi:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Buat kursor berkedip secara teratur" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Beraneka" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Window:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4016,25 +4263,25 @@ msgstr "" "mengubah ukuran" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Tampilkan petunjuk untuk ukuran terminal setelah mengubah ukuran" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "Cursor color options" #| msgid "Color:" @@ -4043,123 +4290,123 @@ msgid "Color:" msgstr "Warna:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Pilih warna yang digunakan untuk menggambar kursor" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" msgstr "Ukuran Terminal" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Active Terminals:" msgstr "Ukuran Terminal" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Konten Terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Penspasian baris:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Jumlah pixel di antara dua baris" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margin:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Pergelap" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

          Complex Text Layout

          " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Perenderan teks Dwi-Arah" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4167,45 +4414,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Match current character" msgid "Brahmic scripts characters" msgstr "Sesuaikan dengan karakter saat ini" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font:" msgid "Emoji Font:" msgstr "Font:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4215,37 +4462,37 @@ msgstr "" "Farsi atau Yahudi)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Perenderan teks Dwi-Arah" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Paste &without control characters" @@ -4253,59 +4500,59 @@ msgid "Ignore wcwidth of problematic characters" msgstr "Tempelkan &tanpa karakter kontrol" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Edit Profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Umum" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Tab" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Penampilan" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Menggulir" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Keyboard" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Pengikat tuts" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mouse" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Tingkat-lanjut" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4314,48 +4561,55 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Mengedit profil: %2" msgstr[1] "Mengedit profil %1: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Buat Profil Baru" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Edit Profil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Nihil" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgctxt "Suffix of the number of columns (N columns)" #| msgid " column" @@ -4368,7 +4622,7 @@ msgid_plural " columns" msgstr[0] " kolom" msgstr[1] " kolom" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4378,43 +4632,43 @@ msgid_plural " rows" msgstr[0] " baris" msgstr[1] " baris" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Bel Sistem" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notifikasi Sistem" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Bel visual" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Atur profil terpilih sebagai baku untuk sesi terminal baru" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Edit Lingkungan" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Satu variabel lingkungan per baris" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4422,23 +4676,23 @@ msgid_plural " seconds" msgstr[0] " detik" msgstr[1] " detik" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Pilih Direktori Awal" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Cari Baru..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4447,7 +4701,7 @@ msgstr "" "Skema warna ini menggunakan latar belakang transparan yang kelihatannya " "tidak didukung di desktop anda" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4456,13 +4710,13 @@ msgstr "" "Konsole dijalankan sebelum efek desktop difungsikan. Anda harus menjalankan " "ulang Konsole untuk dapat melihat latar belakang transparan." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Profil baku" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4479,7 +4733,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4571,27 +4825,55 @@ msgstr "Pilih direktori awal" msgid "Start in same directory as current session" msgstr "Mulai di direktori yang sama dengan tab saat ini" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Mulai di direktori yang sama dengan tab saat ini" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Lingkungan:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Edit senarai variabel lingkungan dan nilai terkait" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "Ukuran Terminal" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, fuzzy, kde-format #| msgid "" #| "Configure Konsole->General->Use current window size on next startup must " @@ -4606,7 +4888,7 @@ msgstr "" "berikutnya harus dinonfungsikan agar entri ini bekerja." #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4614,26 +4896,26 @@ msgid "&Terminal bell mode:" msgstr "Emulator terminal" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Interaksi Tetikus" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4643,9 +4925,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, fuzzy, kde-format #| msgctxt "@option:radio Never show the split header" #| msgid "Never" @@ -4658,9 +4940,9 @@ msgstr "Tidak pernah" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4671,9 +4953,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -4682,26 +4964,26 @@ msgid "Always" msgstr "Selalu" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Blur background" msgid "Red error background:" msgstr "Latarbelakang buram" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Blur background" msgid "Alternating background:" @@ -5076,53 +5358,95 @@ msgid "Scrollback:" msgstr "Perguliran:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Jumlah Gulir Halaman Atas/Bawah" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Tersembunyi" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Penyorotan:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Gulung halaman setengah tinggi jendela" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half screen height" msgid "Half screen heigh&t" msgstr "Tinggi Setengah Layar" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Gulung halaman setinggi penuh jendela" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full screen height" msgid "F&ull screen height" msgstr "Tinggi Penuh Layar" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Posisi bilah tab:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Tampilkan bilah gulir di sisi kanan jendela terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the right side" #| msgid "Right side" @@ -5131,13 +5455,13 @@ msgid "Ri&ght side" msgstr "Sisi kanan" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Tampilkan bilah gulir di sisi kiri jendela terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the left side" #| msgid "Left side" @@ -5145,53 +5469,23 @@ msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Sisi kiri" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Tersembunyi" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Penyorotan:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Posisi bilah tab:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5307,119 +5601,120 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nihil" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Temukan..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Masukkan teks untuk dicari dari sini" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Selanjutnya" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Temukan kecocokan selanjutnya untuk lema pencarian saat ini" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Sebelumnya" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Temukan kecocokan sebelumnya untuk lema pencarian saat ini" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Tampilkan menu opsi" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Tutup bilah pencarian" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Sensitif huruf" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Atur apakah pencarian sensitif huruf" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Tampilkan menu opsi" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Tutup bilah pencarian" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Kecocokan ekspresi reguler" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Sorot semua kecocokan" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Atur apakah teks yang cocok harus disorot" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, fuzzy, kde-format #| msgid "Search backwards" msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Cari mundur" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Atur apakah pencarian harus dimulai dari bawah" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Atur apakah pencarian harus dimulai dari bawah" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the bottom" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Cari untuk lema penelusuran saat ini dari bawah" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the top" msgctxt "@info:tooltip" @@ -5431,7 +5726,7 @@ msgstr "Cari untuk lema penelusuran saat ini dari atas" msgid "Print Shell" msgstr "Cetak Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5473,6 +5768,13 @@ msgstr "Format judul tab normal" msgid "Tab Co&lor:" msgstr "Warna Tab:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Color:" +msgid "&Activity Tab Color:" +msgstr "Warna Tab:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5571,37 +5873,49 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Tutup tab" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Buka tab baru" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Lepas Tab" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Tutup tab ini" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Lepas Tab" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Ganti Nama Tab..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Tutup Tab" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Sensitif huruf" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Nihil" diff --git a/local/recipes/kde/konsole/source/po/ie/konsole.po b/local/recipes/kde/konsole/source/po/ie/konsole.po index 227144be3b..680884235e 100644 --- a/local/recipes/kde/konsole/source/po/ie/konsole.po +++ b/local/recipes/kde/konsole/source/po/ie/konsole.po @@ -1,22 +1,21 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2024 This file is copyright: # This file is distributed under the same license as the konsole package. -# FIRST AUTHOR , YEAR. # +# SPDX-FileCopyrightText: 2024 OIS msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2022-10-28 16:51+0700\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2024-08-04 17:18+0700\n" "Last-Translator: OIS \n" -"Language-Team: Interlingue \n" +"Language-Team: Interlingue <>\n" "Language: ie\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.12\n" +"X-Generator: Lokalize 24.07.70\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -50,7 +49,7 @@ msgstr "Vise" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Fender li vise" @@ -86,62 +85,62 @@ msgid "S&crollback" msgstr "B&uffre" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Panel de session" #: Application.cpp:53 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "Name of profile to use for new Konsole instance" -msgstr "" +msgstr "Nómine" #: Application.cpp:54 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "json layoutfile to be loaded to use for new Konsole instance" -msgstr "" +msgstr "Konsole" #: Application.cpp:55 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "Use the built-in profile instead of the default profile" -msgstr "" +msgstr "Predefinit" #: Application.cpp:56 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "Set the initial working directory of the new tab or window to 'dir'" -msgstr "" +msgstr "Nov &fenestre" #: Application.cpp:57 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "Do not close the initial session automatically when it ends." -msgstr "" +msgstr "Confirmar clusion" #: Application.cpp:61 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "" "Create a new tab in an existing window rather than creating a new window " "('Run all Konsole windows in a single process' must be enabled)" -msgstr "" +msgstr "Lansat in un separat processu" #: Application.cpp:62 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "Create tabs as specified in given tabs configuration file" -msgstr "" +msgstr "File" #: Application.cpp:64 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "" "Start Konsole in the background and bring to the front when Ctrl+Shift+F12 " "(by default) is pressed" -msgstr "" +msgstr "Konsole" #: Application.cpp:65 #, kde-format @@ -153,89 +152,104 @@ msgstr "Lansat in un separat processu" #, fuzzy, kde-format msgctxt "@info:shell" msgid "Show the menubar, overriding the default setting" -msgstr "Monstrar li panel de _menú in nov terminales" +msgstr "Predefinit" #: Application.cpp:67 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" msgid "Hide the menubar, overriding the default setting" -msgstr "" +msgstr "Predefinit" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" -msgstr "" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Predefinit" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" -msgstr "" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Predefinit" #: Application.cpp:70 #, fuzzy, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" -msgstr "Lansar in li mode plen-ecran" +msgid "Show the tabbar, overriding the default setting" +msgstr "Predefinit" #: Application.cpp:71 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." -msgstr "" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Predefinit" #: Application.cpp:72 #, fuzzy, kde-format msgctxt "@info:shell" -msgid "List the available profiles" -msgstr "Liste de profiles" +msgid "Start Konsole in fullscreen mode" +msgstr "Konsole" #: Application.cpp:73 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:shell" -msgid "List all the profile properties names and their type (for use with -p)" -msgstr "" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "Notificationes del sistema" #: Application.cpp:74 +#, kde-format +msgctxt "@info:shell" +msgid "List the available profiles" +msgstr "Liste de disponibil profiles" + +#: Application.cpp:75 +#, fuzzy, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" +msgstr "OIS" + +#: Application.cpp:76 #, fuzzy, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." -msgstr "Ínvalid valore de proprietá" +msgstr "Konsole ne have un permission gardar di profil a %1" -#: Application.cpp:76 -#, kde-format +#: Application.cpp:78 +#, fuzzy, kde-format msgctxt "@info:shell" msgid "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." -msgstr "" +msgstr "Comande" -#: Application.cpp:79 -#, kde-format +#: Application.cpp:81 +#, fuzzy, kde-format msgctxt "@info:shell" msgid "" "Force re-using the existing instance even if it breaks functionality, e. g. " "--new-tab. Mostly for debugging." msgstr "" +"Alterar inter un barra de menú e un buton " +"hamburger. Amb optiones provide presc li sam comandes e " +"parametres de configuration." -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" -msgstr "Comande e li argumentes: %c" +msgstr "Comande:" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format msgctxt "@item" msgid "Toggle Background Window" -msgstr "(De)marcar" +msgstr "Selecter un image de funde" #: BookmarkHandler.cpp:107 #, fuzzy, kde-format msgctxt "@item:inmenu The user's name and host they are connected to via ssh" msgid "%1 on %2" -msgstr "%1 ex %2" +msgstr "Nigri sur clar yelb" #: BookmarkHandler.cpp:109 #, kde-format @@ -243,157 +257,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Avanplan" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Funde" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Avanplan (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Funde (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Color 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Color 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Color 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Color 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Color 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Color 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Color 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Color 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Avanplan (pallid)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Funde (pallid)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Color 1 (pallid)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Color 2 (pallid)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Color 3 (pallid)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Color 4 (pallid)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Color 5 (pallid)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Color 6 (pallid)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Color 7 (pallid)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Color 8 (pallid)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -424,54 +438,54 @@ msgid "Faint color" msgstr "Pallid color" #: colorscheme/ColorSchemeEditor.cpp:137 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:status" msgid "" "The background transparency setting will not be used because your desktop " "does not appear to support transparent windows." -msgstr "" +msgstr "OIS" #: colorscheme/ColorSchemeEditor.cpp:188 #, fuzzy, kde-format msgctxt "@title:window" msgid "Select wallpaper image file" -msgstr "Selecte un file del image de funde" +msgstr "Selecter un fonde" #: colorscheme/ColorSchemeEditor.cpp:190 -#, fuzzy, kde-format +#, kde-format msgctxt "@label:textbox Filter in file open dialog" msgid "Supported Images" -msgstr "Omni images suportat" +msgstr "Supportat images" #: colorscheme/ColorSchemeEditor.cpp:334 #, fuzzy, kde-format msgctxt "@title:window" msgid "New Color Scheme" -msgstr "Nov schema" +msgstr "Color:" #: colorscheme/ColorSchemeEditor.cpp:337 #, fuzzy, kde-format msgctxt "@title:window" msgid "Edit Color Scheme" -msgstr "S_chema de colores" +msgstr "Redacter" #: colorscheme/ColorSchemeEditor.cpp:383 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Click to choose color" -msgstr "Selecter li color del indicator del hor" +msgstr "Color:" #: colorscheme/ColorSchemeEditor.cpp:388 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Click to choose intense color" -msgstr "Color 1 (intens)" +msgstr "Color:" #: colorscheme/ColorSchemeEditor.cpp:393 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Click to choose Faint color" -msgstr "Color 1 (pallid)" +msgstr "Color:" #. i18n: ectx: property (text), widget (QLabel, descriptionLabel) #. i18n: ectx: property (text), widget (QLabel, discriptionLabel) @@ -482,31 +496,31 @@ msgstr "Descrition:" #. i18n: ectx: property (toolTip), widget (QCheckBox, randomizedBackgroundCheck) #: colorscheme/ColorSchemeEditor.ui:50 -#, kde-format +#, fuzzy, kde-format msgid "" "Hue and saturation values of default foreground and background colors are " "randomized by default. Some color schemes might use different randomization " "settings.\n" "To see any effect, set colors with saturation value greater than 0." -msgstr "" +msgstr "Parametres" #. i18n: ectx: property (text), widget (QCheckBox, randomizedBackgroundCheck) #: colorscheme/ColorSchemeEditor.ui:53 -#, kde-format +#, fuzzy, kde-format msgid "Randomly adjust colors for each session" -msgstr "" +msgstr "Panel de session" #. i18n: ectx: property (text), widget (QCheckBox, blurCheckBox) #: colorscheme/ColorSchemeEditor.ui:60 #, fuzzy, kde-format msgid "Blur background" -msgstr "Quam li _funde" +msgstr "Funde" #. i18n: ectx: property (text), widget (QLabel, transparencyLabel) #: colorscheme/ColorSchemeEditor.ui:69 #, fuzzy, kde-format msgid "Background color transparency:" -msgstr "Transparentie del color." +msgstr "Color:" #. i18n: ectx: property (text), widget (QLabel, transparencyPercentLabel) #. i18n: ectx: property (text), widget (QLabel, wallpaperTransparencyPercentLabel) @@ -531,7 +545,7 @@ msgstr "Image de funde:" #: colorscheme/ColorSchemeEditor.ui:144 #, fuzzy, kde-format msgid "Edit the path of the background image" -msgstr "Redacter ti-ci image" +msgstr "Redacter" #. i18n: ectx: property (toolTip), widget (QToolButton, wallpaperSelectButton) #: colorscheme/ColorSchemeEditor.ui:151 @@ -546,7 +560,7 @@ msgstr "Selecter un image de funde" #: widgets/EditProfileGeneralPage.ui:186 #, kde-format msgid "..." -msgstr "" +msgstr "..." #. i18n: ectx: property (text), widget (QLabel, wallpaperScalingLabel) #: colorscheme/ColorSchemeEditor.ui:165 @@ -588,7 +602,7 @@ msgstr "" #: colorscheme/ColorSchemeEditor.ui:205 #, fuzzy, kde-format msgid "Wallpaper flip:" -msgstr "Tapete" +msgstr "Transparentie del tapete:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:213 @@ -643,6 +657,41 @@ msgstr "Alt" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [predefinit]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -668,24 +717,24 @@ msgid "Deselect All" msgstr "Deselecter omnicos" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, kde-format +#, fuzzy, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" -msgstr "" +msgstr "Color:" #: filterHotSpots/FileFilterHotspot.cpp:158 -#, kde-format +#, fuzzy, kde-format msgid "" "Could not open file with the text editor specified in the profile settings;\n" "it will be opened with the system default editor." -msgstr "" +msgstr "Parametres" #: filterHotSpots/FileFilterHotspot.cpp:172 #, kde-format msgid "Copy Location" msgstr "Copiar li localisation" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generante un miniatura" @@ -716,32 +765,32 @@ msgctxt "@title:window" msgid "Select font" msgstr "Selecter un fonde" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Monstrar omni fondes" -#: FontDialog.cpp:67 -#, kde-format +#: FontDialog.cpp:66 +#, fuzzy, kde-format msgctxt "@info:status" msgid "" "By its very nature, a terminal program requires font characters that are " "equal width (monospace). Any non monospaced font may cause display issues. " "This should not be necessary except in rare cases." -msgstr "" +msgstr "Caracteres de dessin de tabelles es fortmen LaD." #: HistorySizeDialog.cpp:25 #, fuzzy, kde-format msgctxt "@title:window" msgid "Adjust Scrollback" -msgstr "Vacuar li buffre" +msgstr "B&uffre" #: HistorySizeDialog.cpp:46 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:status" msgid "Any adjustments are only temporary to this session." -msgstr "" +msgstr "Numeró de session: %#" #: KeyBindingEditor.cpp:54 #, kde-format @@ -759,25 +808,25 @@ msgstr "Rapid-taste" msgid "Output" msgstr "Production" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, fuzzy, kde-format msgid "New Key Binding List" -msgstr "Li rapid-taste (%s) es ínvalid" +msgstr "Aperter un nov carte" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, fuzzy, kde-format msgid "Edit Key Binding List" -msgstr "Li rapid-taste (%s) es ínvalid" +msgstr "Redacter" -#: KeyBindingEditor.cpp:286 -#, kde-format +#: KeyBindingEditor.cpp:287 +#, fuzzy, kde-format msgid "A key bindings scheme cannot be saved with an empty description." -msgstr "" +msgstr "Descrition:" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -811,239 +860,239 @@ msgstr "Intrada:" msgid "Output:" msgstr "Production:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Li developpatores de Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 -#, kde-format +#: main.cpp:371 +#, fuzzy, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" -msgstr "" +msgstr "General ameliorationes" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 -#, kde-format +#: main.cpp:375 +#, fuzzy, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" -msgstr "" +msgstr "Prec" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Original autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 -#, kde-format +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 +#, fuzzy, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" -msgstr "" +msgstr "Correctiones de defectes" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" -msgstr "Correctiones de defectes" +msgstr "General ameliorationes" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" -msgstr "Correctiones:" +msgstr "Correctiones de defectes" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "General ameliorationes" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Correctiones de defectes" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Supporte de Solaris e li diarium" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 -#, kde-format +#: main.cpp:411 +#, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" -msgstr "" +msgstr "Correctiones de defectes" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" -msgstr "Ameliorationes:" +msgstr "General ameliorationes" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 -#, kde-format +#: main.cpp:416 +#, fuzzy, kde-format msgctxt "@info:credit" msgid "" "Embedded Konsole\n" "Toolbar and session names" -msgstr "" +msgstr "(c) 1997-2022, Li developpatores de Konsole" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1051,237 +1100,237 @@ msgid "" "General improvements" msgstr "General ameliorationes" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Visual effects" -msgstr "Efectes visual" +msgstr "Visualisar sonette" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 -#, kde-format +#: main.cpp:427 +#, fuzzy, kde-format msgctxt "@info:credit" msgid "" "Code from the kvt project\n" "General improvements" -msgstr "" +msgstr "General ameliorationes" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" -msgstr "Color de _selection de textu:" +msgstr "General ameliorationes" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Portage a SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Portage a FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Mersí a mult altris.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nov carte" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clonar li carte" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nov &fenestre" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Cluder li fenestre" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Marca-págines" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Schema de colores del &fenestre" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gerentie de profiles..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activar li menú" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." -msgstr "_Arangeament" +msgstr "&Configurar o renominar li carte..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." -msgstr "Carga" +msgstr "&Configurar o renominar li carte..." -#: MainWindow.cpp:726 MainWindow.cpp:743 -#, kde-format +#: MainWindow.cpp:827 MainWindow.cpp:844 +#, fuzzy, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" +msgstr[1] "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmar clusion" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Cluder li &fenestre" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Cluder li ac&tual carte" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiles" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "General" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" -msgstr "" +msgstr "Memorie" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" -msgstr "Separators" +msgstr "Cluder li carte" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Temporari files" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturas" -#: Part.cpp:300 +#: Part.cpp:320 #, fuzzy, kde-format msgctxt "@title Preferences page name" msgid "Part Info" -msgstr "null info" +msgstr "Plufin Info-zip" #. i18n: ectx: property (windowTitle), widget (QWidget, QuickCommandsWidget) #: plugins/QuickCommands/qcwidget.ui:14 #, fuzzy, kde-format msgid "Form" -msgstr "Forme" +msgstr "Plurale %1" #. i18n: ectx: property (text), widget (QLabel, label_2) #: plugins/QuickCommands/qcwidget.ui:22 @@ -1355,7 +1404,7 @@ msgstr "Gardar" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualisar" @@ -1367,28 +1416,28 @@ msgid "Cancel" msgstr "Anullar" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Rapid comandes" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, fuzzy, kde-format msgid "Show Quick Access" -msgstr "Monstrar rapid comandes" +msgstr "Rapid comandes" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 -#, kde-format +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 +#, fuzzy, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" -msgstr "" +msgstr "Rapid comandes" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Quick Commands" msgid "Plugins - Quick Commands" msgstr "Rapid comandes" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Monstrar rapid comandes" @@ -1400,19 +1449,19 @@ msgid "A duplicate item exists" msgstr "Un duplicat element existe" #: plugins/QuickCommands/quickcommandswidget.cpp:183 -#, kde-format +#, fuzzy, kde-format msgid "Please fix all the warnings before trying to run this script" -msgstr "" +msgstr "Avises" #: plugins/QuickCommands/quickcommandswidget.cpp:215 -#, kde-format +#, fuzzy, kde-format msgid "There are some errors on the script, do you really want to run it?" -msgstr "" +msgstr "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" #: plugins/QuickCommands/quickcommandswidget.cpp:216 #, fuzzy, kde-format msgid "Shell Errors" -msgstr "Sin errores" +msgstr "Li titul assignat de shell: %w" #: plugins/QuickCommands/quickcommandswidget.cpp:217 #, kde-format @@ -1421,27 +1470,27 @@ msgid "Run" msgstr "Executer" #: plugins/QuickCommands/quickcommandswidget.cpp:242 -#, kde-format +#, fuzzy, kde-format msgid "" "You are about to delete the group %1,\n" " with multiple configurations, are you sure?" -msgstr "" +msgstr "Remover" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, fuzzy, kde-format msgid "You are about to delete %1, are you sure?" -msgstr "Esque vu vole remover ti-ci note?" +msgstr "Remover" #: plugins/QuickCommands/quickcommandswidget.cpp:246 #, fuzzy, kde-format msgid "Delete Quick Commands Configurations" -msgstr "Monstrar rapid comandes" +msgstr "Remover" #: plugins/QuickCommands/quickcommandswidget.cpp:276 #, fuzzy, kde-format msgid "Title can not be empty or blank" -msgstr "Li comande ne posse esser blanc" +msgstr "Titul" #: plugins/QuickCommands/quickcommandswidget.cpp:280 #, kde-format @@ -1478,14 +1527,14 @@ msgstr "Predefinit" #: plugins/SSHManager/sshmanagermodel.cpp:75 #, fuzzy, kde-format msgid "%1 is a folder for SSH entries" -msgstr "Inscritiones SSH" +msgstr "Fólder manca" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configuration de SSH" @@ -1506,14 +1555,14 @@ msgid "Show SSH Manager" msgstr "Gerente de SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:115 -#, kde-format +#, fuzzy, kde-format msgid "Show Quick Access for SSH Actions" -msgstr "" +msgstr "Rapid comandes" #: plugins/SSHManager/sshmanagerplugin.cpp:146 -#, kde-format +#, fuzzy, kde-format msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" -msgstr "" +msgstr "Gerente de SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:147 #, fuzzy, kde-format @@ -1527,113 +1576,113 @@ msgid "SSH Entries" msgstr "Inscritiones SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:182 -#, kde-format +#, fuzzy, kde-format msgid "" "Could not get the process name, assume that we can't request a connection" -msgstr "" +msgstr "Nómine" #: plugins/SSHManager/sshmanagerplugin.cpp:182 #: plugins/SSHManager/sshmanagerplugin.cpp:194 #, fuzzy, kde-format msgid "Error issuing SSH Command" -msgstr "Comande de proxy SSH" +msgstr "Comande" #: plugins/SSHManager/sshmanagerplugin.cpp:194 -#, kde-format +#, fuzzy, kde-format msgid "" "Can't issue SSH command outside the shell application (eg, bash, zsh, sh)" -msgstr "" +msgstr "Comande:" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Clave SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Remover" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ne modificar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 +#, fuzzy, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" -msgstr "" +msgstr "Remover" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" -msgstr "Li configuration de panel e plugines va esser removet permanentmen" +msgstr "Remover" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 +#, fuzzy, kde-format msgid "Imported SSH Profile
          Some settings are read only." -msgstr "" +msgstr "Parametres" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, fuzzy, kde-format msgid "Missing Hostname" -msgstr "Nómine de host:" +msgstr "Nómine manca" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Nómine manca" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 +#, fuzzy, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." -msgstr "" +msgstr "Configurat in SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 +#, fuzzy, kde-format msgid "At least Username or SSHKey must be set" -msgstr "" +msgstr "Nómine de usator" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Fólder manca" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 +#, fuzzy, kde-format msgid "An SSH session must have a profile" -msgstr "" +msgstr "Activitá in «%1» (Session «%2»)" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, fuzzy, kde-format msgid "Cannot delete this folder" -msgstr "Ne posse remover ti-ci panel" +msgstr "Remover" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 +#, fuzzy, kde-format msgid "Delete folder and all of its contents" -msgstr "" +msgstr "Remover" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format msgid "Double click to change the folder name." -msgstr "Duplic clic in vacui area ea al fólder superiori" +msgstr "Nómine" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 +#, fuzzy, kde-format msgid "You can't delete an automatically added entry." -msgstr "" +msgstr "Remover" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format msgid "Delete selected entry" -msgstr "Deleter ti-ci inscrition" +msgstr "Remover" #. i18n: ectx: property (text), widget (QLabel, label_6) #: plugins/SSHManager/sshwidget.ui:19 @@ -1643,15 +1692,15 @@ msgstr "Rapid-taste" #. i18n: ectx: property (toolTip), widget (QCheckBox, btnInvertFilter) #: plugins/SSHManager/sshwidget.ui:43 -#, kde-format +#, fuzzy, kde-format msgid "Show entries that don't match the filter" -msgstr "" +msgstr "Monstrar li buton «Nov carte»" #. i18n: ectx: property (toolTip), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:57 -#, kde-format +#, fuzzy, kde-format msgid "Change profile on connect/disconnect" -msgstr "" +msgstr "Profil predefinit" #. i18n: ectx: property (text), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:60 @@ -1671,13 +1720,13 @@ msgstr "Identificator" #: plugins/SSHManager/sshwidget.ui:89 #, fuzzy, kde-format msgid "A name for this ssh entry" -msgstr "SSH_LOG_ENTRY" +msgstr "Nómine" #. i18n: ectx: property (placeholderText), widget (QLineEdit, name) #: plugins/SSHManager/sshwidget.ui:92 #, fuzzy, kde-format msgid "The name of this entry on the list" -msgstr "Ordinar li liste de files secun nómine" +msgstr "Nómine" #. i18n: ectx: property (text), widget (QLabel, label) #: plugins/SSHManager/sshwidget.ui:99 @@ -1724,11 +1773,11 @@ msgstr "Li clave privat" #. i18n: ectx: property (toolTip), widget (QCheckBox, useSshConfig) #: plugins/SSHManager/sshwidget.ui:167 -#, kde-format +#, fuzzy, kde-format msgid "" "If this is set, we don't rely on the SSH key set above, but on the " "configuration on ~/.ssh/config" -msgstr "" +msgstr "Configurat in SSH" #. i18n: ectx: property (text), widget (QCheckBox, useSshConfig) #: plugins/SSHManager/sshwidget.ui:170 @@ -1762,9 +1811,9 @@ msgstr "Fólder" #. i18n: ectx: property (toolTip), widget (QComboBox, folder) #: plugins/SSHManager/sshwidget.ui:207 -#, kde-format +#, fuzzy, kde-format msgid "For organizational purposes, this entry will be inside of this folder." -msgstr "" +msgstr "Remover li selectet inscrition SSH" #. i18n: ectx: property (text), widget (QLabel, label_5) #: plugins/SSHManager/sshwidget.ui:220 @@ -1774,9 +1823,9 @@ msgstr "Profil" #. i18n: ectx: property (toolTip), widget (QComboBox, profile) #: plugins/SSHManager/sshwidget.ui:233 -#, kde-format +#, fuzzy, kde-format msgid "The profile to be active when the ssh session starts" -msgstr "" +msgstr "Konsole ne have un permission gardar di profil a %1" #. i18n: ectx: property (toolTip), widget (QPushButton, newSSHConfig) #: plugins/SSHManager/sshwidget.ui:271 @@ -1794,24 +1843,24 @@ msgstr "Remover li selectet inscrition SSH" #: plugins/SSHManager/sshwidget.ui:297 #, fuzzy, kde-format msgid "Edit selected entry" -msgstr "Modificar un element del Locs" +msgstr "Redacter" #. i18n: ectx: property (toolTip), widget (QPushButton, btnAdd) #: plugins/SSHManager/sshwidget.ui:307 #, fuzzy, kde-format msgid "Add new SSH Configuration" -msgstr "Adjuncter un nov..." +msgstr "Adjunter" #. i18n: ectx: property (toolTip), widget (QPushButton, btnCancel) #: plugins/SSHManager/sshwidget.ui:317 #, fuzzy, kde-format msgid "Cancel Add or Edit" -msgstr " Anullar " +msgstr "Anullar" #: pluginsystem/PluginManager.cpp:70 #, fuzzy, kde-format msgid "No plugins available" -msgstr "Null plugines es disponibil." +msgstr "Plugines" #. i18n: ectx: property (windowTitle), widget (QWidget, PrintOptions) #. i18n: ectx: property (title), widget (QGroupBox, OutputOptions) @@ -1822,35 +1871,34 @@ msgstr "Parametres del production" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Por &printation (nigri textu sin funde)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, fuzzy, kde-format msgid "&Scale output" -msgstr "_Scale:" +msgstr "Production" -#: profile/Profile.cpp:266 -#, kde-format +#: profile/Profile.cpp:272 +#, fuzzy, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" -msgstr "" +msgstr "Activitá in «%1» (Session «%2»)" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Profil predefinit" #: profile/ProfileManager.cpp:280 -#, fuzzy, kde-format -#| msgid "Profile" +#, kde-format msgctxt "New profile name, %1 is a number" msgid "Profile %1" -msgstr "Profil" +msgstr "Profil %1" #: profile/ProfileManager.cpp:294 #, kde-format @@ -1887,35 +1935,56 @@ msgstr " [predefinit]" #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Built-in profile is always available" -msgstr "Null profil disponibil" +msgstr "Sempre" #: profile/ProfileModel.cpp:111 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Double click to change shortcut" -msgstr "_Duplic clic por activar elementes" +msgstr "Rapid-taste" #: RenameTabDialog.cpp:25 #, kde-format msgid "Tab Properties" msgstr "Proprietás del carte" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Gardar li production de %1" -#: SaveHistoryTask.cpp:83 -#, kde-format +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 +#, fuzzy, kde-format msgid "%1 is an invalid URL, the output could not be saved." +msgstr "Gardar li production &quam..." + +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +msgid "Failed to create autosave file at %1." +msgstr "File" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." msgstr "" -#: SaveHistoryTask.cpp:173 -#, kde-format +#: SaveHistoryAutoTask.cpp:116 +#, fuzzy, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "File" + +#: SaveHistoryAutoTask.cpp:173 +#, fuzzy, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Actualisar" + +#: SaveHistoryTask.cpp:174 +#, fuzzy, kde-format msgid "" "A problem occurred when saving the output.\n" "%1" -msgstr "" +msgstr "Gardar li production &quam..." #: schemas.cpp:1 #, kde-format @@ -1944,508 +2013,532 @@ msgstr "Brise" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastelle obscur" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verdi sur nigri" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Colores de Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rubi sur nigri" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarisat" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarisat clar" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanc sur nigri" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Predefinit (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Console Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Console Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Serchar:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Cluder li panel de sercha" + +#: session/Session.cpp:131 #, fuzzy, kde-format msgid "Bell in '%1' (Session '%2')" -msgstr "%1 %2" +msgstr "Activitá in «%1» (Session «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format msgid "Could not find binary: " -msgstr "Ne successat trovar li plugin %1" +msgstr "Ne coresponde" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Avise: " -#: session/Session.cpp:520 -#, kde-format +#: session/Session.cpp:538 +#, fuzzy, kde-format msgid "Could not find an interactive shell to start." -msgstr "" +msgstr "Li titul assignat de shell: %w" -#: session/Session.cpp:526 session/Session.cpp:528 -#, kde-format +#: session/Session.cpp:544 session/Session.cpp:547 +#, fuzzy, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." -msgstr "" +msgstr "OIS" -#: session/Session.cpp:593 -#, kde-format +#: session/Session.cpp:640 +#, fuzzy, kde-format msgid "Could not start program '%1' with arguments '%2'." -msgstr "" +msgstr "Comande e li argumentes: %c" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Ínactivitá in «%1» (Session «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Monstrar li session" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

          This " -"warning will only show once for this Konsole instance.

          " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Completat" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format msgid "Program '%1' crashed." -msgstr "Li programma «%1» manca permissiones de execution." +msgstr "Cluder li programma" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format msgid "Program '%1' exited with status %2." -msgstr "" -"Li programma «%1» esset trovat in %2 ma it manca permissiones de execution." +msgstr "Nómine de programma: %n" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progresse de ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activitá in «%1» (Session «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 -#, kde-format +#: session/SessionController.cpp:380 +#, fuzzy, kde-format msgid "The process '%1' has finished running in session '%2'" -msgstr "" +msgstr "Panel de session" -#: session/SessionController.cpp:436 -#, kde-format +#: session/SessionController.cpp:463 +#, fuzzy, kde-format msgid "Konsole does not know how to open the bookmark: " -msgstr "" +msgstr "Konsole" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format msgid "Search for '%1' with" -msgstr "Serchar por «%1» med" +msgstr "Serchar retro" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format msgid "Configure Web Shortcuts..." -msgstr "Configurar abreviationes de web..." +msgstr "Configurar" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Cluder li session" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Aperter li gerente de files" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copiar" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" -msgstr "Fender li vise verticalmen" +msgstr "Fender li vise" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" -msgstr "Fender li vise horisontalmen" +msgstr "Fender li vise" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, fuzzy, kde-format msgid "Copy except prompts" -msgstr "omni except blocat" +msgstr "Copiar" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format msgid "Copy user input" -msgstr "Copiar _intrada:" +msgstr "Copiar" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format msgid "Copy command output" -msgstr "Production de comande" +msgstr "Copiar" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Collar li selection" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Sercha web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Selecter omnicos" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Mode de section" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Selecter li &linea" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Gardar li production &quam..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Gardar" + +#: session/SessionController.cpp:768 +#, fuzzy, kde-format +msgid "Stop Auto Save" +msgstr "Gardar" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Printar li ecran..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format msgid "Adjust Scrollback..." -msgstr "Vacuar li buffre" +msgstr "B&uffre" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Vacuar li buffre" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format msgid "Clear Scrollback and Reset" -msgstr "Vacuar li buffre" +msgstr "Comande e li argumentes: %c" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" -msgstr "Modificar li profil" +msgstr "Profil predefinit" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" -msgstr "Prec" +msgstr "Profil predefinit" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Cambiar li profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Assignar co&dification" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, fuzzy, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" -msgstr "Permisser:" +msgstr "Mus" -#: session/SessionController.cpp:821 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu A read only (locked) session" -#| msgid "Read-only" +#: session/SessionController.cpp:857 +#, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Solmen letion" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configurar o renominar li carte..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, fuzzy, kde-format msgid "&All Tabs in Current Window" -msgstr "Cluder omni cartes?" +msgstr "Cartes" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Selecter cartes..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Null" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format msgid "Copy Input To" -msgstr "Copiar _intrada:" +msgstr "Copiar" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Carga med &ZModem..." -#: session/SessionController.cpp:872 -#, kde-format +#: session/SessionController.cpp:908 +#, fuzzy, kde-format msgid "One-Shot Monitors" -msgstr "" +msgstr "Extraente ún file" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Controlar &activitá" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Controlar &activitá" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Co&ntrolar li ínactivitá" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Controlar li fin de processus" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Agrandar li fonde" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Diminuer li fonde" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format msgid "Reset Font Size" -msgstr "Dimension de fonde:" +msgstr "Fonde de emoji:" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Inviar un signale" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, fuzzy, kde-format msgid "&Suspend Task" -msgstr "Tache" +msgstr "&Interrupter li tache" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format msgid "&Continue Task" -msgstr "Tache: {}" +msgstr "&Interrupter li tache" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrupter li tache" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Finir li tache" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Terminar li tache" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Signale de usator &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Signale de usator &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Crear un nov profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format msgid "Edit Current Profile..." -msgstr "Modificar li selectet profil" +msgstr "Redacter" -#: session/SessionController.cpp:1112 -#, kde-format +#: session/SessionController.cpp:1157 +#, fuzzy, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" -msgstr "" +msgstr "Confirmar clusion" -#: session/SessionController.cpp:1116 -#, kde-format +#: session/SessionController.cpp:1161 +#, fuzzy, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" -msgstr "" +msgstr "Confirmar clusion" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmar clusion" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Cluder li programma" -#: session/SessionController.cpp:1147 -#, kde-format +#: session/SessionController.cpp:1192 +#, fuzzy, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" -msgstr "" +msgstr "Numeró de session: %#" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" -msgstr "" +msgstr "Numeró de session: %#" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Terminar li programma" -#: session/SessionController.cpp:1845 -#, kde-format +#: session/SessionController.cpp:1925 +#, fuzzy, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "" +msgstr "Panel de session" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, fuzzy, kde-format msgid "Open Current Folder With" -msgstr "Aperter li actual fólder in nov fenestre" +msgstr "Aperter li ligament" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format msgid "Save ZModem Download to..." -msgstr "Progresse de ZModem" +msgstr "Gardar" -#: session/SessionController.cpp:2118 -#, kde-format +#: session/SessionController.cpp:2235 +#, fuzzy, kde-format msgid "" "

          A ZModem file transfer attempt has been detected, but no suitable ZModem " "software was found on this system.

          You may wish to install the 'rzsz' " "or 'lrzsz' package.

          " -msgstr "" +msgstr "File" -#: session/SessionController.cpp:2128 -#, kde-format +#: session/SessionController.cpp:2245 +#, fuzzy, kde-format msgid "" "

          The current session already has a ZModem file transfer in progress.

          " -msgstr "" +msgstr "File" -#: session/SessionController.cpp:2141 -#, kde-format +#: session/SessionController.cpp:2258 +#, fuzzy, kde-format msgid "" "

          No suitable ZModem software was found on this system.

          You may wish " "to install the 'rzsz' or 'lrzsz' package.

          " -msgstr "" +msgstr "Notificationes del sistema" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, fuzzy, kde-format msgid "Select Files for ZModem Upload" -msgstr "Ne successat cargar li files" +msgstr "Carga med &ZModem..." #: session/SessionListModel.cpp:89 #, kde-format @@ -2465,328 +2558,400 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configurar" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 +#, fuzzy, kde-format +msgid "When launching Konsole re-use existing process if possible" +msgstr "Konsole" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 +#, fuzzy, kde-format +msgid "Run all Konsole windows in a single process" +msgstr "Konsole" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, fuzzy, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "Parametres" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "Memorar li dimension del fenestre" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +msgid "Force new tabs" +msgstr "Cartes" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "Notificationes:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, fuzzy, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "Serchar retro" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "Serchar retro" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Atenter a MAJ/min" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Atenter a MAJ/min" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Processu e fenestre:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Colorar omni corespondenties" + #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 +#: settings/GeneralSettings.ui:174 #, kde-format msgctxt "@item:intext Search options" msgid "Search:" msgstr "Serchar:" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) +#. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, fuzzy, kde-format +msgid "Sets whether search should stop instead of wrapping" +msgstr "Serchar retro" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) +#: settings/GeneralSettings.ui:206 +#, fuzzy, kde-format +msgid "No wrap" +msgstr "No" + #. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) #. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 #, fuzzy, kde-format msgid "Enable menu accelerators" -msgstr "Permisser re_dactibil rapid-tastes" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Memorar li dimension del fenestre" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, fuzzy, kde-format -msgid "Show window title on the titlebar" -msgstr "_Celar li panel de titul" +msgstr "Activar li menú" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) #. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, fuzzy, kde-format msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" +msgstr "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 #, fuzzy, kde-format -msgid "Match using regular expressions" -msgstr "Expressiones regulari" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 -#, kde-format -msgid "When launching Konsole re-use existing process if possible" +msgid "All dialogs will be shown again" msgstr "" +"Pos reiniciation li computator va monstrar li ecran de configuration de " +"firmware." -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 -#, kde-format -msgid "Run all Konsole windows in a single process" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, kde-format -msgid "Highlight all matches" -msgstr "Colorar omni corespondenties" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 #, fuzzy, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Distinter majuscules e minuscules" +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Permisser" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, fuzzy, kde-format +msgid "Show window title on the titlebar" +msgstr "Titul" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 #, kde-format -msgid "Case sensitive" -msgstr "Atenter a MAJ/min" +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) #. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 #, fuzzy, kde-format msgid "Remove window titlebar and frame" -msgstr "_Celar li panel de titul" +msgstr "Remover" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 -#, kde-format -msgid "Process and window:" -msgstr "Processu e fenestre:" - -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, kde-format -msgid "Notifications:" -msgstr "Notificationes:" - -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "Serchar retro" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) -#. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 #, fuzzy, kde-format -msgid "Sets whether search should stop instead of wrapping" -msgstr "Distinter majuscules e minuscules" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 -#, kde-format -msgid "No wrap" -msgstr "" +msgid "Match using regular expressions" +msgstr "Al sequent corespondentie" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 -#, kde-format +#, fuzzy, kde-format msgid "Show window title set by escape sequence on the titlebar" -msgstr "" +msgstr "Titul" #. i18n: ectx: tooltip, entry (AllowMenuAccelerators), group (KonsoleWindow) #: settings/konsole.kcfg:23 -#, kde-format +#, fuzzy, kde-format msgid "Allow users to access top menu through Alt+Key combination" -msgstr "" +msgstr "Monstrar li menú de parametres" #. i18n: ectx: label, entry (RememberWindowSize), group (KonsoleWindow) #: settings/konsole.kcfg:27 -#, kde-format +#, fuzzy, kde-format msgid "Use current window size on next startup" -msgstr "" +msgstr "Dimension:" #. i18n: ectx: tooltip, entry (RememberWindowSize), group (KonsoleWindow) #: settings/konsole.kcfg:28 -#, kde-format +#, fuzzy, kde-format msgid "The window size will be saved upon exiting Konsole" +msgstr "Konsole" + +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Konsole" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:42 +#, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" msgstr "" #. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:42 +#: settings/konsole.kcfg:62 #, kde-format msgid "Thumbnail Width" msgstr "Largore de miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, fuzzy, kde-format msgid "Sets the width of the thumbnail" msgstr "Largore de miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Usar Shift por monstrar un miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Usar Alt por monstrar un miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Usar Ctrl por monstrar un miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Distinter majuscules e minuscules" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format msgid "Highlight all search matches" -msgstr "Remover coloration de resultates de sercha" +msgstr "Serchar retro" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 -#, kde-format +#: settings/konsole.kcfg:94 +#, fuzzy, kde-format msgid "Sets whether matching text should be highlighted" -msgstr "" +msgstr "Comande del redactor de textus: " #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 -#, kde-format +#: settings/konsole.kcfg:103 +#, fuzzy, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Serchar retro" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 -#, kde-format +#: settings/konsole.kcfg:110 +#, fuzzy, kde-format msgid "Control whether child cgroups are created for individual tabs" -msgstr "" +msgstr "Cartes" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 -#, kde-format +#: settings/konsole.kcfg:114 +#, fuzzy, kde-format msgid "" "Determines the memory consumption level above which throttling will start" -msgstr "" +msgstr "Memorie de traductiones" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 -#, kde-format +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 +#, fuzzy, kde-format msgid "Control the visibility of the whole tab bar" -msgstr "" +msgstr "Collar &sin caracteres de control" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 -#, kde-format -msgid "Control the size of the handle between panels" -msgstr "" - -#. i18n: ectx: label, entry (TabBarPosition), group (TabBar) #: settings/konsole.kcfg:129 #, fuzzy, kde-format +msgid "Control the size of the handle between panels" +msgstr "Li númere de pixeles inter du lineas" + +#. i18n: ectx: label, entry (TabBarPosition), group (TabBar) +#: settings/konsole.kcfg:149 +#, fuzzy, kde-format msgid "Control the position of the tab bar" -msgstr "Regulator de position es reversat" +msgstr "Position:" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 -#, kde-format +#: settings/konsole.kcfg:159 +#, fuzzy, kde-format msgid "Control the visual style of the tab bar" -msgstr "" +msgstr "Collar &sin caracteres de control" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 -#, kde-format +#: settings/konsole.kcfg:163 +#, fuzzy, kde-format msgid "Use a user-defined .css file for the tab bar" -msgstr "" +msgstr "File" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 -#, kde-format +#: settings/konsole.kcfg:167 +#, fuzzy, kde-format msgid "The .css file to use for the tab bar style" -msgstr "" +msgstr "File" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 -#, kde-format +#: settings/konsole.kcfg:171 +#, fuzzy, kde-format msgid "Allow middle-clicking on open tabs to close them" -msgstr "" +msgstr "Cluder li carte" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 -#, kde-format +#: settings/konsole.kcfg:175 +#, fuzzy, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" -msgstr "" +msgstr "Monstrar li buton Cluder li carte:" + +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Monstrar li buton Cluder li carte:" #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 -#, kde-format +#: settings/konsole.kcfg:187 +#, fuzzy, kde-format msgid "Control where the \"Close tab\" button will be displayed" -msgstr "" +msgstr "Confirmar clusion" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 -#, kde-format +#: settings/konsole.kcfg:196 +#, fuzzy, kde-format msgid "Control where to put the new tab" -msgstr "" +msgstr "Collar &sin caracteres de control" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 -#, fuzzy, kde-format -msgid "Expand the tab widths" -msgstr "_Expander" - -#. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 -#, kde-format -msgid "For scrollback files, use system-wide folder location" -msgstr "" - -#. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 -#, kde-format -msgid "For scrollback files, use user's specific folder location" -msgstr "" - -#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 -#, kde-format -msgid "For scrollback files, use specified folder location" -msgstr "" - -#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) #: settings/konsole.kcfg:204 #, fuzzy, kde-format +msgid "Expand the tab widths" +msgstr "&Configurar o renominar li carte..." + +#. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) +#: settings/konsole.kcfg:220 +#, fuzzy, kde-format +msgid "For scrollback files, use system-wide folder location" +msgstr "Aperter li contenent fólder" + +#. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) +#: settings/konsole.kcfg:224 +#, fuzzy, kde-format +msgid "For scrollback files, use user's specific folder location" +msgstr "Fólder" + +#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) +#: settings/konsole.kcfg:228 +#, fuzzy, kde-format +msgid "For scrollback files, use specified folder location" +msgstr "Fólder" + +#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) +#: settings/konsole.kcfg:232 +#, fuzzy, kde-format msgid "For scrollback files, use this folder" -msgstr "Usar li actual icone de fólder" +msgstr "Fólder" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 @@ -2796,33 +2961,31 @@ msgid "Enable memory monitoring:" msgstr "Supervision del carte" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." -msgstr "" +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." +msgstr "Konsole" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 -#, kde-format +#: settings/MemorySettings.ui:37 +#, fuzzy, kde-format msgid "Memory limit:" -msgstr "" +msgstr "Memorie de traductiones" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" -msgstr "" +msgstr " Mo" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/PartInfo.ui:17 -#, kde-format +#, fuzzy, kde-format msgid "" "

          Applications that use KonsolePart share profiles.

          They do not share with Konsole or other applications:

          • default " @@ -2830,13 +2993,13 @@ msgid "" "open a Konsole bug report if you desire " "a change to how these are handled." -msgstr "" +msgstr "Predefinit" #. i18n: ectx: property (toolTip), widget (QPushButton, newProfileButton) #: settings/ProfileSettings.ui:51 #, fuzzy, kde-format msgid "Create a new profile based on the selected profile" -msgstr "Crear un nov profil de monitor." +msgstr "Remover li selectet profil" #. i18n: ectx: property (text), widget (QPushButton, newProfileButton) #: settings/ProfileSettings.ui:54 @@ -2846,10 +3009,10 @@ msgstr "&Nov..." #. i18n: ectx: property (toolTip), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:64 -#, kde-format +#, fuzzy, kde-format msgid "" "Edit the selected profile (this button is disabled for read-only profiles)" -msgstr "" +msgstr "Redacter" #. i18n: ectx: property (text), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:67 @@ -2871,9 +3034,9 @@ msgstr "&Remover" #. i18n: ectx: property (toolTip), widget (QPushButton, setAsDefaultButton) #: settings/ProfileSettings.ui:90 -#, kde-format +#, fuzzy, kde-format msgid "Set the selected profile as the default for new terminal sessions" -msgstr "" +msgstr "Predefinit" #. i18n: ectx: property (text), widget (QPushButton, setAsDefaultButton) #: settings/ProfileSettings.ui:93 @@ -2898,7 +3061,9 @@ msgstr "Monstrar:" #: settings/TabBarSettings.ui:63 #, fuzzy, kde-format msgid "When needed" -msgstr "Un restart es necessi" +msgstr "" +"Pos reiniciation li computator va monstrar li ecran de configuration de " +"firmware." #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowTabBar) #: settings/TabBarSettings.ui:73 @@ -2922,25 +3087,25 @@ msgstr "Position:" #: settings/TabBarSettings.ui:119 #, fuzzy, kde-format msgid "Above terminal area" -msgstr "Area" +msgstr "Prov-area" #. i18n: ectx: property (text), widget (QRadioButton, Bottom) #: settings/TabBarSettings.ui:129 #, fuzzy, kde-format msgid "Be&low terminal area" -msgstr "Terminal" +msgstr "Prov-area" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 #, fuzzy, kde-format msgid "To the left of terminal area" -msgstr "Terminal" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 #, fuzzy, kde-format msgid "To the &right of terminal area" -msgstr "Terminal" +msgstr "Prov-area" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 @@ -2953,7 +3118,7 @@ msgstr "Monstrar li buton Cluder li carte:" #, fuzzy, kde-format #| msgid "&On each tab" msgid "On ea&ch tab" -msgstr "Sur ch&ascun carte" +msgstr "&Configurar o renominar li carte..." #. i18n: ectx: property (text), widget (QRadioButton, OnTabBar) #: settings/TabBarSettings.ui:195 @@ -2968,125 +3133,150 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Necú" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Monstrar li buton Cluder li carte:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Nequande" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diversi:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Monstrar li buton «Nov carte»" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 -#, kde-format +#: settings/TabBarSettings.ui:294 +#, fuzzy, kde-format msgid "Expand individual tab widths to full window" -msgstr "" +msgstr "Li titul assignat de shell: %w" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format msgid "Use user-defined stylesheet:" -msgstr "Personalisat etiquette" +msgstr "Signale de usator &1" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, fuzzy, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" -msgstr "(null)" +msgstr "Null" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Conduida" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format msgid "Put new tabs:" -msgstr "Cartes in vice de nov fenestres" +msgstr "Cartes" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 -#, fuzzy, kde-format -msgid "At &the end" -msgstr "Fin:" - -#. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 -#, fuzzy, kde-format -msgid "After current &tab" -msgstr "Continuar reproduction pos li actual track" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) #: settings/TabBarSettings.ui:374 #, fuzzy, kde-format +msgid "At &the end" +msgstr "Selecter un image de funde" + +#. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) +#: settings/TabBarSettings.ui:384 +#, fuzzy, kde-format +msgid "After current &tab" +msgstr "&Configurar o renominar li carte..." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) +#: settings/TabBarSettings.ui:420 +#, fuzzy, kde-format msgid "Close tab on middle-click" -msgstr "Medial clic por cluder li fenestre" +msgstr "Cluder li carte" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Fensiones" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format msgid "Show Header:" -msgstr "Cap-linea:" +msgstr "Monstrar li buton «Nov carte»" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, fuzzy, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" -msgstr "Un restart es necessi" +msgstr "" +"Pos reiniciation li computator va monstrar li ecran de configuration de " +"firmware." #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nequande" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, fuzzy, kde-format msgid "Drag Handle Size:" -msgstr "Anse" +msgstr "Besonar li taste Ctrl por tirar-e-cader" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Micri" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Medie" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grand" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3098,7 +3288,7 @@ msgctxt "" "@option:radio File location; %1: path to directory " "placeholder" msgid "System temporary directory (%1)" -msgstr "Ne successat crear un directoria temporari" +msgstr "Actual fólder (long): %D" #: settings/TemporaryFilesSettings.cpp:33 #, fuzzy, kde-format @@ -3106,13 +3296,13 @@ msgctxt "" "@option:radio File location; %1: path to directory " "placeholder" msgid "User cache directory (%1)" -msgstr "Ne successat obtener li hem-fólder del usator" +msgstr "Signale de usator &1" #. i18n: ectx: property (text), widget (QLabel, label_4) #: settings/TemporaryFilesSettings.ui:25 #, fuzzy, kde-format msgid "Scrollback file location:" -msgstr "Vacuar li buffre" +msgstr "File" #. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseSpecifiedLocation) #: settings/TemporaryFilesSettings.ui:64 @@ -3135,12 +3325,12 @@ msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 -#, kde-format +#, fuzzy, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " -msgstr "" +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " +msgstr "mistresssilvara@hotmail.com" #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3152,7 +3342,7 @@ msgstr "Activation:" #: settings/ThumbnailsSettings.ui:63 #, fuzzy, kde-format msgid "Mouse hover plus" -msgstr "Plus" +msgstr "Mus" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailShift) #: settings/ThumbnailsSettings.ui:70 @@ -3176,391 +3366,403 @@ msgstr "Ctrl" #: settings/ThumbnailsSettings.ui:93 #, fuzzy, kde-format msgid "Enable thumbnails generation" -msgstr "Miniaturas:" +msgstr "Miniaturas" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Dimension: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Esque vu vole collar %1 caracter?" +msgstr[1] "Esque vu vole collar %1 caracteres?:" -#: terminalDisplay/TerminalDisplay.cpp:2260 -#, fuzzy, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2320 +#, kde-format msgid "Confirm Paste" -msgstr "Collar" +msgstr "Confirmar li collation" -#: terminalDisplay/TerminalDisplay.cpp:2293 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2353 +#, fuzzy, kde-format msgid "End Of Text/Interrupt: may exit the current process" -msgstr "" +msgstr "Actual fólder (long): %D" -#: terminalDisplay/TerminalDisplay.cpp:2294 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2354 +#, fuzzy, kde-format msgid "End Of Transmission: may exit the current process" -msgstr "" +msgstr "Lansat in un separat processu" -#: terminalDisplay/TerminalDisplay.cpp:2295 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2355 +#, fuzzy, kde-format msgid "Bell: will try to emit an audible warning" -msgstr "" +msgstr "Avise: " -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Retroclave" -#: terminalDisplay/TerminalDisplay.cpp:2297 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2357 +#, fuzzy, kde-format msgid "Device Control Three/XOFF: suspends output" -msgstr "" +msgstr "Collar &sin caracteres de control" -#: terminalDisplay/TerminalDisplay.cpp:2298 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2358 +#, fuzzy, kde-format msgid "Substitute/Suspend: may suspend current process" -msgstr "" +msgstr "Lansat in un separat processu" -#: terminalDisplay/TerminalDisplay.cpp:2299 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2359 +#, fuzzy, kde-format msgid "Escape: used for manipulating terminal state" -msgstr "" +msgstr "Restituer li terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2360 +#, fuzzy, kde-format msgid "File Separator/Quit: may abort the current process" -msgstr "" +msgstr "File" -#: terminalDisplay/TerminalDisplay.cpp:2323 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2383 +#, fuzzy, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" -msgstr "" +msgstr "Celat" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirmar li collation" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Collar &sin caracteres de control" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Collar omnicos" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "A&nullar" -#: terminalDisplay/TerminalDisplay.cpp:2560 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2620 +#, fuzzy, kde-format msgid "" "Output has been suspended by pressing Ctrl+S. Press Ctrl+Q to resume." -msgstr "" +msgstr "Ctrl" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, fuzzy, kde-format msgid "This terminal is read-only." -msgstr " [solmen letion]" +msgstr "Restituer li terminal" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" -msgstr "Ear al superiori fólder" +msgstr "Actual fólder (long): %D" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Coll&ar li localisation" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Fender li vise" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Fender li vise verticalmen" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Fender li vise horisontalmen" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Fender li vise automaticmen" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" -msgstr "Fender li vise verticalmen" +msgstr "Fender li vise" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" -msgstr "Fender li vise horisontalmen" +msgstr "Fender li vise" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Automatically" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" -msgstr "Fender li vise automaticmen" +msgstr "Fender li vise" -#: ViewManager.cpp:179 -#, kde-format +#: ViewManager.cpp:183 +#, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" -msgstr "" +msgstr "Ne successat cargar li schema %1." -#: ViewManager.cpp:188 -#, kde-format +#: ViewManager.cpp:192 +#, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" -msgstr "" +msgstr "Ne successat cargar li schema %1." -#: ViewManager.cpp:197 -#, kde-format +#: ViewManager.cpp:201 +#, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" -msgstr "" +msgstr "Ne successat cargar li schema %1." -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Expand View" -msgstr "_Expander" +msgstr "Fender li vise" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Shrink View" -msgstr "Contraer li URL" +msgstr "Fender li vise" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" -msgstr "S&eparar li carte" +msgstr "Fender li vise" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "S&eparar li actual carte" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Sequent carte" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Precedent carte" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" -msgstr "Foco" +msgstr "Emulator de terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" -msgstr "&Inferiori" +msgstr "Emulator de terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" -msgstr "Terminal" +msgstr "Levul" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" -msgstr "Terminal" +msgstr "Emulator de terminal" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 #, fuzzy, kde-format msgctxt "@action Shortcut entry" -msgid "Switch to Last Tab" -msgstr "Ear al ultim activ carte" - -#: ViewManager.cpp:287 -#, fuzzy, kde-format -msgctxt "@action Shortcut entry" -msgid "Last Used Tabs" -msgstr "_Usat" +msgid "Focus Next Terminal" +msgstr "Levul" #: ViewManager.cpp:292 #, fuzzy, kde-format msgctxt "@action Shortcut entry" -msgid "Toggle Between Two Tabs" -msgstr "Periode inter du dates" +msgid "Focus Previous Terminal" +msgstr "Emulator de terminal" -#: ViewManager.cpp:297 +#: ViewManager.cpp:298 #, fuzzy, kde-format msgctxt "@action Shortcut entry" -msgid "Last Used Tabs (Reverse)" -msgstr "Li ultim usat mode" - -#: ViewManager.cpp:302 -#, fuzzy, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle maximize current view" -msgstr "Maximisar horizontalmen" +msgid "Switch to Last Tab" +msgstr "Precedent carte" #: ViewManager.cpp:303 #, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Last Used Tabs" +msgstr "Cartes" + +#: ViewManager.cpp:308 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle Between Two Tabs" +msgstr "Cartes" + +#: ViewManager.cpp:313 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Last Used Tabs (Reverse)" +msgstr "Cartes" + +#: ViewManager.cpp:318 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle maximize current view" +msgstr "Fender li vise" + +#: ViewManager.cpp:319 +#, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" -msgstr "Maximisar horizontalmen" - -#: ViewManager.cpp:311 -#, fuzzy, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "Maximisar horizontalmen" - -#: ViewManager.cpp:312 -#, fuzzy, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "Maximisar horizontalmen" - -#: ViewManager.cpp:320 -#, fuzzy, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "Mover un carte a dextri" +msgstr "Fender li vise" #: ViewManager.cpp:327 #, fuzzy, kde-format msgctxt "@action Shortcut entry" -msgid "Move tab to the left" -msgstr "Mover un carte a levul" +msgid "Toggle zoom-maximize current view" +msgstr "Fender li vise" -#: ViewManager.cpp:334 +#: ViewManager.cpp:328 +#, fuzzy, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "Fender li vise" + +#: ViewManager.cpp:336 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "Fender li vise verticalmen" + +#: ViewManager.cpp:343 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the left" +msgstr "Levul" + +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Configurar integration de semantica (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" -msgstr "Celar o revelar celat files in li actual fenestre" +msgstr "Configurar integration de semantica (bash)" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" -msgstr "Monstrar _numerós de lineas" +msgstr "Monstrar un vertical linea in columne:" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" -msgstr "Omni paccages, secun grandore" +msgstr "Dimension: %1 x %2" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" -msgstr "Ear a carte 1" +msgstr "Precedent carte" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format msgid "Semantic hints " -msgstr "Semantic anotationes" +msgstr "Configurar integration de semantica (bash)" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Numerós de lineas" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format msgctxt "@title:window" msgid "Save Tab Layout" -msgstr "_Arangeament" +msgstr "&Configurar o renominar li carte..." -#: ViewManager.cpp:1179 ViewManager.cpp:1266 -#, kde-format +#: ViewManager.cpp:1241 ViewManager.cpp:1362 +#, fuzzy, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" -msgstr "" +msgstr "Fender li vise" -#: ViewManager.cpp:1192 -#, kde-format +#: ViewManager.cpp:1257 +#, fuzzy, kde-format msgctxt "@label:textbox" msgid "" "A problem occurred when saving the Layout.\n" "%1" -msgstr "" +msgstr "

            Arangeament del complex textu

            " -#: ViewManager.cpp:1253 -#, kde-format +#: ViewManager.cpp:1349 +#, fuzzy, kde-format msgctxt "@label:textbox" msgid "" "A problem occurred when loading the Layout.\n" "%1" -msgstr "" +msgstr "

            Arangeament del complex textu

            " -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, fuzzy, kde-format msgctxt "@title:window" msgid "Load Tab Layout" -msgstr "Carga" +msgstr "&Configurar o renominar li carte..." -#: Vt102Emulation.cpp:2478 -#, kde-format +#: Vt102Emulation.cpp:3281 +#, fuzzy, kde-format msgid "" "No keyboard translator available. The information needed to convert key " "presses into characters to send to the terminal is missing." -msgstr "" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QLabel, urlHintsLabel) #: widgets/EditProfileAdvancedPage.ui:19 -#, kde-format +#, fuzzy, kde-format msgid "Key combination to show URL hints:" -msgstr "" +msgstr "Monstrar li buton «Nov carte»" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierShift) #: widgets/EditProfileAdvancedPage.ui:51 @@ -3599,76 +3801,87 @@ msgstr "Diversi:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableReverseUrlHints) #: widgets/EditProfileAdvancedPage.ui:164 -#, kde-format +#, fuzzy, kde-format msgid "Number URL hints in reverse, starting from the bottom" -msgstr "" +msgstr "Numeró de session: %#" #. i18n: ectx: property (text), widget (QCheckBox, enableReverseUrlHints) #: widgets/EditProfileAdvancedPage.ui:167 -#, kde-format +#, fuzzy, kde-format msgid "Reverse URL hint numbering" -msgstr "" +msgstr "Copiar li ad&resse del ligament" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingTextButton) #: widgets/EditProfileAdvancedPage.ui:180 -#, kde-format +#, fuzzy, kde-format msgid "Allow terminal programs to create blinking sections of text" -msgstr "" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingTextButton) #: widgets/EditProfileAdvancedPage.ui:183 #, fuzzy, kde-format msgid "Allow blinking text" -msgstr "Permisser _grass textu" +msgstr "Permisser sequenties escape in ligamentes" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableFlowControlButton) #: widgets/EditProfileAdvancedPage.ui:196 -#, kde-format +#, fuzzy, kde-format msgid "Allow the output to be suspended by pressing Ctrl+S" -msgstr "" +msgstr "Ctrl" #. i18n: ectx: property (text), widget (QCheckBox, enableFlowControlButton) #: widgets/EditProfileAdvancedPage.ui:199 #, fuzzy, kde-format msgid "Flow control" -msgstr "_Controlar" +msgstr "Collar &sin caracteres de control" #. i18n: ectx: property (text), widget (QLabel, label_14) #: widgets/EditProfileAdvancedPage.ui:222 #, fuzzy, kde-format msgid "&Default character encoding:" -msgstr "Codification de caracteres ID3v1 (predefinit: iso8859-1)" +msgstr "Predefinit" #. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) #: widgets/EditProfileAdvancedPage.ui:242 -#, kde-format +#, fuzzy, kde-format msgid "Shortcut for peeking the primary screen:" -msgstr "" +msgstr "Rapid-taste" + +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, fuzzy, kde-format +msgid "Set interval between autosaves:" +msgstr "Assignar co&dification" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, fuzzy, kde-format +msgid " ms" +msgstr "MS Windows 9x" #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Line numbers " msgid "Line Numbers:" msgstr "Numerós de lineas" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 -#, fuzzy, kde-format -#| msgid "&Never" +#: widgets/EditProfileAdvancedPage.ui:285 +#, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nequande" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, fuzzy, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" -msgstr "URL predefinit por creation un ligament" +msgstr "Monstrar li buton «Nov carte»" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, fuzzy, kde-format #| msgctxt "Always" #| msgid "Always" @@ -3680,49 +3893,49 @@ msgstr "Sempre" #: widgets/EditProfileAppearancePage.ui:36 #, fuzzy, kde-format msgid "Color scheme && font" -msgstr "S_chema de colores" +msgstr "Color:" #. i18n: ectx: property (toolTip), widget (QPushButton, newColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:69 -#, kde-format +#, fuzzy, kde-format msgid "Create a new color scheme based upon the selected scheme" -msgstr "" +msgstr "Color:" #. i18n: ectx: property (text), widget (QPushButton, newColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:72 -#, fuzzy, kde-format +#, kde-format msgctxt "@action:button Create an alternate color scheme" msgid "New..." -msgstr "_Crear/" +msgstr "Crear..." #. i18n: ectx: property (toolTip), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:79 #, fuzzy, kde-format msgid "Edit the selected color scheme" -msgstr "Si selectet schema de colores ne posse esser installat." +msgstr "Redacter" #. i18n: ectx: property (text), widget (QPushButton, editKeyBindingsButton) #. i18n: ectx: property (text), widget (QPushButton, environmentEditButton) #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, fuzzy, kde-format msgid "Edit..." -msgstr "_Modificar..." +msgstr "Redacter" #. i18n: ectx: property (toolTip), widget (QPushButton, removeColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:89 #, fuzzy, kde-format msgid "Delete the selected color scheme" -msgstr "Si selectet schema de colores ne posse esser installat." +msgstr "Remover" #. i18n: ectx: property (toolTip), widget (QPushButton, resetColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:99 -#, kde-format +#, fuzzy, kde-format msgid "Reset the selected color scheme settings to the default values" -msgstr "" +msgstr "Parametres" #. i18n: ectx: property (text), widget (QPushButton, resetKeyBindingsButton) #. i18n: ectx: property (text), widget (QPushButton, resetColorSchemeButton) @@ -3759,15 +3972,23 @@ msgstr "Monstrar intens colores per un grass fonde" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Usar li selectet fonde por li caracteres de linea" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "" +msgstr "Agrandar li fonde" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3777,13 +3998,13 @@ msgstr "" msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" -msgstr "Usar li selectet fonde por li caracteres de linea" +msgstr "Caracteres de paroles:" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 -#, kde-format +#, fuzzy, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "" +msgstr "Usar li selectet fonde por li caracteres de linea" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -3827,27 +4048,27 @@ msgstr "Color:" #. i18n: ectx: property (toolTip), widget (QRadioButton, autoCursorColorButton) #: widgets/EditProfileAppearancePage.ui:307 -#, kde-format +#, fuzzy, kde-format msgid "Set the cursor to match the color of the character underneath it." -msgstr "" +msgstr "Color:" #. i18n: ectx: property (text), widget (QRadioButton, autoCursorColorButton) #: widgets/EditProfileAppearancePage.ui:310 #, fuzzy, kde-format msgid "Match current character" -msgstr "Caracter" +msgstr "Cluder li ac&tual carte" #. i18n: ectx: property (toolTip), widget (QRadioButton, customCursorColorButton) #: widgets/EditProfileAppearancePage.ui:326 #, fuzzy, kde-format msgid "Use a custom, fixed color for the cursor" -msgstr "Usar un color del funde personalisat" +msgstr "Color:" #. i18n: ectx: property (text), widget (QRadioButton, customCursorColorButton) #: widgets/EditProfileAppearancePage.ui:329 #, fuzzy, kde-format msgid "Custom cursor color" -msgstr "Color personal" +msgstr "Color:" #. i18n: ectx: property (text), widget (QLabel, customCursorColorLabel) #: widgets/EditProfileAppearancePage.ui:360 @@ -3857,9 +4078,9 @@ msgstr "Cursore:" #. i18n: ectx: property (toolTip), widget (KColorButton, customColorSelectButton) #: widgets/EditProfileAppearancePage.ui:373 -#, kde-format +#, fuzzy, kde-format msgid "Select the color used to draw the cursor" -msgstr "" +msgstr "Color:" #. i18n: ectx: property (text), widget (QLabel, customCursorTextColorLabel) #: widgets/EditProfileAppearancePage.ui:393 @@ -3869,9 +4090,9 @@ msgstr "Textu:" #. i18n: ectx: property (toolTip), widget (KColorButton, customTextColorSelectButton) #: widgets/EditProfileAppearancePage.ui:406 -#, kde-format +#, fuzzy, kde-format msgid "Select the color used to draw the character underneath the cursor" -msgstr "" +msgstr "Color:" #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/EditProfileAppearancePage.ui:431 @@ -3881,264 +4102,276 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingCursorButton) #: widgets/EditProfileAppearancePage.ui:447 -#, kde-format +#, fuzzy, kde-format msgid "Make the cursor blink regularly" -msgstr "" +msgstr "Cursore" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Permisset" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Activation:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Cursore" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diversi" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Fenestre:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:517 +#, fuzzy, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " "resizing" -msgstr "" +msgstr "Dimension:" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:520 +#, fuzzy, kde-format msgid "Show hint for terminal size after resizing" -msgstr "" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, fuzzy, kde-format msgid "Always invert the colors of selected text" -msgstr "Intercambiar majuscules/minuscules in li selectet textu" +msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, fuzzy, kde-format msgid "Darkening strength:" msgstr "Fortie:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 -#, fuzzy, kde-format -#| msgctxt "Cursor color options" -#| msgid "Color:" +#: widgets/EditProfileAppearancePage.ui:569 +#, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Color:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:585 +#, fuzzy, kde-format msgid "Select the color used to draw the border" -msgstr "" +msgstr "Color:" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format msgid "Inactive Terminals:" -msgstr "Ínactiv" +msgstr "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format msgid "Active Terminals:" -msgstr "Ínactiv" +msgstr "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 -#, fuzzy, kde-format +#: widgets/EditProfileAppearancePage.ui:627 +#, kde-format msgctxt "@title:group" msgid "Terminal contents" -msgstr "Re_formar li contenete pos redimension" +msgstr "Contenete de terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Interspacie:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Li númere de pixeles inter du lineas" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Márgines:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Centrar:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:769 +#, fuzzy, kde-format msgid "Indicate whether the window is active by dimming the colors" -msgstr "" +msgstr "Cluder li fenestre" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:779 +#, fuzzy, kde-format msgid "Indicate whether the window is active by drawing a border" -msgstr "" +msgstr "Cluder li fenestre" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Monstrar un vertical linea in columne:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "

            Arangeament del complex textu

            " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Arangeament del complex textu" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:887 +#, fuzzy, kde-format msgid "Enable word mode text rendering" -msgstr "" +msgstr "Comande del redactor de textus: " #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:890 +#, fuzzy, kde-format msgid "Word mode" -msgstr "" +msgstr "Por &printation (nigri textu sin funde)" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:903 +#, fuzzy, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " "when rendering)" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 -#, kde-format -msgid "Use the same attributes for whole word" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 -#, kde-format -msgid "Render words of ASCII characters together" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 -#, fuzzy, kde-format -#| msgid "Word characters:" -msgid "ASCII characters " msgstr "Caracteres de paroles:" -#. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) +#: widgets/EditProfileAppearancePage.ui:906 +#, fuzzy, kde-format +msgid "Use the same attributes for whole word" +msgstr "Caracteres de paroles:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) +#: widgets/EditProfileAppearancePage.ui:919 +#, fuzzy, kde-format +msgid "Render words of ASCII characters together" +msgstr "Collar &sin caracteres de control" + +#. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format +msgid "ASCII characters " +msgstr "Caracteres ASCII" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) +#: widgets/EditProfileAppearancePage.ui:935 +#, fuzzy, kde-format msgid "Render words of Brahmic scripts characters together" -msgstr "" +msgstr "Collar &sin caracteres de control" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 -#, fuzzy, kde-format +#: widgets/EditProfileAppearancePage.ui:938 +#, kde-format msgid "Brahmic scripts characters" -msgstr "Caracter" +msgstr "Caracteres de brahmic scriptes" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Fonde de emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:977 +#, fuzzy, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " "Hebrew only)" -msgstr "" +msgstr "Monstrar li menú de parametres" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:980 +#, fuzzy, kde-format msgid "Bi-Directional text rendering" -msgstr "" +msgstr "Comande del redactor de textus: " #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "Lineas es solmen LaD in vice del direction del prim fort caracter" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:996 +#, fuzzy, kde-format msgid "force LTR line direction" -msgstr "" +msgstr "Selecter li &linea" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Caracteres de dessin de tabelles es fortmen LaD." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:1012 +#, fuzzy, kde-format msgid "Table characters BiDi mode override" -msgstr "" +msgstr "Caracteres de dessin de tabelles es fortmen LaD." #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Paste &without control characters" @@ -4146,109 +4379,116 @@ msgid "Ignore wcwidth of problematic characters" msgstr "Collar &sin caracteres de control" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Modificar li profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "General" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Cartes" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aspecte" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rulament" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Rapid-tastes" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avansat" -#: widgets/EditProfileDialog.cpp:287 -#, kde-kuit-format +#: widgets/EditProfileDialog.cpp:291 +#, fuzzy, kde-kuit-format msgctxt "@info" msgid "" "Insufficient permissions to save settings to: %1.Either change the permissions of that file or set a different name to save " "the settings to a new profile." -msgstr "" +msgstr "Un profil con li nómine «%1» ja existe." -#: widgets/EditProfileDialog.cpp:304 -#, kde-format +#: widgets/EditProfileDialog.cpp:308 +#, fuzzy, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." -msgstr "" +msgstr "Un profil con li nómine «%1» ja existe." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Un profil con li nómine «%1» ja existe." -#: widgets/EditProfileDialog.cpp:342 -#, kde-format +#: widgets/EditProfileDialog.cpp:346 +#, fuzzy, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." -msgstr "" +msgstr "Un profil con li nómine «%1» ja existe." -#: widgets/EditProfileDialog.cpp:380 -#, kde-format +#: widgets/EditProfileDialog.cpp:384 +#, fuzzy, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." -msgstr "" +msgstr "Un profil con li nómine «%1» ja existe." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "" -msgstr[1] "" +msgstr[1] "Gerentie de profiles..." -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Crear un nov profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, fuzzy, kde-format msgid "Edit Profile \"%1\"" -msgstr "Modificar _profil" +msgstr "Redacter" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Necú" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4258,7 +4498,7 @@ msgid_plural " columns" msgstr[0] " columne" msgstr[1] " columnes" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4268,42 +4508,42 @@ msgid_plural " rows" msgstr[0] " range" msgstr[1] " ranges" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sonette del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificationes del sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Visualisar sonette" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format msgid "Ignore Bell Events" -msgstr "Eveniment del sonette" +msgstr "Sonette del sistema" -#: widgets/EditProfileDialog.cpp:535 -#, kde-format +#: widgets/EditProfileDialog.cpp:570 +#, fuzzy, kde-format msgid "Default profile for new terminal sessions in %1" -msgstr "" +msgstr "Predefinit" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, fuzzy, kde-format msgid "Edit Environment" -msgstr "Ambiente:" +msgstr "Redacter" -#: widgets/EditProfileDialog.cpp:641 -#, kde-format +#: widgets/EditProfileDialog.cpp:678 +#, fuzzy, kde-format msgid "One environment variable per line" -msgstr "" +msgstr "Selecter li &linea" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4311,44 +4551,44 @@ msgid_plural " seconds" msgstr[0] " seconde" msgstr[1] " secondes" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, fuzzy, kde-format msgid "Select Initial Directory" -msgstr "Inicial fólder:" +msgstr "&Selecter omnicos" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format msgid "Get New..." -msgstr "_Crear/" +msgstr "Aperter un nov carte" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Ne successat cargar li schema %1." -#: widgets/EditProfileDialog.cpp:1521 -#, kde-format +#: widgets/EditProfileDialog.cpp:1588 +#, fuzzy, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" -msgstr "" +msgstr "OIS" -#: widgets/EditProfileDialog.cpp:1527 -#, kde-format +#: widgets/EditProfileDialog.cpp:1594 +#, fuzzy, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." -msgstr "" +msgstr "Konsole" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" -msgstr "Profil predefinit" +msgstr "File" -#: widgets/EditProfileDialog.cpp:1939 -#, kde-format +#: widgets/EditProfileDialog.cpp:2021 +#, fuzzy, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" "\n" @@ -4362,12 +4602,12 @@ msgid "" "If PATH or LINE aren't present in the command, this setting\n" "will be ignored and the file will be opened by the default text\n" "editor." -msgstr "" +msgstr "File" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, fuzzy, kde-format msgid "Text Editor Custom Command" -msgstr "Redactor de textus" +msgstr "Comande:" #. i18n: ectx: attribute (title), widget (QWidget, general) #: widgets/EditProfileGeneralPage.ui:42 @@ -4377,9 +4617,9 @@ msgstr "General parametres" #. i18n: ectx: property (toolTip), widget (QPushButton, iconSelectButton) #: widgets/EditProfileGeneralPage.ui:66 -#, kde-format +#, fuzzy, kde-format msgid "Select the icon displayed on tabs using this profile" -msgstr "" +msgstr "Cartes" #. i18n: ectx: property (toolTip), widget (QLineEdit, profileNameEdit) #: widgets/EditProfileGeneralPage.ui:84 @@ -4408,11 +4648,11 @@ msgstr "Comande:" #. i18n: ectx: property (toolTip), widget (QLineEdit, commandEdit) #: widgets/EditProfileGeneralPage.ui:138 -#, kde-format +#, fuzzy, kde-format msgid "" "The command to execute when new terminal sessions are created using this " "profile" -msgstr "" +msgstr "Comande" #. i18n: ectx: property (placeholderText), widget (QLineEdit, commandEdit) #: widgets/EditProfileGeneralPage.ui:144 @@ -4425,14 +4665,14 @@ msgstr "/bin/sh" #, fuzzy, kde-format #| msgid "Initial directory:" msgid "I&nitial directory:" -msgstr "Inicial fólder:" +msgstr "Actual fólder (curt): %d" #. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:170 -#, kde-format +#, fuzzy, kde-format msgid "" "The initial working directory for new terminal sessions using this profile" -msgstr "" +msgstr "Un descritiv nómine del profile" #. i18n: ectx: property (placeholderText), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:176 @@ -4444,82 +4684,109 @@ msgstr "/home/nómine-de-usator" #: widgets/EditProfileGeneralPage.ui:183 #, fuzzy, kde-format msgid "Choose the initial directory" -msgstr "Inicial fólder:" +msgstr "Actual fólder (long): %D" #. i18n: ectx: property (text), widget (QCheckBox, startInSameDirButton) #: widgets/EditProfileGeneralPage.ui:193 #, fuzzy, kde-format msgid "Start in same directory as current session" -msgstr "Li témpore Unix de inicie del actual session." +msgstr "Actual fólder (curt): %d" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +msgid "Enter same container as current session" +msgstr "Actual fólder (curt): %d" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ambiente:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 -#, kde-format +#: widgets/EditProfileGeneralPage.ui:273 +#, fuzzy, kde-format msgid "Edit the list of environment variables and associated values" -msgstr "" +msgstr "Redacter" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" -msgstr "Inicial dimension de terminal:" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 -#, kde-format +#: widgets/EditProfileGeneralPage.ui:395 +#, fuzzy, kde-format msgctxt "@info" msgid "" "

            Settings → " "Configure Konsole → General → Remember window size must be disabled " "for these entries to work.

            " -msgstr "" +msgstr "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal bell mode:" msgid "&Terminal bell mode:" -msgstr "Mode del sonette de terminal:" +msgstr "Restituer li terminal" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantic integration" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, fuzzy, kde-format msgid "Up/Down Arrows emulation" -msgstr "Changear li volúmine" +msgstr "Extinter" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 -#, kde-format +#: widgets/EditProfileGeneralPage.ui:442 +#, fuzzy, kde-format msgid "Mouse click in input line moves cursor" -msgstr "" +msgstr " linea" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, fuzzy, kde-format msgid "Semantic hints:" -msgstr "Semantic anotationes" +msgstr "Configurar integration de semantica (bash)" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsNever) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4530,67 +4797,67 @@ msgstr "Nequande" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, fuzzy, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" -msgstr "URL predefinit por creation un ligament" +msgstr "Monstrar li buton «Nov carte»" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 -#, kde-format +#: widgets/EditProfileGeneralPage.ui:501 +#, fuzzy, kde-format msgid "Red error bars:" -msgstr "" +msgstr "Rubi sur nigri" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format msgid "Red error background:" -msgstr "Quam li _funde" +msgstr "Rubi sur nigri" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format msgid "Alternating background:" -msgstr "Quam li _funde" +msgstr "Funde" #. i18n: ectx: property (text), widget (QLabel, note) #: widgets/EditProfileKeyboardPage.ui:17 -#, kde-format +#, fuzzy, kde-format msgctxt "@info" msgid "" "Key bindings control how combinations of keystrokes in the terminal window " "are converted into the stream of characters that is then sent to the current " "terminal program. For more information on how to customize the key bindings " "check the Konsole Handbook." -msgstr "" +msgstr "Hay %1 apertet terminales in ti fenestre. Surtir sin egard?" #. i18n: ectx: property (toolTip), widget (QPushButton, newKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:60 -#, kde-format +#, fuzzy, kde-format msgid "Create a new key bindings scheme based upon the selected bindings" -msgstr "" +msgstr "Ne successat cargar li schema %1." #. i18n: ectx: property (text), widget (QPushButton, newKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:63 @@ -4601,21 +4868,21 @@ msgstr "Nov..." #. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:70 -#, kde-format +#, fuzzy, kde-format msgid "Edit the selected key bindings scheme" -msgstr "" +msgstr "Redacter" #. i18n: ectx: property (toolTip), widget (QPushButton, removeKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:80 -#, kde-format +#, fuzzy, kde-format msgid "Delete the selected key bindings scheme" -msgstr "" +msgstr "Remover" #. i18n: ectx: property (toolTip), widget (QPushButton, resetKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:90 -#, kde-format +#, fuzzy, kde-format msgid "Reset the selected key bindings scheme to its default values" -msgstr "" +msgstr "Predefinit" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: widgets/EditProfileMousePage.ui:36 @@ -4626,12 +4893,12 @@ msgstr "Interaction con textu" #. i18n: ectx: property (toolTip), widget (QLabel, label_11) #. i18n: ectx: property (toolTip), widget (QLineEdit, wordCharacterEdit) #: widgets/EditProfileMousePage.ui:50 widgets/EditProfileMousePage.ui:71 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:tooltip" msgid "" "Characters which are considered part of a word when double-clicking to " "select whole words in the terminal." -msgstr "" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QLabel, label_11) #: widgets/EditProfileMousePage.ui:53 @@ -4650,14 +4917,14 @@ msgstr "Triplic clic selecte:" #, fuzzy, kde-format #| msgid "The whole line" msgid "&The whole line" -msgstr "Li tot linea" +msgstr "Selecter un image de funde" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 #, fuzzy, kde-format #| msgid "From mouse position to the end of line" msgid "From mouse position to the end of &line" -msgstr "Del position del mus al fin del linea" +msgstr " linea" #. i18n: ectx: property (text), widget (QLabel, label_13) #: widgets/EditProfileMousePage.ui:140 @@ -4679,15 +4946,15 @@ msgstr "Li selection" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/EditProfileMousePage.ui:186 -#, fuzzy, kde-format +#, kde-format msgid "Copy options:" -msgstr "_Optiones..." +msgstr "Parametres de copiation:" #. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextToClipboardButton) #: widgets/EditProfileMousePage.ui:196 #, fuzzy, kde-format msgid "Automatically copy selected text into clipboard" -msgstr "Copiar li selectet textu al Paperiere" +msgstr "Copiar" #. i18n: ectx: property (text), widget (QCheckBox, copyTextToClipboardButton) #: widgets/EditProfileMousePage.ui:199 @@ -4697,9 +4964,9 @@ msgstr "Copiar pos selection" #. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextAsHTMLButton) #: widgets/EditProfileMousePage.ui:206 -#, kde-format +#, fuzzy, kde-format msgid "Copy text as HTML (including formatting, font faces, colors... etc)" -msgstr "" +msgstr "Copiar" #. i18n: ectx: property (text), widget (QCheckBox, copyTextAsHTMLButton) #: widgets/EditProfileMousePage.ui:209 @@ -4709,9 +4976,9 @@ msgstr "Copiar textu quam HTML" #. i18n: ectx: property (toolTip), widget (QCheckBox, trimLeadingSpacesButton) #: widgets/EditProfileMousePage.ui:216 -#, kde-format +#, fuzzy, kde-format msgid "Trim leading spaces in selected text, useful in some instances" -msgstr "" +msgstr "Comande del redactor de textus: " #. i18n: ectx: property (text), widget (QCheckBox, trimLeadingSpacesButton) #: widgets/EditProfileMousePage.ui:219 @@ -4721,9 +4988,9 @@ msgstr "Remover inicial spacies" #. i18n: ectx: property (toolTip), widget (QCheckBox, trimTrailingSpacesButton) #: widgets/EditProfileMousePage.ui:226 -#, kde-format +#, fuzzy, kde-format msgid "Trim trailing spaces in selected text, useful in some instances" -msgstr "" +msgstr "Comande del redactor de textus: " #. i18n: ectx: property (text), widget (QCheckBox, trimTrailingSpacesButton) #: widgets/EditProfileMousePage.ui:229 @@ -4733,11 +5000,11 @@ msgstr "Remover final spacies" #. i18n: ectx: property (toolTip), widget (QCheckBox, underlineLinksButton) #: widgets/EditProfileMousePage.ui:266 -#, kde-format +#, fuzzy, kde-format msgid "" "Text recognized as a link or an email address will be underlined when " "hovered by the mouse pointer." -msgstr "" +msgstr "Aperter li ligament" #. i18n: ectx: property (text), widget (QCheckBox, underlineLinksButton) #: widgets/EditProfileMousePage.ui:269 @@ -4747,11 +5014,11 @@ msgstr "Sublinear ligamentes" #. i18n: ectx: property (toolTip), widget (QCheckBox, underlineFilesButton) #: widgets/EditProfileMousePage.ui:276 -#, kde-format +#, fuzzy, kde-format msgid "" "Text recognized as a file will be underlined when hovered by the mouse " "pointer." -msgstr "" +msgstr "File" #. i18n: ectx: property (text), widget (QCheckBox, underlineFilesButton) #: widgets/EditProfileMousePage.ui:279 @@ -4762,10 +5029,10 @@ msgstr "Sublinear files" #. i18n: ectx: property (toolTip), widget (QLabel, textEditorCommandLabel) #. i18n: ectx: property (toolTip), widget (QComboBox, textEditorCombo) #: widgets/EditProfileMousePage.ui:288 widgets/EditProfileMousePage.ui:307 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Text editor to use when opening text file URLs at a given line/column." -msgstr "" +msgstr "File" #. i18n: ectx: property (text), widget (QLabel, textEditorCommandLabel) #: widgets/EditProfileMousePage.ui:291 @@ -4775,17 +5042,17 @@ msgstr "Comande del redactor de textus: " #. i18n: ectx: property (toolTip), widget (QCheckBox, openLinksByDirectClickButton) #: widgets/EditProfileMousePage.ui:335 -#, kde-format +#, fuzzy, kde-format msgid "" "Text recognized as a file, link or an email address can be opened by direct " "mouse click." -msgstr "" +msgstr "File" #. i18n: ectx: property (text), widget (QCheckBox, openLinksByDirectClickButton) #: widgets/EditProfileMousePage.ui:338 #, fuzzy, kde-format msgid "Open files/links by direct click" -msgstr "_Aperter elementes por singul clic" +msgstr "Aperter" #. i18n: ectx: property (text), widget (QCheckBox, allowLinkEscapeSequenceButton) #: widgets/EditProfileMousePage.ui:349 @@ -4795,30 +5062,30 @@ msgstr "Permisser sequenties escape in ligamentes" #. i18n: ectx: property (text), widget (QLabel, allowLinkEscapeSequenceButtonWarning) #: widgets/EditProfileMousePage.ui:356 -#, kde-format +#, fuzzy, kde-format msgid "" "WARNING: This has security implications as it allows malicious URLs " "to be shown as another URL or hidden.
            Make sure you understand the " "implications before turning this on." -msgstr "" +msgstr "Avise: " #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/EditProfileMousePage.ui:374 #, fuzzy, kde-format msgid "Allowed link formats: " -msgstr "Formates" +msgstr "Aperter li ligament" #. i18n: ectx: property (toolTip), widget (QLineEdit, linkEscapeSequenceTexts) #: widgets/EditProfileMousePage.ui:384 -#, kde-format +#, fuzzy, kde-format msgid "The formats of possible links, like http://, https:// and file://" -msgstr "" +msgstr "File" #. i18n: ectx: property (toolTip), widget (QCheckBox, ctrlRequiredForDragButton) #: widgets/EditProfileMousePage.ui:395 -#, kde-format +#, fuzzy, kde-format msgid "Selected text will require control key plus click to drag." -msgstr "" +msgstr "Comande del redactor de textus: " #. i18n: ectx: property (text), widget (QCheckBox, ctrlRequiredForDragButton) #: widgets/EditProfileMousePage.ui:398 @@ -4828,71 +5095,71 @@ msgstr "Besonar li taste Ctrl por tirar-e-cader" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableAlternateScrollingButton) #: widgets/EditProfileMousePage.ui:405 -#, kde-format +#, fuzzy, kde-format msgid "" "Mouse scroll wheel will emulate up/down key presses in programs that use the " "Alternate Screen buffer (e.g. less)" -msgstr "" +msgstr "Mus" #. i18n: ectx: property (text), widget (QCheckBox, enableAlternateScrollingButton) #: widgets/EditProfileMousePage.ui:408 -#, kde-format +#, fuzzy, kde-format msgid "Enable Alternate Screen buffer scrolling" -msgstr "" +msgstr "&Printar li ecran..." #. i18n: ectx: property (toolTip), widget (QCheckBox, dropUrlsAsText) #: widgets/EditProfileMousePage.ui:415 -#, kde-format +#, fuzzy, kde-format msgid "" "Always paste dropped files and URLs as text without offering move, copy and " "link actions." -msgstr "" +msgstr "Copiar" #. i18n: ectx: property (text), widget (QCheckBox, dropUrlsAsText) #: widgets/EditProfileMousePage.ui:418 -#, kde-format +#, fuzzy, kde-format msgid "Disable drag && drop menu for files && URLs" -msgstr "" +msgstr "Monstrar li menú de parametres" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableMouseWheelZoomButton) #: widgets/EditProfileMousePage.ui:425 -#, kde-format +#, fuzzy, kde-format msgid "Pressing Ctrl+scrollwheel will increase/decrease the text size." -msgstr "" +msgstr "Ctrl" #. i18n: ectx: property (text), widget (QCheckBox, enableMouseWheelZoomButton) #: widgets/EditProfileMousePage.ui:428 -#, kde-format +#, fuzzy, kde-format msgid "Allow Ctrl+scrollwheel to zoom text size" -msgstr "" +msgstr "Ctrl" #. i18n: ectx: property (toolTip), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:435 -#, kde-format +#, fuzzy, kde-format msgid "" "When positioning the mouse over a hexadecimal color it will be displayed in " "a frame next to the mouse pointer" -msgstr "" +msgstr "Color:" #. i18n: ectx: property (text), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:438 #, fuzzy, kde-format msgid "Preview Colors on hover" -msgstr "Previder" +msgstr "Copiar pos selection" #. i18n: ectx: property (toolTip), widget (QCheckBox, allowMouseTrackingButton) #: widgets/EditProfileMousePage.ui:458 -#, kde-format +#, fuzzy, kde-format msgid "" "Some terminal applications have mouse support, this allows them to get it by " "default. It can be toggled on/off while running as well." -msgstr "" +msgstr "Predefinit" #. i18n: ectx: property (text), widget (QCheckBox, allowMouseTrackingButton) #: widgets/EditProfileMousePage.ui:461 -#, kde-format +#, fuzzy, kde-format msgid "Allow terminal applications to handle clicks and drags" -msgstr "" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QLabel, historySizeLabel) #: widgets/EditProfileScrollingPage.ui:25 @@ -4901,120 +5168,132 @@ msgid "Scrollback:" msgstr "Buffre:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format msgid "Scroll Page Up/Down:" -msgstr "Rular un mi-págine a-bass" +msgstr "Extinter" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, fuzzy, kde-format -msgid "Scroll the page the half height of window" -msgstr "Rular un mi-págine a-bass" +msgid "Highlight the lines coming into view" +msgstr "Fender li vise" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half screen height" -msgid "Half screen heigh&t" -msgstr "Demí-ecran" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full screen height" -msgid "F&ull screen height" -msgstr "Plen-ecran" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -msgid "Scrollbar position:" -msgstr "_Barre de rulament es:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the right side" -#| msgid "Right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Al dextri latere" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the left side" -#| msgid "Left side" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Al levul latere" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Celat" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, fuzzy, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Dimension: %1 x %2" + #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 +#: widgets/EditProfileScrollingPage.ui:97 #, kde-format msgid "Highlighting:" msgstr "Coloration:" -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 #, fuzzy, kde-format -msgid "Reflow Lines:" -msgstr "Lineas:" +msgid "Scroll the page the half height of window" +msgstr "Nov &fenestre" -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, fuzzy, kde-format +#| msgid "Half screen height" +msgid "Half screen heigh&t" +msgstr "&Printar li ecran..." #. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format +#: widgets/EditProfileScrollingPage.ui:142 +#, fuzzy, kde-format msgid "Color of scrollbar markers:" -msgstr "" +msgstr "Color:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, fuzzy, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Color:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, fuzzy, kde-format +msgid "Reflow Lines:" +msgstr "Li númere de pixeles inter du lineas" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, fuzzy, kde-format +msgid "Scroll the page the full height of window" +msgstr "Li titul assignat de shell: %w" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, fuzzy, kde-format +#| msgid "Full screen height" +msgid "F&ull screen height" +msgstr "&Printar li ecran..." + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, fuzzy, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Processu e fenestre:" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgctxt "@option:radio Show scrollbar on the right side" +#| msgid "Right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Fender li vise verticalmen" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, fuzzy, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Processu e fenestre:" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Show scrollbar on the left side" +#| msgid "Left side" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Levul" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, fuzzy, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "Restituer li terminal" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +msgid "Scrollbar position:" +msgstr "Position:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5033,13 +5312,13 @@ msgstr "Supervision del carte" #: widgets/EditProfileTabsPage.ui:80 #, fuzzy, kde-format msgid "Threshold for continuous silence:" -msgstr "Límite" +msgstr "Co&ntrolar li ínactivitá" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, silenceSecondsSpinner) #: widgets/EditProfileTabsPage.ui:93 -#, kde-format +#, fuzzy, kde-format msgid "The threshold for continuous silence to be detected by Konsole" -msgstr "" +msgstr "Konsole" #: widgets/HistorySizeWidget.cpp:40 #, kde-format @@ -5050,16 +5329,16 @@ msgstr[0] " linea" msgstr[1] " lineas" #: widgets/HistorySizeWidget.cpp:57 -#, kde-format +#, fuzzy, kde-format msgctxt "@info:whatsthis" msgid "" "When using this option, the scrollback data will be saved to RAM. If you " "choose a huge value, your system may run out of free RAM and cause serious " "issues with your system." -msgstr "" +msgstr "OIS" #: widgets/HistorySizeWidget.cpp:69 -#, kde-kuit-format +#, fuzzy, kde-kuit-format msgctxt "@info:tooltip" msgid "" "When using this option, the scrollback data will be written unencrypted to " @@ -5067,177 +5346,174 @@ msgid "" "Konsole is closed in a normal manner.Use Settings → Configure " "Konsole → Temporary Files to select the location of the temporary " "files." -msgstr "" +msgstr "Konsole" #. i18n: ectx: property (toolTip), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:60 -#, kde-format +#, fuzzy, kde-format msgid "Limit the remembered output to a fixed number of lines" -msgstr "" +msgstr "Nró" #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 #, fuzzy, kde-format #| msgid "Fixed size:" msgid "Fi&xed size:" -msgstr "Fixat grandore:" +msgstr "Dimension: %1 x %2" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 #, fuzzy, kde-format msgid "Number of lines of output to remember" -msgstr "_Númere de lineas de textu:" +msgstr "Numeró de session: %#" #. i18n: ectx: property (toolTip), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:134 -#, kde-format +#, fuzzy, kde-format msgid "Remember all output produced by the terminal" -msgstr "" +msgstr "Restituer li terminal" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgctxt "Save all lines to the scrollback history" -#| msgid "Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "Ínlimitat" +msgstr "Ínli&mitat" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 -#, kde-format +#, fuzzy, kde-format msgid "Do not remember previous output" -msgstr "" +msgstr "Precedent carte" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Null" -#: widgets/IncrementalSearchBar.cpp:49 -#, fuzzy, kde-format +#: widgets/IncrementalSearchBar.cpp:50 +#, kde-format msgctxt "@label:textbox" msgid "Find..." -msgstr "&Trovar..." +msgstr "Serchar..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" -msgstr "Serchar ti-ci" +msgstr "Cluder li panel de sercha" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Seq" -#: widgets/IncrementalSearchBar.cpp:78 -#, kde-format +#: widgets/IncrementalSearchBar.cpp:77 +#, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" -msgstr "" +msgstr "Cluder li panel de sercha" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Prec" -#: widgets/IncrementalSearchBar.cpp:87 -#, kde-format +#: widgets/IncrementalSearchBar.cpp:86 +#, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" -msgstr "" +msgstr "Cluder li panel de sercha" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Atenter a MAJ/min" + +#: widgets/IncrementalSearchBar.cpp:103 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "Cluder li panel de sercha" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "Monstrar li menú de parametres" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, kde-format msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Cluder li panel de sercha" -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Atenter a MAJ/min" - -#: widgets/IncrementalSearchBar.cpp:121 -#, fuzzy, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "Distinter majuscules e minuscules" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" -msgstr "Usar expressiones _regulari" +msgstr "Al sequent corespondentie" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Colorar omni correspondenties" -#: widgets/IncrementalSearchBar.cpp:130 -#, kde-format +#: widgets/IncrementalSearchBar.cpp:137 +#, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" -msgstr "" +msgstr "Comande del redactor de textus: " -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Serchar retro" -#: widgets/IncrementalSearchBar.cpp:135 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:140 -#, kde-format -msgctxt "@item:inmenu" -msgid "No wrap" -msgstr "" - #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format msgctxt "@info:tooltip" -msgid "Sets whether search should stop instead of wrapping" -msgstr "Distinter majuscules e minuscules" +msgid "Sets whether search should start from the bottom" +msgstr "Cluder li panel de sercha" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:147 +#, fuzzy, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "No" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether search should stop instead of wrapping" +msgstr "Cluder li panel de sercha" + +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" -msgstr "In li inicie, continuar del fine?" +msgstr "Cluder li panel de sercha" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" -msgstr "In li inicie, continuar del fine?" +msgstr "Cluder li panel de sercha" #: widgets/KonsolePrintManager.cpp:50 #, fuzzy, kde-format msgid "Print Shell" -msgstr "Shell:" +msgstr "&Printar li ecran..." -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5245,11 +5521,11 @@ msgstr "Null" #. i18n: ectx: property (toolTip), widget (QLineEdit, remoteTabTitleEdit) #: widgets/RenameTabWidget.ui:41 -#, kde-format +#, fuzzy, kde-format msgid "" "Tab title format used when a remote command (e.g. connection to another " "computer via SSH) is being executed" -msgstr "" +msgstr "Titul" #. i18n: ectx: property (text), widget (QLabel, label_2) #: widgets/RenameTabWidget.ui:60 @@ -5262,7 +5538,7 @@ msgstr "Formate de titul de un lontan carte:" #, fuzzy, kde-format #| msgid "Tab title format:" msgid "&Tab title format:" -msgstr "Formate de titul del carte:" +msgstr "Titul" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5272,10 +5548,16 @@ msgstr "Formate de titul de un normal carte:" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgid "Tab Color:" +#, kde-format msgid "Tab Co&lor:" -msgstr "Color de carte" +msgstr "Co&lor de carte:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "Co&lor de carte:" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5309,8 +5591,9 @@ msgid "Local Host: %h" msgstr "Local host: %h" #: widgets/TabTitleFormatButton.cpp:28 +#, fuzzy msgid "User's Bourne prompt sigil: %B" -msgstr "" +msgstr "Signale de usator &1" #: widgets/TabTitleFormatButton.cpp:35 msgid "User Name@ (if given): %U" @@ -5370,36 +5653,56 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restituer li terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Aperter un nov carte" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "S&eparar li carte" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Cluder ti carte" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "S&eparar li carte" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configurar o renominar li carte..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Cluder li carte" +#, fuzzy +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

            This warning will only show once for this Konsole instance.

            " +#~ msgstr "Konsole" + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Atenter a MAJ/min" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Null" diff --git a/local/recipes/kde/konsole/source/po/is/konsole.po b/local/recipes/kde/konsole/source/po/is/konsole.po index 316221e842..84c25e7457 100644 --- a/local/recipes/kde/konsole/source/po/is/konsole.po +++ b/local/recipes/kde/konsole/source/po/is/konsole.po @@ -7,16 +7,16 @@ # Arnar Leósson , 2003. # Svanur Palsson , 2004. # Arnar Leosson , 2004, 2005. -# Sveinn í Felli , 2009, 2010, 2011, 2016, 2023. +# SPDX-FileCopyrightText: 2009, 2010, 2011, 2016, 2023, 2025, 2026 Sveinn í Felli # SPDX-FileCopyrightText: 2023, 2024 gummi msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-10-10 14:44+0000\n" -"Last-Translator: Gummi \n" -"Language-Team: Icelandic \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-03-13 11:30+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,10 +63,10 @@ msgstr "Skoða" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" -msgstr "Kljúfa glugga" +msgstr "Kljúfa skeljaglugga" #. i18n: ectx: Menu (settings) #: ../desktop/konsoleui.rc:41 @@ -99,7 +99,7 @@ msgid "S&crollback" msgstr "A&fturrakning" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Tækjastika setu" @@ -141,8 +141,8 @@ msgid "" "Create a new tab in an existing window rather than creating a new window " "('Run all Konsole windows in a single process' must be enabled)" msgstr "" -"Búa til nýjan flipa í fyrirliggjandi glugga frekar en að búa til nýjanglugga " -"('Keyra alla Konsole-glugga í sömu vinnslu' verður að vera virkt)" +"Búa til nýjan flipa í fyrirliggjandi glugga frekar en að búa til nýjan " +"glugga ('Keyra alla Konsole-glugga í sömu vinnslu' verður að vera virkt)" #: Application.cpp:62 #, kde-format @@ -165,7 +165,7 @@ msgstr "" #, kde-format msgctxt "@info:shell" msgid "Run in a separate process" -msgstr "Keyra í aðskilinni vinnslu" +msgstr "Keyra í aðskildu ferli" #: Application.cpp:66 #, kde-format @@ -182,47 +182,59 @@ msgstr "Fela valmyndastikuna, hnekkja sjálfgefnum stillingum" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Sýna allar verkfærastikur, hnekkja sjálfgefnum stillingum" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Fela allar verkfærastikur, hnekkja sjálfgefnum stillingum" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Sýna flipastikuna, hnekkja sjálfgefnum stillingum" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Fela flipastikuna, hnekkja sjálfgefnum stillingum" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Láta Konsole fylla allan skjáinn í byrjun" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Gera gagnsæjan bakgrunn óvirkan jafnvel þótt kerfið styðji það." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Listi yfir tiltæka prófíla" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Birta heiti allra eiginleika prófílsins og gerð þeirra (til notkunar með -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Breyta gildi fyrir prófílseiginleika." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,7 +244,7 @@ msgstr "" "Skipun sem á að keyra. Þessi valkostur tekur öll eftirfarandi viðföng og því " "þarf að nota hann sem síðasta valkost." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -242,13 +254,13 @@ msgstr "" "Þvinga endurnýtingu á fyrirliggjandi tilviki þótt það rjúfi virkni, t.d. --" "new-tab. Að mestu fyrir aflúsun." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Viðföng send til skipunar" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -266,157 +278,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Forgrunnur" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Bakgrunnur" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Litur 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Litur 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Litur 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Litur 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Litur 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Litur 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Litur 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Litur 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Forgrunnur (skær)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Bakgrunnur (skær)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Litur 1 (skær)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Litur 2 (skær)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Litur 3 (skær)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Litur 4 (skær)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Litur 5 (skær)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Litur 6 (skær)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Litur 7 (skær)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Litur 8 (skær)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Forgrunnur (daufur)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Bakgrunnur (daufur)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Litur 1 (daufur)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Litur 2 (daufur)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Litur 3 (daufur)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Litur 4 (daufur)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Litur 5 (daufur)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Litur 6 (daufur)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Litur 7 (daufur)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Litur 8 (daufur)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -617,7 +629,7 @@ msgstr "Óbreytt" #: colorscheme/ColorSchemeEditor.ui:205 #, kde-format msgid "Wallpaper flip:" -msgstr "Snúningur veggfóðurs:" +msgstr "Umsnúa veggfóðri:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:213 @@ -672,6 +684,39 @@ msgstr "Efst" msgid "AaZz09..." msgstr "AaÖö09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Hýsitölva" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Stuðningur við gáma er ekki tiltækur þegar Konsole keyrir innan í Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [sjálfgefið]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Verkfærasafn" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -717,7 +762,7 @@ msgstr "" msgid "Copy Location" msgstr "Afrita staðsetningu" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Útbý smámynd" @@ -748,13 +793,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Velja leturgerð" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Sýna allar leturgerðir" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -794,17 +839,17 @@ msgstr "Lyklasamsetning" msgid "Output" msgstr "Úttak" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nýr lyklabindingalisti" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Breyta lyklabindingalista" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Ekki er hægt að vista lyklabindingaskema með tóma lýsingu." @@ -812,7 +857,7 @@ msgstr "Ekki er hægt að vista lyklabindingaskema með tóma lýsingu." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -846,225 +891,225 @@ msgstr "Inntak:" msgid "Output:" msgstr "Úttak:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Skjáhermir" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Konsole forritararnir" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Almenn umsjón, villuleiðréttingar og almennar endurbætur" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Fyrrum umsjónaraðili, færði yfir í KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Upprunalegur höfundur" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Meiriháttar endurhönnun, villuleiðréttingar og meiriháttar endurbætur" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Villuleiðréttingar og almennar endurbætur" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Villuleiðréttingar og meiriháttar endurbætur" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Almennar endurbætur" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Villuleiðréttingar" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-stuðningur og ferill" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Villuleiðréttingar og bæting á ræsitíma" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Ýmsar endurbætur" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1074,13 +1119,13 @@ msgstr "" "Innfelldur Konsole\n" "Tækjastika og setuheiti" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1090,25 +1135,25 @@ msgstr "" "Innfelldur Konsole\n" "Almennar endurbætur" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Sjónrænar brellur" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1118,201 +1163,201 @@ msgstr "" "Kóði frá kvt-verkefninu\n" "Almennar endurbætur" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Endurbætur á skema og textavali" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-útgáfa" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-útgáfa" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Þakkir til margra annarra.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nýr flipi" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klóna flipa" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nýr &gluggi" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Loka glugga" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Bókamerki" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Litastef glugga" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Umsjón prófíla..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Virkja valmynd" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Vista flipaframsetningu..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Hlaða inn flipaframsetningu..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" -msgstr[0] "Það er vinnsla í gangi í þessum glugga. Viltu samt hætta?" -msgstr[1] "Það eru %1 vinnslur í gangi í þessum glugga. Viltu samt hætta?" +msgstr[0] "Það er ferli í gangi í þessum glugga. Viltu samt hætta?" +msgstr[1] "Það eru %1 ferli í gangi í þessum glugga. Viltu samt hætta?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Staðfesta lokun" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Loka &glugga" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Loka núverandi &flipa" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Það eru %1 skeljar opnar í þessum glugga. Viltu samt hætta?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Prófílar" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Almennt" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Minni" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Flipastika / kljúfar" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Bráðabirgðaskrár" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Smámyndir" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1380,7 +1425,7 @@ msgstr "Skipun" #: plugins/QuickCommands/quickcommandswidget.cpp:333 #, kde-format msgid "Warnings" -msgstr "Aðvaranir" +msgstr "Viðvaranir" #. i18n: ectx: property (text), widget (QPushButton, btnRun) #: plugins/QuickCommands/qcwidget.ui:236 @@ -1396,7 +1441,7 @@ msgstr "Vista" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Uppfæra" @@ -1408,29 +1453,29 @@ msgid "Cancel" msgstr "Hætta við" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Flýtiskipanir" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Sýna flýtiaðgang" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -"Engar flýtiskipanir fundust. Þú getur bætt slíku við í Viðbætur -> " +"Engar flýtiskipanir fundust. Þú getur bætt þeim við í Viðbætur -> " "Flýtiskipanir" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Viðbætur - Flýtiskipanir" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Sýna flýtiskipanir" @@ -1445,7 +1490,7 @@ msgstr "Tvítekið atriði er til staðar" #, kde-format msgid "Please fix all the warnings before trying to run this script" msgstr "" -"Lagaðu endilega allar aðvaranir áður en reynt er að keyra þessa skriftu" +"Lagaðu endilega allar viðvaranir áður en reynt er að keyra þessa skriftu" #: plugins/QuickCommands/quickcommandswidget.cpp:215 #, kde-format @@ -1455,7 +1500,7 @@ msgstr "Það eru villur í skriftunni. Viltu í alvörunni keyra hana?" #: plugins/QuickCommands/quickcommandswidget.cpp:216 #, kde-format msgid "Shell Errors" -msgstr "Villur í skel" +msgstr "Skeljavillur" #: plugins/QuickCommands/quickcommandswidget.cpp:217 #, kde-format @@ -1473,7 +1518,7 @@ msgstr "" " með ýmsar grunnstillingar, ertu viss?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Þú ert að fara að eyða %1, ertu viss?" @@ -1506,7 +1551,7 @@ msgstr "Eyða" #: plugins/QuickCommands/quickcommandswidget.cpp:335 #, kde-format msgid "Warnings (*)" -msgstr "Aðvaranir (*)" +msgstr "Viðvaranir (*)" #: plugins/SSHManager/sshmanagermodel.cpp:46 #, kde-format @@ -1526,11 +1571,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 er mappa fyrir SSH-færslur" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Grunnstilling SSH" @@ -1559,7 +1604,7 @@ msgstr "Sýna flýtiaðgang fyrir SSH-aðgerðir" #, kde-format msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" msgstr "" -"Engar vistaðar SSH-uppsetningar fundust. Þú getur bætt slíku við í Viðbætur -" +"Engar vistaðar SSH-uppsetningar fundust. Þú getur bætt þeim við í Viðbætur -" "> SSH-stýring" #: plugins/SSHManager/sshmanagerplugin.cpp:147 @@ -1577,7 +1622,7 @@ msgstr "SSH-færslur" msgid "" "Could not get the process name, assume that we can't request a connection" msgstr "" -"Tókst ekki að sækja vinnsluheiti, gerðu ráð fyrir að við getum ekki beðið um " +"Gat ekki sótt heiti ferlis, gera má ráð fyrir að við getum ekki beðið um " "tengingu" #: plugins/SSHManager/sshmanagerplugin.cpp:182 @@ -1590,27 +1635,28 @@ msgstr "Villa við að gefa út SSH-skipun" #, kde-format msgid "" "Can't issue SSH command outside the shell application (eg, bash, zsh, sh)" -msgstr "Get ekki gefið SSH-skipanir utan við skeljaforrit (t.d. bash, zsh, sh)" +msgstr "" +"Get ekki gefið SSH-skipanir utan við skeljaforritið (t.d. bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH-lykill" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Eyða" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ekki breyta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1619,73 +1665,73 @@ msgstr "" "Þú ert að fara að eyða möppunni %1\n" " sem inniheldur ýmsar SSH-grunnstillingar, ertu viss?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Eyða SSH-grunnstillingum" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "Flutti inn SSH-forsnið
            Sumar stillingar eru skrifvarðar." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Vélarheiti vantar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Heiti vantar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Ef stillt er á Nota Ssh-grunnstillingu, skal ekki tilgreina ssh-lykil eða " "notandanafn." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Stilla verður annað hvort notandanafn eða SSH-lykil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Möppu vantar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH-seta verður að vera með prófíl" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Get ekki eytt þessari möppu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Eyða möppu og öllu innihaldi hennar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Tvísmelltu til að breyta möppuheitinu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Þú getur ekki eytt færslu sem var bætt við sjálfkrafa." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" -msgstr "Breyta valinni færslu" +msgstr "Eyða valinni færslu" #. i18n: ectx: property (text), widget (QLabel, label_6) #: plugins/SSHManager/sshwidget.ui:19 @@ -1703,7 +1749,7 @@ msgstr "Sýna færslur sem samsvara ekki síunni" #: plugins/SSHManager/sshwidget.ui:57 #, kde-format msgid "Change profile on connect/disconnect" -msgstr "Breyta prófíl við tengingu/aftengingu" +msgstr "Skipta um prófíl við tengingu/aftengingu" #. i18n: ectx: property (text), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:60 @@ -1746,13 +1792,13 @@ msgstr "Vélarheiti þjónsins" #: plugins/SSHManager/sshwidget.ui:116 #, kde-format msgid "Port" -msgstr "Gátt" +msgstr "Tengi" #. i18n: ectx: property (toolTip), widget (QLineEdit, port) #: plugins/SSHManager/sshwidget.ui:123 #, kde-format msgid "The port of the server, 22 is the default for ssh connections" -msgstr "Gátt þjónsins, 22 er sjálfgefið fyrir ssh-tengingar" +msgstr "Tengi þjónsins, 22 er sjálfgefið fyrir ssh-tengingar" #. i18n: ectx: property (text), widget (QLineEdit, port) #: plugins/SSHManager/sshwidget.ui:126 @@ -1846,7 +1892,7 @@ msgstr "Eyða völdum SSH-færslum" #: plugins/SSHManager/sshwidget.ui:297 #, kde-format msgid "Edit selected entry" -msgstr "Eyða valinni færslu" +msgstr "Breyta valinni færslu" #. i18n: ectx: property (toolTip), widget (QPushButton, btnAdd) #: plugins/SSHManager/sshwidget.ui:307 @@ -1874,25 +1920,25 @@ msgstr "Úttaksvalkostir" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Prent&vænt snið (svartur texti, enginn bakgrunnur)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Kvarða úttak" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Innbyggt" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Sjálfgefinn prófíll" @@ -1951,17 +1997,40 @@ msgstr "Tvísmelltu til að breyta flýtilyklinum" msgid "Tab Properties" msgstr "Eiginleikar flipa" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Vista úttak frá %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 er ógild slóð, ekki tókst að vista úttakið." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Mistókst að búa til sjálfvirka vistunarskrá á %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Stöðva sjálfvirka vistun þar sem verið er að skipta um skjá." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Sjálfvirkri vistunarskrá var breytt utan frá sem kemur í veg fyrir frekari " +"sjálfvirka vistun." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Mistókst að uppfæra sjálfvirka vistunarstöðu á breytingum á úttaki." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1997,81 +2066,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Dökkir pastellitir" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Grænt á svörtu" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-litir" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rautt á svörtu" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized ljóst" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Hvítt á svörtu" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Sjálfgefið (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-skjáhermir" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-skjáhermir" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Leita..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Settu hér inn heiti flipa til að leita að" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Bjalla í '%1' (seta '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Fann ekki tvíundarskrá: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Aðvörun: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Fann ekki gagnvirka skel til að ræsa." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2080,337 +2166,340 @@ msgstr "" "Fann ekki '%1', ræsi '%2' í staðinn. Þú ættir að athuga stillingar " "prófílsins þíns." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Tókst ekki að ræsa forritið '%1' með viðföngum '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Þögn í '%1' (seta '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Sýna setu" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" -"Verið var að nota D-Bus aðferðirnar sendText/runCommand. Það er viss " -"öryggisáhætta fólgin í því að leyfa þessum aðferðum að vera opnar öllum. Ef " -"þess er óskað er hægt að breyta þessu þannig að aðferðirnar séu einungis " -"notaðar í innri vinnslu með því að vistþýða Konsole aftur.

            Þessi viðvörun " -"verður aðeins birt einu sinni fyrir þetta tilvik af Konsole.

            " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Lokið" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Forritið '%1' hrundi." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." -msgstr "Forritið '%1' hætti með stöðuna %2." +msgstr "Forritið '%1' stöðvaðist með stöðuna %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Framvinda ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Virkni í '%1' (seta '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"Öryggisviðkvæmir hlutar í DBus API hafa verið gerðir óvirkir í stillingum." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" -msgstr "Vinnslan '%1' lauk keyrslu í setunni '%2'" +msgstr "Ferlið '%1' lauk keyrslu í setunni '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole veit ekki hvernig á að opna bókamerkið: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Leita að '%1' með" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Grunnstilla vefflýtilykla..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Loka setu" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Opna skráastjóra" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Afrita" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" -msgstr "Kljúfa sýn lóðrétt" +msgstr "Kljúfa skeljaglugga lóðrétt" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" -msgstr "Kljúfa sýn lárétt" +msgstr "Kljúfa skeljaglugga lárétt" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" -msgstr "Afrita að kvaðningum undanskildum" +msgstr "Afrita nema kvaðningar" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" -msgstr "Afrita inntak notanda" +msgstr "Afrita notandainntak" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Afrita úttak skipunar" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Líma val" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Vefleit" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Velja allt" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Velja &snið" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Velja &línu" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Vista útt&ak sem..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Vista úttak sjálfvirkt sem..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Stöðva sjálfvirka vistun" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Prenta skjá..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Stilla afturrakningu..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Hreinsa afturrakningu" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Hreinsa afturrakningu og endurstilla" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Næsti prófíll" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Fyrri prófíll" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Skipta um prófíl" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Velja stafa&töflu" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" -msgstr "Leyfa músarvirkni" +msgstr "Leyfa músarrakningu" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Skrifvarið" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Grunnstilla eða endurnefna flipa..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Alla flipa í núverandi glugga" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Velja flipa..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "E&ngan" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Afrita inntak í" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem-upphleðsla..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Einnota vaktarar (One-Shot)" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Vakta &kvaðningu" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Vakta &virkni" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Vakta &þögn" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" -msgstr "Vakta að &vinnslu ljúki" +msgstr "Vakta að ferli ljúki" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Stækka letur" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Minnka letur" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Endurstilla leturstærð" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Senda merki" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Setja verk í bið" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Halda verki áfram" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Leggja á" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Rjúfa verk" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Ljúka verki" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Drepa verk" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Notandamerki &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Notandamerki &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Búa til nýjan prófíl..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Breyta núverandi prófíl..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2418,7 +2507,7 @@ msgid "" msgstr "" "Forrit er í gangi í þessari setu. Ertu viss um að þú viljir loka henni?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2427,18 +2516,18 @@ msgstr "" "Forritið '%1' er í gangi í þessari setu. Ertu viss um að þú viljir loka " "henni?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Staðfesta lokun" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Loka forriti" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2447,37 +2536,37 @@ msgstr "" "Forrit í þessari lotu neitar að deyja. Ertu viss um að þú viljir drepa það " "með valdi?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Forritið '%1' í þessari lotu neitar að deyja. Ertu viss um að þú viljir " -"drepa það með valdi?" +"slátra því með valdi?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Drepa forrit" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Skeljakvaðningin er birt í setu '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Opna núverandi möppu með" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Vista ZModem-niðurhal í..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2488,13 +2577,13 @@ msgstr "" "forrit fannst í tölvunni.

            Þú vilt kannski setja upp pakkann 'rzsz' eða " "'lrzsz'.

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "

            Núverandi seta er nú þegar með ZModem-skráaflutning í gangi.

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2503,7 +2592,7 @@ msgstr "" "

            Ekkert viðeigandi ZModem-forrit fannst í tölvunni.

            Þú vilt kannski " "setja upp pakkann 'rzsz' eða 'lrzsz'.

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Velja skrár fyrir ZModem-upphleðslu" @@ -2526,145 +2615,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Grunnstilla" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Leita:" +msgid "When launching Konsole re-use existing process if possible" +msgstr "" +"Þegar Konsole er keyrt á að endurnýta fyrirliggjandi ferli ef kostur er" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format -msgid "Enable menu accelerators" -msgstr "Virkja valmyndalykla" +msgid "Run all Konsole windows in a single process" +msgstr "Keyra alla Konsole-glugga í sama ferli" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 +#: settings/GeneralSettings.ui:81 #, kde-format msgid "If enabled, profile settings will be ignored" msgstr "Ef þetta er virkt verða prófílstillingar hunsaðar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 +#: settings/GeneralSettings.ui:84 #, kde-format msgid "Remember window size" msgstr "Muna gluggastærð" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Show window title on the titlebar" -msgstr "Sýna titil glugga á titilstikunni" +msgid "Force new tabs" +msgstr "Þvinga nýja flipa" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Gefa skjáhermum fókus þegar músarbendillinn er færður yfir þá" +msgid "Listen for ZModem terminal codes" +msgstr "Vakta kóða fyrir ZModem-útstöð" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Match using regular expressions" -msgstr "Leita með reglulegum segðum" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 -#, kde-format -msgid "When launching Konsole re-use existing process if possible" -msgstr "" -"Þegar Konsole er keyrt á að endurnýta fyrirliggjandi vinnslu ef kostur er" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 -#, kde-format -msgid "Run all Konsole windows in a single process" -msgstr "Keyra alla Konsole-glugga í sömu vinnslu" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, kde-format -msgid "Highlight all matches" -msgstr "Áherslulita allar samsvaranir" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Velur hvort leit sé háð há-/lágstöfum" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Háð há-/lágstöfum" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "Fjarlægja titilstiku og ramma á glugga" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 -#, kde-format -msgid "Process and window:" -msgstr "Vinnsla og gluggi:" +msgid "Show progress in taskbar" +msgstr "Birta framvindu í verkefnastiku" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Tilkynningar:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Allir svargluggar verða sýndir aftur" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Gera öll \"Ekki spyrja aftur\"-skilaboð virk" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Velur hvort leitað er neðan frá og upp" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Leita afturábak" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Velur hvort leit sé háð há-/lágstöfum" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Háð há-/lágstöfum" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Ferli og gluggi:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Áherslulita allar samsvaranir" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Leita:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Velur hvort leitin stöðvast í stað þess að halda áfram hringinn" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Ekki fara hringinn" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Virkja valmyndalykla" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Gefa skjáhermum fókus þegar músarbendillinn er færður yfir þá" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Allir svargluggar verða sýndir aftur" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Gera öll \"Ekki spyrja aftur\"-skilaboð virk" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Sýna titil glugga á titilstikunni" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Virkja öryggisviðkvæma hluta í DBus API" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Fjarlægja titilstiku og ramma á glugga" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Leita með reglulegum segðum" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2689,71 +2804,112 @@ msgstr "Nota núverandi gluggastærð næst þegar forritið er keyrt" msgid "The window size will be saved upon exiting Konsole" msgstr "Gluggastærðin verður vistuð þegar Konsole er lokað" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Þegar Konsole er keyrt á að útbúa nýja flipa í stað nýrra glugga ef kostur er" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Birta framvindu í verkefnastiku" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Þegar skrifta vill tilkynna framvindu sína, verður það birt í " +"verkefnastikunni" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "DBus API eins og runCommand verður virkjað" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Vakta kóða fyrir ZModem-útstöð" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Sjálfvirkt senda og taka við skrám um raðtengingar" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Breidd smámyndar" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Stillir breidd smámyndarinnar" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Nota Shift-lykilinn til að birta smámynd" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Nota Alt-lykilinn til að birta smámynd" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Nota Ctrl-lykilinn til að birta smámynd" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Leit er háð há-/lágstöfum" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Áherslulita allar samsvaranir í leit" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Stillir hvort texti sem passar verði áherslulitaður" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Leit stöðvast í stað þess að halda áfram hringinn" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Stjórnar því hvort undir-cgroups séu búin til fyrir einstaka flipa" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2761,91 +2917,97 @@ msgstr "Skilgreinir minnisnotkunarstigið þar sem takmarkanir hefjast" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Stjórna sýnileika flipastikunnar í heild sinni" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Stjórna stærð bilsins á milli spjalda" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Stjórna staðsetningu flipastikunnar" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Stjórna útliti flipastikunnar" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Nota .css-skrá frá notanda til að stilla útlit flipastikunnar" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr ".css-skráin sem er notuð fyrir flipastikuna" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Leyfa miðjusmell á opna flipa til að loka þeim" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Stjórna sýnileika hnappsins \"Nýr flipi\" á flipastikunni" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Stýra sýnileika hnappsins \"Leita að flipum\" á flipastikunni" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Stjórna því hvar hnappurinn \"Loka flipa\" birtist" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Stjórna því hvar á að setja nýja flipann" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Víkka út breidd flipanna" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Nota kerfismöppu fyrir afturrakningarskrár" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Nota möppu hvers notanda fyrir afturrakningarskrár" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Nota tiltekna möppu undir afturrakningarskrár" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Nota þessa möppu undir afturrakningarskrár" @@ -2857,33 +3019,31 @@ msgid "Enable memory monitoring:" msgstr "Virkja minnisvöktun :" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Breytingar ganga í gegn eftir endurræsingu. Ef minnisnotkun Konsole fer yfir " "tiltekið gildi og þetta\n" -"er virkt mun 'systemd-oomd' loka flipunum sem innihalda vinnslurnar sem\n" +"er virkt mun 'systemd-oomd' loka flipunum sem innihalda vinnsluferlin sem\n" "krefjast mikils minnis. Athugaðu: ef þetta er virkjað gæti það\n" "valdið meiri hægagangi þegar mikið minni er notað og ef of lágt gildi er " "tilgreint\n" -"getur það valdið því að Konsole sé drepið." +"getur það valdið því að Konsole sé slátrað." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Minnistakmörk:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3041,125 +3201,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Hvergi" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Sýna hnapp fyrir leit að flipum:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Alltaf" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Aldrei" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Ýmislegt:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Sýna hnappinn 'Nýr flipi'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Víkka út hvern flipa svo þeir nái yfir allan gluggann" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Nota stílblað skilgreint af notanda:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ekkert)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Hegðun" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Setja nýja flipa:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Ú&t á enda" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Á eftir &núverandi flipa" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Loka flipa með miðjusmelli" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Kljúfar" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" -msgstr "Sýna hausa:" +msgstr "Sýna haus:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Þegar þess er þörf" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Aldrei" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Stærð handfangs:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Lítið" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Miðlungs" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Stórt" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3211,13 +3389,12 @@ msgstr "px" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" "

            Til að nota þennan eiginleika þarf að virkja Mús->Ýmislegt->Undirstrika skrár í prófílstillingunum þínum

            " +"style=\" font-weight:600;\"> Mús->Ýmislegt->Undirstrika skrár í " +"prófílstillingunum þínum

            " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3255,66 +3432,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Virkja myndun smámynda" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Stærð: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Ertu viss um að þú viljir líma %1 staf?" msgstr[1] "Ertu viss um að þú viljir líma %1 stafi?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Staðfesta límingu" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" -msgstr "End Of Text/Interrupt (lok texta/rof): getur hætt í núverandi vinnslu" +msgstr "End Of Text/Interrupt (lok texta/rof): gæti hætt í núverandi ferli" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" -msgstr "End Of Transmission (lok miðlunar): getur hætt í núverandi vinnslu" +msgstr "End Of Transmission (lok miðlunar): getur hætt í núverandi ferli" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Bell (bjalla): reynir að gefa frá sér hljóðviðvörun" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace (baklykill)" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF (tækisstýring þrjú/XOFF): stöðvar úttak" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" -msgstr "Substitute/Suspend (skipta út/stöðva): getur stöðvað núverandi vinnslu" +msgstr "Substitute/Suspend (skipta út/í bið): getur sett núverandi ferli í bið" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape (Esc): notaður til að stjórna stöðu skjáhermis" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" -msgstr "" -"File Separator/Quit (skráaskiltákn/hætta): getur stöðvað núverandi vinnslu " -"alveg" +msgstr "Skráaskiltákn/Hætta: gæti stöðvað núverandi ferli alveg" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3323,31 +3498,31 @@ msgstr "" "Textinn sem þú ert að reyna að líma inniheldur falin stýringartákn, viltu " "sía þau út?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Staðfesta límingu" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Lí&ma án stýristafa" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Líma allt" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Hætta við" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been sett í bið með því að ýta á Ctrl+S. Ýttu á Ctrl+Q til að halda " "áfram." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Þessi skjáhermir er skrifvarinn." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Breyta &möppu í" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Límingarstaður" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Kljúfa skeljaglugga" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Kljúfa skeljaglugga lóðrétt" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Kljúfa skeljaglugga lárétt" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" -msgstr "Kljúfa skeljaglugga sjálfkrafa" +msgstr "Kljúfa skeljaglugga sjálfvirkt" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Kljúfa glugga lóðrétt frá næsta flipa" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Kljúfa glugga lárétt frá næsta flipa" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Kljúfa glugga sjálfkrafa frá næsta flipa" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Opna nýjan flipa með 2x2 skeljagluggum" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Opna nýjan flipa með 2x1 skeljagluggum" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Opna nýjan flipa með 1x2 skeljagluggum" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Stækka skeljaglugga" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Minnka skeljaglugga" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Loka nú&verandi skeljaglugga" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Losa núverandi &flipa frá" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Næsti flipi" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Fyrri flipi" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fókus á skeljaglugga fyrir ofan" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" -msgstr "Fócus á skeljaglugga fyrir neðan" +msgstr "Fókus á skeljaglugga fyrir neðan" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fókus á skeljaglugga til vinstri" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fókus á skeljaglugga til hægri" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fókus á næsta skeljarglugga" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fókus á fyrri skeljarglugga" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" -msgstr "Skipta yfir á síðasta flipa" +msgstr "Skipta á síðasta flipa" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Síðast notuðu flipar" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Víxla á milli tveggja flipa" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" -msgstr "Síðast notuðu flipar (öfugt)" +msgstr "Síðast notuðu flipar (afturábak)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Víxla fullstækkun núverandi skeljaglugga" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Víxla fullstækkun núverandi skeljaglugga" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Víxla fullstækkun og aðdrætti núverandi skeljaglugga" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Víxla fullstækkun og aðdrætti núverandi skeljaglugga" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Færa flipa til hægri" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Færa flipa til vinstri" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Setja upp merkingarlega virkni (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Víxla af/á birtingu vísbendinga út frá merkingu" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Víxla birtingu línunúmera" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Gera alla skeljaglugga jafnstóra" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" -msgstr "Skipta yfir á flipa %1" +msgstr "Skipta á flipa %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " -msgstr "Merkingarvísbendingar " +msgstr "Vísbendingar út frá merkingu " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Línunúmer " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" -msgstr "Vista framsetningu flipa" +msgstr "Vista flipaframsetningu" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Framsetning Konsole-skeljaglugga (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3615,7 +3802,7 @@ msgstr "" "Vandamál kom upp þegar framsetningin var vistuð.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3625,13 +3812,13 @@ msgstr "" "Vandamál kom upp við opnun framsetningar.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Hlaða inn flipaframsetningu" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3729,28 +3916,40 @@ msgstr "&Sjálfgefin stafatafla:" msgid "Shortcut for peeking the primary screen:" msgstr "Flýtilykill til að kíkja á aðalskjá:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Velja millibil sjálfvirkrar vistunar:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " msek." + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Línunúmer:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "Ald&rei" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Þegar slóða&vísbendingar birtast" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3786,7 +3985,7 @@ msgstr "Breyta valda litastefinu" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3840,12 +4039,18 @@ msgstr "Teikna skæra liti í feitletri" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Nota valda letrið fyrir línustafi í stað innbyggða kóðans" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Nota línustafi sem letrið inniheldur" @@ -3909,7 +4114,7 @@ msgstr "Litur:" #: widgets/EditProfileAppearancePage.ui:307 #, kde-format msgid "Set the cursor to match the color of the character underneath it." -msgstr "Láta lit bendilsins passa við lit stafsins undir honum." +msgstr "Láta lit bendilsins samsvara lit stafsins undir honum." #. i18n: ectx: property (text), widget (QRadioButton, autoCursorColorButton) #: widgets/EditProfileAppearancePage.ui:310 @@ -3966,29 +4171,43 @@ msgid "Make the cursor blink regularly" msgstr "Láta bendilinn blikka reglulega" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Virkt" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Myndhreyfingar:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Láta bendilinn hreyfast mjúklega" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Ýmislegt" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Gluggi:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3998,144 +4217,144 @@ msgstr "" "breytt" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Sýna stærð skjáhermis eftir stærðarbreytingu" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Alltaf umsnúa litum valins texta" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Styrkur dimmu:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Litur:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Veldu litinn sem á að nota á rammann" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Óvirkir skjáhermar:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Virkir skjáhermar:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Innihald skjáhermis" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Línubil:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Fjöldi díla (pixla) á milli tveggja lína" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Spássíur:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Stilla við miðju:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Sýna hvort glugginn sé virkur með því að dimma litina" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Dimma" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Sýna hvort glugginn sé virkur með því að teikna ramma" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Rammi" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Sýna lóðrétta línu við dálk:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "

            Framsetning tengiskriftar

            " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Framsetning tengiskriftar" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Nota orðasnið í textabirtingu" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Orðasnið" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4145,144 +4364,144 @@ msgstr "" "eigindum upp orði í birtingu)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" -msgstr "Nota sömu eigindi fyrir orð sem heild" +msgstr "Nota sömu eigindi fyrir heilt orð" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Birta orð með ASCII-stöfum saman" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII-stafir" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Birta orð með brahmískum leturstöfum saman" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Brahmískir leturstafir" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Tjáknaletur (emoji):" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " "Hebrew only)" msgstr "" -"Nota tvíátta birtingu í skjáhermi (gildir aðeins fyrir arabísku, persnesku " +"Virkja tvíátta birtingu í skjáhermi (gildir aðeins fyrir arabísku, persnesku " "eða hebresku)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Tvíátta textabirting" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" -"Línur er alltaf frá vinstri til hægri en ekki skilgreindar af fyrsta ráðandi " -"staf" +"Línustefna er alltaf frá vinstri til hægri en ekki skilgreind af fyrsta " +"ráðandi staf" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" -msgstr "Þvinga línustefnu vinstri til hægri" +msgstr "þvinga línustefnu frá vinstri til hægri" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" "Láta stafi fyrir töfluteiknun vera ráðandi fyrir vinstri til hægri-stefnu." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Töflustafir hnekkja tvíátta sniði" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Hunsa 'wcwidth' á vandræðastöfum" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Hnekkja 'wcwidth'" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Breyta prófíl" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Almennt" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Flipar" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Útlit" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" -msgstr "Skrun" +msgstr "Fletting" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Lyklaborð" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Lyklabindingar" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mús" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Ítarlegt" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4294,48 +4513,53 @@ msgstr "" ">Breyttu annað hvort heimildum fyrir þessa skrá eða veldu annað heiti til að " "vista stillingarnar á nýjum prófíl." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Heiti prófíls var autt. Sláðu inn heiti til að geta vistað stillingar." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Prófíll sem heitir \"%1\" er þegar til staðar." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Nafn prófílsins er lengra en leyfilegt er (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Áherslulituðu stafirnir eru ógildir í prófílnöfnum: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Breyti prófíl: %2" msgstr[1] "Breyti %1 prófílum: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Búa til nýjan prófíl" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Breyta prófíl \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Ekkert" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4345,7 +4569,7 @@ msgid_plural " columns" msgstr[0] " dálkur" msgstr[1] " dálkar" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4355,42 +4579,42 @@ msgid_plural " rows" msgstr[0] " röð" msgstr[1] " raðir" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Kerfisbjalla" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Kerfistilkynningar" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Sjónræn bjalla" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Hunsa bjölluatvik" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Sjálfgefinn prófíll fyrir nýja skjáhermisetu í %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Breyta umhverfi" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Ein umhverfisbreyta á hverja línu" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4398,23 +4622,23 @@ msgid_plural " seconds" msgstr[0] " sekúnda" msgstr[1] " sekúndur" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Veldu upphafsmöppu" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Sækja nýtt..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Ekki tókst að hlaða stefi %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4423,7 +4647,7 @@ msgstr "" "Þetta litastef notar gagnsæjan bakgrunn en skjáborðsumhverfið þitt virðist " "ekki styðja það" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4432,12 +4656,12 @@ msgstr "" "Konsole var keyrt áður en skjáborðsbrellur voru gerðar virkar. Þú þarft að " "endurræsa Konsole til að sjá gagnsæjan bakgrunn." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" -msgstr "Sjálfgefið fyrir skrárgerð" +msgstr "Sjálfgefið fyrir skráargerðina" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4465,10 +4689,10 @@ msgstr "" "Ef PATH eða LINE eru ekki til staðar í skipuninni, verður þessi\n" "stilling hunsuð og skráin opnuð með sjálfgefna textaritlinum." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" -msgstr "Sérstillt skipun fyrir textaritil" +msgstr "Sérsniðin skipun fyrir textaritil" #. i18n: ectx: attribute (title), widget (QWidget, general) #: widgets/EditProfileGeneralPage.ui:42 @@ -4480,7 +4704,7 @@ msgstr "Almennar stillingar" #: widgets/EditProfileGeneralPage.ui:66 #, kde-format msgid "Select the icon displayed on tabs using this profile" -msgstr "Veldu táknið sem er birt á flipum í þessum prófíl" +msgstr "Veldu táknið sem birtist á flipum sem nota prófílinn" #. i18n: ectx: property (toolTip), widget (QLineEdit, profileNameEdit) #: widgets/EditProfileGeneralPage.ui:84 @@ -4533,7 +4757,7 @@ msgstr "Upp&hafsmappa:" #, kde-format msgid "" "The initial working directory for new terminal sessions using this profile" -msgstr "Upphafsmappan fyrir nýja skjáhermissetu þegar þessi prófíll er notaður" +msgstr "Upphafsmappan fyrir nýja skjáhermissetu sem notar þennan prófíl" #. i18n: ectx: property (placeholderText), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:176 @@ -4553,26 +4777,55 @@ msgstr "Veldu upphafsmöppu" msgid "Start in same directory as current session" msgstr "Byrja í sömu möppu og núverandi seta" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Þegar opnaður er nýr flipi eða skipting skal fara sjálfkrafa í sama gám " +"(Verkfærasafn, Distrobox) og núverandi seta" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Fara á sama gám og núverandi seta" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Alltaf byrja í gámi:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "Alltaf byrja nýjar setur með þessu sniði innan í völdum gámi" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Umhverfi:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Breyta lista yfir umhverfisbreytur og tengd gildi" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Upphafsst&ærð skjáhermis:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4585,31 +4838,31 @@ msgstr "" "óvirkt til að þessar færslur virki.

            " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Bjöllus&nið skjáhermis:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Merkingarleg virkni" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Hermt eftir upp-/niðurörvum" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Músarsmellur í inntakslínu færir bendilinn" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Vísbendingar út frá merkingu:" @@ -4619,9 +4872,9 @@ msgstr "Vísbendingar út frá merkingu:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4632,47 +4885,47 @@ msgstr "Aldrei" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" -msgstr "Þegar slóðavísbendingar eru birtar" +msgstr "Þegar slóðavísbendingar birtast" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Alltaf" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Rauð strik við villur:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Rauður bakgrunnur á villu:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Strik til skiptis:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Bakgrunnur til skiptis:" @@ -4860,14 +5113,14 @@ msgid "" "Text recognized as a file will be underlined when hovered by the mouse " "pointer." msgstr "" -"Texti sem er skrárheiti verður undirstrikaður þegar músarbendillinn sveimar " +"Texti sem er skráarheiti verður undirstrikaður þegar músarbendillinn sveimar " "yfir." #. i18n: ectx: property (text), widget (QCheckBox, underlineFilesButton) #: widgets/EditProfileMousePage.ui:279 #, kde-format msgid "Underline files" -msgstr "Undirstrika skrárheiti" +msgstr "Undirstrika skráaheiti" #. i18n: ectx: property (toolTip), widget (QLabel, textEditorCommandLabel) #. i18n: ectx: property (toolTip), widget (QComboBox, textEditorCombo) @@ -4915,7 +5168,7 @@ msgid "" "to be shown as another URL or hidden.
            Make sure you understand the " "implications before turning this on." msgstr "" -"VIÐVÖRUN: Þetta felur í sér öryggisógnir þar sem spillislóðir gætu " +"AÐVÖRUN: Þetta felur í sér öryggisógnir þar sem spillislóðir gætu " "birst sem aðrar slóðir eða jafnvel faldar.
            Kynntu þér vel hvað þetta " "felur í sér áður en kveikt er á þessum valkosti." @@ -4950,14 +5203,14 @@ msgid "" "Mouse scroll wheel will emulate up/down key presses in programs that use the " "Alternate Screen buffer (e.g. less)" msgstr "" -"Skrunhjól músarinnar hermir eftir upp-/niðurörvum í forritum sem nota " +"Flettihjól músarinnar hermir eftir upp-/niðurörvum í forritum sem nota " "aukaskjáminni (t.d. less)" #. i18n: ectx: property (text), widget (QCheckBox, enableAlternateScrollingButton) #: widgets/EditProfileMousePage.ui:408 #, kde-format msgid "Enable Alternate Screen buffer scrolling" -msgstr "Virkja skrun í aukaskjáminni" +msgstr "Virkja flettingu í aukaskjáminni" #. i18n: ectx: property (toolTip), widget (QCheckBox, dropUrlsAsText) #: widgets/EditProfileMousePage.ui:415 @@ -4979,13 +5232,13 @@ msgstr "Gera draga og sleppa-valmynd óvirka fyrir skrár og slóðir" #: widgets/EditProfileMousePage.ui:425 #, kde-format msgid "Pressing Ctrl+scrollwheel will increase/decrease the text size." -msgstr "Ctrl+skrunhjól stækkar/minnkar textann." +msgstr "Ctrl+flettihjól stækkar/minnkar textann." #. i18n: ectx: property (text), widget (QCheckBox, enableMouseWheelZoomButton) #: widgets/EditProfileMousePage.ui:428 #, kde-format msgid "Allow Ctrl+scrollwheel to zoom text size" -msgstr "Nota Ctrl+skrunhjól til að breyta stærð textans" +msgstr "Nota Ctrl+flettihjól til að breyta stærð textans" #. i18n: ectx: property (toolTip), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:435 @@ -5026,115 +5279,127 @@ msgid "Scrollback:" msgstr "Afturrakning:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Skruna upp/niður um síðu:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Áherslulita línurnar sem birtast í glugganum" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Falin" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Stærð hvers merkis (sem hlutfall af lengd skrunstikunnar):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Áherslulitun:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Skruna síðunni um hálfa hæð gluggans" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Hálf hæ&ð glugga" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Litur á merkjum á skrunstiku:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Litur á áherslulituðum línum á skrunstiku við leit:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Endurstilla línuflæði:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" -msgstr "Skruna síðunni um hálfa hæð gluggans" +msgstr "Skruna síðunni um fulla hæð gluggans" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "&Full hæð gluggans" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Staðsetning skrunstiku:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Sýna skrunstikuna hægra megin á skjáhermisglugganum" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Hæ&gra megin" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Sýna skrunstikuna vinstra megin á skjáhermisglugganum" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "V&instra megin" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Falin" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Áherslulitun:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Áherslulita línurnar sem birtast í glugganum" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Endurstilla línuflæði:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Endurstilla línuflæðið þegar stærð skjáhermisins er breytt" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Litur á merkjum á skrunstiku:" +msgid "Scrollbar position:" +msgstr "Staðsetning skrunstiku:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Stærð hvers merkis (sem hlutfall af lengd skrunstikunnar):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Ógegnsæi á áherslulituðum línum við leit:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5240,37 +5505,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "E&kkert" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Finna..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Sláðu textann inn hér til að leita" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Næsta" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Finna næsta tilfelli af leitarstrengnum" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Fyrra" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5278,77 +5543,77 @@ msgstr "Finna fyrra tilfelli af leitarstrengnum" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Birta valkostavalmyndina" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Loka leitarglugganum" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Háð há-/lágstöfum" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Stillir hvort leit sé háð há-/lágstöfum" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Birta valkostavalmyndina" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Loka leitarglugganum" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Samsvara reglulegri segð" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Áherslulita allar samsvaranir" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" -msgstr "Stillir hvort texti sem stemmir verði áherslulitaður" +msgstr "Stillir hvort samsvarandi texti verði áherslulitaður" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" -msgstr "Leita aftur á bak" +msgstr "Leita afturábak" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Stillir hvort leitin á að byrja neðst" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Ekki fara hringinn" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Velur hvort leitin stöðvast í stað þess að halda áfram hringinn" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Leita að núverandi leitarorði neðan frá og upp" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5359,7 +5624,7 @@ msgstr "Leita að núverandi leitarorði ofan frá og niður" msgid "Print Shell" msgstr "Prentskel" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5399,6 +5664,12 @@ msgstr "Titilsnið venjulegs flipa" msgid "Tab Co&lor:" msgstr "Flipa&litur:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Litur virkniflip&a:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5492,36 +5763,59 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Endurheimta skjáhermi" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Opna nýjan flipa" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Leita að flipum" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Loka þessum flipa" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" -msgstr "Af&tengja flipa" +msgstr "&Losa flipa af" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Grunnstilla eða endurnefna flipa..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Loka flipa" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

            This warning will only show once for this Konsole instance.

            " +#~ msgstr "" +#~ "D-Bus aðferðirnar sendText/runCommand voru notaðar rétt í þessu. Það er " +#~ "öryggisáhætta fólgin í því að leyfa þessum aðferðum að vera opnar öllum. " +#~ "Ef þess er óskað er hægt að breyta þessu þannig að aðferðirnar séu " +#~ "einungis notaðar í innri vinnslu með því að vistþýða Konsole aftur. " +#~ "

            Þessi viðvörun verður aðeins birt einu sinni fyrir þetta Konsole " +#~ "tilvik.

            " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Háð há-/lágstöfum" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Ekkert" diff --git a/local/recipes/kde/konsole/source/po/it/konsole.po b/local/recipes/kde/konsole/source/po/it/konsole.po index b5de14d48c..d247899eb2 100644 --- a/local/recipes/kde/konsole/source/po/it/konsole.po +++ b/local/recipes/kde/konsole/source/po/it/konsole.po @@ -1,17 +1,17 @@ # translation of konsole.po to Italian -# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Vincenzo Reale +# SPDX-FileCopyrightText: 2016-2026 Vincenzo Reale # Andrea Rizzi , 2003, 2004, 2005. # Federico Zenith , 2004, 2005, 2007, 2008, 2009, 2010, 2011. # Pino Toscano , 2006. # Andrea Celli , 2007. # Federico Zenith , 2008, 2012, 2013, 2014, 2015. -# Paolo Zamponi , 2022. +# SPDX-FileCopyrightText: 2022, 2025 Paolo Zamponi msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-18 14:43+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-05-28 18:03+0200\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" "Language: it\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 26.04.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -53,7 +53,7 @@ msgstr "Visualizza" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dividi vista" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "S&corrimento" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra degli strumenti delle sessioni" @@ -176,35 +176,49 @@ msgstr "Nascondi la barra dei menu, ignorando l'impostazione predefinita" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Mostra tutte le barre degli strumenti, ignorando l'impostazione predefinita" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Nascondi tutte le barre degli strumenti, ignorando l'impostazione predefinita" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Mostra la barra delle schede, ignorando l'impostazione predefinita" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Nascondi la barra delle schede, ignorando l'impostazione predefinita" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Avvia Konsole in modalità tutto schermo" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Disabilita gli sfondi trasparenti, anche se il mio sistema li supporta." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Elenca i profili disponibili" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -212,13 +226,13 @@ msgstr "" "Elenca tutti i nomi delle proprietà dei profili e il loro tipo (da usare con " "-p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Cambia il valore di una proprietà di profilo." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -228,7 +242,7 @@ msgstr "" "Comando da eseguire. Questa opzione catturerà tutti gli argomenti seguenti, " "quindi usala per ultima." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -238,13 +252,13 @@ msgstr "" "Forza il riutilizzo dell'istanza esistente anche se interrompe la " "funzionalità, ad es. --new-tab. Principalmente per scopi di debug." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argomenti passati al comando" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -262,157 +276,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Primo piano" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Sfondo" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Colore 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Colore 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Colore 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Colore 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Colore 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Colore 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Colore 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Colore 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Primo piano (intenso)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Sfondo (intenso)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Colore 1 (intenso)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Colore 2 (intenso)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Colore 3 (intenso)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Colore 4 (intenso)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Colore 5 (intenso)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Colore 6 (intenso)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Colore 7 (intenso)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Colore 8 (intenso)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Primo piano (tenue)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Sfondo (tenue)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Colore 1 (tenue)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Colore 2 (tenue)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Colore 3 (tenue)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Colore 4 (tenue)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Colore 5 (tenue)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Colore 6 (tenue)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Colore 7 (tenue)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Colore 8 (tenue)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -511,7 +525,7 @@ msgid "" "To see any effect, set colors with saturation value greater than 0." msgstr "" "I valori di tonalità e saturazione dei colori predefiniti di primo piano e " -"sfondo sono resi casuali. Alcuni schermi di colore potrebbero utilizzare " +"sfondo sono resi casuali. Alcuni schemi di colori potrebbero utilizzare " "impostazioni di casualità diverse.\n" "Per vedere l'effetto, impostare i colori con valore di saturazione maggiore " "di 0." @@ -669,6 +683,40 @@ msgstr "In alto" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Il supporto dei container non è disponibile quando Konsole è in esecuzione " +"all'interno di Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [predefinito]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -714,7 +762,7 @@ msgstr "" msgid "Copy Location" msgstr "Copia posizione" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generazione miniatura" @@ -745,13 +793,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Seleziona carattere" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Mostra tutti i caratteri" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -792,17 +840,17 @@ msgstr "Combinazione di tasti" msgid "Output" msgstr "Output" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nuovo elenco delle associazioni dei tasti" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Modifica elenco delle associazioni dei tasti" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -812,7 +860,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -846,225 +894,225 @@ msgstr "Input:" msgid "Output:" msgstr "Output:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulatore di terminale" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997-2022, gli sviluppatori di Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Responsabile generale, correzione bug e miglioramenti generali" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Responsabile precedente, trasferimento a KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autore originale" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Importante riscrittura, correzioni di bug e miglioramenti" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Correzione bug e miglioramenti generali" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Correzioni di bug e miglioramenti generali" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Miglioramenti generali" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Correzioni" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Supporto Solaris e cronologia" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Correzioni e miglioramento delle prestazioni di avvio" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Miglioramenti notevoli" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1074,13 +1122,13 @@ msgstr "" "Konsole incorporata\n" "Nomi delle barre degli strumenti e delle sessioni" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1090,25 +1138,25 @@ msgstr "" "Konsole incorporata\n" "Miglioramenti generali" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Effetti visivi" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1118,132 +1166,132 @@ msgstr "" "Codice dal progetto kvt\n" "Miglioramenti generali" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Miglioramenti nella selezione di schemi e testi" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Trasferimento su SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Trasferimento su FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Grazie a molti altri.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nuova scheda" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clona scheda" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nuova &finestra" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Chiudi finestra" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Segnali&bri" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Schema di colori delle &finestre" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gestisci profili..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Attiva menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Salva la disposizione delle schede..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Carica la disposizione delle schede..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1254,67 +1302,67 @@ msgstr[0] "" msgstr[1] "" "Ci sono %1 processi in esecuzione in questa finestra. Vuoi uscire comunque?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Conferma chiusura" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Chiudi &finestra" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Chiudi la &scheda attuale" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Ci sono %1 terminali aperti in questa finestra. Vuoi ancora uscire?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profili" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Generale" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memoria" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barra delle schede / Divisori" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "File temporanei" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniature" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1398,7 +1446,7 @@ msgstr "Salva" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Aggiorna" @@ -1410,29 +1458,29 @@ msgid "Cancel" msgstr "Annulla" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Comandi rapidi" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Mostra accesso rapido" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Nessun comando rapido trovato. Puoi aggiungerne uno su Estensioni -> Comandi " "rapidi" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Estensioni Comandi rapidi" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Mostra comandi rapidi" @@ -1474,7 +1522,7 @@ msgstr "" " con più configurazioni, sei sicuro?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Stai per eliminare %1, sei sicuro?" @@ -1527,11 +1575,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 è una cartella per le voci SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configurazione SSH" @@ -1596,24 +1644,24 @@ msgstr "" "zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Chiave SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Elimina" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Non cambiare" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1622,70 +1670,70 @@ msgstr "" "Stai per eliminare la cartella %1,\n" " con più configurazioni SSH, sei sicuro?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Elimina le configurazioni SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "Profilo SSH importato
            Alcune impostazioni sono in sola lettura." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Nome host mancante" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Nome mancante" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Se Usa configurazione SSH è impostata, non specificare la chiave ssh o il " "nome utente." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Almeno il nome utente o la chiave SSH deve essere impostato" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Cartella mancante" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Una sessione SSH deve avere un profilo" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Impossibile eliminare questa cartella" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Elimina la cartella e tutto il suo contenuto" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Doppio clic per cambiare il nome della cartella." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Non puoi eliminare una voce aggiunta automaticamente." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Elimina la voce selezionata" @@ -1878,25 +1926,25 @@ msgstr "Opzioni di output" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Modalità per la &stampante (testo nero, nessuno sfondo)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Ri&scala l'output" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Integrato" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Profilo predefinito" @@ -1955,17 +2003,43 @@ msgstr "Fai doppio clic per cambiare la scorciatoia" msgid "Tab Properties" msgstr "Proprietà della scheda" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Salva output da %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 è un URL non valido, impossibile salvarne l'output." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Impossibile creare il file di salvataggio automatico in %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" +"Interruzione del salvataggio automatico a causa del cambio di schermata." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Il file di salvataggio automatico è stato modificato esternamente, impedendo " +"ulteriori salvataggi automatici." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Impossibile aggiornare lo stato di salvataggio automatico sulle modifiche " +"all'output." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2001,81 +2075,98 @@ msgstr "Brezza" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastelli scuri" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verde su nero" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Colori Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rosso su nero" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarizzato" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Luce solarizzata" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Bianco su nero" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Predefinito (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Console Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Console Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Cerca..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Digita qui il nome di una scheda da cercare" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Campanella in «%1» (sessione «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Impossibile trovare il file binario: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Avviso: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Impossibile trovare una shell interattiva da avviare." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2084,337 +2175,339 @@ msgstr "" "Impossibile trovare «%1», avvio di «%2» al suo posto. Controlla le " "impostazioni del tuo profilo." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Impossibile avviare il programma «%1» con gli argomenti «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silenzio in «%1» (sessione «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Mostra la sessione" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" -"I metodi D-Bus sendText/runCommand sono stati utilizzati. Ci sono problemi " -"di sicurezza se consenti che questi metodi siano pubblici. Se lo desideri, " -"tali metodi possono essere modificati per solo uso interno ricompilando " -"Konsole.

            Questo avviso sarà visualizzato solo una volta per questa istanza " -"di Konsole.

            " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Finito" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Il programma «%1» è andato in crash." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Il programma «%1» è terminata con lo stato %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Avanzamento ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Attività in «%1» (sessione «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "L'API DBus sensibile alla sicurezza è disabilitata nelle impostazioni." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Il processo «%1» ha terminato l'esecuzione nella sessione «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole non sa come aprire il segnalibro: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Cerca «%1» con" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configura le scorciatoie del Web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Chiudi sessione" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Apri gestore dei file" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copia" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dividi vista destra-sinistra" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dividi vista alto-basso" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copia tranne i prompt" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copia l'immissione dell'utente" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copia l'uscita del comando" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Incolla selezione" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Cerca nel Web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Seleziona tutto" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Modalità di selezione" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Seleziona &riga" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "S&alva output come..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Salvataggio automatico output come..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Interrompi il salvataggio automatico" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Stam&pa schermo..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Regola scorrimento..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Pulisci scorrimento" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Pulisci scorrimento e azzera" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Profilo successivo" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Profilo precedente" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Cambia profilo" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Imposta &codifica" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Consenti il tracciamento del mouse" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Sola lettura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configura o rinomina scheda..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "T&utte le schede nella finestra attuale" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Seleziona schede..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nessuna" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copia input a" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Invia con &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Controlli istantanei" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Controlla il &prompt" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Controlla se c'è &attività" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Controlla se c'è &silenzio" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Controlla la fine del processo" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Ingrandisci carattere" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Rimpicciolisci carattere" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Ripristina la dimensione dei caratteri" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Invia segnale" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Sospendi task" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continua task" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Hangup" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interrompi task" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Termina task" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Uccidi task" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Segnale utente &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Segnale utente &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Crea nuovo profilo..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Modifica il profilo attuale..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2423,7 +2516,7 @@ msgstr "" "Un programma è attualmente in esecuzione in questa sessione. Sei sicuro di " "volerla chiudere?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2432,18 +2525,18 @@ msgstr "" "Il programma «%1» è attualmente in esecuzione in questa sessione. Sei sicuro " "di volerla chiudere?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Conferma la chiusura" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Chiudere programma" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2452,37 +2545,37 @@ msgstr "" "Un programma in questa sessione non è terminato. Sei sicuro di volerlo " "terminare forzosamente?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"Il programma «%1» in questa sessione non è terminato. Sei sicuro di volerlo " -"terminare forzosamente?" +"Il programma «%1» in questa sessione non sarà terminato. Sei sicuro di voler " +"forzare la sua chiusura?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Termina programma" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Il prompt della shell viene visualizzato nella sessione '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Apri la cartella attuale con" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Salva scaricamento con &ZModem a..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2493,14 +2586,14 @@ msgstr "" "sistema non è stato trovato il software ZModem necessario.

            Dovresti " "installare i pacchetti «rzsz» o «lrzsz».

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "" "

            La sessione attuale ha già un trasferimento di file ZModem in corso.

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2509,7 +2602,7 @@ msgstr "" "

            Non è stato trovato il software ZModem necessario sul sistema.

            Dovresti installare i pacchetti «rzsz» o «lrzsz».

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Seleziona i file per l'invio con ZModem" @@ -2532,149 +2625,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configura" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Cerca:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Abilita gli acceleratori dei menu" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Se abilitato, le impostazioni del profilo saranno ignorate" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Ricorda la dimensione della finestra" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Mostra titolo della finestra sulla barra del titolo" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" -"Passa il fuoco ai terminali quando il puntatore del mouse si sposta su di " -"essi" - -# Qui è necessario risparmiare spazio. -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Verifica con espressioni regolari" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "All'avvio di Konsole riutilizza il processo esistente, se possibile" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Esegui tutte le finestre di Konsole in un singolo processo" -# Non esiste nella barra di ricerca un «Evidenzia» singolo, e siamo a corto di spazio. -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Evidenzia tutte le corrispondenze" +msgid "If enabled, profile settings will be ignored" +msgstr "Se abilitato, le impostazioni del profilo saranno ignorate" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Imposta se la ricerca distingue le maiuscole" +msgid "Remember window size" +msgstr "Ricorda la dimensione della finestra" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Distingui le maiuscole" +msgid "Force new tabs" +msgstr "Forza nuove schede" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Rimuovi barra del titolo e cornice della finestra" +msgid "Listen for ZModem terminal codes" +msgstr "In ascolto per i codici del terminale ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Processo e finestra:" +msgid "Show progress in taskbar" +msgstr "Mostra l'avanzamento nella barra delle applicazioni" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notifiche:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Tutte le finestre verranno mostrate di nuovo" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Abilita tutti i messaggi «Non chiedermelo più»" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Imposta se la ricerca debba cominciare dalla fine" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Cerca all'indietro" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Imposta se la ricerca distingue le maiuscole" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Distingui le maiuscole" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Processo e finestra:" + +# Non esiste nella barra di ricerca un «Evidenzia» singolo, e siamo a corto di spazio. +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Evidenzia tutte le corrispondenze" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Cerca:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" "Imposta se la ricerca deve interrompersi invece di riprendere dall'inizio" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Non riprendere dall'inizio" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Abilita gli acceleratori dei menu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" +"Passa il fuoco ai terminali quando il puntatore del mouse si sposta su di " +"essi" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Tutte le finestre verranno mostrate di nuovo" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Abilita tutti i messaggi «Non chiedermelo più»" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Mostra titolo della finestra sulla barra del titolo" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Abilita le parti sensibili alla sicurezza dell'API DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Rimuovi barra del titolo e cornice della finestra" + +# Qui è necessario risparmiare spazio. +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Verifica con espressioni regolari" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2703,72 +2822,114 @@ msgstr "Usa le dimensioni della finestra attuali al prossimo avvio" msgid "The window size will be saved upon exiting Konsole" msgstr "Le dimensioni della finestra saranno salvate all'uscita da Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"All'avvio di Konsole, crea una nuova scheda invece di creare nuove finestre, " +"se possibile" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Mostra l'avanzamento nella barra delle applicazioni" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Quando uno script segnala il suo avanzamento, sarà mostrato nella barra " +"delle applicazioni" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "L'API DBus come runCommand sarà abilitata" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "In ascolto per i codici del terminale ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Invio/ricezione automatica di file tramite connessioni seriali" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Larghezza miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Imposta la larghezza della miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Utilizza Maiusc per visualizzare una miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Utilizza Alt per visualizzare una miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Utilizza Ctrl per visualizzare una miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "La ricerca distingue le maiuscole" # Non esiste nella barra di ricerca un «Evidenzia» singolo, e siamo a corto di spazio. #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Evidenzia tutte le corrispondenze" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Imposta se il testo corrispondente dovrebbe essere evidenziato" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "La ricerca si interrompe invece di riprendere dall'inizio" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Controlla se i cgroup secondari vengono creati per le singole schede" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2778,93 +2939,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controlla la visibilità dell'intera barra delle schede" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controlla la dimensione della maniglia tra i pannelli" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controlla la posizione della barra delle schede" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controlla lo stile visivo della barra delle schede" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Usa un file .css definito dall'utente per la barra delle schede" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Il file .css da usare per lo stile della barra delle schede" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" "Consenti il clic con il tasto centrale sulle schede aperte per chiuderle" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" "Controlla la visibilità del pulsante «Nuova scheda» sulla barra delle schede" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Controlla la visibilità del pulsante «Cerca schede» sulla barra delle schede" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controlla dove sarà visualizzato il pulsante «Chiudi scheda»" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controlla dove mettere la nuova scheda" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Espandi la larghezza delle schede" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Per i file di scorrimento, usa la cartella di sistema" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Per i file di scorrimento, usa la cartella specifica dell'utente" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Per i file di scorrimento, usa la posizione della cartella specificata" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Per i file di scorrimento, usa questa cartella" @@ -2876,34 +3044,30 @@ msgid "Enable memory monitoring:" msgstr "Abilita il controllo della memoria:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Le modifiche avranno effetto al riavvio. Se abilitata, il consumo sostenuto " -"di memoria da parte di Konsole\n" -"che supera il valore specificato farà sì che systemd-oomd elimini le schede\n" -"contenente i processi ad uso intensivo di memoria. Nota: l'abilitazione\n" -"potrebbe causare rallentamenti maggiori durante un consumo elevato di " -"memoria e l'impostazione\n" -"di valori eccessivamente bassi potrebbe comunque causare la chiusura di " -"Konsole." +"di memoria da parte di Konsole che supera il valore specificato farà sì che " +"systemd-oomd elimini le schede contenenti i processi ad uso intensivo di " +"memoria. Nota: l'abilitazione potrebbe causare rallentamenti maggiori " +"durante un consumo elevato di memoria e l'impostazione di valori " +"eccessivamente bassi potrebbe comunque causare la chiusura di Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Limite di memoria:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3066,125 +3230,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nessuna" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Mostra il pulsante Cerca schede:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Mai" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Varie:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Mostra il pulsante «Nuova scheda»" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Espandi la larghezza delle singole schede alla finestra intera" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Usa foglio di stile definito dall'utente:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(nessuno)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportamento" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Aggiungi nuove schede:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Alla &fine" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Dopo la scheda a&ttuale" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Chiudi la scheda facendo clic con il tasto centrale" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Divisioni" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Mostra intestazione:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Se necessario" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Mai" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Dimensione della maniglia di trascinamento:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Piccola" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Media" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grande" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3236,13 +3418,12 @@ msgstr "px" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" "

            Per utilizzare questa funzionalità, abilita Mouse->Varie->Sottolinea i file nelle impostazioni del tuo profilo" +"style=\" font-weight:600;\">Mouse->Varie->Sottolinea i file " +"nelle impostazioni del tuo profilo

            " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3280,64 +3461,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Abilita la generazione delle miniature" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Dimensione: %1×%2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Sei sicuro di voler incollare un carattere?" msgstr[1] "Sei sicuro di voler incollare %1 caratteri?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Conferma incollatura" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Fine del testo/Interruzione: potrebbe interrompere il processo attuale" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Fine della trasmissione: potrebbe uscire dal processo attuale" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Campana: proverà a emettere un avviso udibile" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: sospende l'uscita" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Sostituisci/sospendi: potrebbe sospendere il processo attuale" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: utilizzato per manipolare lo stato del terminale" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Separatore file/Uscita: potrebbe interrompere il processo attuale" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3346,31 +3527,31 @@ msgstr "" "Il testo che stai provando a incollare contiene caratteri di controllo " "nascosti, vuoi filtrarli?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Conferma incollatura" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Incolla sen&za caratteri di controllo" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Incolla tutto" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "Annulla" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been sospeso premendo Ctrl+S. Premi Ctrl+Q per " "riprendere." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Il terminale è in sola lettura." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Cambia la cartella a" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Incolla posizione" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Vista divisa" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dividi vista destra/sinistra" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dividi vista alto/basso" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dividi vista automaticamente" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dividi divisa sinistra/destra dalla scheda successiva" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dividi vista alto/basso dalla scheda successiva" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dividi vista automaticamente dalla scheda successiva" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Carica una nuova scheda con disposizione di 2x2 terminali" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Carica una nuova scheda con disposizione di 2x1 terminali" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Carica una nuova scheda con disposizione di 1x2 terminali" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Espandi vista" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Restringi vista" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Stacca la scheda att&uale" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "S&tacca la scheda attuale" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Scheda successiva" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Scheda precedente" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Terminale superiore in primo piano" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Terminale inferiore in primo piano" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Terminale a sinistra in primo piano" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Terminale a destra in primo piano" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Focus sul terminale successivo" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Focus sul terminale precedente" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Passa all'ultima scheda" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Schede utilizzate di recente" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Commuta tra due schede" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Schede di utilizzate di recente (inverso)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Massimizza la vista attuale" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Massimizza la vista attuale" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Commuta lo zoom e massimizza la vista corrente" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Commuta lo zoom e massimizza la vista corrente" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Sposta scheda a destra" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Sposta scheda a sinistra" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Imposta integrazione semantica (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Commuta la visualizzazione dei suggerimenti semantici" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Commuta la visualizzazione dei numeri di riga" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Dimensioni uguali per tutte le viste" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Passa alla scheda %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Suggerimenti semantici " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Numeri di riga " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Salva la disposizione delle schede" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Disposizione della vista di Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3638,7 +3831,7 @@ msgstr "" "Si è verificato un problema durante il salvataggio della disposizione.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3648,13 +3841,13 @@ msgstr "" "Si è verificato un problema durante il caricamento della disposizione.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Carica la disposizione delle schede" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3753,28 +3946,40 @@ msgstr "Co&difica dei caratteri predefinita:" msgid "Shortcut for peeking the primary screen:" msgstr "Scorciatoia per dare un'occhiata alla schermata principale:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Imposta l'intervallo tra i salvataggi automatici:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Numeri di riga:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Mai" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Quando vengono visualizzati i suggerimenti degli &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3810,7 +4015,7 @@ msgstr "Modifica lo schema di colori selezionato" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3866,6 +4071,9 @@ msgstr "Rendi colori intensi in grassetto" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Utilizza il carattere selezionato per i caratteri di riga invece del codice " @@ -3874,8 +4082,11 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Utilizza i caratteri di riga contenuti nel carattere" +msgstr "Utilizza i caratteri di linea contenuti nel carattere" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3996,29 +4207,43 @@ msgid "Make the cursor blink regularly" msgstr "Fai lampeggiare regolarmente il cursore" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Abilitato" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animazione:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Rendi fluida l'animazione del cursore" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Varie" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Finestra:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4028,146 +4253,146 @@ msgstr "" "dopo un ridimensionamento" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" "Mostra suggerimento per la dimensione del terminale dopo un ridimensionamento" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Inverti sempre i colori del testo selezionato" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Intensità oscuramento:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Colore:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Seleziona il colore utilizzato per disegnare il bordo" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminali inattivi:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminali attivi:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Contenuti del terminale" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Interlinea:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Il numero di pixel tra due righe" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margini:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Allinea al centro:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indica se la finestra è attiva oscurando i colori" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Scurisci" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indica se la finestra è attiva disegnando un bordo" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Bordo" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Visualizza una linea verticale alla colonna:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "" "

            Disposizione di testo complesso

            " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposizione di testo complesso" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Resa del testo in modalità parola" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Modalità parola" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4177,43 +4402,43 @@ msgstr "" "agli attributi interrompono la parola durante il rendering)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Usa gli stessi attributi per l'intera parola" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Rendi insieme le parole di caratteri ASCII" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caratteri ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Rendi insieme le parole di caratteri dell'alfabeto brahmi" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Caratteri dell'alfabeto brahmi" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Carattere emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4223,13 +4448,13 @@ msgstr "" "farsi o ebraico)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Resa del testo bidirezionale" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4237,83 +4462,83 @@ msgstr "" "primo carattere forte" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "forza la direzione della riga da sinistra a destra" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tratta i caratteri di disegno delle tabelle tavolo come LTR forte." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Ignora la modalità BiDi dei caratteri delle tabelle" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignora wcwidth dei caratteri problematici" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Sovrascrivi wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Modifica profilo" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Generale" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Schede" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aspetto" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Scorrimento" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastiera" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Associazioni dei tasti" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mouse" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avanzate" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4325,49 +4550,54 @@ msgstr "" "filename>.Cambia i permessi del file o imposta un nome diverso per " "salvare le impostazioni in un nuovo profilo." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" "Nome del profilo è vuoto, imposta un nome per poter salvare le impostazioni." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Un profilo con il nome «%1» esiste già." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Il nome del profilo supera la lunghezza massima consentita (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "I caratteri evidenziati non sono validi nei nomi di profile: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Modifica di un profilo: %2" msgstr[1] "Modifica di %1 profili: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Crea nuovo profilo" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Modifica il profilo «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Nessuno" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4377,7 +4607,7 @@ msgid_plural " columns" msgstr[0] " colonna" msgstr[1] " colonne" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4387,42 +4617,42 @@ msgid_plural " rows" msgstr[0] " riga" msgstr[1] " righe" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Campanella di sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notifiche di sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Campanella visiva" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignora gli eventi della campanella" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Profilo predefinito per le nuove sessioni di terminale in %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Modifica l'ambiente" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Una variabile d'ambiente per riga" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4430,23 +4660,23 @@ msgid_plural " seconds" msgstr[0] " secondo" msgstr[1] " secondi" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Seleziona la cartella iniziale" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Ottieni nuovo..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Caricamento dello schema %1 non riuscito." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4455,7 +4685,7 @@ msgstr "" "Questo schema di colori usa uno sfondo trasparente, che non sembra essere " "supportato sul tuo desktop" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4464,12 +4694,12 @@ msgstr "" "Konsole è stato avviato prima che fossero abilitati gli effetti del desktop. " "Devi riavviare Konsole per vedere lo sfondo trasparente." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Predefinita per tipo di file" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4498,7 +4728,7 @@ msgstr "" "sarà ignorata e il file sarà aperto con l'editor di testo\n" "predefinito." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Comando personalizzato dell'editor di testo" @@ -4590,26 +4820,57 @@ msgstr "Scegli la cartella iniziale" msgid "Start in same directory as current session" msgstr "Avvia nella stessa cartella della sessione attuale" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Quando si apre una nuova scheda o una divisione, entra automaticamente nello " +"stesso container (Toolbox, Distrobox) della sessione attuale" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Inserisci lo stesso container della sessione attuale" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Inizia sempre dal container:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Avvia sempre le nuove sessioni utilizzando questo profilo all'interno del " +"container selezionato" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ambiente:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Modifica l'elenco di variabili d'ambiente e valori associati" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Dimensioni ini&ziali del terminale:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4622,31 +4883,31 @@ msgstr "" "deve essere disabilitato per far funzionare queste voci.

            " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Modalità della campanella del &terminale:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Integrazione semantica" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulazione frecce su/giù" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Il clic del mouse nella riga di immissione sposta il cursore" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Suggerimenti semantici:" @@ -4656,9 +4917,9 @@ msgstr "Suggerimenti semantici:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4669,9 +4930,9 @@ msgstr "Mai" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4682,34 +4943,34 @@ msgstr "Quando vengono visualizzati i suggerimenti degli URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barre di errore rosse:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Sfondo di errore rosso:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barre alternate:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Sfondo alternato:" @@ -5071,119 +5332,132 @@ msgid "Scrollback:" msgstr "Scorrimento:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Scorrimento Pag↑/Pag↓:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Scorri la pagina di metà dell'altezza della finestra" +msgid "Highlight the lines coming into view" +msgstr "Evidenzia le righe che vengono visualizzate" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" -msgstr "Al&tezza di mezzo schermo" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Scorri la pagina di un'altezza della finestra" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "Altezza di sc&hermo intero" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Posizione della barra di scorrimento:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "" -"Mostra la barra di scorrimento sul lato destro della finestra del terminale" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, kde-format -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Lato &destro" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "" -"Mostra la barra di scorrimento sul lato sinistro della finestra del terminale" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, kde-format -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "&Lato sinistro" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Nascosta" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Evidenziazione:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Evidenzia le righe che vengono visualizzate" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Ridimensiona le righe:" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "Ridimensiona le righe quando il terminale viene ridimensionato" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "Colore degli indicatori della barra di scorrimento:" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" "Dimensione di ciascun indicatore (come percentuale della lunghezza della " "barra di scorrimento):" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Evidenziazione:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "Scorri la pagina di metà dell'altezza della finestra" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "Al&tezza di mezzo schermo" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Colore degli indicatori della barra di scorrimento:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" +"Colore delle righe evidenziate della ricerca nella barra di scorrimento:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Ridimensiona le righe:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Scorri la pagina di un'altezza della finestra" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "Altezza di sc&hermo intero" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "" +"Mostra la barra di scorrimento sul lato destro della finestra del terminale" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Lato &destro" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "" +"Mostra la barra di scorrimento sul lato sinistro della finestra del terminale" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "&Lato sinistro" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "Ridimensiona le righe quando il terminale viene ridimensionato" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "Posizione della barra di scorrimento:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" +msgstr "Opacità della righe evidenziate della ricerca:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5289,37 +5563,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nessuna" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Trova..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Inserisci qui il testo da cercare" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Successivo" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Trova la corrispondenza successiva della chiave di ricerca attuale" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Precedente" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5327,80 +5601,80 @@ msgstr "Trova la corrispondenza precedente della chiave di ricerca attuale" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Mostra il menu delle opzioni" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Chiudi la barra di ricerca" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Distingui le maiuscole" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Imposta se la ricerca distingue le maiuscole" +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Mostra il menu delle opzioni" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Chiudi la barra di ricerca" + # Qui è necessario risparmiare spazio. -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Espressione regolare" # Non esiste nella barra di ricerca un «Evidenzia» singolo, e siamo a corto di spazio. -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Evidenzia tutti i risultati" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Imposta se il testo corrispondente dovrebbe essere evidenziato" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Cerca all'indietro" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Imposta se la ricerca debba cominciare dalla fine" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Non riprendere dall'inizio" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" "Imposta se la ricerca deve interrompersi invece di riprendere dall'inizio" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Cerca la chiave di ricerca attuale dalla fine" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5411,7 +5685,7 @@ msgstr "Cerca la chiave di ricerca attuale dall'inizio" msgid "Print Shell" msgstr "Stampa shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5451,6 +5725,12 @@ msgstr "Formato del titolo delle schede normali" msgid "Tab Co&lor:" msgstr "Co&lore della scheda:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Colore della scheda &Attività:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5530,7 +5810,7 @@ msgstr "Massimizza terminale" #, kde-format msgctxt "@info:tooltip" msgid "Move terminal to new tab" -msgstr "Sposta i terminale in una nuova scheda" +msgstr "Sposta il terminale in una nuova scheda" #: widgets/TerminalHeaderBar.cpp:101 #, kde-format @@ -5544,36 +5824,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Ripristina il terminale" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Apri una nuova scheda" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Cerca schede" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Chiudi questa scheda" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Stacca sche&da" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configura o rinomina scheda..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Chiudi scheda" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

            This warning will only show once for this Konsole instance.

            " +#~ msgstr "" +#~ "I metodi D-Bus sendText/runCommand sono stati utilizzati. Ci sono " +#~ "problemi di sicurezza se consenti che questi metodi siano pubblici. Se " +#~ "lo desideri, tali metodi possono essere modificati per solo uso interno " +#~ "ricompilando Konsole.

            Questo avviso sarà visualizzato solo una volta " +#~ "per questa istanza di Konsole.

            " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Distingui le maiuscole" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Nessuna" @@ -6206,9 +6514,6 @@ msgstr "Chiudi scheda" #~ msgid "New" #~ msgstr "Nuova" -#~ msgid "Select &Tab Color" -#~ msgstr "Seleziona colore della &scheda" - #~ msgid "KWrited - Listening on Device %1" #~ msgstr "KWrited - Ascolto il dispositivo %1" @@ -6840,9 +7145,6 @@ msgstr "Chiudi scheda" #~ msgid "Overwrite" #~ msgstr "Sovrascrivo" -#~ msgid "Unable to write to file." -#~ msgstr "Impossibile scrivere sul file." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/ja/konsole.po b/local/recipes/kde/konsole/source/po/ja/konsole.po index b06a599733..e6c47217d4 100644 --- a/local/recipes/kde/konsole/source/po/ja/konsole.po +++ b/local/recipes/kde/konsole/source/po/ja/konsole.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2023-12-03 23:07-0800\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -65,7 +65,7 @@ msgstr "表示" # ACCELERATOR added by translatro #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "ビューを分割(&V)" @@ -102,7 +102,7 @@ msgid "S&crollback" msgstr "スクロールバック(&L)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "セッションツールバー" @@ -194,48 +194,60 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "システムがサポートしていても透明の背景を無効にします。" # CommandLineOptions -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "利用可能なプロファイルを一覧表示" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" # CommandLineOptions -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "プロファイルのプロパティを変更する" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -243,7 +255,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -252,13 +264,13 @@ msgid "" msgstr "" # CommandLineOptions -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "コマンドに渡す引数" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Faint)" @@ -278,157 +290,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "前景色" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "背景色" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "色 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "色 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "色 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "色 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "色 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "色 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "色 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "色 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "前景 (強調)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "背景 (強調)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "色 1 (強調)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "色 2 (強調)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "色 3 (強調)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "色 4 (強調)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "色 5 (強調)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "色 6 (強調)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "色 7 (強調)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "色 8 (強調)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "前景 (目立たない色)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "背景 (目立たない色)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "色 1 (目立たない色)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "色 2 (目立たない色)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "色 3 (目立たない色)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "色 4 (目立たない色)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "色 5 (目立たない色)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "色 6 (目立たない色)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "色 7 (目立たない色)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "色 8 (目立たない色)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -683,6 +695,41 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "ホスト: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [標準]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -726,7 +773,7 @@ msgstr "" msgid "Copy Location" msgstr "場所をコピー" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "サムネイルを生成中" @@ -757,13 +804,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "フォントを選択" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "すべてのフォントを表示" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -801,17 +848,17 @@ msgstr "キーの組み合わせ" msgid "Output" msgstr "出力" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "新しいキーバインドリスト" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "キーバインドリストを編集" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -819,7 +866,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -853,225 +900,225 @@ msgstr "入力:" msgid "Output:" msgstr "出力:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "ターミナルエミュレータ" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, The Konsole Developers" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "全般的なメンテナー、バグ修正と全般的な改良" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "以前のメンテナー、KDE4 に移植" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "オリジナルの作者" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "大規模なリファクタリング、バグ修正と全般的な改良" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "バグ修正と全般的な改良" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "バグ修正と大幅な改良" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "全般的な改良" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "バグ修正" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris サポートと履歴" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "バグ修正、起動時のパフォーマンスを改善" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "マーキングの改良" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1081,13 +1128,13 @@ msgstr "" "埋め込み Konsole\n" "ツールバーとセッション名" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1097,25 +1144,25 @@ msgstr "" "埋め込み Konsole\n" "全般的な改良" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "視覚効果" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1125,133 +1172,133 @@ msgstr "" "kvt プロジェクトからのコード\n" "全般的な改良" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "スキーマとテキスト選択の改良" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI への移植" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD への移植" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "その他たくさんの方々に感謝します。\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "新しいタブ(&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "タブを複製(&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "新しいウィンドウ(&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "ウィンドウを閉じる" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "ブックマーク(&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "ウィンドウの色スキーム(&W)" # ACCELERATOR added by translator -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "プロファイルの管理..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "メニューをアクティブにする" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "タブのレイアウトを保存..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "タブのレイアウトを読み込む..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1259,68 +1306,68 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "このウィンドウで %1 個のタブを開いています。それでも終了しますか?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "終了の確認" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "ウィンドウを閉じる(&W)" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "現在のタブを閉じる(&T)" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "このウィンドウで %1 個のターミナルを開いています。それでも終了しますか?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "プロファイル" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "一般" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "メモリ" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "タブバー/スプリッター" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "一時ファイル" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "サムネイル" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1405,7 +1452,7 @@ msgstr "保存" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1417,28 +1464,28 @@ msgid "Cancel" msgstr "キャンセル" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "クイックコマンド" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "クイックアクセスを表示" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "コマンド:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "クイックコマンドを表示" @@ -1482,7 +1529,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1539,11 +1586,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH 設定" @@ -1603,95 +1650,95 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "削除" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH 設定を削除" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "ダブルクリックでショートカットを変更" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "最初のセッションは終了しても自動的に閉じない" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected color scheme" msgid "Delete selected entry" @@ -1891,25 +1938,25 @@ msgstr "出力オプション" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "プリンタに適したモード (黒のテキスト、背景なし) (&F)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "出力を拡大縮小する(&S)" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "ビルトイン" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "標準プロファイル" @@ -1970,17 +2017,38 @@ msgstr "ダブルクリックでショートカットを変更" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 の出力を保存" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 は無効な URL です。出力を保存できませんでした。" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2016,82 +2084,103 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "ダークパステル" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "黒地に緑" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux 色" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "黒地に赤" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized Light" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "黒地に白" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "標準 (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "linux コンソール" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris コンソール" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "検索:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ここに検索するテキストを入力します" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "セッション '%1' にベル" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "実行ファイルが見つかりませんでした: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "警告: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "開始するインタラクティブシェルが見つかりませんでした。" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2100,205 +2189,213 @@ msgstr "" "'%1' が見つかりませんでした。代わりに '%2' を起動します。プロファイルの設定を" "確認してください。" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "プログラム '%1' を引数 '%2' で開始できませんでした。" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "セッション '%1' が休止" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "セッションを表示" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "終了" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "プログラム '%1' はクラッシュしました。" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "プログラム '%1' はステータス %2 で終了しました。" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem の進捗" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "セッション '%1' が活動" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole はこのブックマークの開き方が分かりません: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "セッションを閉じる(&C)" # ACCELERATOR added by translator -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ファイルマネージャを開く(&O)" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "コピー" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "ビューを左右に分割" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "ビューを上下に分割" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "入力をコピー" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "入力をコピー" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "選択を貼り付け" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "すべて選択(&S)" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Mode" msgstr "テキストの選択" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Line" msgstr "テキストの選択" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "名前を付けて出力を保存(&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "名前を付けて出力を保存(&A)..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "画面を印刷(&P)..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "スクロールバックの調整..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "スクロールバックをクリア" # ACCELERATOR added by translator -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "スクロールバックをクリア&リセット(&R)" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "プロファイルを編集" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "前へ" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "プロファイルの切り替え" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "エンコーディングを設定(&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, fuzzy, kde-format #| msgctxt "" #| "@item:inmenu Allows terminal applications to request mouse tracking" @@ -2307,7 +2404,7 @@ msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "マウストラッキングを許可" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2315,164 +2412,164 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "読み取り専用" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "タブ名を変更(&R)..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "現在のウィンドウのすべてのタブ(&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "タブを選択(&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "なし(&N)" # ACCELERATOR added by translator -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "入力をコピー(&I)" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ZModem アップロード(&Z)..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "活動を監視(&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "活動を監視(&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "休止を監視(&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "活動を監視(&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "フォントサイズを大きく" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "フォントサイズを小さく" # ACCELERATOR added by translator -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "フォントサイズをリセット" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "シグナルを送信" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "停止(&S)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "現在のタブを閉じる(&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "ハングアップ(&H)" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "割り込み(&I)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "終了(&T)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "殺す(&K)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "ユーザシグナル &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "ユーザシグナル &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "新しいプロファイルを作成..." # ACCELERATOR added by translator -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "現在のプロファイルを編集(&E)..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "このセッションで実行中のプログラムがあります。本当に閉じますか?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "プログラム %1 がこのセッションで実行中です。本当に閉じますか?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "終了の確認" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "プログラムを閉じる" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2482,38 +2579,38 @@ msgid "" "by force?" msgstr "このセッションで実行中のプログラムがあります。本当に閉じますか?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "プログラム %1 がこのセッションで実行中です。本当に閉じますか?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "ZModem ダウンロードを保存..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2524,14 +2621,14 @@ msgstr "" "ステム上に見つかりませんでした。

            rzsz か lrzsz パッケージをインストール" "してください。

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "" "

            現在のセッションには実行中の ZModem ファイル転送が既にあります。

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2540,7 +2637,7 @@ msgstr "" "

            適切な ZModem ソフトウェアがシステム上に見つかりませんでした。

            rzsz " "か lrzsz パッケージをインストールしてください。

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem でアップロードするファイルを選択" @@ -2563,145 +2660,172 @@ msgctxt "@title:window" msgid "Configure" msgstr "設定" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "検索:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "メニューのアクセラレータを有効化" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "ウィンドウサイズを保存" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "タイトルバーにウィンドウのタイトルを表示" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "正規表現を利用して検索" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Konsole を起動したときに、可能であれば既存のプロセスを再利用します" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "すべての Konsole ウインドウを1つのプロセスで実行" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "一致したものすべてを強調表示" +msgid "If enabled, profile settings will be ignored" +msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "大文字と小文字を区別して検索するかどうかを設定します" +msgid "Remember window size" +msgstr "ウィンドウサイズを保存" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "大文字と小文字を区別" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "新しいタブの配置:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "ウィンドウのタイトルバーと枠を非表示" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "プロセスとウィンドウ:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "通知:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "すべてのダイアログを再表示" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "すべての「次回から確認しない」メッセージを有効化" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "下から検索を開始するときの設定" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "後方検索" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "大文字と小文字を区別して検索するかどうかを設定します" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "大文字と小文字を区別" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "プロセスとウィンドウ:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "一致したものすべてを強調表示" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "検索:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "下から検索を開始するときの設定" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "メニューのアクセラレータを有効化" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "すべてのダイアログを再表示" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "すべての「次回から確認しない」メッセージを有効化" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "タイトルバーにウィンドウのタイトルを表示" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "ウィンドウのタイトルバーと枠を非表示" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "正規表現を利用して検索" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2726,41 +2850,80 @@ msgstr "終了時にウィンドウのサイズと位置を保存する" msgid "The window size will be saved upon exiting Konsole" msgstr "終了時にウィンドウのサイズと位置を保存する" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Konsole を起動したときに、可能であれば既存のプロセスを再利用します" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2768,7 +2931,7 @@ msgid "Search is case sensitive" msgstr "大文字と小文字を区別して検索するかどうかを設定します" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Highlight all matches" @@ -2776,7 +2939,7 @@ msgid "Highlight all search matches" msgstr "一致したものすべてを強調表示" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether matching text should be highlighted" @@ -2784,19 +2947,19 @@ msgid "Sets whether matching text should be highlighted" msgstr "マッチしたテキストを強調表示するかどうかを設定します" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2804,92 +2967,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "カーソルを常に指定した色で描画します" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2902,26 +3071,24 @@ msgid "Enable memory monitoring:" msgstr "タブの監視" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3079,126 +3246,149 @@ msgctxt "Do not show a close button" msgid "None" msgstr "なし" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "タブを閉じるボタンの表示:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "常に表示" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "表示しない" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "その他:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "'新しいタブ' ボタンを表示" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "個々のタブの幅をウィンドウ全体まで広げる" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "ユーザ定義のスタイルシートを使用する:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(なし)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "挙動" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "新しいタブの配置:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "タブの最後(&T)" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "現在のタブの右(&T)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "中クリックでタブを閉じる" # ACCELERATOR added by translatro #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "ビュー分割" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "ヘッダを表示:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "必要な時に表示" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "表示しない" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "小" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "中" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "大" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3250,8 +3440,8 @@ msgstr "ピクセル" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3293,97 +3483,97 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "メニューのアクセラレータを有効化" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "サイズ: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "終了の確認" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "終了の確認" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "カーソルの色を現在の文字に合わせる" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "すべて貼り付け(&P)" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been 停止 (XOFF) されました。再開するには Ctrl+Q を押してください。" "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "ディレクトリを変更(&D)" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "場所を貼り付け(&P)" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "ビューを分割" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "ビューを左右に分割" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "ビューを上下に分割" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "ビューを分割 (自動)" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "ビューを次のタブと左右に分割" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "ビューを次のタブと上下に分割" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "ビューを次のタブと分割 (自動)" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "2x2 レイアウトの新しいタブを読み込む" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "2x1 レイアウトの新しいタブを読み込む" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "1x2 レイアウトの新しいタブを読み込む" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "ビューを広げる" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "ビューを狭める" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "現在のビューを分離(&V)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "現在のタブを分離(&T)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "次のタブ" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "前のタブ" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ターミナルの上" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ターミナルの下" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ターミナルの上" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ターミナルの下" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "最後のタブに切り替え" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3590,7 +3794,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "タブを右に移動" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3598,47 +3802,47 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "タブを左に移動" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "タブ %1 に切り替え" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3646,13 +3850,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "タブを左に移動" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3665,7 +3869,7 @@ msgstr "" "出力を保存するときに問題が発生しました。\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3675,13 +3879,13 @@ msgstr "" "レイアウトの読み込み中に問題が発生しました。\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "タブのレイアウトを読み込む" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3782,15 +3986,27 @@ msgstr "デフォルトの文字エンコーディング:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "セッション番号: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, fuzzy, kde-format #| msgid "&Never" msgctxt "Never" @@ -3798,14 +4014,14 @@ msgid "&Never" msgstr "表示しない(&N)" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -3843,7 +4059,7 @@ msgstr "選択した色スキームを編集します" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3899,13 +4115,22 @@ msgstr "ボールドフォントは強い色調で表示する" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "組み込みコードの代わりに選択されたフォントの罫線文字を使用します" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "フォントに含まれる罫線文字を使用する" @@ -4032,29 +4257,46 @@ msgid "Make the cursor blink regularly" msgstr "カーソルを規則的に点滅" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "有効" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "メニューをアクティブにする" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "カーソルを規則的に点滅" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "その他" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "ウィンドウ:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4062,53 +4304,53 @@ msgid "" msgstr "リサイズ後にウィンドウの中央にターミナルの行数と列数を表示" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "リサイズ後にターミナルのサイズを表示" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "色:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "カーソルを表示する色を選択" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" msgstr "ターミナルサイズ" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Active Terminals:" msgstr "ターミナルサイズ" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4116,96 +4358,96 @@ msgid "Terminal contents" msgstr "ターミナルの機能" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "行間隔:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "行間のピクセル数" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "双方向テキスト表示を有効にする" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4213,44 +4455,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "カーソルの色を現在の文字に合わせる" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "絵文字フォント:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4259,98 +4501,98 @@ msgstr "" "ターミナルで双方向表示を有効化 (アラビア語・ペルシア語・ヘブライ語でのみ有効)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "双方向テキスト表示を有効にする" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "カーソルの色を現在の文字に合わせる" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "プロファイルを編集" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "全般" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "タブ" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "外観" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "スクロール" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "キーボード" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "キーバインド" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "マウス" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "詳細" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4359,47 +4601,54 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "%1 個のプロファイルを編集: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "新しいプロファイルを作成" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "プロファイル \"%1\" を編集" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "なし" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgid "Columns" msgctxt "" @@ -4409,7 +4658,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "文字数" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4418,72 +4667,72 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications:" msgid "System Notifications" msgstr "通知:" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "視覚効果" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "" "選択したプロファイルを新しいターミナルセッションのデフォルトとして設定します" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "環境を編集" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "1行に1つの環境変数を記述します" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] " 秒" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "開始ディレクトリを選択" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "新規..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4492,7 +4741,7 @@ msgstr "" "この色スキームには、あなたのデスクトップがサポートしていないと思われる透明の" "背景が含まれています" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4501,13 +4750,13 @@ msgstr "" "デスクトップエフェクトが有効になる前に Konsole が起動されました。透明化を有効" "にする場合は Konsole を再起動してください。" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "標準プロファイル" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4524,7 +4773,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4619,27 +4868,55 @@ msgstr "開始ディレクトリを選択" msgid "Start in same directory as current session" msgstr "現在のタブと同じディレクトリで開始する" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "現在のタブと同じディレクトリで開始する" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "環境変数:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "環境変数とそれに関連付けられた値のリストの編集" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "ターミナルサイズ" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, fuzzy, kde-format #| msgid "" #| "Configure Konsole->General->Use current window size on next startup must " @@ -4654,7 +4931,7 @@ msgstr "" "存するにチェックを付けると無効になります。" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4662,25 +4939,25 @@ msgid "&Terminal bell mode:" msgstr "ターミナルエミュレータ" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4690,9 +4967,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, fuzzy, kde-format #| msgid "&Never" msgctxt "Never" @@ -4704,9 +4981,9 @@ msgstr "表示しない(&N)" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4717,22 +4994,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4740,13 +5017,13 @@ msgid "Red error background:" msgstr "背景色" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5115,53 +5392,95 @@ msgid "Scrollback:" msgstr "スクロールバック:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "スクロールするページのアップ/ダウン量" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "ウィンドウの半分の高さをスクロール" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half Page Height" msgid "Half screen heigh&t" msgstr "ページの半分の高さ" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "ウィンドウの全表示分をスクロール" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full Page Height" msgid "F&ull screen height" msgstr "すべてのページの高さ" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "タブバーの位置:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "ターミナルウィンドウの右側にスクロールバーを表示" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5169,66 +5488,36 @@ msgid "Ri&ght side" msgstr "右側に表示" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "ターミナルウィンドウの左側にスクロールバーを表示" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "フォントサイズ:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "タブバーの位置:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5352,119 +5641,120 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "なし(&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "検索..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ここに検索するテキストを入力します" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "次へ" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "現在の検索の次のマッチを探します" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "前へ" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "現在の検索の前のマッチを探します" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "オプションメニューを表示" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "検索バーを閉じます" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "大文字と小文字を区別" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "大文字と小文字を区別して検索するかどうかを設定します" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "オプションメニューを表示" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "検索バーを閉じます" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "正規表現" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "一致したものすべてを強調表示" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "マッチしたテキストを強調表示するかどうかを設定します" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, fuzzy, kde-format #| msgid "Search backwards" msgctxt "@item:inmenu" msgid "Search backwards" msgstr "後方検索" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "下から検索を開始するときの設定" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "下から検索を開始するときの設定" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the bottom" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "現在の検索の次のマッチを探します" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the top" msgctxt "@info:tooltip" @@ -5477,7 +5767,7 @@ msgstr "現在の検索の次のマッチを探します" msgid "Print Shell" msgstr "シェル" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "Do not show a close button" #| msgid "None" @@ -5522,6 +5812,14 @@ msgstr "通常のタブタイトルのフォーマット" msgid "Tab Co&lor:" msgstr "色" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "色" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5621,36 +5919,48 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ターミナルを復元" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "新しいタブを開く" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "タブを切り離す(&D)" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "現在のタブを閉じる" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "タブを切り離す(&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "タブを設定/名前変更(&C)..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "タブを閉じる" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "大文字と小文字を区別" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "なし" diff --git a/local/recipes/kde/konsole/source/po/ka/konsole.po b/local/recipes/kde/konsole/source/po/ka/konsole.po index 2c902b0fc5..10c2e8f4b9 100644 --- a/local/recipes/kde/konsole/source/po/ka/konsole.po +++ b/local/recipes/kde/konsole/source/po/ka/konsole.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-18 05:43+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-20 06:26+0100\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" "Language: ka\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -50,7 +50,7 @@ msgstr "ხედი" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "ხედის გაყოფა" @@ -86,7 +86,7 @@ msgid "S&crollback" msgstr "&აქაჩვა" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "ხელსაწყოთა ზოლი" @@ -169,35 +169,47 @@ msgstr "მენიუს ზოლის დამალვა. გადა #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "ყველა ხელსაწყოთა ზოლის ჩვენება. გადაიფარება ნაგულისხმევი მნიშვნელობა" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "ყველა ხელსაწყოთა ზოლის დამალვა. გადაიფარება ნაგულისხმევი მნიშვნელობა" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "ჩანართის ზოლის ჩვენება. გადაიფარება ნაგულისხმევი მნიშვნელობა" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "ჩანართის ზოლის დამალვა. გადაიფარება ნაგულისხმევი მნიშვნელობა" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole-ის მთელ ეკრანზე გაშვება" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "გამჭვრივალე ფონის გამორთვა მაშინაც კი, თუ სისტემას მისი მხარდაჭერა გააჩნია." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "ხელმისაწვდომი პროფილების სია" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -205,13 +217,13 @@ msgstr "" "ყველა პროფილის თვისების სახელისა და მათი ტიპების სია (-p-სთან ერთად " "გამოსაყენებლად)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "პროფილი თვისების მნიშვნელობის სეცვლა." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -221,7 +233,7 @@ msgstr "" "შესასრულებელი ბრძანება. ეს პარამეტრი ჩაიჭერს ყველა შემდეგ არგუმენტს, ასე " "რომ, ის ბოლო პარამეტრად გამოიყენეთ." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -231,13 +243,13 @@ msgstr "" "არსებული გაშვებული ასლის ნაძალადევი გამოყენება მაშინაც კი, როცა ის " "ფუნქციონალს არღვევს. მაგ. --new-tab. ძირითადად, გამართვისთვის." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "ბრძანებისთვის გადაცემული არგიმენტები" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -255,157 +267,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "წინა პლანი" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "ფონი" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "ფერი 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "ფერი 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "ფერი 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "ფერი 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "ფერი 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "ფერი 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "ფერი 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "ფერი 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "წინა პლანი (მუქი)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "ფონი (მუქი)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "ფერი 1 (მუქი)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "ფერი 2 (მუქი)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "ფერი 3 (მუქი)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "ფერი 4 (მუქი)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "ფერი 5 (მუქი)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "ფერი 6 (მუქი)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "ფერი 7 (მუქი)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "ფერი 8 (მუქი)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "წინა პლანი (ღია)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "ფონი (ღია)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "ფერი 1 (ღია)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "ფერი 2 (ღია)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "ფერი 3 (ღია)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "ფერი 4 (ღია)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "ფერი 5 (ღია)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "ფერი 6 (ღია)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "ფერი 7 (ღია)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "ფერი 8 (ღია)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -661,6 +673,40 @@ msgstr "თავში" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "ჰოსტი" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"კონტეინერის მხარდაჭერა ხელმისაწვდომი არაა, როცა Konsole Flatpak-ის შიგნითაა " +"გაშვებული." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [ნაგულისხმევი]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -705,7 +751,7 @@ msgstr "" msgid "Copy Location" msgstr "მდებარეობის კოპირება" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "მინიატურის გენერაცია" @@ -736,13 +782,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "აირჩიეთ ფონტი" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "ყველა ფონტის ჩვენება" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -783,17 +829,17 @@ msgstr "კლავიშების მიმდევრობა" msgid "Output" msgstr "გამოტანა" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "ახალი ღილაკების მიბმის სია" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "ღილაკების მიბმის სიის ჩასწორება" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "ღილაკების მიბმის სქემის შენახვა ცარიელი აღწერით შეუძლებელია." @@ -801,7 +847,7 @@ msgstr "ღილაკების მიბმის სქემის შე #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -835,225 +881,225 @@ msgstr "შეყვანა:" msgid "Output:" msgstr "გამოტანა:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "ტერმინალის ემულატორი" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Konsole -ის პროგრამისტები" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "მთავარი პროგრამისტი, შეცდომების გასწორება, ზოგადი განვითარება" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "გადატანა KDE4 -ზე. პროექტის წინა ლიდერი" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "საწყისი ავტორი" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "კოდის გადაწერა, შეცდომების გასწორება და ფუნქციონალის დამატება" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "შეცდომების გასწორება, ზოგადი განვითარება" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "შეცდომების გასწორება და ფუნქციონალის დამატება" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "ზოგადი გაუმჯობესებები" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "შეცდომების გასწორება" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris -ის მხარდაჭერა და ისტორია" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "შეცდომების გასწორება და გაშვების წარმადობა" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "მონიშვნის გაუმჯობესებები" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1063,13 +1109,13 @@ msgstr "" "ჩაშენებული Konsole-ის\n" "ხელსაწყოების პანელი და სესიის სახელები" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1079,25 +1125,25 @@ msgstr "" "ჩაშენებული Konsole-ის\n" "ზოგადი გაუმჯობესებები" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "ვიზუალური ეფექტები" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1107,132 +1153,132 @@ msgstr "" "კოდი kvt პროექტიდან\n" "ზოგადი გაუმჯობესებები" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "სქემა და ტექსტის მონიშვნის გაუმჯობესებები" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI -ზე პორტირება" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD -ზე პორტირება" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "მადლობა ბევრ სხვას.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&ახალი ჩანართი" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ჩანართის &კლონირება" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&ახალი ფანჯარა" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "ფანჯრის დახურვა" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&სანიშნეები" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&ფანჯრის ფერის სქემა" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "პროფილების მართვა..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "მენიუს აქტივაცია" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "ჩანართების განლაგების შენახვა…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "ჩანართების განლაგების ჩატვირთვა…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1241,67 +1287,67 @@ msgid_plural "" msgstr[0] "ამ ფანჯარაში პროცესია ჯერ კიდევ გაშვებული. მაინც გნებავთ გასვლა?" msgstr[1] "ამ ფანჯარაში %1 ღია ტერმინალია. მაინც გნებავთ გასვლა?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "დახურვის დასტური" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&ფანრჯის დახურვა" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "მიმდინარე &ჩანართის დახურვა" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "ამ ფანჯარაში %1 ღია ტერმინალია. მაინც გნებავთ გასვლა?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "პროფილები" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "ზოგადი" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "მეხსიერება" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "ჩანართების ზოლი / გამყოფები" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "დროებითი ფაილები" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "ესკიზები" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1385,7 +1431,7 @@ msgstr "შენახვა" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "განახლება" @@ -1397,29 +1443,29 @@ msgid "Cancel" msgstr "გაუქმენა" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "სწრაფი ბრძანებები" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "სწრაფი წვდომის ჩვენება" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "სწრაფ ბრძანებები ვერ ვიპოვე. ისინი შეგიძლიათ დაამატოთ მენიუდან დამატებები -> " "სწრაფი ბრძანებები" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "დამატებები - სწრაფი ბრძანებები" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "სწრაფი ბრძანებების ჩვენება" @@ -1461,7 +1507,7 @@ msgstr "" "ერთზე მეტი კონფიგურაციით. დარწმუნებული ბრძანდებით?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "დარწმუნებული ბრძანდებით, რომ გნებავთ წაშალოთ %1?" @@ -1514,11 +1560,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 საქაღალდეა SSH-ის ჩანაწერებისთვის" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH-ის მორგება" @@ -1581,24 +1627,24 @@ msgstr "" "შეუძლებელია" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH გასაღები" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "წაშლა" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "არ შეცვალო" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1607,70 +1653,70 @@ msgstr "" "აპირებთ წაშალოთ საქაღალდემ %1,\n" "ერთზე მეტი SSH კონფიგურაციით. დარწმუნებული ბრძანდებით?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH-ის კონფიგურაციების წაშლა" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "შემოტანილი SSH პროფილი
            ზოგიერთი პარამეტრი მხოლოდ-წაკითხვადია." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "აკლია ჰოსტის სახელი" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "აკლია სახელი" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "თუ SSH-ის კონფიგურაცია დაყენებულია, ssh გასაღებს ან მომხმარებლის სახელს ნუ " "მიუთითებთ." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "საჭიროა მომხმარებლის სახელის ან SSH გასაღების მითითბა" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "აკლია საქაღალდე" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH სესიას პროფილი აუცილებლად უნდა ჰქონდეს" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "ამ საქაღალდის წაშლის შეცდომა" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "საქაღალდისა და მისი ქვესაქაღალდეების წაშლა" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "საქაღალდის სახელის შესაცვლელად ორჯერ დააწკაპუნეთ." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "ავტომატურად დამატებული ჩანაწერის წაშლა შეუძლებელია." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "მონიშნული ანაწერის წაშლა" @@ -1862,25 +1908,25 @@ msgstr "გამოტანის პარამეტრები" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&პრინტერის რეჟიმი (შავი ტექსტი, ფონის გარეშე)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "გამოტანის &მასშტაბირება" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "ჩაშენებული" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "ნაგულისხმევი პროფილი" @@ -1939,17 +1985,38 @@ msgstr "მალსახმობის შესაცვლელად ო msgid "Tab Properties" msgstr "ჩანართის თვისებები" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1-ის გამოტანის შენახვა" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 არასწორი ბმულია. გამოტანას ვერ შევინახავ." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "ფაილის ავტოშენახვა ჩავარდა მისამართზე %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "ავტოშენახვა გაჩერდა ეკრანების შეცვლის გამო." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "ავტოშენახვის ფაილი გარედან შეიცვალა. ავტოშენახვა აღარ მოხდება." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "ავტოშენახვის მდგომარეობის განახლების შეცდომა გამოტანის ცვლილებებზე." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1985,81 +2052,98 @@ msgstr "ნაივი" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "მუქი პასტელები" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "მწვანე შავ ფონზე" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "ლინუქსის ფერები" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "წითელი შავზე" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "სოლარიზება" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "სოლარიზებული ღია" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "თეთრი შავ ფონზე" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "ნაგულისხმევი (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "ლინუქს კონსოლი" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-ის კონსოლი" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "ძებნა..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "შეიყვანეთ საძებნი ჩანართის სახელი" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "ზარი '%1'-ში (სესია '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "გამშვები ფაილი ვერ ვიპოვე: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "გაფრთხილება: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "გასაშვებად ინტერაქტიული გარსი ვერ ვიპოვე." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2068,337 +2152,339 @@ msgstr "" "'%1' ვერ ვიპოვე. სამაგიეროდ '%2' გაეშვება. შეამოწმეთ თქვენი პროფილის " "პარამეტრები." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "ვერ გავუშვი პროგრამა '%1' არგუმენტებით '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "ჩაჩუმება '%1'-ში (სესია '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "სესიის ჩვენება" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" -"ახლახანს გამოვიყენე D-Bus-ის მეთოდები sendText/runCommand. არსებობს ეჭვები, " -"რომ ეს მეთოდები, თუ ისინი საჯაროა, უსაფრთხო არაა. თუ გნებავთ, ეს მეთოდები " -"შეგიძლიათ მხოლოდ შიდა მოხმარებაზე გადართოთ,, მაგრამ ამისთვის Konsole-ის " -"თავიდან აგება მოგიწევთ.

            ეს გაფრთხილება Konsole-ის ამ გაშვებული ასლისთვის, " -"მხოლოდ, ერთხელ გამოჩნდება.

            " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "დასრულებულია" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "პროგრამა %1 ავარიულად დასრულდა." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "პროგრამა %1 ავარიულად დასრულდა, კოდით %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem -ის მიმდინარეობა" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "აქტივობა '%1'-ში (სესია '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "უსაფრთხოებაზე გავლენის მქონე DBus-ის API გათიშულია პარამეტრებში." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "პროცესის, '%1', შესრულება დასრულდა სესიაში '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole-მა არ იცის, როგორ გახსნას სანიშნე: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "'%1'-ის მოძებნა მოხდება" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "ვებ მალსახმობების მორგება..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&სესიის დახურვა" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ფაილების მმართველის გახსნა" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "კოპირება" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "ხედის მარჯვენა/მარცხენაზე გაყოფა" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "ხედის ზედა/ქვედაზე გაყოფა" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "ყველაფრის კოპირება მოთხოვნის სტრიქონის გარდა" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "მომხმარებლის შეყვანილის კოპირება" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "ბრძანების გამოტანის კოპირება" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "მონიშნულის ჩასმა" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "ვებში ძებნა" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&ყველას არჩევა" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "აირჩიეთ &რეჟიმი" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "მონიშნეთ &ხაზი" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "ტესტის გამონატანის შენახვა, &როგორც..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "გამოტანის ავტოშენახვა, როგორც..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "ავტოშენახვის გაჩერება" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&ეკრანის დაბეჭდვა..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "გადახვევის მორგება..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "საუბრის გაწმენდა" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "გადახვევის გასუფთავება და ჩამოყრა" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "შემდეგი პროფილი" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "წინა პროფილი" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "პროფილის გადართვა" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&კოდირების დაყენება" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "თაგუნას თვალყურის დევნების დაშვება" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "მხოლოდ-კითხვადი" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&ამ ჩანართის გამართვა ან სახელის გადარქმევა..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&ყველა ჩანართი მიმდინარე ფანჯარაში" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&აირჩეთ ჩანართები..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "არაფერი" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "შეყვანის კოპირება" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem -ით ატვირთვა..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "ერთჯერადი მონიტორები" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "&გარსის მონიტორინგი" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&აქტივობის მონიტორინგი" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&სიჩუმის მონიტორინგი" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "პროცესის დასრულების მონიტორინგი" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" -msgstr "შრიფტის გაზრდა" +msgstr "ფონტის გაზრდა" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" -msgstr "შრიფტის შემცირება" +msgstr "ფონტის შემცირება" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "ფონტის ზომის საწყის მნიშვნელობაზე დაბრუნება" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "სიგნალის გაგზავნა" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "ამოცანის &შეჩერება" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "ამოცანის &გაგრძელება" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&დაკიდება" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "პროცესის &შეწყვეტა" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "პროცესის &გაწყვეტა" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "პროცესის &მოკვლა" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "მომხმარებლის სიგნალი &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "მომხმარებლის სიგნალი &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "ახალი პროფილის შექმნა..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "მიმდინარე პროფილის რედაქტირება..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2407,7 +2493,7 @@ msgstr "" "ამ სესიაში ამჟამად პროცესია გაშვებული. დარწმუნებული ბრძანდებით, რომ გნებავთ, " "დახუროთ ის?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2416,18 +2502,18 @@ msgstr "" "ამ სესიაში ამჟამად პროცესი \"%1\"-ია გაშვებული. დარწმუნებული ბრძანდებით, რომ " "გნებავთ, დახუროთ ის?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "დახურვის დასტური" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "პროგრამის დახურვა" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2436,37 +2522,37 @@ msgstr "" "ამ ესესიაში გაშვებული პროგრამა ცოცხალი თავით არ კვდება. გნებავთ, ძალით " "მოკლათ ის?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "ამ ესესიაში გაშვებული პროგრამა '%1' ცოცხალი თავით არ კვდება. გნებავთ, " "ძალით მოკლათ ის?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "პროგრამის მოკვლა" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "გარსის შეტყობინება ნაჩვენებია სესიაში '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "მიმდინარე საქაღალდის პროგრამით გახსნა" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "ZModem-ით გადმოწერილის შენახვა ფაილში..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2477,13 +2563,13 @@ msgstr "" "შესაბამისი ZModem-ის პროგრამები ვერ ვიპოვე.

            შეიძლება, 'rzsz' ან " "'lrzsz' პაკეტების დაყენებამ გიშველოთ.

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "

            მიმდინარე სესიაში ZModem-ით ფაილის გადაცემა უკვე მიმდინარეობს.

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2492,7 +2578,7 @@ msgstr "" "

            ამ სისტემაში შესაბამისი ZModem-ის პროგრამები ვერ ვიპოვე.

            შეიძლება, " "'rzsz' ან 'lrzsz' პაკეტების დაყენებამ გიშველოთ.

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "აირჩიეთ ფაილები ZModem-ით ასატვირთად" @@ -2515,56 +2601,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "მორგება" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "ძიება:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "მენიუს ამაჩქარებლების ჩართვა" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "თუ ჩართულია, პროფილის პარამეტრები იგნორირებული იქნება" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "ფანჯრის ზომის დამახსოვრება" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "ფანჯრის სათაურის სათაურის ზოლზე ჩვენება" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "ფოკუსი ტერმინალებზე, როცა თაგუნას კურსორს ზედ გადაატარებთ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "რეგულარული გამოსახულებებით დამთხვევა" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2572,88 +2611,161 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "ყველა Konsole-ის ფანჯრის ერთ პროცესში გაშვება" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "ყველა დამთხვევის გამოკვეთა" +msgid "If enabled, profile settings will be ignored" +msgstr "თუ ჩართულია, პროფილის პარამეტრები იგნორირებული იქნება" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "დიდი და პატარა ასოების განსხვავება" +msgid "Remember window size" +msgstr "ფანჯრის ზომის დამახსოვრება" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "დიდი და პატარა ასოების განსხვავება" +msgid "Force new tabs" +msgstr "ახალი ჩანართების იძულება" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "ფანჯრის სათაურის ზოლისა და ჩარჩოს მოცლება" +msgid "Listen for ZModem terminal codes" +msgstr "ZModem-ის ტერმინალის კოდების მოსმენა" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "პროცესი და ფანჯარა:" +msgid "Show progress in taskbar" +msgstr "მიმდინარეობის ჩვენება ამოცანების ზოლში" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "შეტყობინებები:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "ყველა ფანჯარა ნაჩვენები იქნება" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "ყველა \"აღარ მკითხო\" შეტყობინების თავიდან ჩართვა" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "უნდა დაიწყოს თუ არა ძებნა ბოლოდან" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "უკან ძებნა" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "დიდი და პატარა ასოების განსხვავება" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "დიდი და პატარა ასოების განსხვავება" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "პროცესი და ფანჯარა:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "ყველა დამთხვევის გამოკვეთა" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "ძებნა:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "მიუთითებს, უნდა გაჩერდეს თუ არა ძებნა თავიდან დაწყების მაგიერ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "თავიდან დაწყების გარეშე" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "მენიუს ამაჩქარებლების ჩართვა" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "ფოკუსი ტერმინალებზე, როცა თაგუნას კურსორს ზედ გადაატარებთ" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "ყველა ფანჯარა ნაჩვენები იქნება" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "ყველა \"აღარ მკითხო\" შეტყობინების თავიდან ჩართვა" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "ფანჯრის სათაურის სათაურის ზოლზე ჩვენება" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "DBus-ის API-ის უსაფრთხოებაზე გავლენის მქონე ნაწილების ჩართვა" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "ფანჯრის სათაურის ზოლისა და ჩარჩოს მოცლება" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "რეგულარული გამოსახულებებით დამთხვევა" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2678,72 +2790,114 @@ msgstr "შემდეგი გაშვებისას მიმდინ msgid "The window size will be saved upon exiting Konsole" msgstr "Konsole-დან გასვლისას ფანჯრის ზომის შენახვა" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Konsole-ს გაშვებისას ახალი ჩანართის შექმნა ახალი ფანჯრების შექმნის მაგიერ, " +"თუ ეს შესაძლებელია" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "მიმდინარეობის ჩვენება ამოცანების ზოლში" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"როცა სკრიპტი მოგვაწოდებს მისი მიმდინარეობის სტატუსს, ის ამოცანათა პანელში " +"იქნება ნაჩვენები" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "ჩაირთვება DBus API-ის ისეთი ნაწილები, როგორიცაა runCommand" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "ZModem-ის ტერმინალის კოდების მოსმენა" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "ფაილების ავტომატური გაგზავნა/მიღება სერიული შეერთებებით" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "მინიატურის სიგანე" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "მინიატურის სიგანის დაყენება" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "მინიატურის საჩვენებლად გამოიყენეთ Shift" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "მინიატურის საჩვენებლად გამოიყენეთ Alt" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "მინიატურის საჩვენებლად გამოიყენეთ Ctrl" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "დიდი და პატარა ასოების განსხვავება" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "ძებნის დამთხვევების გამოკვეთა" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "აყენებს, უნდა გამოიკვეთოს თუ არა ნაპოვნი ტექსტი" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "ძებნა გაჩერდება თავიდან დაწყების მაგიერ" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" "აკონტროლებს, არის თუ არა შვილი cgroup-ები შექმნილი თითოეული ჩანართებისთვის" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2753,92 +2907,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "მთლიანი ჩანართების პანელის ხილვადობის მართვა" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "პანელებს შორის ადგილის ზომა" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "ჩანართების ზოლის მდებარეობა" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "ჩანართების ზოლის სტილი" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "მომხმარებლის .css ფაილი ჩანართის ზოლისთვის" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "ჩანართების ზოლის სტილის .css ფაილი" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "ღია ჩანართების დასახურად მათზე შუა-წკაპის დაშვება" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "მართავს ჩანართების პანელზე 'ახალი ჩანართის' ღილაკის მდებარეობას" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "მართავს ჩანართების პანელზე 'ჩანართების ძებნის' ღილაკის ხილვადობას" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "მართვა, სად გამოჩნდება ღილაკი \"ჩანართის დახურვა\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "ახალი ჩანართის მდებარეობის კონტროლი" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "ჩანართის სიგანის გაფართოება" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "გადახვევის ფაილებისთვის სისტემური საქაღალდის გამოყენება" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" "გადახვევის ფაილებისთვის მომხმარებლის მიერ მითითებული საქაღალდის გამოყენება" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "გადახვევის ფაილებისთვის მითითებული საქაღალდის გამოყენება" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "გადახვევის ფაილებისთვის ამ საქაღალდის გამოყენება" @@ -2850,34 +3010,29 @@ msgid "Enable memory monitoring:" msgstr "მეხსიერების მონიტორინგის ჩართვა:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "ცვლილებები ძალაში გადატვირთვის შემდეგ შევა. თუ ჩართულია, Konsole-ის მიერ " -"მუდმივად\n" -"დახარჯული მეხსიერების რაოდენობის გადაცილების შემდეგ system-oom მოკლავს " -"ჩანართებს,\n" -"რომლებიც ყველაზე მეტ მეხსიერებას ხარჯავენ. შენიშვნა:\n" +"მუდმივად დახარჯული მეხსიერების რაოდენობის გადაცილების შემდეგ system-oom " +"მოკლავს ჩანართებს, რომლებიც ყველაზე მეტ მეხსიერებას ხარჯავენ. შენიშვნა: " "ჩართვამ შეიძლება გამოიწვიოს შენელება მაღალი მეხსიერების ხარჯის მქონე " -"პროგრამების გაშვებისას\n" -"და დაბალი მნიშვნელობისას, შეიძლება, Konsole მოკვდეს." +"პროგრამების გაშვებისას და დაბალი მნიშვნელობისას, შეიძლება, Konsole მოკვდეს." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "მეხსიერების ლიმიტი:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " მბ" @@ -3036,127 +3191,145 @@ msgstr "ჩანართების &ზოლზე" #, kde-format msgctxt "Do not show a close button" msgid "None" -msgstr "არაფერი" +msgstr "არცერთი" + +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "ჩანართების ძებნის ღილაკის ჩვენება:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "ყოველთვის" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "არასდროს" #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "სხვადასხვა:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "'ახალი ჩანართის' ღილაკის ჩვენება" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "ინდივიდუალური ჩანართის სიგანეების სრულ ფანჯარაზე გაწელვა" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "გამოიყენეთ მომხმარებლის მიერ განსაზღვრული სტილის ცხრილი:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(არაფერი)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "ქცევა" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "ახალი ჩანართების განთავსება:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "&ბოლოში" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "&მიმდინარე ჩანართის შემდეგ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "თაგუნას შუა ღილაკით ჩანართის დახურვა" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "გაყოფა" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "თავსართის ჩვენება:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "როცა საჭიროა" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "არასდროს" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "ჩოჩიის ზომა:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "პატარა" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "საშუალო" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "დიდი" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3208,13 +3381,12 @@ msgstr "px" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" "

            იმისთვის, რომ ეს ფუნქცია გამოიყენოთ, ჩართეთ თაგუნა->სხვადასხვა->ხაზგასმა ფაილებში თქვენს პროფილის პარამეტრებში" +"style=\" font-weight:600;\">თაგუნა->სხვადასხვა->ფაილების ხაზგასმა თქვენი პროფილის პარამეტრებში.

            " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3252,64 +3424,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "მინიატურების გენერაციის ჩართვა" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "ზომა: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "დარწმუნებული ბრძანდებით, რომ გნებავთ, ჩასვათ %1 სიმბოლო?" msgstr[1] "დარწმუნებული ბრძანდებით, რომ გნებავთ, ჩასვათ %1 სიმბოლო?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "ჩასმის დადასტურება" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "ტექსტის დასასრული/შეწყვეტა: შეგიძლიათ, მიმდინარე პროცესიდან გახვიდეთ" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "გადაცემის დასასრული. შეგიძლიათ, მიმდინარე პროცესიდან გახვიდეთ" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "ზარი: ვცდი, გასაგონი ხმა გამოვცე" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: გამოტანის შეჩერება" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "ჩანაცვლება/შეჩერება: შეიძლება შეაჩეროს მიმდინარე პროცესი" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "სიმბოლო Escape (^[): გამოიყენება ტერმინალის მდგომარეობის შესაცვლელად" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "ფაილის გამყოფი/გასვლა: შეუძლია მიმდინარე პროცესის დასრულება" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3318,31 +3490,31 @@ msgstr "" "ტექსტი, რომლის ჩასმაც ცდილობთ, უჩინარ საკონტროლო სიმბოლოებს შეიცავს. " "გნებავთ, ამოვიღო ისინი?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "ჩასმის დადასტურება" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "&სპეციალური სიმბოლოების გარეშე ჩასმა" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&ყველაფრის ჩასმა" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&გაუქმება" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been გამოტანა შეჩერებულია Ctrl+S-ით. გასაგრძელებლად დააწექით Ctrl+Q." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "ეს ტერმინალი მხოლოდ-კითხვადია." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "საქაღალდის &შეცვლა" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "მდებარეობის &ჩასმა" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "ხედის გაყოფა" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "ხედის მარჯვენა/მარცხენაზე გაყოფა" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "ხედის ზედა/ქვედაზე გაყოფა" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "ხედის ავტომატური დაყოფა" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "შემდეგი ჩანართიდან ხედის მარჯვენა/მარცხენაზე გაყოფა" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "შემდეგი ჩანართიდან ხედის ზედა/ქვედაზე გაყოფა" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "შემდეგი ჩანართიდან ხედის ავტომატური დაყოფა" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "ახალი ჩანართის ჩატვირთვა 2x2 განლაგების ტერმინალებით" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "ახალი ჩანართის ჩატვირთვა 2x1 განლაგების ტერმინალებით" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "ახალი ჩანართის ჩატვირთვა 1x2 განლაგების ტერმინალებით" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "ხედის გაფართოება" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "ხედის შემცირება" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "მიმდინარე &ხედის მოხსნა" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "მიმდინარე &ჩანართის მოხსნა" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "შემდეგი ჩანართი" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "წინა ჩანართი" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ფოკუსი ზედა ტერმინალზე" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ფოკუსი ქვედა ტერმინალზე" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "ფოკუსი მარცხენა ტერმინალზე" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "ფოკუსი მარჯვენა ტერმინალზე" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ფოკუსი შემდეგ ტერმინალზე" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ფოკუსი წინა ტერმინალზე" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "ბოლო ჩანართზე გადართვა" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "ბოლოს გამოყენებული ჩანართები" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "ორ ჩანართს შორის გადართვა" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "ბოლოს გამოყენებული ჩანართები (უკუღმა)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "მიმდინარე ხედის გაზრდის გადართვა" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "მიმდინარე ხედის გაზრდის გადართვა" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "მიმდინარე ხედის გაზრდის-გადიდების გადართვა" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "მიმდინარე ხედის გაზრდის-გადიდების გადართვა" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "ჩანართის მარჯვნივ გადატანა" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "ჩანართის მარცხნივ გადატანა" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "სემანტიკური ინტეგრაციის მორგება (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "სემანტიკური მინიშნებების ჩვენების გადართვა" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "ხაზის ნომრის ჩვენების გადართვა" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "ყველა ხედის ტოლი ზომა" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1-ე ჩანართზე გადართვა" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "სემანტიკური მინიშნებები " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "ხაზის ნომრები " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "ჩანართების განლაგების შენახვა" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole -ის ხედის განლაგება (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3609,7 +3793,7 @@ msgstr "" "შეცდომა განლაგების შენახვისას.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3619,13 +3803,13 @@ msgstr "" "შეცდომა განლაგების ჩატვირთვისას.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "ჩანართების განლაგების ჩატვირთვა" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3724,28 +3908,40 @@ msgstr "&ნაგულისხმევი სიმბოლოების msgid "Shortcut for peeking the primary screen:" msgstr "მალსახმობი ძირითად ეკრანზე შესაჭვრეტად:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "შუალედი ავტოშენახვებს შორის:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " მწმ" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "ხაზის ნომრები:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&არასოდეს" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "როდის გამოჩნდება &ბმულის მინიშნებები" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3781,7 +3977,7 @@ msgstr "არჩეული ფერის სქემის ჩასწო #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3836,13 +4032,19 @@ msgstr "სქელი ფონტისთვის კაშკაშა ფ #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" -"ხაზის სიმბოლოებისთვის ჩაშენებული კოდის მაგიერ არჩეული ფონტის გამოყენება" +"ჩაშენებული კოდის მაგიერ არჩეული ფონტის გამოყენება ხაზის სიმბოლოებისთვის" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "ხაზის სიმბოლოების გამოყენება, რომელსაც არჩეული ფონტი შეიცავს" @@ -3963,29 +4165,43 @@ msgid "Make the cursor blink regularly" msgstr "კურსორის ციმციმის ჩართვა" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "ჩაირთო" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "ანიმაცია:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "კურსორის რბილი ანიმაცია" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "სხვადასხვა" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "ფანჯარა:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3995,144 +4211,144 @@ msgstr "" "ფანჯრის ცენტრში" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "ზომის შეცვლის შემდეგ ტერმინალის ზომის მინიშნების ჩვენება" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "მონიშნული ტექსტის ფერების ინვერსია" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "დაბნელების სიძლიერე:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "ფერი:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "აირჩიეთ საზღვრის დასახატად გამოყენებული ფერი" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "არააქტიური ტერმინალები:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "აქტიური ტერმინალები:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "ტერმინალის შემცველობა" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "ხაზებს შუა მანძილი:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "პიქსელების რიცხვი ხაზებს შორის" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "ზღვრები:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "ცენტრზე სწორება:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "მითითება, რომ ფანჯარა აქტიურია, ფერების მინავლებით" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "გამუქება" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "მითითება, რომ ფანჯარა აქტიურია, საზღვრების დახატვით" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "საზღვარი" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "ვერტიკალური ხაზის ჩვენება სვეტთან:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "

            კომპლექსური ტექსტის განლაგება

            " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "კომპლექსური ტექსტის განლაგება" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "ტექსტის რენდერის სიტყვის რეჟიმის ჩართვა" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "სიტყვის რეჟიმი" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4142,43 +4358,43 @@ msgstr "" "ცვლილებებმა, შეიძლება, რენდერისას სიტყვა გაწყვიტოს)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "იგივე ატრიბუტების გამოყენება მთელი სიტყვისთვის" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "ASCII სიმბოლოების სიტყვების ერთად რენდერი" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII სიმბოლოები " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "ინდური ანბანის სიმბოლოების სიტყვების ერთად რენდერი" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "ინდური ანბანის სიმბოლოები" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "ემოჯის ფონტი:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4188,95 +4404,95 @@ msgstr "" "სპარსულისთვის და ივრითისთვის)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "ორმხრივი ტექსტის რენდერი" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "ხაზები ყოველთვის LTR-ა, პირველი დიდი სიმბოლოთი დადგენის მაგიერ" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "ნაძალადევი LTR ხაზის მიმართულება" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "ცხრილის დახატვის სიმბოლოების ძლიერ LTR-ად აღქმა." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "ცხრილის სიმბოლოების ორმხრივი რეჟიმის გადაფარვა" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Wcwidth-ის გამოტოვება პრობლემული სიმბოლოებისთვის" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Wcwidth-ის გადაფარვა" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "პროფილის ჩასწორება" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "ზოგადი" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "დაფები" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "გარემოს იერსახე" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "სკროლინგი (დატრიალება)" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "კლავიატურა" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "კლავიატურის ბმები" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "თაგუნა" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "დამატებითი" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4288,49 +4504,54 @@ msgstr "" "ან შეცვალეთ ფაილის წვდომები, ან მიუთითეთ სხვა სახელი, პარამეტრების ახალ " "პროფილში შესანახად." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" "პროფილის სახელი ცარიელია. დააყენეთ სახელი რათა პარამეტრების შენახვა შეძლოთ." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "პროფილი სახელით '%1' უკვე არსებობს." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "პროფილის სახელის სიგრძე დაშვებულს (%1) აჭარბებს." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "გამოკვეთილი სიმბოლოები არასწორია პროფილის სახელებისთვის: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "პროფილის ჩასწორება: %2" msgstr[1] "%1 პროფილის ჩასწორება: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "ახალი პროფილის შექმნა" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "პროფილის ჩასწორება (\"%1\")" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "არცერთი" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4340,7 +4561,7 @@ msgid_plural " columns" msgstr[0] " სვეტი" msgstr[1] " სვეტი" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4350,42 +4571,42 @@ msgid_plural " rows" msgstr[0] " მწკრივი" msgstr[1] " მწკრივი" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "სისტემური ზარი" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "სისტემური შეტყობინებები" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "ვიზუალური ზარი" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "ზარის მოვლენების იგნორი" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "ნაგულისხმევი ახალი ტერმინალის სესიისთვის %1-ში" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "გარემოს ჩასწორება" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "ერთი გარემოს ცვლადი ერთ ხაზზე" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4393,23 +4614,23 @@ msgid_plural " seconds" msgstr[0] " წამი" msgstr[1] " წამი" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "აირჩეთ საწყისი საქაღალდე" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "ახლის მიღება..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "სქემის %1 ჩატვირთვა ჩავარდა." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4418,7 +4639,7 @@ msgstr "" "ეს ფერების სქემა იყენებს გამჭვირვალე ფონს, რომელიც, როგორც ჩანს, თქვენს " "სამუშაო მაგიდაზე მხარდაჭერილი არაა" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4427,12 +4648,12 @@ msgstr "" "Konsole მანამდე გაეშვა, სანამ სამუშაო მაგიდის ეფექტები ჩაირთვებოდა. " "გამჭვირვალე ფონისთვის Konsole თავიდან უნდა გაუშვათ." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "ნაგულისხმევი, ფაილის ტიპისთვის" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4462,7 +4683,7 @@ msgstr "" "ეს პარამეტრი გამოტოვებული იქნება და ფაილი\n" "ნაგულისხმევი რედაქტორით გაიხსნება." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "ტექსტური რედაქტორის მითითებული ბრძანება" @@ -4555,26 +4776,55 @@ msgstr "აირჩიეთ საწისი საქაღალდე" msgid "Start in same directory as current session" msgstr "გაშვება მიმდინარე სესიის საქაღალდეში" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"გაყოფის ან ახალი ჩანართის გახსნისას იგივე კონტეინერში (Toolbox, Distrobox) " +"გადასვლა, რომელშიც მიმდინარე სესიაა" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "იგივე კონტეინერში შესვლა, რომელშიც მიმდინარე სესიაა" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "ყოველთვის გაშვება კონტეიენერში:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "ახალი სესიების ყოველთვის გაშვება ამ პროფილით არჩეულ კონტეინერში" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "გარემო:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "გარემოს ცვლადებისა და ასოცირებული მნიშვნელობების სიის ჩასწორება" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "ტერმინალის საწყისი &ზომა:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4587,31 +4837,31 @@ msgstr "" "რომ ამ ელემენტებმა იმუშაონ.

            " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&ტერმინალის ზარის რეჟიმი:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "სემანტიკური ინტეგრაცია" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "ზემოთ/ქვემოთ ისრების ემულაცია" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "თაგუნას წკაპი შეყვანის ხაზში კურსორს გადაიტანს" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "სემანტიკური მინიშნებები:" @@ -4621,9 +4871,9 @@ msgstr "სემანტიკური მინიშნებები:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4634,9 +4884,9 @@ msgstr "არასდროს" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4647,34 +4897,34 @@ msgstr "ბმულების აქტივაცია" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "ყოველთვის" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "წითელი შეცდომის ზოლები:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "შეცდომის წითელი ფონი:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "ცვალებადი ზოლები:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "ცვალებადი ფონი:" @@ -5032,115 +5282,127 @@ msgid "Scrollback:" msgstr "გადახვევა:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "აწევა/ჩამოწევა:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "ხედში მოქცეული ხაზების გამოკვეთა" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "დამალული" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "თითოეული მარკერის ზომა (ჩოჩიას სიგრძის პროცენტული ნაწილით):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "გამოკვეთა:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "გვერდის გადახვევა ფანჯრის ნახევარი ზომით" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "ეკრანის სიმაღლის &ნახევარი" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "ჩოჩიას მარკერების ფერი:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "ჩოჩიას ფერი გამოკვეთის ხაზების ძებნისას:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "ხაზების თავიდან ფორმატი:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "გვერდის გადახვევა ფანჯრის ზომით" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "ეკრანის &სრული სიმაღლე" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "ჩოჩიას მდებარეობა:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "ჩოჩიის ტერმინალის ფანჯრის მარჯვენა მხარეს ჩვენება" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "მა&რჯვენა მხარე" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "ჩოჩიის ტერმინალის ფანჯრის მარცხენა მხარეს ჩვენება" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&მარცხენა მხარე" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "დამალული" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "გამოკვეთა:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "ხედში მოქცეული ხაზების გამოკვეთა" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "ხაზების თავიდან ფორმატი:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "ხაზების თავიდან დახატვა ტერმინალის ზომის ცვლილების შემდეგ" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "ჩოჩიას მარკერების ფერი:" +msgid "Scrollbar position:" +msgstr "ჩოჩიას მდებარეობა:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "თითოეული მარკერის ზომა (ჩოჩიას სიგრძის პროცენტული ნაწილით):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "გამოკვეთის ხაზის გაუმჭვირვალობის ძებნა:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5243,39 +5505,39 @@ msgstr "წინა გამოტანა დამახსოვრებ #, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" -msgstr "&არაფერი" +msgstr "&არცერთი" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "მოძებნა…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "შეიყვანეთ საძებნი სტრიქონი" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "შემდეგი" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "მიმდინარე ძებნის ფრაზის შემდეგი დამთხვევის მოძებნა" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "წინა" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5283,77 +5545,77 @@ msgstr "მიმდინარე ძებნის ფრაზის წი #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "პარამეტრების მენიუს ჩვენება" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "ძებნის პანელის დახურვა" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "დიდი და პატარა ასოების განსხვავება" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "დიდი და პატარა ასოების განსხვავება" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "პარამეტრების მენიუს ჩვენება" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "ძებნის პანელის დახურვა" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "რეგულარული გამოსახულების დამთხვევა" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "ყველა დამთხვევის გამოკვეთა" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "აყენებს, უნდა გამოიკვეთოს თუ არა ნაპოვნი ტექსტი" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "უკან ძებნა" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "უნდა დაიწყოს თუ არა ძებნა ბოლოდან" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "თავიდან დაწყების გარეშე" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "უნდა დაიწყოს თუ არა ძებნა ბოლოდან გაჩერების მაგიერ" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "მიმდინარე საძებნი სტრიქონის ბოლოდან ძებნა" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5364,7 +5626,7 @@ msgstr "მიმდინარე საძებნი სტრიქონ msgid "Print Shell" msgstr "გარსის დაბეჭდვა" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5404,6 +5666,12 @@ msgstr "ნორმალური ჩანართის სათაურ msgid "Tab Co&lor:" msgstr "ჩ&ანართის ფერი:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "&აქტივობის ჩანართის ფერი:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5497,36 +5765,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ტერმინალის აღდგენა" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "ახალი ჩანართის გახსნა" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ჩანართების ძებნა" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "ამ ჩანართის დახურვა" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&ჩანართის მოხსნა" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&ამ ჩანართის გამართვა ან სახელის გადარქმევა..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "ჩანართის დახურვა" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

            This warning will only show once for this Konsole instance.

            " +#~ msgstr "" +#~ "ახლახანს გამოვიყენე D-Bus-ის მეთოდები sendText/runCommand. არსებობს " +#~ "ეჭვები, რომ ეს მეთოდები, თუ ისინი საჯაროა, უსაფრთხო არაა. თუ გნებავთ, ეს " +#~ "მეთოდები შეგიძლიათ მხოლოდ შიდა მოხმარებაზე გადართოთ,, მაგრამ ამისთვის " +#~ "Konsole-ის თავიდან აგება მოგიწევთ.

            ეს გაფრთხილება Konsole-ის ამ " +#~ "გაშვებული ასლისთვის, მხოლოდ, ერთხელ გამოჩნდება.

            " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "დიდი და პატარა ასოების განსხვავება" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "არაფერი" diff --git a/local/recipes/kde/konsole/source/po/kk/konsole.po b/local/recipes/kde/konsole/source/po/kk/konsole.po index 69451592c5..95c1fbad12 100644 --- a/local/recipes/kde/konsole/source/po/kk/konsole.po +++ b/local/recipes/kde/konsole/source/po/kk/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2013-11-18 03:40+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -54,7 +54,7 @@ msgstr "Көрініс" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Көріністі бөлу" @@ -90,7 +90,7 @@ msgid "S&crollback" msgstr "&Жүгірту" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -178,36 +178,52 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Әдеттегіне қайшы мәзір панелін жасыру" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Әдеттегіне қайшы қойынды панелін көрсету" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Әдеттегіне қайшы қойынды панелін жасыру" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Әдеттегіне қайшы қойынды панелін көрсету" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Әдеттегіне қайшы қойынды панелін жасыру" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole бағдарламасын толық экранды күйінде бастау" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Жүйе қолдаса да аясының мөлдірлігін рұқсат етпеу." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Бар профильдер тізімі" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -215,13 +231,13 @@ msgstr "" "Профиль қасиеттерінің атаулары мен олардың түрлерін тізімдеу (\"-p\" " "параметрімен қолдану үшін)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Профиль қасиетінің мәнін өзгерту." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -231,7 +247,7 @@ msgstr "" "Орындалатын командасы. параметр кейінгі аргументтерді қабылдайды, сондықтан " "оларды кейін қолданыңыз." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -239,13 +255,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Команданың аргументтері" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Toggle Background Window" msgctxt "@item" @@ -264,107 +280,107 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Мәтін түсі" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Ая түсі" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "1-түс" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "2-түс" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "3-түс" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "4-түс" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "5-түс" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "6-түс" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "7-түс" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "8-түс" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Мәтін түсі (қанық)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Ая түсі (қанық)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "1-түс (қанық)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "2-түс (қанық)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "3-түс (қанық)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "4-түс (қанық)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "5-түс (қанық)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "6-түс (қанық)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "7-түс (қанық)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "8-түс (қанық)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Foreground (Intense)" @@ -372,7 +388,7 @@ msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Мәтін түсі (қанық)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -380,7 +396,7 @@ msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Ая түсі (қанық)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 1 (Intense)" @@ -388,7 +404,7 @@ msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "1-түс (қанық)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 2 (Intense)" @@ -396,7 +412,7 @@ msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "2-түс (қанық)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 3 (Intense)" @@ -404,7 +420,7 @@ msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "3-түс (қанық)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 4 (Intense)" @@ -412,7 +428,7 @@ msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "4-түс (қанық)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 5 (Intense)" @@ -420,7 +436,7 @@ msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "5-түс (қанық)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 6 (Intense)" @@ -428,7 +444,7 @@ msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "6-түс (қанық)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 7 (Intense)" @@ -436,7 +452,7 @@ msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "7-түс (қанық)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 8 (Intense)" @@ -444,7 +460,7 @@ msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "8-түс (қанық)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -713,6 +729,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Хост:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "&Set as Default" +msgid " [default]" +msgstr "&Әдетті қылу" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -757,7 +807,7 @@ msgstr "" msgid "Copy Location" msgstr "Кірісті мынаған көшірмелеу" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -789,14 +839,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Қаріпін таңдау..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Қаріптерді тегістеу" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -833,17 +883,17 @@ msgstr "Перне комбинациясы" msgid "Output" msgstr "Шығысы" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Жаңа перне сәйкестік тізімі" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Перне сәйкестік тізімін өңдеу" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -851,7 +901,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -885,68 +935,68 @@ msgstr "Кіріс:" msgid "Output:" msgstr "Шығыс:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Терминал эмуляторы" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Бас жетілдірушісі, қателерді түзеу және жалпы жақсартулар" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Бұрынғы жетілдірушісі, KDE4-ке бейімдеу" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Original author" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -954,56 +1004,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Бас жетілдірушісі, қателерді түзеу және жалпы жақсартулар" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Қателерді түзеу және жалпы жақсартулар" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -1011,7 +1061,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Қателерді түзеу және жалпы жақсартулар" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1019,98 +1069,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "General improvements" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Қателерді түзеу" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris қолдауы және журналы" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Қателерді түзеу және бастау жұмысын жақсарту" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Белгілеуді жақсарту" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1120,13 +1170,13 @@ msgstr "" "Ендірілетін Konsole\n" "Құралдар панелі мен сеанс атаулары" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1136,25 +1186,25 @@ msgstr "" "Ендірілетін Konsole\n" "Жалпы жақсартулар" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Көрнекті эффекттер" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1164,121 +1214,121 @@ msgstr "" "KVT жобасының коды\n" "Жалпы жақсарлату" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Сұлба мен таңдауды жетілдіруі" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI бейімдеуі" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD жүйесіне бейімдеуі" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Көп басқалаға рахмет.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Жаңа қойынды" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Қойындыны &клондау" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Жаңа &терезе" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Терезені жабу" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Бетбелгілер" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Жаңа түс сұлбасы" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Профильдерін басқару..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Мәзірді белсендету" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -1286,13 +1336,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Қойындыны солға жылжыту" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1300,25 +1350,25 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "Бұл терезеде %1 процесс жегілген. Сонда да шығуды қалайсыз ба?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Жабуды құптау" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Терезені жабу" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Назардағы қ&ойындыны жабу" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "" @@ -1329,7 +1379,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Бұл терезеде %1 процесс жегілген. Сонда да шығуды қалайсыз ба?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1337,37 +1387,37 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "New Profile" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Жалпы" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1461,7 +1511,7 @@ msgstr "Файл менеджерді ашу" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1473,29 +1523,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Команда:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Команда:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1540,7 +1590,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1600,11 +1650,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1667,97 +1717,97 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Қашық қосылым" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Тіркесімді өзгерту үшін қос түртім жасаңыз" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Бастапқы сеансын, жұмысы аяқталса да, автоматты түрде жаппау." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1967,25 +2017,25 @@ msgstr "Шығыс параметрлері" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Басуға бейімделген күйі (қара мәтін, аясы ақ)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Шығысы &масштабталсын" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Әдетті профилі" @@ -2050,17 +2100,38 @@ msgstr "Тіркесімді өзгерту үшін қос түртім жас msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 дегеннің шығысын сақтау" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 жарамсыз URL, шығысы сақталмайды" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2096,82 +2167,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Кою пастель" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Жасыл қара аясында" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux түстері" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Қызыл қарада" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Жарық" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Жарық қылған" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Ақ қарада" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Әдетті (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux консолі" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris консолі" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Вебте іздеу" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Мұнда іздейтін мәтінді келтіріңіз" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "'%1' сеансы қоңырау соқты" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Табылмаған бинарлық: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Ескерту: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Жегетін интерактивті командалық орта табылмады." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2180,377 +2271,385 @@ msgstr "" "'%1' табылмай, оның орнына '%2' жегілді. Профиліңіздің параметрлерін " "тексеріңіз." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "'%1' бағдарламасы '%2' аргументтерімен жегілмеді." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' сеансында тыныштық" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "Сеансты &жабу" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Бітті" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "'%1' бағдарламасы қирады." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "'%1' бағдарламасы, %2 күй-жайын хабарлап, аяқталды." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem күй-жайы" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1' сеансында белсендік" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole келесі бетбелгіні қалай ашуды білмейді: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "'%1' дегенді мынамен іздеу:" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Веб-қысқармаларын баптау..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Сеансты &жабу" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Файл менеджерді ашу" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Көшіріп алу" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Көріністі оң/сол жақтарға бөлу" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Көріністі жоғары/төмен жақтарға бөлу" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Кірісті көшірмелеу" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Кірісті көшірмелеу" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Таңдағанды орналастыру" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Вебте іздеу" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Бүкілін т&аңдау" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Mode" msgstr "Мәтінді таңдау" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Line" msgstr "Мәтінді таңдау" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Шығысын &былай сақтау..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Шығысын &былай сақтау..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Экранын басып шығару..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Жүгірткісін баптау..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Жүгірткі жадын тазалау" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Жүгірткі жадын тазалау және ысыру" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Профилін өңдеу" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Алдыңғы көрініс" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Профилін ауыстыру" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Кодтамасын орнату" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "Қ&ойындыны атау..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Назардағы терезедегі &бүкіл қойындылар" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Қ&ойындыны таңдау..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ешбір" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Кірісті мынаған көшірмелеу" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem жүктеп беруі..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "&Белсендікті қадағалау" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&Белсендікті қадағалау" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Тұрып қалуды қадағалау" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "&Белсендікті қадағалау" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Қаріпін үлғайту" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Қаріпін кішірейту" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Мәтіннің өлшемін ұлғайту" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Сигнал жіберу" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Тапсырманы &аялдату" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Тапсырманы &жалғастыру" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Қ&айта бастау" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Тапсырманы ү&зу" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Тапсырманы &аяқтау" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Тапсырманы &құрту" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Пайдаланушы сигналы &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Пайдаланушы сигналы &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile..." msgstr "&Жаңа профилі..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Қолданыстағы профилін өңдеу..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Бұл сеанста орындалып жатқан бағдарламасы бар. Ол жабыла берсін бе?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "Бұл сеанста '%1' бағдарламасы орындалып жатыр. Ол жабыла берсін бе?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Шығуды құптау" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "Қ&ойындыны жабу" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2558,37 +2657,40 @@ msgid "" msgstr "" "Бұл сеанста орындалып жатқан бағдарламасы бар. Ол жабылуға мәжбүр болсын ба?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Бұл сеанста '%1' бағдарламасы орындалып жатыр. Ол жабылуға мәжбүр болсын ба?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "ZModem жүктеп алуы мынаған..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2599,13 +2701,13 @@ msgstr "" "бағдарламасы табылмады.

            'rzsz' не 'lrzsz' дестенің бірін орнатуға " "болады.

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "

            Қазіргі сеанста бір ZModem файл берілімі орындалып жатыр.

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2614,7 +2716,7 @@ msgstr "" "

            Жүйеңізде лайықты ZModem бағдарламасы табылмады.

            'rzsz' не 'lrzsz' " "дестенің бірін орнатуға болады.

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem жүктеп беретін файлдарды таңдау" @@ -2638,81 +2740,76 @@ msgctxt "@title:window" msgid "Configure" msgstr "Шығуды құптау" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Вебте іздеу" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Мәзір акселераторларын рұқсат ету" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Терезенің атауы айдарында көрсету" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Үлгі өрнек сәйкестігі" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Бүкіл сәйкестіктерін бояулау" +#| msgctxt "@info:tooltip" +#| msgid "Create new tab" +msgid "Force new tabs" +msgstr "Жаңа қойындыны құру" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "Төменнен бастап іздеу керек деп орнату" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "Артқа қарай іздеу" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2720,72 +2817,105 @@ msgid "Sets whether the search is case sensitive" msgstr "Әріптерінің үлкен-кішілігін ескеріп іздеуді бұйыру" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Case sensitive" msgid "Case sensitive" msgstr "Үлкен-кішілігін ескеріп" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, kde-format -msgid "Notifications:" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Бүкіл сәйкестіктерін бояулау" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "Төменнен бастап іздеу керек деп орнату" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "Артқа қарай іздеу" +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Вебте іздеу" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Төменнен бастап іздеу керек деп орнату" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Мәзір акселераторларын рұқсат ету" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Терезенің атауы айдарында көрсету" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Үлгі өрнек сәйкестігі" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2811,41 +2941,79 @@ msgstr "Шыққанда терезе өлшемі жатталсын" msgid "The window size will be saved upon exiting Konsole" msgstr "Konsole-ден шыққанда терезе өлшемін жаттау" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2853,7 +3021,7 @@ msgid "Search is case sensitive" msgstr "Әріптерінің үлкен-кішілігін ескеріп іздеуді бұйыру" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Highlight all matches" @@ -2861,7 +3029,7 @@ msgid "Highlight all search matches" msgstr "Бүкіл сәйкестіктерін бояулау" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether matching text should be highlighted" @@ -2869,19 +3037,19 @@ msgid "Sets whether matching text should be highlighted" msgstr "Сәйкесті мәтіндерді бояулап ерекшелеуді бұйыру" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2889,94 +3057,101 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Бүкіл қойынды панелінің көрінетінін басқару" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "Бүкіл қойынды панелінің көрінетінін басқару" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Қойынды панелінің орналасуын басқару" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Қойынды панелінің көріну стилін басқару" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Меңзер қалаған тұрақты түсін пайдаланады" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Қойынды панельдегі шұғыл батырмаларының көрінетінін басқару" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Қойынды панельдегі шұғыл батырмаларының көрінетінін басқару" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Жаңа қойынды панелін қайда орналастыруын басқару" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2989,26 +3164,24 @@ msgid "Enable memory monitoring:" msgstr "Қойындыны қадағалау" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3180,9 +3353,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Ешбір" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "Қ&ойындыны жабу" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3190,7 +3382,7 @@ msgid "Miscellaneous:" msgstr "Түрлі басқа" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" @@ -3198,27 +3390,27 @@ msgstr "" "Қойынды жиегінде 'Жаңа қойынды' мен 'Қойындыны жабу' батырмалары болсын" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "Меңзер қалаған тұрақты түсін пайдаланады" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3226,7 +3418,7 @@ msgid "Behavior" msgstr "Тәртібі" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Create new tab" @@ -3234,60 +3426,60 @@ msgid "Put new tabs:" msgstr "Жаңа қойындыны құру" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Назардағы қойындыны жабу" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Көріністі бөлу" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Мәзір панелін көрсету" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3296,14 +3488,14 @@ msgid "Small" msgstr "Кішкентай" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3312,7 +3504,7 @@ msgid "Large" msgstr "Үлкен" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3365,8 +3557,8 @@ msgstr "" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3408,97 +3600,97 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Мәзір акселераторларын рұқсат ету" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Өлшемі: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "%1 таңбаны орналастырмақсыз ба?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Орналастыруды құптау" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" msgid "Confirm Paste" msgstr "Орналастыруды құптау" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Меңзерді назардағы таңбаның түсіне сәйкес қылу" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Таңдағанды орналастыру" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been аялдатылған. Жалғастыру үшін Ctrl+Q деп " "басыңыз." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Мына &каталогқа ауыстыру:" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Орының орналастыру" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Көріністі бөлу" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Көріністі оң/сол жақтарға бөлу" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Көріністі жоғары/төмен жақтарға бөлу" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3555,7 +3747,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Көріністі жоғары/төмен жақтарға бөлу" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3563,7 +3755,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Көріністі оң/сол жақтарға бөлу" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3571,7 +3763,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Көріністі жоғары/төмен жақтарға бөлу" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3579,37 +3771,37 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Көріністі жоғары/төмен жақтарға бөлу" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Көріністі кеңейту" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Көріністі тарлыту" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3617,7 +3809,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Назардағы қойындыны бөл&іп алу" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3625,93 +3817,107 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Назардағы қойындыны бөл&іп алу" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Келесі қойынды" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Алдыңғы қойынды" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Терминалдың жоғарында" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Терминалдың төменінде" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Терминалдың жоғарында" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Терминалдың төменінде" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Соңғы қойындыға ауысу" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3719,7 +3925,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Қойындыны оңға жылжыту" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3727,49 +3933,49 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Қойындыны солға жылжыту" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1 қойындысына ауысу" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Тышқанмен әрекеттесу" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Жолдар саны: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3777,13 +3983,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Қойындыны солға жылжыту" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3796,7 +4002,7 @@ msgstr "" "Шығысын сақтау кезінде бір мәселе орын алды:\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3809,13 +4015,13 @@ msgstr "" "Шығысын сақтау кезінде бір мәселе орын алды:\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3917,29 +4123,41 @@ msgstr "Әдетті таңбалар кодтамасы:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Жолдар саны: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3976,7 +4194,7 @@ msgstr "Таңдалған түстер сұлбасын өзгерту" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4033,12 +4251,18 @@ msgstr "Қалың қаріпті қою түспен боялсын" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4170,16 +4394,33 @@ msgid "Make the cursor blink regularly" msgstr "Меңзерді жыпылықтайтын қылу" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Мәзірді белсендету" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Меңзерді жыпылықтайтын қылу" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4187,14 +4428,14 @@ msgid "Miscellaneous" msgstr "Түрлі басқа" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Терезе" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4203,25 +4444,25 @@ msgstr "" "Өзгертілген терминал бағандар мен жолдарының өлшемін терезе ортасында көрсету" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Өзгергендегі терминалдың өлшем сұлбасы көрсетілсін" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4230,28 +4471,28 @@ msgid "Color:" msgstr "Түсі" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Меңзердің түсін таңдау" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "Терминал мүмкіндіктері" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "Терминал мүмкіндіктері" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4259,96 +4500,96 @@ msgid "Terminal contents" msgstr "Терминал мүмкіндіктері" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Жол аралығы:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Екі жол арасындағы пиксел саны" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Екі бағытты жазуы болсын" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4356,45 +4597,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Меңзерді назардағы таңбаның түсіне сәйкес қылу" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Қаріп" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4402,98 +4643,98 @@ msgid "" msgstr "Терминалдың экранын екі бағытты қылу (Араб, Парсы, не Ивритте қана)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Екі бағытты жазуы болсын" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Меңзерді назардағы таңбаның түсіне сәйкес қылу" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Профилін өңдеу" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Жалпы" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Қойындылар" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Сырт көрінісі" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Жүгірту жолағы" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Пернетақта" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Перне сәйкестігі" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Тышқан" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Қосымша" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4502,48 +4743,55 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "%1 профилін өңдеу: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile" msgstr "&Жаңа профилі..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" профилін өңдеу" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&Ешбір" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4552,7 +4800,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4561,73 +4809,73 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Paste Location" msgid "System Notifications" msgstr "&Орының орналастыру" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "Көрнекті эффекттер" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Таңдалған профилін жаңа терминал сеанстарының әдетті профилі қылу" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Ортасын өңдеу" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "One environment variable per line" msgid "One environment variable per line" msgstr "Бір жолда бір орта айнымалысы" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] " секунд" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Бастапқы каталогын таңдау" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Жаңа..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4636,7 +4884,7 @@ msgstr "" "Бұл түстер сұлбасында үстеліңіз, бәлкім, танымайтын мөлдір аясын " "пайдалананады." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4645,13 +4893,13 @@ msgstr "" "Konsole үстел эффектілер рұқсат етілгеннен бұрын жегілген. Аясы мөлдір болу " "үшін Konsole-ді қайта жегу керек." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Әдетті профилі" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4668,7 +4916,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4760,27 +5008,55 @@ msgstr "Бастапқы каталогын таңдау" msgid "Start in same directory as current session" msgstr "Назардағы қойндысының каталогында бастау" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Назардағы қойндысының каталогында бастау" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ортасы:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Ортаңың айнымалыларын және олардын иәндерін өңдеу" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Терминал мүмкіндіктері" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4790,7 +5066,7 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4798,26 +5074,26 @@ msgid "&Terminal bell mode:" msgstr "Терминал эмуляторы" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Тышқанмен әрекеттесу" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4827,9 +5103,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4840,9 +5116,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4853,22 +5129,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4876,13 +5152,13 @@ msgid "Red error background:" msgstr "Ая түсі" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5259,75 +5535,26 @@ msgid "Scrollback:" msgstr "Жүгірту" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Бетті жоғары/төмен жүгірту мөлшері" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Бетті терезенің жарты биіктігіне жүгірту" +msgid "Highlight the lines coming into view" +msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half Page Height" -msgid "Half screen heigh&t" -msgstr "Жарты бет биіктігі" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Бетті терезенің толық биіктігіне жүгірту" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full Page Height" -msgid "F&ull screen height" -msgstr "Толық бет биіктігі" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Қойынды жиегінің орны:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Терминал терезесінің оң жағында жүгіріткі болсын" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Оң жақта болсын" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Терминал терезесінің сол жағында жүгіріткі болсын" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Мәтін өлшемі:" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5335,46 +5562,107 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Жасырылған" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "Бетті терезенің жарты биіктігіне жүгірту" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, fuzzy, kde-format +#| msgid "Half Page Height" +msgid "Half screen heigh&t" +msgstr "Жарты бет биіктігі" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Бетті терезенің толық биіктігіне жүгірту" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, fuzzy, kde-format +#| msgid "Full Page Height" +msgid "F&ull screen height" +msgstr "Толық бет биіктігі" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Терминал терезесінің оң жағында жүгіріткі болсын" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Оң жақта болсын" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Терминал терезесінің сол жағында жүгіріткі болсын" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Мәтін өлшемі:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Қойынды жиегінің орны:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5486,7 +5774,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Ешбір" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5494,113 +5782,115 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Іздейтіні:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Мұнда іздейтін мәтінді келтіріңіз" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Келесі" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Іздейтіннің келесі сәйкестігін табу" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Алдыңғы" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Іздейтіннің алдыңғы сәйкестігін табу" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Параметрлер мәзірін көрсету" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Іздеу панелін жабу" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Үлкен-кішілігін ескеріп" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Әріптерінің үлкен-кішілігін ескеріп іздеуді бұйыру" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Параметрлер мәзірін көрсету" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Іздеу панелін жабу" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Үлгі өрнек сәйкестігі" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Бүкіл сәйкестіктерін бояулау" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Сәйкесті мәтіндерді бояулап ерекшелеуді бұйыру" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, fuzzy, kde-format #| msgid "Search backwards" msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Артқа қарай іздеу" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Төменнен бастап іздеу керек деп орнату" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Төменнен бастап іздеу керек деп орнату" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the bottom" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Таңдалған сөйлемді төменнен бастап іздеу" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the top" msgctxt "@info:tooltip" @@ -5612,7 +5902,7 @@ msgstr "Таңдалған сөйлемді жоғарынан бастап із msgid "Print Shell" msgstr "Басып шығару ортасы" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5657,6 +5947,14 @@ msgstr "Кәдімгі қойынды атауының пішімі" msgid "Tab Co&lor:" msgstr "Түсі" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Түсі" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5759,7 +6057,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Қойындыны жабу" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5767,7 +6065,15 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Койындыны бө&ліп алу" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Койындыны бө&ліп алу" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:whatsthis" #| msgid "Close the active tab" @@ -5775,26 +6081,30 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Белсенді қойындыны жабу" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Койындыны бө&ліп алу" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Қ&ойындыны атау..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Қ&ойындыны жабу" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Үлкен-кішілігін ескеріп" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" diff --git a/local/recipes/kde/konsole/source/po/km/konsole.po b/local/recipes/kde/konsole/source/po/km/konsole.po index b3e4243d3a..c13d536d0b 100644 --- a/local/recipes/kde/konsole/source/po/km/konsole.po +++ b/local/recipes/kde/konsole/source/po/km/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2012-12-20 16:07+0700\n" "Last-Translator: sutha \n" "Language-Team: Khmer \n" @@ -53,7 +53,7 @@ msgstr "មើល​" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "ពុះ​ទិដ្ឋភាព" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "រមូរ​ថយក្រោយ​" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -183,37 +183,51 @@ msgstr "លាក់​របារ​ម៉ឺនុយ បដិសេធ​ #, fuzzy, kde-format #| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "បង្ហាញ​របារ​ផ្ទាំង បដិសេធ​ការ​កំណត់​លំនាំដើម" #: Application.cpp:69 #, fuzzy, kde-format #| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "លាក់​របារ​ផ្ទាំង បដិសេធ​ការ​កំណត់​លំនាំដើម" #: Application.cpp:70 +#, fuzzy, kde-format +#| msgid "Show the tabbar, overriding the default setting" +msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "បង្ហាញ​របារ​ផ្ទាំង បដិសេធ​ការ​កំណត់​លំនាំដើម" + +#: Application.cpp:71 +#, fuzzy, kde-format +#| msgid "Hide the tabbar, overriding the default setting" +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "លាក់​របារ​ផ្ទាំង បដិសេធ​ការ​កំណត់​លំនាំដើម" + +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "" -#: Application.cpp:71 +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "បិទ​ផ្ទៃ​ខាង​ក្រោយ​ថ្លា ប្រសិនបើ​គាំទ្រ​ ។" -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "រាយ​បញ្ជី​ទម្រង់​ដែល​អាច​ប្រើ​បាន​" -#: Application.cpp:73 +#: Application.cpp:75 #, fuzzy, kde-format #| msgid "" #| "List all the profile properties names and their type (for use with -p)" @@ -221,14 +235,14 @@ msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "បញ្ជី​ឈ្មោះ​លក្ខណ​សម្បត្តិ​ទាំងអស់​ និង​ប្រភេទ​របស់​ពួក​វា​ (សម្រាប់​ប្រើ​ជា​មួយ​​ -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "ផ្លាស់ប្ដូរ​តម្លៃ​លក្ខណៈ​សម្បត្តិ​ទម្រង់​" -#: Application.cpp:76 +#: Application.cpp:78 #, fuzzy, kde-format #| msgid "" #| "Command to execute. This option will catch all following arguments, so " @@ -240,7 +254,7 @@ msgid "" msgstr "" "ពាក្យ​បញ្ជា​ប្រតិបត្តិ ។ ជម្រើស​នេះ​នឹង​មាន​​ក្នុង​ឃ្លាំង​អាគុយម៉ង់​ទាំងអស់ ដូច្នេះ​ប្រើ​វា​ជា​ជម្រើស​ចុងក្រោយ ។" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -248,14 +262,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "អាគុយម៉ង់​ត្រូវ​បាន​ឆ្លង​កាត់​ពាក្យ​បញ្ជា​" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Toggle Background Window" msgctxt "@item" @@ -274,107 +288,107 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "ផ្ទៃ​ខាងមុខ" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "ផ្ទៃ​ខាងក្រោយ" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "ពណ៌​ ១" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "ពណ៌ ២" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "ពណ៌ ៣" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "ពណ៌ ៤" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "ពណ៌ ៥" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "ពណ៌ ៦" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "ពណ៌ ៧" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "ពណ៌ ៨" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ផ្ទៃ​ខាងមុខ (ច្រើន​)​" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "ផ្ទៃ​ខាងក្រោយ​ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "ពណ៌ ១ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "ពណ៌ ២ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "ពណ៌ ៣ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "ពណ៌ ៤ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "ពណ៌ ៥​ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "ពណ៌ ៦​ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "ពណ៌ ៧ (ច្រើន​)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "ពណ៌ ៨ (ច្រើន​)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Foreground (Intense)" @@ -382,7 +396,7 @@ msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ផ្ទៃ​ខាងមុខ (ច្រើន​)​" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -390,7 +404,7 @@ msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "ផ្ទៃ​ខាងក្រោយ​ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 1 (Intense)" @@ -398,7 +412,7 @@ msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "ពណ៌ ១ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 2 (Intense)" @@ -406,7 +420,7 @@ msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "ពណ៌ ២ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 3 (Intense)" @@ -414,7 +428,7 @@ msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "ពណ៌ ៣ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 4 (Intense)" @@ -422,7 +436,7 @@ msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "ពណ៌ ៤ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 5 (Intense)" @@ -430,7 +444,7 @@ msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "ពណ៌ ៥​ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 6 (Intense)" @@ -438,7 +452,7 @@ msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "ពណ៌ ៦​ (ច្រើន)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 7 (Intense)" @@ -446,7 +460,7 @@ msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "ពណ៌ ៧ (ច្រើន​)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 8 (Intense)" @@ -454,7 +468,7 @@ msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "ពណ៌ ៨ (ច្រើន​)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -722,6 +736,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Local Host: %h" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "ម៉ាស៊ីន​មូលដ្ឋាន ៖ %h" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "&Set as Default" +msgid " [default]" +msgstr "កំណត់​ជា​លំនាំ​ដើម" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -766,7 +814,7 @@ msgstr "" msgid "Copy Location" msgstr "ចម្លង​ព័ត៌មាន​បញ្ចូល​ទៅ" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -798,14 +846,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "ជ្រើស​ពុម្ព​អក្សរ..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "ពុម្ពអក្សរ​រលោង" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -842,17 +890,17 @@ msgstr "ការ​បន្សំ​គ្រាប់ចុច​" msgid "Output" msgstr "លទ្ធផល​" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "បញ្ជី​ចង​គ្រាប់ចុច​ថ្មី" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "កែ​សម្រួល​បញ្ជី​ចង​គ្រាប់ចុច​" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -860,7 +908,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -894,68 +942,68 @@ msgstr "ព័ត៌មាន​នាំចូល ៖" msgid "Output:" msgstr "លទ្ធផល​ ៖" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "កម្មវិធី​ត្រាប់​តាម​ស្ថានីយ" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "អ្នក​ថែទាំ​ទូទៅ កែសម្រួល​​កំហុស​ និង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ទូទៅ​" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "អ្នក​ថែទាំ​មុន បាន​នាំ​ទៅកាន់ KDE4​​" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "អ្នកនិពន្ធ​ដើម" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -963,56 +1011,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "អ្នក​ថែទាំ​ទូទៅ កែសម្រួល​​កំហុស​ និង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ទូទៅ​" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "កែសម្រួល​​កំហុស​ និង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ទូទៅ​" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -1020,7 +1068,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "កែសម្រួល​​កំហុស​ និង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ទូទៅ​" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1028,98 +1076,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ទូទៅ" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "ការ​កែសម្រួល​កំហុស" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "គាំទ្រ Solaris និង​ប្រវត្តិ" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "ការ​កែសម្រួល​​កំហុស​ និង​​ធ្វើ​ឲ្យ​ការ​ប្រតិបត្តិ​ចាប់ផ្ដើម​ប្រសើរ​ឡើង" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "ធ្វើ​ការ​សម្គាល់​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1129,13 +1177,13 @@ msgstr "" "បាន​បង្កប់​កុងសូល​\n" "របារ​ឧបករណ៍ និង​ឈ្មោះ​សម័យ" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1145,25 +1193,25 @@ msgstr "" "បាន​បង្កប់​កុងសូល​\n" "ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ទូទៅ" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visual effects" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1173,121 +1221,121 @@ msgstr "" "កូដ​បាន​មក​ពី​គម្រោង​ kvt \n" "ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ជាទូទៅ" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "ការ​ធ្វើ​ឲ្យ​គ្រោងការណ៍ និង​ការ​ជ្រើស​រើស​កាន់​តែ​ប្រសើរ" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "ច្រក SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "ផ្លូវ Kevin " -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "ច្រក FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "សូម​អរគុណ​ចំពោះ​អ្នក​ផ្សេង​ទៀត​ជាច្រើន ។\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "ផ្ទាំង​​ថ្មី" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ក្លូន​ផ្ទាំង" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "បង្អួច​ថ្មី" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "បិទ​បង្អួច" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "ចំណាំ" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "ពណ៌​ចម្រុះ​ថ្មី​" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "គ្រប់គ្រង​ទម្រង់..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "ធ្វើ​ឲ្យ​ម៉ឺនុយ​សកម្ម​" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -1295,13 +1343,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "ផ្លាស់​ទី​ផ្ទាំង​​ទៅ​ឆ្វេង" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 tab open in this window. Do you still want to quit?" @@ -1313,13 +1361,13 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "មាន​ផ្ទាំង %1 បើក​នៅ​ក្នុង​បង្អួច​នេះ ។ តើ​អ្នក​នៅតែ​ចង់​បោះបង់​ឬ ?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "បិទ​ការ​អះអាង" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Close Window" @@ -1327,7 +1375,7 @@ msgctxt "@action:button" msgid "Close &Window" msgstr "បិទ​បង្អួច" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Close Current Tab" @@ -1335,7 +1383,7 @@ msgctxt "@action:button" msgid "Close Current &Tab" msgstr "បិទ​ផ្ទាំង​បច្ចុប្បន្ន" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 tab open in this window. Do you still want to quit?" @@ -1345,7 +1393,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "មាន​ផ្ទាំង %1 បើក​នៅ​ក្នុង​បង្អួច​នេះ ។ តើ​អ្នក​នៅតែ​ចង់​បោះបង់​ឬ ?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1353,37 +1401,37 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "ទម្រង់​ថ្មី​" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "ទូទៅ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1477,7 +1525,7 @@ msgstr "បើក​កម្មវិធី​គ្រប់គ្រង​ឯ #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1489,29 +1537,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "ពាក្យ​បញ្ជា ៖" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "ពាក្យ​បញ្ជា ៖" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1555,7 +1603,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1613,11 +1661,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1680,94 +1728,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "ចុច​​ទ្វេដង ដើម្បី​​ប្ដូរ​ផ្លូវកាត់" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "កុំបិទ​សម័យ​ចាប់ផ្ដើម​ដោយស្វ័យប្រវត្តិ នៅពេល​វា​ចប់ ។" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1973,25 +2021,25 @@ msgstr "ជម្រើស​លទ្ធផល" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "បោះពុម្ព របៀប​ងាយស្រួល (អត្ថបទ​ខ្មៅ គ្មាន​ផ្ទៃ​ខាងក្រោយ)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "លទ្ធផល​មាត្រដ្ឋាន" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "ទម្រង់​លំនាំដើម" @@ -2057,17 +2105,38 @@ msgstr "ចុច​​ទ្វេដង ដើម្បី​​ប្ដូ msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "រក្សា​ទុក​លទ្ធផល​ពី %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 ជា​ URL មិន​ត្រឹមត្រូវ លទ្ធផល​មិន​អាច​រក្សា​ទុក​បាន​ទេ" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2103,499 +2172,529 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "ប៉ាស្ដែល​ងងឹត" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "បៃតង​លើ​ខ្មៅ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "ពណ៌​លីនុច" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "ក្រហម​​លើ​​ខ្មៅ" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "ប្រើ​ពន្លឺ​ព្រះអាទិត្យ" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solarized" msgid "Solarized Light" msgstr "ប្រើ​ពន្លឺ​ព្រះអាទិត្យ" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "ស​លើ​​ខ្មៅ" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "លំនាំ​ដើម​ (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "កុងសូល​លីនុច" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "កុងសូល Solaris " -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "ស្វែងរក​បណ្ដាញ" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "បញ្ចូល​អត្ថបទ​ដើម្បី​ស្វែងរក​នៅ ទីនេះ" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "កណ្ដឹង​ក្នុង​សម័យ '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "មិន​អាច​រក​គោល​ពីរ​បាន​ទេ ៖" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "ការ​ព្រមាន ៖" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "មិន​អាច​រក​សែល​អន្តរកម្ម​ដើម្បី​ចាប់ផ្ដើម​បាន​ទេ ។" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "មិន​​អាច​រក '%1' ចាប់ផ្ដើម '%2' ជំនួស ។ សូម​ពិនិត្យ​​ការ​កំណត់​ទម្រង់​របស់​អ្នក ។" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "មិន​អាច​ចាប់ផ្ដើម​កម្មវិធី '%1' ដែល​មាន​អាគុយម៉ង់ '%2' បាន​ទេ ។" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "ស្ងាត់​ក្នុង​សម័យ '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Close Window" msgid "Show session" msgstr "បិទ​បង្អួច" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "បាន​បញ្ចប់" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "កម្មវិធី '%1' បានគាំង ។" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "កម្មវិធី '%1' បាន​ចេញ​ដោយ​មាន​ស្ថានភាព %2 ។" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "វឌ្ឍនភាព ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "សកម្មភាព​ក្នុង​សម័យ '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole មិន​ស្គាល់​របៀប​បើក​ចំណាំ​​ទេ ៖" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "ស្វែងរក '%1' ជាមួយ" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "កំណត់​រចនាសម្ព័ន្ធ​ផ្លូវកាត់​បណ្ដាញ..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Close Window" msgid "&Close Session" msgstr "បិទ​បង្អួច" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "បើក​កម្មវិធី​គ្រប់គ្រង​ឯកសារ" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​ឆ្វេង/ស្តាំ" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​កំពូល/បាត" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ចម្លង​ព័ត៌មាន​បញ្ចូល​" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ចម្លង​ព័ត៌មាន​បញ្ចូល​" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "បិទភ្ជាប់​ជម្រើស" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "ស្វែងរក​បណ្ដាញ" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "ជ្រើស​ទាំងអស់" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Mode" msgstr "ជ្រើស​អត្ថបទ" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Line" msgstr "ជ្រើស​អត្ថបទ" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "រក្សាទុក​លទ្ធផល​ជា..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "រក្សាទុក​លទ្ធផល​ជា..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "រូបថត​អេក្រង់..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "លៃ​តម្រូវ​រមូរ​ថយក្រោយ..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "សម្អាត​រមូរ​ថយក្រោយ" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "សម្អាត​រមូរ​ថយក្រោយ និង​កំណត់​ឡើងវិញ" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "កែ​សម្រួល​ទម្រង់​" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "រក​មុន" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "ប្ដូរ​ទម្រង់​" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "កំណត់​ការ​អ៊ីនកូដ" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "ប្តូរ​ឈ្មោះ​ផ្ទាំង​..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "ផ្ទាំង​ទាំង​អស់​នៅ​ក្នុង​បង្អួច​បច្ចុប្បន្ន" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "ជ្រើស​ផ្ទាំង..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "គ្មាន" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "ចម្លង​ព័ត៌មាន​បញ្ចូល​ទៅ" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ផ្ទុក ZModem ឡើង..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "ការ​ត្រួត​ពិនិត្យ​សកម្មភាព" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "ការ​ត្រួត​ពិនិត្យ​សកម្មភាព" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "ការ​ត្រួត​ពិនិត្យ​ភាព​ស្ងាត់" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "ការ​ត្រួត​ពិនិត្យ​សកម្មភាព" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "ពង្រីក​ពុម្ពអក្សរ" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "បង្រួញ​​ពុម្ពអក្សរ" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "ផ្ញើ​សញ្ញា" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "ផ្អាក​ភារកិច្ច" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "បន្ត​ភារកិច្ច" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Hangup" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "ផ្អាក​ភារកិច្ច" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "បញ្ចប់​ដំណើរការ​ភារកិច្ច" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "បញ្ឈប់​​ភារកិច្ច" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "សញ្ញា​អ្នក​ប្រើ &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "សញ្ញា​របស់​អ្នក​ប្រើ &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile..." msgstr "ទម្រង់​ថ្មី..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "កែសម្រួល​ទម្រង់​បច្ចុប្បន្ន..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "បច្ចុប្បន្ន​នេះ កម្មវិធី​មួយ​កំពុង​រត់​នៅ​ក្នុង​សម័យ​នេះ ។ តើ​អ្នក​ពិតជា​ចង់​បិទ​វា​ឬ ?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "បច្ចុប្បន្ន កម្មវិធី '%1' កំពុង​​ដំណើរការ​​នៅ​ក្នុង​សម័យ​នេះ ។ តើ​អ្នក​ពិតជា​ចង់​បិទ​វា​ឬ ?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "បិទ​ការ​អះអាង" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "បិទ​ផ្ទាំង​" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "កម្មវិធី​នៅ​ក្នុង​សម័យ​នេះ​មិន​គួរ​ត្រូវ​បាន​បិទ​ទេ ។ តើ​អ្នក​ពិតជា​ចង់​បិទ​វា​ដោយ​បង្ខំ​មែន​ឬ ?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "កម្មវិធី '%1' ដែល​មាន​នៅ​ក្នុង​សម័យ​នេះ​មិន​គួរ​ត្រូវ​បាន​បិទ​ទេ ។ តើ​អ្នក​ពិតជា​ចង់​បិទ​វា​ដោយ​បង្ខំ​មែន​ឬ ?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "រក្សាទុក​ការទាញយក ZModem ទៅ​​ក្នុង..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2605,13 +2704,13 @@ msgstr "" "

            ការ​ប៉ុនប៉ង​ផ្ទេរ​ឯកសារ​របស់ ZModem ត្រូវ​បាន​រក​ឃើញ ប៉ុន្តែ​រក​ឃើញ​កម្មវិធី ZModem មិន​សមរម្យ​នៅ​ក្នុង​" "ប្រព័ន្ធ​នេះ ។

            អ្នក​អាច​ដំឡើង​កញ្ចប់ 'rzsz' ឬ 'lrzsz' ។

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "

            សម័យ​បច្ចុប្បន្ន​មាន​ការ​ផ្ទេរឯកសារ ZModem កំពុង​ដំណើរការ​រួច​ហើយ ។

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2620,7 +2719,7 @@ msgstr "" "

            រក​មិនឃើញ​កម្មវិធី ZModem ដែល​សមរម្យ​នៅ​ក្នុង​ប្រព័ន្ធ​នេះ​ទេ ។

            អ្នក​អាច​ដំឡើង​​កញ្ចប់ " "'rzsz' ឬ 'lrzsz' ។

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ជ្រើស​ឯកសារ​សម្រាប់​ផ្ទុក ZModem ឡើង" @@ -2644,150 +2743,178 @@ msgctxt "@title:window" msgid "Configure" msgstr "បិទ​ការ​អះអាង" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "ស្វែងរក​បណ្ដាញ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "បើក​ការ​បង្កើន​ល្បឿន​ម៉ឺនុយ" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "បង្ហាញ​ចំណងជើង​បង្អួច​នៅ​លើ​របារ​ចំណងជើង" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "ផ្គូផ្គង​កន្សោម​ធម្មតា" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "បន្លិច​​ផ្គូផ្គង​ទាំងអស់​" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "កំណត់​ថា​តើ​ការ​ស្វែងរក​ប្រកាន់​តួ​អក្សរ​តូច​ធំ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "ប្រកាន់​តួអក្សរ​តូច​ធំ​" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Create new tab" +msgid "Force new tabs" +msgstr "បង្កើត​ផ្ទាំង​ថ្មី" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "កំណត់​ថា​តើ​ការ​ស្វែងរក​ប្រកាន់​តួ​អក្សរ​តូច​ធំ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "ប្រកាន់​តួអក្សរ​តូច​ធំ​" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "បន្លិច​​ផ្គូផ្គង​ទាំងអស់​" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "ស្វែងរក​បណ្ដាញ" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "រក​ការ​ផ្គូផ្គង​បន្ទាប់​សម្រាប់​ឃ្លា​ស្វែងរក​បច្ចុប្បន្ន" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "បើក​ការ​បង្កើន​ល្បឿន​ម៉ឺនុយ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "បង្ហាញ​ចំណងជើង​បង្អួច​នៅ​លើ​របារ​ចំណងជើង" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "ផ្គូផ្គង​កន្សោម​ធម្មតា" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2813,74 +2940,112 @@ msgstr "រក្សាទុក​ទំហំ​បង្អួច​នៅ​ msgid "The window size will be saved upon exiting Konsole" msgstr "ទំហំ​បង្អួច​នឹង​ត្រូវ​បាន​រក្សាទុក​លើ​ Konsole ដែល​មាន​ស្រាប់" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "កំណត់​ថា​តើ​ការ​ស្វែងរក​ប្រកាន់​តួ​អក្សរ​តូច​ធំ" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all matches" msgid "Highlight all search matches" msgstr "បន្លិច​​ផ្គូផ្គង​ទាំងអស់​" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "កំណត់​ថា​តើ​អត្ថបទ​ដែល​ផ្គូផ្គង​គួរ​ត្រូវ​បាន​បន្លិច" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2888,94 +3053,101 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "ពិនិត្យមើល​ភាព​ដែល​អាច​មើល​ឃើញ​​នៃ​របារ​ផ្ទាំង​ទាំងមូល" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "ពិនិត្យមើល​ភាព​ដែល​អាច​មើល​ឃើញ​​នៃ​របារ​ផ្ទាំង​ទាំងមូល" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "ពិនិត្យមើល​ទីតាំង​នៃ​​របារ​ផ្ទាំង" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "ពិនិត្យមើល​រចនាប័ទ្ម​ដែល​អាច​មើល​ឃើញ​នៃ​របារ​ផ្ទាំង" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "ប្រើ​ពណ៌​ថេរ​ផ្ទាល់ខ្លួន​សម្រាប់​ទស្សន៍ទ្រនិច" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "ពិនិត្យមើល​ភាព​ដែល​អាច​មើល​ឃើញ​នៃ​ប៊ូតុង​រហ័ស​នៅ​លើ​របារ​ផ្ទាំង" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "ពិនិត្យមើល​ភាព​ដែល​អាច​មើល​ឃើញ​នៃ​ប៊ូតុង​រហ័ស​នៅ​លើ​របារ​ផ្ទាំង" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "ពិនិត្យ​មើល​ទីតាំង​ដែល​បាន​ដាក់​ផ្ទាំង​ថ្មី" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2988,26 +3160,24 @@ msgid "Enable memory monitoring:" msgstr "ផ្ទាំង​ត្រួតពិនិត្យ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3179,9 +3349,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "គ្មាន" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "បិទ​ផ្ទាំង​" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3189,34 +3378,34 @@ msgid "Miscellaneous:" msgstr "ផ្សេងៗ​គ្នា" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "បង្ហាញ​ប៊ូតុង 'ផ្ទាំង​ថ្មី' និង 'បិទ​ផ្ទាំង' នៅ​ក្នុង​របារ​ផ្ទាំង" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "ប្រើ​ពណ៌​ថេរ​ផ្ទាល់ខ្លួន​សម្រាប់​ទស្សន៍ទ្រនិច" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3224,7 +3413,7 @@ msgid "Behavior" msgstr "ឥរិយាបថ" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Create new tab" @@ -3232,60 +3421,60 @@ msgid "Put new tabs:" msgstr "បង្កើត​ផ្ទាំង​ថ្មី" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Put New Tab After Current Tab" msgid "After current &tab" msgstr "ដាក់​ផ្ទាំង​ថ្មី​នៅ​បន្ទាប់ពី​ផ្ទាំង​បច្ចុប្បន្ន" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "ពុះ​ទិដ្ឋភាព" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menubar by default" msgid "Show Header:" msgstr "បង្ហាញ​របារ​​ម៉ឺនុយ​​ជា​លំនាំដើម" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3294,14 +3483,14 @@ msgid "Small" msgstr "តូច​" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3310,7 +3499,7 @@ msgid "Large" msgstr "ធំ​" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3363,8 +3552,8 @@ msgstr "" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3406,98 +3595,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "បើក​ការ​បង្កើន​ល្បឿន​ម៉ឺនុយ" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "ទំហំ ៖ %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "បិទ​ការ​អះអាង" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "បិទ​ការ​អះអាង" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "កំណត់​ទស្សន៍ទ្រនិច​ដើម្បី​ផ្គូផ្គង​តួ​អក្សរ​បច្ចុប្បន្ន" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "បិទភ្ជាប់​ជម្រើស" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been លទ្ធផលត្រូវ​បានផ្អាក ផ្អាក​ ដោយ​" "ចុច​បញ្ជា(Crtl)​+S ។ ចុច​បញ្ជា​(Ctrl)+Q ដើម្បី​ធ្វើ​បន្ត​​ ។" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "ផ្លាស់ប្ដូរ​ថត​ទៅកាន់" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "បិទភ្ជាប់​ទីតាំង" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "ពុះ​ទិដ្ឋភាព" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​ឆ្វេង/ស្តាំ" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​កំពូល/បាត" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3552,7 +3741,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​កំពូល/បាត" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3560,7 +3749,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​ឆ្វេង/ស្តាំ" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3568,7 +3757,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​កំពូល/បាត" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3576,37 +3765,37 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "ពុះ​ទិដ្ឋភាព​ទៅ​កំពូល/បាត" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "ពង្រីក​ទិដ្ឋភាព​" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "បង្រួញ​ទិដ្ឋភាព​" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3614,7 +3803,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "ផ្ដាច់​ផ្ទាំង​បច្ចុប្បន្ន" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3622,93 +3811,107 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ផ្ដាច់​ផ្ទាំង​បច្ចុប្បន្ន" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "ផ្ទាំង​​បន្ទាប់" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "ផ្ទាំង​​មុន" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ស្ថានីយ​ខាងលើ​" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ស្ថានីយ​ខាងក្រោម​" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ស្ថានីយ​ខាងលើ​" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ស្ថានីយ​ខាងក្រោម​" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "ប្ដូរ​ទៅ​ផ្ទាំង​ចុងក្រោយ" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3716,7 +3919,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "ផ្លាស់​ទី​ផ្ទាំង​ទៅ​ស្ដាំ​" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3724,47 +3927,47 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "ផ្លាស់​ទី​ផ្ទាំង​​ទៅ​ឆ្វេង" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "ប្ដូរ​ទៅ​ផ្ទាំង %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3772,13 +3975,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "ផ្លាស់​ទី​ផ្ទាំង​​ទៅ​ឆ្វេង" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3791,7 +3994,7 @@ msgstr "" "មាន​បញ្ហា នៅ​ពេល​រក្សាទុក​លទ្ធផល ។\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3804,13 +4007,13 @@ msgstr "" "មាន​បញ្ហា នៅ​ពេល​រក្សាទុក​លទ្ធផល ។\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3911,29 +4114,41 @@ msgstr "ការ​អ៊ីនកូដ​តួ​អក្សរ​លំន msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "លេខ​សម័យ ៖ %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3970,7 +4185,7 @@ msgstr "កែ​សម្រួល​ពណ៌​ចម្រុះ​ដែល #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4027,12 +4242,18 @@ msgstr "គូរ​ពណ៌​​​ក្រាស​​នៅ​ក្នុ #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4164,16 +4385,33 @@ msgid "Make the cursor blink regularly" msgstr "ធ្វើ​ឲ្យ​ទស្សន៍ទ្រនិច​ភ្លឹបភ្លែតៗ​យ៉ាង​ទៀងទាត់" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "ធ្វើ​ឲ្យ​ម៉ឺនុយ​សកម្ម​" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "ធ្វើ​ឲ្យ​ទស្សន៍ទ្រនិច​ភ្លឹបភ្លែតៗ​យ៉ាង​ទៀងទាត់" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4181,14 +4419,14 @@ msgid "Miscellaneous" msgstr "ផ្សេងៗ​គ្នា" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "បង្អួច​​" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4196,25 +4434,25 @@ msgid "" msgstr "បង្ហាញ​ទំហំ​ស្ថានីយ​នៅ​ក្នុង​ជួរឈរ និង​បន្ទាត់​នៅ​កណ្ដាល​បង្អួច​បន្ទាប់ពី​ប្ដូរ​ទំហំ" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "បង្ហាញ​តម្រុយ​សម្រាប់​ទំហំ​ស្ថានីយ​បន្ទាប់ពី​ប្ដូរ​ទំហំ" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4223,28 +4461,28 @@ msgid "Color:" msgstr "ពណ៌" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "ជ្រើស​ពណ៌​ដែល​ត្រូវ​ប្រើ​សម្រាប់​គូរ​ទស្សន៍ទ្រនិច" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "លក្ខណៈ​ពិសេស​របស់​ស្ថានីយ" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "លក្ខណៈ​ពិសេស​របស់​ស្ថានីយ" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4252,96 +4490,96 @@ msgid "Terminal contents" msgstr "លក្ខណៈ​ពិសេស​របស់​ស្ថានីយ" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "គម្លាត​​​បន្ទាត់ ៖" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "ចំនួន​ភីកសែល​រវាង​បន្ទាត់​ពីឬ" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "អនុញ្ញាត​ការ​បង្ហាញ​អត្ថបទ Bi-Directional" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4349,45 +4587,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "កំណត់​ទស្សន៍ទ្រនិច​ដើម្បី​ផ្គូផ្គង​តួ​អក្សរ​បច្ចុប្បន្ន" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "ពុម្ព​អក្សរ" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4397,98 +4635,98 @@ msgstr "" "ប៉ុណ្ណោះ)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "អនុញ្ញាត​ការ​បង្ហាញ​អត្ថបទ Bi-Directional" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "កំណត់​ទស្សន៍ទ្រនិច​ដើម្បី​ផ្គូផ្គង​តួ​អក្សរ​បច្ចុប្បន្ន" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "កែ​សម្រួល​ទម្រង់​" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "ទូទៅ​" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ផ្ទាំង" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "រូបរាង​" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "រមូរ" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "ក្ដារចុច" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "ការ​ចង​គ្រាប់ចុច​" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "កណ្ដុរ" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "កម្រិត​ខ្ពស់​" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4497,48 +4735,55 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "កែសម្រួល​ទម្រង់ %1 ៖ %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile" msgstr "ទម្រង់​ថ្មី..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "កែ​សម្រួល​ទម្រង់ \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "គ្មាន" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4547,7 +4792,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4556,79 +4801,79 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Paste Location" msgid "System Notifications" msgstr "បិទភ្ជាប់​ទីតាំង" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "Visual effects" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "កំណត់​ទម្រង់​ដែល​បាន​ជ្រើស​ជា​លំនាំ​ដើម​សម្រាប់​សម័យ​ស្ថានីយ​ថ្មី" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "កែ​សម្រួល​បរិស្ថាន​" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, fuzzy, kde-format #| msgid "One environment variable per line" msgid "One environment variable per line" msgstr "មួយ​អថេរ​បរិស្ថាន​ក្នុង​មួយ​ជួរ" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] "វិនាទី" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "ជ្រើស​ថត​ដំបូង​" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "ថ្មី..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "ពណ៌​ចម្រុះ​នេះ​មាន​ផ្ទៃ​ខាងក្រោយ​ថ្លា​ ដែល​មិន​ត្រូវ​បាន​គាំទ្រ​នៅ​លើ​ផ្ទៃ​តុ​របស់​អ្នក​ទេ" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4637,13 +4882,13 @@ msgstr "" "កុងសូល​បាន​ចាប់ផ្ដើម​នៅ​មុន​ពេល​បើក​បែបផែន​ផ្ទៃតុ ។ អ្នក​ចាំបាច់​ត្រូវតែ​ចាប់ផ្ដើម​កុងសូល​ឡើងវិញ​ដើម្បី​ឃើញ​ផ្ទៃ​" "ខាងក្រោយ​ថ្លា ។" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "ទម្រង់​លំនាំដើម" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4660,7 +4905,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4752,27 +4997,55 @@ msgstr "ជ្រើស​ថត​ដំបូង" msgid "Start in same directory as current session" msgstr "ចាប់ផ្ដើម​នៅ​ក្នុង​ថត​ដូចគ្នា ជា​ផ្ទាំង​បច្ចុប្បន្ន" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "ចាប់ផ្ដើម​នៅ​ក្នុង​ថត​ដូចគ្នា ជា​ផ្ទាំង​បច្ចុប្បន្ន" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "បរិស្ថាន ៖" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "កែ​សម្រួល​អថេរ​បរិស្ថាន និង​តម្លៃ​ដែល​ទាក់ទង" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "លក្ខណៈ​ពិសេស​របស់​ស្ថានីយ" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4782,7 +5055,7 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4790,25 +5063,25 @@ msgid "&Terminal bell mode:" msgstr "កម្មវិធី​ត្រាប់​តាម​ស្ថានីយ" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4818,9 +5091,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4831,9 +5104,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4844,22 +5117,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4867,13 +5140,13 @@ msgid "Red error background:" msgstr "ផ្ទៃ​ខាងក្រោយ" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5241,50 +5514,92 @@ msgid "Scrollback:" msgstr "រមូរ​ថយក្រោយ" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ទីតាំង​របារ​ផ្ទាំង ៖" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "បង្ហាញ​របារ​រមូរ​នៅ​ផ្នែក​ខាង​ស្តាំ​នៃ​បង្អួច​ស្ថានីយ" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5292,66 +5607,36 @@ msgid "Ri&ght side" msgstr "បង្ហាញ​នៅ​ផ្នែក​ខាងស្តាំ​" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "បង្ហាញ​របារ​រមូរ​នៅ​ផ្នែក​ខាង​ឆ្វេង​នៃ​បង្អួច​ស្ថានីយ" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "ទំហំ​អត្ថបទ ៖" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ទីតាំង​របារ​ផ្ទាំង ៖" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5463,40 +5748,40 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "គ្មាន" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "រក​ ៖" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "បញ្ចូល​អត្ថបទ​ដើម្បី​ស្វែងរក​នៅ ទីនេះ" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "បន្ទាប់​" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "រក​ការ​ផ្គូផ្គង​បន្ទាប់​សម្រាប់​ឃ្លា​ស្វែងរក​បច្ចុប្បន្ន" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "រក​មុន" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5505,87 +5790,87 @@ msgstr "រក​ការ​ផ្គូផ្គង​មុន​សម្រ #: widgets/IncrementalSearchBar.cpp:102 #, fuzzy, kde-format -#| msgid "Display the options menu" -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "បង្ហាញ​ម៉ឺនុយ​ជម្រើស​" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "បិទ​របារ​ស្វែងរក​" - -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format #| msgid "Case sensitive" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "ប្រកាន់​តួអក្សរ​តូច​ធំ​" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "កំណត់​ថា​តើ​ការ​ស្វែងរក​ប្រកាន់​តួ​អក្សរ​តូច​ធំ" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, fuzzy, kde-format +#| msgid "Display the options menu" +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "បង្ហាញ​ម៉ឺនុយ​ជម្រើស​" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "បិទ​របារ​ស្វែងរក​" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "ផ្គូផ្គង​កន្សោម​ធម្មតា" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all matches" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "បន្លិច​​ផ្គូផ្គង​ទាំងអស់​" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "កំណត់​ថា​តើ​អត្ថបទ​ដែល​ផ្គូផ្គង​គួរ​ត្រូវ​បាន​បន្លិច" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "រក​ការ​ផ្គូផ្គង​បន្ទាប់​សម្រាប់​ឃ្លា​ស្វែងរក​បច្ចុប្បន្ន" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "រក​ការ​ផ្គូផ្គង​បន្ទាប់​សម្រាប់​ឃ្លា​ស្វែងរក​បច្ចុប្បន្ន" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "រក​ការ​ផ្គូផ្គង​បន្ទាប់​សម្រាប់​ឃ្លា​ស្វែងរក​បច្ចុប្បន្ន" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "រក​ការ​ផ្គូផ្គង​បន្ទាប់​សម្រាប់​ឃ្លា​ស្វែងរក​បច្ចុប្បន្ន" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5597,7 +5882,7 @@ msgstr "រក​ការ​ផ្គូផ្គង​បន្ទាប់​ msgid "Print Shell" msgstr "បោះពុម្ព​សែល" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5642,6 +5927,14 @@ msgstr "ទ្រង់ទ្រាយ​ចំណង​ជើង​ផ្ទា msgid "Tab Co&lor:" msgstr "ពណ៌" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "ពណ៌" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5746,7 +6039,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "បិទ​ផ្ទាំង" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5754,7 +6047,15 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "ផ្ដាច់​​​ផ្ទាំង" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ផ្ដាច់​​​ផ្ទាំង" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:whatsthis" #| msgid "Close the active tab" @@ -5762,26 +6063,32 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "បិទ​ផ្ទាំង​សកម្ម" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "ផ្ដាច់​​​ផ្ទាំង" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ប្តូរ​ឈ្មោះ​ផ្ទាំង​..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "បិទ​ផ្ទាំង​" +#, fuzzy +#~| msgid "Case sensitive" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "ប្រកាន់​តួអក្សរ​តូច​ធំ​" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" diff --git a/local/recipes/kde/konsole/source/po/kn/konsole.po b/local/recipes/kde/konsole/source/po/kn/konsole.po index 9943c274d1..2d74c381bc 100644 --- a/local/recipes/kde/konsole/source/po/kn/konsole.po +++ b/local/recipes/kde/konsole/source/po/kn/konsole.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2011-07-11 13:50+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: Kannada \n" @@ -58,7 +58,7 @@ msgstr "ನೋಟ" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "ನೋಟವನ್ನು ವಿಭಜಿಸು" @@ -94,7 +94,7 @@ msgid "S&crollback" msgstr "ಹಿಂದಕ್ಕೆ ಸುರುಳುವುದು ಬೇಡು" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number" msgid "Session Toolbar" @@ -184,36 +184,48 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "ವ್ಯವಸ್ಥೆಯು ಪಾರದರ್ಶಕ ಹಿನ್ನೆಲೆಯನ್ನು ಬೆಂಬಲಿಸದಿದ್ದರೂ,ಅದನ್ನು ಅಶಕ್ತಗೊಳಿಸು." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "ಲಭ್ಯವಿರುವ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯಗಳನ್ನು (ಪ್ರೊಫೈಲ್) ಪಟ್ಟಿ ಮಾಡು" -#: Application.cpp:73 +#: Application.cpp:75 #, fuzzy, kde-format #| msgid "" #| "List all the profile properties names and their type (for use with -p)" @@ -222,14 +234,14 @@ msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "ವ್ಯಕ್ತಿ ವೈಶಿಷ್ಟ್ಯಗಳ ಹೆಸರುಗಳನ್ನು ಅವುಗಳ ಪ್ರಕಾರದೊಂದಿಗೆ ಪಟ್ಟಿ ಮಾಡಿ (-p ಜೊತೆ ಬಳಸಲು)" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯದ (ಪ್ರೊಫೈಲ್) ಒಂದು ವರ್ತನೆಯ ಮೌಲ್ಯ ಬದಲಾಯಿಸು." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -237,7 +249,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -245,14 +257,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "ಆದೇಶಕ್ಕೆ ಸಾಗಿಸಲಾದ ಚರ ಪರಿಮಾಣ (ಆರ್ಗ್ಯುಮೆಂಟ್)" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -271,217 +283,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "ಮುನ್ನೆಲೆ" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "ಹಿನ್ನೆಲೆ" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "ಬಣ್ಣ ೧" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "ಬಣ್ಣ ೨" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "ಬಣ್ಣ ೩" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "ಬಣ್ಣ ೪" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "ಬಣ್ಣ ೫" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "ಬಣ್ಣ ೬" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "ಬಣ್ಣ ೭" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "ಬಣ್ಣ ೮" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ಮುನ್ನೆಲೆ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "ಹಿನ್ನೆಲೆ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "ಬಣ್ಣ ೧ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "ಬಣ್ಣ ೨ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "ಬಣ್ಣ ೩ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "ಬಣ್ಣ ೪ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "ಬಣ್ಣ ೫ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "ಬಣ್ಣ ೬ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "ಬಣ್ಣ ೭ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "ಬಣ್ಣ ೮ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ಮುನ್ನೆಲೆ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "ಹಿನ್ನೆಲೆ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "ಬಣ್ಣ ೧ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "ಬಣ್ಣ ೨ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "ಬಣ್ಣ ೩ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "ಬಣ್ಣ ೪ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "ಬಣ್ಣ ೫ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "ಬಣ್ಣ ೬ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "ಬಣ್ಣ ೭ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "ಬಣ್ಣ ೮ (ತೀವ್ರ)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -746,6 +758,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "ಆತಿಥೇಯ:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ನಿಗದಿಪಡಿಸು" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -790,7 +836,7 @@ msgstr "" msgid "Copy Location" msgstr "ಆದಾನವನ್ನು ಇಲ್ಲಿಗೆ ನಕಲಿಸಿ" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -822,14 +868,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "ಅಕ್ಷರಶೈಲಿಯನ್ನು ಸಂಪಾದಿಸು..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "ನಯವಾದ ಅಕ್ಷರಶೈಲಿಗಳು" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -867,17 +913,17 @@ msgstr "ಕೀಲಿ ಸಂಯೋಜನೆ" msgid "Output" msgstr "ಪ್ರದಾನ (ಔಟ್ ಪುಟ್)" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "ಹೊಸ ಕೀಲಿ ನಿಬಂಧನಾ ಪಟ್ಟಿ" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "ಕೀಲಿ ನಿಬಂಧನಾ ಪಟ್ಟಿಯನ್ನು ಸಂಪಾದಿಸು" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -885,7 +931,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -919,249 +965,249 @@ msgstr "ಆದಾನ (ಇನ್ ಪುಟ್):" msgid "Output:" msgstr "ಪ್ರದಾನ (ಔಟ್ ಪುಟ್):" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "ಕನ್ಸೋಲ್" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "ಆದೇಶತೆರೆ ಅನುವರ್ತಕ (ಎಮುಲೇಟರ್)" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "ಕರ್ಟ್ ವಿ ಹಿಂಡೆನ್ ಬರ್ಗ್" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "ಪರಿಹಾರಗಳು ಮತ್ತು ಸುಧಾರಣೆಗಳು" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "ರಾಬರ್ಟ್ ನೈಟ್" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "ಲಾರ್ಸ್ ಡೋಯಲ್" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "ಆದೇಶತೆರೆ ಅನುವರ್ತಕ (ಎಮುಲೇಟರ್)" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "ಪರಿಹಾರಗಳು ಮತ್ತು ಸುಧಾರಣೆಗಳು" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "ಪರಿಹಾರಗಳು ಮತ್ತು ಸುಧಾರಣೆಗಳು" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "ಪರಿಹಾರಗಳು ಮತ್ತು ಸುಧಾರಣೆಗಳು" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "ಥಾಮಸ್ ದ್ರೀಭೋಲ್ಸ್" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "ವಾಲ್ಡೊ ಬಾಸ್ಟಿಯನ್" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "ಸ್ಟೀಫನ್ ಬಿನ್ನರ್" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "ಥಾಮಸ್ ದ್ರೀಭೋಲ್ಸ್" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "ಸಾಮಾನ್ಯ ಸುಧಾರಣೆಗಳು" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "ಕ್ರಿಸ್ ಮಾಕೆಮರ್" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "ಪರಿಹಾರಗಳು" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "ಸ್ಟೀಫನ್ ಕುಲೊವ್" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "ಸೊಲಾರಿಸ್ ಬೆಂಬಲ ಮತ್ತು ಚರಿತ್ರೆ" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "ಅಲೆಕ್ಸಾಂಡರ್ ನ್ಯೂನ್ ಡಾರ್ಫ್" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "ಪರಿಹಾರಗಳು ಮತ್ತು ಸುಧಾರಿತ ಆರಂಭಿಕ ಕಾರ್ಯಕ್ಷಮತೆ" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "ಪೀಟರ್ ಸಿಲ್ವ" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "ಅಂಕನ ಸುಧಾರಣೆಗಳು" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "ಲಾಟ್ಜಿ ಬೊಲೊನಿ" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1174,14 +1220,14 @@ msgstr "" "ಹುದುಗಿಸಲ್ಪಟ್ಟ ಕನ್ಸೋಲ್\n" "ಸಲಕರಣೆಪಟ್ಟಿ ಮತ್ತು ಅಧಿವೇಶನ ಹೆಸರುಗಳು" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "ಡೇವಿಡ್ ಫಾರ್" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1194,28 +1240,28 @@ msgstr "" "ಹುದುಗಿಸಲ್ಪಟ್ಟ ಕನ್ಸೋಲ್\n" "ಸಾಮಾನ್ಯ ಸುಧಾರಣೆಗಳು" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "ಆಂಟೋನಿಯೋ ಲರೋಸಾ" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "ದೃಶ್ಯ ಪರಿಣಾಮಗಳು" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "ಮಥಿಯಾಸ್ ಎಟ್ರಿಚ್" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1228,125 +1274,125 @@ msgstr "" "ಕೆವಿಟಿ ಯೋಜನೆಯಿಂದ ಕ್ರಮಣಿಕೆ\n" "ಸಾಮಾನ್ಯ ಸುಧಾರಣೆಗಳು" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "ವಾರ್ವಿಕ್ ಅಲಿಸನ್" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "ರೂಪರೇಖೆ (ಸ್ಕೀಮಾ) ಮತ್ತು ಪಠ್ಯ ಆಯ್ಕೆ ಸುಧಾರಣೆಗಳು" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "ಡೇನ್ ಪಿಲೋನ್" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "ಎಸ್ ಜಿ ಐ ಸಂಪರ್ಕ ಕಿಂಡಿ (ಪೋರ್ಟ್)" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "ಕೆವಿನ್ ಸ್ಟ್ರೀಟ್" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "ಫ್ರೀ ಬಿ ಎಸ್ ಡಿ ಸಂಪರ್ಕ ಕಿಂಡಿ" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "ಸ್ವೆನ್ ಫಿಷರ್" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "ಡೇಲ್ ಎಮ್ ಫ್ಲಾವೆನ್" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "ಮಾರ್ಟಿನ್ ಜೋನ್ಸ" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "ಲಾರ್ಸ್ ನೋಲ್" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "ಇತರ ಹಲವರಿಗೆ ಧನ್ಯವಾದಗಳು.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "ಹೊಸ ಹಾಳೆ(&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ಹಾಳೆ&ಯನ್ನುಮುಚ್ಚು" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "ಹೊಸ ಕಿ&ಟಕಿ" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "ಕನ್ಸೋಲ್" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "ಅಂಕ&ನಗಳು" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "ಹೊಸ ಬಣ್ಣ ಪದ್ಧತಿ" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Manage Profiles" @@ -1354,27 +1400,27 @@ msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯಗಳನ್ನು (ಪ್ರೊಫೈಲ್) ವ್ಯವಸ್ಥಾಪಿಸು" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "ಪರಿವಿಡಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "ಹಾಳೆಯನ್ನು ಎಡಕ್ಕೆ ಸರಿಸು" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1385,28 +1431,28 @@ msgid_plural "" msgstr[0] "ಈ ವಿಂಡೋದಲ್ಲಿ ಅನೇಕ ಹಾಳೆಗಳಿವೆ, ಅವನ್ನು ತ್ಯಜಿಸುವ ಬಗ್ಗೆ ನಿಮಗೆ ಖಚಿತವಿದೆಯೇ?" msgstr[1] "ಈ ವಿಂಡೋದಲ್ಲಿ ಅನೇಕ ಹಾಳೆಗಳಿವೆ, ಅವನ್ನು ತ್ಯಜಿಸುವ ಬಗ್ಗೆ ನಿಮಗೆ ಖಚಿತವಿದೆಯೇ?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "ಮುಚ್ಚುವುದನ್ನು ದೃಡಪಡಿಸು" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "ಕನ್ಸೋಲ್" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "ಈಗಿನ ಹಾಳೆಯನ್ನು ಮುಚ್ಚು" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1414,7 +1460,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "ಈ ವಿಂಡೋದಲ್ಲಿ ಅನೇಕ ಹಾಳೆಗಳಿವೆ, ಅವನ್ನು ತ್ಯಜಿಸುವ ಬಗ್ಗೆ ನಿಮಗೆ ಖಚಿತವಿದೆಯೇ?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1422,7 +1468,7 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "ಹೊಸ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯ (ಪ್ರೊಫೈಲ್)" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgctxt "@title:tab Generic, common options" #| msgid "General" @@ -1430,31 +1476,31 @@ msgctxt "@title Preferences page name" msgid "General" msgstr "ಸಾಮಾನ್ಯ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1548,7 +1594,7 @@ msgstr "ಕಡತ ವ್ಯವಸ್ಥಾಪಕವನ್ನು ತೆರೆಯ #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1560,29 +1606,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "ಆದೇಶ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "ಆದೇಶ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1624,7 +1670,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1684,11 +1730,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1751,94 +1797,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "ದೂರಸ್ಥ ಸಂಪರ್ಕ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "ಮೊದಲ ಬಳಕೆ ಅಧಿವೇಶನವು ಮುಗಿದೊಡನೆ ಅದನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಮುಚ್ಚಬೇಡ." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2047,25 +2093,25 @@ msgstr "ಆಯ್ಕೆಗಳು" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "ಪೂರ್ವನಿಯೋಜಿತ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯ" @@ -2130,17 +2176,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "ಪ್ರದಾನವನ್ನು %1 ಇಂದ ಉಳಿಸು" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 ಅಮಾನ್ಯ ಜಾಲತಾಣ ವಿಳಾಸ, ಪ್ರದಾನವನ್ನು ಉಳಿಸಲಾಗಲಿಲ್ಲ.ಲಾದ." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2177,83 +2244,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "ಕಡು ಬಣ್ಣದ ಪಟ್ಟಿಕೆಗಳು" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "ಕಪ್ಪಿನ ಮೇಲೆ ಹಸಿರು" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "ಲಿನಕ್ಸ ಬಣ್ಣಗಳು" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "ಕಪ್ಪಿನ ಮೇಲೆ ಬಿಳಿ" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "ಕಪ್ಪಿನ ಮೇಲೆ ಬಿಳಿ" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "ಪೂರ್ವನಿಯೋಜಿತ (Xಫ್ರೀ ೪)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "ಲಿನಕ್ಸ ಕನ್ಸೋಲ್" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "ಸೊಲಾರಿಸ್ ಕನ್ಸೋಲ್" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "ಪ್ರದಾನವನ್ನು ಹುಡುಕು..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ಹುಡುಕಬೇಕಾದ ಪಠ್ಯವನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಿ" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "ಅಧಿವೇಶನ '%1' ರಲ್ಲಿ ಗಂಟೆ ಮೊಳಗಿದೆ" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "ಬೈನರಿ ಹುಡುಕಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "ಎಚ್ಚರಿಕೆ:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr " ಆರಂಭಿಸಲು ಯಾವುದೆ ಸಂವಾದಾತ್ಮಕ ಶೆಲ್ ಸಿಗುತ್ತಿಲ್ಲ." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2262,360 +2348,368 @@ msgstr "" "'%1' ಪತ್ತೆಯಾಗುತ್ತಿಲ್ಲ, ಬದಲಿಗೆ '%2' ಆರಂಭಿಸಿ. ನಿಮ್ಮ ವೈಕ್ತಿವೈಶಿಷ್ಟ್ಯದ ಸಂಯೋಜನೆಗಳನ್ನು " "ಪರಿಶೀಲಿಸಿ." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "'%1' ಕ್ರಮವಿಧಿಯನ್ನು '%2' ಆರ್ಗ್ಯುಮೆಂಟುಗಳ ಜೊತೆ ಆರಂಭಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "ಅಧಿವೇಶನ '%1' ರಲ್ಲಿ ನೀರವತೆಯಿದೆ" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "ಕನ್ಸೋಲ್" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "ಅಂತ್ಯಗೊಂಡಿದೆ" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "%1 ಕ್ರಮವಿಧಿಯು ಕುಸಿತಗೊಂಡಿದೆ." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "%1 ಕ್ರಮವಿಧಿಯು (ಪ್ರೋಗ್ರಾಂ) %2 ಸ್ಥಿತಿಯೊಂದಿಗೆ ನಿರ್ಗಮಿಸಿದೆ." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ಜೆಡ್ ಮೋಡೆಮ್ ಪ್ರಗತಿ" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "ಅಧಿವೇಶನ '%1' ರಲ್ಲಿ ಚಟುವಟಿಕೆಯಿದೆ" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "ಕನ್ಸೋಲ್" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "ಕನ್ಸೋಲ್‌ಗೆ ಪುಟಗುರುತನ್ನು ತೆರೆಯುವುದು ಹೇಗೆಂದು ಗೊತ್ತಿಲ್ಲ: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Configure Profiles..." msgid "Configure Web Shortcuts..." msgstr "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯಗಳನ್ನು (ಪ್ರೊಫೈಲ್) ಸಂರಚಿಸು..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "ಕನ್ಸೋಲ್" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ಕಡತ ವ್ಯವಸ್ಥಾಪಕವನ್ನು ತೆರೆಯಿರಿ" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&ನಕಲಿಸು" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "ನೋಟವನ್ನು ಎಡ/ಬಲವಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "ನೋಟವನ್ನು ಮೇಲೆ/ಕೆಳಗಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ಆದಾನವನ್ನು (ಇನ್ ಪುಟ್) ನಕಲಿಸಿ" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ಆದಾನವನ್ನು (ಇನ್ ಪುಟ್) ನಕಲಿಸಿ" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "ಆಯ್ಕೆ ಅಂಟಿಸಿ" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "ಎಲ್ಲವನ್ನೂ ಆರಿಸು" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Mode" msgstr "ಆರಿಸು" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Line" msgstr "ಆರಿಸು" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "ಪ್ರದಾನವನ್ನು ಹೀಗೆ ಉಳಿಸು (&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "ಪ್ರದಾನವನ್ನು ಹೀಗೆ ಉಳಿಸು (&A)..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Configure Scrollback..." msgid "Adjust Scrollback..." msgstr "ಹಿಂದಕ್ಕೆ ಸುರುಳುವುದನ್ನು ಸಂರಚಿಸು..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "ಹಿಂದಕ್ಕೆ ಸುರುಳುವುದನ್ನು ತೆರವುಗೊಳಿಸು" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "ಹಿಂದಕ್ಕೆ ಸುರುಳನ್ನು ತೆರವುಗೊಳಿಸು ಮತ್ತು ಮರುಸಿದ್ಧಗೊಳಿಸು" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು (ಪ್ರೊಫೈಲ್) ಸಂಪಾದಿಸು" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "ಹಿಂದಿನ ನೋಟ" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು (ಪ್ರೊಫೈಲ್) ಸಂಪಾದಿಸು" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಅಣಿಗೊಳಿಸಿ (&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "ಹಾಳೆಯನ್ನು &ಮರುಹೆಸರಿಸು..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "ಪ್ರಸ್ತುತ ವಿಂಡೋದಲ್ಲಿ ಎಲ್ಲಾ ಹಾಳೆಗಳು (&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "ಹಾಳೆಗಳನ್ನು ಆರಿಸು(&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "ಯಾವುದೂ ಇಲ್ಲ (&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "ಆದಾನವನ್ನು ಇಲ್ಲಿಗೆ ನಕಲಿಸಿ" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem ಅಪ್ಲೋಡ್ ಮಾಡಿ..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "ಕ್ರಿಯೆ(&ಗ)ಗಾಗಿ ಆಲಿಸು" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "ಕ್ರಿಯೆ(&ಗ)ಗಾಗಿ ಆಲಿಸು" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "ನೀ&ರವತೆಗಾಗಿ ಆಲಿಸು" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "ಕ್ರಿಯೆ(&ಗ)ಗಾಗಿ ಆಲಿಸು" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "ಅಕ್ಷರಶೈಲಿಯನ್ನು ದೊಡ್ಡದಾಗಿಸು" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "ಅಕ್ಷರಶೈಲಿಯನ್ನು ಕಿರಿದಾಗಿಸು" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "ಪಠ್ಯ ಗಾತ್ರವನ್ನು ಹೆಚ್ಚಿಸು" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "ಹಾಳೆ&ಯನ್ನುಮುಚ್ಚು" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "ಆದೇಶತೆರೆ ವೈಶಿಷ್ಟ್ಯಗಳು" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "ಹೊಸ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯ..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "ಪ್ರಸ್ತುತ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು ಸಂಪಾದಿಸು..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2624,7 +2718,7 @@ msgstr "" "ಒಂದು ಕ್ರಮವಿಧಿ ಪ್ರಸ್ತುತ ಈ ಅವಧಿಯಲ್ಲಿ ನಡೆಯುತ್ತಿದೆ. ನೀವು ಇದನ್ನು ಮುಚ್ಚುವುದನ್ನು ಖಚಿತವಾಗಿ " "ಬಯಸುವಿರಾ?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2633,19 +2727,19 @@ msgstr "" "ಕ್ರಮವಿಧಿ '%1' ಪ್ರಸ್ತುತ ಈ ಅವಧಿಯಲ್ಲಿ ನಡೆಯುತ್ತಿದೆ.ನೀವು ಇದನ್ನು ಮುಚ್ಚುವುದನ್ನು ಖಚಿತವಾಗಿ " "ಬಯಸುವಿರಾ?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "ಮುಚ್ಚುವುದನ್ನು ದೃಡಪಡಿಸು" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "ಹಾಳೆ&ಯನ್ನುಮುಚ್ಚು" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2657,41 +2751,41 @@ msgstr "" "ಒಂದು ಕ್ರಮವಿಧಿ ಪ್ರಸ್ತುತ ಈ ಅವಧಿಯಲ್ಲಿ ನಡೆಯುತ್ತಿದೆ. ನೀವು ಇದನ್ನು ಮುಚ್ಚುವುದನ್ನು ಖಚಿತವಾಗಿ " "ಬಯಸುವಿರಾ?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "ಕ್ರಮವಿಧಿ '%1' ಪ್ರಸ್ತುತ ಈ ಅವಧಿಯಲ್ಲಿ ನಡೆಯುತ್ತಿದೆ.ನೀವು ಇದನ್ನು ಮುಚ್ಚುವುದನ್ನು ಖಚಿತವಾಗಿ " "ಬಯಸುವಿರಾ?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "ZModem ಡೌನ್ಲೋಡನ್ನು ಇಲ್ಲಿ ಉಳಿಸಿ ..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2702,7 +2796,7 @@ msgstr "" "ತಂತ್ರಾಂಶ ಈ ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ.

            ನೀವು rzsz 'ಅಥವಾ' lrzsz 'ಪ್ಯಾಕೇಜ್ " "ಅನ್ನು ಅನುಸ್ಥಾಪಿಸಲು ಬಯಸಬಹುದು

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " @@ -2710,7 +2804,7 @@ msgstr "" "

            ಪ್ರಸಕ್ತ ಅಧಿವೇಶನದಲ್ಲಿ ಈಗಾಗಲೇ ಒಂದು ZModem ಕಡತ ವರ್ಗಾವಣೆ ಪ್ರಗತಿಯಲ್ಲಿದೆ ಹೊಂದಿದೆ. " "

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2719,7 +2813,7 @@ msgstr "" "

            ಸೂಕ್ತ ZModem ತಂತ್ರಾಂಶ ಈ ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ.

            ನೀವು rzsz 'ಅಥವಾ' " "lrzsz 'ಪ್ಯಾಕೇಜ್ ಅನ್ನು ಅನುಸ್ಥಾಪಿಸಲು ಬಯಸಬಹುದು.

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModemಗೆ ಕಳಿಸ ಬೇಕಿರುವ ಕಡತಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ." @@ -2743,150 +2837,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "ಮುಚ್ಚುವುದನ್ನು ದೃಡಪಡಿಸು" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, fuzzy, kde-format -#| msgid "Save window size and position on exit" -msgid "Show window title on the titlebar" -msgstr "ನಿರ್ಗಮನದ ಮೊದಲು ಕಿಟಕಿ ಗಾತ್ರ ಮತ್ತು ಸ್ಥಾನವನ್ನು ಉಳಿಸಿ." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "ನಿಯತ ಕ್ರಮೋಕ್ತಿಯನ್ನು (ಎಕ್ಸ್ಪ್ರೆಷನ್) ಹೊಂದಿಸು" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "ತಾಳೆಯಾದ ಎಲ್ಲವನ್ನೂ ಪ್ರಶಸ್ತಗೊಳಿಸು" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "ಹುಡುಕು ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿಯೇ ಅಲ್ಲವೇ ಎಂಬುದನ್ನು ನಿಗದಿಗೊಳಿಸುತ್ತದೆ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "ಹೊಸ ಹಾಳೆ ಪಠ್ಯವನ್ನು ನಮೂದಿಸು:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "ಹುಡುಕು ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿಯೇ ಅಲ್ಲವೇ ಎಂಬುದನ್ನು ನಿಗದಿಗೊಳಿಸುತ್ತದೆ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿ" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "ತಾಳೆಯಾದ ಎಲ್ಲವನ್ನೂ ಪ್ರಶಸ್ತಗೊಳಿಸು" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಮುಂದಿನ ತಾಳೆಯನ್ನು ಕಂಡುಹಿಡಿ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, fuzzy, kde-format +#| msgid "Save window size and position on exit" +msgid "Show window title on the titlebar" +msgstr "ನಿರ್ಗಮನದ ಮೊದಲು ಕಿಟಕಿ ಗಾತ್ರ ಮತ್ತು ಸ್ಥಾನವನ್ನು ಉಳಿಸಿ." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "ನಿಯತ ಕ್ರಮೋಕ್ತಿಯನ್ನು (ಎಕ್ಸ್ಪ್ರೆಷನ್) ಹೊಂದಿಸು" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2913,74 +3034,112 @@ msgstr "ನಿರ್ಗಮನದ ಮೊದಲು ಕಿಟಕಿ ಗಾತ್ರ msgid "The window size will be saved upon exiting Konsole" msgstr "ನಿರ್ಗಮನದ ಮೊದಲು ಕಿಟಕಿ ಗಾತ್ರ ಮತ್ತು ಸ್ಥಾನವನ್ನು ಉಳಿಸಿ." -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "ಹುಡುಕು ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿಯೇ ಅಲ್ಲವೇ ಎಂಬುದನ್ನು ನಿಗದಿಗೊಳಿಸುತ್ತದೆ" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all matches" msgid "Highlight all search matches" msgstr "ತಾಳೆಯಾದ ಎಲ್ಲವನ್ನೂ ಪ್ರಶಸ್ತಗೊಳಿಸು" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "ಸರಿಹೊಂದುವ ಪಠ್ಯವನ್ನು ಪ್ರಶಸ್ತಗೊಳಿಸಬೇಕೆ ಬೇಡವೆ ಎಂಬುದನ್ನು ನಿಗದಿಗೊಳಿಸುತ್ತದೆ" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2988,92 +3147,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "ಸ್ಥಳಸೂಚಕಕ್ಕೆ ಗ್ರಾಹಕೀಯ, ನಿಗದಿತ ಬಣ್ಣ ಪದ್ಧತಿಯನ್ನು ಉಪಯೋಗಿಸು" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3086,26 +3251,24 @@ msgid "Enable memory monitoring:" msgstr "ಎರಡು ದಿಕ್ಕುಗಳಲ್ಲಿ ಪಠ್ಯ ನಿರೂಪಣೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3280,110 +3443,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "ಯಾವುದೂ ಇಲ್ಲ (&N)" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "ಹಾಳೆ&ಯನ್ನುಮುಚ್ಚು" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "ಹಾಳೆಯಲ್ಲಿ \"ಹೊಸ ಹಾಳೆ\" ಮತ್ತು \"ಹಾಳೆ ಮುಚ್ಚು\" ಗುಂಡಿಗಳನ್ನು ತೋರಿಸಿ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "ಸ್ಥಳಸೂಚಕಕ್ಕೆ ಗ್ರಾಹಕೀಯ, ನಿಗದಿತ ಬಣ್ಣ ಪದ್ಧತಿಯನ್ನು ಉಪಯೋಗಿಸು" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "ಹೊಸ ಹಾಳೆ ಪಠ್ಯವನ್ನು ನಮೂದಿಸು:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "ಈಗಿನ ಹಾಳೆಯನ್ನು ಮುಚ್ಚು" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "ನೋಟವನ್ನು ವಿಭಜಿಸು" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "ಪರಿವಿಡಿ ಪಟ್ಟಿಯನ್ನು ತೋರಿಸು" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3392,14 +3574,14 @@ msgid "Small" msgstr "ಚಿಕ್ಕದು" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3408,7 +3590,7 @@ msgid "Large" msgstr "ದೊಡ್ಡದು" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3461,8 +3643,8 @@ msgstr "" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3502,99 +3684,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "ಗಾತ್ರ: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "ಮುಚ್ಚುವುದನ್ನು ದೃಡಪಡಿಸು" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "ಮುಚ್ಚುವುದನ್ನು ದೃಡಪಡಿಸು" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "ಸ್ಥಳಸೂಚಕವು ಪ್ರಸಕ್ತ ಲಿಪ್ಯಂಶಕ್ಕೆ ಹೊಂದುವಂತೆ ನಿಗದಿಡಿಸು" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "ಆಯ್ಕೆ ಅಂಟಿಸಿ" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been Ctrl+S ಒತ್ತುವುದರ ಮೂಲಕ ಪ್ರದಾನವನ್ನು ಅಮಾನತ್ತುಗೊಳಿಸಲಾಗಿದೆ ಪುನರಾರಂಭಿಸಲು Ctrl+Q ಒತ್ತಿ." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "ಆಯ್ಕೆ ಅಂಟಿಸಿ" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "ನೋಟವನ್ನು ವಿಭಜಿಸು" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "ನೋಟವನ್ನು ಎಡ/ಬಲವಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "ನೋಟವನ್ನು ಮೇಲೆ/ಕೆಳಗಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3650,7 +3832,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "ನೋಟವನ್ನು ಮೇಲೆ/ಕೆಳಗಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3658,7 +3840,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "ನೋಟವನ್ನು ಎಡ/ಬಲವಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3666,7 +3848,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "ನೋಟವನ್ನು ಮೇಲೆ/ಕೆಳಗಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3674,210 +3856,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "ನೋಟವನ್ನು ಮೇಲೆ/ಕೆಳಗಾಗಿ ಇಬ್ಭಾಗಿಸು" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "ನೋಟವನ್ನು ವಿಸ್ತರಿಸು" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "ನೋಟವನ್ನು ಕುಂದಿಸು" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "ಪ್ರಸ್ತುತ ಹಾಳೆಯನ್ನು ಬೇರ್ಪಡಿಸು (&e)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ಪ್ರಸ್ತುತ ಹಾಳೆಯನ್ನು ಬೇರ್ಪಡಿಸು (&e)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "Next Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "ಮುಂದಿನ ಹಾಳೆ" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous Tab" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "ಹಿಂದಿನ ಹಾಳೆ" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ಆದೇಶತೆರೆ (ಟರ್ಮಿನಲ್) ಪ್ರದರ್ಶಕಗಳ ಮೇಲೆ" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ಆದೇಶತೆರೆ (ಟರ್ಮಿನಲ್) ಪ್ರದರ್ಶಕಗಳ ಕೆಳಗೆ" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ಆದೇಶತೆರೆ (ಟರ್ಮಿನಲ್) ಪ್ರದರ್ಶಕಗಳ ಮೇಲೆ" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ಆದೇಶತೆರೆ (ಟರ್ಮಿನಲ್) ಪ್ರದರ್ಶಕಗಳ ಕೆಳಗೆ" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "ಹಾಳೆ %1 ಕ್ಕೆ ಬದಲಾಯಿಸು" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move Tab Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "ಹಾಳೆಯನ್ನು ಬಲಕ್ಕೆ ಸರಿಸು" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "ಹಾಳೆಯನ್ನು ಎಡಕ್ಕೆ ಸರಿಸು" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "ಹಾಳೆ %1 ಕ್ಕೆ ಬದಲಾಯಿಸು" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "ಮೌಸ್‌ನ ಪರಸ್ಪರ ಕ್ರಿಯೆ (ಇಂಟರಾಕ್ಷನ್)" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "ನಿಗದಿತ ಸಂಖ್ಯೆಯ ಸಾಲುಗಳು: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "ಹಾಳೆಯನ್ನು ಎಡಕ್ಕೆ ಸರಿಸು" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3890,7 +4086,7 @@ msgstr "" "ಪ್ರದಾನವನ್ನು ಉಳಿಸುತ್ತಿರುವಾಗ ತೊಂದರೆಯುಂಟಾಯಿತು.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3903,13 +4099,13 @@ msgstr "" "ಪ್ರದಾನವನ್ನು ಉಳಿಸುತ್ತಿರುವಾಗ ತೊಂದರೆಯುಂಟಾಯಿತು.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -4009,29 +4205,41 @@ msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಲಿಪ್ಯಂಶ ಸಂಕೇ msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "ನಿಗದಿತ ಸಂಖ್ಯೆಯ ಸಾಲುಗಳು: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4068,7 +4276,7 @@ msgstr "ಆಯ್ದ ಬಣ್ಣ ಪದ್ಧತಿಯನ್ನು ಸಂಪಾ #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4125,12 +4333,18 @@ msgstr "ದಪ್ಪಕ್ಷರದಲ್ಲಿರುವ ಫಾಂಟ್ ನಲ #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4262,30 +4476,46 @@ msgid "Make the cursor blink regularly" msgstr "ಸ್ಥಳಸೂಚಕವು ನಿಯತವಾಗಿ ಮಿಣುಕುವಂತೆ ಮಾಡು" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "ಪರಿವಿಡಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "ಸ್ಥಳಸೂಚಕವು ನಿಯತವಾಗಿ ಮಿಣುಕುವಂತೆ ಮಾಡು" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "ಕಿಟಕಿ" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4293,25 +4523,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4320,28 +4550,28 @@ msgid "Color:" msgstr "ಬಣ್ಣ" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "ಸ್ಥಳಸೂಚಕವನ್ನು ರೇಖಿಸಲು ಉಪಯೋಗಿಸಬೇಕಾದ ಬಣ್ಣವನ್ನು ಆರಿಸು" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "ಆದೇಶತೆರೆ ವೈಶಿಷ್ಟ್ಯಗಳು" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "ಆದೇಶತೆರೆ ವೈಶಿಷ್ಟ್ಯಗಳು" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4349,95 +4579,95 @@ msgid "Terminal contents" msgstr "ಆದೇಶತೆರೆ ವೈಶಿಷ್ಟ್ಯಗಳು" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "ಎರಡು ದಿಕ್ಕುಗಳಲ್ಲಿ ಪಠ್ಯ ನಿರೂಪಣೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4445,45 +4675,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "ಸ್ಥಳಸೂಚಕವು ಪ್ರಸಕ್ತ ಲಿಪ್ಯಂಶಕ್ಕೆ ಹೊಂದುವಂತೆ ನಿಗದಿಡಿಸು" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "ಅಕ್ಷರಶೈಲಿ" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4493,98 +4723,98 @@ msgstr "" "ಫಾರ್ಸಿಅಥವಾ ಹೀಬ್ರೂಗೆ ಮಾತ್ರ ಮಾನ್ಯವಾಗಿದೆ)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "ಎರಡು ದಿಕ್ಕುಗಳಲ್ಲಿ ಪಠ್ಯ ನಿರೂಪಣೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "ಸ್ಥಳಸೂಚಕವು ಪ್ರಸಕ್ತ ಲಿಪ್ಯಂಶಕ್ಕೆ ಹೊಂದುವಂತೆ ನಿಗದಿಡಿಸು" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು (ಪ್ರೊಫೈಲ್) ಸಂಪಾದಿಸು" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "ಸಾಮಾನ್ಯ" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ಹಾಳೆಗಳು" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "ಸ್ವರೂಪ" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "ಸುರುಳುತ್ತಿದೆ" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "ಕೀಲಿ ನಿಬಂಧನೆಗಳು (ಬೈಂಡಿಂಗ್)" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "ಪ್ರೌಢ" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4593,49 +4823,56 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು (ಪ್ರೊಫೈಲ್) ಸಂಪಾದಿಸಲಾಗುತ್ತಿದೆ: %2" msgstr[1] "%1 ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು (ಪ್ರೊಫೈಲ್) ಸಂಪಾದಿಸಲಾಗುತ್ತಿದೆ: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "ಹೊಸ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯ..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು (ಪ್ರೊಫೈಲ್) ಸಂಪಾದಿಸು \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "ಯಾವುದೂ ಇಲ್ಲ (&N)" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4645,7 +4882,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4655,46 +4892,46 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "ಆಯ್ಕೆ ಅಂಟಿಸಿ" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "ದೃಶ್ಯ ಪರಿಣಾಮಗಳು" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "" "ಆಯ್ದ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಸ ಆದೇಶತೆರೆ ಅಧಿವೇಶನಗಳಿಗೆ ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ನಿಗದಿಪಡಿಸು" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "ಪರಿಸರವನ್ನು ಸಂಪಾದಿಸು" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4702,25 +4939,25 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "ಆರಂಭಿಕ ಕಡತಕೋಶವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "ಹೊಸ..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4729,20 +4966,20 @@ msgstr "" "ಈ ಬಣ್ಣ ಪದ್ಧತಿ ಪಾರದರ್ಶಕ ಹಿನ್ನೆಲೆ ಹೊಂದಿದೆ, ಆದರೆ ನಿಮ್ಮ ಗಣಕತೆರೆ ಇದನ್ನು ಬೆಂಬಲಿಸುವಂತೆ " "ಕಾಣಿಸುತ್ತಿಲ್ಲ." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "ಪೂರ್ವನಿಯೋಜಿತ ವ್ಯಕ್ತಿವೈಶಿಷ್ಟ್ಯ" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4759,7 +4996,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4852,27 +5089,55 @@ msgstr "ಮೊದಲಿನ ಕಡತಕೋಶಕ್ಕಾಗಿ ವೀಕ್ಷ msgid "Start in same directory as current session" msgstr "ಸದ್ಯದ ಹಾಳೆಯಿರುವ ಕೋಶವನ್ನೇ ಆರಂಭಿಸು" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "ಸದ್ಯದ ಹಾಳೆಯಿರುವ ಕೋಶವನ್ನೇ ಆರಂಭಿಸು" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "ಪರಿಸರ:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "ಪರಿಸರ ಚರಗಳ ಮತ್ತು ಒಡನಾಡಿ ಮೌಲ್ಯಗಳ ಪಟ್ಟಿಯನ್ನು ಸಂಪಾದಿಸು" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "ಆದೇಶತೆರೆ ವೈಶಿಷ್ಟ್ಯಗಳು" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4882,33 +5147,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "ಆದೇಶತೆರೆ ಅನುವರ್ತಕ (ಎಮುಲೇಟರ್)" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "ಮೌಸ್‌ನ ಪರಸ್ಪರ ಕ್ರಿಯೆ (ಇಂಟರಾಕ್ಷನ್)" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4918,9 +5183,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4931,9 +5196,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4944,35 +5209,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "ಹಿನ್ನೆಲೆ" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5341,72 +5606,25 @@ msgid "Scrollback:" msgstr "ಹಿಂದಕ್ಕೆ ಸುರುಳುವುದು ಬೇಡು" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ಹಾಳೆ ಪಟ್ಟಿ (ಟ್ಯಾಬ್ ಬಾರ್) ಸ್ಥಳ:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "ಸುರುಳು ಪಟ್ಟಿಯನ್ನು ಆದೇಶತೆರೆ ಕಿಟಕಿಯ ಬಲಭಾಗದಲ್ಲಿ ತೋರಿಸು" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "ಬಲಭಾಗದಲ್ಲಿ ತೋರಿಸು" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "ಸುರುಳು ಪಟ್ಟಿಯನ್ನು ಆದೇಶತೆರೆ ಕಿಟಕಿಯ ಎಡಭಾಗದಲ್ಲಿ ತೋರಿಸು" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "ಪಠ್ಯ ಗಾತ್ರ:" - #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5414,46 +5632,105 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "ಅಡಗಿಸಿದ" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "ಸುರುಳು ಪಟ್ಟಿಯನ್ನು ಆದೇಶತೆರೆ ಕಿಟಕಿಯ ಬಲಭಾಗದಲ್ಲಿ ತೋರಿಸು" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "ಬಲಭಾಗದಲ್ಲಿ ತೋರಿಸು" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "ಸುರುಳು ಪಟ್ಟಿಯನ್ನು ಆದೇಶತೆರೆ ಕಿಟಕಿಯ ಎಡಭಾಗದಲ್ಲಿ ತೋರಿಸು" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "ಪಠ್ಯ ಗಾತ್ರ:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ಹಾಳೆ ಪಟ್ಟಿ (ಟ್ಯಾಬ್ ಬಾರ್) ಸ್ಥಳ:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5558,40 +5835,40 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "ಯಾವುದೂ ಇಲ್ಲ (&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "ಹುಡುಕು:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ಹುಡುಕಬೇಕಾದ ಪಠ್ಯವನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಿ" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "ಮುಂದಕ್ಕೆ" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಮುಂದಿನ ತಾಳೆಯನ್ನು ಕಂಡುಹಿಡಿ" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "ಹಿಂದಕ್ಕೆ" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5600,87 +5877,87 @@ msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಹಿಂದಿನ ತಾಳೆಯನ #: widgets/IncrementalSearchBar.cpp:102 #, fuzzy, kde-format -#| msgid "Display the options menu" -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "ಆಯ್ಕೆ ಪರಿವಿಡಿಯನ್ನು ತೋರಿಸು" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "ಹುಡುಕು ಪಟ್ಟಿಯನ್ನು ಮುಚ್ಚು" - -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format #| msgid "Case sensitive" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿ" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "ಹುಡುಕು ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿಯೇ ಅಲ್ಲವೇ ಎಂಬುದನ್ನು ನಿಗದಿಗೊಳಿಸುತ್ತದೆ" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, fuzzy, kde-format +#| msgid "Display the options menu" +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "ಆಯ್ಕೆ ಪರಿವಿಡಿಯನ್ನು ತೋರಿಸು" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "ಹುಡುಕು ಪಟ್ಟಿಯನ್ನು ಮುಚ್ಚು" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "ನಿಯತ ಕ್ರಮೋಕ್ತಿಯನ್ನು (ಎಕ್ಸ್ಪ್ರೆಷನ್) ಹೊಂದಿಸು" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all matches" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "ತಾಳೆಯಾದ ಎಲ್ಲವನ್ನೂ ಪ್ರಶಸ್ತಗೊಳಿಸು" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "ಸರಿಹೊಂದುವ ಪಠ್ಯವನ್ನು ಪ್ರಶಸ್ತಗೊಳಿಸಬೇಕೆ ಬೇಡವೆ ಎಂಬುದನ್ನು ನಿಗದಿಗೊಳಿಸುತ್ತದೆ" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಮುಂದಿನ ತಾಳೆಯನ್ನು ಕಂಡುಹಿಡಿ" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಮುಂದಿನ ತಾಳೆಯನ್ನು ಕಂಡುಹಿಡಿ" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಮುಂದಿನ ತಾಳೆಯನ್ನು ಕಂಡುಹಿಡಿ" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಮುಂದಿನ ತಾಳೆಯನ್ನು ಕಂಡುಹಿಡಿ" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5693,7 +5970,7 @@ msgstr "ಹಾಲಿ ಪದಪುಂಜದ ಮುಂದಿನ ತಾಳೆಯನ msgid "Print Shell" msgstr "ಆದೇಶಗ್ರಾಹಿ (ಶೆಲ್)" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5741,6 +6018,14 @@ msgstr "ಸಾಧಾರಣ ಹಾಳೆ ಶೀರ್ಷಿಕೆ ನಮೂನೆ msgid "Tab Co&lor:" msgstr "ಬಣ್ಣ" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "ಬಣ್ಣ" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5855,7 +6140,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ಹಾಳೆ&ಯನ್ನುಮುಚ್ಚು" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5863,33 +6148,47 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "ಹಾಳೆಯನ್ನು ಬೇರ್ಪಡಿಸು (&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ಹಾಳೆಯನ್ನು ಬೇರ್ಪಡಿಸು (&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "ಹುಡುಕು ಪಟ್ಟಿಯನ್ನು ಮುಚ್ಚು" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "ಹಾಳೆಯನ್ನು ಬೇರ್ಪಡಿಸು (&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ಹಾಳೆಯನ್ನು &ಮರುಹೆಸರಿಸು..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "ಹಾಳೆ&ಯನ್ನುಮುಚ್ಚು" +#, fuzzy +#~| msgid "Case sensitive" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "ಅಕ್ಷರಸ್ತರ ಸಂವೇದಿ" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" @@ -6344,9 +6643,6 @@ msgstr "ಹಾಳೆ&ಯನ್ನುಮುಚ್ಚು" #~ msgid "Decrease Text Size" #~ msgstr "ಪಠ್ಯ ಗಾತ್ರವನ್ನು ಕಡಿಮೆ ಮಾಡು" -#~ msgid "Search Output..." -#~ msgstr "ಪ್ರದಾನವನ್ನು ಹುಡುಕು..." - #~ msgid "Find Next" #~ msgstr "ಮುಂದಕ್ಕೆ ಹುಡುಕು" diff --git a/local/recipes/kde/konsole/source/po/ko/konsole.po b/local/recipes/kde/konsole/source/po/ko/konsole.po index c4d2d97673..69e5ee26f4 100644 --- a/local/recipes/kde/konsole/source/po/ko/konsole.po +++ b/local/recipes/kde/konsole/source/po/ko/konsole.po @@ -1,7 +1,7 @@ # Translation of konsole.po to Korean. # Copyright (C) 2001, 2002, 2007-2008 Free Software Foundation, Inc. # Sae-keun Kim , 2001. -# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Shinjo Park +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Shinjo Park # Minori Hiraoka , 2018. # JungHee Lee , 2021. # @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-19 23:50+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-04-26 22:14+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -52,7 +52,7 @@ msgstr "보기" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "보기 나누기" @@ -88,7 +88,7 @@ msgid "S&crollback" msgstr "스크롤백(&C)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "세션 도구 모음" @@ -170,46 +170,58 @@ msgstr "기본 설정을 무시하고 메뉴 표시줄 숨기기" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "기본 설정을 무시하고 모든 도구 모음 표시" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "기본 설정을 무시하고 모든 도구 모음 숨기기" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "기본 설정을 무시하고 탭 표시줄 표시" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "기본 설정을 무시하고 탭 표시줄 숨기기" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole을 전체 화면에서 시작하기" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "시스템이 지원하더라도 투명한 배경을 사용하지 않습니다." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "모든 세션 프로필 목록을 표시합니다" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "모든 프로필 속성 이름과 종류를 표시합니다 (-p와 같이 사용)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "프로필 속성의 값을 변경합니다." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -219,7 +231,7 @@ msgstr "" "실행할 명령입니다. 이 옵션을 사용하면 뒤따르는 모든 인자를 명령의 일부로 간주" "하므로 마지막 인자로 사용하십시오." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,13 +241,13 @@ msgstr "" "기능에 문제가 생긴다 하더라도 기존 인스턴스를 강제로 사용합니다(예: --new-" "tab). 디버그용 기능입니다." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "명령행 인자" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -253,157 +265,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "글자색" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "배경색" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "색상 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "색상 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "색상 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "색상 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "색상 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "색상 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "색상 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "색상 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "글자색(강조)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "배경색(강조)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "색상 1(강조)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "색상 2(강조)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "색상 3(강조)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "색상 4(강조)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "색상 5(강조)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "색상 6(강조)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "색상 7(강조)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "색상 8(강조)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "글자색(어두움)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "배경색(어두움)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "색상 1(어두움)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "색상 2(어두움)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "색상 3(어두움)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "색상 4(어두움)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "색상 5(어두움)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "색상 6(어두움)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "색상 7(어두움)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "색상 8(어두움)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -658,6 +670,39 @@ msgstr "위" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "호스트" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Konsole이 Flatpak 내에서 실행 중일 때에는 컨테이너 지원을 사용할 수 없습니다." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [기본값]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -702,7 +747,7 @@ msgstr "" msgid "Copy Location" msgstr "위치 복사" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "섬네일 생성 중" @@ -733,13 +778,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "글꼴 선택" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "모든 글꼴 표시" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -779,17 +824,17 @@ msgstr "키 조합" msgid "Output" msgstr "출력" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "새 키 바인딩 목록" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "키 바인딩 목록 편집" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "키 바인딩 배열 설명을 비워 둘 수 없습니다." @@ -797,7 +842,7 @@ msgstr "키 바인딩 배열 설명을 비워 둘 수 없습니다." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -831,225 +876,225 @@ msgstr "입력:" msgid "Output:" msgstr "출력:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "터미널 에뮬레이터" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, The Konsole Developers" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "일반 관리자, 버그 수정과 개선" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "이전 관리자, KDE 4 포팅" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "원 작성자" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "주요 리팩토링, 버그 수정 및 주요 개선" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "버그 수정과 개선" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "버그 수정 및 주요 개선" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "일반적인 개선" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "버그 수정" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "솔라리스 지원과 과거 기록" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "버그 수정과 향상된 시작 속도" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "버그 수정과 개선" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1059,13 +1104,13 @@ msgstr "" "임베디드 Konsole\n" "도구 모음과 세션 이름" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1075,25 +1120,25 @@ msgstr "" "임베디드 Konsole\n" "일반적인 개선" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "시각 효과" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1103,132 +1148,132 @@ msgstr "" "kvt 프로젝트에서의 코드\n" "일반적인 개선사항" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "스키마 및 텍스트 선택 개선" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI 포팅" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD 포팅" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "이 외의 많은 사람들에게 감사드립니다.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "새 탭(&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "탭 복제(&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "새 창(&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "창 닫기" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "책갈피(&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "창 색 구성표(&W)" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "프로필 관리..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "메뉴 활성화" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "탭 레이아웃 저장..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "탭 레이아웃 불러오기..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1236,67 +1281,67 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "현재 창에 프로세스 %1개가 실행 중입니다. 종료하시겠습니까?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "닫기 확인" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "창 닫기(&W)" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "현재 탭 닫기(&T)" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "현재 창에 터미널 %1개가 열려 있습니다. 종료하시겠습니까?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "프로필" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "일반" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "메모리" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "탭 표시줄/구분자" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "임시 파일" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "섬네일" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1380,7 +1425,7 @@ msgstr "저장" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "업데이트" @@ -1392,27 +1437,27 @@ msgid "Cancel" msgstr "취소" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "빠른 명령" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "빠른 접근 표시" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "빠른 명령이 없습니다. 플러그인 -> 빠른 명령에서 추가하십시오" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "플러그인 - 빠른 명령" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "빠른 명령 표시" @@ -1454,7 +1499,7 @@ msgstr "" "삭제하려고 합니다. 계속 진행하시겠습니까?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "%1을(를) 삭제하려고 합니다. 계속 진행하시겠습니까?" @@ -1507,11 +1552,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1은(는) SSH 항목의 폴더임" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH 설정" @@ -1570,24 +1615,24 @@ msgid "" msgstr "셸 앱(예: bash, zsh, sh) 외부에서 SSH 명령을 전달할 수 없음" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH 키" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "삭제" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "바꾸지 않기" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1596,68 +1641,68 @@ msgstr "" "SSH 설정 여러 개가 들어 있는 폴더 %1을(를)\n" "삭제하려고 합니다. 계속 진행하시겠습니까?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH 설정 삭제" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "SSH 프로필 가져옴
            일부 설정은 읽기 전용입니다." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "호스트 이름이 지정되지 않았음" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "이름이 지정되지 않았음" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "SSH 설정 사용을 선택했으면 SSH 키나 사용자 이름을 지정하지 마십시오." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "최소한 사용자 이름이나 SSH 키를 설정해야 함" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "폴더가 없음" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH 세션에는 프로필을 지정해야 함" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "이 폴더를 삭제할 수 없음" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "폴더와 그 모든 내용 삭제" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "폴더 이름을 바꾸려면 두 번 클릭하십시오." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "자동으로 추가된 항목을 삭제할 수 없습니다." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "선택한 항목 삭제" @@ -1849,25 +1894,25 @@ msgstr "출력 옵션" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "프린터 친화 모드 (검은 텍스트, 배경색 없음)(&F)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "출력 크기 조정(&S)" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "내장" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "기본 프로필" @@ -1926,19 +1971,41 @@ msgstr "단축키를 바꾸려면 두 번 클릭하십시오" msgid "Tab Properties" msgstr "탭 속성" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1에서의 출력 저장" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" "%1이(가) 잘못된 URL이므로 출력을 저장할 수 없습니다.|/|%1$[이가 %1] 잘못된 " "URL이므로 출력을 저장할 수 없습니다." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "%1에 자동 저장 파일을 만들 수 없습니다." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "화면이 전환되어 자동 저장이 중지되었습니다." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"자동 저장 파일이 외부에서 수정되었습니다. 더 이상 자동으로 저장하지 않습니다." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "출력 변경 시 자동 저장 상태를 업데이트할 수 없습니다." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1974,81 +2041,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "캠벨" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "어두운 파스텔" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "검정색에 녹색" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "리눅스 색상" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "검정색에 빨간색" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "반짝임" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "가벼운 반짝임" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "검정색에 흰색" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "기본값(XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "리눅스 콘솔" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "솔라리스 콘솔" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "검색..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "검색할 탭 이름 문자열 입력" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "'%1'에서 알림(세션 '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "바이너리를 찾을 수 없음: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "경고: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "시작할 인터랙티브 셸을 찾을 수 없습니다." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2057,364 +2141,367 @@ msgstr "" "'%1'을(를) 찾을 수 없어서 '%2'을(를) 대신 시작합니다. 프로필 설정을 확인하십" "시오." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "프로그램 '%1'을(를) 인자 '%2'을(를) 사용하여 시작할 수 없습니다." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "'%1'에서 응답 없음(세션 '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "세션 표시" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" -"D-Bus 메서드 sendText/runCommand를 사용했습니다. 이 메서드를 공개하는 것에 대" -"한 보안 문제가 제기되었습니다. 필요한 경우 Konsole을 다시 컴파일하여 이 메서" -"드를 내부에서만 사용할 수 있도록 변경할 수 있습니다.

            이 경고는 Konsole 인스" -"턴스에서 한 번만 표시됩니다.

            " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "완료됨" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "" "프로그램 '%1'이(가) 충돌했습니다.|/|프로그램 '%1'$[이가 %1] 충돌했습니다." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" "프로그램 '%1'이(가) 상태 %2(으)로 끝났습니다.|/|프로그램 '%1'$[이가 %1] 상태 " "%2$[으 %2]로 끝났습니다." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem 진행 상황" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "'%1'의 활동(세션 '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "보안에 민감한 DBus API가 비활성화되어 있습니다." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "세션 '%2'에서 실행 중인 '%1' 프로세스가 종료됨" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole에서 책갈피를 여는 방법을 알 수 없습니다: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "다음에서 '%1' 검색" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "웹 바로 가기 설정..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "세션 닫기(&C)" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "파일 관리자 열기" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "복사" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "왼쪽/오른쪽으로 보기 나누기" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "위/아래로 보기 나누기" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "프롬프트 제외 복사" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "사용자 입력 복사" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "명령 출력 복사" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "선택 붙여넣기" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "웹 검색" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "모두 선택(&S)" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "선택 모드(&M)" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "줄 선택(&L)" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "출력 저장(&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "자동으로 다른 이름으로 출력 저장..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "자동 저장 정지" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "화면 인쇄(&P)..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "스크롤백 설정..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "스크롤백 삭제" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "스크롤백 지우고 초기화" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "다음 프로필" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "이전 프로필" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "프로필 전환" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "인코딩 설정(&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "마우스 추적 허용" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "읽기 전용" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "탭 설정 및 이름 바꾸기(&C)..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "현재 창의 모든 탭(&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "선택한 탭(&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "없음(&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "입력을 다음으로 복사하기" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ZModem 업로드(&Z)..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "한 번 실행되는 모니터" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "프롬프트 지켜보기(&P)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "활동 상태 지켜보기(&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "응답 없는 상태 지켜보기(&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "프로세스 완료 지켜보기" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "글꼴 크기 확대" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "글꼴 크기 축소" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "글꼴 크기 초기화" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "시그널 보내기" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "작업 중단(&S)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "작업 계속(&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "행업(&H)" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "작업 인터럽트(&I)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "작업 종료(&T)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "작업 죽이기(&K)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "사용자 시그널 1(&1)" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "사용자 시그널 2(&2)" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "새 프로필 만들기..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "현재 프로필 편집..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "이 세션에서 프로그램이 실행 중입니다. 종료하시겠습니까?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "이 세션에서 프로그램 '%1'이(가) 실행 중입니다. 닫으시겠습니까?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "닫기 확인" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "프로그램 닫기" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2422,37 +2509,37 @@ msgid "" msgstr "" "이 세션에서 실행 중인 프로그램이 죽지 않습니다. 강제로 종료하시겠습니까?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "이 세션에서 실행 중인 프로그램 '%1'이(가) 죽지 않습니다. 강제로 종료하시겠습" "니까?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "프로그램 죽이기" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "세션 '%1'에서 셸 프롬프트가 표시됨" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "다음으로 현재 폴더 열기" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "다른 이름으로 ZModem 다운로드 저장..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2463,13 +2550,13 @@ msgstr "" "웨어를 찾을 수 없습니다.

            'rzsz' 또는 'lrzsz' 패키지를 설치해 보십시오." "

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "

            현재 세션에서 ZModem 파일 전송이 진행 중입니다.

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2478,7 +2565,7 @@ msgstr "" "

            시스템에서 ZModem 소프트웨어를 찾을 수 없습니다.

            'rzsz' 또는 " "'lrzsz' 패키지를 설치해 보십시오.

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem으로 업로드할 파일 선택" @@ -2501,144 +2588,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "설정" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "검색:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "메뉴 가속기 키 사용하기" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "선택하면 프로필 설정을 무시합니다" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "창 크기 기억" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "제목 표시줄에 창 제목 표시" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "마우스 포인터가 위에 있을 때 터미널에 포커스 맞추기" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "정규 표현식 일치" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "사용 가능한 경우 Konsole을 실행할 때 프로세스 재사용" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "모든 Konsole 창을 단일 프로세스로 실행" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "모두 강조" +msgid "If enabled, profile settings will be ignored" +msgstr "선택하면 프로필 설정을 무시합니다" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "검색할 텍스트의 대소문자를 구분할지 선택합니다" +msgid "Remember window size" +msgstr "창 크기 기억" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "대소문자 구분" +msgid "Force new tabs" +msgstr "새 탭 강제" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "창 제목 표시줄과 프레임 숨기기" +msgid "Listen for ZModem terminal codes" +msgstr "ZModem 터미널 코드 듣기" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "프로세스와 창:" +msgid "Show progress in taskbar" +msgstr "작업 표시줄에 진행 상황 표시" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "알림:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "모든 대화 상자를 다시 표시합니다" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "모든 \"다시 묻지 않음\" 메시지 활성화" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "검색을 맨 밑에서부터 시작할지 여부" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "뒤로 검색" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "검색할 텍스트의 대소문자를 구분할지 선택합니다" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "대소문자 구분" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "프로세스와 창:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "모두 강조" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "검색:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "검색을 원점에서 다시 시작하는 대신 중지할지 여부" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "다시 시작하지 않음" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "메뉴 가속기 키 사용하기" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "마우스 포인터가 위에 있을 때 터미널에 포커스 맞추기" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "모든 대화 상자를 다시 표시합니다" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "모든 \"다시 묻지 않음\" 메시지 활성화" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "제목 표시줄에 창 제목 표시" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "보안에 민감한 DBus API 활성화" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "창 제목 표시줄과 프레임 숨기기" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "정규 표현식 일치" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2663,71 +2776,109 @@ msgstr "다음 시작 시 현재 창 크기 사용" msgid "The window size will be saved upon exiting Konsole" msgstr "Konsole을 끝낼 때 창 크기를 저장합니다" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "사용 가능한 경우 새 Konsole 창을 열지 않고 새 탭 생성" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "작업 표시줄에 진행 상황 표시" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "스크립트에서 진행 상황을 보고하면 작업 표시줄에 표시" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "runCommand와 같은 DBus API가 활성화됨" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "ZModem 터미널 코드 듣기" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "자동으로 직렬 연결을 통해서 파일 보내고 받기" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "섬네일 너비" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "섬네일 너비 설정" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Shift 키를 눌러서 섬네일 표시" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Alt 키를 눌러서 섬네일 표시" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Ctrl 키를 눌러서 섬네일 표시" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "검색 시 대소문자 구분" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "모든 검색 결과 강조" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "일치하는 텍스트가 강조될 지 설정합니다" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "검색을 다시 시작하지 않고 중지함" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "개별 탭별로 자식 cgroup 생성 여부 설정" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2735,91 +2886,97 @@ msgstr "스로틀링을 시작할 메모리 사용량 설정" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "전체 탭 표시줄 표시 여부 결정" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "패널 사이의 손잡이 크기 조정" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "탭 표시줄 위치 결정" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "탭 표시줄 시각 스타일 결정" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "탭 표시줄에 사용자 정의 .css 파일 사용" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "탭 표시줄 스타일에 사용할 .css 파일" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "열린 탭을 가운데 단추로 클릭했을 때 닫기 허용" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "탭 표시줄의 '새 탭' 단추 표시 설정" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "탭 표시줄의 '탭 검색' 단추 표시 설정" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "\"탭 닫기\" 단추를 표시할 위치 설정" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "새 탭의 위치 결정" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "탭 너비 확장" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "스크롤백 파일에 시스템 전역 위치 사용" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "스크롤백 파일에 사용자 정의 위치 사용" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "스크롤백 파일에 지정한 폴더 위치 사용" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "스크롤백 파일에 다음 폴더 사용" @@ -2831,31 +2988,29 @@ msgid "Enable memory monitoring:" msgstr "메모리 모니터링 활성화:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" -"변경 사항은 다시 시작한 후에 적용됩니다. 이 옵션을 사용하면 Konsole에서\n" -"메모리 사용량이 지정한 값을 초과할 때 systemd-oomd에 메모리를 많이 사용하는\n" -"프로세스를 강제 종료하도록 지시합니다. 메모: 이 옵션을 활성화하면\n" -"큰 용량의 메모리를 사용할 때 더 느려질 수도 있으며 너무 낮은 값을 지정하면\n" -"Konsole이 예상하지 못하게 종료될 수도 있습니다." +"변경 사항은 다시 시작한 후에 적용됩니다. 이 옵션을 사용하면 Konsole에서 메모" +"리 사용량이 지정한 값을 초과할 때 systemd-oomd에 메모리를 많이 사용하는 프로" +"세스를 강제 종료하도록 지시합니다. 메모: 이 옵션을 활성화하면 큰 용량의 메모" +"리를 사용할 때 더 느려질 수도 있으며 너무 낮은 값을 지정하면 Konsole이 예상하" +"지 못하게 종료될 수도 있습니다." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "메모리 제한:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3013,125 +3168,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "없음" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "탭 검색 단추 표시:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "항상" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "하지 않음" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "기타:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "'새 탭' 단추 표시" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "개별 탭 너비를 전체 창으로 확장" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "사용자 정의 스타일시트 사용:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(없음)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "행동" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "새 탭 위치:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "맨 끝에(&T)" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "현재 탭 뒤에(&T)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "가운데 단추를 클릭했을 때 탭 닫기" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "분할" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "머리글 표시:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "필요할 때" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "하지 않음" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "드래그 핸들 크기:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "작게" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "중간" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "크게" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3183,12 +3356,12 @@ msgstr "픽셀" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" "

            이 기능을 사용하려면 프로필 설정에서 마우스->기타->파일에 밑줄 긋기를 활성화해야 합니다

            " +"font-weight:600;\">마우스->기타->파일에 밑줄 긋기를 활성화해야 " +"합니다.

            " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3226,63 +3399,63 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "섬네일 생성 활성화" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "크기: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "%1글자를 붙여 넣으시겠습니까?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "붙여넣기 확인" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "텍스트 끝/인터럽트: 현재 프로세스를 종료할 수도 있음" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "전송 끝: 현재 프로세스를 종료할 수도 있음" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "벨: 들을 수 있는 경고 전송 시도" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "백스페이스" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "장치 제어 3(DC3)/XOFF: 출력 일시 정지" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "대체/정지: 현재 프로세스 일시 정지" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "이스케이프: 터미널 상태 변경에 사용" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "파일 구분자/끝내기: 현재 프로세스를 종료할 수도 있음" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3291,31 +3464,31 @@ msgstr "" "붙여넣을 텍스트에 숨겨져 있는 제어 문자가 들어 있습니다. 해당 문자를 제거하시" "겠습니까?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "붙여넣기 확인" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "제어 문자를 제외하고 붙여넣기(&W)" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "모두 붙여넣기(&P)" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "취소(&C)" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been 중단되었습니다. Ctrl+Q 키를 눌러서 다시 시" "작하십시오." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "이 터미널은 읽기 전용입니다." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "다음으로 디렉터리 변경(&D)" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "붙여넣을 위치(&P)" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "보기 나누기" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "왼쪽/오른쪽으로 보기 나누기" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "위/아래로 보기 나누기" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "자동으로 보기 나누기" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "다음 탭부터 왼쪽/오른쪽으로 보기 나누기" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "다음 탭부터 위/아래로 보기 나누기" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "다음 탭부터 자동으로 보기 나누기" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "2x2 터미널 레이아웃이 있는 새 탭 불러오기" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "2x1 터미널 레이아웃이 있는 새 탭 불러오기" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "1x2 터미널 레이아웃이 있는 새 탭 불러오기" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "보기 확대" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "보기 축소" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "현재 보기 떼내기(&V)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "현재 탭 떼내기(&T)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "다음 탭" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "이전 탭" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "위쪽 터미널에 포커스" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "아래쪽 터미널에 포커스" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "왼쪽 터미널에 포커스" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "오른쪽 터미널에 포커스" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "다음 터미널에 포커스" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "이전 터미널에 포커스" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "마지막 탭으로 전환" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "마지막으로 사용한 탭" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "두 탭간 전환" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "마지막으로 사용한 탭(역순)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "현재 보기 최대화 전환" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "현재 보기 최소화 전환" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "현재 보기 최대화 전환" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "현재 보기 최소화 전환" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "탭 오른쪽으로 이동" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "탭 왼쪽으로 이동" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "시맨틱 통합 설정(bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "시맨틱 힌트 표시 전환" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "줄 번호 표시 전환" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "모든 보기 크기 통일" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "탭 %1(으)로 전환" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "시맨틱 힌트 " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "줄 번호 " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "탭 레이아웃 저장" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole 보기 레이아웃 (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3583,7 +3768,7 @@ msgstr "" "레이아웃을 저장하는 중 문제가 발생했습니다.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3593,13 +3778,13 @@ msgstr "" "레이아웃을 불러오는 중 문제가 발생했습니다.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "탭 레이아웃 불러오기" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3697,28 +3882,40 @@ msgstr "기본 문자 인코딩(&D):" msgid "Shortcut for peeking the primary screen:" msgstr "주 화면을 엿보는 단축키:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "자동 저장 간격:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "밀리초" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "줄 번호:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "사용 안 함(&N)" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "URL 힌트 표시(&U)" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3754,7 +3951,7 @@ msgstr "선택한 색 구성표를 편집합니다" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3808,12 +4005,18 @@ msgstr "진한 글꼴에 강조색 넣기" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "내장 코드가 아닌 선택한 글꼴에 포함된 괘선 문자 사용" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "글꼴에 포함된 괘선 문자 사용" @@ -3932,29 +4135,43 @@ msgid "Make the cursor blink regularly" msgstr "주기적으로 커서를 깜빡이게 합니다" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "사용함" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "애니메이션:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "커서 깜빡임을 부드럽게 만들기" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "기타" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "창:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3962,144 +4179,144 @@ msgid "" msgstr "창 크기를 조정한 후 터미널 크기를 가로 및 세로 글자 수로 표시" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "창 크기를 조정한 후 터미널 크기 힌트 표시" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "항상 선택한 텍스트의 색상 반전" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "어둡게 하기 강도:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "색상:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "경계선을 그릴 색상을 선택하십시오" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "비활성 터미널:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "활성 터미널:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "터미널 내용" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "줄 간격:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "두 줄 사이의 픽셀 단위 간격" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "픽셀" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "여백:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "가운데 정렬:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "창 활성화 여부를 색을 어둡게 하여 나타내기" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "어둡게" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "창 활성화 여부를 색을 경계선을 그려서 나타내기" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "경계선" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "다음 열에 수직선 표시:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "

            복합 텍스트 레이아웃

            " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "복합 텍스트 레이아웃" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "단어 모드 텍스트 렌더링 활성화" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "단어 모드" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4109,43 +4326,43 @@ msgstr "" "를 자름)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "전체 단어에 같은 속성 사용" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "ASCII 글자 단어를 같이 렌더" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII 글자" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "브라흐미 문자 글자 단어를 같이 렌더" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "브라흐미 문자 글자" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "이모지 글꼴:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4154,95 +4371,95 @@ msgstr "" "아랍어, 페르시아어, 히브리어 등에 필요한 양방향 디스플레이를 활성화합니다." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "양방향 텍스트 렌더링" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "첫 강조 문자로 결정하지 않고 줄은 항상 LTR임" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "강제 LTR 줄 방향 사용" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "표 그리기 문자를 강한 LTR로 간주합니다." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "표 문자 BiDi 모드 재정의" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "문제가 되는 글자의 wcwidth 무시" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "wcwidth 재정의" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "프로필 편집" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "일반" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "탭" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "모양" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "스크롤" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "키보드" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "키 바인딩" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "마우스" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "고급" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4254,47 +4471,52 @@ msgstr "" "파일의 권한을 바꾸거나, 프로필 이름을 변경해 새로운 프로필 설정 파일에 저장하" "십시오." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "프로필 이름이 비어 있습니다. 설정을 저장할 이름을 설정하십시오." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "이름이 \"%1\"인 프로필이 이미 존재합니다." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "프로필 이름이 최대 허용된 길이를 초과합니다(%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "프로필 이름에 강조된 글자를 사용할 수 없습니다: %1" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "프로필 %1개 편집: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "새 프로필 만들기" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" 프로필 편집" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "없음" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4303,7 +4525,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "열" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4312,65 +4534,65 @@ msgid " row" msgid_plural " rows" msgstr[0] "행" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "시스템 벨" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "시스템 알림:" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "벨 시각화" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "벨 이벤트 무시" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "%1의 새 터미널 세션의 기본 프로필" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "환경 편집" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "한 줄에 환경 변수 하나씩" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] "초" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "초기 디렉터리 선택" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "새 항목 가져오기..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "배열 %1을(를) 불러올 수 없습니다." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4379,7 +4601,7 @@ msgstr "" "이 색 구성표는 현재 데스크톱 환경에서 지원하지 않는 투명 배경을 사용하고 있습" "니다" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4388,12 +4610,12 @@ msgstr "" "데스크톱 효과를 활성화하기 전에 Konsole을 시작했습니다. 투명한 배경을 보려면 " "Konsole을 다시 시작해야 합니다." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "파일 형식 기본값" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4421,7 +4643,7 @@ msgstr "" "PATH 또는 LINE이 명령에 없으면, 이 설정을 무시하고 \n" "기본 텍스트 편집기로 파일을 엽니다." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "텍스트 편집기 사용자 정의 명령" @@ -4508,26 +4730,55 @@ msgstr "초기 디렉터리 선택" msgid "Start in same directory as current session" msgstr "현재 세션과 같은 디렉터리에서 시작하기" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"새 탭을 열거나 보기를 분할할 때 현재 세션과 같은 컨테이너(Toolbox, Distrobox)" +"로 자동으로 진입" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "현재 세션과 같은 컨테이너로 들어가기" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "항상 컨테이너에서 시작:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "이 프로필을 사용하는 새 세션을 항상 선택한 컨테이너 내에서 시작" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "환경:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "환경 변수와 값 목록 편집" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "초기 터미널 크기(&Z):" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4540,31 +4791,31 @@ msgstr "" "body>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "터미널 벨 모드(&T):" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "시맨틱 통합" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "위/아래 화살표 에뮬레이션" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "입력 줄에 마우스 클릭 시 커서 이동" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "시맨틱 힌트:" @@ -4574,9 +4825,9 @@ msgstr "시맨틱 힌트:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4587,9 +4838,9 @@ msgstr "하지 않음" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4600,34 +4851,34 @@ msgstr "URL 힌트 표시" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "항상" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "빨간 오류 표시줄:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "빨간 오류 배경:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "전환되는 표시줄:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "전환되는 배경:" @@ -4971,115 +5222,127 @@ msgid "Scrollback:" msgstr "스크롤백:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "한 쪽 위/아래 스크롤:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "보기에 새로 출력되는 줄 구문 강조" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "%" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "숨겨짐" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "각각 마커의 크기(스크롤바 크기의 백분율):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "구문 강조:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "창의 절반만큼 쪽 스크롤" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "화면 높이의 절반(&T)" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "스크롤바 마커 색상:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "스크롤바 검색 강조 줄 색상:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "줄 리플로:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "전체 창 높이만큼 쪽 스크롤" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "전체 화면 높이(&U)" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "스크롤바 위치:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "터미널 창 오른쪽에 스크롤 바 표시" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "오른쪽(&G)" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "터미널 창 왼쪽에 스크롤 바 표시" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "왼쪽(&L)" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "숨겨짐" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "구문 강조:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "보기에 새로 출력되는 줄 구문 강조" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "줄 리플로:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "터미널 크기 조정 시 줄 리플로" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "스크롤바 마커 색상:" +msgid "Scrollbar position:" +msgstr "스크롤바 위치:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "각각 마커의 크기(스크롤바 크기의 백분율):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "%" +msgid "Search highlighting line opacity:" +msgstr "검색 강조 줄 불투명도:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5182,37 +5445,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "없음(&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "찾기..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "검색할 문자열 입력" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "다음" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "다음에 나오는 현재 검색 문자열 찾기" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "이전" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5220,77 +5483,77 @@ msgstr "이전에 나오는 현재 검색 문자열 찾기" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "옵션 메뉴 표시" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "검색 표시줄 닫기" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "대소문자 구분" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "검색할 텍스트의 대소문자 구분 여부 설정" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "옵션 메뉴 표시" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "검색 표시줄 닫기" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "정규 표현식 일치" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "모두 강조" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "일치하는 문자열 강조 여부 설정" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "뒤로 검색" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "검색을 맨 밑에서부터 시작할지 여부" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "다시 시작하지 않음" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "검색을 원점에서 다시 시작하는 대신 중지할지 여부" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "현재 검색 문자열을 맨 밑에서부터 검색" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5301,7 +5564,7 @@ msgstr "현재 검색 문자열을 맨 위에서부터 검색" msgid "Print Shell" msgstr "셸 인쇄" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5340,6 +5603,12 @@ msgstr "일반 탭 제목 형식" msgid "Tab Co&lor:" msgstr "탭 색상(&L):" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "활동이 있는 탭 색상(&A):" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5433,36 +5702,63 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "터미널 복원" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "새 탭 열기" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "탭 검색" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "이 탭 닫기" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "탭 떼내기(&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "탭 설정 및 이름 바꾸기(&C)..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "탭 닫기" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

            This warning will only show once for this Konsole instance.

            " +#~ msgstr "" +#~ "D-Bus 메서드 sendText/runCommand를 사용했습니다. 이 메서드를 공개하는 것" +#~ "에 대한 보안 문제가 제기되었습니다. 필요한 경우 Konsole을 다시 컴파일하여 " +#~ "이 메서드를 내부에서만 사용할 수 있도록 변경할 수 있습니다.

            이 경고는 " +#~ "Konsole 인스턴스에서 한 번만 표시됩니다.

            " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "대소문자 구분" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "없음" diff --git a/local/recipes/kde/konsole/source/po/ku/konsole.po b/local/recipes/kde/konsole/source/po/ku/konsole.po index 9860f3a1d6..a485210af3 100644 --- a/local/recipes/kde/konsole/source/po/ku/konsole.po +++ b/local/recipes/kde/konsole/source/po/ku/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2009-01-06 02:14+0200\n" "Last-Translator: Omer Ensari \n" "Language-Team: Kurdish \n" @@ -51,7 +51,7 @@ msgstr "Bibîne" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dîmena Par Kirî" @@ -88,7 +88,7 @@ msgid "S&crollback" msgstr "Paşveçûn Tune Ye" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session number" msgid "Session Toolbar" @@ -170,47 +170,59 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Profîlên heyî rêz bike" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -218,7 +230,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -226,13 +238,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -253,217 +265,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Dîmena-pêş" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Rûerd" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Rengê 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Rengê 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Rengê 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Rengê 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Rengê 5 " -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Rengê 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Rengê 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Rengê 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Dîmena-pêş (Tîr)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Rûerd (Tîr)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Reng 1 (Tîr)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Reng 2 (Tîr)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Reng 3 (Tîr)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Reng 4 (Tîr)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Reng 5 (Tîr)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Reng 6 (Tîr)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Reng 7 (Tîr)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Reng 8 (Tîr)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Dîmena-pêş (Tîr)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Rûerd (Tîr)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Reng 1 (Tîr)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Reng 2 (Tîr)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Reng 3 (Tîr)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Reng 4 (Tîr)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Reng 5 (Tîr)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Reng 6 (Tîr)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Reng 7 (Tîr)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Reng 8 (Tîr)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -733,6 +745,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Mêvandar:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "Wekî Standard Ava Bike" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -777,7 +823,7 @@ msgstr "" msgid "Copy Location" msgstr "Ketanê Ji Ber Bigire Jê..." -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -809,13 +855,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Font Biguherîne..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -853,17 +899,17 @@ msgstr "" msgid "Output" msgstr "Anîn" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Lîsteya Kurterê yan yê Nû" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Lîsteya Kurterê yan Biguherîne" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -871,7 +917,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -905,239 +951,239 @@ msgstr "Têketin:" msgid "Output:" msgstr "Anîn:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Emûlatorê Termînalê" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Emûlatorê Termînalê" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Piştgiriya Solaris û dîrok" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1145,14 +1191,14 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1160,27 +1206,27 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1188,149 +1234,149 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "Porta SGI" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Porta FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Ji gelek kesên din re spas.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Hi&pekîna Nû" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Hilpekînê &Bigire" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Paceya Nû" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Bijare" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Şemaya Rengan yê Nû" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profîlan Bi Rê Ve Bibe" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1343,28 +1389,28 @@ msgstr[0] "" msgstr[1] "" "Di vê pace yê de yekê zêdetir hilpekîn hene, tu dîsa jî dixwazî derkevî?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Girtinê Bipejirîne" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Vê Hilpekînê Bigire" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1373,45 +1419,45 @@ msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Di vê pace yê de yekê zêdetir hilpekîn hene, tu dîsa jî dixwazî derkevî?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profîla Nû" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Giştî" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1502,7 +1548,7 @@ msgstr "Lînkê Veke" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1514,29 +1560,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Ferman:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Ferman:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1579,7 +1625,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1637,11 +1683,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1704,92 +1750,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1992,25 +2038,25 @@ msgstr "Anîn" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2074,17 +2120,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 URL ya ne-derbasdar e, deran nayê tomar kirin." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2119,84 +2186,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Kesk di Reş de" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Rengên Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Spî ser Reş" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Spî ser Reş" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standard (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Konsola Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Konsola Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Lê Deranê Bigere..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Nivîsê ji bo lêgerînê binivîse li vir" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Di danişîna '%1' de zengil" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nikare pela-cot bibîne:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Hişyarî: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nikare shell a înteraktîf bibîne û bide destpê kirin." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2205,426 +2291,434 @@ msgstr "" "Nikare '%1' bibîne, şûna vê '%2' destpê dike. Jê kerema xwe mîhengên profîla " "xwe kontrol bike." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nikare bernameya '%1' bi sedema '%2' re bide destpêkirin." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Di danişîna '%1' de bêdengî" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Bi Dawî Bû" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Bernameya '%1' têk çû." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Bernameya '%1' bi rewşa %2 re derket." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Pêşketina ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Di danişîna '%1' de çalakî" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Profîlan Bi Rê Ve Bibe..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "Ji&bergirtin" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Dîtinê wekî Çep/Rast Par Bike" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Dîtinê Wekî Jor/Jêr Par Bike" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Ketanê Ji Ber Bigire" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Ketanê Ji Ber Bigire" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Hilbijartinê Pê Ve Bike" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Hemûyan Hilbijêre " -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Hilbijartin" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Hilbijartin" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "Deranê Tomar Bike..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "Deranê Tomar Bike..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Profîlan Bi Rê Ve Bibe..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Clear && Reset" msgid "Clear Scrollback" msgstr "Paqij Bike && Vegere Nirxên Destpêkê" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear && Reset" msgid "Clear Scrollback and Reset" msgstr "Paqij Bike && Vegere Nirxên Destpêkê" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Jînname yê Biguherîne" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Dîmena Paş Ve" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Jînname yê Biguherîne" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Şîfre kirin" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Navê Hilpekînê Biguherîne..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "&Navê Hilpekînê Biguherîne..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Copy Input To..." msgid "Copy Input To" msgstr "Ketanê Ji Ber Bigire Jê..." -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Monîtor ji bo &Çalakiyan" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monîtor ji bo &Çalakiyan" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monîtor ji bo &Bêdengî yê" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Monîtor ji bo &Çalakiyan" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Mezinahiya Nivîsê Zêdetir Bike" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "Hilpekînê &Bigire" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Taybetiyên Termînalê" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Profîla Nû..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Profîla Heyî Biguherîne..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Girtinê Bipejirîne" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "Hilpekînê &Bigire" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2632,20 +2726,20 @@ msgid "" "or 'lrzsz' package.

            " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " "to install the 'rzsz' or 'lrzsz' package.

            " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2671,149 +2765,176 @@ msgctxt "@title:window" msgid "Configure" msgstr "Girtinê Bipejirîne" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Hemûyan balkêş bike" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "Veava dike ku lêgerîn bi tîpên biçûk û mezin bihîstyar be an na" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "Ya Aktîf Bigire" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Nivîsara hilpekîna nû binivîse:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "Veava dike ku lêgerîn bi tîpên biçûk û mezin bihîstyar be an na" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "Ya Aktîf Bigire" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Hemûyan balkêş bike" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Hevgirtina pêş bibîne ji bo peyva lêgerîna heyî" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2838,74 +2959,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "Veava dike ku lêgerîn bi tîpên biçûk û mezin bihîstyar be an na" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Hemûyan balkêş bike" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Veava dike ku nivîsa hevgirtî divê bê dîyar kirin an na" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2913,91 +3072,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3009,26 +3174,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3195,16 +3358,35 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "Hilpekînê &Bigire" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" @@ -3213,93 +3395,93 @@ msgstr "" "bide" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Nivîsara hilpekîna nû binivîse:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Vê Hilpekînê Bigire" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Dîmena Par Kirî" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Darikê Pêşekê Nîşan Bide" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3307,14 +3489,14 @@ msgid "Small" msgstr "Biçûk" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3322,7 +3504,7 @@ msgid "Large" msgstr "Mezin" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3375,8 +3557,8 @@ msgstr "" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3416,98 +3598,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Mezinahî: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Girtinê Bipejirîne" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Girtinê Bipejirîne" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Hilbijartinê Pê Ve Bike" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Hilbijartinê Pê Ve Bike" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Dîmena Par Kirî" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dîtinê wekî Çep/Rast Par Bike" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dîtinê Wekî Jor/Jêr Par Bike" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3558,7 +3740,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dîtinê Wekî Jor/Jêr Par Bike" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3566,7 +3748,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dîtinê wekî Çep/Rast Par Bike" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3574,7 +3756,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dîtinê Wekî Jor/Jêr Par Bike" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3582,206 +3764,220 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dîtinê Wekî Jor/Jêr Par Bike" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Vê Hilpekînê Bigire" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Vê Hilpekînê Bigire" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Hi&pekîna Nû" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Paş ve" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Nîşandanên Jora Termînalê" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Nîşandanên Jêra Termînalê" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Nîşandanên Jora Termînalê" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Nîşandanên Jêra Termînalê" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Biçe Hilpekîna %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Biçe Hilpekîna %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Remote Connection" msgid "Semantic hints " msgstr "Girêdana Dûr re" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3789,7 +3985,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3797,13 +3993,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3901,29 +4097,41 @@ msgstr "Kodkirina tîpan ya standard:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session number" msgid "Line Numbers:" msgstr "Hejmara danişînê" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3961,7 +4169,7 @@ msgstr "Şemaya rengan yê hilbijartî biguherîne" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4018,12 +4226,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4150,30 +4364,45 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "Rave:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Pace" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4181,25 +4410,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4207,28 +4436,28 @@ msgid "Color:" msgstr "Reng" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Change the font used in this profile" msgid "Select the color used to draw the border" msgstr "Teşeyê nivîsê ya vê profîlê biguherîne" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "Taybetiyên Termînalê" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "Taybetiyên Termînalê" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4236,94 +4465,94 @@ msgid "Terminal contents" msgstr "Taybetiyên Termînalê" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4331,44 +4560,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Curenivîs" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4376,98 +4605,98 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Jînname yê Biguherîne" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Giştî" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Hilpekîn" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Xuyakirin" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Şemitandin" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "New Key Binding List" msgid "Key bindings" msgstr "Lîsteya Kurterê yan yê Nû" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Pêşketî" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4476,31 +4705,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4508,18 +4737,23 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "Jînname ya \"%1\" Biguherîne" msgstr[1] "Jînname ya \"%1\" Biguherîne" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Profîla Nû..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Jînname ya \"%1\" Biguherîne" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4529,7 +4763,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4539,44 +4773,44 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "Hilbijartinê Pê Ve Bike" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Delete the selected profile(s)" msgid "Default profile for new terminal sessions in %1" msgstr "Jînname(yên) hilbijartî jê bibe" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Derdorê Biguherîne" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4584,24 +4818,24 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Peldanka Pêşî Hilbijêre" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Nû..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4610,20 +4844,20 @@ msgstr "" "Ev şemaya rengan rûerda zelalî bi kar tîne yê ku sermase ya we wisa xuya " "dike ku piştgirî nadî" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Profîlê jê bibe" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4640,7 +4874,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4733,27 +4967,54 @@ msgstr "Ji bo peldanka destpêkê bigere" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Derdor:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Taybetiyên Termînalê" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4763,33 +5024,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Emûlatorê Termînalê" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Remote Connection" msgid "Semantic Integration" msgstr "Girêdana Dûr re" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4799,9 +5060,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4812,9 +5073,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4825,35 +5086,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Rûerd" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5198,50 +5459,93 @@ msgid "Scrollback:" msgstr "Paşveçûn Tune Ye" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Veşartî" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Bicihbûna darika hilpekînê:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5249,67 +5553,36 @@ msgid "Ri&ght side" msgstr "Di milê rast de nîşan bide" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Mezinahiya Nivîsê:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Veşartî" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Bicihbûna darika hilpekînê:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5411,42 +5684,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Lêgerîn:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Nivîsê ji bo lêgerînê binivîse li vir" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Pêş ve" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Hevgirtina pêş bibîne ji bo peyva lêgerîna heyî" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Paş ve" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5454,87 +5727,87 @@ msgid "Find the previous match for the current search phrase" msgstr "Hevgirtina paş bibîne ji bo peyva lêgerîna heyî" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Darika lêgerînê bigire" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Ya Aktîf Bigire" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Veava dike ku lêgerîn bi tîpên biçûk û mezin bihîstyar be an na" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Darika lêgerînê bigire" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Hemûyan balkêş bike" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Veava dike ku nivîsa hevgirtî divê bê dîyar kirin an na" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Hevgirtina pêş bibîne ji bo peyva lêgerîna heyî" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Hevgirtina pêş bibîne ji bo peyva lêgerîna heyî" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Hevgirtina pêş bibîne ji bo peyva lêgerîna heyî" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Hevgirtina pêş bibîne ji bo peyva lêgerîna heyî" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5547,7 +5820,7 @@ msgstr "Hevgirtina pêş bibîne ji bo peyva lêgerîna heyî" msgid "Print Shell" msgstr "Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5587,6 +5860,13 @@ msgstr "Teşeyê sernavê hilpekînê yê asayî" msgid "Tab Co&lor:" msgstr "Reng" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Rengê &Hilfiriînê Hilbijêre" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5701,39 +5981,53 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Hilpekînê &Bigire" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Rename Tab..." +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Navê Hilpekînê Biguherîne..." + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Darika lêgerînê bigire" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Navê Hilpekînê Biguherîne..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Hilpekînê &Bigire" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Ya Aktîf Bigire" + #, fuzzy #~| msgid "Open Link" #~ msgctxt "@title:window" @@ -6072,9 +6366,6 @@ msgstr "Hilpekînê &Bigire" #~ msgid "Decrease Text Size" #~ msgstr "Mezinahiya Nivîsê Kêmtir Bike" -#~ msgid "Search Output..." -#~ msgstr "Lê Deranê Bigere..." - #~ msgid "Find Next" #~ msgstr "Ya Dû Re Bibîne" @@ -6089,6 +6380,3 @@ msgstr "Hilpekînê &Bigire" #~ msgid "New" #~ msgstr "Nû" - -#~ msgid "Select &Tab Color" -#~ msgstr "Rengê &Hilfiriînê Hilbijêre" diff --git a/local/recipes/kde/konsole/source/po/lt/konsole.po b/local/recipes/kde/konsole/source/po/lt/konsole.po index 695395f629..ff47c33b16 100644 --- a/local/recipes/kde/konsole/source/po/lt/konsole.po +++ b/local/recipes/kde/konsole/source/po/lt/konsole.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2017-10-02 10:32+0200\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: Lithuanian \n" @@ -56,7 +56,7 @@ msgstr "Vaizdas" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Padalinti vaizdą" @@ -92,7 +92,7 @@ msgid "S&crollback" msgstr "&Slinkties juosta" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -175,48 +175,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Slėpti meniu juostą, perrašant numatytus nustatymus" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Rodyti kortelių juostą, perrašant numatytus nustatymus" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Slėpti kortelių juostą, perrašant numatytus nustatymus" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Rodyti kortelių juostą, perrašant numatytus nustatymus" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Slėpti kortelių juostą, perrašant numatytus nustatymus" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Paleisti Konsole viso ekrano režimu" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Išjungti permatomą foną net jei sistema jį palaiko." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Esamų profilių sąrašas" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Visų profilio savybių vardų ir tipų sąrašas (naudojimui su -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Pakeisti profilio parinkties reikšmę." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -226,7 +242,7 @@ msgstr "" "Vykdytina komanda. Ši pasirinktis pagaus šiuos argumentus, taigi naudokite " "tai kaip paskutinį variantą." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,13 +250,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Komandos parametrai" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -260,107 +276,107 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Teksto spalva" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fono spalva" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Spalva 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Spalva 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Spalva 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Spalva 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Spalva 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Spalva 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Spalva 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Spalva 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Teksto spalva (intensyvi)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fono spalva (intensyvi)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Spalva 1 (intensyvi)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Spalva 2 (intensyvi)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Spalva 3 (intensyvi)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Spalva 4 (intensyvi)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Spalva 5 (intensyvi)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Spalva 6 (intensyvi)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Spalva 7 (intensyvi)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Spalva 8 (intensyvi)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Foreground (Intense)" @@ -368,7 +384,7 @@ msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Teksto spalva (intensyvi)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -376,7 +392,7 @@ msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fono spalva (intensyvi)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 1 (Intense)" @@ -384,7 +400,7 @@ msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Spalva 1 (intensyvi)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 2 (Intense)" @@ -392,7 +408,7 @@ msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Spalva 2 (intensyvi)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 3 (Intense)" @@ -400,7 +416,7 @@ msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Spalva 3 (intensyvi)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 4 (Intense)" @@ -408,7 +424,7 @@ msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Spalva 4 (intensyvi)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 5 (Intense)" @@ -416,7 +432,7 @@ msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Spalva 5 (intensyvi)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 6 (Intense)" @@ -424,7 +440,7 @@ msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Spalva 6 (intensyvi)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 7 (Intense)" @@ -432,7 +448,7 @@ msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Spalva 7 (intensyvi)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 8 (Intense)" @@ -440,7 +456,7 @@ msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Spalva 8 (intensyvi)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -708,6 +724,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Local Host: %h" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Vietinis serveris: %h" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "&Set as Default" +msgid " [default]" +msgstr "N&ustatyti kaip numatytą" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -752,7 +802,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopijuoti įvestį į" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -784,14 +834,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Pasirinkti šriftą..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Show All Fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Rodyti visus šriftus" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -828,17 +878,17 @@ msgstr "Klavišų kombinacija" msgid "Output" msgstr "Išvestis" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Naujas sparčiųjų klavišų sąrašas" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Keisti sparčiųjų klavišų sąrašą" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -846,7 +896,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -880,67 +930,67 @@ msgstr "Įvestis:" msgid "Output:" msgstr "Išvestis:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsolė" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalo emuliatorius" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Pagrindinis prižiūrėtojas, klaidų taisymas ir bendri patobulinimai" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Ankstesnis prižiūrėtojas, migravo į KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Pradinis autorius" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -948,56 +998,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Pagrindinis prižiūrėtojas, klaidų taisymas ir bendri patobulinimai" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Klaidų taisymas ir bendri patobulinimai" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -1005,7 +1055,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Klaidų taisymas ir bendri patobulinimai" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1013,98 +1063,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Bendri patobulinimai" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Klaidų taisymas" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris palaikymas ir žurnalas" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Klaidų taisymas ir patobulintas paleidimas" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Žymėjimo patobulinimai" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1114,13 +1164,13 @@ msgstr "" "Įterpta Konsole\n" "Įrankių juosta ir sesijų pavadinimai" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1130,25 +1180,25 @@ msgstr "" "Įterpta Konsolė\n" "Bendri patobulinimai" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vaizdiniai efektai" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1158,121 +1208,121 @@ msgstr "" "Kodas iš kvt projekto\n" "Bendri patobulinimai" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Schemos ir teksto žymėjimo patobulinimai" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI perkėlimas" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD pritaikymas" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Ačiū daugeliui kitų.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nauja kortelė" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klonuoti kortelę" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Naujas &langas" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Uždaryti langą" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Žymelės" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nauja spalvų schema" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Tvarkyti profilius..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktyvuoti meniu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -1280,13 +1330,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Pastumti kortelę kairėn" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1297,25 +1347,25 @@ msgstr[1] "Yra veikiantys %1 procesai šiame lange. Ar tikrai norite išeiti?" msgstr[2] "Yra veikiančių %1 procesų šiame lange. Ar tikrai norite išeiti?" msgstr[3] "Yra veikiantis %1 procesas šiame lange. Ar tikrai norite išeiti?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Patvirtinti uždarymą" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Užverti &langą" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Užverti dabartinę kortelę" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "" @@ -1326,43 +1376,43 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Yra veikiantis procesas šiame lange. Ar tikrai norite išeiti?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiliai" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Bendri" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1456,7 +1506,7 @@ msgstr "Atverti failą" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1468,29 +1518,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Komanda:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Komanda:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1535,7 +1585,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1593,11 +1643,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1660,96 +1710,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Du kart spustelėkite, kad pakeisti trumpinį" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Sesijai baigus darbą neužverti jos automatiškai." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1955,25 +2005,25 @@ msgstr "Išvesties parinktys" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Draugiška spausdintuvui veiksena (juodas tekstas, nėra fono)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Keisti išvesties dydį" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Numatytas profilis" @@ -2039,17 +2089,38 @@ msgstr "Du kart spustelėkite, kad pakeisti trumpinį" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Įrašyti %1 išvestį" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "URL %1 yra klaidingas, išvesties įrašyti nepavyko." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2085,82 +2156,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tamsios pastelinės spalvos" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Žalia ant juodos" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux spalvos" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Raudona ant juodos" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Saulėtas" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Saulėtas lengvas" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Balta ant juodos" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Numatyta (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux konsolė" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris konsolė" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Paieška žiniatinklyje " + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Įrašykite ieškomą frazę čia" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Skambutis sesijoje „%1“" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nerastas dvejetainis failas: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Dėmesio: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nepavyko rasti ir paleisti interaktyvaus apvalkalo." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2168,357 +2259,365 @@ msgid "" msgstr "" "Nepavyko rasti „%1“, todėl paleidžiama „%2“. Patikrinkite profilio parinktis." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nepavyko paleisti programos „%1“ su parametrais „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Jokios veiklos sesijoje „%1“" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "Uždaryti langą" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Baigta" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programa „%1“ nulūžo." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programa „%1“ baigė darbą ir pranešė kodą „%2“." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem eiga" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktyvi veikla sesijoje „%1“" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsolė" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsolė nežino, kaip atidaryti žymelę: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Ieškoti „%1“ su" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Konfigūruoti žiniatinklio trumpinius..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Uždaryti langą" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Atverti failų tvarkyklę" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Padalinti polangį į kairę ir į dešinę" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Padalinti polangį į viršų ir į apačią" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kopijuoti įvestį" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kopijuoti įvestį" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Padėti pažymėtą sritį" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Paieška žiniatinklyje " -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Pažymėti viską" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Pažymėti eilutę" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Pažymėti eilutę" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Įrašyti išvestį &kaip..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Įrašyti išvestį &kaip..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Spausdinti ekraną..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Tvarkyti slinkties juostą..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Išvalyti slinkties istoriją" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Išvalyti ir paleisti iš naujo slinkties juostą" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Keisti profilį" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Ankstesnis" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Perjungti profilį" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Nustatyti &koduotę" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "Pe&rvadinti kortelę..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Visos kortelės dabartiniame lange" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Pažymėti korteles..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nei vienos" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopijuoti įvestį į" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem įkėlimas..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Stebėti &aktyvumą" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Stebėti &aktyvumą" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Stebėti neaktyvumą" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Stebėti &aktyvumą" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Padidinti šriftą" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Sumažinti šriftą" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Siųsti signalą" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Sustabdyti užduotį" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Tęsti užduotį" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Atsijungti" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Pertraukti užduotį" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Nutraukti užduotį" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Nutraukti užduotį" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Naudotojo signalas &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Naudotojo signalas &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "Naujas profilis" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Keisti dabartinį profilį..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Šioje kortelėje vykdoma programa. Ar tikrai norite užverti kortelę?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2526,19 +2625,19 @@ msgid "" msgstr "" "Šioje kortelėje vykdoma programa „%1“. Ar tikrai norite užverti kortelę?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Patvirtinti baigimą" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Užverti kortelę" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2547,38 +2646,41 @@ msgstr "" "Šioje kortelėje vykdoma programa niekaip nemiršta. Ar tikrai norite ją " "užbaigti prievarta?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Šioje kortelėje vykdoma programa „%1“ niekaip nemiršta. Ar tikrai norite ją " "užbaigti prievarta?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "Įrašyti ZModem atsisiuntimą į..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2589,13 +2691,13 @@ msgstr "" "ZModem programinės įrangos šioje sistemoje.

            Galite įdiegti paketą " "„rzsz“ arba „lrzsz“.

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "

            Šioje sesijoje jau vykdomas ZModem failo perkėlimas.

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2604,7 +2706,7 @@ msgstr "" "

            Šioje sistemoje nepavyko rasti tinkamos ZModem programos.

            Tokią " "programą galite įgyti įdiegdami paketą „rzsz“ arba „lrzsz“.

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Pažymėkite failus išsiuntimui su ZModem" @@ -2628,81 +2730,77 @@ msgctxt "@title:window" msgid "Configure" msgstr "Patvirtinti baigimą" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Paieška žiniatinklyje " - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Įjungti meniu sparčiuosius klavišus" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Rodyti lango pavadinimą pavadinimo juostoje" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Ieškoti kaip reguliaraus reiškinio" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Paryškinti visus atitikmenis" +#| msgctxt "@info:tooltip" +#| msgid "Create new tab" +msgid "Force new tabs" +msgstr "Sukurti naują kortelę" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, fuzzy, kde-format +#| msgid "Notifications" +msgid "Notifications:" +msgstr "Pranešimai" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "Nustato kad paieška turi startuoti nuo apačios" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "Ieškoti pradžios link" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2710,73 +2808,105 @@ msgid "Sets whether the search is case sensitive" msgstr "Paieškos metu skirti raidžių dydį" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Case sensitive" msgid "Case sensitive" msgstr "Skirti raidžių dydį" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 #, fuzzy, kde-format -#| msgid "Notifications" -msgid "Notifications:" -msgstr "Pranešimai" +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Paryškinti visus atitikmenis" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "Nustato kad paieška turi startuoti nuo apačios" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "Ieškoti pradžios link" +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Paieška žiniatinklyje " #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Nustato kad paieška turi startuoti nuo apačios" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Įjungti meniu sparčiuosius klavišus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Rodyti lango pavadinimą pavadinimo juostoje" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Ieškoti kaip reguliaraus reiškinio" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2801,41 +2931,79 @@ msgstr "Išsaugoti lango dydį kito paleidimo metu" msgid "The window size will be saved upon exiting Konsole" msgstr "Lango dydis bus išsaugotas uždarant Konsolę" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2843,7 +3011,7 @@ msgid "Search is case sensitive" msgstr "Paieškos metu skirti raidžių dydį" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Highlight all matches" @@ -2851,7 +3019,7 @@ msgid "Highlight all search matches" msgstr "Paryškinti visus atitikmenis" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether matching text should be highlighted" @@ -2859,19 +3027,19 @@ msgid "Sets whether matching text should be highlighted" msgstr "Paryškinti paieškos užklausą atitikusį tekstą" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2879,93 +3047,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Kontroliuoti matomumą visos kortelės juostos" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "Kontroliuoti matomumą visos kortelės juostos" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Kontroliuoti kortelių juostos poziciją" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Kontroliuoti kortelių juostos išvaizdos stilių" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Naudoti naudotojo nurodytą .css failą kortelių juostai" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Kontroliuoti greitųjų mygtukų matomumą kortelių juostoje" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Kontroliuoti greitųjų mygtukų matomumą kortelių juostoje" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Kontroliuoti kur padėti naują kortelę" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2978,26 +3153,24 @@ msgid "Enable memory monitoring:" msgstr "Kortelių stebėjimas" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3171,9 +3344,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Nei vienos" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Užverti kortelę" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3181,34 +3373,34 @@ msgid "Miscellaneous:" msgstr "Įvairūs" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "Rodyti „Nauja kortelė“ ir „Užverti kortelę“ mygtukus" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "Naudoti naudotojo apibrėžtą stilių lentelę" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3216,7 +3408,7 @@ msgid "Behavior" msgstr "Elgsena" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Create new tab" @@ -3224,81 +3416,81 @@ msgid "Put new tabs:" msgstr "Sukurti naują kortelę" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Put New Tab After Current Tab" msgid "After current &tab" msgstr "Pridėti naują kortelę po dabartinės kortelės" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Padalinti vaizdą" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menubar by default" msgid "Show Header:" msgstr "Rodyti meniu juostą pagal nutylėjimą" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3351,8 +3543,8 @@ msgstr "" #, kde-format msgid "" "

            To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

            " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

            " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3396,12 +3588,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Įjungti meniu sparčiuosius klavišus" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Matmenys: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3410,86 +3602,86 @@ msgstr[1] "Ar tikrai norite įklijuoti %1 rašmenis?" msgstr[2] "Ar tikrai norite įklijuoti %1 rašmenų?" msgstr[3] "Ar tikrai norite įklijuoti %1 rašmenį?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Patvirtinti įklijavimą" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" msgid "Confirm Paste" msgstr "Patvirtinti įklijavimą" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Žymeklio palva atitinka simbolio spalvą" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Padėti pažymėtą sritį" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been
            sulaikyta paspaudus klavišą Vald+S. Norėdami " "tęsti paspauskite Vald+Q. Šis pranešimas dings po 10 sekundžių." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Keisti &direktoriją į" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Padėti vieta" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Padalinti vaizdą" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Padalinti polangį į kairę ir į dešinę" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Padalinti polangį į viršų ir į apačią" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3546,7 +3738,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Padalinti polangį į viršų ir į apačią" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3554,7 +3746,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Padalinti polangį į kairę ir į dešinę" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3562,7 +3754,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Padalinti polangį į viršų ir į apačią" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3570,37 +3762,37 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Padalinti polangį į viršų ir į apačią" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Išplėsti polangį" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Sumažinti polangį" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3608,7 +3800,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "&Atkabinti dabartinę kortelę" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3616,93 +3808,107 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "&Atkabinti dabartinę kortelę" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Kita kortelė" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Ankstesnė kortelė" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Virš terminalo ploto" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Žemiau terminalo ploto" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Virš terminalo ploto" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Žemiau terminalo ploto" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Persijungti į paskutinę kortelę" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3710,7 +3916,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Pastumti kortelę dešinėn" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3718,47 +3924,47 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Pastumti kortelę kairėn" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Persijungti į kortelę %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3766,13 +3972,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Pastumti kortelę kairėn" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3785,7 +3991,7 @@ msgstr "" "Įrašant išvestį įvyko klaida.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3798,13 +4004,13 @@ msgstr "" "Įrašant išvestį įvyko klaida.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3909,29 +4115,41 @@ msgstr "Numatytoji simbolių koduotė:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "Sesijos numeris: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3968,7 +4186,7 @@ msgstr "Keisti pažymėtą spalvų schemą" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4025,12 +4243,18 @@ msgstr "Vaizduoti intensyvias spalvas riebiu šriftu" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4162,16 +4386,33 @@ msgid "Make the cursor blink regularly" msgstr "Žymeklis mirksi nuolatos" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Aktyvuoti meniu" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Žymeklis mirksi nuolatos" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4179,14 +4420,14 @@ msgid "Miscellaneous" msgstr "Įvairūs" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Langas" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4196,25 +4437,25 @@ msgstr "" "linijomis" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Rodyti terminalo dydį po lango dydžio keitimo" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4223,28 +4464,28 @@ msgid "Color:" msgstr "Spalva" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Nurodykite žymeklio spalvą" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" msgstr "Terminalo dydis" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Active Terminals:" msgstr "Terminalo dydis" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4252,96 +4493,96 @@ msgid "Terminal contents" msgstr "Terminalo parinktys" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Eilučių išretinimas:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Pikselių skaičius tarp dviejų eilučių" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

            Complex Text Layout

            " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Įjungti teksto vaizdavimą abejomis kryptimis" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4349,45 +4590,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Žymeklio palva atitinka simbolio spalvą" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Šriftas" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4397,99 +4638,99 @@ msgstr "" "Hebrajų kalboms)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Įjungti teksto vaizdavimą abejomis kryptimis" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Žymeklio palva atitinka simbolio spalvą" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Keisti profilį" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Bendra" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Kortelės" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Išvaizda" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Slinkties juosta" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klaviatūra" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Spartieji klavišai" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Pelė" # (pofilter) compendiumconflicts: checks for Gettext compendium conflicts (#-#-#-#-#) -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Sudėtingesnės parinktys" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4498,31 +4739,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4531,19 +4772,26 @@ msgstr[1] "Keičiami %1 profiliai: %2" msgstr[2] "Keičiama %1 profilių: %2" msgstr[3] "Keičiamas %1 profilis: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile" msgstr "Naujas profilis" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Keisti profilį „%1“" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&Nei vienos" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgid "Columns" msgctxt "" @@ -4556,7 +4804,7 @@ msgstr[1] "Stulpeliai" msgstr[2] "Stulpeliai" msgstr[3] "Stulpeliai" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4568,48 +4816,48 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications" msgid "System Notifications" msgstr "Pranešimai" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "Vaizdiniai efektai" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Nurodyti pažymėtą profilį kaip numatytą profilį naujiems terminalams" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Keisti aplinką" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "One environment variable per line" msgid "One environment variable per line" msgstr "Po vieną aplinkos kintamąjį eilutėje" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4619,25 +4867,25 @@ msgstr[1] " sekundės" msgstr[2] " sekundžių" msgstr[3] " sekundė" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Nurodykite pradinį aplanką" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Nauja..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4645,7 +4893,7 @@ msgid "" msgstr "" "Spalvų schemoje naudojamas permatomas fonas, kurio jūsų darbalaukis nepalaiko" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4654,13 +4902,13 @@ msgstr "" "Konsolė buvo paleista prieš įjungiant darbalaukio efektus. Jums reikia iš " "naujo paleisti Konsolę, kad matytumėte permatomą foną." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Numatytas profilis" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4677,7 +4925,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4769,27 +5017,55 @@ msgstr "Nurodyti pradinį aplanką" msgid "Start in same directory as current session" msgstr "Pradėti tame pačiame aplanke kaip ir dabartinė kortelė" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Pradėti tame pačiame aplanke kaip ir dabartinė kortelė" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Aplinka:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Keisti aplinkos kintamųjų ir parametrų reikšmes" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "Terminalo dydis" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4799,7 +5075,7 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4807,25 +5083,25 @@ msgid "&Terminal bell mode:" msgstr "Terminalo emuliatorius" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4835,9 +5111,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4848,9 +5124,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4861,22 +5137,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4884,13 +5160,13 @@ msgid "Red error background:" msgstr "Fono spalva" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5271,53 +5547,95 @@ msgid "Scrollback:" msgstr "Slinkties juosta" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Puslapio slinkimo aukštyn/žemyn kiekis" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Slinkti puslapį pusę lango aukščio" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half Page Height" msgid "Half screen heigh&t" msgstr "Pusę puslapio aukščio" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Slinkti puslapį per visą lango aukštį" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full Page Height" msgid "F&ull screen height" msgstr "Visas puslapio aukštis" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Kortelių juostos vieta:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Slinkties juostą rodyti dešinėje lango pusėje" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5325,66 +5643,36 @@ msgid "Ri&ght side" msgstr "Rodyti dešinėje" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Slinkties juostą rodyti kairėje lango pusėje" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Teksto aukštis:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Kortelių juostos vieta:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5497,7 +5785,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nei vienos" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5505,112 +5793,114 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Ieškoti:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Įrašykite ieškomą frazę čia" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Kitas" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Rasti kitą atitikmenį dabartinei paieškos frazei" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Ankstesnis" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Rasti ankstesnį atitikmenį dabartinei paieškos frazei" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Rodyti parinkčių meniu" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Užverti paieškos juostą" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Skirti raidžių dydį" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Paieškos metu skirti raidžių dydį" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Rodyti parinkčių meniu" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Užverti paieškos juostą" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Ieškoti kaip reguliaraus reiškinio" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Paryškinti visus atitikmenis" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Paryškinti paieškos užklausą atitikusį tekstą" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Ieškoti pradžios link" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Nustato kad paieška turi startuoti nuo apačios" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Nustato kad paieška turi startuoti nuo apačios" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the bottom" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Ieškoti dabartinės paieškos frazės nuo apačios" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the top" msgctxt "@info:tooltip" @@ -5622,7 +5912,7 @@ msgstr "Ieškoti dabartinės paieškos frazės nuo viršaus" msgid "Print Shell" msgstr "Spausdintų apvalkalą" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5667,6 +5957,14 @@ msgstr "Standartinis kortelių pavadinimų formatas" msgid "Tab Co&lor:" msgstr "Spalva" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Spalva" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5769,7 +6067,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Užverti kortelę" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5777,7 +6075,15 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Atkabinti kortelę" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Atkabinti kortelę" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:whatsthis" #| msgid "Close the active tab" @@ -5785,26 +6091,30 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Užverti aktyvią kortelę" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Atkabinti kortelę" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Pe&rvadinti kortelę..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Užverti kortelę" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Skirti raidžių dydį" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" diff --git a/local/recipes/kde/konsole/source/po/lv/konsole.po b/local/recipes/kde/konsole/source/po/lv/konsole.po index b0c863a3d6..a7958d81f3 100644 --- a/local/recipes/kde/konsole/source/po/lv/konsole.po +++ b/local/recipes/kde/konsole/source/po/lv/konsole.po @@ -6,20 +6,20 @@ # Viesturs Zariņš , 2009. # Einars Sprugis , 2012. # Rūdolfs Mazurs , 2012. -# SPDX-FileCopyrightText: 2024 Toms Trasuns +# SPDX-FileCopyrightText: 2024, 2025 Toms Trasuns msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-02-28 16:31+0200\n" -"Last-Translator: Toms Trasūns \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2025-06-21 13:10+0300\n" +"Last-Translator: Toms Trasuns \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.04.2\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" @@ -56,7 +56,7 @@ msgstr "Skats" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Sadalīt skatu" @@ -92,7 +92,7 @@ msgid "S&crollback" msgstr "Ri&tināšanas atmiņa" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Sesijas rīkjosla" @@ -172,48 +172,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Slēpt izvēļņu joslu, pārrakstot noklusējuma iestatījumus" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Rādīt ciļņu joslu, pārrakstot noklusējuma iestatījumus" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Slēpt ciļņu joslu, pārrakstot noklusējuma iestatījumus" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Rādīt ciļņu joslu, pārrakstot noklusējuma iestatījumus" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Slēpt ciļņu joslu, pārrakstot noklusējuma iestatījumus" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Palaist „Konsole“ pilnekrāna režīmā" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Izslēgt caurspīdīgus fonus pat tad, ja sistēma tos atbalsta." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Uzskaitīt pieejamos profilus" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Uzskaitīt profila īpašību nosaukumus un to tipu (lietošanai ar „-p“)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Mainīt profila īpašības vērtību." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -223,7 +239,7 @@ msgstr "" "Izpildāmā komanda. Šī opcijas ievēros visus sekojošos parametrus, tāpēc " "lietojiet kā pēdējo opciju." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -233,13 +249,13 @@ msgstr "" "Piespiest atkārtoti izmantot eksistējošu instanci pat tad, ja tas salauž " "funkcionalitāti, piemēram, „--new-tab“. Parasti izmantojam atkļūdošanai." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Komandai padodamie parametri" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -257,157 +273,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Priekšplāns" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "1. krāsa" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "2. krāsa" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "3. krāsa" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "4. krāsa" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "5. krāsa" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "6. krāsa" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "7. krāsa" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "8. krāsa" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Priekšplāns (spilgts)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fons (spilgts)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "1. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "2. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "3. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "4. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "5. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "6. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "7. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "8. krāsa (spilgta)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Priekšplāns (blāvs)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fons (blāvs)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "1. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "2. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "3. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "4. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "5. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "6. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "7. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "8. krāsa (blāva)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -664,6 +680,41 @@ msgstr "Pie augša" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Saimniekdators: „%1“" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [noklusējums]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -689,11 +740,10 @@ msgid "Deselect All" msgstr "Neatlasīt neko" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, fuzzy, kde-format -#| msgid "Preview:" +#, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" -msgstr "Priekšskatījums:" +msgstr "Krāsu priekšskatījums" #: filterHotSpots/FileFilterHotspot.cpp:158 #, kde-format @@ -710,7 +760,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopēt vietu" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Veido sīktēlu" @@ -741,13 +791,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Atlasīt fontu" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Parādīt visus fontus" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -788,17 +838,17 @@ msgstr "Taustiņu kombinācija" msgid "Output" msgstr "Izvade" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Jauns taustiņu piesaistes saraksts" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Rediģēt taustiņu piesaistes sarakstu" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Taustiņu piesaistes shēmu nevar saglabāt ar tukšu aprakstu." @@ -806,7 +856,7 @@ msgstr "Taustiņu piesaistes shēmu nevar saglabāt ar tukšu aprakstu." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -840,225 +890,225 @@ msgstr "Ievade:" msgid "Output:" msgstr "Izvade:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Termināļa emulators" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997–2022, „Konsole“ izstrādātāji" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Galvenais uzturētājs, kļūdu labojumi un vispārīgi uzlabojumi" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Iepriekšējais uzturētājs, portēja uz KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Sākotnējais autors" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Lielā pārstrukturēšana, kļūdu labojumi un vispārīgi uzlabojumi" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Kļūdu labojumi un vispārīgi uzlabojumi" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Kļūdu labojumi un lieli uzlabojumi" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Vispārīgi uzlabojumi" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Kļūdu labojumi" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "„Solaris“ atbalsts un darbs pie vēstures" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Kļūdu labojumi un ātrāka palaišana" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Marķēšanas uzlabojumi" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1068,13 +1118,13 @@ msgstr "" "Iegultā „Konsole“\n" "Rīkjoslas un sesijas nosaukumi" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1084,25 +1134,25 @@ msgstr "" "Iegultā „Konsole“\n" "Vispārīgi uzlabojumi" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vizuālie efekti" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1112,132 +1162,132 @@ msgstr "" "Kods no kvt projekta\n" "Vispārīgi uzlabojumi" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Shēmu un teksta izvēles uzlabojumi" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI ports" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "„FreeBSD“ ports" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Paldies daudziem citiem.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Jau&na cilne" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Klonēt &cilni" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Jauns &logs" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Aizvērt logu" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Grāmatzīmes" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Loga krāsu shēma" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Pārvaldīt profilus..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktivizēt izvēlni" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Saglabāt cilnes izkārtojumu..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Ielādēt cilnes izkārtojumu..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1247,67 +1297,67 @@ msgstr[0] "Šajā logā ir palaists %1 process. Vai tiešām vēlaties iziet?" msgstr[1] "Šajā logā ir palaisti %1 procesi. Vai tiešām vēlaties iziet?" msgstr[2] "Šajā logā ir palaisti %1 procesi. Vai tiešām vēlaties iziet?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Apstiprināt aizvēršanu" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Aizvērt &logu" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Aizvērt aktīvo &cilni" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Šajā logā ir atvērti %1 termināļi. Vai tiešām vēlaties iziet?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profili" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Pamata" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Atmiņa" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Ciļņu josla / atdalītāji" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Pagaidu datnes" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Sīktēli" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1391,7 +1441,7 @@ msgstr "Saglabāt" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Atjaunināt" @@ -1403,29 +1453,29 @@ msgid "Cancel" msgstr "Atcelt" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Ātrās komandas" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Parādīt ātro pieeju" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Nav atrastas ātrās komandas. Varat tās pievienot, ejot „Spraudņi —> Ātrās " "komandas“" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Spraudņi — Ātrāks komandas" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Parādīt ātrās komandas" @@ -1467,7 +1517,7 @@ msgstr "" " kas satur vairākas konfigurācijas. Vai turpināt?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Vai droši zināt, ka vēlaties dzēst „%1“?" @@ -1520,11 +1570,11 @@ msgid "%1 is a folder for SSH entries" msgstr "„%1“ ir mape SSH ierakstiem" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH konfigurācija" @@ -1588,24 +1638,24 @@ msgstr "" "Nevar izdot SSH komandu ārpus čaulas programmas (t.i., „bash“, „zsh“, „sh“)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH atslēga" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Dzēst" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Nemainīt" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1614,70 +1664,70 @@ msgstr "" "Jūs grasāties dzēst mapi „%1“\n" " ar vairākām SSH konfigurācijām. Vai turpināt?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Dzēst SSh konfigurāciju" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
            Some settings are read only." -msgstr "" +msgstr "Importēts SSH profils
            Daži iestatījumi ir tikai lasāmi." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Trūkst resursdatora nosaukuma" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Trūkst nosaukuma" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Ja ir iestatīts „Lietot SSH konfigurāciju“, neprecizējiet SSH atslēgu un " "lietotāja vārdu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Jānorāda vismaz lietotājvārds vai SSH atslēga" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Trūkst mapes" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH sesijai ir vajadzīgs profils" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Nevar izdzēst mapi" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Dzēst mapi un visu tās saturu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Mainiet mapes nosaukumu ar dubulktklikšķi" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Nevarat dzēst automātiski pievienotu ierakstu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Dzēst atlasīto ierakstu" @@ -1869,25 +1919,25 @@ msgstr "Izvades opcijas" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Printerim &draudzīgs režīms (melns teksts bez fona)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Mērogot izvadi" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Iebūvēts" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Noklusētais profils" @@ -1946,17 +1996,41 @@ msgstr "Dubultklikšķis, lai mainītu saīsni" msgid "Tab Properties" msgstr "Cilnes īpašības" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Saglabāt izvadi no „%1“" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "„%1“ ir nederīga URL adrese. Izvadi nevar saglabāt." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Neizdevās izveidot automātiskās saglabāšanas datni „%1“." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Aptur automātisko saglabāšanu ekrānu pārslēgšanas dēļ." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Automātiskās saglabāšanas datne ir ārēji izmainīta, kas liedz turpmāku " +"automātisku saglabāšanu." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Neizdevās atjaunināt automātiskās saglabāšanas statusu pēc izvades izmaiņām." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1992,81 +2066,98 @@ msgstr "„Breeze“" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tumšas pasteļkrāsas" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zaļš uz melna" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "„Linux“ krāsas" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Sarkans uz melna" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarizēts" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarizēts gaišs" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Balts uz melna" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Noklusējuma („XFree 4“)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "„Linux“ konsole" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "„macOS“" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "„Solaris“ konsole" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Meklēt..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Ierakstiet meklējamās cilnes nosaukumu" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Zvans „%1“ (sesija „%2“)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Neizdevās atrast izpildāmu datni: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Brīdinājums: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Neizdevās atrast interaktīvu čaulu, ko palaist." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2074,364 +2165,364 @@ msgid "" msgstr "" "Neizdevās atrast „%1“, tā vietā palaiž „%2“. Pārbaudiet profila iestatījumus." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Neizdevās palaist programmu „%1“ ar parametriem „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Klusums „%1“ (sesija „%2“)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Parādīt sesiju" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

            This " -"warning will only show once for this Konsole instance.

            " -msgstr "" -"Tikko ir izmantota „D-Bus“ metode „sendText/runCommand“. Šo metožu publiska " -"atļaušana rada drošības riskus. Ja nepieciešams, šīs metodes vara nomainīt " -"tikai iekšējai lietošanai, pārkompilējot „Konsole“.

            Šis brīdinājums šajā " -"„Konsole“ instancē būs redzams tikai vienu reizi.

            " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Pabeigts" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programma „%1“ avarēja." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programma „%1“ beidza darbu ar statusu „%2“." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "„ZModem“ progress" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivitāte „%1“ (sesija „%2“)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "„Konsole“" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Process „%1“ ir beidzis darboties sesijā „%2“" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "„Konsole“ neprot atvērt grāmatzīmi: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Meklēt „%1“ ar" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Konfigurēt tīmekļa saīsnes..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Aizvērt sesiju" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Atvērt datņu pārvaldnieku" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopēt" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Sadalīt skatu kreisajā/labajā" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Sadalīt skatu augšējā/apakšējā" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopēt izņēmumu uzvednes" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopēt lietotāja ievadi" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopēt komandu izvadi" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Ielīmēt izvēlēto" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Tīmekļa meklēšana" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Atlasīt visu" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Atlasīšanas &režīms" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "A&tlasīt rindu" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "S&aglabāt izvadi kā..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Automātiski saglabāt izvadi kā..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Apturēt automātisko saglabāšanu" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Drukāt ekrānu..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Pielāgot ritināšanas atmiņu..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Notīrīt ritināšanas atmiņu" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Notīrīt ritināšanas atmiņu un atstatīt" -#: session/SessionController.cpp:757 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:795 +#, kde-format msgid "Next Profile" -msgstr "Rediģēt profilu" +msgstr "Nākamais profils" -#: session/SessionController.cpp:762 -#, fuzzy, kde-format -#| msgctxt "@action:button Go to the previous phrase" -#| msgid "Previous" +#: session/SessionController.cpp:800 +#, kde-format msgid "Previous Profile" -msgstr "Iepriekšējā" +msgstr "Iepriekšējais profils" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Pārslēgt profilu" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "I&estatīt kodējumu" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Atļaut peles izsekošanu" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Tikai lasāma" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Konfigurēt vai pārsaukt cilni..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Visas cilnes pašreizējā logā" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Atlasīt cilnes..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nevienu" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopēt ievadi uz" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "„&ZModem“ augšupielāde..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Vienreizlietojami pārraugi" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "&Uzvednes pārraugs" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&Aktivitātes pārraugs" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Klusuma pārraugs" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Procesa pabeigšanas pārraugs" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Palielināt fontu" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Samazināt fontu" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Atiestatīt fonta izmēru" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Nosūtīt signālu" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Aizturēt uzdevumu" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Turpināt uzdevumu" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Nolikt" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Pārtraukt uzdevumu" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Izbeigt uzdevumu" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Nobeigt uzdevumu" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Lietotāja signāls &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Lietotāja signāls &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Izveidot jaunu profilu..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Rediģēt pašreizējo profilu..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Šajā sesijā darbojas programma. Vai tiešām vēlaties to aizvērt?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "Šajā sesijā darbojas programma „%1“. Vai tiešām vēlaties to aizvērt?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Apstiprināt aizvēršanu" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Aizvērt programmu" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2440,37 +2531,37 @@ msgstr "" "Programma šajā sesijā neaizveras. Vai tiešām vēlaties to nobeigt piespiedu " "kārtā?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Programma „%1“ šajā sesijā neaizveras. Vai tiešām vēlaties to nobeigt " "piespiedu kārtā?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Nobeigt programmu" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Čaulas uzvedne ir parādīta sesijā „%1“" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Atvērt pašreizējo mapi ar" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Saglabāt „ZModem“ lejupielādi..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

            A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2481,13 +2572,13 @@ msgstr "" "atrasta derīga „ZModem“ programmatūra.

            Iespējams, ir jāinstalē „rzsz“ " "vai „lrzsz“ pakotne.

            " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

            The current session already has a ZModem file transfer in progress.

            " msgstr "

            Aktīvajā sesijā jau notiek „ZModem“ datņu pārsūtīšana.

            " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

            No suitable ZModem software was found on this system.

            You may wish " @@ -2496,7 +2587,7 @@ msgstr "" "

            Šajā datorā nav atrasta piemērota „ZModem“ programmatūra.

            Iespējams, jāinstalē „rzsz“ vai „lrzsz“ pakotne.

            " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Izvēlieties datnes, ko augšupielādēt ar „ZModem“" @@ -2519,56 +2610,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Konfigurēt" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Meklēt:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Ieslēgt izvēļņu paātrinātājus" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Ja ieslēgts, profila iestatījumi tiks ignorēti" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Atcerēties loga izmēru" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Virsrakstjoslā rādīt loga virsrakstu" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Pārvietot fokusu uz termināļiem, virs kuriem atrodas peles kursors" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Meklēt atbilsmi, izmantojot regulārās izteiksmes" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2576,89 +2620,162 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Palaist visus „Konsole“ logus vienā procesā" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Izcelt visas atbilstības" +msgid "If enabled, profile settings will be ignored" +msgstr "Ja ieslēgts, profila iestatījumi tiks ignorēti" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Nosaka, vai meklēšanā ir nozīme burtu lielumam" +msgid "Remember window size" +msgstr "Atcerēties loga izmēru" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Reģistrjutīga" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Novietot jaunas cilnes:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Noņemt loga virsrakstjoslu un rāmi" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Process un logs:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Paziņojumi:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Visi lodziņi tiks parādīti atkal" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Ieslēgt visus „Nejautāt atkal“ ziņojumus" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Nosaka, vai meklēšanai jāsākas no beigām" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Meklēt no beigām" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Nosaka, vai meklēšanā ir nozīme burtu lielumam" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Reģistrjutīga" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Process un logs:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Izcelt visas atbilstības" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Meklēt:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format msgid "Sets whether search should stop instead of wrapping" -msgstr "Nosaka, vai meklēšanai jāsākas no beigām" +msgstr "Nosaka, vai meklēšana ir jāaptur vai jāsāk no sākuma" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" +msgstr "Bez aplaušanas" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Ieslēgt izvēļņu paātrinātājus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Pārvietot fokusu uz termināļiem, virs kuriem atrodas peles kursors" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Visi lodziņi tiks parādīti atkal" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Ieslēgt visus „Nejautāt atkal“ ziņojumus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Virsrakstjoslā rādīt loga virsrakstu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Noņemt loga virsrakstjoslu un rāmi" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Meklēt atbilsmi, izmantojot regulārās izteiksmes" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2684,71 +2801,111 @@ msgstr "Nākamajā palaišanās reizē izmantot pašreizējo loga izmēru" msgid "The window size will be saved upon exiting Konsole" msgstr "Izejot no „Konsole“, sistēma saglabās loga izmēru" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Palaižot „Konsole“, ja iespējams, atkārtoti izmantot eksistējošos procesus" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Sīktēla platums" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Nosaka sīktēla platumu" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Spiest „Shift“, lai parādītu sīktēlu" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Spiest „Alt“, lai parādītu sīktēlu" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Spiest „Ctrl“, lai parādītu sīktēlu" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Meklēšana ir reģistrjutīga" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Izcelt visas meklēšanas atbilstības" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Nosaka, vai ir jāizceļ meklēšanai atbilstošais teksts" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Meklēšana izbeidzas un beigās neaplaužas, turpinot no sākuma" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" -msgstr "Kontrolē to, vai atsevišķām cilnēm tiek izveidotas savas „cgroups“" +msgstr "Kontrolē, vai „Konsole“ atsevišķām cilnēm izveido savas „cgroups“" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2756,91 +2913,97 @@ msgstr "Nosaka atmiņas izmantojuma līmeni, virs kuras tiek bremzēta darbība" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Kontrolēt pilnas ciļņu joslas redzamību" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Kontrolē tura starp paneļiem izmēru" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Kontrolē ciļņu joslas pozīciju" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Kontrolē ciļņu joslas vizuālo stilu" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Ciļņu joslai izmanto lietotāja definētu „.css“ datni" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Ciļņu joslas stilam izmantotā „.css“ datne" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Atļaut ciļņu aizvēršanu ar peles vidējo pogu" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Kontrolēt „Jauna cilne“ pogas redzamību ciļņu joslā" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Pārvaldīt „Ciļņu meklēšanas“ pogas redzamību ciļņu joslā" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Kontrolē to, vai būs redzama „Aizvērt cilni“ poga" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Kontrolē jaunas cilnes novietojumu" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Palielināt ciļņu platumu" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Ritināšanas atmiņas datnēm izmantot visā sistēmā pieejamas mapes vietu" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Ritināšanas atmiņas datnēm izmantot lietotāja mapes vietu" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Ritināšanas atmiņas datnēm izmantot noteiktas mapes vietu" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Ritināšanas atmiņas datnēm izmantot šo mapi" @@ -2852,16 +3015,23 @@ msgid "Enable memory monitoring:" msgstr "Ieslēgt atmiņas pārraudzību:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Izmaiņas stāsies spēkā pēc pārstartēšanas. Ja ieslēgts, tad „Konsole“ " "programmai,\n" @@ -2874,13 +3044,13 @@ msgstr "" "ārkārtīgi zemu vērtību norādīšana var novest pie „Konsole“ nobeigšanas." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Atmiņas limits:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -2897,11 +3067,11 @@ msgid "" "a change to how these are handled." msgstr "" "

            Programmas, kas izmanto „KonsolePart“ dalās ar " -"profiliem.

            Tās nedalās ar „Konsole“ vai citu programmu:" +"profiliem.

            Tās nedalās ar „Konsole“ vai citu programmu ar:" "

            • noklusējuma profilu
            • izvēlnē redzamo
            • saīsnēm
            • Droši izveidojiet „Konsole“ kļūdas " -"ziņojumu, ja vēlaties mainīt to, kā tas notiek." +"ziņojumu, ja vēlaties mainīt šo darbību." #. i18n: ectx: property (toolTip), widget (QPushButton, newProfileButton) #: settings/ProfileSettings.ui:51 @@ -3004,17 +3174,15 @@ msgstr "&Zem termināļa lauka" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the left of terminal area" -msgstr "&Zem termināļa lauka" +msgstr "Pa kreisi no termināļa lauka" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the &right of terminal area" -msgstr "&Zem termināļa lauka" +msgstr "Pa &labi no termināļa lauka" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 @@ -3024,8 +3192,7 @@ msgstr "Rādīt cilnes aizvēršanas pogu:" #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 -#, fuzzy, kde-format -#| msgid "&On each tab" +#, kde-format msgid "On ea&ch tab" msgstr "&Katrā cilnē" @@ -3042,125 +3209,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nerādīt" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Rādīt ciļņu meklēšanas pogu:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Vienmēr" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nekad" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Dažādi:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Rādīt „Jauna cilne“ pogu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Atsevišķu ciļņu platumu izplest līdz visam logam" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Izmantot lietotāja noteiktu stila lapu:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(nav)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Uzvedība" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Novietot jaunas cilnes:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "&Beigās" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "&Pēc pašreizējās cilnes" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Aizvērt cilni ar peles vidējo pogu" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Sadalītie skati" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Rādīt galveni:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Kad vajadzīgs" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nekad" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Vilkšanas tura izmērs:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Mazs" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Vidējs" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Liels" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3212,13 +3397,12 @@ msgstr "px" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Lai lietotu šo iespēju, profila iestatījumos " "ieslēdziet Pele —> Dažādi —> " -"Pasvītrot datnes

              " +"Pasvītrot datnes.

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3256,12 +3440,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Ieslēgt sīktēlu ģenerēšanu" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Izmērs: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3269,52 +3453,52 @@ msgstr[0] "Vai tiešām vēlaties ielīmēt %1 rakstzīmi?" msgstr[1] "Vai tiešām vēlaties ielīmēt %1 rakstzīmes?" msgstr[2] "Vai tiešām vēlaties ielīmēt %1 rakstzīmju?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Apstiprināt ielīmēšanu" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Teksta beigas/pārtraukums: varat iziet no aktīvā procesa" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Nosūtīšanas beigas: varat iziet no aktīvā procesa" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Zvans: mēģinās izdot dzirdamu brīdinājumu" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Ierīces kontrole 3/XOFF: aiztur izvadi" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Aizvietošana/aizturēšana: varat aizturēt aktīvo procesu" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "„Escape“: lietots termināļa stāvokļa manipulēšanai" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Datnes atdalītājs/iziešana: varat izslēgt pašreizējo procesu" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3323,31 +3507,31 @@ msgstr "" "Teksts, kuru grasāties ielīmēt, satur neredzamas kontroles rakstzīmes. Vai " "vēlaties tā izfiltrēt laukā?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Apstiprināt ielīmēšanu" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Ielīmēt &bez kontroles rakstzīmēm" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Ielīmēt visu" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Atcelt" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been aizturēta, nospiežot „Ctrl+S“. Nospiediet Ctrl+Q, lai " "turpinātu." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Šis terminālis ir tikai lasāmā režīmā" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Mainīt &mapi uz" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Ielīmēt vietu" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Sadalīt skatu" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Sadalīt skatu kreisajā/labajā" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Sadalīt skatu augšējā/apakšējā" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Sadalīt skatu automātiski" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Sadalīt skatu kreisajā/labajā no nākamās cilnes" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Sadalīt skatu augšējā/apakšējā no nākamās cilnes" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Sadalīt skatu automātiski no nākamās cilnes" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Ielādēt jaunu cilni ar izkārtojumu 2×2 termināļi" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Ielādēt jaunu cilni ar izkārtojumu 2×1 terminālis" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Ielādēt jaunu cilni ar izkārtojumu 1×2 termināļi" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Paplašināt skatu" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Sašaurināt skatu" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Atdalīt pašreizējo &skatu" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Atdalīt pašreizējo &cilni" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Nākamā cilne" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Iepriekšējā cilne" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fokuss uz augšējo termināli" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fokuss uz apakšējo termināli" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fokuss uz kreiso termināli" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fokuss uz labo termināli" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokuss uz kreiso termināli" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokuss uz apakšējo termināli" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Pārslēgties uz pēdējo cilni" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Pēdējās izmantotās cilnes" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Pārslēgties starp divām cilnēm" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Pēdējās izmantotās cilnes (pretēja kārtība)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Pārslēgt aktīvā skata maksimizēšanu" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Pārslēgt aktīvā skata maksimizēšanu" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Pārslēgt aktīvā skata maksimizēšanu ar pietuvinājumu" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Pārslēgt aktīvā skata maksimizēšanu ar pietuvinājumu" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Pārvietot cilni pa labi" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Pārvietot cilni pa kreisi" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Iestatīt semantisko integrāciju („bash“)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Pārslēgt semantisko ieteikumu parādīšanu" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Pārslēgt rindu numuru parādīšanu" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Vienāds izmērs visos skatos" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Pārslēgties uz cilni %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantiskie ieteikumi " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Rindu numuri " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Saglabāt ciļņu izkārtojumu" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "„Konsole“ skata izkārtojums (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3615,7 +3815,7 @@ msgstr "" "Saglabājot izkārtojumu, radās problēma.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3625,13 +3825,13 @@ msgstr "" "Ielādējot izkārtojumu, radās problēma.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Ielādēt cilnes izkārtojumu" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3719,10 +3919,9 @@ msgstr "Plūsmas kontrole" #. i18n: ectx: property (text), widget (QLabel, label_14) #: widgets/EditProfileAdvancedPage.ui:222 -#, fuzzy, kde-format -#| msgid "Default character encoding:" +#, kde-format msgid "&Default character encoding:" -msgstr "Rakstzīmju noklusētais kodējums:" +msgstr "Noklusējuma rakstzīmju ko&dējums:" #. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) #: widgets/EditProfileAdvancedPage.ui:242 @@ -3730,38 +3929,44 @@ msgstr "Rakstzīmju noklusētais kodējums:" msgid "Shortcut for peeking the primary screen:" msgstr "Saīsne, lai palūkotos uz primāro ekrānu:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 -#, fuzzy, kde-format -#| msgid "Line numbers " +#, kde-format +msgid "Set interval between autosaves:" +msgstr "Intervāls starp automātiskajām saglabāšanām:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" -msgstr "Rindu numuri " +msgstr "Rindu numuri:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 -#, fuzzy, kde-format -#| msgid "&Never" +#: widgets/EditProfileAdvancedPage.ui:285 +#, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nekad" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 -#, fuzzy, kde-format -#| msgctxt "When showing URL hints" -#| msgid "When URL hints show" +#: widgets/EditProfileAdvancedPage.ui:295 +#, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" -msgstr "Parādot URL ieteikumus" +msgstr "Parādot &URL ieteikumus" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 -#, fuzzy, kde-format -#| msgctxt "Always" -#| msgid "Always" +#: widgets/EditProfileAdvancedPage.ui:305 +#, kde-format msgctxt "Always" msgid "A&lways" -msgstr "Vienmēr" +msgstr "Vie&nmēr" #. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) #: widgets/EditProfileAppearancePage.ui:36 @@ -3793,7 +3998,7 @@ msgstr "Rediģēt izvēlēto krāsu shēmu" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3847,31 +4052,38 @@ msgstr "Spilgtas krāsas zīmēt treknā fontā" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Atlasīto fontu izmantot līniju rakstzīmēm iebūvētā koda vietā" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "" +#| "Characters for drawing lines for a frame or box in TUI programs. Not a " +#| "row of characters." +#| msgid ">Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Izmantot fontā ietvertās līniju rakstzīmes" +msgstr ">Izmantot fontā ietvertās līniju rakstzīmes" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 -#, fuzzy, kde-format -#| msgid "" -#| "Use the selected font for line characters instead of the builtin code" +#, kde-format msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" -msgstr "Atlasīto fontu izmantot līniju rakstzīmēm iebūvētā koda vietā" +msgstr "Iebūvētā koda vietā unikoda Braila rakstzīmēm izmantot atlasīto fontu" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 -#, fuzzy, kde-format -#| msgid "Use line characters contained in font" +#, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "Izmantot fontā ietvertās līniju rakstzīmes" +msgstr "Izmantot fontā ietvertās unikoda Braila rakstzīmes" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -3974,29 +4186,45 @@ msgid "Make the cursor blink regularly" msgstr "Likt kursoram regulāri mirgot" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Ieslēgts" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktivizēšana:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Likt kursoram regulāri mirgot" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Dažādi" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Logs:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4005,144 +4233,144 @@ msgstr "" "Rādīt termināļa izmēru kolonnās un rindās loga centrā, kad maināt tā izmēru" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Rādīt informāciju par termināļa izmēru pēc izmēra maiņas" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Vienmēr invertēt atlasītā teksta krāsu" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Aptumšošanas stiprums:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Krāsa:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Atlasiet krāsu, kas ir izmantojama apmales zīmēšanai" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Neaktīvi termināļi:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Aktīvi termināļi:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Termināļa saturs" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Atstarpes starp rindām:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Pikseļu skaits starp divām rindām" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Malas:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Izkārtot centrā:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Parādīt, vai logs ir aktīvs, aptumšojot tā krāsas" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Aptumšot" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Parādīt, vai logs ir aktīvs, zīmējot apmali" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Apmale" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Kolonnā parādīt vertikālu līniju" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Kompleksais teksta izkārtojums

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Kompleksais teksta izkārtojums" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Ieslēgt teksta attēlošanu vārdu režīmā" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Vārdu režīms" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4152,43 +4380,43 @@ msgstr "" "šādas izmaiņas lauzīs vārdus)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Izmantot tos pašus atribūtus visam vārdam" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "ASCII rakstzīmju vārdus renderēt kopā" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ACII rakstzīmes" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Brāhmī raksta vārdus attēlot ar rakstzīmēm kopā" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Brāhmī raksta rakstzīmes" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emodži fonts:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4198,13 +4426,13 @@ msgstr "" "Ebreju lokāles)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Ieslēgt divvirzienu teksta attēlošanu" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4212,13 +4440,13 @@ msgstr "" "rakstzīmes" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "rindas vienmēr no kreisās uz labo" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" @@ -4226,71 +4454,71 @@ msgstr "" "rakstzīmes." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Tabulas rakstzīmes pārraksta divvirzienu režīmu" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorēt problemātisko rakstzīmju „wcwidth“" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Pārrakstīt „wcwidth“" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Rediģēt profilu" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Pamata" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Cilnes" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Izskats" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Ritināšana" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatūra" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Taustiņu saīsnes" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Pele" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Paplašināti" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4302,31 +4530,31 @@ msgstr "" ">Vai nu mainiet datnes atļaujas, vai arī izvēlieties atšķirīgu nosaukumu " "iestatījumu saglabāšanai jaunā profilā." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Profila nosaukums ir tukšs. Pirms saglabāšanas ierakstiet nosaukumu." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Profils ar nosaukumu „%1“ jau eksistē." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profila nosaukums ir sasniedzis maksimālo atļauto garumu (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Izceltās rakstzīmes ir nederīgas profila nosaukumos: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4334,17 +4562,24 @@ msgstr[0] "Rediģē %1 profilu: %2" msgstr[1] "Rediģē %1 profilus: %2" msgstr[2] "Rediģē %1 profilu: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Izveidot jaunu profilu" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Rediģēt profilu „%1“" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Nerādīt" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4355,7 +4590,7 @@ msgstr[0] " kolonna" msgstr[1] " kolonnas" msgstr[2] " kolonnu" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4366,42 +4601,42 @@ msgstr[0] " rinda" msgstr[1] " rindas" msgstr[2] " rindu" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sistēmas zvans" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Sistēmas paziņojumi" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Vizuāls zvans" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorēt zvana notikumus" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Noklusējuma profils jaunām %1 termināļa sesijām" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Rediģēt vidi" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Viens vides mainīgais katrā rindā" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4410,32 +4645,30 @@ msgstr[0] " sekunde" msgstr[1] " sekundes" msgstr[2] " sekunžu" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Atlasīt sākotnējo mapi" -#: widgets/EditProfileDialog.cpp:946 -#, fuzzy, kde-format -#| msgctxt "@action:button Create an alternate color scheme" -#| msgid "New..." +#: widgets/EditProfileDialog.cpp:1003 +#, kde-format msgid "Get New..." -msgstr "Jauna..." +msgstr "Iegūt jaunus..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Neizdevās shēmas %1 ielāde." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "Šai krāsu shēmai ir caurspīdīgs fons, ko neatbalsta jūsu darbvirsma" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4444,13 +4677,12 @@ msgstr "" "„Konsole“ tika palaista pirms tika ieslēgti darbvirsmas efekti. Jums " "jāpārstartē „Konsole“, lai redzētu caurspīdīgo fonu." -#: widgets/EditProfileDialog.cpp:1913 -#, fuzzy, kde-format -#| msgid "Default profile" +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format msgid "Default for file type" -msgstr "Noklusētais profils" +msgstr "Noklusējums datņu tipam" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4479,7 +4711,7 @@ msgstr "" "tiek ignorēts un datne tiek atvērta ar noklusējuma teksta\n" "redaktoru." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Pielāgota teksta redaktora komanda" @@ -4539,10 +4771,9 @@ msgstr "/bin/sh" #. i18n: ectx: property (text), widget (QLabel, label_9) #: widgets/EditProfileGeneralPage.ui:157 -#, fuzzy, kde-format -#| msgid "Initial directory:" +#, kde-format msgid "I&nitial directory:" -msgstr "Sākotnējā mape:" +msgstr "&Sākotnējā mape:" #. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:170 @@ -4570,27 +4801,54 @@ msgstr "Izvēlēties sākotnējo mapi" msgid "Start in same directory as current session" msgstr "Sākt tajā pašā mapē, kurā ir aktīvā sesija" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Sākt tajā pašā mapē, kurā ir aktīvā sesija" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Vide:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Rediģēt vides mainīgo un ar tiem saistīto vērtību sarakstu" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 -#, fuzzy, kde-format -#| msgid "Initial terminal size:" +#: widgets/EditProfileGeneralPage.ui:320 +#, kde-format msgid "Initial terminal si&ze:" -msgstr "Sākotnējais termināļa izmērs:" +msgstr "Sākotnējais termināļa i&zmērs:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4603,32 +4861,31 @@ msgstr "" "izslēgtam, lai šīs opcijas darbotos.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 -#, fuzzy, kde-format -#| msgid "Terminal bell mode:" +#: widgets/EditProfileGeneralPage.ui:411 +#, kde-format msgid "&Terminal bell mode:" -msgstr "Termināļa zvana režīms:" +msgstr "&Termināļa zvana režīms:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantiskā integrācija" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Pogu augšup/lejup emulācija" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Peles klikšķis ievades rindā pārvieto kursoru" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantiskie ieteikumi" @@ -4638,9 +4895,9 @@ msgstr "Semantiskie ieteikumi" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4651,9 +4908,9 @@ msgstr "Nekad" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4664,34 +4921,34 @@ msgstr "Parādot URL ieteikumus" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Vienmēr" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Sarkanas kļūdu joslas:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Sarkans kļūdu fons:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Pārmaiņu joslas:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Pārmaiņu fons:" @@ -4774,17 +5031,15 @@ msgstr "Trīskāršs peles klikšķis atlasa:" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) #: widgets/EditProfileMousePage.ui:104 -#, fuzzy, kde-format -#| msgid "The whole line" +#, kde-format msgid "&The whole line" -msgstr "Visu rindu" +msgstr "&Visu rindu" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 -#, fuzzy, kde-format -#| msgid "From mouse position to the end of line" +#, kde-format msgid "From mouse position to the end of &line" -msgstr "No peles pozīcijas līdz rindas beigām" +msgstr "No peles pozīcijas līdz rindas &beigām" #. i18n: ectx: property (text), widget (QLabel, label_13) #: widgets/EditProfileMousePage.ui:140 @@ -5049,121 +5304,127 @@ msgid "Scrollback:" msgstr "Ritināšanas atmiņa:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Ritināt lapu augšup/lejup:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Ritināt lapu par pusi no loga augstuma" +msgid "Highlight the lines coming into view" +msgstr "Izcelt skata apgabalā ienākošās rindas" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half screen height" -msgid "Half screen heigh&t" -msgstr "Puse ekrāna augstuma" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Ritināt lapu par pilnu loga augstumu" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full screen height" -msgid "F&ull screen height" -msgstr "Pilns ekrāna augstums" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Ritjoslas novietojums:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Rādīt ritjoslu termināļa loga labajā pusē" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the right side" -#| msgid "Right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Labajā pusē" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Rādīt ritjoslu termināļa loga kreisajā pusē" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the left side" -#| msgid "Left side" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Kreisajā pusē" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Slēpta" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Katra marķiera izmērs (procentuāli no ritjoslas garuma):" + #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 +#: widgets/EditProfileScrollingPage.ui:97 #, kde-format msgid "Highlighting:" msgstr "Izcelšana:" -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format -msgid "Highlight the lines coming into view" -msgstr "Izcelt skata apgabalā ienākošās rindas" +msgid "Scroll the page the half height of window" +msgstr "Ritināt lapu par pusi no loga augstuma" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "&Puse ekrāna augstuma" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Ritjoslas marķieru krāsa:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Atrasto izcelto līniju krāsa ritjoslā:" #. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 +#: widgets/EditProfileScrollingPage.ui:181 #, kde-format msgid "Reflow Lines:" msgstr "Pārkārtot rindas:" +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Ritināt lapu par pilnu loga augstumu" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "&Pilns ekrāna augstums" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Rādīt ritjoslu termināļa loga labajā pusē" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "&Labajā pusē" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Rādīt ritjoslu termināļa loga kreisajā pusē" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "&Kreisajā pusē" + #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Pārkārtot rindas, terminālim mainot izmēru" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Ritjoslas novietojums:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "" +msgid "Search highlighting line opacity:" +msgstr "Meklēšanas izcelšanas līnijas necaurspīdība:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5234,10 +5495,9 @@ msgstr "Ierobežot atmiņā turamos izvaddatus līdz noteiktam rindu skaitam" #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 -#, fuzzy, kde-format -#| msgid "Fixed size:" +#, kde-format msgid "Fi&xed size:" -msgstr "Fiksēts izmērs:" +msgstr "&Fiksēts izmērs:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 @@ -5253,12 +5513,10 @@ msgstr "Atcerēties visu termināļa izvadi" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgctxt "Save all lines to the scrollback history" -#| msgid "Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "Bez ierobežojuma" +msgstr "&Bez ierobežojuma" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5268,123 +5526,122 @@ msgstr "Neatcerēties iepriekšējo izvadi" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" -msgstr "&Nevienu" +msgstr "&Neko" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Meklēt..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Ierakstiet meklējamo tekstu" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Nākamā" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Atrast meklējamās frāzes nākamo atbilstību" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Iepriekšējā" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Atrast meklējamās frāzes iepriekšējo atbilstību" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Rādīt opciju izvēlni" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Aizvērt meklēšanas joslu" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Reģistrjutīga" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Nosaka, vai meklēšanā ir nozīme burtu lielumam" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Rādīt opciju izvēlni" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Aizvērt meklēšanas joslu" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Meklēt regulāro izteiksmi" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Izcelt visas atbilstības" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Nosaka, vai ir jāiekrāso atrastais teksts" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Meklēt no beigām" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Nosaka, vai meklēšanai ir jāsākas no beigām" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "" +msgstr "Bez aplaušanas" -#: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" -msgstr "Nosaka, vai meklēšanai jāsākas no beigām" +msgstr "" +"Nosaka, vai meklēšana beigās apstājas, vai arī aplaužas un sākas no sākuma" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Meklēt meklējamo frāzi no beigām" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5395,7 +5652,7 @@ msgstr "Meklēt meklējamo frāzi no sākuma" msgid "Print Shell" msgstr "Drukāšanas čaula" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5419,10 +5676,9 @@ msgstr "Attālināto ciļņu virsrakstu formāts:" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/RenameTabWidget.ui:79 -#, fuzzy, kde-format -#| msgid "Tab title format:" +#, kde-format msgid "&Tab title format:" -msgstr "Ciļņu virsraksta formāts:" +msgstr "&Ciļņu virsraksta formāts:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5432,10 +5688,16 @@ msgstr "Normāls ciļņu virsraksta formāts" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgid "Tab Color:" +#, kde-format msgid "Tab Co&lor:" -msgstr "Ciļņu krāsa:" +msgstr "&Ciļņu krāsa:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "&Ciļņu krāsa:" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5530,36 +5792,57 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Atjaunināt termināli" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Atvērt jaunu cilni" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Meklēt cilnes" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Aizvērt šo cilni" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Atdalīt cilni" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Konfigurēt vai pārsaukt cilni..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Aizvērt cilni" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Tikko ir izmantota „D-Bus“ metode „sendText/runCommand“. Šo metožu " +#~ "publiska atļaušana rada drošības riskus. Ja nepieciešams, šīs metodes " +#~ "vara nomainīt tikai iekšējai lietošanai, pārkompilējot „Konsole“.

              Šis " +#~ "brīdinājums šajā „Konsole“ instancē būs redzams tikai vienu reizi.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Reģistrjutīga" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Nevienu" diff --git a/local/recipes/kde/konsole/source/po/mai/konsole.po b/local/recipes/kde/konsole/source/po/mai/konsole.po index 1eed9d58c2..3480f81537 100644 --- a/local/recipes/kde/konsole/source/po/mai/konsole.po +++ b/local/recipes/kde/konsole/source/po/mai/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2010-09-24 21:50+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Maithili \n" @@ -55,7 +55,7 @@ msgstr "दृश्य" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "विभाजित दृश्य" @@ -91,7 +91,7 @@ msgid "S&crollback" msgstr "स्क्रालबैक (&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session number" msgid "Session Toolbar" @@ -180,49 +180,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "पारदर्शी पृष्ठभूमि बन्न करू, तखन जँ तंत्र मे ओकर समर्थन अछि." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "उपलब्ध प्रोफाइलसभ केर नाम बताबू" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "प्रोफाइल गुण क' मूल्य बदलू." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +242,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -238,14 +250,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "कमांड केँ भेजल गेल आर्गुमेंट" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -265,217 +277,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "अग्रभूमि" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "पृष्ठभूमि" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "रंग 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "रंग 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "रंग 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "रंग 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "रंग 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "रंग 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "रंग 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "रंग 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "अग्रभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "पृष्ठभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "रंग 1 (तीव्र)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "रंग 2 (तीव्र)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "रंग 3 (तीव्र)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "रंग 4 (तीव्र)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "रंग 5 (तीव्र)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "रंग 6 (तीव्र)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "रंग 7 (तीव्र)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "रंग 8 (तीव्र)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "अग्रभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "पृष्ठभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "रंग 1 (तीव्र)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "रंग 2 (तीव्र)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "रंग 3 (तीव्र)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "रंग 4 (तीव्र)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "रंग 5 (तीव्र)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "रंग 6 (तीव्र)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "रंग 7 (तीव्र)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "रंग 8 (तीव्र)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -738,6 +750,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "होस्ट:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "मूलभूत जहिना सेट करू" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -782,7 +828,7 @@ msgstr "" msgid "Copy Location" msgstr "इनपुट एतय नकल करू..." -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -814,14 +860,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "फान्ट संपादित करू..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "सुघढ फान्ट" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -859,17 +905,17 @@ msgstr "कुंजी संयोजन" msgid "Output" msgstr "आउटपुट" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "नवीन कुँजी बाइंडिंग सूची" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "कुंजी बाइंडिंग सूची संपादित करू" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -877,7 +923,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -911,247 +957,247 @@ msgstr "इनपुटः" msgid "Output:" msgstr "आउटपुटः" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "कंसोल" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "टर्मिनल एमुलेटर" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "कुर्त वी. हिंडेनबर्ग" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "बग सुधार आ सामान्य सुधार" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "राबर्ट नाइट" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "लार्स डोएल्ले" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "टर्मिनल एमुलेटर" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "बग सुधार आ सामान्य सुधार" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "बग सुधार आ सामान्य सुधार" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "बग सुधार आ सामान्य सुधार" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "वाल्दो बास्तियान" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "स्टीफन बिनर" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "सामान्य सुधार" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "क्रिस मेकमर" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "बग फिक्सेस" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "स्टीफन कुलोव" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "सोलारिस समर्थन आ इतिहास" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "अलेक्जेंडर न्यून्दार्फ" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "बग सुधार आ स्टार्टअप परफार्मेंस मे सुधार" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "पीटर सिल्वा" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "उन्नतिसभ केँ चिह्नित कएनाइ" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "लोत्जी बोलोनी" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1164,14 +1210,14 @@ msgstr "" "अंतर्निर्मित कंसोल\n" "अओजारपट्टी तथा सत्र नाम" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "डेविड फाउरे" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1184,28 +1230,28 @@ msgstr "" "अंतर्निर्मित कंसोल\n" "सामान्य सुधार" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "अंतोनियो लारोसा" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "दृश्यमय प्रभाव" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "मेथियास एट्रिच" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1218,125 +1264,125 @@ msgstr "" "केवीटी परियोजना सँ स्रोत\n" "सामान्य सुधार" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "वारविक एलिसन" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "प्रसंग आ पाठ चयन सुधार" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "डान पिलोन" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "एसजीआई पोर्ट" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "केविन स्ट्रीट" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "फ्रीबीएसडी पोर्ट" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "स्वेन फिशर" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "डेल एम. फ्लेवन" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "मार्टिन जोन्स" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "लार्स क्नोल" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "आओरो बेबीलोकनिसभ केँ धन्यवाद.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "नवीन टैब (&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "टैब बन्न करू (&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "नया विंडो (&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "कंसोल" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "पुस्तचिह्न (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "नवीन रंग योजना" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Manage Profiles" @@ -1344,26 +1390,26 @@ msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "प्रोफाइल प्रबंधित करू" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "दृश्य बम्माँ घसकाबू" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1374,28 +1420,28 @@ msgid_plural "" msgstr[0] "ई विंडो मे बहुत टैबसभ खुलल अछि, की अहाँ सच्चे बाहर होनाइ चाहैत छी?" msgstr[1] "ई विंडो मे बहुत टैबसभ खुलल अछि, की अहाँ सच्चे बाहर होनाइ चाहैत छी?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "बन्न करबाक पुष्टि करू" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "कंसोल" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "मोजुदा टैब बन्न करू" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1403,7 +1449,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "ई विंडो मे बहुत टैबसभ खुलल अछि, की अहाँ सच्चे बाहर होनाइ चाहैत छी?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1411,7 +1457,7 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "नवीन प्रोफाइल" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgctxt "@title:tab Generic, common options" #| msgid "General" @@ -1419,31 +1465,31 @@ msgctxt "@title Preferences page name" msgid "General" msgstr "सामान्य" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1535,7 +1581,7 @@ msgstr "लिंक खोलू" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1547,29 +1593,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "कमांड:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "कमांड:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1611,7 +1657,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1670,11 +1716,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1737,94 +1783,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "रिमोट कनेक्शन" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "जखन आरंभिक सत्र समाप्त भए जाइछ अछि तँ सत्र केँ स्वचालित बन्न नहि करू." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2031,25 +2077,25 @@ msgstr "आउटपुट" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2115,17 +2161,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 सँ आउटपुट सहेजू" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 एकटा अवैध यूआरएल अछि. आउटपुट सहेजल नहि जाए सकैत अछि." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2162,84 +2229,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "गहरा पेस्टल" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "कारि पर हरिअर" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "लिनक्स रंग" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "कारि पर उज्जर" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "कारि पर उज्जर" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "मूलभूत (एक्सफ्री४)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "लिनक्स कँसोल " -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "सोलारिस कंसोल" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ढूंढल जाए बला पाठ एतय भरू" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "'%1' सत्र मे घंटी" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "द्विचर ढूंढि नहि सकल:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "चेतावनी: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "प्रारंभ करब क' लेल कोनो इंटरेक्टिव शैल ढूँढि नहि सकल." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2248,368 +2333,376 @@ msgstr "" "'%1' केँ ढूंढ नहि सकल, बदला मे '%2' केँ प्रारंभ कएल जाए रहल अछि. कृप्या अपन प्रोफाइल " "सेटिंग जाँचू." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "प्रोग्राम '%1' केँ आर्गुमेंट '%2'.के सँग प्रारंभ नहि कएल जाए सकल." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' सत्र मे शांति" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "कंसोल" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "समाप्त" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "प्रोग्राम '%1' क्रैश भए गेल." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "प्रोग्राम '%1' स्थिति %2 केर सँग बाहर भेल." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "जेड-माडम प्रगति" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1' सत्र मे क्रिया" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "कंसोल" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "कंसोल" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "विभाजित दृश्य बम्माँ/दहिन्ना" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "विभाजित दृश्य शीर्ष/तल" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "इनपुट नकल करू" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "इनपुट नकल करू" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "चयन साटू" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "सभ चुनू" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Mode" msgstr "चुनू" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Line" msgstr "चुनू" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "आउटपुट सहेजू..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "आउटपुट सहेजू..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "प्रोफाइल प्रबंधित करू..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Scrollback" msgid "Clear Scrollback" msgstr "स्क्रालबैक साफ करू" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "स्क्रालबैक साफ करू आ रीसेट करू" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "प्रोफाइल संपादित करू" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "पछिला दृश्य" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "प्रोफाइल संपादित करू" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "एनकोडिंग नियत करू (&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "टैब क' नाम बदलू... (&R)" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "टैब क' नाम बदलू... (&R)" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "&None" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "किछु नहि (&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Copy Input To..." msgid "Copy Input To" msgstr "इनपुट एतय नकल करू..." -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "क्रिया क' लेल मानीटर करू (&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "क्रिया क' लेल मानीटर करू (&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "शान्ति क' लेल मानीटर करू (&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "क्रिया क' लेल मानीटर करू (&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "फौन्ट पैघ करू" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "फौन्ट छोट करू" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "टैब बन्न करू (&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "टर्मिनल विशेषतासभ" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "नवीन प्रोफाइल..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Edit Current Profile..." msgstr "प्रोफाइल प्रबंधित करू..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2618,7 +2711,7 @@ msgstr "" "एकटा प्रोग्राम अखन एहि सत्र मे चलि रहल अछि. की अहाँ सुनिश्चित छी जे अहाँ एकरा बन्द " "कएनाइ चाहैत छी?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2627,19 +2720,19 @@ msgstr "" "प्रोग्राम '%1' अखन एहि सत्र मे चलि रहल अछि. की अहाँ सुनिश्चित छी जे अहाँ एकरा बन्न " "कएनाइ चाहैत छी?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "बन्न करबाक पुष्टि करू" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "टैब बन्न करू (&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2651,40 +2744,40 @@ msgstr "" "एकटा प्रोग्राम अखन एहि सत्र मे चलि रहल अछि. की अहाँ सुनिश्चित छी जे अहाँ एकरा बन्द " "कएनाइ चाहैत छी?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "प्रोग्राम '%1' अखन एहि सत्र मे चलि रहल अछि. की अहाँ सुनिश्चित छी जे अहाँ एकरा बन्न " "कएनाइ चाहैत छी?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2692,20 +2785,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2731,150 +2824,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "बन्न करबाक पुष्टि करू" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "रेगुलर एक्सप्रेशन मिलान करू" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "सभटा केँ उभारू" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "सेट करैत अछि जे की ढूंढल जएनाइ केस-सेंसिटिव हाएत" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "सक्रिय केँ बन्न करू" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgid "Force new tabs" +msgstr "दृश्य अलग करू (&D)" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "सेट करैत अछि जे की ढूंढल जएनाइ केस-सेंसिटिव हाएत" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "सक्रिय केँ बन्न करू" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "सभटा केँ उभारू" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "वर्तमान मे ढूंढल जाए रहल वाक्यांश केर अगिला मिलान केँ ढूँढू" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "रेगुलर एक्सप्रेशन मिलान करू" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2899,74 +3019,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "सेट करैत अछि जे की ढूंढल जएनाइ केस-सेंसिटिव हाएत" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "सभटा केँ उभारू" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "सेट करैत अछि जे की मिलान करब बला पाठसभ केँ उभारल जएनाइ अछि" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2974,92 +3132,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "संकेतक क' लेल मनपसिन्न, स्थिर रंग प्रयोग करू" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3072,26 +3236,24 @@ msgid "Enable memory monitoring:" msgstr "दुनू तरफ पाठ रेंडरिंग सक्षम करू" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3261,109 +3423,128 @@ msgctxt "Do not show a close button" msgid "None" msgstr "किछु नहि (&N)" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "टैब बन्न करू (&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "टैब पट्टी 'नवीन टैब' तथा 'बन्न टैब' बटन देखाबू" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "संकेतक क' लेल मनपसिन्न, स्थिर रंग प्रयोग करू" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "मोजुदा टैब बन्न करू" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "विभाजित दृश्य" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menu bar in new windows" msgid "Show Header:" msgstr "मेनू पट्टी मे नवीन विंडो देखाबू" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3372,14 +3553,14 @@ msgid "Small" msgstr "छोट" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3388,7 +3569,7 @@ msgid "Large" msgstr "पैघ" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3441,8 +3622,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3482,99 +3663,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "आकार: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "बन्न करबाक पुष्टि करू" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "बन्न करबाक पुष्टि करू" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "संकेतक रंग केँ वर्तमान अक्षर केर रंग सँ मिलैत सेट करू" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "चयन साटू" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been आउटपुट कोसस्पैंड कएल गेल अछि " "कंट्रोल+S केँ दबाकए. बहाल करब क' लेल कंट्रोल+Q केँ दबाबू." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "चयन साटू" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "विभाजित दृश्य" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "विभाजित दृश्य बम्माँ/दहिन्ना" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3630,7 +3811,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3638,7 +3819,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "विभाजित दृश्य बम्माँ/दहिन्ना" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3646,7 +3827,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3654,58 +3835,58 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "विभाजित दृश्य शीर्ष/तल" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "विस्तारित दृश्य" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "छोट दृश्य" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "मोजुदा टैब बन्न करू" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "मोजुदा टैब बन्न करू" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "नवीन टैब (&N)" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" @@ -3713,150 +3894,164 @@ msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "पछिला" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "टर्मिनल केर उप्पर प्रदर्शित करैत अछि" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "टर्मिनल केर नीच्चाँ प्रदर्शित करैत अछि" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "टर्मिनल केर उप्पर प्रदर्शित करैत अछि" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "टर्मिनल केर नीच्चाँ प्रदर्शित करैत अछि" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "दृश्य दहिन्ना घसकाबू" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "दृश्य बम्माँ घसकाबू" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "माउस इंटरेक्शन" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "स्थिर लाइनसभ की संख्या:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "दृश्य बम्माँ घसकाबू" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3869,7 +4064,7 @@ msgstr "" "आउटपुट सहेजबाक दौरान एकटा त्रुटि भेल.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3882,13 +4077,13 @@ msgstr "" "आउटपुट सहेजबाक दौरान एकटा त्रुटि भेल.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3988,29 +4183,41 @@ msgstr "डिफाल्ट अक्षर एनकोडिंग:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "स्थिर लाइनसभ की संख्या:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4047,7 +4254,7 @@ msgstr "चयनित रंग योजना केँ संपादि #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4104,12 +4311,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4241,30 +4454,46 @@ msgid "Make the cursor blink regularly" msgstr "संकेतक केँ नियमति टिमटिमाता बनाबू" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "विवरण:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "संकेतक केँ नियमति टिमटिमाता बनाबू" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "विंडो" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4272,25 +4501,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4299,28 +4528,28 @@ msgid "Color:" msgstr "रंग" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "संकेतक बनाबै क' लेल प्रयोग मे लेल जाएबला रंग केँ चुनू" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "टर्मिनल विशेषतासभ" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "टर्मिनल विशेषतासभ" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4328,95 +4557,95 @@ msgid "Terminal contents" msgstr "टर्मिनल विशेषतासभ" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "दुनू तरफ पाठ रेंडरिंग सक्षम करू" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4424,45 +4653,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "संकेतक रंग केँ वर्तमान अक्षर केर रंग सँ मिलैत सेट करू" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "फान्ट" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4470,98 +4699,98 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "दुनू तरफ पाठ रेंडरिंग सक्षम करू" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "संकेतक रंग केँ वर्तमान अक्षर केर रंग सँ मिलैत सेट करू" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "प्रोफाइल संपादित करू" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "सामान्य" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "टैब" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "प्रकटन" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "स्क्राल कए रहल अछि" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "क' बाइंडिंग" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "उन्नत" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4570,31 +4799,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4602,18 +4831,24 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "प्रोफाइल संपादित करू \"%1\"" msgstr[1] "प्रोफाइल संपादित करू \"%1\"" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "नवीन प्रोफाइल..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "प्रोफाइल संपादित करू \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "&None" +msgid "None" +msgstr "किछु नहि (&N)" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4623,7 +4858,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4633,45 +4868,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "चयन साटू" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "दृश्यमय प्रभाव" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "नवीन टर्मिनल सत्र क' लेल चयनित प्रोफाइल केँ मूलभूत रूपेँ सेट करू" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "वातावरण संपादित करू" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4679,45 +4914,45 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "आरंभिक डिरेक्ट्री चुनू" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "नवीन..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "ई रंग योजना मे पारदर्शी पृष्ठभूमि अछि जे अहाँक डेस्कटाप मे समर्थित नहि अछि." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "प्रोफाइल मेटाबू" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4734,7 +4969,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4828,27 +5063,55 @@ msgstr "आरंभिक डिरेक्ट्री क' लेल ब् msgid "Start in same directory as current session" msgstr "वर्तमान टैबक ओही डिरेक्ट्री मे प्रारंभ करू" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "वर्तमान टैबक ओही डिरेक्ट्री मे प्रारंभ करू" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "वातावरण:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "एनवायरनमेंट वेरिएबल तथा संबंधित मूल्यसभक सूची केँ संपादित करू" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "टर्मिनल विशेषतासभ" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4858,33 +5121,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "टर्मिनल एमुलेटर" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "माउस इंटरेक्शन" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4894,9 +5157,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4907,9 +5170,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4920,35 +5183,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "पृष्ठभूमि" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5298,72 +5561,25 @@ msgid "Scrollback:" msgstr "स्क्रालबैक (&c)" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "टैब पट्टी स्थिति:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "टर्मिनल विंडो केर दहिन्ना बाजू मे स्क्रोल पट्टी देखाबू" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "दहिन्ना बाजू मे देखाबू" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "टर्मिनल विंडो केर बम्माँ बाजू मे स्क्रोल पट्टी देखाबू" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "पाठ आकारः" - #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5371,46 +5587,105 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "नुकाएल" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "टर्मिनल विंडो केर दहिन्ना बाजू मे स्क्रोल पट्टी देखाबू" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "दहिन्ना बाजू मे देखाबू" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "टर्मिनल विंडो केर बम्माँ बाजू मे स्क्रोल पट्टी देखाबू" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "पाठ आकारः" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "टैब पट्टी स्थिति:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5514,40 +5789,40 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "किछु नहि (&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "खोजू:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ढूंढल जाए बला पाठ एतय भरू" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "अगिला" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "वर्तमान मे ढूंढल जाए रहल वाक्यांश केर अगिला मिलान केँ ढूँढू" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "पछिला" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5555,88 +5830,88 @@ msgid "Find the previous match for the current search phrase" msgstr "वर्तमान मे ढूंढल जाएल रहल वाक्यांश केर पछिला मिलान केँ ढूंढू" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "खोज पट्टी बन्न करू" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "सक्रिय केँ बन्न करू" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "सेट करैत अछि जे की ढूंढल जएनाइ केस-सेंसिटिव हाएत" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "खोज पट्टी बन्न करू" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "रेगुलर एक्सप्रेशन मिलान करू" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "सभटा केँ उभारू" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "सेट करैत अछि जे की मिलान करब बला पाठसभ केँ उभारल जएनाइ अछि" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "वर्तमान मे ढूंढल जाए रहल वाक्यांश केर अगिला मिलान केँ ढूँढू" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "वर्तमान मे ढूंढल जाए रहल वाक्यांश केर अगिला मिलान केँ ढूँढू" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "वर्तमान मे ढूंढल जाए रहल वाक्यांश केर अगिला मिलान केँ ढूँढू" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "वर्तमान मे ढूंढल जाए रहल वाक्यांश केर अगिला मिलान केँ ढूँढू" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5649,7 +5924,7 @@ msgstr "वर्तमान मे ढूंढल जाए रहल वा msgid "Print Shell" msgstr "शेल" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "&None" msgctxt "@label:listbox No color selected" @@ -5692,6 +5967,14 @@ msgstr "सामान्य टैब शीर्षक फार्मेट msgid "Tab Co&lor:" msgstr "रंग" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "रंग" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5806,41 +6089,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "टैब बन्न करू (&C)" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "दृश्य अलग करू (&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "दृश्य अलग करू (&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "खोज पट्टी बन्न करू" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "दृश्य अलग करू (&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "टैब क' नाम बदलू... (&R)" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "टैब बन्न करू (&C)" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "सक्रिय केँ बन्न करू" + #, fuzzy #~| msgid "&None" #~ msgctxt "Do not save any lines to the scrollback history" diff --git a/local/recipes/kde/konsole/source/po/mk/konsole.po b/local/recipes/kde/konsole/source/po/mk/konsole.po index 36e51644b0..cc158f2425 100644 --- a/local/recipes/kde/konsole/source/po/mk/konsole.po +++ b/local/recipes/kde/konsole/source/po/mk/konsole.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2010-01-29 22:59+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -53,7 +53,7 @@ msgstr "Приказ" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Подели приказ" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "Д&вижење наназад" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number" msgid "Session Toolbar" @@ -180,49 +180,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Оневозможува проѕирни подлоги, дури и ако има системска поддршка." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Ги прикажува достапните профили" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Ја менува вредноста на својство од профилот." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +242,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -238,14 +250,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Аргументи за наредбата" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -266,217 +278,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Текст" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Подлога" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Боја 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Боја 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Боја 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Боја 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Боја 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Боја 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Боја 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Боја 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Текст (интензивен)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Подлога (интензивна)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Боја 1 (интензивна)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Боја 2 (интензивна)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Боја 3 (интензивна)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Боја 4 (интензивна)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Боја 5 (интензивна)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Боја 6 (интензивна)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Боја 7 (интензивна)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Боја 8 (интензивна)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Текст (интензивен)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Подлога (интензивна)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Боја 1 (интензивна)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Боја 2 (интензивна)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Боја 3 (интензивна)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Боја 4 (интензивна)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Боја 5 (интензивна)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Боја 6 (интензивна)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Боја 7 (интензивна)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Боја 8 (интензивна)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -746,6 +758,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Компјутер:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "Постави како стандарден" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -790,7 +836,7 @@ msgstr "" msgid "Copy Location" msgstr "Копирај внес во" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -822,14 +868,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Уреди фонт..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Мазни фонтови" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -867,17 +913,17 @@ msgstr "Комбинација од копчиња" msgid "Output" msgstr "Излез" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Нова листа на поврзувања на копчиња" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Уредување листа на поврзувања на копчиња" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -885,7 +931,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -919,249 +965,249 @@ msgstr "Влез:" msgid "Output:" msgstr "Излез:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Конзола" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Емулатор на терминал" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Поправање грешки и подобрувања" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Емулатор на терминал" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Поправање грешки и подобрувања" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Поправање грешки и подобрувања" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Поправање грешки и подобрувања" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Општи подобрувања" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Поправање грешки" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Поддршка за Соларис и работа со историја" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Поправки на грешки и подобрени перформанси при стартување" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "Важни подобрувања" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1174,14 +1220,14 @@ msgstr "" "Вградена Конзола\n" "Имиња на алатници и сесии" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1194,28 +1240,28 @@ msgstr "" "Вградена Конзола\n" "Општи подобрувања" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Визуелни ефекти" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1228,151 +1274,151 @@ msgstr "" "Код од проектот kvt\n" "Општи подобрувања" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Подобрување на шемите и на избирањата" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "Пренос на SGI" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Пренос на FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Благодарност до многу други.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Ново ливче" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "За&твори ливче" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "Нов &прозорец" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Конзола" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "О&бележувачи" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Нова шема со бои" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Менаџирање профили" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Премести приказ налево" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1387,28 +1433,28 @@ msgstr[1] "" msgstr[2] "" "Имате повеќе ливчиња во овој прозорец. Дали навистина сакате да напуштите?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Потврда за затворање" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Конзола" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Затвори го тековното ливче" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1417,45 +1463,45 @@ msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Имате повеќе ливчиња во овој прозорец. Дали навистина сакате да напуштите?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Нов профил" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Општо" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1546,7 +1592,7 @@ msgstr "Отвори врска" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1558,29 +1604,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Наредба:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Наредба:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1623,7 +1669,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1682,11 +1728,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1749,94 +1795,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Оддалечено поврзувањесо %1:%2..." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Не ја затвора почетната сесија автоматски кога таа ќе заврши." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2041,25 +2087,25 @@ msgstr "Излез" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2123,17 +2169,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Зачувување на излезот од %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 е невалидна адреса. Излезот не можеше да биде зачуван." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2170,84 +2237,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Темни пастели" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Зелено на црно" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Линукс-бои" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Бело на црно" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Бело на црно" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Стандардно (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Линукс-конзола" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Соларис-конзола" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Пребарај го излезот..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Внесете го тука текстот за пребарување" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Ѕвонче во сесијата „%1“" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Не можев да ја пронајдам бин. датотека: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Внимание: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Не можев да пронајдам интерактивна школка за стартување." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2256,366 +2342,374 @@ msgstr "" "Не можев да ја најдам „%1“, наместо тоа ја стартувам „%2“. Проверете ги " "поставувањата на Вашиот профил." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Не можев да ја стартувам програмата „%1“ со аргументи „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Тишина во сесијата „%1“" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Конзола" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Завршено" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Програмата „%1“ падна." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Програмата „%1“ излезе со статус %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Прогрес на ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Активност во сесијата „%1“" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Конзола" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Конзолата не знае како да го отвори обележувачот: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Менаџирај профили..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Конзола" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Копирај" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Подели приказ на лев/десен" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Подели приказ на горен/долен" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Копирање внес" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Копирање внес" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Вметни избор" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Избери ги сите" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Избери" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Избери" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "Зачувај го излезот..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "Зачувај го излезот..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Менаџирај профили..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Scrollback" msgid "Clear Scrollback" msgstr "Движење наназад" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "Исчисти историја и ресетирај" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Уредување профил" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Претходен приказ" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Уредување профил" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Кодирање" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "П&реименувај ливче..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Сит&е ливчиња во тековниот прозорец" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Избе&ри ливчиња..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "&None" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Нема" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Копирај внес во" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Монитор на &активности" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Монитор на &активности" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Монитор на &тишина" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Монитор на &активности" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "Смали приказ" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Зголеми букви" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "За&твори ливче" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Карактеристики на терминалот" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Нов профил..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Уредување на тековниот профил" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2624,7 +2718,7 @@ msgstr "" "Во оваа сесија моментално се извршува програма. Дали навистина сакате да ја " "затворите?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2633,19 +2727,19 @@ msgstr "" "Во оваа сесија моментално работи програмата „%1“. Дали навистина сакате да " "ја затворите?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Потврда за затворање" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "За&твори ливче" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2657,40 +2751,40 @@ msgstr "" "Во оваа сесија моментално се извршува програма. Дали навистина сакате да ја " "затворите?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Во оваа сесија моментално работи програмата „%1“. Дали навистина сакате да " "ја затворите?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2698,20 +2792,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2737,150 +2831,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "Потврда за затворање" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Како регуларен израз" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Означи ги сите" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "Поставува дали пребарувањето разликува големина на букви" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "Затвори активен" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Внесете нов текст за ливчето:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "Поставува дали пребарувањето разликува големина на букви" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "Затвори активен" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Означи ги сите" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Го наоѓа следното совпаѓање за тековната фраза за пребарување" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Како регуларен израз" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2905,74 +3026,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "Поставува дали пребарувањето разликува големина на букви" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Означи ги сите" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Поставува дали пронајдениот текст треба да биде означен" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2980,92 +3139,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Користи сопствена, фиксна боја за покажувачот" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3078,26 +3243,24 @@ msgid "Enable memory monitoring:" msgstr "Овозможи приказ на двонасочен текст" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3268,16 +3431,35 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Нема" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "За&твори ливче" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" @@ -3285,94 +3467,94 @@ msgstr "" "Прикажи го копчињата „Ново ливче“ и „Затвори ливче“ во лентата со ливчиња" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "Користи сопствена, фиксна боја за покажувачот" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Внесете нов текст за ливчето:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Затвори го тековното ливче" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Подели приказ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Прикажи мени" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3380,14 +3562,14 @@ msgid "Small" msgstr "Мала" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3395,7 +3577,7 @@ msgid "Large" msgstr "Голема" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3448,8 +3630,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3489,12 +3671,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Големина: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3502,87 +3684,87 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Потврда за затворање" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Потврда за затворање" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Ја поставува бојата на покажувачот да одговара на тековниот знак" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Вметни избор" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been суспендиран со притискање на Ctrl+S. Притиснете Ctrl+Q за да " "продолжите." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Вметни избор" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Подели приказ" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Подели приказ на лев/десен" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Подели приказ на горен/долен" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3639,7 +3821,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Подели приказ на горен/долен" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3647,7 +3829,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Подели приказ на лев/десен" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3655,7 +3837,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Подели приказ на горен/долен" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3663,210 +3845,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Подели приказ на горен/долен" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Прошири приказ" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Смали приказ" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Затвори го тековното ливче" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Затвори го тековното ливче" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&Ново ливче" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Претходно" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Над приказите на терминалите" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Под приказите на терминалите" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Над приказите на терминалите" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Под приказите на терминалите" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Префрли се на ливче %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Премести приказ надесно" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Премести приказ налево" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Префрли се на ливче %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Интеракција со глушецот" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Фиксен број линии: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Премести приказ налево" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3879,7 +4075,7 @@ msgstr "" "Настана проблем при зачувувањето на излезот.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3892,13 +4088,13 @@ msgstr "" "Настана проблем при зачувувањето на излезот.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -4000,29 +4196,41 @@ msgstr "Стандардно кодирање на знаци:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Фиксен број линии: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4060,7 +4268,7 @@ msgstr "Уредување на избраната шема на бои" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4117,12 +4325,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4253,30 +4467,46 @@ msgid "Make the cursor blink regularly" msgstr "Го прави покажувачот постојано да трепка" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "Опис:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Го прави покажувачот постојано да трепка" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Прозорец" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4284,25 +4514,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4310,28 +4540,28 @@ msgid "Color:" msgstr "Боја" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Избор на бојата што се користи за исцртување на покажувачот" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "Карактеристики на терминалот" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "Карактеристики на терминалот" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4339,95 +4569,95 @@ msgid "Terminal contents" msgstr "Карактеристики на терминалот" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Овозможи приказ на двонасочен текст" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4435,45 +4665,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Ја поставува бојата на покажувачот да одговара на тековниот знак" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Фонт" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4483,100 +4713,100 @@ msgstr "" "и еврејски)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Овозможи приказ на двонасочен текст" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Ја поставува бојата на покажувачот да одговара на тековниот знак" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Уредување профил" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Општо" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Ливчиња" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Изглед" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Движење" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Поврзувања на тастери" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Напредно" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4585,31 +4815,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4617,18 +4847,24 @@ msgstr[0] "Уредување %1 профил: %2" msgstr[1] "Уредување %1 профили: %2" msgstr[2] "Уредување %1 профили: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Нов профил..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Уредување профил „%1“" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "&None" +msgid "None" +msgstr "&Нема" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4639,7 +4875,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4650,46 +4886,46 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "Вметни избор" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "Визуелни ефекти" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "" "Го поставува избраниот профил како стандарден за новите терминалски сесии" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Уредување околина" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4698,24 +4934,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Избор на иницијална папка" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Ново..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4724,20 +4960,20 @@ msgstr "" "Оваа шема на бои користи проѕирна подлога која изгледа дека не е поддржана " "од Вашата работна површина" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Избриши профил" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4754,7 +4990,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4851,27 +5087,55 @@ msgstr "Прелистајте за почетна папка" msgid "Start in same directory as current session" msgstr "Стартувај во истата папка како и тековното ливче" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Стартувај во истата папка како и тековното ливче" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Околина:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Уредете ја листата на променливи на околина и придружените вредности" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Карактеристики на терминалот" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4881,33 +5145,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Емулатор на терминал" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Интеракција со глушецот" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4917,9 +5181,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4930,9 +5194,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4943,35 +5207,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Подлога" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5331,51 +5595,94 @@ msgid "Scrollback:" msgstr "Д&вижење наназад" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Скриена" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Позиција на лента со ливчиња:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" "Ја прикажува лентата за движење на левата страна од прозорецот на терминалот" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5383,68 +5690,37 @@ msgid "Ri&ght side" msgstr "Прикажи на десната страна" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" "Ја прикажува лентата за движење на левата страна од прозорецот на терминалот" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Големина на текст:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Скриена" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Позиција на лента со ливчиња:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5549,42 +5825,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Нема" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Барање:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Внесете го тука текстот за пребарување" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Следно" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Го наоѓа следното совпаѓање за тековната фраза за пребарување" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Претходно" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5592,88 +5868,88 @@ msgid "Find the previous match for the current search phrase" msgstr "Го наоѓа претходното совпаѓање за тековната фраза за пребарување" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Ја затвора ленатата за пребарување" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Затвори активен" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Поставува дали пребарувањето разликува големина на букви" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Ја затвора ленатата за пребарување" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Како регуларен израз" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Означи ги сите" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Поставува дали пронајдениот текст треба да биде означен" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Го наоѓа следното совпаѓање за тековната фраза за пребарување" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Го наоѓа следното совпаѓање за тековната фраза за пребарување" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Го наоѓа следното совпаѓање за тековната фраза за пребарување" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Го наоѓа следното совпаѓање за тековната фраза за пребарување" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5686,7 +5962,7 @@ msgstr "Го наоѓа следното совпаѓање за тековна msgid "Print Shell" msgstr "Школка" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "&None" msgctxt "@label:listbox No color selected" @@ -5729,6 +6005,13 @@ msgstr "Формат на наслов на нормални ливчиња" msgid "Tab Co&lor:" msgstr "Боја" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Боја" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5843,41 +6126,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "За&твори ливче" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "О&ддели приказ" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "О&ддели приказ" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Ја затвора ленатата за пребарување" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "О&ддели приказ" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "П&реименувај ливче..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "За&твори ливче" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Затвори активен" + #, fuzzy #~| msgid "&None" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6315,9 +6612,6 @@ msgstr "За&твори ливче" #~ msgid "Decrease Text Size" #~ msgstr "Намали букви" -#~ msgid "Search Output..." -#~ msgstr "Пребарај го излезот..." - #~ msgid "Find Next" #~ msgstr "Најди следно" diff --git a/local/recipes/kde/konsole/source/po/ml/konsole.po b/local/recipes/kde/konsole/source/po/ml/konsole.po index ffd9514f1d..cfe9cc4b63 100644 --- a/local/recipes/kde/konsole/source/po/ml/konsole.po +++ b/local/recipes/kde/konsole/source/po/ml/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole trunk\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2020-02-05 14:49+0000\n" "Last-Translator: Subin Siby \n" "Language-Team: SMC \n" @@ -50,7 +50,7 @@ msgstr "കാഴ്ച" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "വിഭജിച്ച കാഴ്ച" @@ -86,7 +86,7 @@ msgid "S&crollback" msgstr "പുറകിലോട്ടു് നീക്കുക (&C)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format msgid "Session Toolbar" msgstr "സെഷനിന്റെ സംഖ്യ" @@ -168,46 +168,58 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "സിസ്റ്റം പിന്തുണയ്ക്കുമെങ്കിലും പുറകിലുള്ളതു് കാണുന്നതു് പ്രാവര്‍ത്തികമല്ലാതാക്കുക." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "ലഭ്യമായ പ്രൊഫൈലുകള്‍ കാണിയ്ക്കുക" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "പ്രൊഫൈലിലെ ഗുണത്തിന്റെ വില മാറ്റുക" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -215,7 +227,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -223,13 +235,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "ആജ്ഞയോടൊപ്പം കൊടുത്ത ഐച്ഛികങ്ങള്‍" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -247,187 +259,187 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy msgctxt "@item:intable palette" msgid "Foreground" msgstr "അക്ഷരനിറം" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy msgctxt "@item:intable palette" msgid "Background" msgstr "പശ്ചാത്തലം" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy msgctxt "@item:intable palette" msgid "Color 1" msgstr "നിറം 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy msgctxt "@item:intable palette" msgid "Color 2" msgstr "നിറം 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy msgctxt "@item:intable palette" msgid "Color 3" msgstr "നിറം 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy msgctxt "@item:intable palette" msgid "Color 4" msgstr "നിറം 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy msgctxt "@item:intable palette" msgid "Color 5" msgstr "നിറം 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy msgctxt "@item:intable palette" msgid "Color 6" msgstr "നിറം 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy msgctxt "@item:intable palette" msgid "Color 7" msgstr "നിറം 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy msgctxt "@item:intable palette" msgid "Color 8" msgstr "നിറം 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "അക്ഷരനിറം (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "പശ്ചാത്തലം (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "നിറം 1 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "നിറം 2 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "നിറം 3 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "നിറം 4 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "നിറം 5 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "നിറം 6 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "നിറം 7 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "നിറം 8 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "അക്ഷരനിറം (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "പശ്ചാത്തലം (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "നിറം 1 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "നിറം 2 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "നിറം 3 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "നിറം 4 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "നിറം 5 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "നിറം 6 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "നിറം 7 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "നിറം 8 (തീവ്രമായ)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -683,6 +695,39 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "ഹോസ്റ്റ്:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "സഹജമായി സജ്ജീകരിയ്ക്കുക" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -726,7 +771,7 @@ msgstr "" msgid "Copy Location" msgstr "ഇന്‍പുട്ട് പകര്‍ത്തേണ്ടതു്" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -757,13 +802,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "അക്ഷരസഞ്ചയം ചിട്ടപ്പെടുത്തുക..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "മൃദുലമായ അക്ഷരസഞ്ചയങ്ങള്‍" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -800,17 +845,17 @@ msgstr "ഏതെല്ലാം അക്ഷരങ്ങള്‍" msgid "Output" msgstr "ഔട്ട്പുട്ട്" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "പുതിയ കുറുക്കുവഴി അക്ഷരങ്ങളുടെ പട്ടിക" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "ചിട്ടപ്പെടുത്തുക കുറുക്കുവഴി അക്ഷരങ്ങളുടെ പട്ടിക" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -818,7 +863,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -852,225 +897,225 @@ msgstr "ഇന്‍പുട്ട്:" msgid "Output:" msgstr "ഫലം:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format msgctxt "@title" msgid "Konsole" msgstr "കണ്‍സോള്‍" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "ടെര്‍മിനലിന്റെ അനുകരണം" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "കര്‍ട്ട് വി. ഹിന്‍ഡന്‍ബര്‍ഗ്" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "പിഴവു് തിരുത്തലും പൊതുവായുള്ള മെച്ചപ്പെടുത്തലുകളും" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "റോബര്‍ട്ട് നൈറ്റ്" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "ലാര്‍സ് ഡൊയെല്ലെ" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "ടെര്‍മിനലിന്റെ അനുകരണം" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "പിഴവു് തിരുത്തലും പൊതുവായുള്ള മെച്ചപ്പെടുത്തലുകളും" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "പിഴവു് തിരുത്തലും പൊതുവായുള്ള മെച്ചപ്പെടുത്തലുകളും" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "പിഴവു് തിരുത്തലും പൊതുവായുള്ള മെച്ചപ്പെടുത്തലുകളും" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "വാല്‍ഡോ ബാസ്റ്റിയന്‍" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "സ്റ്റീഫന്‍ ബിന്നര്‍" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "പൊതുവായുള്ള മെച്ചപ്പെടുത്തലുകള്‍ " -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "ക്രിസ് മാക്കിമര്‍" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "പിഴവു് തിരുത്തലുകള്‍" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "സ്റ്റീഫന്‍ കുലോ" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "സോളാരിസിനുള്ള പിന്തുണയും ചരിത്രവും" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "അലക്സാണ്ടര്‍ ന്യൂണ്ടോര്‍ഫ്" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "പിഴവു് തിരുത്തലുകളും തുടങ്ങുമ്പോളുള്ള പ്രകടനത്തിലെ മെച്ചപ്പെടുത്തലും" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "പീറ്റര്‍ സില്‍വ" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "അടയാളപ്പെടുത്തുന്നതിലെ മെച്ചപ്പെടുത്തലുകള്‍" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "ലോട്സി ബൊലോനി" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1080,13 +1125,13 @@ msgstr "" "തുന്നിച്ചേര്‍ത്ത കണ്‍സോളും\n" "പണിയായുധപ്പട്ടയും സെഷനുകളുടെ പേരുകളും" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "ഡേവിഡ് ഫോരി" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1096,25 +1141,25 @@ msgstr "" "തുന്നിച്ചേര്‍ത്ത കണ്‍സോളും\n" "പോതുവായുള്ള മെച്ചപ്പെടുത്തലുകള്‍" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "അന്റോണിയോ ലറോസ" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "കാഴ്ചയിലെ അത്ഭുതങ്ങള്‍" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "മത്തിയാസ് എട്രിച്ച്" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1124,132 +1169,132 @@ msgstr "" "കെവിടി പ്രൊജക്റ്റില്‍ നിന്നുള്ള കോഡുകള്‍\n" "പൊതുവായുള്ള മെച്ചപ്പെടുത്തലുകള്‍" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "വാര്‍വിക്ക് അലിസണ്‍" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "സ്കീമയും പദാവലി തെരഞ്ഞെടുക്കുന്നതിലെ മെച്ചപ്പെടുത്തലുകളും" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "ഡാന്‍ പിലോണ്‍" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "എസ്ജിഐ പോര്‍ട്ട്" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "കെവിന്‍ സ്ട്രീറ്റ്" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "ഫ്രീബിഎസ്ഡി പോര്‍ട്ട്" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "സ്വെന്‍ ഫിഷര്‍" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "ഡേല്‍ എം. ഫ്ലാവെന്‍" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "മാര്‍ട്ടിന്‍ ജോണ്‍സ്" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "ലാര്‍സ് നോള്‍" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "മറ്റു് പലര്‍ക്കും നന്ദി.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&പുതിയ കിളിവാതില്‍" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "കിളിവാതില്‍ &അടയ്ക്കുക" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "പുതിയ &ജാലകം" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "കണ്‍സോള്‍" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "അടയാളകുറിപ്പുകൾ (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format msgid "&Window Color Scheme" msgstr "പുതിയ നിറങ്ങളുടെ പദ്ധതി" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "പ്രൊഫൈലുകള്‍ കൈകാര്യം ചെയ്യുക" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "കാഴ്ച ഇടത്തോട്ടു് മാറ്റുക" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1258,67 +1303,67 @@ msgid_plural "" msgstr[0] "ഈ ജാലകത്തില്‍ ഒന്നിലധികം കിളിവാതിലുകളുണ്ടു്, പുറത്തുകടക്കണമെന്നു് നിങ്ങള്‍ക്കുറപ്പുണ്ടോ?" msgstr[1] "ഈ ജാലകത്തില്‍ ഒന്നിലധികം കിളിവാതിലുകളുണ്ടു്, പുറത്തുകടക്കണമെന്നു് നിങ്ങള്‍ക്കുറപ്പുണ്ടോ?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "അടയ്ക്കുന്നതുറപ്പാക്കുക" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "കണ്‍സോള്‍" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "ഇപ്പോഴത്തെ കിളിവാതില്‍ അടയ്ക്കുക" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "ഈ ജാലകത്തില്‍ %1 കിളിവാതിലുകളുണ്ട്, പുറത്തുകടക്കണമെന്ന് നിങ്ങള്‍ക്കുറപ്പുണ്ടോ?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "പുതിയ പ്രൊഫൈല്‍" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "പൊതുവായുള്ള" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1405,7 +1450,7 @@ msgstr "ഫയല്‍ മാനേജര്‍ തുറക്കുക." #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1417,29 +1462,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "ആജ്ഞ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "ആജ്ഞ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1479,7 +1524,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1537,11 +1582,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format msgid "SSH Config" msgstr "അടയ്ക്കുന്നതുറപ്പാക്കുക" @@ -1602,93 +1647,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "വിദൂര ബന്ധം" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format msgid "You can't delete an automatically added entry." msgstr "ആദ്യത്തെ സെഷന്‍ അവസാനിയ്ക്കുമ്പോള്‍ തന്നെ അതു് അടയ്ക്കരുതു്." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1888,25 +1933,25 @@ msgstr "ഔട്ട്പുട്ട്" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format msgid "Default profile" msgstr "പ്രൊഫൈല്‍ നീക്കം ചെയ്യുക" @@ -1965,17 +2010,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 ല്‍ നിന്നുള്ള ഫലം സൂക്ഷിയ്ക്കുക" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 സാധുവല്ലാത്തൊരു യുആര്‍എല്ലായതു് കൊണ്ടു് ഫലം സൂക്ഷിയ്ക്കാന്‍ സാധ്യമല്ല." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2011,82 +2077,99 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "ഇരുണ്ട പാസ്റ്റലുകള്‍" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "കറുപ്പില്‍ പച്ച" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "ലിനക്സിന്റെ നിറങ്ങള്‍" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format msgid "Red on Black" msgstr "കറുപ്പില്‍ വെള്ള" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "കറുപ്പില്‍ വെള്ള" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "സഹജമായ (എക്സ്‌ഫ്രീ 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "ലിനക്സ് കണ്‍സോള്‍" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "സോളാരിസ് കണ്‍സോള്‍" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "തെരയേണ്ട പദാവലി ഇവിടെ നല്‍കുക" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "'%1' സെഷനില്‍ മണിയടിച്ചു" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "ബൈനറി കണ്ടുപിടിയ്ക്കാന്‍ സാധിച്ചില്ല: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "മുന്നറിയിപ്പു്:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "പരസ്പരവിനിമയത്തിനു് കഴിവുള്ളൊരു ഷെല്‍ തുടങ്ങാന്‍ സാധിച്ചില്ല." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2095,404 +2178,411 @@ msgstr "" "'%1' കണ്ടുപിടിയ്ക്കാന്‍ സാധിച്ചില്ല, ഇതിനുപകരം '%2' തുടങ്ങുന്നു. നിങ്ങളുടെ പ്രൊഫൈലിന്റെ " "സജ്ജീകരണം പരിശോധിയ്ക്കുക." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "'%2' ഐച്ഛികങ്ങളുപയോഗിച്ചു് '%1' എന്ന പ്രോഗ്രാം തുടങ്ങാന്‍ സാധിച്ചില്ല." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' സെഷനില്‍ നിശബ്ദത" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format msgid "Show session" msgstr "കണ്‍സോള്‍" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "പൂര്‍ണ്ണമായി" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "'%1' എന്ന പ്രോഗ്രാം തകര്‍ന്നു." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "%2 എന്ന വിലയോടെ '%1' എന്ന പ്രോഗ്രാം പുറത്തു വന്നു." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ഇസഡ്‌മോഡത്തിന്റെ പുരോഗതി" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1' സെഷനില്‍ മാറ്റങ്ങള്‍" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "കണ്‍സോള്‍" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "കണ്‍സോള്‍" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ഫയല്‍ മാനേജര്‍ തുറക്കുക." -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "ഇടത്തും/വലത്തുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "മുകളിലും/താഴെയുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ഇന്‍പുട്ട് പകര്‍ത്തുക" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ഇന്‍പുട്ട് പകര്‍ത്തുക" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "തെരഞ്ഞെടുത്തതു് പകര്‍ത്തുക" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format msgid "&Select All" msgstr "എല്ലാം തെരഞ്ഞെടുക്കുക" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format msgid "Select &Mode" msgstr "തെരഞ്ഞെടുക്കുക" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format msgid "Select &Line" msgstr "തെരഞ്ഞെടുക്കുക" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "ഫലം സൂക്ഷിയ്ക്കുക..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "ഫലം സൂക്ഷിയ്ക്കുക..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format msgid "Adjust Scrollback..." msgstr "സ്ക്രോള്‍ബാക്ക് കൈകാര്യം ചെയ്യുക..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "പുറകോട്ടുള്ളതു് വൃത്തിയാക്കുക" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format msgid "Clear Scrollback and Reset" msgstr "പുറകോട്ടുള്ളതു് വൃത്തിയാക്കി && വീണ്ടുംതുടങ്ങുക" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "പ്രൊഫൈല്‍ ചിട്ടപ്പെടുത്തുക" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "മുമ്പത്തെ കാഴ്ച" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format msgid "Switch Profile" msgstr "പ്രൊഫൈല്‍ ചിട്ടപ്പെടുത്തുക" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&എന്‍കോഡിങ്ങ് ക്രമീകരിക്കുക" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "കിളിവാതിലിന്റെ പേരു് മാറ്റുക..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&എല്ല കിളിവാതിലുകലൂം നിലവിലുള്ള ജാലകത്തില്‍ " -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&തെരഞ്ഞെടുത്ത കിളിവാതിലികള്‍..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&ഒന്നുമില്ല" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "ഇന്‍പുട്ട് പകര്‍ത്തേണ്ടതു്" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "&മാറ്റങ്ങള്‍ക്കായി നിരീക്ഷിയ്ക്കുക" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&മാറ്റങ്ങള്‍ക്കായി നിരീക്ഷിയ്ക്കുക" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "നിശബ്ദതയ്ക്കായി നിരീക്ഷിയ്ക്കുക" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format msgid "Monitor for Process Finishing" msgstr "മാറ്റങ്ങള്‍ക്കായി നിരീക്ഷിയ്ക്കുക" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "അക്ഷരത്തിന്റെ വലിപ്പം കൂട്ടുക" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "അക്ഷരവലുപ്പം ചുരുക്കുക" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format msgid "&Continue Task" msgstr "കിളിവാതില്‍ &അടയ്ക്കുക" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format msgid "&Terminate Task" msgstr "ടെര്‍മിനലിന്റെ കഴിവുകള്‍" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format msgid "Create New Profile..." msgstr "പുതിയ പ്രൊഫൈല്‍" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format msgid "Edit Current Profile..." msgstr "ഇപ്പോഴത്തെ പ്രൊഫൈല്‍ കൈകാര്യം ചെയ്യുക..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "ഒരു പ്രോഗ്രാം ഈ സെഷനില്‍ പ്രവര്‍ത്തിച്ചുകൊണ്ടിരിയ്ക്കുന്നു. അതു് അടയ്ക്കണമെന്നുറപ്പുണ്ടോ?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "'%1' എന്ന പ്രോഗ്രാം ഈ സെഷനില്‍ പ്രവര്‍ത്തിച്ചുകൊണ്ടിരിയ്ക്കുന്നു. അതു് അടയ്ക്കണമെന്നുറപ്പുണ്ടോ?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "അടയ്ക്കുന്നതുറപ്പാക്കുക" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "കിളിവാതില്‍ &അടയ്ക്കുക" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "ഒരു പ്രോഗ്രാം ഈ സെഷനില്‍ പ്രവര്‍ത്തിച്ചുകൊണ്ടിരിയ്ക്കുന്നു. അതു് അടയ്ക്കണമെന്നുറപ്പുണ്ടോ?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "'%1' എന്ന പ്രോഗ്രാം ഈ സെഷനില്‍ പ്രവര്‍ത്തിച്ചുകൊണ്ടിരിയ്ക്കുന്നു. അതു് അടയ്ക്കണമെന്നുറപ്പുണ്ടോ?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2500,20 +2590,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2536,144 +2626,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "അടയ്ക്കുന്നതുറപ്പാക്കുക" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -msgid "Match using regular expressions" -msgstr "റെഗുലര്‍ എക്സ്‌പ്രഷന്‍ വച്ചു് പൊരുത്തം നോക്കുക" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -msgid "Highlight all matches" -msgstr "എല്ലാം എടുത്തു് കാണിയ്ക്കുക" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "തെരയുമ്പോള്‍ വലിയക്ഷര-ചെറിയക്ഷര വ്യത്യാസം പരിഗണിയ്ക്കുക" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -msgid "Case sensitive" -msgstr "സജീവമായതടയ്ക്കുക" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +msgid "Force new tabs" +msgstr "പുതിയ കിളിവാതിലിനുള്ള പദാവലി നല്‍കുക:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "തെരയുമ്പോള്‍ വലിയക്ഷര-ചെറിയക്ഷര വ്യത്യാസം പരിഗണിയ്ക്കുക" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +msgid "Case sensitive" +msgstr "സജീവമായതടയ്ക്കുക" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +msgid "Highlight all matches" +msgstr "എല്ലാം എടുത്തു് കാണിയ്ക്കുക" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "ഇപ്പോള്‍ നല്‍കിയ വാചകത്തിന്റെ അടുത്ത പൊരുത്തം കണ്ടുപിടിയ്ക്കുക" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +msgid "Match using regular expressions" +msgstr "റെഗുലര്‍ എക്സ്‌പ്രഷന്‍ വച്ചു് പൊരുത്തം നോക്കുക" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2698,71 +2814,109 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format msgid "Search is case sensitive" msgstr "തെരയുമ്പോള്‍ വലിയക്ഷര-ചെറിയക്ഷര വ്യത്യാസം പരിഗണിയ്ക്കുക" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format msgid "Highlight all search matches" msgstr "എല്ലാം എടുത്തു് കാണിയ്ക്കുക" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format msgid "Sets whether matching text should be highlighted" msgstr "പൊരുത്തമുള്ള പദാവലി എടുത്തു് കാണിയ്ക്കണമോ എന്നു് സജ്ജീകരിയ്ക്കുന്നു" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2770,91 +2924,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "ഇഷ്ടപ്പെട്ട മാറ്റേണ്ടാത്ത കര്‍സറിന്റെ നിറം" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2866,26 +3026,24 @@ msgid "Enable memory monitoring:" msgstr "രണ്ടു്-ദിശയിലുമുള്ള ചിത്രീകരണം പ്രാവര്‍ത്തികമാക്കുക" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3040,16 +3198,34 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&ഒന്നുമില്ല" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +msgid "Show Search Tabs button:" +msgstr "കിളിവാതില്‍ &അടയ്ക്കുക" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format msgid "Show 'New Tab' button" msgstr "" @@ -3057,110 +3233,110 @@ msgstr "" "കാണിയ്ക്കുക" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format msgid "Use user-defined stylesheet:" msgstr "ഇഷ്ടപ്പെട്ട മാറ്റേണ്ടാത്ത കര്‍സറിന്റെ നിറം" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format msgid "Put new tabs:" msgstr "പുതിയ കിളിവാതിലിനുള്ള പദാവലി നല്‍കുക:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format msgid "After current &tab" msgstr "ഇപ്പോഴത്തെ കിളിവാതില്‍ അടയ്ക്കുക" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format msgid "Splits" msgstr "വിഭജിച്ച കാഴ്ച" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format msgid "Show Header:" msgstr "മെനുപ്പട്ട കാണിയ്ക്കുക" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "ചെറുതു്" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "വലുതു്" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3212,8 +3388,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3252,95 +3428,95 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "വലിപ്പം: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format msgid "Confirm Paste" msgstr "അടയ്ക്കുന്നതുറപ്പാക്കുക" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "അടയ്ക്കുന്നതുറപ്പാക്കുക" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "ഇപ്പോഴുള്ള അക്ഷരവുമായി പൊരുത്തമുള്ള നിറമായി കര്‍സര്‍ സജ്ജീകരിയ്ക്കുക" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "തെരഞ്ഞെടുത്തതു് പകര്‍ത്തുക" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been താത്കാലികമായി നിര്‍ത്തിയിരിക്കുന്നു. തുടരാനായി കണ്ട്രോള്‍+Q അമര്‍" "ത്തുക." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format msgid "&Paste Location" msgstr "തെരഞ്ഞെടുത്തതു് പകര്‍ത്തുക" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "വിഭജിച്ച കാഴ്ച" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "ഇടത്തും/വലത്തുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "മുകളിലും/താഴെയുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3393,7 +3569,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "മുകളിലും/താഴെയുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3401,7 +3577,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "ഇടത്തും/വലത്തുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3409,7 +3585,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "മുകളിലും/താഴെയുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3417,198 +3593,210 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "മുകളിലും/താഴെയുമായി കാഴ്ച വിഭജിയ്ക്കുക" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "കാഴ്ച വികസിപ്പിയ്ക്കുക" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "കാഴ്ച ചുരുക്കുക" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "ഇപ്പോഴത്തെ കിളിവാതില്‍ അടര്‍ത്തിമാറ്റുക" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ഇപ്പോഴത്തെ കിളിവാതില്‍ അടര്‍ത്തിമാറ്റുക" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&പുതിയ കിളിവാതില്‍" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "മുമ്പത്തെ" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ടെര്‍മിനലുകള്‍ കാണിയ്ക്കുന്നതിനു് മുകളില്‍" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ടെര്‍മിനലുകള്‍ കാണിയ്ക്കുന്നതിനു് താഴെ" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ടെര്‍മിനലുകള്‍ കാണിയ്ക്കുന്നതിനു് മുകളില്‍" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ടെര്‍മിനലുകള്‍ കാണിയ്ക്കുന്നതിനു് താഴെ" + +#: ViewManager.cpp:298 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "ടാബ് %1-ലേക്ക് മാറുക" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "കാഴ്ച വലത്തോട്ടു് മാറ്റുക" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "കാഴ്ച ഇടത്തോട്ടു് മാറ്റുക" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "ടാബ് %1-ലേക്ക് മാറുക" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format msgid "Semantic hints " msgstr "മൌസുമായുള്ള വിനിമയം" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "നിശ്ചിത എണ്ണം വരികള്‍ മാത്രം:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "കാഴ്ച ഇടത്തോട്ടു് മാറ്റുക" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3621,7 +3809,7 @@ msgstr "" "ഫലം സൂക്ഷിയ്ക്കുന്നതിലൊരു പ്രശ്നം സംഭവിച്ചു..\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3634,13 +3822,13 @@ msgstr "" "ഫലം സൂക്ഷിയ്ക്കുന്നതിലൊരു പ്രശ്നം സംഭവിച്ചു..\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3739,29 +3927,41 @@ msgstr "സഹജമായ അക്ഷരത്തിന്റെ എന്‍ msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "നിശ്ചിത എണ്ണം വരികള്‍ മാത്രം:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3797,7 +3997,7 @@ msgstr "തെരഞ്ഞെടുത്ത നിറങ്ങളുടെ പ #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3851,12 +4051,18 @@ msgstr "കടും നിറങ്ങള്‍ കട്ടിയുള്ള #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3976,29 +4182,44 @@ msgid "Make the cursor blink regularly" msgstr "കര്‍സറിനെ എപ്പോഴും മിന്നുന്നതാക്കുക" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +msgid "Animation:" +msgstr "വിവരണം:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "കര്‍സറിനെ എപ്പോഴും മിന്നുന്നതാക്കുക" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format msgid "Window:" msgstr "ജാലകം" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4006,145 +4227,145 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format msgctxt "Border color options" msgid "Color:" msgstr "നിറം" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "കര്‍സര്‍ വരയ്ക്കാനുപയോഗിയ്ക്കേണ്ട നിറം തെരഞ്ഞെടുക്കുക" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format msgid "Inactive Terminals:" msgstr "ടെര്‍മിനലിന്റെ കഴിവുകള്‍" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format msgid "Active Terminals:" msgstr "ടെര്‍മിനലിന്റെ കഴിവുകള്‍" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "ടെര്‍മിനലിന്റെ കഴിവുകള്‍" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format msgid "Enable word mode text rendering" msgstr "രണ്ടു്-ദിശയിലുമുള്ള ചിത്രീകരണം പ്രാവര്‍ത്തികമാക്കുക" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4152,43 +4373,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format msgid "Brahmic scripts characters" msgstr "ഇപ്പോഴുള്ള അക്ഷരവുമായി പൊരുത്തമുള്ള നിറമായി കര്‍സര്‍ സജ്ജീകരിയ്ക്കുക" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format msgid "Emoji Font:" msgstr "അക്ഷരസഞ്ചയം" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4198,95 +4419,95 @@ msgstr "" "എന്നിവയ്ക്കു് മാത്രം ബാധകം)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format msgid "Bi-Directional text rendering" msgstr "രണ്ടു്-ദിശയിലുമുള്ള ചിത്രീകരണം പ്രാവര്‍ത്തികമാക്കുക" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "ഇപ്പോഴുള്ള അക്ഷരവുമായി പൊരുത്തമുള്ള നിറമായി കര്‍സര്‍ സജ്ജീകരിയ്ക്കുക" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "പ്രൊഫൈല്‍ ചിട്ടപ്പെടുത്തുക" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "പൊതുവായുള്ള" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "കിളിവാതിലുകള്‍" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "ചമയം" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "പുറകിലേയ്ക്കു് നീക്കുന്നതു്" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format msgid "Key bindings" msgstr "കുറുക്കുവഴി അക്ഷരങ്ങള്‍" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "നൂതനമായ" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4295,48 +4516,53 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "പ്രൊഫൈല്‍ ചിട്ടപ്പെടുത്തുന്നു: %2" msgstr[1] "%1 പ്രൊഫൈലുകള്‍ ചിട്ടപ്പെടുത്തുന്നു: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format msgid "Create New Profile" msgstr "പുതിയ പ്രൊഫൈല്‍" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "പ്രൊഫൈല്‍ ചിട്ടപ്പെടുത്തുക \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +msgid "None" +msgstr "&ഒന്നുമില്ല" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4346,7 +4572,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4356,43 +4582,43 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format msgid "System Notifications" msgstr "തെരഞ്ഞെടുത്തതു് പകര്‍ത്തുക" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format msgid "Visual Bell" msgstr "കാഴ്ചയിലെ അത്ഭുതങ്ങള്‍" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "പുതിയ ടെര്‍മിനല്‍ സെഷനുകള്‍ക്കു് സഹജമായതായി തെരഞ്ഞെടുത്ത പ്രൊഫൈല്‍ സജ്ജീകരിയ്ക്കുക" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "പരിസരം ചിട്ടപ്പെടുത്തുക" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4400,23 +4626,23 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "തുടക്കത്തിലെ തട്ടു് തെരഞ്ഞെടുക്കുക" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format msgid "Get New..." msgstr "പുതിയ..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4425,19 +4651,19 @@ msgstr "" "ഈ നിറങ്ങളുടെ പദ്ധതിയ്ക്കു് പുറകില്‍ കാണാവുന്ന തരത്തിലുള്ള പശ്ചാത്തലമുണ്ടെങ്കിലും നിങ്ങളുടെ " "പണിയിടത്തില്‍ അതിനുള്ള പിന്തുണയുള്ളതായി കാണുന്നില്ല" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format msgid "Default for file type" msgstr "പ്രൊഫൈല്‍ നീക്കം ചെയ്യുക" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4454,7 +4680,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4543,26 +4769,53 @@ msgstr "തുടക്കത്തിലെ തട്ടിനു് വേണ msgid "Start in same directory as current session" msgstr "നിലവിലുള്ള കിളിവാതിലിലെ അതേ തട്ടില്‍ തന്നെ തുടങ്ങുക" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +msgid "Enter same container as current session" +msgstr "നിലവിലുള്ള കിളിവാതിലിലെ അതേ തട്ടില്‍ തന്നെ തുടങ്ങുക" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "പരിസരം:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "പരിസര വാരിയബിളുകളും ബന്ധപ്പെട്ട വിലകളുടേയും പട്ടിക തിരുത്തുക" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format msgid "Initial terminal si&ze:" msgstr "ടെര്‍മിനലിന്റെ കഴിവുകള്‍" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4572,31 +4825,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format msgid "&Terminal bell mode:" msgstr "ടെര്‍മിനലിന്റെ അനുകരണം" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format msgid "Semantic Integration" msgstr "മൌസുമായുള്ള വിനിമയം" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4606,9 +4859,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4619,9 +4872,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4632,34 +4885,34 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format msgid "Red error background:" msgstr "പശ്ചാത്തലം" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format msgid "Alternating background:" msgstr "പശ്ചാത്തലം" @@ -4992,114 +5245,126 @@ msgid "Scrollback:" msgstr "പുറകിലോട്ടു് &നീക്കുക" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "ഒളിപ്പിയ്ക്കുക" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -msgid "Scrollbar position:" -msgstr "കിളിവാതിലുകളുടെ പട്ടയുടെ സ്ഥാനം:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "പുറകിലേയ്ക്കു് നീക്കാനുള്ള പട്ട ടെര്‍മിനലിന്റെ വലതു് വശത്തു് കാണിയ്ക്കുക" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "വലതു് വശത്തു് കാണിയ്ക്കുക" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "പുറകിലേയ്ക്കു് നീക്കാനുള്ള പട്ട ടെര്‍മിനലിന്റെ ഇടതു് വശത്തു് കാണിയ്ക്കുക" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "പദാവലിയുടെ വലിപ്പം:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "ഒളിപ്പിയ്ക്കുക" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +msgid "Scrollbar position:" +msgstr "കിളിവാതിലുകളുടെ പട്ടയുടെ സ്ഥാനം:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5200,115 +5465,115 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&ഒന്നുമില്ല" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "കണ്ടുപിടിയ്ക്കുക:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "തെരയേണ്ട പദാവലി ഇവിടെ നല്‍കുക" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "അടുത്തതു്" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "ഇപ്പോള്‍ നല്‍കിയ വാചകത്തിന്റെ അടുത്ത പൊരുത്തം കണ്ടുപിടിയ്ക്കുക" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "മുമ്പത്തെ" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "ഇപ്പോള്‍ നല്‍കിയ വാചകത്തിന്റെ മുമ്പത്തെ പൊരുത്തം കണ്ടുപിടിയ്ക്കുക" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 #, fuzzy, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "തെരയാനുള്ള പട്ട അടയ്ക്കുക" - -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "സജീവമായതടയ്ക്കുക" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "തെരയുമ്പോള്‍ വലിയക്ഷര-ചെറിയക്ഷര വ്യത്യാസം പരിഗണിയ്ക്കുക" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "തെരയാനുള്ള പട്ട അടയ്ക്കുക" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "റെഗുലര്‍ എക്സ്‌പ്രഷന്‍ വച്ചു് പൊരുത്തം നോക്കുക" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "എല്ലാം എടുത്തു് കാണിയ്ക്കുക" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "പൊരുത്തമുള്ള പദാവലി എടുത്തു് കാണിയ്ക്കണമോ എന്നു് സജ്ജീകരിയ്ക്കുന്നു" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "ഇപ്പോള്‍ നല്‍കിയ വാചകത്തിന്റെ അടുത്ത പൊരുത്തം കണ്ടുപിടിയ്ക്കുക" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "ഇപ്പോള്‍ നല്‍കിയ വാചകത്തിന്റെ അടുത്ത പൊരുത്തം കണ്ടുപിടിയ്ക്കുക" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "ഇപ്പോള്‍ നല്‍കിയ വാചകത്തിന്റെ അടുത്ത പൊരുത്തം കണ്ടുപിടിയ്ക്കുക" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5319,7 +5584,7 @@ msgstr "ഇപ്പോള്‍ നല്‍കിയ വാചകത്തി msgid "Print Shell" msgstr "ഷെല്‍" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5360,6 +5625,12 @@ msgstr "സാധാരണയുള്ള കിളിവാതിലുകള msgid "Tab Co&lor:" msgstr "നിറം" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +msgid "&Activity Tab Color:" +msgstr "നിറം" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5454,37 +5725,50 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "കിളിവാതില്‍ &അടയ്ക്കുക" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "കിളിവാതില്‍ &വേര്‍പ്പെടുത്തുക" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "കിളിവാതില്‍ &വേര്‍പ്പെടുത്തുക" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "തെരയാനുള്ള പട്ട അടയ്ക്കുക" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "കിളിവാതില്‍ &വേര്‍പ്പെടുത്തുക" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "കിളിവാതിലിന്റെ പേരു് മാറ്റുക..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "കിളിവാതില്‍ &അടയ്ക്കുക" +#, fuzzy +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "സജീവമായതടയ്ക്കുക" + #, fuzzy #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" diff --git a/local/recipes/kde/konsole/source/po/mr/konsole.po b/local/recipes/kde/konsole/source/po/mr/konsole.po index 9986dbd0e5..283c6c3b7a 100644 --- a/local/recipes/kde/konsole/source/po/mr/konsole.po +++ b/local/recipes/kde/konsole/source/po/mr/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2013-03-28 14:37+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -55,7 +55,7 @@ msgstr "दृश्य" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "दृश्य विभाजित करा" @@ -91,7 +91,7 @@ msgid "S&crollback" msgstr "स्क्रोलबॅक (&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -177,46 +177,58 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "प्रणाली समर्थन पुरवित असल्यावरही, पारदर्शीय पार्श्वभूमी अकार्यान्वित करा." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "उपलब्ध प्रोफाईल्सची यादी दर्शवा" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "प्रोफाईल गुणधर्माचे मूल्य बदलू नका." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -224,7 +236,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,13 +244,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "आदेश करिता पुरविले गेलेले बाब" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -258,107 +270,107 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "पृष्ठभूमी" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "पार्श्वभूमी" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "रंग 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "रंग 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "रंग 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "रंग 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "रंग 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "रंग 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "रंग 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "रंग 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "पृष्ठभूमी (तीव्र)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "पार्श्वभूमी (तीव्र)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "रंग 1 (तीव्र)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "रंग 2 (तीव्र)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "रंग 3 (तीव्र)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "रंग 4 (तीव्र)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "रंग 5 (तीव्र)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "रंग 6 (तीव्र)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "रंग 7 (तीव्र)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "रंग 8 (तीव्र)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Foreground (Intense)" @@ -366,7 +378,7 @@ msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "पृष्ठभूमी (तीव्र)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -374,7 +386,7 @@ msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "पार्श्वभूमी (तीव्र)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 1 (Intense)" @@ -382,7 +394,7 @@ msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "रंग 1 (तीव्र)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 2 (Intense)" @@ -390,7 +402,7 @@ msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "रंग 2 (तीव्र)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 3 (Intense)" @@ -398,7 +410,7 @@ msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "रंग 3 (तीव्र)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 4 (Intense)" @@ -406,7 +418,7 @@ msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "रंग 4 (तीव्र)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 5 (Intense)" @@ -414,7 +426,7 @@ msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "रंग 5 (तीव्र)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 6 (Intense)" @@ -422,7 +434,7 @@ msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "रंग 6 (तीव्र)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 7 (Intense)" @@ -430,7 +442,7 @@ msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "रंग 7 (तीव्र)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 8 (Intense)" @@ -438,7 +450,7 @@ msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "रंग 8 (तीव्र)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -701,6 +713,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "यजमान:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "&Set as Default" +msgid " [default]" +msgstr "मूलभूतसारखे निश्चित करा (&S)" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -745,7 +791,7 @@ msgstr "" msgid "Copy Location" msgstr "इनपुट यावर प्रतिकृत करा" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -777,14 +823,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "फॉन्ट निवडा..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "मृदू फॉन्ट" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -821,17 +867,17 @@ msgstr "कि संयुक्तपण" msgid "Output" msgstr "आऊटपुट" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "नवीन कि बांधणी यादी" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "किं बांधणी यादी संपादित करा" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -839,7 +885,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -873,68 +919,68 @@ msgstr "इनपुट:" msgid "Output:" msgstr "आऊटपुट:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "कंसोल" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "टर्मिनल एम्युलेटर" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "सामान्य पालक, बग निर्धारण व सामान्य सुधारणा" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "मूळ लेखक" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -942,56 +988,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "सामान्य पालक, बग निर्धारण व सामान्य सुधारणा" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "बग निर्धारण व सामान्य सुधारणा" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -999,104 +1045,104 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "बग निर्धारण व सामान्य सुधारणा" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "वाल्डो बास्तियान" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "स्टीफन बिन्नर" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "सामान्य सुधारणा" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "ख्रिस माचेमर" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "बग निर्धारण" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "स्टीफन कुलौ" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "सोलेरिस समर्थन व इतिहास" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "अलेक्जेंडर न्यून्दॉर्फ" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "बग निर्धारण व सुधारित सुरुवातीची कार्यक्षमता" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "पीटर सिल्वा" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "सुधारणा करत आहे" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1106,13 +1152,13 @@ msgstr "" "अंतर्भूतीत कंसोल\n" "साधनपट्टी व सत्र नाव" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "डेविड फ़ॉउर" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1122,25 +1168,25 @@ msgstr "" "अंतर्भूतीत कंसोल\n" "सामान्य सुधारणा" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "दृश्यास्पद परिणाम" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "मात्थिआस एट्ट्रीच" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1150,121 +1196,121 @@ msgstr "" "kvt प्रकल्प पासूनचे कोड\n" "सामान्य सुधारणा" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "स्किमा व पाठ्य निवड सुधारणा" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "डान पिलोन" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI पोर्ट" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "केल्विन स्ट्रीट" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD पोर्ट" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "स्वेन फिशर" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "डेल एम. फ्लेवेन" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "मार्टिन जोन्स" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "लार्स क्नोल" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "इतर अनेकांचे आभार.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "नवीन टॅब (&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "टॅब प्रतिकृत करा (&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "नवीन चौकट (&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "चौकट बंद करा" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "ओळखचिन्ह (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "नवीन रंग सुत्रयोजना" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "रूपरेषा व्यवस्थापीत करा..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "सक्रिय मेन्यू" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -1272,13 +1318,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "टॅब डावीकडे हलवा" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 tab open in this window. Do you still want to quit?" @@ -1291,25 +1337,25 @@ msgid_plural "" msgstr[0] "या चौकटीत %1 उघडा टॅब आहे, तुम्हाला नक्की बाहेर पडायचे आहे का?" msgstr[1] "या चौकटीत %1 उघडे टॅब आहेत, तुम्हाला नक्की बाहेर पडायचे आहे का?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "बंद करण्याची खात्री करा" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "चौकट बंद करा (&W)" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "वर्तमान टॅब बंद करा (&T)" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 tab open in this window. Do you still want to quit?" @@ -1319,7 +1365,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "या चौकटीत %1 उघडा टॅब आहे, तुम्हाला नक्की बाहेर पडायचे आहे का?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1327,37 +1373,37 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "नवीन रूपरेषा" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "सामान्य" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1451,7 +1497,7 @@ msgstr "फाईल व्यवस्थापक उघडा" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1463,29 +1509,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "आदेश :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "आदेश :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1529,7 +1575,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1589,11 +1635,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1656,95 +1702,95 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "दूरस्थ जुळवणी" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "समाप्त होतेवेळी प्रारंभिक सत्र आपोआप बंद करू नका." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1953,25 +1999,25 @@ msgstr "आऊटपुट पर्याय" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "छपाईयंत्राकरिता सुलभ पद्धत (&F)(काळसर पाठ्य, पार्श्वभूमी नाही)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "मूलभूत रूपरेषा" @@ -2036,17 +2082,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 पासून आऊटपुट साठवा" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 अवैध URL आहे, आऊटपुट साठवले जाऊ शकत नाही." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2082,460 +2149,488 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "गडद पेस्टलस्" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "काळ्यावर हिरवा" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "लिनक्स रंग" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "काळ्यावर लाल" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "सोलराइझ्ड" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solarized" msgid "Solarized Light" msgstr "सोलराइझ्ड" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "काळ्यावर पांढरा" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "मूलभूत (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux कन्सोल" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris कन्सोल" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "वेब शोध" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "शोध करिता पाठ्य येथे दाखल करा" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "सत्र '%1' अंतर्गत bell" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "बायनरी शोधू शकत नाही: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "इशारा : " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "प्रारंभ करण्याकरिता परस्पर संवाद शेल शोधू शकत." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "'%1' आढळले नाही, त्याऐवजी '%2' सुरु करत आहे. कृपया प्रोफाईल संयोजना तपासा." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "कार्यक्रम '%1' बाब '%2' सह प्रारंभ करू शकत नाही." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "सत्र '%1' अंतर्गत शांतपणा" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "सत्र बंद करा (&C)" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "संपले" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "कार्यक्रम '%1' क्रॅश झाले." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "कार्यक्रम '%1' स्थिती %2 सह बाहेर पडले." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem प्रगती" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "सत्र '%1' अंतर्गत क्रिया" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "कंसोल" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "'%1' चा याने शोध घ्या" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "वेब शॉर्टकट संयोजीत करा..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "सत्र बंद करा (&C)" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "फाईल व्यवस्थापक उघडा" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "प्रतिकृत करा (&C)" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "दृश्य डावे/उजवे असे विभाजित करा" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "दृश्य वर/खाली असे विभाजित करा" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "इनपुट प्रतिकृत करा" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "इनपुट प्रतिकृत करा" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "निवड चिटकवा" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "वेब शोध" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "सर्व निवडा (&S)" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Mode" msgstr "पाठ्य निवडा" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select Text" msgid "Select &Line" msgstr "पाठ्य निवडा" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "आऊटपुट असा साठवा (&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "आऊटपुट असा साठवा (&A)..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "स्क्रीन छापा (&P)..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "स्क्रोलबॅक सुस्थित करा..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "स्क्रोलबॅक नष्ट करा" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "स्क्रोलबॅक नष्ट करा व पुन्हस्थापित करा" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "प्रोफाईल संपादित करा" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "पूर्वीचे दृश्य" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "रूपरेषा बदला" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "एन्कोडिंग निश्चित करा (&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "टॅबचे नाव बदला (&R)..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "वर्तमान चौकटीतील सर्व टॅब (&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "टॅब निवडा (&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "काही नाही (&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "इनपुट यावर प्रतिकृत करा" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "क्रिया करिता नियंत्रण करा (&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "क्रिया करिता नियंत्रण करा (&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "क्रिया करिता नियंत्रण करा (&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "फॉन्ट मोठा करा" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "फॉन्ट लहान करा" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "पाठ्य आकार वाढवा" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "संकेत पाठवा" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "कार्य थांबवा (&S)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "कार्य चालू ठेवा (&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "कार्यात अडथळा आणा (&I)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "कार्य बंद करा (&T)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "कार्य संपवा (&K)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "वापरकर्ता संकेत &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "वापरकर्ता संकेत &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile..." msgstr "नवीन रूपरेषा (&N)..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "वर्तमान प्रोफाईल संपादित करा..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "वर्तमानक्षणी या सत्र अंतर्गत कार्यक्रम कार्यरत आहे. तुम्हाला नक्की बंद करायचे आहे?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "कार्यक्रम '%1' वर्तमानक्षणी या सत्र अंतर्गत कार्यरत आहे. तुम्हाला नक्की बंद करायचे?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "बंद निश्चित करा" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "टॅब बंद करा (&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2543,36 +2638,39 @@ msgid "" msgstr "" "वर्तमानक्षणी या सत्रा अंतर्गत कार्यक्रम कार्यरत आहे. तुम्हाला बळपूर्वक बंद करायचे आहे का?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "कार्यक्रम '%1' वर्तमानक्षणी या सत्रा अंतर्गत कार्यरत आहे. तुम्हाला बळपूर्वक बंद करायचे का?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2580,20 +2678,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2617,81 +2715,76 @@ msgctxt "@title:window" msgid "Configure" msgstr "बंद निश्चित करा" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "वेब शोध" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "रेग्यूलर एक्सप्रेशन जुळवा" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "सर्व जुळण्या ठळक करा" +#| msgctxt "@info:tooltip" +#| msgid "Create new tab" +msgid "Force new tabs" +msgstr "नवीन टॅब निर्माण करा :" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2699,61 +2792,38 @@ msgid "Sets whether the search is case sensitive" msgstr "शोध अक्षर आकार संवेदनशील आहे का ते निश्चित करते" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Case sensitive" msgid "Case sensitive" msgstr "अक्षर आकार संवेदनशील" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, kde-format -msgid "Notifications:" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "सर्व जुळण्या ठळक करा" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "वेब शोध" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -2761,11 +2831,67 @@ msgid "Sets whether search should stop instead of wrapping" msgstr "वर्तमान शोध वाक्यरचना करिता पुढील जुळवणी शोधा" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "रेग्यूलर एक्सप्रेशन जुळवा" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2790,41 +2916,79 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2832,7 +2996,7 @@ msgid "Search is case sensitive" msgstr "शोध अक्षर आकार संवेदनशील आहे का ते निश्चित करते" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Highlight all matches" @@ -2840,7 +3004,7 @@ msgid "Highlight all search matches" msgstr "सर्व जुळण्या ठळक करा" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether matching text should be highlighted" @@ -2848,19 +3012,19 @@ msgid "Sets whether matching text should be highlighted" msgstr "जुळणारे पाठ्य ठळक करायचे की नाही ते निश्चित करतो" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2868,92 +3032,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "कर्सर करिता ऐच्छिक, ठराविक रंगचा वापर करा" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2966,26 +3136,24 @@ msgid "Enable memory monitoring:" msgstr "Bi-Directional पाठ्य रेनडरींग कार्यान्वित करा" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3157,9 +3325,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "काही नाही (&N)" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "टॅब बंद करा (&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3167,34 +3354,34 @@ msgid "Miscellaneous:" msgstr "किरकोळ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "'नवीन टॅब' व 'टॅब बंद करा' बटन दर्शवा" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "कर्सर करिता ऐच्छिक, ठराविक रंगचा वापर करा" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3202,7 +3389,7 @@ msgid "Behavior" msgstr "वर्तन" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Create new tab" @@ -3210,60 +3397,60 @@ msgid "Put new tabs:" msgstr "नवीन टॅब निर्माण करा :" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "वर्तमान टॅब बंद करा" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "दृश्य विभाजित करा" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "मेन्यू पट्टी दर्शवा" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3271,14 +3458,14 @@ msgid "Small" msgstr "लहान" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3286,7 +3473,7 @@ msgid "Large" msgstr "मोठे" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3339,8 +3526,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3381,98 +3568,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "आकार: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "चिटकविण्याची खात्री करा" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" msgid "Confirm Paste" msgstr "चिटकविण्याची खात्री करा" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "कर्सर रंगला वर्तमान अक्षरशी जुळविण्याकरिता निश्चित करा" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "निवड चिटकवा" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been Ctrl+S दाबून आऊटपुट सस्पेंड केले गेले आहे. पुन्हप्रारंभ करण्याकरिता Ctrl+Q दाबा." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "संचयीका येथे बदला (&D)" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "स्थान चिटकवा (&P)" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "दृश्य विभाजित करा" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "दृश्य डावे/उजवे असे विभाजित करा" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "दृश्य वर/खाली असे विभाजित करा" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3527,7 +3714,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "दृश्य वर/खाली असे विभाजित करा" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3535,7 +3722,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "दृश्य डावे/उजवे असे विभाजित करा" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3543,7 +3730,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "दृश्य वर/खाली असे विभाजित करा" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3551,37 +3738,37 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "दृश्य वर/खाली असे विभाजित करा" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "दृश्य विस्तारीत करा" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "दृश्य लहान करा" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3589,7 +3776,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "वर्तमान टॅब वेगळा करा (&E)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3597,93 +3784,107 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "वर्तमान टॅब वेगळा करा (&E)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "पुढील टॅब" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "मागील टॅब" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "टर्मिनल क्षेत्राच्या वरच्या बाजूस" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "टर्मिनल क्षेत्राच्या खालच्या बाजूस" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "टर्मिनल क्षेत्राच्या वरच्या बाजूस" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "टर्मिनल क्षेत्राच्या खालच्या बाजूस" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "शेवटच्या टॅब कडे जा" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3691,7 +3892,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "टॅब उजवीकडे हलवा" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3699,49 +3900,49 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "टॅब डावीकडे हलवा" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "टॅब %1 कडे जा" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "माऊस संवाद" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "ओळ संख्या निश्चित करा: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3749,13 +3950,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "टॅब डावीकडे हलवा" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3768,7 +3969,7 @@ msgstr "" "आऊटपुट संचयीत करतेवेळी अडचण आढळली.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3781,13 +3982,13 @@ msgstr "" "आऊटपुट संचयीत करतेवेळी अडचण आढळली.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3889,29 +4090,41 @@ msgstr "मूलभूत कॅरेक्टर एन्कोडिंग msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "ओळ संख्या निश्चित करा: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3948,7 +4161,7 @@ msgstr "निवडलेले रंग सुत्रयोजना सं #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4005,12 +4218,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4142,16 +4361,33 @@ msgid "Make the cursor blink regularly" msgstr "कर्सरला नियमीतस्वरूपी लुकलुक करण्यास सज्ज करा" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "सक्रिय मेन्यू" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "कर्सरला नियमीतस्वरूपी लुकलुक करण्यास सज्ज करा" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4159,14 +4395,14 @@ msgid "Miscellaneous" msgstr "किरकोळ" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "चौकट" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4174,25 +4410,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4201,28 +4437,28 @@ msgid "Color:" msgstr "रंग" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "कर्सर रेखाटण्याकरिता वापरलेले रंग निवडा" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "टर्मिनल गुणधर्म" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "टर्मिनल गुणधर्म" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4230,95 +4466,95 @@ msgid "Terminal contents" msgstr "टर्मिनल गुणधर्म" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Bi-Directional पाठ्य रेनडरींग कार्यान्वित करा" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4326,45 +4562,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "कर्सर रंगला वर्तमान अक्षरशी जुळविण्याकरिता निश्चित करा" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "फॉन्ट" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4374,98 +4610,98 @@ msgstr "" "करिता वैध)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Bi-Directional पाठ्य रेनडरींग कार्यान्वित करा" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "कर्सर रंगला वर्तमान अक्षरशी जुळविण्याकरिता निश्चित करा" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "प्रोफाईल संपादित करा" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "सामान्य" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "टॅब" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "दर्शन" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "सरकणे" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "कळफलक" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "कि बाईन्डींग" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "माऊस" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "प्रगत" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4474,49 +4710,56 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "प्रोफाईल संपादित करत आहे : %2" msgstr[1] "%1 प्रोफाईल संपादित करत आहे : %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile" msgstr "नवीन रूपरेषा (&N)..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "प्रोफाईल \"%1\" संपादित करा" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "काही नाही (&N)" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4526,7 +4769,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4536,46 +4779,46 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Paste Location" msgid "System Notifications" msgstr "स्थान चिटकवा (&P)" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "दृश्यास्पद परिणाम" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "नवीन टर्मिनल सत्र करिता निवडलेले प्रोफाईल यांस निश्चित करा" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "एनवायर्नमेन्ट संपादित करा" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4583,45 +4826,45 @@ msgid_plural " seconds" msgstr[0] " सेकंद" msgstr[1] " सेकंद" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "प्रारंभिक संचयीका निवडा" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "नवीन..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "हे रंग सुत्रयोजना पारदर्शक पार्श्वभूमीचा वापर करते जे डेस्कटॉपवर समर्थीत नाही" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "मूलभूत रूपरेषा" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4638,7 +4881,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4730,27 +4973,55 @@ msgstr "प्रारंभिक संचयीका निवडा" msgid "Start in same directory as current session" msgstr "वर्तमान टॅब नुरूप समान संचयीका अंतर्गत प्रारंभ करा" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "वर्तमान टॅब नुरूप समान संचयीका अंतर्गत प्रारंभ करा" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "वातावरण:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "एनवायर्नमेंट परिवर्तनीय व संबंधित मूल्याची यादी संपादित करा" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "टर्मिनल गुणधर्म" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4760,7 +5031,7 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4768,26 +5039,26 @@ msgid "&Terminal bell mode:" msgstr "टर्मिनल एम्युलेटर" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "माऊस संवाद" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4797,9 +5068,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4810,9 +5081,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4823,22 +5094,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4846,13 +5117,13 @@ msgid "Red error background:" msgstr "पार्श्वभूमी" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5195,50 +5466,93 @@ msgid "Scrollback:" msgstr "स्क्रोलबॅक" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "लपविलेले" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "टॅब पट्टीचे स्थान:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "टर्मिनल चौकटच्या उजव्या बाजूस स्क्रोल पट्टी दर्शवा" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5246,67 +5560,36 @@ msgid "Ri&ght side" msgstr "डाव्या बाजूस दर्शवा" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "टर्मिनल चौकटच्या डाव्या बाजूस स्क्रोल पट्टी दर्शवा" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "पाठ्य आकर:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "लपविलेले" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "टॅब पट्टीचे स्थान:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5412,7 +5695,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "काही नाही (&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5420,96 +5703,84 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "शोधा :" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "शोध करिता पाठ्य येथे दाखल करा" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "पुढील" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "वर्तमान शोध वाक्यरचना करिता पुढील जुळवणी शोधा" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "मागील" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "वर्तमान शोध वाक्यरचना करिता पूर्वीची जुळवणी शोधा" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "शोध पट्टी बंद करा" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "अक्षर आकार संवेदनशील" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "शोध अक्षर आकार संवेदनशील आहे का ते निश्चित करते" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "शोध पट्टी बंद करा" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "रेग्यूलर एक्सप्रेशन जुळवा" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "सर्व जुळण्या ठळक करा" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "जुळणारे पाठ्य ठळक करायचे की नाही ते निश्चित करतो" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgctxt "@info:tooltip" -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "वर्तमान शोध वाक्यरचना करिता पुढील जुळवणी शोधा" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 @@ -5517,10 +5788,24 @@ msgstr "" #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "वर्तमान शोध वाक्यरचना करिता पुढील जुळवणी शोधा" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "वर्तमान शोध वाक्यरचना करिता पुढील जुळवणी शोधा" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5528,7 +5813,7 @@ msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "वर्तमान शोध वाक्यरचना करिता पुढील जुळवणी शोधा" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5541,7 +5826,7 @@ msgstr "वर्तमान शोध वाक्यरचना करित msgid "Print Shell" msgstr "छपाई शेल" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5586,6 +5871,14 @@ msgstr "सामान्य टॅब शिर्षक स्वरूप" msgid "Tab Co&lor:" msgstr "रंग" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "रंग" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5688,7 +5981,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "टॅब बंद करा" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5696,7 +5989,15 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "टॅब वेगळा करा (&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "टॅब वेगळा करा (&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:whatsthis" #| msgid "Close the active tab" @@ -5704,26 +6005,30 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "सक्रिय टॅब बंद करा" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "टॅब वेगळा करा (&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "टॅबचे नाव बदला (&R)..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "टॅब बंद करा (&C)" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "अक्षर आकार संवेदनशील" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" diff --git a/local/recipes/kde/konsole/source/po/ms/konsole.po b/local/recipes/kde/konsole/source/po/ms/konsole.po index 86f9049c90..0e43235fb7 100644 --- a/local/recipes/kde/konsole/source/po/ms/konsole.po +++ b/local/recipes/kde/konsole/source/po/ms/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2006-05-07 16:35+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -51,7 +51,7 @@ msgstr "Sa&iz" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "Jangan papar bar skrol" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session name:" msgid "Session Toolbar" @@ -169,47 +169,59 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List available session profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Senaraikan profil sesi yang boleh didapatkan" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -217,7 +229,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -225,14 +237,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments for 'command'" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumen untuk 'arahan'" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -253,201 +265,201 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Latarbelakang" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Latarbelakang" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Warna 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Warna 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Warna 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Warna 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Latarbelakang (Ketepuan)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Latarbelakang (Ketepuan)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Latarbelakang (Ketepuan)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Latarbelakang (Ketepuan)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Warna 1" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Warna 2" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Warna 3" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Warna 4" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Warna VIM" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "New Color Scheme" msgctxt "@item" @@ -713,6 +725,38 @@ msgstr "A&tas" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Piawai Konsol" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -759,7 +803,7 @@ msgstr "" msgid "Copy Location" msgstr "Tepek Pilihan" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -791,13 +835,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Pilih Warna &Tab..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -836,17 +880,17 @@ msgstr "Tutup Pengesahan" msgid "Output" msgstr "Simpan Sejarah" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Senarai Kekunci Pintas Baru" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Sunting Senarai Kekunci Pintas" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -854,7 +898,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -888,228 +932,228 @@ msgstr "" msgid "Output:" msgstr "Simpan Sejarah" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "&Tutup Pelagak Terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@info:credit" msgid "Original author" msgstr "&Tutup Pelagak Terminal" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "pembetulan pepijat" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris menyokong dan berfungsi dalam sejarah" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1119,13 +1163,13 @@ msgstr "" "partifikasi\n" "Bar alat dana nama sesi" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1133,25 +1177,25 @@ msgid "" "General improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1159,141 +1203,141 @@ msgid "" "General improvements" msgstr "pembetulan pepijat dan pengelokan" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "pengelokan pemilihan dan skema" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI Port" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Port FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Tutup sesi semasa" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Tutup sesi semasa" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Tetingkap Baru" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Cengkerang pada Tanda Laman" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Skema Warna Baru" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Sim&pan &Profil Sesi" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Aktifkan Menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Pinda&h Sesi Kiri" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1302,71 +1346,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Tutup sesi semasa" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Sim&pan &Profil Sesi" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format #| msgid "Tab &Options" msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "&Opsyen Tab" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1452,7 +1496,7 @@ msgstr "Sa&iz" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1464,27 +1508,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1524,7 +1568,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1580,11 +1624,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1643,93 +1687,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Penyelarasan Saiz" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "List available session profiles" msgid "Delete selected entry" @@ -1931,25 +1975,25 @@ msgstr "&Opsyen Tab" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Mod &mesra pencetak (teks hitam, tiada latar belakang)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default profile" @@ -2012,17 +2056,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Simpan Sejarah" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Tidak dapat menulis ke fail." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2058,513 +2124,538 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Hijau di atas Hitam" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Warna Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Putih di atas Hitam" -#: schemas.cpp:10 +#: schemas.cpp:11 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized" msgstr "Solaris" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized Light" msgstr "Solaris" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Putih di atas Hitam" -#: schemas.cpp:13 +#: schemas.cpp:14 #, fuzzy, kde-format #| msgid "XTerm (XFree 4.x.x)" msgid "Default (XFree 4)" msgstr "XTerm (XFree 4.x.x)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, fuzzy, kde-format #| msgid "linux console" msgid "Linux console" msgstr "konsol linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, fuzzy, kde-format #| msgid "linux console" msgid "Solaris console" msgstr "konsol linux" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Kosong&kan Sejarah" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Loceng dalam sesi '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Tidak dapat simpan sejarah." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Senyap dalam sesi '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Session" msgid "Show session" msgstr "Sesi" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Session '%1' exited unexpectedly." msgid "Program '%1' crashed." msgstr "Sesi '%1' keluar tanpa dijangka." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format #| msgid "Session '%1' exited with status %2." msgid "Program '%1' exited with status %2." msgstr "Sesi '%1' keluar dengan status %2" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Kemajuan ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktiviti dalam sesi '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Carian rentetan '%1' tidak ditemui." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Choice of Shortcut Keys" msgid "Configure Web Shortcuts..." msgstr "Pilihan Kekunci Jalan Pintas" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "Tutu&p Sesi" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format msgid "Copy" msgstr "A&tas" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Left-Right" msgstr "Kecilkan Fon" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Top-Bottom" msgstr "Kecilkan Fon" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Tepek Pilihan" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "&Select All" msgstr "&Pilih..." -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Mode" msgstr "&Pilih..." -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Se&lect..." msgid "Select &Line" msgstr "&Pilih..." -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "Simpan Sejarah" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "Simpan Sejarah" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Ceta&k Skrin..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Adjust Scrollback..." msgstr "Sim&pan &Profil Sesi" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Do not display scrollbar" msgid "Clear Scrollback" msgstr "Jangan papar bar skrol" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Messages" msgid "Clear Scrollback and Reset" msgstr "Buang Mesej" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Next Profile" msgstr "Sim&pan &Profil Sesi" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgid "Previous Profile" msgstr "Cari Sebe&lumnya" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Switch Profile" msgstr "Sim&pan &Profil Sesi" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Set &Encoding" msgstr "P&enenkodan" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Configure or Rename Tab..." msgstr "&Tamatkan Tugas" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "Select &Tab Color..." msgid "&Select Tabs..." msgstr "Pilih Warna &Tab..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Tiada" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Muat naik &ZModem ..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Pe&rhatikan Aktiviti" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Pe&rhatikan Aktiviti" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Per&hatikan Senyap" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Pe&rhatikan Aktiviti" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Besarkan Fon" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgid "&Shrink Font" msgid "Shrink Font" msgstr "&Kecilkan Fon" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "Kiri&m Isyarat" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Gan&tung Tugas" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Teruska&n Tugas" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Tun&ggu" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Gang&gu Tugas" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Terminate Task" msgstr "&Tamatkan Tugas" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Hent&i Tugas" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Isyarat Pengguna &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Isyarat Pengguna &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile..." msgstr "Sim&pan &Profil Sesi" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Current Profile..." msgstr "Sim&pan &Profil Sesi" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:button" msgid "Close Program" msgstr "Tutup sesi semasa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "Muat naik &ZModem ..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

              A ZModem file transfer attempt has been detected, but no suitable " @@ -2579,7 +2670,7 @@ msgstr "" "yang sesuai ditemui dalam sistem.\n" "

              Anda mungkin ingin memasang pakej 'rzsz' atau 'lrzsz'.\n" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, fuzzy, kde-format #| msgid "" #| "

              The current session already has a ZModem file transfer in progress." @@ -2587,7 +2678,7 @@ msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Sesi semasa sudah ada fail ZModem yang sedang dipindahkan." -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

              No suitable ZModem software was found on the system.\n" @@ -2599,7 +2690,7 @@ msgstr "" "

              Tiada perisian ZModem yang sesuai ditemui dalam sistem.\n" "

              Anda ingin pasang pakej 'rzsz' atau 'lrzsz'.\n" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, fuzzy, kde-format #| msgid "Select Files to Upload" msgid "Select Files for ZModem Upload" @@ -2625,148 +2716,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Setkan tajuk tetingkap" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "Sebagai ungkapan &biasa" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" -msgstr "Tutu&p Sesi" +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Setkan tajuk tetingkap" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgid "Force new tabs" +msgstr "&Leraikan Sesi" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "Pemberitahua&n Sistem" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "Tutu&p Sesi" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "Sebagai ungkapan &biasa" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2791,72 +2909,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "Tutu&p Sesi" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2864,91 +3020,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2960,26 +3122,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3145,107 +3305,126 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Tiada" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Close the current session" +msgid "Show Search Tabs button:" +msgstr "Tutup sesi semasa" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Close the current session" msgid "Show 'New Tab' button" msgstr "Tutup sesi semasa" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close the current session" msgid "After current &tab" msgstr "Tutup sesi semasa" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Splits" msgstr "Kecilkan Fon" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format msgid "Show Header:" msgstr "Sembunyikan &Bar Menu" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "&Bell" msgctxt "@option:radio Small height/width of splitter widget" @@ -3253,21 +3432,21 @@ msgid "Small" msgstr "Lo&ceng" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3320,8 +3499,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3361,96 +3540,96 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Saiz: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, fuzzy, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Anda pasti ingin menutup sesi semasa?" msgstr[1] "Anda pasti ingin menutup sesi semasa?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Tepek Pilihan" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "Ubah direktori kerja kepada 'dir'" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Tepek Pilihan" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View" msgstr "Kecilkan Fon" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Kecilkan Fon" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Kecilkan Fon" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Kecilkan Fon" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Kecilkan Fon" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Kecilkan Fon" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Kecilkan Fon" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Kecilkan Fon" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Tutup sesi semasa" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Tutup sesi semasa" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Tutup sesi semasa" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Cari Sebe&lumnya" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "&Tutup Pelagak Terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "&Tutup Pelagak Terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "&Tutup Pelagak Terminal" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "&Tutup Pelagak Terminal" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Tukar ke Tab" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "M&ove Session Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Pin&dah Sesi Kanan" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Pinda&h Sesi Kiri" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Tukar ke Tab" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic hints " msgstr "Penyambung Perkataan" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line numbers " msgstr "&Nombor dari baris " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Pinda&h Sesi Kiri" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3735,7 +3928,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3743,13 +3936,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3846,29 +4039,41 @@ msgstr "P&enenkodan" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line Numbers:" msgstr "&Nombor dari baris " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3906,7 +4111,7 @@ msgstr "Senaraikan profil sesi yang boleh didapatkan" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, fuzzy, kde-format msgid "Edit..." @@ -3962,12 +4167,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4088,31 +4299,46 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "Hidup&kan" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Aktifkan Menu" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "New &Window" msgid "Window:" msgstr "&Tetingkap Baru" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4120,25 +4346,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "VIM Colors" msgctxt "Border color options" @@ -4146,27 +4372,27 @@ msgid "Color:" msgstr "Warna VIM" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "Saiz terminal adalah tetap" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "Saiz terminal adalah tetap" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@title:group" @@ -4174,95 +4400,95 @@ msgid "Terminal contents" msgstr "&Tamatkan Tugas" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "Penjarakan &Baris" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4270,43 +4496,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4314,99 +4540,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile" msgstr "Sim&pan &Profil Sesi" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, fuzzy, kde-format #| msgid "Sc&rollbar" msgid "Scrolling" msgstr "Bar Sk&rol" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "Papan &Kekunci" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Key bindings" msgstr "P&enenkodan" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4415,13 +4641,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4432,19 +4658,19 @@ msgstr "" "Fail dengan nama ini sudah wujud.\n" "Anda ingin menulisgantinya?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Editing profile: %2" @@ -4452,19 +4678,25 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "Sim&pan &Profil Sesi" msgstr[1] "Sim&pan &Profil Sesi" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile" msgstr "Sim&pan &Profil Sesi" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile \"%1\"" msgstr "Sim&pan &Profil Sesi" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "N&one" +msgid "None" +msgstr "&Tiada" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4474,7 +4706,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4484,46 +4716,46 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "Loceng Sist&em" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "Pemberitahua&n Sistem" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "Locen&g Tampak" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "List available session profiles" msgid "Default profile for new terminal sessions in %1" msgstr "Senaraikan profil sesi yang boleh didapatkan" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4531,43 +4763,43 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format msgid "Get New..." msgstr "Baru" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default for file type" msgstr "Sim&pan &Profil Sesi" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4584,7 +4816,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4674,27 +4906,54 @@ msgstr "Ubah direktori kerja kepada 'dir'" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "Saiz terminal adalah tetap" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4704,33 +4963,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminal bell mode:" msgstr "&Tutup Pelagak Terminal" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic Integration" msgstr "Penyambung Perkataan" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4740,9 +4999,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4753,9 +5012,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4766,35 +5025,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Latarbelakang" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5137,50 +5396,93 @@ msgid "Scrollback:" msgstr "Jangan papar bar skrol" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "&Hide" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Soro&k" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab &Options" -msgid "Scrollbar position:" -msgstr "&Opsyen Tab" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "&Right" msgctxt "@option:radio Show scrollbar on the right side" @@ -5188,66 +5490,35 @@ msgid "Ri&ght side" msgstr "Kan&an" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "&Hide" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Soro&k" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab &Options" +msgid "Scrollbar position:" +msgstr "&Opsyen Tab" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5350,121 +5621,121 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Tiada" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find" msgctxt "@label:textbox" msgid "Find..." msgstr "Cari" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Find" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Cari" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Cari Sebe&lumnya" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Tutu&p Sesi" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Tutu&p Sesi" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Tutu&p Sesi" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Sebagai ungkapan &biasa" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5476,7 +5747,7 @@ msgstr "" msgid "Print Shell" msgstr "Cetak &pengepala" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@label:listbox No color selected" @@ -5516,6 +5787,12 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Warna VIM" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +msgid "&Activity Tab Color:" +msgstr "Pilih Warna &Tab..." + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgctxt "NAME OF TRANSLATORS" @@ -5627,41 +5904,54 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Ulangtetap && Kosongkan Terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Leraikan Sesi" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Leraikan Sesi" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Tutup sesi semasa" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Leraikan Sesi" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Tamatkan Tugas" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "Close the current session" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Tutup sesi semasa" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Tutu&p Sesi" + #, fuzzy #~| msgid "N&one" #~ msgctxt "Do not save any lines to the scrollback history" @@ -5977,11 +6267,6 @@ msgstr "Tutup sesi semasa" #~ msgid "&Detach View" #~ msgstr "&Leraikan Sesi" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "Kosong&kan Sejarah" - #, fuzzy #~| msgid "Find Pre&vious" #~ msgid "Find Previous" @@ -5995,10 +6280,6 @@ msgstr "Tutup sesi semasa" #~ msgid "KWrited - Listening on Device %1" #~ msgstr "KWrited - Mendengar Peranti %1" -#, fuzzy -#~ msgid "Select &Tab Color" -#~ msgstr "Pilih Warna &Tab..." - #, fuzzy #~| msgid "Transparent, Dark Background" #~ msgid "Enable transparent backgrounds" @@ -6576,9 +6857,6 @@ msgstr "Tutup sesi semasa" #~ msgid "Overwrite" #~ msgstr "Tindih" -#~ msgid "Unable to write to file." -#~ msgstr "Tidak dapat menulis ke fail." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/nb/konsole.po b/local/recipes/kde/konsole/source/po/nb/konsole.po index 93f634f639..353d623745 100644 --- a/local/recipes/kde/konsole/source/po/nb/konsole.po +++ b/local/recipes/kde/konsole/source/po/nb/konsole.po @@ -14,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2024-03-09 12:46+0100\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,7 +65,7 @@ msgstr "Vis" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Delt visning" @@ -101,7 +101,7 @@ msgid "S&crollback" msgstr "&Rulleminne" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "" @@ -181,48 +181,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Skjul menylinja, overstyr standardinnstillingen" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Vis fanelinja, overstyr standardinnstillingen" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Skjul fanelinja, overstyr standardinnstillingen" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Vis fanelinja, overstyr standardinnstillingen" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Skjul fanelinja, overstyr standardinnstillingen" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Start Konsole i fullskjermmodus" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Slå av gjennomsiktige bakgrunner, selv om systemet har støtte før dem." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Vis en liste over de tilgjengelige profilene" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "List alle navnene og typene på profilegenskaper (for bruk med -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Endre verdien til en profilegenskap." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,7 +248,7 @@ msgstr "" " Kommando som skal kjøres. Dette valget fanger opp alle senere argumenter, " "så bruk det som siste valg." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -240,13 +256,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenter for kommandoen" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -264,157 +280,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Forgrunn" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Bakgrunn" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Farge 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Farge 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Farge 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Farge 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Farge 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Farge 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Farge 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Farge 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Forgrunn (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Bakgrunn (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Farge 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Farge 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Farge 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Farge 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Farge 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Farge 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Farge 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Farge 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -666,6 +682,38 @@ msgstr "" msgid "AaZz09..." msgstr "AaÅå09 …" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr "" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -708,7 +756,7 @@ msgstr "" msgid "Copy Location" msgstr "" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -739,13 +787,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -782,17 +830,17 @@ msgstr "Tastekombinasjon" msgid "Output" msgstr "Utdata" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nytt tastaturoppsett" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Endre tastaturoppsettet" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -800,7 +848,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -834,225 +882,225 @@ msgstr "Inndata:" msgid "Output:" msgstr "Utdata:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalemulator" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Generell vedlikeholder, feilretting og generelle forbedringer" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Forrige vedlikeholder, portet til KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Opprinnelig forfatter" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Feilretting og generelle forbedringer" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Generelle forbedringer" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Feilfikser" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Støtte for Solaris, og historien" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Feilfikser og forbedret oppstartshastighet" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Merket forbedringer" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1062,13 +1110,13 @@ msgstr "" "Innebygd Konsole\n" "verktøylinjer og øktnavn" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1078,25 +1126,25 @@ msgstr "" "Innebygget Konsole\n" "Generelle forbedringer" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visuelle effekter" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1106,132 +1154,132 @@ msgstr "" "Kode fra kvt-prosjektet\n" "Generelle forbedringer" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Forbedringer av oppsettet og tekstvalgene" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-port" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-port" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Takk også til mange andre.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Ny fane" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klon fane" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nytt &vindu" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Lukk vinduet" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Bokmerker" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Håndter profiler …" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktiver meny" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1242,67 +1290,67 @@ msgstr[0] "" msgstr[1] "" "Det kjører %1 prosesser i dette vinduet. Er du sikker på at du vil avslutte?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Bekreft lukking" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Lukk &vinduet" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Lukk gjeldende &fane" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiler" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Generelt" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1386,7 +1434,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1398,27 +1446,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1458,7 +1506,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1511,11 +1559,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1574,92 +1622,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "" @@ -1849,25 +1897,25 @@ msgstr "Alternativer for utdata" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Utskri&ftsvennlig (svart tekst, ingen bakgrunn)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skaler utdsata …" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standardprofil" @@ -1926,17 +1974,38 @@ msgstr "Dobbelttrykk for å endre snarvei" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Lagre utdata fra %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 er en ugyldig URL, klarte ikke å lagre utdata." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1972,81 +2041,98 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Mørke pastellfarger" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Grønt på sort" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linuxfarger" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rødt på sort" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarisert" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarisert lys" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Hvitt på sort" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standard (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux skall" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris skall" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Nettsøk" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Skriv inn søketeksten her" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Fant ikke binærfila: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Advarsel: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Klarte ikke finne et interaktivt skall å starte." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2055,332 +2141,339 @@ msgstr "" "Klarte ikke finne «%1», starter «%2» i stedet. Undersøk profilinnstillingene " "dine." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Klarte ikke starte programmet «%1» med argumenter «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Ferdig" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programmet «%1» krasjet." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programmet «%1» avsluttet med status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Framdrift for ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole vet ikke hvordan bokmerket skal åpnes:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Søk etter «%1» med" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Sett opp nettsnarveier …" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Lukk økt" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Åpne filbehandler" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Lim inn utvalg" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Nettsøk" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Velg alt" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Velg &linje" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "L&agre utdata som …" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "L&agre utdata som …" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Skriv ut skjermen …" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Juster rulleminnet …" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Slett rulleminnet" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Slett rulleminnet og tilbakestill" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format msgid "Next Profile" msgstr "Endre profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format msgid "Previous Profile" msgstr "Forrige" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Bytt profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Velg &tegnkoding" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Alle faner i gjeldende vindu" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Velg faner …" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ingen" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopier inndata til" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem-opplasting …" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Registrer &aktivitet" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Registrer &stillhet" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Større skrift" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Mindre skrift" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Send signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspender oppgaven" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Fortsett oppgaven" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Legg på" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Avbryt oppgaven" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Avslu&tt oppgaven" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Drep oppgaveb" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Brukersignal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Brukersignal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Rediger gjeldende profil …" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2388,7 +2481,7 @@ msgid "" msgstr "" "Det kjører nå et program i denne økta. Er du sikker på at du vil lukke den?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2396,18 +2489,18 @@ msgid "" msgstr "" "Programmet «%1» kjører nå i denne økta. Er du sikker på at du vil lukke den?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Bekreft lukking" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2416,37 +2509,37 @@ msgstr "" "Et program i denne økta ville ikke dø. Er du sikker på at du vil drepe det " "med makt?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Programmet «%1» i denne økta ville ikke dø. Er du sikker på at du vil drepe " "det med makt?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Lagre ZModem-nedlasting til …" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2457,13 +2550,13 @@ msgstr "" "noe passende ZModem-programvare på dette systemet.

              Du vil kanskje " "installere «rzsz» eller «lrzsz»-pakka.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Denne økta har allerede en ZModem filoverføring i gang.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2472,7 +2565,7 @@ msgstr "" "

              Det ble ikke funnet noe passende ZModem-programvare på dette systemet.

              Du vil kanskje installere «rzsz» eller «lrzsz»-pakka.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Velg filer som skal lastes opp med ZModem" @@ -2495,144 +2588,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Slå på menysnarveier" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Profilinnstillingene blir ignorert hvis dette er slått på" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Vis vindustittel på tittellinja" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" +msgstr "Profilinnstillingene blir ignorert hvis dette er slått på" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "Force new tabs" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Case sensitive" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 -#, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Alle dialogvinduer vil bli vist på nytt." - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Slå på alle «Ikke spør igjen»-meldinger" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Bestemmer om søk skal begynne nedenfra" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Søk bakover" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Bestemmer om søk skal begynne nedenfra" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Slå på menysnarveier" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Alle dialogvinduer vil bli vist på nytt." + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Slå på alle «Ikke spør igjen»-meldinger" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Vis vindustittel på tittellinja" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2657,71 +2776,109 @@ msgstr "Bruk gjeldende vindusstørrelse i meste oppstart" msgid "The window size will be saved upon exiting Konsole" msgstr "Vindustørrelsen vil bli lagret når Konsole avslutter" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2729,91 +2886,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Styr synlighet for hele fanelinja" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Styr posisjonen for fanelinja" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Styr visuell stil for fanelinja" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Bruk en egendefinert .css-fil for fanelinja" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr ".css-fila som skal brukes som stil for fanelinja" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Styr synlighet for hele fanelinja" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Styr hvor den nye fanen skal plasseres" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Bruk systemets mappeplassering for rulleminne-filer" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Bruk brukerens egenoppsatte plassering for rulleminne-filer" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2825,26 +2988,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -2996,125 +3157,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3166,8 +3345,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3206,95 +3385,95 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Størrelse: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Er du sikker på at du vil lime inn %1 tegn?" msgstr[1] "Er du sikker på at du vil lime inn %1 tegn?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Bekreft liming" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
              to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Endre &mappe til" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Lim inn sted" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Del visninga venstre/høyre" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Del visninga oppe/nede" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Utvid visning" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Mindre visning" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Neste fane" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Forrige fane" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Previous Tab" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Forrige fane" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Bytt til siste fane" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Bytt til fane %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3557,7 +3750,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3565,13 +3758,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3669,28 +3862,40 @@ msgstr "Standard tegnkoding:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format msgid "Line Numbers:" msgstr "Økt nummer: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3726,7 +3931,7 @@ msgstr "Endre det valgte fargeoppsettet" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3780,12 +3985,18 @@ msgstr "Tegn intense farger med halvfet skrift" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3904,29 +4115,44 @@ msgid "Make the cursor blink regularly" msgstr "Skrivemerket skal blinke regelmessig" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Skrivemerket skal blinke regelmessig" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3936,144 +4162,144 @@ msgstr "" "vinduet" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Vis hint for terminalstørrelsen etter endring" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Antall piksler mellom to linjer." #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4081,43 +4307,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4127,95 +4353,95 @@ msgstr "" "eller hebraisk)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Endre profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Generelt" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Faner" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Utseende" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rulling" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatur" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avansert" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4224,48 +4450,55 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Redigerer profil: %2" msgstr[1] "Rediger %1 profiler; %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Endre profilen «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&Ingen" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4275,7 +4508,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4285,42 +4518,42 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Endre miljøvariablene" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "En miljøvariabel per linje" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4328,23 +4561,23 @@ msgid_plural " seconds" msgstr[0] " sekund" msgstr[1] " sekunder" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Velg startmappe" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format msgid "Get New..." msgstr "Ny …" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4353,7 +4586,7 @@ msgstr "" "Dette fargeoppsettet bruker en gjennomsiktig bakgrunn og det ser ikke ut til " "at skrivebordet ditt støtter dette" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4362,12 +4595,12 @@ msgstr "" "Konsole ble startet før skrivebordseffekter ble slått på, Du må starte " "konsole på nytt for å se gjennomsiktig bakgrunn." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format msgid "Default for file type" msgstr "Standardprofil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4384,7 +4617,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4471,26 +4704,53 @@ msgstr "Velg startmappa" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Miljøvariabler:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Endre lista over miljøvariablene og tilhørende verdier" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4500,31 +4760,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format msgid "&Terminal bell mode:" msgstr "Terminalemulator" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4534,9 +4794,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4547,9 +4807,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4560,34 +4820,34 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "" @@ -4919,114 +5179,126 @@ msgid "Scrollback:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rull sida halve vindushøyden" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rull sida hele vindushøyden" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Vis rullefeltet på høyre side av skallet" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Vis rullefeltet på venstre side av skallet" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" +msgid "Scrollbar position:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5125,115 +5397,117 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Ingen" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Skriv inn søketeksten her" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Neste" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Finn neste samsvar med ditt nåværende søk" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Forrige" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Finn forrige samsvar med ditt nåværende søk" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Vis valgmenyen" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Lukk søkelinja" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Skill mellom store og små bokstaver" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Velg om søket skal skille mellom store og små bokstaver" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Vis valgmenyen" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Lukk søkelinja" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Bruk regulære uttrykk" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Uthev alle samsvar" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Velg om du vil utheve tekst som samsvarer med søket" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Bestemmer om søk skal begynne nedenfra" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5244,7 +5518,7 @@ msgstr "" msgid "Print Shell" msgstr "Skriv ut skall" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5284,6 +5558,12 @@ msgstr "Vanlig format på fanenavnene" msgid "Tab Co&lor:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5377,31 +5657,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Frakoble fane" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Frakoble fane" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/nds/konsole.po b/local/recipes/kde/konsole/source/po/nds/konsole.po index 9fa17a170b..1cb9ce8a82 100644 --- a/local/recipes/kde/konsole/source/po/nds/konsole.po +++ b/local/recipes/kde/konsole/source/po/nds/konsole.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2014-07-01 22:04+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -52,7 +52,7 @@ msgstr "Ansicht" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Ansicht delen" @@ -88,7 +88,7 @@ msgid "S&crollback" msgstr "&Rullrebeet" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -174,49 +174,65 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Den Menübalken versteken, övergeiht de Standardinstellen" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Den Paneelbalken wiesen, övergeiht de Standardinstellen" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Den Paneelbalken versteken, övergeiht de Standardinstellen" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Den Paneelbalken wiesen, övergeiht de Standardinstellen" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Den Paneelbalken versteken, övergeiht de Standardinstellen" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole in Heelschirmbedrief starten" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Dörschienen Achtergrund utmaken, ok wenn dat vun't Systeem ünnerstütt warrt" -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "De verföögboren Profilen oplisten" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "All Profil-Egenschappen ehr Naams un Typen oplisten (för Bruuk mit -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Den Weert vun en Profil-Egenschap ännern" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -226,7 +242,7 @@ msgstr "" "Befehl, den Du utföhren wullt. Griept sik all achterankamen Argumenten, also " "as de leste Optschoon bruken." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,13 +250,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenten, de na \"command\" wiedergeven warrt" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Toggle Background Window" msgctxt "@item" @@ -259,107 +275,107 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Vörgrund" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Achtergrund" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Klöör 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Klöör 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Klöör 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Klöör 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Klöör 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Klöör 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Klöör 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Klöör 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Vörgrund (rutheevt)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Achtergrund (rutheevt)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Klöör 1 (rutheevt)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Klöör 2 (rutheevt)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Klöör 3 (rutheevt)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Klöör 4 (rutheevt)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Klöör 5 (rutheevt)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Klöör 6 (rutheevt)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Klöör 7 (rutheevt)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Klöör 8 (rutheevt)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Foreground (Intense)" @@ -367,7 +383,7 @@ msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Vörgrund (rutheevt)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -375,7 +391,7 @@ msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Achtergrund (rutheevt)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 1 (Intense)" @@ -383,7 +399,7 @@ msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Klöör 1 (rutheevt)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 2 (Intense)" @@ -391,7 +407,7 @@ msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Klöör 2 (rutheevt)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 3 (Intense)" @@ -399,7 +415,7 @@ msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Klöör 3 (rutheevt)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 4 (Intense)" @@ -407,7 +423,7 @@ msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Klöör 4 (rutheevt)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 5 (Intense)" @@ -415,7 +431,7 @@ msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Klöör 5 (rutheevt)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 6 (Intense)" @@ -423,7 +439,7 @@ msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Klöör 6 (rutheevt)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 7 (Intense)" @@ -431,7 +447,7 @@ msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Klöör 7 (rutheevt)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 8 (Intense)" @@ -439,7 +455,7 @@ msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Klöör 8 (rutheevt)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -708,6 +724,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Reekner:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "&Set as Default" +msgid " [default]" +msgstr "As &Standard bruken" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -752,7 +802,7 @@ msgstr "" msgid "Copy Location" msgstr "Ingaav koperen na" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -784,14 +834,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Schriftoort utsöken..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Week Schriftoorden" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -828,17 +878,17 @@ msgstr "Tastkombinatschoon" msgid "Output" msgstr "Utgaav" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nieg Tasttoornen-List" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Tasttoornen-List bewerken" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -846,7 +896,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -880,68 +930,68 @@ msgstr "Ingaav:" msgid "Output:" msgstr "Utgaav:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalemulater" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Hööftpleger, Fehlerrichten un allmeen Verbetern" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Verleden Pleger, Porteren na KDE 4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Orginaalautor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -949,56 +999,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Hööftpleger, Fehlerrichten un allmeen Verbetern" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Fehlerrichten un allmeen Verbetern" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -1006,7 +1056,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Fehlerrichten un allmeen Verbetern" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1014,98 +1064,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Allmeen Verbetern" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Fehlerrichten" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Ünnerstütten för Solaris un Vörgeschicht" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Fehlerrichten un gau Start" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Verbetern bi't Markeren" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1115,13 +1165,13 @@ msgstr "" "Inbett Konsole\n" "Warktüüchbalken un Törn-Naams" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1131,25 +1181,25 @@ msgstr "" "Inbett Konsole\n" "Allmeen Verbetern" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Utsehn-Effekten" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1159,121 +1209,121 @@ msgstr "" "Kode ut dat kvt-Projekt\n" "Allmeen Verbetern" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Schema un Verbetern bi de Textköör" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Na SGI porteert" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Na FreeBSD porteert" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Dank ok an vele annere Lüüd.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nieg Törn" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Törn ver&dubbeln" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nieg &Finster" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Finster tomaken" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Leestekens" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nieg Klöörschema" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profilen plegen..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Menü anmaken" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -1281,13 +1331,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Paneel na links verschuven" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1296,25 +1346,25 @@ msgid_plural "" msgstr[0] "Binnen dat Finster löppt en Perzess. Wullt Du dat redig tomaken?" msgstr[1] "Binnen dat Finster loopt %1 Perzessen. Wullt Du dat redig tomaken?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Tomaken beglöven" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Finster tomaken" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Aktuell &Törn tomaken" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "" @@ -1325,7 +1375,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Binnen dat Finster löppt en Perzess. Wullt Du dat redig tomaken?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1333,37 +1383,37 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Nieg Profil" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Allmeen" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1457,7 +1507,7 @@ msgstr "Dateipleger opmaken" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1469,29 +1519,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Befehl:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Befehl:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1536,7 +1586,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1596,11 +1646,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1663,97 +1713,97 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Butenverbinnen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Afkörten mit Dubbelklick ännern" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Den Starttörn nich automaatsch bi sien Enn tomaken" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1962,25 +2012,25 @@ msgstr "Utgaavoptschonen" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Druckerfründlich Bedrief (Text swatt, keen Achtergrund)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Utgaav&grött topassen" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standardprofil" @@ -2045,17 +2095,38 @@ msgstr "Afkörten mit Dubbelklick ännern" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Utgaav vun \"%1\" sekern" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "\"%1\" is en leeg Adress, de Utgaav lett sik nich sekern." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2091,82 +2162,102 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Düüster Pastellklören4" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Gröön op Swatt" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-Klören" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Root op Swatt" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Överstrahlt" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Överstrahlt Licht" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Witt op Swatt" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standard (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-Konsool" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-Konsool" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Nettsöök" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Hier den Sööktext ingeven" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Pingel in Törn \"%1\"" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Programm lett sik nich finnen: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Wohrschoen: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Keen Wesselwark-Konsool lett sik finnen, de sik starten lett" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2175,350 +2266,358 @@ msgstr "" "\"%1\" lett sik nich finnen, ansteed warrt \"%2\" opropen. Prööv bitte Dien " "Profil-Instellen." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Dat Programm \"%1\" lett sik nich mit de Argumenten \"%2\" opropen." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Törn \"%1\" is still" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "Törn &tomaken" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Afslaten" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programm \"%1\" is afstört." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programm \"%1\" hett mit Status %2 ophollen." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-Vörankamen" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Dor röögt sik wat in Törn \"%1\"" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole weet nich, wodennig sik dat Leesteken opmaken lett: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Na \"%1\" söken mit" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Söökafkörten instellen..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Törn &tomaken" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Dateipleger opmaken" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Koperen" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Ansicht links-rechts delen" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Ansicht baven-nerrn delen" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Ingaav koperen" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Ingaav koperen" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Utwahl infögen" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Nettsöök" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&All utsöken" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "&Reeg utsöken" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "&Reeg utsöken" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Utgaav sekern &as..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Utgaav sekern &as..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Schirm &drucken..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Rullrebeet topassen..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Rullrebeet leddig maken" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Rullrebeet leddig maken un torüchsetten" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Profil bewerken" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Verleden Ansicht" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Profil wesseln" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Koderen instellen" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "Paneel ü&mnömen..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&All Paneels binnen aktuell Finster" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Paneels &utsöken..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Keen" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Ingaav koperen na" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem-Hoochladen" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Op &Bedrief luustern" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Op &Bedrief luustern" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Op &Still luustern" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Op &Bedrief luustern" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Schrift grötter maken" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Schrift lütter maken" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Grötter Bookstaven" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Signaal loosstüern" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Opgaav utsetten" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Opgaav &wiedermaken" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Opleggen" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Opgaav an&hollen" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Opgaav &utmaken" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Opgaav &afscheten" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Brukersignaal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Brukersignaal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile..." msgstr "&Nieg Profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Aktuell Profil bewerken..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2526,7 +2625,7 @@ msgid "" msgstr "" "Binnen dissen Törn löppt opstunns en Programm. Wullt Du em redig tomaken?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2535,19 +2634,19 @@ msgstr "" "Binnen dissen Törn löppt opstunns dat Programm \"%1\". Wullt Du em redig " "tomaken?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Tomaken beglöven" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "Paneel &tomaken" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2555,38 +2654,41 @@ msgid "" msgstr "" "En Programm binnen dissen Törn löppt noch. Wullt Du dat redig afscheten?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Dat Programm \"%1\" binnen dissen Törn löppt noch. Wullt Du dat redig " "afscheten?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "ZModem-Daalladen sekern as..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2597,13 +2699,13 @@ msgstr "" "keen passen ZModem-Programmen finnen.

              Villicht hölpt Di de Paketen " "\"rzsz\" oder \"lrzsz\".

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Binnen den aktuellen Törn löppt al en ZModem-Dateiöverdregen.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2612,7 +2714,7 @@ msgstr "" "

              Op dit Systeem laat sik keen passen ZModem-Programmen finnen.

              Villicht hölpt Di de Paketen \"rzsz\" oder \"lrzsz\".

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Dateien för ZModem-Hoochladen utsöken" @@ -2636,81 +2738,77 @@ msgctxt "@title:window" msgid "Configure" msgstr "Tomaken beglöven" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Nettsöök" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Menütasten anmaken" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Wenn anmaakt, warrt de Profilinstellen övergahn" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Finstertitel op Titelbalken wiesen" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "As reguleer Utdruck bruken" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "Wenn anmaakt, warrt de Profilinstellen övergahn" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "All Drepers rutheven" +#| msgctxt "@info:tooltip" +#| msgid "Create new tab" +msgid "Force new tabs" +msgstr "Nieg Paneel opstellen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, fuzzy, kde-format +#| msgid "Notifications" +msgid "Notifications:" +msgstr "Bescheden" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "Leggt fast, wat de Söök nerrn anfangt" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "Na baven söken" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2718,73 +2816,105 @@ msgid "Sets whether the search is case sensitive" msgstr "Gifft an, wat de Söök op Groot- un Lüttschrieven kiekt" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Case sensitive" msgid "Case sensitive" msgstr "Op Groot- un Lüttschrieven kieken" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 #, fuzzy, kde-format -#| msgid "Notifications" -msgid "Notifications:" -msgstr "Bescheden" +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "All Drepers rutheven" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "All Dialogen warrt wedder wiest" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "All \"Nich nochmaal fragen\"-Mellen anmaken" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "Leggt fast, wat de Söök nerrn anfangt" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "Na baven söken" +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Nettsöök" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Leggt fast, wat de Söök nerrn anfangt" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Menütasten anmaken" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "All Dialogen warrt wedder wiest" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "All \"Nich nochmaal fragen\"-Mellen anmaken" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Finstertitel op Titelbalken wiesen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "As reguleer Utdruck bruken" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2809,41 +2939,79 @@ msgstr "Aktuell Finstergrött bi nakamen Start bruken" msgid "The window size will be saved upon exiting Konsole" msgstr "De Finstergrött warrt bi't Utmaken vun Konsole sekert" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2851,7 +3019,7 @@ msgid "Search is case sensitive" msgstr "Gifft an, wat de Söök op Groot- un Lüttschrieven kiekt" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Highlight all matches" @@ -2859,7 +3027,7 @@ msgid "Highlight all search matches" msgstr "All Drepers rutheven" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether matching text should be highlighted" @@ -2867,19 +3035,19 @@ msgid "Sets whether matching text should be highlighted" msgstr "Gifft an, wat passen Text rutheevt warrt" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2887,93 +3055,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "De Sichtborkeit vun den helen Paneelbalken fastleggen" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "De Sichtborkeit vun den helen Paneelbalken fastleggen" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "De Steed för den Paneelbalken fastleggen" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Dat Utsehn vun den Paneelbalken fastleggen" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "En egen Bruker-CSS-Datei för den Paneelbalken bruken" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "De CSS-Datei, de Du för den Paneelbalken bruken wullt" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "De Sichtborkeit vun de Gautogriep-Knööp op den Paneelbalken fastleggen" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "De Sichtborkeit vun de Gautogriep-Knööp op den Paneelbalken fastleggen" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "De Steed för nieg Paneels fastleggen" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2986,26 +3161,24 @@ msgid "Enable memory monitoring:" msgstr "Törn-Beluern" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3177,9 +3350,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Keen" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "Paneel &tomaken" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3187,34 +3379,34 @@ msgid "Miscellaneous:" msgstr "Annerswat" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "\"Nieg Törn\"- un \"Törn tomaken\"-Knööp op Paneelbalken wiesen" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "Brukerstilvörlaag bruken" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3222,7 +3414,7 @@ msgid "Behavior" msgstr "Bedregen" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Create new tab" @@ -3230,60 +3422,60 @@ msgid "Put new tabs:" msgstr "Nieg Paneel opstellen" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Aktuell Törn tomaken" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Ansicht delen" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Menübalken wiesen" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3292,14 +3484,14 @@ msgid "Small" msgstr "Lütt" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3308,7 +3500,7 @@ msgid "Large" msgstr "Groot" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3361,8 +3553,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3404,98 +3596,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Menütasten anmaken" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Grött: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Wullt Du %1 Teken redig infögen?" msgstr[1] "Wullt Du %1 Tekens redig infögen?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Infögen beglöven" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" msgid "Confirm Paste" msgstr "Infögen beglöven" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Blinker op aktuell Tekenklöör setten" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Utwahl infögen" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been
              anhollen. Bruuk Strg+Q, wenn Du wiedermaken " "wullt. Disse Naricht geiht na 10 Sekunnen weg." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "&Orner ännern op" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Steed infögen" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Ansicht delen" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Ansicht links-rechts delen" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Ansicht baven-nerrn delen" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3552,7 +3744,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Ansicht baven-nerrn delen" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3560,7 +3752,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Ansicht links-rechts delen" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3568,7 +3760,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Ansicht baven-nerrn delen" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3576,37 +3768,37 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Ansicht baven-nerrn delen" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Grötter maken" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Lütter maken" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3614,7 +3806,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Aktuell Paneel a&flösen" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3622,93 +3814,107 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Aktuell Paneel a&flösen" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Nakamen Paneel" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Verleden Paneel" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Baven dat Terminalrebeet" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Nerrn dat Terminalrebeet" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Baven dat Terminalrebeet" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Nerrn dat Terminalrebeet" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Na't leste Paneel wesseln" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3716,7 +3922,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Paneel na rechts verschuven" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3724,49 +3930,49 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Paneel na links verschuven" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Na Törn %1 wesseln" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Muus-Bedenen" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Fast Tall vun Regen: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3774,13 +3980,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Paneel na links verschuven" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3793,7 +3999,7 @@ msgstr "" "Bi't Sekern vun de Utgaav geev dat en Problem.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3806,13 +4012,13 @@ msgstr "" "Bi't Sekern vun de Utgaav geev dat en Problem.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3913,29 +4119,41 @@ msgstr "Standard-Tekenkoderen:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Fast Tall vun Regen: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3972,7 +4190,7 @@ msgstr "Dat utsöchte Klöörschema bewerken" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4029,12 +4247,18 @@ msgstr "Deegte Klören för Fettschrift bruken" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4166,16 +4390,33 @@ msgid "Make the cursor blink regularly" msgstr "Den Blinker blinken laten" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Menü anmaken" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Den Blinker blinken laten" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4183,14 +4424,14 @@ msgid "Miscellaneous" msgstr "Annerswat" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Finster" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4198,25 +4439,25 @@ msgid "" msgstr "Nieg Grött vun't Terminalfinster na Gröttännern in de Merrn wiesen" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "En Henwies op de Terminalgrött na Gröttännern wiesen" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4225,28 +4466,28 @@ msgid "Color:" msgstr "Klöör" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "De Klöör för den Blinker utsöken" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" msgstr "Terminal-Grött" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Active Terminals:" msgstr "Terminal-Grött" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4254,96 +4495,96 @@ msgid "Terminal contents" msgstr "Terminal-Funkschonen" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Regenafstand:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "De Tall vun Bildpünkt twischen Regen" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Tweerichten-Textdorstellen anmaken" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4351,45 +4592,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Blinker op aktuell Tekenklöör setten" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Schriftoort" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4399,98 +4640,98 @@ msgstr "" "Persch un Hebrääsch)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Tweerichten-Textdorstellen anmaken" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Blinker op aktuell Tekenklöör setten" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profil bewerken" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Allgemeen" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Paneels" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Utsehn" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rullen" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatuur" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Tasttoornen" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Muus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Verwiedert" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4499,49 +4740,56 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Profil bewerken: %2" msgstr[1] "%1-Profilen bewerken: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "&New Profile..." msgid "Create New Profile" msgstr "&Nieg Profil..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Profil \"%1\" bewerken" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&Keen" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgid "Columns" msgctxt "" @@ -4552,7 +4800,7 @@ msgid_plural " columns" msgstr[0] "Striepen" msgstr[1] "Striepen" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4562,48 +4810,48 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications" msgid "System Notifications" msgstr "Bescheden" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "Utsehn-Effekten" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Dat utsöchte Profil as Standard för nieg Terminaltörns fastleggen" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Ümgeven bewerken" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "One environment variable per line" msgid "One environment variable per line" msgstr "Een Ümgevenvariabel per Reeg" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4611,25 +4859,25 @@ msgid_plural " seconds" msgstr[0] " Sekunn" msgstr[1] " Sekunnen" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Startorner utsöken" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Nieg..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4638,7 +4886,7 @@ msgstr "" "Dit Klöörschema bruukt en dörsichtig Achtergrund, man as't lett, ünnerstütt " "Dien Systeem dat nich." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4647,13 +4895,13 @@ msgstr "" "Konsole wöör start, man de Schriefdischeffekten wöörn noch utmaakt. Wullt Du " "en dörsichtig Achtergrund hebben, muttst Du Konsole nochmaal starten." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Standardprofil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4670,7 +4918,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4764,27 +5012,55 @@ msgstr "Startorner utsöken" msgid "Start in same directory as current session" msgstr "Binnen den sülven Orner as den aktuellen Törn starten" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Binnen den sülven Orner as den aktuellen Törn starten" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ümgeven:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "De List vun Ümgevenvariabeln un ehr Weerten bewerken" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "Terminal-Grött" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, fuzzy, kde-format #| msgid "" #| "Configure Konsole->General->Use current window size on next startup must " @@ -4799,7 +5075,7 @@ msgstr "" "mutt utmaakt wesen, wenn disse Indrääg funkscheneren schöölt" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4807,26 +5083,26 @@ msgid "&Terminal bell mode:" msgstr "Terminalemulater" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Muus-Bedenen" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4836,9 +5112,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4849,9 +5125,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4862,22 +5138,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4885,13 +5161,13 @@ msgid "Red error background:" msgstr "Achtergrund" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5271,75 +5547,26 @@ msgid "Scrollback:" msgstr "Rullrebeet" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Siet na baven/nerrn rullen" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "De Siet en halv Finsterhööchde rullen" +msgid "Highlight the lines coming into view" +msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half Page Height" -msgid "Half screen heigh&t" -msgstr "Halv Finsterhööchde" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "De Siet en heel Finsterhööchde rullen" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full Page Height" -msgid "F&ull screen height" -msgstr "Heel Finsterhööchde" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Paneelbalken-Steed:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Den Rullbalken rechterhand dat Terminalfinster wiesen" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Rechterhand wiesen" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Den Rullbalken linkerhand dat Terminalfinster wiesen" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Textgrött:" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5347,46 +5574,107 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Versteken" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "De Siet en halv Finsterhööchde rullen" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, fuzzy, kde-format +#| msgid "Half Page Height" +msgid "Half screen heigh&t" +msgstr "Halv Finsterhööchde" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "De Siet en heel Finsterhööchde rullen" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, fuzzy, kde-format +#| msgid "Full Page Height" +msgid "F&ull screen height" +msgstr "Heel Finsterhööchde" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Den Rullbalken rechterhand dat Terminalfinster wiesen" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Rechterhand wiesen" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Den Rullbalken linkerhand dat Terminalfinster wiesen" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Textgrött:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Paneelbalken-Steed:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5500,7 +5788,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Keen" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5508,113 +5796,115 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Söken:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Hier den Sööktext ingeven" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Nakamen" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Dat nakamen Vörkamen vun den Söökutdruck söken" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Verleden" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Dat verleden Vörkamen vun den Söökutdruck söken" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Optschonen-Menü wiesen" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Söökbalken tomaken" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Op Groot- un Lüttschrieven kieken" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Gifft an, wat de Söök op Groot- un Lüttschrieven kiekt" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Optschonen-Menü wiesen" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Söökbalken tomaken" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "As reguleer Utdruck bruken" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "All Drepers rutheven" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Gifft an, wat passen Text rutheevt warrt" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, fuzzy, kde-format #| msgid "Search backwards" msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Na baven söken" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Leggt fast, wat de Söök nerrn anfangt" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Leggt fast, wat de Söök nerrn anfangt" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the bottom" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Den aktuellen Söökutdruck vun nerrn an söken" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Search for the current search phrase from the top" msgctxt "@info:tooltip" @@ -5626,7 +5916,7 @@ msgstr "Den aktuellen Söökutdruck vun baven an söken" msgid "Print Shell" msgstr "Konsool drucken" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5671,6 +5961,13 @@ msgstr "Normaalpaneel-Titelformaat" msgid "Tab Co&lor:" msgstr "Klöör" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "&Paneelklöör utsöken" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5773,7 +6070,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Paneel tomaken" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5781,7 +6078,15 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Paneel &aflösen" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Paneel &aflösen" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgctxt "@info:whatsthis" #| msgid "Close the active tab" @@ -5789,26 +6094,30 @@ msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Aktiev Paneel tomaken" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Paneel &aflösen" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Paneel ü&mnömen..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Paneel &tomaken" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Op Groot- un Lüttschrieven kieken" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" @@ -6331,6 +6640,3 @@ msgstr "Paneel &tomaken" #~ msgid "New" #~ msgstr "Nieg" - -#~ msgid "Select &Tab Color" -#~ msgstr "&Paneelklöör utsöken" diff --git a/local/recipes/kde/konsole/source/po/ne/konsole.po b/local/recipes/kde/konsole/source/po/ne/konsole.po index 744d528d15..3907804134 100644 --- a/local/recipes/kde/konsole/source/po/ne/konsole.po +++ b/local/recipes/kde/konsole/source/po/ne/konsole.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2007-11-01 15:12+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" @@ -57,7 +57,7 @@ msgstr "दृश्य" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Split View" msgid "Split View" @@ -97,7 +97,7 @@ msgid "S&crollback" msgstr "स्क्रोलब्याक" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Name" msgid "Session Toolbar" @@ -187,22 +187,34 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "" #| "The background transparency setting will not be used because your desktop " @@ -213,27 +225,27 @@ msgstr "" "पृष्ठभूमि पार्दर्शीता सेटिङ प्रयोग गरिने छैन किनभने तपाईँको डेस्कटपले पारदर्शी सञ्झ्याललाई " "समर्थन गर्देन ।" -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "उपलब्ध प्रोफाइलहरूको सूची" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "प्रोफाइल गुणको मान परिवर्तन गर्नुहोस् ।" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -241,7 +253,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -249,14 +261,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "आदेशमा पास गरिएका तर्कहरू" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -277,217 +289,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "अग्रभूमि" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "पृष्ठभूमि" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "रङ १" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "रङ २" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "रङ ३" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "रङ ४" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "रङ ५" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "रङ ६" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "रङ ७" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "रङ ८" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "अग्रभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "पृष्ठभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "रङ १ (तीव्र)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "रङ २ (तीव्र)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "रङ ३ (तीव्र)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "रङ ४ (तीव्र)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "रङ ५ (तीव्र)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "रङ ६ (तीव्र)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "रङ ७ (तीव्र)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "रङ ८ (तीव्र)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "अग्रभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "पृष्ठभूमि (तीव्र)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "रङ १ (तीव्र)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "रङ २ (तीव्र)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "रङ ३ (तीव्र)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "रङ ४ (तीव्र)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "रङ ५ (तीव्र)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "रङ ६ (तीव्र)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "रङ ७ (तीव्र)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "रङ ८ (तीव्र)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -758,6 +770,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "होस्ट:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "पूर्वनिर्धारित रूपमा सेट गर्नुहोस्" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, fuzzy, kde-format #| msgid "Input" @@ -806,7 +852,7 @@ msgstr "" msgid "Copy Location" msgstr "कर्सर विकल्प" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -838,13 +884,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "फन्ट सम्पादन गर्नुहोस्..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -882,17 +928,17 @@ msgstr "कुञ्जी संयोजन" msgid "Output" msgstr "निर्गात" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "नयाँ कुञ्जी बाइन्डिङ सूची" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "कुञ्जी बाइन्डिङ सूची सम्पादन गर्नुहोस्" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -900,7 +946,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -935,247 +981,247 @@ msgstr "आगत:" msgid "Output:" msgstr "निर्गत:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "कन्सोल" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "टर्मिनल इमुलेटर" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "कर्ट भी. हिनडेनबर्ग" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "बग समाधान र सामान्य सुधार" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "रोबर्ट कनाइट" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "लार्स डोइले" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "टर्मिनल इमुलेटर" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "बग समाधान र सामान्य सुधार" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "बग समाधान र सामान्य सुधार" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "बग समाधान र सामान्य सुधार" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "वाल्डो बास्टियन" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "स्टेफन बिनर" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "बग समाधान र सामान्य सुधार" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "क्रिस म्याकेमर" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "बग समाधान" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "स्टेफन कुलो" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "सोलारिस समर्थन र इतिहास" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "अलेक्जेन्डर नेउनडोर्फ" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "बग समाधान र सुधारिएको सुरुआत कार्यसम्पादन" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "पिटर सिल्भा" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "सुधार चिन्ह गर्दै" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "लोटजी बोलोनी" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1188,14 +1234,14 @@ msgstr "" "सम्मिलित कन्सोल\n" "उपकरणपट्टी र सत्र नाम" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "डेभिड फउर" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1208,28 +1254,28 @@ msgstr "" "सम्मिलित कन्सोल\n" "सामान्य सुधार" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "एन्टोनियो लारोसा" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "दृश्यात्मक प्रभाव" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "माथियस इट्रिच" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1242,151 +1288,151 @@ msgstr "" "केभीटी परियोजनाबाट कोड\n" "सामान्य सुधार" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "वारविक एलिसन" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "स्कीमा र पाठ छनौट सुधार" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "डान पिलोन" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI पोर्ट" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "केभिन गल्ली" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "स्वतन्त्र BSD पोर्ट" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "एसभेन फिस्चर" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "डेल एम. फ्लाभेन" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "मार्टिन जोन्स" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "लार्स कनोल" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "अरू सबैलाई धन्यवाद ।\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "नयाँ ट्याब" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ट्याब बन्द गर्नुहोस्" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "नयाँ सञ्झ्याल" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "कन्सोल" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "पुस्तकचिनो" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "नयाँ रङ योजना" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "प्रोफाइल प्रबन्ध गर्नुहोस्" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "दृश्य बायाँ सार्नुहोस्" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1395,71 +1441,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "कन्सोल" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "ट्याब बन्द गर्नुहोस्" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "नयाँ प्रोफाइल" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "सामान्य" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1549,7 +1595,7 @@ msgstr "लिङ्क खोल्नुहोस्" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1561,29 +1607,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "आदेश:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "आदेश:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1623,7 +1669,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1680,11 +1726,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1746,93 +1792,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "टाढाको जडान" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgid "Delete selected entry" @@ -2036,25 +2082,25 @@ msgstr "सञ्झ्याल विकल्प" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2118,18 +2164,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format #| msgid "Save Output from %1" msgid "Save Output From %1" msgstr "%1 बाट निर्गत बचत गर्नुहोस्" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 एउटा अवैध यआरएल हो, निर्गत बचत गर्न सकेन ।" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2166,512 +2233,539 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "कालोमा हरियो" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "लिनक्स रङ" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "कालोमा सेतो" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "कालोमा सेतो" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "पूर्वानिर्धारित (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "लिनक्स कन्सोल" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "सोलारिस कन्सोल" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "निर्गत खोजी गर्नुहोस्" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "यहाँको लागि खोजी गर्न पाठ प्रविष्ट गर्नुहोस्" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "'%1' सत्रमा घण्टी" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' सत्रमा मौन" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "कन्सोल" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Session '%1' exited unexpectedly." msgid "Program '%1' crashed." msgstr "'%1' सत्र अनपेक्षित रूपमा अन्त्य भयो ।" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format #| msgid "Session '%1' exited with status %2." msgid "Program '%1' exited with status %2." msgstr "'%1' सत्र %2 वस्तुस्थितिसँगै अन्त्य भयो ।" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "जेट मोडेम प्रगति" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1' सत्रमा क्रियाकलाप" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "कन्सोल" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "प्रोफाइल प्रबन्ध गर्नुहोस्..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "कन्सोल" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "प्रतिलिपि बनाउनुहोस्" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "दृश्य बायाँ/दायाँ विभाजन गर्नुहोस्" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "दृश्य माथि/तल विभाजन गर्नुहोस्" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Input" msgid "Copy user input" msgstr "आगत" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Input" msgid "Copy command output" msgstr "आगत" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select" msgid "&Select All" msgstr "चयन गर्नुहोस्" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "चयन गर्नुहोस्" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "चयन गर्नुहोस्" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "निर्गत बचत गर्नुहोस्..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "निर्गत बचत गर्नुहोस्..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "प्रोफाइल प्रबन्ध गर्नुहोस्..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "स्क्रोलब्याक खाली गर्नुहोस्" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "स्क्रोलब्याक खाली गर्नुहोस् र रिसेट गर्नुहोस्" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "प्रोफाइल सम्पादन गर्नुहोस्" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "अघिल्लो दृश्य" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "प्रोफाइल सम्पादन गर्नुहोस्" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "सङ्केतन" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "ट्याब पुन: नामकरण गर्नुहोस्..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "ट्याब पुन: नामकरण गर्नुहोस्..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Input" msgid "Copy Input To" msgstr "आगत" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "क्रियाकलाप अनुगमन गर्नुहोस्" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "क्रियाकलाप अनुगमन गर्नुहोस्" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "मौनता अनुगमन गर्नुहोस्" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "क्रियाकलाप अनुगमन गर्नुहोस्" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "दृश्य सङ्कुचन गर्नुहोस्" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "पाठ साइज बढाउनुहोस्" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "ट्याब बन्द गर्नुहोस्" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "टर्मिनल विशेषता" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "नयाँ प्रोफाइल..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "हालको प्रोफाइल सम्पादन गर्नुहोस्..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "ट्याब बन्द गर्नुहोस्" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2679,20 +2773,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2717,150 +2811,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "नियमित अभिव्यक्ति मिलाउनुहोस्" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "सबै हाइलाइट गर्नुहोस्" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the searching is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "खोजी केस संवेदनशील छ या छैन सेट गर्दछ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "सक्रिय बन्द गर्नुहोस्" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "नयाँ ट्याब पाठ प्रविष्ट गर्नुहोस्:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the searching is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "खोजी केस संवेदनशील छ या छैन सेट गर्दछ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "सक्रिय बन्द गर्नुहोस्" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "सबै हाइलाइट गर्नुहोस्" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "हालको खोजी वाक्यांशका लागि पछिल्लो जोडा फेला पार्नुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "नियमित अभिव्यक्ति मिलाउनुहोस्" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2885,74 +3006,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the searching is case sensitive" msgid "Search is case sensitive" msgstr "खोजी केस संवेदनशील छ या छैन सेट गर्दछ" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "सबै हाइलाइट गर्नुहोस्" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "मिलेको पाठ हाइलाइट गरिनेछ या गरिनेछैन सेट गर्दछ" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2960,92 +3119,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "कर्सरका लागि अनुकूल, स्थिर रङ प्रयोग गर्नुहोस्" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3057,26 +3222,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3244,110 +3407,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "ट्याब बन्द गर्नुहोस्" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "ट्याब बन्द गर्नुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "कर्सरका लागि अनुकूल, स्थिर रङ प्रयोग गर्नुहोस्" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "नयाँ ट्याब पाठ प्रविष्ट गर्नुहोस्:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "After current &tab" msgstr "ट्याब बन्द गर्नुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "दृश्य विभाजन गर्नुहोस्" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "मेनुपट्टी देखाउनुहोस्" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3355,14 +3537,14 @@ msgid "Small" msgstr "सानो" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3370,7 +3552,7 @@ msgid "Large" msgstr "ठूलो" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3423,8 +3605,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3464,97 +3646,97 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "साइज: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "हालको क्यारेक्टर मिलाउन कर्सर रङ सेट गर्नुहोस्" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "&Paste" msgctxt "@action:button" msgid "&Paste everything" msgstr "टाँस्नुहोस्" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been निर्गत Ctrl+S थिचेर " "निलम्बन गर्न सकिन्छ । पुन: निरन्तरता दिनCtrl+Q थिच्नुहोस् ।" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "&Paste" msgid "&Paste Location" msgstr "टाँस्नुहोस्" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "दृश्य विभाजन गर्नुहोस्" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "दृश्य बायाँ/दायाँ विभाजन गर्नुहोस्" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "दृश्य माथि/तल विभाजन गर्नुहोस्" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3610,7 +3792,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "दृश्य माथि/तल विभाजन गर्नुहोस्" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3618,7 +3800,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "दृश्य बायाँ/दायाँ विभाजन गर्नुहोस्" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3626,7 +3808,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "दृश्य माथि/तल विभाजन गर्नुहोस्" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3634,208 +3816,222 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "दृश्य माथि/तल विभाजन गर्नुहोस्" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "दृश्य विस्तार गर्नुहोस्" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "दृश्य सङ्कुचन गर्नुहोस्" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "ट्याब बन्द गर्नुहोस्" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ट्याब बन्द गर्नुहोस्" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "नयाँ ट्याब" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "अघिल्लो" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above terminal displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "माथिको टर्मिनल प्रदर्शन" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below terminal displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "तलको टर्मिनल प्रदर्शन" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above terminal displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "माथिको टर्मिनल प्रदर्शन" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below terminal displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "तलको टर्मिनल प्रदर्शन" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "दृश्य दायाँ सार्नुहोस्" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "दृश्य बायाँ सार्नुहोस्" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Interaction Options" msgid "Semantic hints " msgstr "अन्तरक्रिया विकल्प" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "निश्चित रेखाहरूको सङ्ख्या:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "दृश्य बायाँ सार्नुहोस्" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3848,7 +4044,7 @@ msgstr "" "निर्गत बचत गर्दा एउटा समस्या देखापर्यो ।\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3861,13 +4057,13 @@ msgstr "" "निर्गत बचत गर्दा एउटा समस्या देखापर्यो ।\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3967,29 +4163,41 @@ msgstr "पूर्वानिर्धारित क्यारेक् msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "निश्चित रेखाहरूको सङ्ख्या:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4027,7 +4235,7 @@ msgstr "चयन गरिएको रङ योजना सम्पाद #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4084,12 +4292,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4218,30 +4432,46 @@ msgid "Make the cursor blink regularly" msgstr "नियमित रूपमा कर्सर ब्लिङ्क बनाउनुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "वर्णन:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "नियमित रूपमा कर्सर ब्लिङ्क बनाउनुहोस्" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "New &Window" msgid "Window:" msgstr "नयाँ सञ्झ्याल" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4249,25 +4479,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4275,28 +4505,28 @@ msgid "Color:" msgstr "रङ" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "कर्सर बनाउन प्रयोग गरिएको रङ चयन गर्नुहोस्" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "टर्मिनल विशेषता" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "टर्मिनल विशेषता" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4304,94 +4534,94 @@ msgid "Terminal contents" msgstr "टर्मिनल विशेषता" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4399,45 +4629,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "हालको क्यारेक्टर मिलाउन कर्सर रङ सेट गर्नुहोस्" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "फन्ट" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4445,99 +4675,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "हालको क्यारेक्टर मिलाउन कर्सर रङ सेट गर्नुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "प्रोफाइल सम्पादन गर्नुहोस्" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "सामान्य" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ट्याब" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "देखावट" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "स्क्रोल गर्दै" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "कुञ्जी बाइन्डिङ" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "उन्नत" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4546,31 +4776,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4578,18 +4808,23 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "प्रोफाइल \"%1\" सम्पादन गर्नुहोस्" msgstr[1] "प्रोफाइल \"%1\" सम्पादन गर्नुहोस्" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "नयाँ प्रोफाइल..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "प्रोफाइल \"%1\" सम्पादन गर्नुहोस्" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4599,7 +4834,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4609,45 +4844,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Paste" msgid "System Notifications" msgstr "टाँस्नुहोस्" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "दृश्यात्मक प्रभाव" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "नयाँ टर्मिनल सत्रका लागि पूर्वानिर्धारित रूपमा चयन गरिएको प्रोफाइल सेट गर्नुहोस्" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "परिवेश सम्पादन गर्नुहोस्" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4655,24 +4890,24 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "सुरुको डाइरेक्टरी चयन गर्नुहोस्" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "नयाँ..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, fuzzy, kde-format #| msgid "" #| "This colour scheme has a transparent background which does not appear to " @@ -4683,20 +4918,20 @@ msgid "" msgstr "" "यो रङ योजनासँग पारदर्शी पृष्ठभूमि छ जुन तपाईँको डेस्कटपमा समर्थित गरिएको जस्तो देखिँदैन ।" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "प्रोफाइल मेट्नुहोस्" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4713,7 +4948,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4805,27 +5040,54 @@ msgstr "सुरुको डाइरेक्टरीका लागि ब msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "परिवेश:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "परिवेश चल र सम्बन्धित मानहरूको सूची सम्पादन गर्नुहोस्" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "टर्मिनल विशेषता" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4835,33 +5097,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "टर्मिनल इमुलेटर" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Interaction Options" msgid "Semantic Integration" msgstr "अन्तरक्रिया विकल्प" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4871,9 +5133,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4884,9 +5146,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4897,35 +5159,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "पृष्ठभूमि" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5279,50 +5541,93 @@ msgid "Scrollback:" msgstr "स्क्रोलब्याक" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "लुकाइएका" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ट्याबपट्टी स्थिति:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "टर्मिनल सञ्झ्यालको दायाँ किनारामा स्क्रोलपट्टी देखाउनुहोस्" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5330,67 +5635,36 @@ msgid "Ri&ght side" msgstr "दायाँपट्टि देखाउनुहोस्" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "टर्मिनल सञ्झ्यालको बायाँ किनारापट्टि स्क्रोलपट्टी देखाउनुहोस्" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "पाठ साइज:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "लुकाइएका" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ट्याबपट्टी स्थिति:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5493,42 +5767,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "फेला पार्नुहोस्:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "यहाँको लागि खोजी गर्न पाठ प्रविष्ट गर्नुहोस्" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "पछिल्लो" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "हालको खोजी वाक्यांशका लागि पछिल्लो जोडा फेला पार्नुहोस्" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "अघिल्लो" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5536,88 +5810,88 @@ msgid "Find the previous match for the current search phrase" msgstr "हालको खोजी वाक्यांशका लागि अघिल्लो जोडा फेला पार्नुहोस्" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "खोजी पट्टी बन्द गर्नहोस्" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "सक्रिय बन्द गर्नुहोस्" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the searching is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "खोजी केस संवेदनशील छ या छैन सेट गर्दछ" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "खोजी पट्टी बन्द गर्नहोस्" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "नियमित अभिव्यक्ति मिलाउनुहोस्" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "सबै हाइलाइट गर्नुहोस्" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "मिलेको पाठ हाइलाइट गरिनेछ या गरिनेछैन सेट गर्दछ" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "हालको खोजी वाक्यांशका लागि पछिल्लो जोडा फेला पार्नुहोस्" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "हालको खोजी वाक्यांशका लागि पछिल्लो जोडा फेला पार्नुहोस्" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "हालको खोजी वाक्यांशका लागि पछिल्लो जोडा फेला पार्नुहोस्" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "हालको खोजी वाक्यांशका लागि पछिल्लो जोडा फेला पार्नुहोस्" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5630,7 +5904,7 @@ msgstr "हालको खोजी वाक्यांशका लागि msgid "Print Shell" msgstr "शेल" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5676,6 +5950,13 @@ msgstr "सामान्य ट्याब शीर्षक ढाँचा msgid "Tab Co&lor:" msgstr "रङ" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "ट्याब रङ चयन गर्नुहोस्" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program name" @@ -5790,41 +6071,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ट्याब बन्द गर्नुहोस्" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "दृश्य छुट्याउनुहोस्" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "दृश्य छुट्याउनुहोस्" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "खोजी पट्टी बन्द गर्नहोस्" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "दृश्य छुट्याउनुहोस्" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ट्याब पुन: नामकरण गर्नुहोस्..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "ट्याब बन्द गर्नुहोस्" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "सक्रिय बन्द गर्नुहोस्" + #, fuzzy #~| msgid "Open Link" #~ msgctxt "@title:window" @@ -6248,11 +6543,6 @@ msgstr "ट्याब बन्द गर्नुहोस्" #~ msgid "Decrease Text Size" #~ msgstr "पाठ साइज घटाउनुहोस्" -#, fuzzy -#~| msgid "Search Output" -#~ msgid "Search Output..." -#~ msgstr "निर्गत खोजी गर्नुहोस्" - #~ msgid "Find Next" #~ msgstr "पछिल्लो फेला पार्नुहोस्" @@ -6277,9 +6567,6 @@ msgstr "ट्याब बन्द गर्नुहोस्" #~ msgid "New" #~ msgstr "नयाँ" -#~ msgid "Select &Tab Color" -#~ msgstr "ट्याब रङ चयन गर्नुहोस्" - #~ msgid "TextLabel" #~ msgstr "पाठ लेबुल" diff --git a/local/recipes/kde/konsole/source/po/nl/konsole.po b/local/recipes/kde/konsole/source/po/nl/konsole.po index 8ec2b41e16..57f6ed5280 100644 --- a/local/recipes/kde/konsole/source/po/nl/konsole.po +++ b/local/recipes/kde/konsole/source/po/nl/konsole.po @@ -14,22 +14,22 @@ # Sander Koning , 2005. # Rinse de Vries , 2005, 2006. # Bram Schoenmakers , 2006, 2007. -# SPDX-FileCopyrightText: 2009, 2023, 2024 Freek de Kruijf +# SPDX-FileCopyrightText: 2009, 2023, 2024, 2025, 2026 Freek de Kruijf # Freek de Kruijf , 2009, 2010, 2011, 2012. # Freek de Kruijf , 2011, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023. msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-18 10:16+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-20 13:43+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 25.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -38,7 +38,7 @@ msgid "Your names" msgstr "" "Rinse de Vries - 2001 t/m 2007,Bram Schoenmakers - 2006; 2007,Sander Koning " "- 2005,Tom Albers - 2003,Wilbert Berendsen - 2003,Onno Zweers - 2002,Freek " -"de Kruijf - 2013-2024" +"de Kruijf - 2013-2026" #, kde-format msgctxt "EMAIL OF TRANSLATORS" @@ -67,7 +67,7 @@ msgstr "Beeld" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Beeld splitsen" @@ -103,7 +103,7 @@ msgid "S&crollback" msgstr "Terugs&chuiven" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Sessiewerkbalk" @@ -189,22 +189,34 @@ msgstr "De menubalk verbergen, boven de standaard instellingen uitgaan" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Alle tabbladbalken tonen, de standaard instellingen overschrijven" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Alle tabbladbalken verbergen, de standaard instellingen overschrijven" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "De tabbladbalk tonen, boven de standaard instellingen uitgaan" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "De tabbladbalk verbergen, boven de standaard instellingen uitgaan" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole schermvullend starten" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." @@ -212,13 +224,13 @@ msgstr "" "Transparante achtergronden uitschakelen, zelfs als het systeem dit " "ondersteunt." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Lijst met beschikbare profielen" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -226,13 +238,13 @@ msgstr "" "Laat alle namen van profieleigenschappen zien en hun type (voor gebruik met -" "p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Wijzig de waarde van een profieleigenschap." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -242,7 +254,7 @@ msgstr "" "Uit te voeren commando. Deze optie pakt alle volgende argumenten, gebruik " "het dus als de laatste optie." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -252,13 +264,13 @@ msgstr "" "Opnieuw het bestaande exemplaar gebruiken zelfs als het functionaliteit " "breekt, bijv. --new-tab. Meestal voor debugging." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenten om aan het commando door te geven" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -276,157 +288,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Voorgrond" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Achtergrond" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Kleur 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Kleur 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Kleur" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Kleur 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Kleur 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Kleur 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Kleur 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Kleur 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Voorgrond (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Achtergrond (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Kleur 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Kleur 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Kleur 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Kleur 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Kleur 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Kleur 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "kleur 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Kleur 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Voorgrond (vaag)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Achtergrond (vaag)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Kleur 1 (vaag)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Kleur 2 (vaag)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Kleur 3 (vaag)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Kleur 4 (vaag)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Kleur 5 (vaag)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Kleur 6 (vaag)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Kleur 7 (vaag)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Kleur 8 (vaag)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -682,6 +694,40 @@ msgstr "Bovenaan" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Host" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Ondersteuning voor container is niet Beschikbaar wanneer Konsole actief is " +"in Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [standaard]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -727,7 +773,7 @@ msgstr "" msgid "Copy Location" msgstr "Locatie kopiëren" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Miniaturen worden gegenereerd" @@ -758,13 +804,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Lettertype selecteren" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Alle lettertypen tonen" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -804,17 +850,17 @@ msgstr "Toetsencombinatie" msgid "Output" msgstr "Uitvoer" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nieuwe lijst met toetsenbindingen" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Lijst met toetsenbindingen bewerken" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -824,7 +870,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -858,225 +904,225 @@ msgstr "Invoer:" msgid "Output:" msgstr "Uitvoer:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalprogramma" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, De ontwikkelaars van Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Algemeen onderhouder, bugreparaties en algemene verbeteringen" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Vorige onderhouder, overbrengen naar KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Oorspronkelijke auteur" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Belangrijk herontwerp, bugreparaties en belangrijke verbeteringen" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Bugreparaties en algemene verbeteringen" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Bugreparaties en belangrijke verbeteringen" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Algemene verbeteringen" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Reparaties van bugs" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-ondersteuning en werk aan de geschiedenis" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Bug-reparaties en verbeterde opstarttijd" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Markeerverbeteringen" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1086,13 +1132,13 @@ msgstr "" "Ingebedde Konsole\n" "Werkbalk- en sessienamen" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1102,25 +1148,25 @@ msgstr "" "Ingebedde Konsole\n" "Algemene verbeteringen" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visuele effecten" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1130,132 +1176,132 @@ msgstr "" "Code van het kvt-project\n" "Algemene verbeteringen" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Schema- en tekstselectieverbeteringen" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-overdracht" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-overdracht" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Met dank aan vele anderen.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nieuw tabblad" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Tabblad &klonen" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nieu&w venster" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Venster sluiten" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Bladwij&zers" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Kleurenschema van &venster" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profielen beheren..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Menu activeren" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Tabbladindeling opslaan..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Tabbladindeling laden..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1264,67 +1310,67 @@ msgid_plural "" msgstr[0] "Er is een actief proces in dit venster. Wilt u toch afsluiten?" msgstr[1] "Er zijn %1 actieve processen in dit venster. Wilt u toch afsluiten?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Sluiten bevestigen" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Venster sluiten" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Huidig &tabblad sluiten" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Er zijn %1 open terminals in dit venster. Wilt u toch afsluiten?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profielen" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Algemeen" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Geheugen" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Tabbladbalk / Splitters" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Tijdelijke bestanden" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturen" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1408,7 +1454,7 @@ msgstr "Opslaan" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Bijwerken" @@ -1420,29 +1466,29 @@ msgid "Cancel" msgstr "Annuleren" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Snelle commando's" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Snelle toegang tonen" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Geen snelle commando's gevonden. U kunt er een toevoegen met Plug-ins -> " "Snelle commando's" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Plug-ins - Snelle commando's" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Snelle commando's tonen" @@ -1485,7 +1531,7 @@ msgstr "" " met meerdere configuraties, toch doen?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "U staat op het punt de %1 te verwijderen, zeker weten?" @@ -1538,11 +1584,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 is een map voor SSH-items" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH-configuratie" @@ -1607,24 +1653,24 @@ msgstr "" "uitvoeren" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH-sleutel" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Verwijderen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" -msgstr "Nier wijzigen" +msgstr "Niet wijzigen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1633,70 +1679,70 @@ msgstr "" "U staat op het punt de map %1 te verwijderen,\n" " met meerdere SSH-configuraties, toch doen?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH-configuraties verwijderen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "Geïmporteerd SSH-profiel
              Sommige instellingen zijn alleen-lezen." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Hostnaam ontbreekt" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Naam ontbreekt" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Als SSH-configuratie is gezet, specificeer dan niet de SSH-sleutel of " "gebruikersnaam." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Tenminste gebruikersnaam of SSH-sleutel moet gezet zijn" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Map ontbreekt" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Een SSH-sessie moet een profiel hebben" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Kan deze map niet verwijderen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Map en alle inhoud ervan verwijderen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Dubbelklik om de naam van de map te wijzigen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "U kunt geen automatisch toegevoegd item verwijderen." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Geselecteerd item verwijderen" @@ -1888,25 +1934,25 @@ msgstr "Uitvoeropties" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Printer&vriendelijke modus (zwarte tekst, geen achtergrond)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Uitvoer &schalen" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Ingebouwd" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standaard profiel" @@ -1965,17 +2011,42 @@ msgstr "Dubbelklik om de sneltoets te wijzigen" msgid "Tab Properties" msgstr "Tabbladeigenschappen" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Uitvoer van %1 opslaan" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 is een ongeldig URL-adres, de uitvoer kon niet worden opgeslagen." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Aanmaken van bestand voor automatische opslag op %1 is mislukt." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Automatisch opslaan wordt gestopt vanwege omschakelen van schermen." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Bestand voor automatisch opslaan is extern gewijzigd, verder automatisch " +"opslaan wordt voorkomen." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Bijwerken van status voor automatisch opslaan bij wijzigingen van uitvoer is " +"mislukt." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2011,81 +2082,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Dark Pastels" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Groen op zwart" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-kleuren" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rood op zwart" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Overbelicht" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Overbelicht licht" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Wit op zwart" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standaard (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-console" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-console" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Zoeken..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Voer hier een naam van een tabblad in waarnaar u wilt zoeken" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Signaal in '%1' (sessie '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Kon dit programma niet vinden: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Waarschuwing: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Kon geen interactieve shell om te starten vinden." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2094,337 +2182,341 @@ msgstr "" "Kon '%1' niet vinden. In plaats daarvan wordt '%2' gestart. Controleer uw " "profielinstellingen." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Kon het programma '%1' niet starten met de argumenten '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Stilte in '%1' (sessie '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Sessie tonen" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"De methoden sendText/runCommand voor D-Bus zijn zojuist gebruikt. Er zijn " -"zorgen om de veiligheid over het publiek gebruik van deze methoden. Indien " -"gewenst kunnen deze methoden gewijzigd worden tot alleen intern gebruik " -"Konsole opnieuw te compileren.

              Deze waarschuwing zal eenmaal getoond " -"worden voor dit exemplaar van Konsole.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Voltooid" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programma '%1' is onverwacht beëindigd." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programma '%1' is gestopt met status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-voortgang" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activiteit in '%1' (sessie '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"DBus API die gevoelig is voor beveiliging is uitgeschakeld in de " +"instellingen." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Het proces '%1' is geëindigd actief in sessie '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole weet niet hoe de bladwijzer te openen: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Naar '%1' zoeken met" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Websnelkoppelingen instellen..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Sessie sluiten" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Bestandsbeheer openen" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopiëren" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Beeld verticaal opsplitsen" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Beeld horizontaal opsplitsen" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopiëren behalve prompts" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Invoer van gebruiker kopiëren" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Uitvoer van commando kopiëren" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Selectie plakken" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Web-zoeken" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Alles &selecteren" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Modus selecteren" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Rege&l selecteren" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Uitvoer opslaan &als..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Uitvoer van automatisch opslaan als..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Automatisch opslaan stoppen" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Scherm afdrukken..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Terugschuiven aanpassen..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Geschiedenis opschonen" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Geschiedenis opschonen en resetten" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Volgende profiel" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Vorig profiel" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Profiel omschakelen" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Cod&ering instellen" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Muis volgen bieden" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Alleen-lezen" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Tabblad &configureren of hernoemen..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Alle tabbladen in het huidige venster" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Tabbladen &selecteren..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "Gee&n" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Invoer kopiëren naar" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem-upload..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Eenmalige speurders" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Speuren naar &prompt" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Speuren naar &activiteit" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Speuren naar &stilte" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitor voor beëindiging van processen" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Lettertekens vergroten" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Lettertekens verkleinen" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Tekengrootte resetten" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Signaal sturen" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Taak onder&breken" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Met taak &doorgaan" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Op&hangen" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Taak &onderbreken" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Taak afsluiten" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Taak &afbreken" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Gebruikersignaal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Gebruikersignaal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Nieuw profiel aanmaken..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Huidig profiel bewerken..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2433,7 +2525,7 @@ msgstr "" "Er draait momenteel een programma in deze sessie. Wilt u de sessie toch " "sluiten?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2442,18 +2534,18 @@ msgstr "" "Het programma '%1' draait momenteel in deze sessie. Wilt u de sessie toch " "sluiten?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Sluiten bevestigen" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Programma sluiten" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2462,37 +2554,37 @@ msgstr "" "Een programma in deze sessie wil zich niet afsluiten. Wilt u de sessie " "geforceerd sluiten?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"Het programma '%1' in deze sessie wil zich niet afsluiten. Wilt u de sessie " -"geforceerd sluiten?" +"Het programma '%1' in deze sessie wil niet afsluiten. Wilt u het geforceerd " +"sluiten?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Programma afbreken" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "De shell-prompt wordt getoond in sessie '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "De huidige map openen met" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "ZModem-download opslaan naar..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2503,14 +2595,14 @@ msgstr "" "echter er is geen geschikte ZModem-software gevonden op dit systeem.

              U " "zou het 'rzsz' of 'lrzsz' pakket kunnen installeren.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" "

              De huidige sessie heeft reeds een ZModem-bestandsoverdracht gaande.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2519,7 +2611,7 @@ msgstr "" "

              Er is geen geschikte ZModem-software gevonden op dit systeem.

              U zou " "het 'rzsz' of 'lrzsz' pakket kunnen installeren.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Bestanden voor uploaden met ZModem selecteren" @@ -2542,56 +2634,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configureren" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Zoeken:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Menu-versnellers inschakelen" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Profielinstellingen zullen genegeerd worden als dit is ingeschakeld" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Vensterafmetingen onthouden" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Venstertitel in de titelbalk tonen" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Geeft focus aan terminals als de muisaanwijzer zich erboven bevindt" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Laten overeenkomen met reguliere expressies" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2599,20 +2644,65 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Alle Konsole vensters in een enkel proces uitvoeren" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Alle overeenkomsten markeren" +msgid "If enabled, profile settings will be ignored" +msgstr "Profielinstellingen zullen genegeerd worden als dit is ingeschakeld" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "Vensterafmetingen onthouden" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, kde-format +msgid "Force new tabs" +msgstr "Nieuwe tabbladen afdwingen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "Luister naar ZModem terminalcodes" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "Voortgang in taakbalk tonen" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "Meldingen:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "Stelt in of zoeken moet beginnen vanaf beneden" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "Achterwaarts zoeken" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, kde-format msgid "Sets whether the search is case sensitive" msgstr "" @@ -2620,70 +2710,99 @@ msgstr "" "kleine letters" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, kde-format msgid "Case sensitive" msgstr "Hoofdlettergevoelig" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "Venstertitelbalk en frame verwijderen" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "Proces en venster:" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 #, kde-format -msgid "Notifications:" -msgstr "Meldingen:" +msgid "Highlight all matches" +msgstr "Alle overeenkomsten markeren" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 #, kde-format -msgid "All dialogs will be shown again" -msgstr "Alle dialogen zullen opnieuw getoond worden" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Schakel alle berichten \"Niet opnieuw vragen\" in" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "Stelt in of zoeken moet beginnen vanaf beneden" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" -msgstr "Achterwaarts zoeken" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Zoeken:" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" "Stelt in of zoeken moet stoppen in plaats van van voren af weer verder gaan" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Niet van voren af verder gaan" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Menu-versnellers inschakelen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Geeft focus aan terminals als de muisaanwijzer zich erboven bevindt" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Alle dialogen zullen opnieuw getoond worden" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Schakel alle berichten \"Niet opnieuw vragen\" in" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Venstertitel in de titelbalk tonen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" +"De delen van de DBUS API, die gevoelig zijn voor beveiliging, inschakelen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Venstertitelbalk en frame verwijderen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Laten overeenkomen met reguliere expressies" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2710,65 +2829,107 @@ msgstr "Huidige venstergrootte gebruiken bij volgende keer opstarten" msgid "The window size will be saved upon exiting Konsole" msgstr "Venstergrootte zal worden opgeslagen bij afsluiten van Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Bij starten van Konsole maak, indien mogelijk, een nieuw tabblad aan in " +"plaats van een nieuw venster aan te maken" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Voortgang in taakbalk tonen" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Wanneer een script zijn voortgang rapporteert, zal het dit getoond worden in " +"de taakbalk" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "DBus API zoals runCommand zal ingeschakeld worden" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Luister naar ZModem terminalcodes" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Automatisch bestanden verzenden/ontvangen over seriële verbindingen" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Breedte miniatuur" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "De breedte van het miniatuur instellen" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Shift gebruiken om een miniatuur te tonen" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Alt gebruiken om een miniatuur te tonen" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Ctrl gebruiken om een miniatuur te tonen" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Zoeken maakt onderscheid tussen hoofd- en kleine letters" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Alle overeenkomsten accentueren" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Bepaalt of overeenkomende tekst moet worden geaccentueerd" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Zoeken stopt in plaats van van voren af weer verder te gaan" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" @@ -2776,7 +2937,7 @@ msgstr "" "tabbladen" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2785,91 +2946,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Bestuur de zichtbaarheid van de gehele tabbladbalk" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Bepaal de grootte van het handvat tussen panelen" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Bestuur de positie van de tabbladbalk" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Bestuur de visuele stijl van de tabbladbalk" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Gebruik een gebruikergedefinieerd .css-bestand voor de tabbladbalk" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Het te gebruiken .css-bestand voor de stijl van de tabbladbalk" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Midden-klikken op geopende tabbladen toestaan om ze te sluiten" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Bestuur de zichtbaarheid van de knop 'Nieuw tabblad' op de tabbladbalk" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" +"Bestuur de zichtbaarheid van de knop 'Tabblad zoeken' op de tabbladbalk" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Bestuur waar de knop \"Tabblad sluiten\" wordt geplaatst" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Bestuur waar een nieuw tabblad geplaatst wordt" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "De tabbladbreedtes uitbreiden" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Voor terugrolbestanden, systeembrede map gebruiken" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Voor terugrolbestanden, specifieke map van gebruiker gebruiken" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Voor terugrolbestanden, gespecificeerde map gebruiken" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Voor terugrolbestanden, deze map gebruiken" @@ -2881,34 +3049,30 @@ msgid "Enable memory monitoring:" msgstr "Monitoren van geheugen inschakelen" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Wijzigingen zullen effectief worden bij een herstart. Indien ingeschakeld, " -"doorgaand geheugengebruik door Konsole\n" -"dat boven de gespecificeerde waarde gaat zal systemd-oomd veroorzaken om de " -"tab(bladen) te elimineren\n" -"die de geheugen-intensieve proces(sen) bevatten. Opmerking: inschakelen\n" -"kan grotere vertragingen veroorzaken tijdens hoog geheugengebruik en\n" -"zeer lage waarden specificeren kan nog steeds veroorzaken dat Konsole wordt " -"afgebroken." +"doorgaand geheugengebruik door Konsole dat boven de gespecificeerde waarde " +"gaat zal systemd-oomd veroorzaken om de tab(bladen) te elimineren, die de " +"geheugen-intensieve proces(sen) bevatten. Opmerking: inschakelen kan grotere " +"vertragingen veroorzaken tijdens hoog geheugengebruik en zeer lage waarden " +"specificeren kan nog steeds veroorzaken dat Konsole wordt afgebroken." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Geheugenlimiet:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3069,125 +3233,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Geen" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Knop Tabblad zoeken tonen:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Altijd" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nooit" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diversen:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Knop 'Nieuw tabblad' tonen" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Individuele tabbladbreedtes uitbreiden tot het volledige venster" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Gebruikergedefinieerd stijlblad gebruiken:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(geen)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Gedrag" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Nieuwe tabbladen invoegen:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Aan he&t eind" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Na huidig &tabblad" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Tabblad sluiten bij midden-klik" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Splitsingen" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Kop tonen:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Indien nodig" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nooit" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Grootte sleephandvat:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Klein" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Middel" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Groot" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3239,13 +3421,12 @@ msgstr "px" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Om deze functie te gebruiken, schakel Muis->Diversen->Onderstrepen bestanden in in uw profielinstellingen

              " +"font-weight:600;\">Muis->Diversen->Onderstrepen in in uw " +"profielinstellingen

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3283,64 +3464,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Generatie van miniaturen inschakelen" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Grootte: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Wilt u %1 teken plakken?" msgstr[1] "Wilt u %1 tekens plakken?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Plakken bevestigen" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Einde tekst/Interrupt: kan het huidige proces afsluiten" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Einde van overdracht: kan het huidige proces afsluiten" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Bel: zal proberen een hoorbare waarschuwing uit te sturen" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Apparaatbesturing drie/XOFF: uitvoer onderbreken" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitueren/onderbreken: kan het huidige proces onderbreken" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: gebruikt om status van terminal te manipuleren" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Bestandsscheiding/afsluiten: kan het huidige proces afbreken" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3349,31 +3530,31 @@ msgstr "" "De tekst die u probeert te plakken bevat verborgen besturingstekens, wilt u " "ze uitfilteren?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Plakken bevestigen" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Plakken &zonder besturingstekens" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Alles &plakken" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Annuleren" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been onderbroken door het drukken op Ctrl+S. Druk op Ctrl+Q om te " "hervatten." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Deze terminal is alleen-lezen." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "&Map wijzigen naar" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Locatie &plakken" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Beeld splitsen" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Beeld verticaal opsplitsen" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Beeld horizontaal opsplitsen" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Beeld automatisch splitsen" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Beeld verticaal opsplitsen vanaf volgend tabblad" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Beeld horizontaal opsplitsen vanaf volgend tabblad" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Beeld automatisch splitsen vanaf volgend tabblad" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Een nieuw tabblad met indeling 2x2 terminals laden" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Een nieuw tabblad met indeling 2x1 terminals laden" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Een nieuw tabblad met indeling 1x2 terminals laden" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Beeld uitbreiden" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Beeld inkrimpen" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Huidig weerga&ve losmaken" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Huidig &tabblad losmaken" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Volgend tabblad" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Vorig tabblad" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Focus boven terminal" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Focus onder terminal" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Focus linker terminal" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Focus rechter terminal" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Focus op volgende terminal" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Focus op vorige terminal" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Ga naar laatste tabblad" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Laatst gebruikte tabbladen" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Omschakelen tussen twee tabbladen" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Laatst gebruikte tabbladen (omgekeerd)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Huidige weergave maximaliseren omschakelen" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Huidige weergave maximaliseren omschakelen" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Huidige weergave zoom-maximaliseren omschakelen" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Huidige weergave zoom-maximaliseren omschakelen" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Tabblad naar rechts verplaatsen" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Tabblad naar links verplaatsen" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Semantische integratie opzetten (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Tonen van semantische hints omschakelen" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Tonen van regelnummers omschakelen" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Alle weergaven gelijke grootte" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Ga naar tabblad %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantische hints " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Regelnummers " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Tabbladindeling opslaan" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole-weergave-indeling (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3641,7 +3834,7 @@ msgstr "" "Er deed zich een probleem voor tijdens het opslaan van de indeling.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3651,13 +3844,13 @@ msgstr "" "Er deed zich een probleem voor tijdens het laden van de indeling.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Tabbladindeling laden" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3759,28 +3952,40 @@ msgstr "&Standaard tekensetcodering:" msgid "Shortcut for peeking the primary screen:" msgstr "Sneltoets voor bekijken van het primaire scherm:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Interval tussen automatisch opslaan instellen:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Regelnummers:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nooit" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Wanneer hints voor &URL's worden getoond" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3816,7 +4021,7 @@ msgstr "Het geselecteerde kleurenschema bewerken" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3870,6 +4075,9 @@ msgstr "Toon intense kleuren in vet lettertype" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Het geselecteerde lettertype gebruiken voor lijntekens in plaats van de " @@ -3878,6 +4086,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Lijntekens gebruiken uit het lettertype" @@ -3999,29 +4210,43 @@ msgid "Make the cursor blink regularly" msgstr "Cursor regelmatig laten knipperen" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Ingeschakeld" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animatie:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Cursor zachtjes laten animeren" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diversen" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Venster:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4031,144 +4256,144 @@ msgstr "" "het venster tonen na wijzigen van de grootte" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Hint over afmetingen van de terminal tonen na wijzigen van de grootte" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "De kleuren van de geselecteerde tekst altijd inverteren" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Sterkte van donkerder makan:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Kleur:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Selecteer de kleur die gebruikt wordt voor de rand" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Inactieve terminals:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Actieve terminals:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Inhoud van terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Regelafstand:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Het aantal pixels tussen twee regels" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marges:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Uitlijnen om te centreren:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Aangeven of het venster actief is door de kleuren te dimmen" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Donkerder maken" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Aangeven of het venster actief is door een rand te tekenen" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Rand" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Verticale lijn tonen bij kolum:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Complexe tekstindeling

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Complexe tekstindeling" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Woord-modus inschakelen in renderen van tekst" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Woord-modus" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4178,43 +4403,43 @@ msgstr "" "afgebroken door wijzigingen van attribuut bij renderen)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Hetzelfde attribuut gebruiken voor het gehele woord" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Woorden van ASCII-tekens samen renderen" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII-tekens " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Woorden van Brahmic script-tekens samen renderen" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Brahmic script-tekens" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji-lettertype:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4224,96 +4449,96 @@ msgstr "" "of Hebreeuws)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Weergeven van bi-directionele tekst" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" "Regels zijn altijd LTR, in plaats van bepaald door het eerste sterke teken" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "regelrichting LTR afdwingen" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tabel tekenen behandelen als tekenen van tekens net zo sterk als LTR." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Tabeltekens modus BiDi overschrijven" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Wcwidth van problematische tekens negeren" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Wcwidth vervangen" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profiel bewerken" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Algemeen" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Tabbladen" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Uiterlijk" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Schuiven" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Toetsenbord" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Toetsenbindingen" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Muis" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Geavanceerd" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4325,48 +4550,53 @@ msgstr "" "filename>.Ofwel de rechten van dat bestand wijzigen of een andere naam " "instellen om de instellingen op te slaan in een nieuw profiel." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Profielnaam was leeg; stel een naam in om instellingen op te slaan." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Een profiel met de naam \"%1\" bestaat al." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profielnaam is langer dan de maximaal toegestane lengte (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "De geaccentueerde tekens zijn ongeldig in profielnamen: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Bewerken van profiel: %2" msgstr[1] "Bewerken van %1 profielen: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Nieuw profiel aanmaken" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Profiel \"%1\" bewerken" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Geen" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4376,7 +4606,7 @@ msgid_plural " columns" msgstr[0] "Kolom" msgstr[1] " kolommen" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4386,42 +4616,42 @@ msgid_plural " rows" msgstr[0] " rij" msgstr[1] " rijen" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Systeembel" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" -msgstr "Systeemberichten" +msgstr "Systeemmeldingen" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Zichtbare bel" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Bel-gebeurtenissen negeren" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Standaard profiel voor nieuwe terminalsessies in %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Omgeving bewerken" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Eén omgevingsvariabele per regel" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4429,23 +4659,23 @@ msgid_plural " seconds" msgstr[0] " seconde" msgstr[1] " seconden" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Beginmap selecteren" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Nieuwe ophalen..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Laden van schema %1 is mislukt." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4454,7 +4684,7 @@ msgstr "" "Dit kleurenschema heeft een transparante achtergrond, maar dit wordt niet " "door uw bureaublad ondersteund" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4463,12 +4693,12 @@ msgstr "" "Konsole is opgestart alvorens bureaubladeffecten waren ingeschakeld. U dient " "konsole opnieuw te starten om een transparante achtergrond te zien." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Standaard voor bestandstype" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4497,7 +4727,7 @@ msgstr "" "genegeerd worden en zal het bestand geopend worden door de standaard\n" "tekstbewerker." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Aangepaste opdracht aan tekstbewerker" @@ -4587,26 +4817,57 @@ msgstr "De beginmap kiezen" msgid "Start in same directory as current session" msgstr "In dezelfde map als huidige sessie starten" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Bij openen van een nieuw tabblad of splitsing, ga automatisch in dezelfde " +"container (Toolbox, Distrobox) als de huidige sessie" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Ga dezelfde container in als de huidige sessie" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Altijd in container starten:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Nieuwe sessies altijd starten met gebruik van dit profiel in de " +"geselecteerde container" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Omgeving:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Bewerk de lijst met omgevingsvariabelen en bijhorende waarden" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Initiële terminal&grootte" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4619,31 +4880,31 @@ msgstr "" "moet uitgeschakeld worden om deze items te laten werken.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Modus bel van &terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantische integratie" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulatie van pijltjes omhoog/omlaag" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Muisklik in invoerlijn verplaatst cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantische hints:" @@ -4653,9 +4914,9 @@ msgstr "Semantische hints:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4666,9 +4927,9 @@ msgstr "Nooit" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4679,34 +4940,34 @@ msgstr "Wanneer hints voor URL's worden getoond" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Altijd" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Rode foutbalken:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Rode achtergrond bij fout" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Afwisselende balken:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Afwisselende achtergronden:" @@ -5073,116 +5334,128 @@ msgid "Scrollback:" msgstr "Terugschuiven:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Pagina omhoog/omlaag schuiven:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "De regels accentueren die in zicht komen" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Verborgen" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" +"Grootte van elke markering (als een percentage van de schuifbalklengte):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Accentuering:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "De pagina de halve hoogte van het venster verschuiven" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Halve hoog&te van scherm" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Kleur van schuifbalkmarkeringen:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Kleur van met schuifbalk zoeken die regels accentueert:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Regels netjes maken:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "De pagina de volledige hoogte van het venster verschuiven" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "V&olledige hoogte van scherm" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Positie van schuifbalk:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Schuifbalk rechts in het terminalvenster tonen" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Rec&hterkant" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Schuifbalk links in het terminalvenster tonen" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Linkerkant" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Verborgen" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Accentuering:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "De regels accentueren die in zicht komen" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Regels netjes maken:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Regels netjes maken wanneer de grootte van de terminal wijzigt" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Kleur van schuifbalkmarkeringen:" +msgid "Scrollbar position:" +msgstr "Positie van schuifbalk:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" -"Grootte van elke markering (als een percentage van de schuifbalklengte):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Dekking van geaccentueerde regel zoeken:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5290,37 +5563,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "Gee&n" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Zoeken..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Voer hier de tekst in waarnaar u wilt zoeken" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Volgende" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Ga naar de volgende overeenkomst op de huidige zoekterm" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Vorige" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5328,23 +5601,11 @@ msgstr "Ga naar de vorige overeenkomst op de huidige zoekterm" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Het menu-opties tonen" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "De zoekbalk sluiten" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Hoofdlettergevoelig" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" @@ -5352,56 +5613,68 @@ msgstr "" "Geeft aan of er bij het zoeken onderscheid gemaakt wordt tussen hoofd- en " "kleine letters" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Het menu-opties tonen" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "De zoekbalk sluiten" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Met reguliere expressie laten overeenkomen" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Alle overeenkomsten markeren" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Bepaalt of overeenkomende tekst moet worden geaccentueerd" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Achterwaarts zoeken" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Stelt in of zoeken moet beginnen vanaf beneden" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Niet van voren af verder gaan" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" "Stelt in of zoeken moet stoppen in plaats van van voren af weer verder gaan" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Zoek naar de huidige zoektekst vanaf beneden" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5412,7 +5685,7 @@ msgstr "Zoek naar de huidige zoektekst vanaf boven" msgid "Print Shell" msgstr "Shell afdrukken" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5453,6 +5726,12 @@ msgstr "Opmaak normale tabbladtitel" msgid "Tab Co&lor:" msgstr "Tabbladk&leur:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Tabbladkleur van &activiteit:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5546,36 +5825,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Terminal herstellen" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Een nieuw tabblad openen" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Tabbladen zoeken" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Dit tabblad sluiten" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Tabblad &losmaken" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Tabblad &configureren of hernoemen..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Tabblad sluiten" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "De methoden sendText/runCommand voor D-Bus zijn zojuist gebruikt. Er " +#~ "zijn zorgen om de veiligheid over het publiek gebruik van deze methoden. " +#~ "Indien gewenst kunnen deze methoden gewijzigd worden tot alleen intern " +#~ "gebruik Konsole opnieuw te compileren.

              Deze waarschuwing zal eenmaal " +#~ "getoond worden voor dit exemplaar van Konsole.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Hoofdlettergevoelig" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Geen" diff --git a/local/recipes/kde/konsole/source/po/nn/konsole.po b/local/recipes/kde/konsole/source/po/nn/konsole.po index 6e001445d6..670d4fed85 100644 --- a/local/recipes/kde/konsole/source/po/nn/konsole.po +++ b/local/recipes/kde/konsole/source/po/nn/konsole.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-01 15:58+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-06-27 11:46+0200\n" "Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 26.07.70\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" @@ -55,7 +55,7 @@ msgstr "Vis" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Delt vising" @@ -91,7 +91,7 @@ msgid "S&crollback" msgstr "&Rulleminne" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Øktverktøylinje" @@ -171,37 +171,53 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Gøym menylinja og ignorer standardoppsettet" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Vis fanelinja og ignorer standardoppsettet" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Gøym fanelinja og ignorer standardoppsettet" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Vis fanelinja og ignorer standardoppsettet" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Gøym fanelinja og ignorer standardoppsettet" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Start Konsole i fullskjermsmodus" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Slå av gjennomsiktige bakgrunnar, også dersom systemet har støtte før dei." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Vis oversikt over tilgjengelege profilar" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -209,13 +225,13 @@ msgstr "" "Vis oversikt over alle namna og typane til profileigenskapar (for bruk med «-" "p»)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Endra verdien til ein profileigenskap." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -225,7 +241,7 @@ msgstr "" "Kommando som skal køyrast. Dette valet fangar opp alle seinare argument, så " "bruk det som siste val." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -235,13 +251,13 @@ msgstr "" "Tving gjennom gjenbruk av program­instansar sjølv når det vil føra til tapt " "funksjonalitet, for eksempel «--new-tab». Mest brukt til feilsøking." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argument for kommandoen" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -259,157 +275,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Framgrunn" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Bakgrunn" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Farge 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Farge 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Farge 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Farge 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Farge 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Farge 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Farge 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Farge 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Framgrunn (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Bakgrunn (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Farge 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Farge 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Farge 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Farge 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Farge 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Farge 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Farge 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Farge 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Framgrunn (svak)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Bakgrunn (svak)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Farge 1 (svak)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Farge 2 (svak)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Farge 3 (svak)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Farge 4 (svak)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Farge 5 (svak)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Farge 6 (svak)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Farge 7 (svak)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Farge 8 (svak)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -665,6 +681,40 @@ msgstr "Topp" msgid "AaZz09..." msgstr "AaÅå09 …" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Vert" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [standard]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -710,7 +760,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopier adresse" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Lagar miniatyrbilete" @@ -741,13 +791,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Vel skrift" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Vis alle skrifter" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -787,17 +837,17 @@ msgstr "Tastekombinasjon" msgid "Output" msgstr "Utdata" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Ny tastebindingsliste" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Endra tastebindingsliste" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Du kan ikkje lagra eit tastebindingsoppsett med ei tom skildring." @@ -805,7 +855,7 @@ msgstr "Du kan ikkje lagra eit tastebindingsoppsett med ei tom skildring." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -839,225 +889,225 @@ msgstr "Inndata:" msgid "Output:" msgstr "Utdata:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalemulator" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997–2022 Konsole-utviklarane" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Hovudvedlikehaldar, feilfiksing og generelle forbetringar" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Tidlegare vedlikehaldar, og port til KDE 4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Opphavleg utviklar" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Stor omfaktorering, feilrettingar og store forbetringar" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Feilfiksing og generelle forbetringar" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T.H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Feilrettingar og store forbetringar" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Generelle forbetringar" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Feilfiksar" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-støtte og loggstøtte" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Feilfiksar og forbetring av oppstarten" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Forbetring av merking" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1067,13 +1117,13 @@ msgstr "" "Innebygd konsoll,\n" "verktøylinjer og øktnamn" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1083,25 +1133,25 @@ msgstr "" "Innebygd konsoll,\n" "generelle forbetringar" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visuelle effektar" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1111,132 +1161,132 @@ msgstr "" "Kode frå kvt-prosjektet\n" "Generelle forbetringar" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Forbetringar av fargeoppsett og tekstmerking" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-port" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-port" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Takk òg til mange andre.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Ny fane" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Klon fane" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nytt &vindauge" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Lukk vindauget" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Bokmerke" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Fargeoppsett for vindauge" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Handter profilar …" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Opna meny" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Lagra faneutforming …" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Opna faneutforming …" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1245,67 +1295,67 @@ msgid_plural "" msgstr[0] "Ein prosess køyrer i dette vindauget. Vil du likevel avslutta?" msgstr[1] "%1 prosessar køyrer i dette vindauget. Vil du likevel avslutta?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Stadfest lukking" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Lukk &vindauget" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Lukk gjeldande &fane" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Du har %1 opne terminalar i vindauget. Vil du likevel avslutta?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profilar" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Generelt" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Minne" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Fanelinje/oppdelarar" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Mellombelse filer" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniatyrbilete" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1391,7 +1441,7 @@ msgstr "Lagra" # Verb, imperativ. #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Oppdater" @@ -1403,29 +1453,29 @@ msgid "Cancel" msgstr "Avbryt" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Snøggkommandoar" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Vis snøggtilgang" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Fann ingen snøggkommandoar. Du kan leggja til nye under «Programtillegg → " "Vis snøggkommandoar»." -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Programtillegg – snøggkommandoar" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Vis snøggkommandoar" @@ -1467,7 +1517,7 @@ msgstr "" " som har fleire kommandoar. Er du sikker på at du vil gjera dette?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Du er i ferd med å sletta «%1». Er du sikker på at du vil gjera dette?" @@ -1520,11 +1570,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 er ei mappe for SSH-oppføringar" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH-oppsett" @@ -1588,24 +1638,24 @@ msgstr "" "Kan ikkje køyra SSH-kommandoar utanfor skalprogrammet (bash, zsh, sh, …)." #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH-nøkkel" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Slett" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ikkje endra" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1614,69 +1664,69 @@ msgstr "" "Du er i ferd med å sletta mappa %1,\n" " som har fleire SSH-oppsett. Er du sikker på at du vil gjera dette?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Slett SSH-oppsett" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "Importer SSH-profil
              Nokre innstillingar er skriveverna." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Manglar vertsnamn" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Manglar namn" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Viss «Bruk SSH-oppsett» er på, ikkje spesifiser SSH-nøkkel eller brukarnamn." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Brukarnamn eller SSH-nøkkel må oppgjevast" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Manglar mappe" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Ei SSH-økt må ha ein profil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Kan ikkje sletta denne mappa" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Slett mappa og alt innhaldet" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Dobbeltklikk for å endra mappenamnet." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Du kan ikkje sletta ei automatisk oppføring." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Slett den valde oppføringa" @@ -1868,25 +1918,25 @@ msgstr "Alternativ for utdata" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Skrivar&vennleg modus (svart tekst, ingen bakgrunn)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skaler utdata" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Innebygd" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standardprofil" @@ -1945,17 +1995,38 @@ msgstr "Dobbeltklikk for å endra snarveg" msgid "Tab Properties" msgstr "Faneeigenskapar" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Lagra utdata frå %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 er ei ugyldig nettadresse, så klarte ikkje lagra utdata." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Klarte ikkje lagra autolagringsfil i %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Stoppa automatisk lagring grunna skjermbyte." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "Autolagringsfeila er oppdatert eksternt. Hindrar vidare autolagring." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Klarte ikkje oppdatera autolagringstilstand ved endring av utdata." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1991,81 +2062,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Mørke pastellfargar" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Grønt på svart" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-fargar" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Raudt på svart" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarisert" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarisert lys" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Kvitt på svart" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standard (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-konsoll" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-konsoll" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Søk:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Skriv inn søkjeteksten her" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Varsel i «%1» (økt «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Fann ikkje programfil: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Åtvaring: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Klarte ikkje finna eit interaktivt skal å starta." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2074,337 +2162,340 @@ msgstr "" "Klarte ikkje finna «%1». «%2» vert starta i staden. Kontroller " "profilinnstillingane dine." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Klarte ikkje starta programmet «%1» med argumenta «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Stilt i «%1» (økt «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Vis økt" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"D-Bus-metodane sendText/runCommand vart nettopp brukte. Det er eit " -"tryggleiksproblem å lata desse metodane vera offentlege. Viss du vil, kan du " -"endra metodane til berre å støtta intern bruk, ved å rekompilera Konsole. " -"

              Denne åtvaringa vert berre vist éin gong for denne Konsoll-instansen.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Fullført" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programmet «%1» krasja." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programmet «%1» avslutta med status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-framdrift" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivitet i «%1» (økt «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsoll" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Prosessen «%1» er ferdig i økta «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole veit ikkje korleis bokmerket skal opnast: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Søk etter «%1» med" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Set opp vevsnarvegar …" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Lukk økt" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Opna filhandsamaren" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopier" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Del visinga venstre/høgre" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Del visinga oppe/nede" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopier utanom innkommando" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopier inndata" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopier kommandoresultat" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Lim inn utval" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Nettsøk" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Merk alt" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Merkjemodus" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Vel &linje" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Lagra utdata &som …" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Lagra automatisk utdata &som …" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Stopp automatisk lagring" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Skriv ut skjermen …" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Juster rulleminne …" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Tøm rulleminne" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Tøm rulleminne og skjerm" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Neste profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Førre profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Byt profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Vel &teiknkoding" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Tillat sporing av musa" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Skriveverna" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Tilpass eller endra namn på fane …" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Alle fanene i det gjeldande vindauget" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Vel faner …" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ingen" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopier inndata til" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem-opplasting …" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Éingangsovervaking" # Gjev varsling når kommandolinja vert tilgjengeleg for inntasting att. Menyvalet vert vist på «Vis»-menyen. -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Overvak for ledig &kommandolinje" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Overvak for &aktivitet" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Overvak for &stille" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Overvak for &prosessfullføring" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Større skrift" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Mindre skrift" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Tilbakestill skriftstorleik" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Send signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Set oppgåve i pause" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Hald fram oppgåve" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Legg på" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Avbryt oppgåve" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Avslutt oppgåve" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Drep oppgåve" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Brukarsignal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Brukarsignal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Lag ny profil …" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Endra gjeldande profil …" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2412,7 +2503,7 @@ msgid "" msgstr "" "Det køyrer eit program i denne økta. Er du sikker på at du vil lukka ho?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2420,18 +2511,18 @@ msgid "" msgstr "" "Programmet «%1» køyrer i denne økta. Er du sikker på at du vil lukka ho?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Stadfest lukking" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Lukk programmet" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2440,38 +2531,38 @@ msgstr "" "Eit program i denne økta ville ikkje døy. Er du sikker på at du vil drepa " "det med makt?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Programmet «%1» i denne økta ville ikkje døy. Er du sikker på at du vil " "drepa det med makt?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Tvangsavslutt programmet" # Jf. «Monitor for &Prompt»-teksten. -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Ledig kommandolinje vert vist i økta «%1»" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Opna gjeldande mappe med" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Lagra ZModem-nedlasting til …" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2482,13 +2573,13 @@ msgstr "" "passande ZModem-programvare på systemet.

              Du kan prøva å installera " "pakkane «rzsz» eller «lrzsz».

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Økta har alt ei ZModem-filoverføring på gang.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2497,7 +2588,7 @@ msgstr "" "

              Fann ikkje noka passande ZModem-programvare på systemet.

              Du kan " "prøva å installera pakkane «rzsz» eller «lrzsz».

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Vel filer til ZModem-opplasting" @@ -2520,144 +2611,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Set opp" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Søk:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Slå på menysnarvegar" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Om du kryssar av her, vert aldri profilinnstillingane brukte." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Hugs vindaugsstorleik" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Vis vindaugstittel på tittellinja" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Gje fokus til terminalar når musepeikaren er over dei" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Søk med regulære uttrykk" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Bruk om mogleg om att gammal prosess ved start av Konsole" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Køyr alle Konsoll-vindauge i éin prosess" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Fargelegg alle treffa" +msgid "If enabled, profile settings will be ignored" +msgstr "Om du kryssar av her, vert aldri profilinnstillingane brukte." -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Vel om søket skal skilja mellom store og små bokstavar" +msgid "Remember window size" +msgstr "Hugs vindaugsstorleik" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Skil mellom store og små bokstavar" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Legg nye faner:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Fjern tittellinje og vindaugsramme" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Prosess og vindauge:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Varslingar:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Alle dialogvindauge vert viste på nytt" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Slå på alle «Ikkje spør igjen»-meldingar" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Bruk omvend søkjeretning, frå botnen og opp." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Søk bakover" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Vel om søket skal skilja mellom store og små bokstavar" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Skil mellom store og små bokstavar" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Prosess og vindauge:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Fargelegg alle treffa" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Søk:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Vel om søket skal stoppa eller starta om att frå toppen" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Start om att frå toppen" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Slå på menysnarvegar" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Gje fokus til terminalar når musepeikaren er over dei" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Alle dialogvindauge vert viste på nytt" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Slå på alle «Ikkje spør igjen»-meldingar" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Vis vindaugstittel på tittellinja" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Fjern tittellinje og vindaugsramme" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Søk med regulære uttrykk" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2682,71 +2800,110 @@ msgstr "Bruk gjeldande vindaugsstorleik ved neste oppstart" msgid "The window size will be saved upon exiting Konsole" msgstr "Noverande Konsole-geometri (vindaugsstorleik) vert brukt." -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Bruk om mogleg om att gammal prosess ved start av Konsole" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Breidd på miniatyrbilete" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Vel breidda på miniatyrbilete" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Bruk «Shift» for å visa miniatyrbilete" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Bruk «Alt» for å visa miniatyrbilete" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Bruk «Ctrl» for å visa miniatyrbilete" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Søket skil mellom store og små bokstavar" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Fargelegg alle treffa" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Vel om tekst som samsvarar med søket skal merkjast" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Søket stoppar i staden for å starta om att" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Vel om barne-cgrupper skal opprettast for enkeltfaner" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2754,91 +2911,97 @@ msgstr "Vel grensa for minnebruk (høgare minnebruk fører til struping)" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Styr synlegheit for heile fanelinja" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Vel storleik på drahandtaka som vert viste mellom ruter" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Styr plasseringa av fanelinja" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Styr visuell stil for fanelinja" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Bruk ei eigendefinert .css-fil for fanelinja" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr ".css-fila som skal brukast som stil for fanelinja" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Tillat midtklikking på faner for å lukka dei" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Styr om «Ny fane»-knappen på fanelinja skal visast" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Styr om «Ny fane»-knappen på fanelinja skal visast" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Styr om «Lukk fane»-knappen skal visast" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Styr kor den nye fana skal plasserast" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Utvid fanebreidder" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Bruk systemplassering for rulleminnefiler" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Bruk brukarvalt plassering for rulleminnefiler" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Bruk brukarvalt plassering for rulleminnefiler" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Bruk denne mappa for rulleminnefiler" @@ -2850,16 +3013,23 @@ msgid "Enable memory monitoring:" msgstr "Slå på minneovervaking:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 -#, kde-format +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Endringane trer i kraft etter omstart. Viss det er kryssa av her, vil høgare " "minnebruk av Konsole\n" @@ -2870,13 +3040,13 @@ msgstr "" "verta tvangsavslutta." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Minnegrense:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3036,125 +3206,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Ingen" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +msgid "Show Search Tabs button:" +msgstr "Vis knapp for fanelukking:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +msgid "Always" +msgstr "Alltid" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +msgid "Never" +msgstr "Aldri" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Ymse:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Vis «Ny fane»-knapp" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Utvid einskilde fanebreidder til å dekkja heile vindauget" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Bruk brukartilpassa stilsett:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ingen)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Åtferd" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Legg nye faner:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "På &slutten" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Etter &gjeldande fane" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Lukk fane ved midtklikking" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Oppdelingar" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Vis overskrift:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Ved behov" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Aldri" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Storleik på drahandtak:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Liten" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Middels" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Stor" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3206,8 +3394,8 @@ msgstr "pikslar" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Viss du vil bruka denne funksjonen, slå på Mus → Ymse → Strek under filer i " @@ -3249,65 +3437,65 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Slå på generering av miniatyrbilete" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Storleik: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Er du sikker på at du vil lima inn %1 teikn?" msgstr[1] "Er du sikker på at du vil lima inn %1 teikn?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Stadfest innliming" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Tekstslutt/avbryt: Kan avslutta gjelande prosess" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Sendeslutt: Kan avslutta gjeldande prosess" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Bjølle: Vil prøva å gje eit lydsignal" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Rettetast" # https://en.wikipedia.org/wiki/C0_and_C1_control_codes -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Eningskontroll tre / XOFF: Slå av utdata" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Utbyting / pause: Kan setja gjeldande prosess i pause" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: Brukt for å endra tilstanden til terminalen" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Filskiljeteikn/avbryt: Kan avbryta gjeldande prosess" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3316,31 +3504,31 @@ msgstr "" "Teksten du prøver å lima inn, inneheld usynlege kontrollteikn. Vil du " "filtrera dei vekk?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Stadfest innliming" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Lim inn &utan kontrollteikn" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Lim inn alt" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Avbryt" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been lagde i bakgrunnen med tastetrykket «Ctrl + S». Trykk «Ctrl + Q» for å halda fram." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Denne terminalen er skriveverna." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Byt &mappe til" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "L&im inn adresse" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Delt vising" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Del visinga venstre/høgre" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Del visinga oppe/nede" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Del visinga automatisk" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Del visinga venstre/høgre frå neste fane" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Del visinga oppe/nede frå neste fane" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Del visinga automatisk frå neste fane" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Last ny fane med 2 × 2 terminalar" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Last ny fane med 2 × 1 terminalar" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Last ny fane med 1 × 2 terminalar" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Utvid vising" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Forminsk vising" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Kopla frå gjeldande &vising" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Kopla frå gjeldande &fane" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Neste fane" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Førre fane" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fokus på terminal over" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fokus på terminal under" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fokus på terminal til venstre" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fokus på terminal til høgre" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokus på terminal til venstre" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokus på terminal under" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Byt til siste fane" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Sist brukte faner" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Byt mellom to faner" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Sist brukte faner (motsett rekkjefølgje)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Maksimer/avmaksimer gjeldande vising" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Maksimer/avmaksimer gjeldande vising" # Forstørrer heile visinga (eks. små ruter når vindauget er delt både loddrett og vassrett). Visinga fyller ikkje berre heile vindauget (som ved maksimering); skrifta vert òg forstørra. -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Forstørr/forminsk gjeldande vising" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Forstørr/forminsk gjeldande vising" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Flytt fane til høgre" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Flytt fane til venstre" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Set opp semantisk integrering (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Slå på/av vising av semantiske hint" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Slå av/på vising av linjenummer" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Lik storleik for alle visingar" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Byt til fane %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantiske hint" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Linjenummer" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Lagra faneutforming" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole-visingsutforming (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3609,7 +3813,7 @@ msgstr "" "Det oppstod eit problem ved lagring av utforminga.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3619,13 +3823,13 @@ msgstr "" "Det oppstod eit problem ved lasting av utforminga.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Opna faneutforming" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3725,28 +3929,40 @@ msgstr "&Standard teiknkoding:" msgid "Shortcut for peeking the primary screen:" msgstr "Snøggtast for snikkikk på hovudskjermen:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Tidsintervallet mellom automatisk lagring:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Linjenummer:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Aldri" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Når &URL-hint vert viste" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3782,7 +3998,7 @@ msgstr "Endra det valde fargeoppsettet" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3835,13 +4051,22 @@ msgstr "Vis sterke fargar i halvfeit skrift" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Bruk den valde skrifta for linjeteikn i staden for den innebygde koden" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Bruk linjeteikna som finst i skrifta" @@ -3963,29 +4188,45 @@ msgid "Make the cursor blink regularly" msgstr "Skrivemerket skal blinka regelmessig" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "På" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Start:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Skrivemerket skal blinka regelmessig" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Ymse" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Vindauge:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3995,144 +4236,144 @@ msgstr "" "endrar han" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Vis hint for terminalstorleik etter endring av storleik" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Snu alltid om på fargane til merkt tekst" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Formørkingsgrad:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Farge:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Vel fargen som skal brukast til å teikna opp kantlinja" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Ikkje-gjeldande terminalar:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Gjeldande terminalar:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminalinnhald" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Linjeavstand:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Talet på piksler mellom to linjer" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " pikslar" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margar:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Midtstill:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Marker om vindauget har mista fokus ved å dempa fargane" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Formørk" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Marker om vindauget har mista fokus ved å teikna ei kantlinje" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Kantlinje" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Vis loddrett linje ved kolonne:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Kompleks tekstutforming

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Kompleks tekstutforming" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Bruk ordmodus ved tekstvising" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Ordmodus" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4142,43 +4383,43 @@ msgstr "" "vising)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Bruk same attributt for heile ordet" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Vis ord med ASCII-teikn saman" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII-teikn" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Vis ord skrivne med indiske alfabet saman" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Teikn frå indiske alfabet" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji-skrift:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4187,13 +4428,13 @@ msgstr "" "Slå på tovegsvising i terminalar (berre for arabisk, persisk og hebraisk)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Tekstvising i begge retningar" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4201,83 +4442,83 @@ msgstr "" "av første sterke teikn" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Tving venstre-til-høgre-retning" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Handter tabellteikningsteikn som sterk venstre-til-høgre-markør." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Overstyr skriveretning for tabellteikn" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorer wcwidth til problematiske teikn" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Overstyr wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Endra profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Generelt" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Faner" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Utsjånad" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rulling" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatur" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Tastebindingar" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avansert" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4289,49 +4530,56 @@ msgstr "" ">Endra filløyva eller vel eit anna namn for å lagra innstillingane til ein " "ny profil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" "Profilnamnet var tomt. Skriv inn eit namn viss du vil lagra innstillingane." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Det finst alt ein profil med namnet «%1»." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profilnamnet er for langt (makslengd %1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Dei merkte teikna er ikkje gyldige i profilnamn: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Redigerer profil: %2" msgstr[1] "Redigerer %1 profilar: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Lag ny profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Endra profilen «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Ingen" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4341,7 +4589,7 @@ msgid_plural " columns" msgstr[0] " kolonne" msgstr[1] " kolonnar" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4351,42 +4599,42 @@ msgid_plural " rows" msgstr[0] " rad" msgstr[1] " rader" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Systembjølle" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Systemmeldingar" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Visuell bjølle" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorer bjøllehendingar" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Standardprofil for nye terminaløkter i %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Endra omgjevnad" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Éin miljøvariabel per linje" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4394,23 +4642,23 @@ msgid_plural " seconds" msgstr[0] " sekund" msgstr[1] " sekund" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Vel startmappe" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Hent nye …" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Klarte ikkje lasta oppsettet %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4419,7 +4667,7 @@ msgstr "" "Dette fargeoppsettet brukar ein gjennomsiktig bakgrunn og det ser ikkje ut " "til at skrivebordet ditt støttar dette." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4428,12 +4676,12 @@ msgstr "" "Konsole vart starta før skrivebordseffektane. Start Konsole på nytt for å ta " "i bruk gjennomsiktig bakgrunn." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Standard for filtypen" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4461,7 +4709,7 @@ msgstr "" "Viss PATH eller LINE manglar i kommandoen, vert denne innstillinga ikkje " "brukt, og fila vert opna i standard skriveprogram." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Tilpassa kommando for skriveprogram" @@ -4550,28 +4798,56 @@ msgstr "Vel startmappa" msgid "Start in same directory as current session" msgstr "Start i same mappe som den gjeldande økta" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Start i same mappe som den gjeldande økta" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + # Er snakk om miljøvariablar her, ikkje miljø generelt. #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Miljøvariablar:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Endra lista over miljøvariablar og tilhøyrande verdiar" # Unødvendig å skriva for eksempel «på terminal», og det tar opp for mykje plass. #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Starts&torleik:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4584,31 +4860,31 @@ msgstr "" "slått av for at dette skal verka.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Modus for &terminalbjølle:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantisk integrering" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulering av opp-/ned-piler" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Museklikk på skrivelinja flyttar skrivemerket" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantiske hint:" @@ -4618,9 +4894,9 @@ msgstr "Semantiske hint:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4631,9 +4907,9 @@ msgstr "Aldri" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4644,34 +4920,34 @@ msgstr "Når URL-hint vert viste" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Alltid" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Raude feilstolpar:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Raud feilbakgrunn:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Vekslande stolpar:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Vekslande bakgrunn:" @@ -5031,115 +5307,127 @@ msgid "Scrollback:" msgstr "Rulleminne:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Rull side opp/ned:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Fargelegg nyviste linjer" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Gøymd" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Storleik på rullefeltmerke (i prosent av høgda til rullefeltet):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Fargelegging:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rull sida halve vindaugshøgda" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Halv skjerm&høgd" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Farge på rullefeltmerke:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, fuzzy, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Farge på rullefeltmerke:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Bryt linjer på nytt:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rull sida heile vindaugshøgda" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "&Full skjermhøgd" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Plassering av rullelinje:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Vis rullefeltet på høgre side av skalet" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Hø&gre side" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Vis rullefeltet på venstre side av skalet" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Venstre side" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Gøymd" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Fargelegging:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Fargelegg nyviste linjer" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Bryt linjer på nytt:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Bryt linjer på nytt ved endring av terminalstorleik" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Farge på rullefeltmerke:" +msgid "Scrollbar position:" +msgstr "Plassering av rullelinje:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Storleik på rullefeltmerke (i prosent av høgda til rullefeltet):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5244,115 +5532,116 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Ingen" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Finn …" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Skriv inn søkjeteksten her" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Neste" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Finn neste treff for gjeldande søkjetekst" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Førre" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Finn førre treff for gjeldande søkjetekst" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Vis valmenyen" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Lukk søkjelinja" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Skil mellom store og små bokstavar" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Vel om søket skal skilja mellom store og små bokstavar" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Vis valmenyen" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Lukk søkjelinja" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Som regulært uttrykk" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Fargelegg alle treffa" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Vel om tekst som samsvarar med søket skal merkjast" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Søk bakover" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Bruk omvend søkjeretning, frå botnen og opp." -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Ikkje start om att frå toppen" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Vel om søket skal stoppa eller starta om att frå toppen" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Søk etter gjeldande søkjetekst nedanfrå" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5363,7 +5652,7 @@ msgstr "Søk etter gjeldande søkjetekst ovanfrå" msgid "Print Shell" msgstr "Skriv ut skal" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5403,6 +5692,13 @@ msgstr "Vanleg format på fanenamna" msgid "Tab Co&lor:" msgstr "Fanef&arge:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "Fanef&arge:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5496,31 +5792,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Gjenopprett terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Opna ei ny fane" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Kopla frå fane" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Lukk denne fana" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Kopla frå fane" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Tilpass eller endra namn på fane …" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/oc/konsole.po b/local/recipes/kde/konsole/source/po/oc/konsole.po index bf7a23e4e7..f465d06354 100644 --- a/local/recipes/kde/konsole/source/po/oc/konsole.po +++ b/local/recipes/kde/konsole/source/po/oc/konsole.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2008-08-05 22:26+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) \n" "Language-Team: Occitan (lengadocian) \n" @@ -55,7 +55,7 @@ msgstr "Visualizacion" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Next View" msgid "Split View" @@ -95,7 +95,7 @@ msgid "S&crollback" msgstr "Perfil novèl" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Name" msgid "Session Toolbar" @@ -175,47 +175,59 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Modificar lo perfil seleccionat" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -223,7 +235,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -231,13 +243,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background" msgctxt "@item" @@ -257,199 +269,199 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fons" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Color 1" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Color 2" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Color 3" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Color 4" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Color 5" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Color 6" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Color 7" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Color 8" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -709,6 +721,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Òste :" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Delete Profile" +msgid " [default]" +msgstr "Suprimir lo perfil" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, fuzzy, kde-format #| msgid "Input" @@ -756,7 +802,7 @@ msgstr "" msgid "Copy Location" msgstr "Entrada" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -788,13 +834,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Seleccionar" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -832,17 +878,17 @@ msgstr "" msgid "Output" msgstr "Sortida" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -850,7 +896,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -886,235 +932,235 @@ msgstr "Entrada" msgid "Output:" msgstr "Sortida" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1122,14 +1168,14 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1137,27 +1183,27 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1165,146 +1211,146 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Barrar l'onglet" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Barrar l'onglet" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Fenèstra nòva" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Favorits" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgid "&Window Color Scheme" msgstr "Modificar lo perfil seleccionat" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Perfil novèl" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1313,71 +1359,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "&Barrar l'onglet" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Perfil novèl" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "General" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1468,7 +1514,7 @@ msgstr "Dobrir lo ligam" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1480,29 +1526,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Comanda :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Comanda :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1542,7 +1588,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1599,11 +1645,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1663,92 +1709,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgid "Delete selected entry" @@ -1949,25 +1995,25 @@ msgstr "Sortida" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2031,17 +2077,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2075,497 +2142,521 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format -msgid "Green on Black" +msgid "Dark Pastels" msgstr "" #: schemas.cpp:8 #, kde-format -msgid "Linux Colors" +msgid "Green on Black" msgstr "" #: schemas.cpp:9 #, kde-format -msgid "Red on Black" +msgid "Linux Colors" msgstr "" #: schemas.cpp:10 #, kde-format -msgid "Solarized" +msgid "Red on Black" msgstr "" #: schemas.cpp:11 #, kde-format -msgid "Solarized Light" +msgid "Solarized" msgstr "" #: schemas.cpp:12 #, kde-format -msgid "White on Black" +msgid "Solarized Light" msgstr "" #: schemas.cpp:13 #, kde-format -msgid "Default (XFree 4)" +msgid "White on Black" msgstr "" #: schemas.cpp:14 #, kde-format -msgid "Linux console" +msgid "Default (XFree 4)" msgstr "" #: schemas.cpp:15 #, kde-format -msgid "macOS" +msgid "Linux console" msgstr "" #: schemas.cpp:16 #, kde-format +msgid "macOS" +msgstr "" + +#: schemas.cpp:17 +#, kde-format msgid "Solaris console" msgstr "" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Atencion : " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Terminat" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Program Name" msgid "Program '%1' crashed." msgstr "Nom del programa" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Copiar" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Next View" msgid "Split View Left-Right" msgstr "Visualizacion seguenta" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Next View" msgid "Split View Top-Bottom" msgstr "Visualizacion seguenta" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Input" msgid "Copy user input" msgstr "Entrada" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Input" msgid "Copy command output" msgstr "Entrada" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Pegar la seleccion" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select" msgid "&Select All" msgstr "Tot seleccionar" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Seleccionar" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Seleccionar" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "New Profile" msgid "Adjust Scrollback..." msgstr "Perfil novèl" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Modificar lo perfil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Visualizacion precedenta" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Modificar lo perfil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Encodatge" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "New Profile" msgid "&Configure or Rename Tab..." msgstr "Perfil novèl" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Input" msgid "Copy Input To" msgstr "Entrada" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "&Barrar l'onglet" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile" msgid "Create New Profile..." msgstr "Perfil novèl" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "New Profile" msgid "Edit Current Profile..." msgstr "Perfil novèl" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Barrar l'onglet" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2573,20 +2664,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2611,144 +2702,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" +msgid "Force new tabs" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2773,71 +2890,109 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2845,91 +3000,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2941,26 +3102,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3125,107 +3284,126 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Barrar l'onglet" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "&Barrar l'onglet" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "After current &tab" msgstr "&Barrar l'onglet" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Next View" msgid "Splits" msgstr "Visualizacion seguenta" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3233,14 +3411,14 @@ msgid "Small" msgstr "Pichon" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3248,7 +3426,7 @@ msgid "Large" msgstr "Grand" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3301,8 +3479,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3342,96 +3520,96 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Talha : %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Pegar la seleccion" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Pegar la seleccion" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Next View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Visualizacion seguenta" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "&Barrar l'onglet" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&Barrar l'onglet" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Precedent" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "&Barrar l'onglet" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Previous" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Precedent" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3699,7 +3891,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3707,13 +3899,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3809,29 +4001,41 @@ msgstr "" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Name" msgid "Line Numbers:" msgstr "Nombre" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3869,7 +4073,7 @@ msgstr "Modificar lo perfil seleccionat" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3927,12 +4131,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4057,30 +4267,45 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "Descripcion :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Fenèstra" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4088,25 +4313,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4114,122 +4339,122 @@ msgid "Color:" msgstr "Color" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgid "Select the color used to draw the border" msgstr "Modificar lo perfil seleccionat" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Inactive Terminals:" msgstr "&Barrar l'onglet" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Active Terminals:" msgstr "&Barrar l'onglet" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4237,44 +4462,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Poliça" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4282,98 +4507,98 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Modificar lo perfil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "General" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Onglets" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aparéncia" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, fuzzy, kde-format #| msgid "New Profile" msgid "Scrolling" msgstr "Perfil novèl" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "A_vançat" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4382,31 +4607,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4414,18 +4639,23 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "Modificar lo perfil \"%1\"" msgstr[1] "Modificar lo perfil \"%1\"" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile" msgid "Create New Profile" msgstr "Perfil novèl" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Modificar lo perfil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4435,7 +4665,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4445,44 +4675,44 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "Pegar la seleccion" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgid "Default profile for new terminal sessions in %1" msgstr "Modificar lo perfil seleccionat" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Modificar l'environament" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4490,44 +4720,44 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Novèl..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Suprimir lo perfil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4544,7 +4774,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4635,28 +4865,55 @@ msgstr "" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, fuzzy, kde-format #| msgid "Edit Environment" msgid "Environment:" msgstr "Modificar l'environament" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Initial terminal si&ze:" msgstr "&Barrar l'onglet" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4666,31 +4923,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4700,9 +4957,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4713,9 +4970,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4726,35 +4983,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Fons" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5095,115 +5352,127 @@ msgid "Scrollback:" msgstr "Perfil novèl" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, kde-format -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, kde-format -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgid "Hidden" msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Amagat" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5306,40 +5575,40 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Recercar :" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Seguent" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Precedent" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5347,78 +5616,78 @@ msgstr "" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "&Barrar l'onglet" -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5430,7 +5699,7 @@ msgstr "" msgid "Print Shell" msgstr "Copèla" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5469,6 +5738,13 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Color" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Color" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5571,33 +5847,39 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Barrar l'onglet" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Barrar l'onglet" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Perfil novèl" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" diff --git a/local/recipes/kde/konsole/source/po/or/konsole.po b/local/recipes/kde/konsole/source/po/or/konsole.po index 512aef3575..3ad211e6f4 100644 --- a/local/recipes/kde/konsole/source/po/or/konsole.po +++ b/local/recipes/kde/konsole/source/po/or/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2009-01-02 11:48+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" @@ -52,7 +52,7 @@ msgstr "" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "" @@ -88,7 +88,7 @@ msgid "S&crollback" msgstr "" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "" @@ -166,54 +166,66 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 #, kde-format msgctxt "@info:shell" -msgid "List the available profiles" +msgid "Start Konsole in fullscreen mode" msgstr "" #: Application.cpp:73 #, kde-format msgctxt "@info:shell" -msgid "List all the profile properties names and their type (for use with -p)" +msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" #: Application.cpp:74 #, kde-format msgctxt "@info:shell" -msgid "Change the value of a profile property." +msgid "List the available profiles" +msgstr "" + +#: Application.cpp:75 +#, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" msgstr "" #: Application.cpp:76 #, kde-format msgctxt "@info:shell" +msgid "Change the value of a profile property." +msgstr "" + +#: Application.cpp:78 +#, kde-format +msgctxt "@info:shell" msgid "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -221,13 +233,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -245,157 +257,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -645,6 +657,38 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr "" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -687,7 +731,7 @@ msgstr "" msgid "Copy Location" msgstr "" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -718,13 +762,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -761,17 +805,17 @@ msgstr "" msgid "Output" msgstr "" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -779,7 +823,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -813,225 +857,225 @@ msgstr "" msgid "Output:" msgstr "" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1039,13 +1083,13 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1053,25 +1097,25 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1079,132 +1123,132 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1213,67 +1257,67 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1357,7 +1401,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1369,27 +1413,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1429,7 +1473,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1482,11 +1526,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1545,92 +1589,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "" @@ -1820,25 +1864,25 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "" @@ -1897,17 +1941,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1941,473 +2006,497 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format -msgid "Green on Black" +msgid "Dark Pastels" msgstr "" #: schemas.cpp:8 #, kde-format -msgid "Linux Colors" +msgid "Green on Black" msgstr "" #: schemas.cpp:9 #, kde-format -msgid "Red on Black" +msgid "Linux Colors" msgstr "" #: schemas.cpp:10 #, kde-format -msgid "Solarized" +msgid "Red on Black" msgstr "" #: schemas.cpp:11 #, kde-format -msgid "Solarized Light" +msgid "Solarized" msgstr "" #: schemas.cpp:12 #, kde-format -msgid "White on Black" +msgid "Solarized Light" msgstr "" #: schemas.cpp:13 #, kde-format -msgid "Default (XFree 4)" +msgid "White on Black" msgstr "" #: schemas.cpp:14 #, kde-format -msgid "Linux console" +msgid "Default (XFree 4)" msgstr "" #: schemas.cpp:15 #, kde-format -msgid "macOS" +msgid "Linux console" msgstr "" #: schemas.cpp:16 #, kde-format +msgid "macOS" +msgstr "" + +#: schemas.cpp:17 +#, kde-format msgid "Solaris console" msgstr "" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2415,20 +2504,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2451,144 +2540,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" +msgid "Force new tabs" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2613,71 +2728,109 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2685,91 +2838,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2781,26 +2940,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -2952,125 +3109,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3122,8 +3297,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3162,95 +3337,95 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
              to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 #, kde-format msgctxt "@action Shortcut entry" -msgid "Switch to Last Tab" -msgstr "" - -#: ViewManager.cpp:287 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Last Used Tabs" +msgid "Focus Next Terminal" msgstr "" #: ViewManager.cpp:292 #, kde-format msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "" + +#: ViewManager.cpp:298 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Switch to Last Tab" +msgstr "" + +#: ViewManager.cpp:303 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Last Used Tabs" +msgstr "" + +#: ViewManager.cpp:308 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3513,7 +3700,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3521,13 +3708,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3623,28 +3810,40 @@ msgstr "" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3680,7 +3879,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3734,12 +3933,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3858,29 +4063,43 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3888,144 +4107,144 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4033,43 +4252,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4077,95 +4296,95 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4174,48 +4393,53 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4225,7 +4449,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4235,42 +4459,42 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4278,42 +4502,42 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4330,7 +4554,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4417,26 +4641,53 @@ msgstr "" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4446,31 +4697,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4480,9 +4731,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4493,9 +4744,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4506,34 +4757,34 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "" @@ -4862,114 +5113,126 @@ msgid "Scrollback:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" +msgid "Scrollbar position:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5068,37 +5331,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5106,77 +5369,77 @@ msgstr "" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5187,7 +5450,7 @@ msgstr "" msgid "Print Shell" msgstr "" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5225,6 +5488,12 @@ msgstr "" msgid "Tab Co&lor:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5318,31 +5587,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/pa/konsole.po b/local/recipes/kde/konsole/source/po/pa/konsole.po index c8727fd77b..0b4f09aa17 100644 --- a/local/recipes/kde/konsole/source/po/pa/konsole.po +++ b/local/recipes/kde/konsole/source/po/pa/konsole.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2024-01-19 07:50-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -52,7 +52,7 @@ msgstr "ਝਲਕ" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "ਝਲਕ ਵੰਡੋ" @@ -88,7 +88,7 @@ msgid "S&crollback" msgstr "ਸਕਰੋਲ-ਬੈਕ(&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "ਸ਼ੈਸ਼ਨ ਟੂਲਬਾਰ" @@ -171,48 +171,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "ਡਿਫਾਲਟ ਸੈਟਿੰਗ ਨੂੰ ਅਣਡਿੱਠਾ ਕਰਕੇ ਮੇਨੂ-ਪੱਟੀ ਓਹਲੇ ਕਰੋ" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "ਡਿਫਾਲਟ ਸੈਟਿੰਗ ਨੂੰ ਅਣਡਿੱਠਾ ਕਰਕੇ ਟੈਬ-ਪੱਟੀ ਵੇਖਾਓ" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "ਡਿਫਾਲਟ ਸੈਟਿੰਗ ਨੂੰ ਅਣਡਿੱਠਾ ਕਰਕੇ ਟੈਬ-ਪੱਟੀ ਓਹਲੇ" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "ਡਿਫਾਲਟ ਸੈਟਿੰਗ ਨੂੰ ਅਣਡਿੱਠਾ ਕਰਕੇ ਟੈਬ-ਪੱਟੀ ਵੇਖਾਓ" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "ਡਿਫਾਲਟ ਸੈਟਿੰਗ ਨੂੰ ਅਣਡਿੱਠਾ ਕਰਕੇ ਟੈਬ-ਪੱਟੀ ਓਹਲੇ" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "ਪੂਰੀ ਸਕਰੀਨ ਮੋਡ ਵਿੱਚ ਕਨਸੋਲ ਸ਼ੁਰੂ" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "ਉਪਲੱਬਧ ਪਰੋਫਾਇਲਾਂ ਦੀ ਲਿਸਟ" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "ਇੱਕ ਪਰੋਫਾਇਲ ਵਿਸ਼ੇਸ਼ਤਾ ਦਾ ਮੁੱਲ ਬਦਲੋ।" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -220,7 +236,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -228,13 +244,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "ਕਮਾਂਡ ਲਈ ਆਰਗੂਮੈਂਟ ਦਿਓ" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -252,157 +268,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "ਫਾਰਗਰਾਊਂਡ" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "ਬੈਕਗਰਾਊਂਡ" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "ਰੰਗ 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "ਰੰਗ 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "ਰੰਗ 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "ਰੰਗ 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "ਰੰਗ 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "ਰੰਗ 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "ਰੰਗ 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "ਰੰਗ 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ਫਾਰਗਰਾਊਂਡ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "ਬੈਕਗਰਾਊਂਡ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "ਰੰਗ ੧ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "ਰੰਗ ੨ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "ਰੰਗ ੩ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "ਰੰਗ ੪ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "ਰੰਗ ੫ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "ਰੰਗ ੬ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "ਰੰਗ ੭ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "ਰੰਗ ੮ (ਇਟੈਂਸ)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ਫਾਰਗਰਾਊਂਡ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "ਬੈਕਗਰਾਊਂਡ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "ਰੰਗ ੧ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "ਰੰਗ ੨ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "ਰੰਗ ੩ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "ਰੰਗ ੪ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "ਰੰਗ ੫ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "ਰੰਗ ੬ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "ਰੰਗ ੭ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "ਰੰਗ ੮ (ਮੱਧਮ)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -654,6 +670,41 @@ msgstr "ਉੱਤੇ" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "ਹੋਸਟ: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr "[ਡਿਫਾਲਟ]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -697,7 +748,7 @@ msgstr "" msgid "Copy Location" msgstr "ਟਿਕਾਣਾ ਕਾਪੀ ਕਰੋ" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -728,13 +779,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "ਫੋਂਟ ਚੁਣੋ" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "ਸਾਰੇ ਫ਼ੋਂਟ ਵੇਖਾਓ" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -771,17 +822,17 @@ msgstr "ਸਵਿੱਚ ਮਿਸ਼ਰਨ" msgid "Output" msgstr "ਆਉਟਪੁੱਟ" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "ਨਵੀਂ ਕੀ ਬਾਈਡਿੰਗ ਲਿਸਟ" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "ਕੀ ਬਾਈਡਿੰਗ ਲਿਸਟ ਸੋਧ" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -789,7 +840,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -823,67 +874,67 @@ msgstr "ਇੰਪੁੱਟ:" msgid "Output:" msgstr "ਆਉਟਪੁੱਟ:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "ਕੇਨਸੋਲ" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "ਟਰਮੀਨਲ ਈਮੂਲੇਟਰ" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "ਪ੍ਰਬੰਧਕ, ਬੱਗ ਸਥਿਰ ਕੀਤੇ ਅਤੇ ਆਮ ਸੁਧਾਰ" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "ਰਾਬਰਟ ਨਾਈਟ" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "ਲਾਰਸ ਡੂਇੱਲੇ" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "ਅਸਲੀ ਲੇਖਕ" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -891,56 +942,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "ਪ੍ਰਬੰਧਕ, ਬੱਗ ਸਥਿਰ ਕੀਤੇ ਅਤੇ ਆਮ ਸੁਧਾਰ" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "ਬੱਗ ਸਥਿਰ ਕੀਤੇ ਅਤੇ ਆਮ ਸੁਧਾਰ" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -948,104 +999,104 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "ਬੱਗ ਸਥਿਰ ਕੀਤੇ ਅਤੇ ਆਮ ਸੁਧਾਰ" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "ਵਾਲਡੋ ਬਾਸਟਿਨ" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "ਸਟੀਫਨ ਬਿੱਨੀਰ" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "ਆਮ ਸੁਧਾਰ" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "ਕਰਿਸ ਮਾਚੀਮੀਰ" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "ਬੱਗ ਸਥਿਰ" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "ਸਟੀਫਨ ਕੋਲੋ" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris ਸਹਾਇਤਾ ਅਤੇ ਅਤੀਤ" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "ਬੱਗ ਫਿਕਸ ਅਤੇ ਸ਼ੁਰੂਆਤੀ ਕਾਰਗੁਜ਼ਾਰੀ ਸੁਧਾਰ" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "ਪੀਟਰ ਸੀਲਵਾ" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "ਸੁਧਾਰ ਕੀਤੇ" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "ਲੁਟਜ਼ੀ ਬੋਲੋਨੀ" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1055,13 +1106,13 @@ msgstr "" "ਸ਼ਾਮਲ ਕਨਸੋਂਲ\n" "ਟੂਲਬਾਰ ਅਤੇ ਸ਼ੈਸ਼ਨ ਨਾਂ" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "ਡੇਵਿਡ ਫਾਉਰੀ" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1071,25 +1122,25 @@ msgstr "" "ਇੰਬੈੱਡ ਕਨਸੋਲ\n" "ਆਮ ਸੁਧਾਰ" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "ਐਂਟੋਨੀਓ ਲਾਰੋਸਾ" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "ਦਿੱਖ ਪਰਭਾਵ" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "ਮੈਥੂਸ ਇੱਟਰਿਚ" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1099,132 +1150,132 @@ msgstr "" "kvt ਪ੍ਰੋਜੈਕਟ ਤੋਂ ਕੋਡ\n" "ਆਮ ਸੁਧਾਰ" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "ਵਾਵਿਕ ਐਲੀਸਨ" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "ਸਕੀਮਾਂ ਅਤੇ ਪਾਠ ਚੋਣ ਸੁਧਾਰ" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "ਡੇਨ ਪਾਲੋਨ" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI ਪੋਰਟ" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "ਕੇਵਿਨ ਸਟਰੀਟ" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD ਪੋਰਟ" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "ਸਵੀਨ ਫਿਸਚੀਰ" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "ਡਲੀ ਐਂਮ. ਫਲਾਵਿਨ" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "ਮਾਰਤਿਨ ਜੋਨਜ਼" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "ਲਾਰਸ ਕਨੱਲ" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "ਕਈ ਹੋਰਾਂ ਦਾ ਧੰਨਵਾਦ ਹੈ।\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "ਨਵੀਂ ਟੈਬ(&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ਟੈਬ ਕਲੋਨ ਕਰੋ(&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "ਨਵੀਂ ਵਿੰਡੋ(&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "ਬੁੱਕਮਾਰਕ(&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "ਵਿੰਡੋ ਰੰਗ ਸਕੀਮ(&W)" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "....ਪਰੋਫਾਇਲ ਇੰਤਜ਼ਾਮ" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "ਮੇਨੂ ਐਕਟੀਵੇਟ ਕਰੋ" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "ਟੈਬ ਖਾਕੇ ਨੂੰ ਸੰਭਾਲੋ..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1233,25 +1284,25 @@ msgid_plural "" msgstr[0] "ਇਸ ਵਿੰਡੋ ਵਿੱਚ ਇੱਕ ਪਰੋਸੈਸ ਚੱਲ ਰਿਹਾ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" msgstr[1] "ਇਸ ਵਿੰਡੋ ਵਿੱਚ %1 ਪਰੋਸੈਸ ਚੱਲ ਰਹੇ ਹਨ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "ਬੰਦ ਕਰਨ ਦੀ ਪੁਸ਼ਟੀ" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(&W)" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "ਮੌਜੂਦਾ ਟੈਬ ਬੰਦ ਕਰੋ(&T)" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "" @@ -1262,43 +1313,43 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "ਇਸ ਵਿੰਡੋ ਵਿੱਚ ਇੱਕ ਪਰੋਸੈਸ ਚੱਲ ਰਿਹਾ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "ਪਰੋਫਾਇਲ" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "ਆਮ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1382,7 +1433,7 @@ msgstr "ਸੰਭਾਲੋ" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "ਅੱਪਡੇਟ" @@ -1394,27 +1445,27 @@ msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "ਫੌਰੀ ਕਮਾਂਡ" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "ਪਲੱਗਇਨਾਂ - ਫੌਰੀ ਕਮਾਂਡਾਂ" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "ਫੌਰੀ ਕਮਾਂਡਾਂ ਵੇਖਾਓ" @@ -1461,7 +1512,7 @@ msgstr "" "ਲਈ ਤਿਆਰ ਹੈ, ਜਾਰੀ ਰੱਖਣਾ ਚਾਹੋਗੇ?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "ਤੁਸੀਂ %1 ਨੂੰ ਹਟਾਉਣਾ ਜਾ ਰਹੇ ਹੋ, ਕੀ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ?" @@ -1516,11 +1567,11 @@ msgid "%1 is a folder for SSH entries" msgstr "SSH ਐੰਟਰੀਆਂ ਲਈ %1 ਫੋਲਡਰ ਹੈ" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH ਸੰਰਚਨਾ" @@ -1579,24 +1630,24 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH ਕੁੰਜੀ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "ਹਟਾਓ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "ਨਾ ਬਦਲੋ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1605,70 +1656,70 @@ msgstr "" "ਤੁਸੀਂ ਕਈ SSH ਸੰਰਚਨਾ ਵਾਲਾ %1 ਫੋਲਡਰ ਹਟਾਉਣ\n" "ਲਈ ਤਿਆਰ ਹੈ, ਜਾਰੀ ਰੱਖਣਾ ਚਾਹੋਗੇ?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH ਸੰਰਚਨਾ ਨੂੰ ਹਟਾਓ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "ਹੋਸਟ-ਨਾਂ ਮੌਜੂਦ ਨਹੀਂ ਹੈ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "ਨਾਂ ਗੁੰਮ ਹੈ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "ਘੱਟੋ-ਘੱਟ ਵਰਤੋਂਕਾਰ-ਨਾਂ ਜਾਂ SSHKey ਸੈ਼ਟ ਕਰਨੀ ਜ਼ਰੂਰੀ ਹੈ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "ਫੋਲਡਰ ਗੁੰਮ ਹੈ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH ਸ਼ੈਸ਼ਨ ਲਈ ਪਰੋਫਾਇਲ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "ਇਸ ਫੋਲਡਰ ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "ਫੋਲਡਰ ਅਤੇ ਇਸ ਦੀ ਸਾਰੀ ਸਮੱਗਰੀ ਨੂੰ ਹਟਾਓ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "ਫੋਲਡਰ ਦੇ ਨਾਂ ਨੂੰ ਬਦਲਣ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ।" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "ਜਦੋਂ ਬੰਦ ਹੋਵੇ ਤਾਂ ਸ਼ੁਰੂਆਤੀ ਸ਼ੈਸ਼ਨ ਆਟੋਮੈਟਿਕ ਹੀ ਬੰਦ ਨਾ ਕਰੋ।" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "ਚੁਣੀ ਐੰਟਰੀ ਨੂੰ ਹਟਾਓ" @@ -1859,25 +1910,25 @@ msgstr "ਆਉਟਪੁੱਟ ਚੋਣਾਂ" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "ਪਰਿੰਟਰ ਸਹਿਯੋਗੀ ਢੰਗ( ਕਾਲ਼ੇ ਅੱਖਰ, ਕੋਈ ਬੈਕਗਰਾਊਂਡ ਨਹੀਂ)(&f)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "ਆਉਟਪੁੱਟ ਸਕੇਲ ਕਰੋ(&S)" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "ਬਿਲਟ-ਇਨ" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "ਡਿਫਾਲਟ ਪਰੋਫਾਇਲ" @@ -1936,17 +1987,38 @@ msgstr "ਸ਼ਾਰਟਕੱਟ ਬਦਲਣ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱ msgid "Tab Properties" msgstr "ਟੈਬ ਵਿਸ਼ੇਸ਼ਤਾ" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 ਤੋਂ ਆਉਟਪੁੱਟ ਸੰਭਾਲੋ" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 ਇੱਕ ਗਲਤੀ URL ਹੈ, ਆਉਟਪੁੱਟ ਸੰਭਾਲੀ ਨਹੀਂ ਜਾ ਸਕੀ ਹੈ।" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1982,283 +2054,312 @@ msgstr "ਬਰੀਜ਼" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "ਡਾਰਕ ਪਿਸਟਲਸ" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "ਕਾਲੇ 'ਤੇ ਹਰਾ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "ਲਿਨਕਸ ਰੰਗ" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "ਕਾਲੇ ਉੱਤੇ ਲਾਲ" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "ਸੋਲਾਈਜ਼ਡ" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "ਸੋਲਾਈਜ਼ਡ ਰੌਸ਼ਨੀ" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "ਕਾਲੇ 'ਤੇ ਚਿੱਟਾ" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "ਮੂਲ (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "ਲਿਨਕਸ ਕੰਨਸੋਲ" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "ਸਲੋਰਸ ਕੰਨਸੋਲ" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "ਖੋਜੋ:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ਖੋਜ ਕਰਨ ਲਈ ਟੈਕਸਟ ਇੱਥੇ ਦਿਓ" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "'%1' (ਸ਼ੈਸ਼ਨ '%2') ਵਿੱਚ ਘੰਟੀ ਵੱਜੀ" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "ਬਾਈਨਰੀ ਨਹੀਂ ਲੱਭਿਆ ਜਾ ਸਕਿਆ: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "ਚੇਤਾਵਨੀ: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "ਪਰੋਗਰਾਮ '%1' ਆਰਗੂਮੈਂਟ '%2' ਨਾਲ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ।" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "'%1' (ਸ਼ੈਸ਼ਨ '%2') ਵਿੱਚ ਖਾਮੋਸ਼ੀ" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "ਸ਼ੈਸ਼ਨ ਵੇਖਾਓ" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "ਸਮਾਪਤ" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "ਪਰੋਗਰਾਮ '%1' ਕਰੈਸ਼ ਹੋ ਗਿਆ।" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "ਪਰੋਗਰਾਮ '%1' ਹਾਲਤ %2 ਵਿੱਚ ਬੰਦ ਹੋ ਗਿਆ ਹੈ।" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem ਤਰੱਕੀ" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "'%1' (ਸ਼ੈਸ਼ਨ '%2') ਵਿੱਚ ਕਾਰਵਾਈ" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "ਕੇ-ਨਸੋਲ" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "ਕਨਸੋਲ ਨਹੀਂ ਜਾਣਦੀ ਹੈ ਕਿ ਬੁੱਕਮਾਰਕ ਕਿਵੇਂ ਖੋਲ੍ਹਣਾ ਹੈ: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "'%1' ਨਾਲ ਖੋਜੋ" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "ਵੈੱਬ ਸ਼ਾਰਟਕੱਟ ਸੰਰਚਨਾ..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "ਸ਼ੈਸ਼ਨ ਬੰਦ ਕਰੋ(&C)" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ਫਾਇਲ ਮੈਨੇਜਰ ਖੋਲ੍ਹੋ" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "ਕਾਪੀ ਕਰੋ" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "ਝਲਕ ਨੂੰ ਖੱਬੇ-ਸੱਜੇ ਵਿੱਚ ਵੰਡੋ" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "ਝਲਕ ਨੂੰ ਉੱਤੇ-ਹੇਠਾਂ ਵਿੱਚ ਵੰਡੋ" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "ਵਰਤੋਂਕਾਰ ਇੰਪੁੱਟ ਕਾਪੀ ਕਰੋ" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "ਕਮਾਂਡ ਆਉਟਪੁੱਟ ਕਾਪੀ ਕਰੋ" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "ਚੋਣ ਚੇਪੋ" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "ਵੈੱਬ ਖੋਜ" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "ਸਭ ਚੁਣੋ(&S)" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "ਢੰਗ ਚੁਣੋ(&M)" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "ਲਾਈਨ ਚੁਣੋ(&L)" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "ਆਉਟਪੁੱਟ ਇੰਝ ਸੰਭਾਲੋ(&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "ਆਉਟਪੁੱਟ ਇੰਝ ਸੰਭਾਲੋ(&A)..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "...ਸਕਰੀਨ ਪਰਿੰਟ ਕਰੋ(&P)" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "ਸਕਰੋਲ-ਬੈਕ ਅਡਜੱਸਟ..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "ਸਕਰੋਲ-ਬੈਕ ਸਾਫ਼ ਕਰੋ" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "ਸਕਰੋਲ-ਬੈਕ ਸਾਫ਼ ਕਰੋ ਅਤੇ ਮੁੜ-ਸੈੱਟ" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "ਪਰੋਫਾਇਲ ਸੋਧ" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "ਪਿਛੇ ਝਲਕ" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "ਪਰੋਫਾਇਲ ਬਦਲੋ" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "ਇੰਕੋਡਿੰਗ ਸੈੱਟ ਕਰੋ(&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2266,158 +2367,158 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "ਕੇਵਲ-ਪੜ੍ਹਨ ਲਈ" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "ਟੈਬ ਦੀ ਸੰਰਚਨਾ ਕਰੋ ਜਾਂ ਨਾਂ ਬਦਲੋ(&C)..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "ਮੌਜੂਦਾ ਵਿੰਡੋ ਵਿੱਚ ਸਭ ਟੈਬਾਂ(&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "ਟੈਬ ਚੁਣੋ(&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "ਕੋਈ ਨਹੀਂ(&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "ਇਨਪੁੱਟ ਇੱਥੇ ਕਾਪੀ ਕਰੋ" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem ਅੱਪਲੋਡ..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "ਪਰੌਉਂਟ ਲਈ ਨਿਗਰਾਨੀ(&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "ਸਰਗਰਮੀ ਲਈ ਨਿਗਰਾਨੀ(&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "ਖਾਮੋਸ਼ੀ ਲਈ ਨਿਗਰਾਨੀ(&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "ਕਾਰਵਾਈ ਪੂਰੀ ਹੋਣ ਲਈ ਨਿਗਰਾਨੀ" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "ਫੋਂਟ ਵੱਡੇ ਕਰੋ" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "ਫੋਂਟ ਸੁੰਘੜੋ" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "ਫ਼ੋਂਟ ਆਕਾਰ ਮੁੜ-ਸੈੱਟ ਕਰੋ" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "ਸਿਗਨਲ ਭੇਜੋ" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "ਟਾਸਕ ਨੂੰ ਸਸਪੈਂਡ(&S)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "ਟਾਸਕ ਨੂੰ ਜਾਰੀ ਰੱਖੋ(&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "ਹੈਗਅੱਪ(&H)" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "ਟਾਸਕ ਨੂੰ ਰੋਕੋ(&I)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "ਕੰਮ ਖਤਮ ਕਰੋ(&T)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "ਟਾਸਕ ਨੂੰ ਖਤਮ ਕਰੋ(&K)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "ਵਰਤੋਂਕਾਰ ਸਿਗਨਲ &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "ਵਰਤੋਂਕਾਰ ਸਿਗਨਲ &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "ਨਵਾਂ ਪਰੋਫਾਇਲ ਬਣਾਓ..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "ਮੌਜੂਦਾ ਪਰੋਫਾਇਲ ਸੋਧ..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "ਇੱਕ ਪਰੋਗਰਾਮ ਹੁਣ ਇਸ ਸ਼ੈਸ਼ਨ ਵਿੱਚ ਚੱਲ ਰਿਹਾ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "ਪਰੋਗਰਾਮ '%1' ਹੁਣ ਇਸ ਸ਼ੈਸ਼ਨ ਵਿੱਚ ਚੱਲ ਰਿਹਾ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "ਬੰਦ ਕਰਨ ਦੀ ਪੁਸ਼ਟੀ" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "ਪਰੋਗਰਾਮ ਬੰਦ ਕਰੋ" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2425,37 +2526,40 @@ msgid "" msgstr "" "ਇਹ ਸ਼ੈਸ਼ਨ ਵਿੱਚ ਚੱਲਦਾ ਪ੍ਰੋਗਰਾਮ ਖਤਮ ਨਹੀਂ ਹੋਵੇਗਾ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਧੱਕੇ ਨਾਲ ਖਤਮ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "ਪਰੋਗਰਾਮ '%1' ਹੁਣ ਇਸ ਸ਼ੈਸ਼ਨ ਵਿੱਚ ਚੱਲ ਰਿਹਾ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਧੱਕੇ ਨਾਲ ਖਤਮ (kill) ਕਰਨਾ ਚਾਹੁੰਦੇ " "ਹੋ?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "ਪਰੋਗਰਾਮ ਖਤਮ (kill) ਕਰੋ" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "ਮੌਜੂਦਾ ਫੋਲਡਰ ਇਸ ਨਾਲ ਖੋਲ੍ਹੋ" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "... ਉੱਤੇ ਜੇਮਾਡਮ ਨੂੰ ਡਾਊਨਲੋਡ ਸੰਭਾਲੋ" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2463,20 +2567,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem ਅੱਪਲੋਡ ਲਈ ਫਾਇਲਾਂ ਚੁਣੋ" @@ -2499,136 +2603,108 @@ msgctxt "@title:window" msgid "Configure" msgstr "ਸੰਰਚਨਾ" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "ਖੋਜੋ:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "ਮੇਨੂ ਐਕਸਰਲੇਟਰ ਚਾਲੂ ਕਰੋ" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "ਵਿੰਡੋ ਦੇ ਆਕਾਰ ਨੂੰ ਯਾਦ ਰੱਖੋ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "ਟਾਈਟਲ-ਪੱਟੀ ਵਿੱਚ ਵਿੰਡੋ ਟਾਈਟਲ ਵੇਖਾਓ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "ਜਦੋਂ ਮਾਊਸ ਪੁਆਇੰਟਰ ਟਰਮੀਨਲ ਉੱਤੇ ਆਵੇ ਤਾਂ ਉਸ ਨੂੰ ਫੋਕਸ ਕਰੋ" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "ਰੈਗੂਲਰ ਸਮੀਕਰਨ ਮੇਲ" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "ਸਭ ਮਿਲਦੇ ਹਾਈਲਾਈਟ ਕਰੋ" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Case sensitive" -msgstr "ਅੱਖਰ ਆਕਾਰ ਪ੍ਰਤੀ ਸੰਵੇਦਨਸ਼ੀਲ" +msgid "Remember window size" +msgstr "ਵਿੰਡੋ ਦੇ ਆਕਾਰ ਨੂੰ ਯਾਦ ਰੱਖੋ" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Open a new tab" +msgid "Force new tabs" +msgstr "ਨਵੀਂ ਟੈਬ ਖੋਲ੍ਹੋ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "ਕਾਰਵਾਈ ਅਤੇ ਵਿੰਡੋ:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "ਨੋਟੀਫਿਕੇਸ਼ਨ:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "ਸਭ ਡਾਈਲਾਗ ਫੇਰ ਵੇਖਾਏ ਜਾਣਗੇ" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "ਸਭ \"ਫ਼ੇਰ ਨਾ ਪੁੱਛੋ\" ਸੁਨੇਿਹਆਂ ਨੂੰ ਸਮਰੱਥ ਕਰੋ" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "ਪਿੱਛੇ ਵੱਲ ਖੋਜ" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "ਅੱਖਰ ਆਕਾਰ ਪ੍ਰਤੀ ਸੰਵੇਦਨਸ਼ੀਲ" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "ਕਾਰਵਾਈ ਅਤੇ ਵਿੰਡੋ:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "ਸਭ ਮਿਲਦੇ ਹਾਈਲਾਈਟ ਕਰੋ" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "ਖੋਜੋ:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -2636,11 +2712,67 @@ msgid "Sets whether search should stop instead of wrapping" msgstr "ਮੌਜੂਦਾ ਖੋਜ ਸ਼ਬਦ ਦਾ ਅਗਲਾ ਮੇਲ ਲੱਭੋ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "ਮੇਨੂ ਐਕਸਰਲੇਟਰ ਚਾਲੂ ਕਰੋ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "ਜਦੋਂ ਮਾਊਸ ਪੁਆਇੰਟਰ ਟਰਮੀਨਲ ਉੱਤੇ ਆਵੇ ਤਾਂ ਉਸ ਨੂੰ ਫੋਕਸ ਕਰੋ" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "ਸਭ ਡਾਈਲਾਗ ਫੇਰ ਵੇਖਾਏ ਜਾਣਗੇ" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "ਸਭ \"ਫ਼ੇਰ ਨਾ ਪੁੱਛੋ\" ਸੁਨੇਿਹਆਂ ਨੂੰ ਸਮਰੱਥ ਕਰੋ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "ਟਾਈਟਲ-ਪੱਟੀ ਵਿੱਚ ਵਿੰਡੋ ਟਾਈਟਲ ਵੇਖਾਓ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "ਰੈਗੂਲਰ ਸਮੀਕਰਨ ਮੇਲ" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, fuzzy, kde-format @@ -2666,41 +2798,79 @@ msgstr "ਅਗਲੀ ਵਾਰ ਸ਼ੁਰੂ ਕਰਨ ਸਮੇਂ ਮੌਜੂ msgid "The window size will be saved upon exiting Konsole" msgstr "ਕੇਨਸੋਲ ਬੰਦ ਕਰਨ ਸਮੇਂ ਵਿੰਡੋ ਸਾਈਜ਼ ਸੰਭਾਲਿਆ ਜਾਵੇਗਾ" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Case sensitive" @@ -2708,7 +2878,7 @@ msgid "Search is case sensitive" msgstr "ਆਕਾਰ ਪ੍ਰਤੀ ਸੰਵੇਦਨਸ਼ੀਲ" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Highlight all matches" @@ -2716,25 +2886,25 @@ msgid "Highlight all search matches" msgstr "ਸਭ ਮਿਲਦੇ ਹਾਈਲਾਈਟ ਕਰੋ" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2742,94 +2912,101 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "ਪੂਰੀ ਟੈਬ ਪੱਟੀ ਦੀ ਦਿੱਖ ਨੂੰ ਕੰਟਰੋਲ ਕਰੋ" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "ਪੂਰੀ ਟੈਬ ਪੱਟੀ ਦੀ ਦਿੱਖ ਨੂੰ ਕੰਟਰੋਲ ਕਰੋ" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "ਟੈਬ ਪੱਟੀ ਦੀ ਸਥਿਤੀ ਕੰਟਰੋਲ" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "ਕਰਸਰ ਲਈ ਇੱਕ ਪਸੰਦੀਦਾ, ਪੱਕਾ ਰੰਗ ਵਰਤੋਂ" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "ਪੂਰੀ ਟੈਬ ਪੱਟੀ ਦੀ ਦਿੱਖ ਨੂੰ ਕੰਟਰੋਲ ਕਰੋ" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of the whole tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "ਪੂਰੀ ਟੈਬ ਪੱਟੀ ਦੀ ਦਿੱਖ ਨੂੰ ਕੰਟਰੋਲ ਕਰੋ" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "ਕੰਟਰੋਲ ਕਰੋ ਕਿ ਕਿੱਥੇ ਨਵੀਂ ਟੈਬ ਰੱਖਣੀ ਹੈ" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2841,26 +3018,24 @@ msgid "Enable memory monitoring:" msgstr "ਮੈਮੋਰੀ ਦੀ ਨਿਗਰਾਨੀ ਸਮਰੱਥ ਕਰੋ:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "ਮੈਮੋਰੀ ਦੀ ਹੱਦ:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3016,126 +3191,149 @@ msgctxt "Do not show a close button" msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "ਟੈਬ ਬੰਦ ਕਰੋ ਬਟਨ ਨੂੰ ਵੇਖੋ:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "ਹਮੇਸ਼ਾ" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "ਕਦੇ ਨਹੀਂ" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "ਫੁਟਕਲ:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "'ਨਵੀਂ ਟੈਬ' ਬਟਨ ਵੇਖੋ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਪ੍ਰਭਾਸ਼ਿਤ ਸਟਾਇਲ ਸੀਟਾਂ ਵਰਤੋਂ" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ਕੋਈ ਨਹੀਂ)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "ਰਵੱਈਆ" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "ਮੌਜੂਦਾ ਟੈਬ ਦੇ ਬਾਅਦ(&t)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "ਵੰਡੋ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "ਹੈੱਡਰ ਵੇਖਾਓ:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "ਜਦੋਂ ਲੋੜ ਹੈ" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "ਕਦੇ ਨਹੀਂ" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "ਛੋਟਾ" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "ਮੱਧਮ" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "ਵੱਡਾ" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3188,8 +3386,8 @@ msgstr "ਪਿਕਸਲ" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3229,96 +3427,96 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "ਮੇਨੂ ਐਕਸਰਲੇਟਰ ਚਾਲੂ ਕਰੋ" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "ਅਕਾਰ: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "ਕੀ ਤੁਸੀਂ %1 ਅੱਖਰ ਚੇਪਣਾ ਚਾਹੁੰਦੇ ਹੋ?" msgstr[1] "ਕੀ ਤੁਸੀਂ %1 ਅੱਖਰ ਚੇਪਣੇ ਚਾਹੁੰਦੇ ਹੋ?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "ਚੇਪਣ ਦੀ ਪੁਸ਼ਟੀ" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "ਚੇਪਣ ਦੀ ਪੁਸ਼ਟੀ" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "ਮੌਜੂਦਾ ਅੱਖਰ ਨਾਲ ਰਲਦਾ ਕਰਸਰ ਰੰਗ ਸੈੱਟ ਕਰੋ" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "ਹਰ ਚੀਜ਼ ਨੂੰ ਚੇਪੋ(&P)" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "ਰੱਦ ਕਰੋ(&C)" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
              ਸਸਪੈਂਡ ਕੀਤੀ ਜਾ ਸਕਦੀ ਹੈ। ਮੁੜ-ਪਰਾਪਤ ਕਰਨ ਲਈ Ctrl+Q ਦੱਬੋ ਜੀ। ਇਹ ਸੁਨੇਹੇ ਨੂੰ 10 ਸਕਿੰਟਾਂ ਵਿੱਚ ਹਟਾਇਆ ਜਾਵੇਗਾ।" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "ਇਹ ਟਰਮੀਨਲ ਕੇਵਲ ਪੜ੍ਹਨ ਲਈ ਹੈ।" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "ਡਾਇਰੈਕਟਰੀ ਬਦਲੋ(&D)" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "ਟਿਕਾਣਾ ਚੇਪੋ(&P)" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "ਝਲਕ ਵੰਡੋ" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "ਝਲਕ ਖੱਬੇ/ਸੱਜੇ ਵੰਡੋ" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "ਝਲਕ ਉੱਤੇ/ਹੇਠਾਂ ਵੰਡੋ" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "ਝਲਕ ਨੂੰ ਆਪਣੇ-ਆਪ ਹੀ ਵੰਡੋ" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3376,7 +3574,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "ਝਲਕ ਖੱਬੇ/ਸੱਜੇ ਵੰਡੋ" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3384,7 +3582,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "ਝਲਕ ਉੱਤੇ/ਹੇਠਾਂ ਵੰਡੋ" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3392,198 +3590,214 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "ਝਲਕ ਉੱਤੇ/ਹੇਠਾਂ ਵੰਡੋ" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "ਝਲਕ ਫੈਲਾਓ" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "ਝਲਕ ਸੁੰਘੜੋ" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "ਮੌਜੂਦਾ ਝਲਕ ਨੂੰ ਵੱਖ ਕਰੋ(&V)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ਮੌਜੂਦਾ ਟੈਬ ਨੂੰ ਵੱਖ ਕਰੋ(&T)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "ਨਵੀਂ ਟੈਬ" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "ਟੈਗ ਪਿੱਛੇ" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ਉੱਤੇ ਟਰਮੀਨਲ ਉੱਤੇ ਫੋਕਸ" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ਹੇਠਲੇ ਟਰਮੀਨਲ ਉੱਤੇ ਫੋਕਸ" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Above Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ਉੱਤੇ ਟਰਮੀਨਲ ਉੱਤੇ ਫੋਕਸ" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ਹੇਠਲੇ ਟਰਮੀਨਲ ਉੱਤੇ ਫੋਕਸ" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "ਪਿਛਲੀ ਟੈਬ ਲਈ ਸਵਿੱਚ ਕਰੋ" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "ਪਿਛਲੀ ਵਰਤੀਆਂ ਟੈਬਾਂ" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "ਦੋ ਟੈਬਾਂ ਵਿਚਾਲੇ ਬਦਲੋ" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "ਪਿਛਲੀ ਵਰਤੀਆਂ ਟੈਬਾਂ (ਉਲਟ)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "ਟੈਬ ਨੂੰ ਸੱਜੇ ਭੇਜੋ" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "ਟੈਬ ਨੂੰ ਖੱਬੇ ਭੇਜੋ" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "ਟੈਬ %1 ਲਈ ਸਵਿੱਚ ਕਰੋ" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Text interaction" msgid "Semantic hints " msgstr "ਲਿਖਤ ਦਖ਼ਲ" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "ਲਾਈਨ ਦੇ ਨੰਬਰ" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "ਟੈਬ ਖਾਕੇ ਨੂੰ ਸੰਭਾਲੋ" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "ਕਨਸੋਲ ਵੇਖਣ ਖਾਕਾ (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3593,7 +3807,7 @@ msgstr "" "ਖਾਕੇ ਨੂੰ ਸੰਭਾਲਣ ਦੌਰਾਨ ਸਮੱਸਿਆ ਆਈ ਹੈ।\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3603,13 +3817,13 @@ msgstr "" "ਖਾਕੇ ਨੂੰ ਲੋਡ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ ਆਈ ਹੈ।\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "ਟੈਬ ਖਾਕੇ ਨੂੰ ਲੋਡ ਕਰੋ" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3709,15 +3923,27 @@ msgstr "ਮੂਲ ਅੱਖਰ ਇੰਕੋਡਿੰਗ:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Line numbers " msgid "Line Numbers:" msgstr "ਲਾਈਨ ਦੇ ਨੰਬਰ" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, fuzzy, kde-format #| msgid "&Never" msgctxt "Never" @@ -3725,14 +3951,14 @@ msgid "&Never" msgstr "ਕਦੇ ਨਹੀਂ(&N)" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, fuzzy, kde-format #| msgctxt "Always" #| msgid "Always" @@ -3770,7 +3996,7 @@ msgstr "ਚੁਣੀ ਰੰਗ ਸਕੀਮ ਸੋਧੋ" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3825,12 +4051,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3952,29 +4184,45 @@ msgid "Make the cursor blink regularly" msgstr "ਕਰਸਰ ਨੂੰ ਲਗਾਤਾਰ ਝਪਕਦੀ ਬਣਾਓ" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "ਸਮਰੱਥ ਹੈ" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "ਐਕਟੀਵੇਸ਼ਨ:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "ਕਰਸਰ ਨੂੰ ਲਗਾਤਾਰ ਝਪਕਦੀ ਬਣਾਓ" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "ਫੁਟਕਲ" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "ਵਿੰਡੋ:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3982,146 +4230,146 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "ਰੰਗ:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "ਕਰਸਰ ਬਣਾਉਣ ਲਈ ਵਰਤਣ ਵਾਸਤੇ ਰੰਗ ਚੁਣੋ" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "ਨਾ-ਸਰਗਰਮ ਟਰਮੀਨਲ:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "ਸਰਗਰਮ ਟਰਮੀਨਲ:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "ਟਰਮੀਨਲ ਸਮੱਗਰੀ" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "ਲਾਈਨ ਫਾਸਲਾ:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "ਦੋ ਲਾਈਨਾਂ ਦੇ ਵਿਚਾਲੇ ਪਿਕਸਲਾਂ ਦੀ ਗਿਣਤੀ" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "ਪਿਕਸਲ" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "ਹਾਸ਼ੀਏ:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "ਕੇਂਦਰ ਵਿੱਚ ਇਕਸਾਰ ਕਰੋ:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "ਦੋ-ਦਿਸ਼ਾਵੀਂ ਟੈਕਸਟ ਰੈਂਡਰਿੰਗ ਚਾਲੂ" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4129,44 +4377,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "ਮੌਜੂਦਾ ਅੱਖਰ ਨਾਲ ਰਲਦਾ ਕਰਸਰ ਰੰਗ ਸੈੱਟ ਕਰੋ" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "ਈਮੋਜ਼ੀ ਫੋਂਟ:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4174,96 +4422,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "ਦੋ-ਦਿਸ਼ਾਵੀਂ ਲਿਖਤ ਦੀ ਰੈਂਡਰਿੰਗ" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "ਮੌਜੂਦਾ ਅੱਖਰ ਨਾਲ ਰਲਦਾ ਕਰਸਰ ਰੰਗ ਸੈੱਟ ਕਰੋ" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "ਪਰੋਫਾਇਲ ਸੋਧ" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "ਆਮ" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ਟੈਬ" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "ਦਿੱਖ" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "ਸਕਰੋਲਿੰਗ" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "ਕੀ-ਬੋਰਡ" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "ਸਵਿੱਚ ਬਾਈਡਿੰਗ" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "ਮਾਊਸ" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "ਤਕਨੀਕੀ" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4272,48 +4520,55 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "ਪਰੋਫਾਇਲ ਸੋਧ: %2" msgstr[1] "%1 ਪਰੋਫਾਇਲ ਸੋਧ: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "ਨਵਾਂ ਪਰੋਫਾਇਲ ਬਣਾਓ" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "ਪਰੋਫਾਇਲ \"%1\" ਸੋਧ" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "ਕੋਈ ਨਹੀਂ" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4323,7 +4578,7 @@ msgid_plural " columns" msgstr[0] "ਕਾਲਮ" msgstr[1] "ਕਾਲਮ" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4333,43 +4588,43 @@ msgid_plural " rows" msgstr[0] "ਕਤਾਰ" msgstr[1] "ਕਤਾਰਾਂ" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "ਸਿਸਟਮ ਬੈਲ" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "ਸਿਸਟਮ ਨੋਟੀਫਿਕੇਸ਼ਨ" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "ਦਿੱਖ ਘੰਟੀ" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "ਨਵੇਂ ਟਰਮੀਨਲ ਸ਼ੈਸ਼ਨਾਂ ਲਈ ਚੁਣਿਆ ਪਰੋਫਾਇਲ ਮੂਲ ਸੈੱਟ ਕਰੋ" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "ਇੰਵਾਇਰਨਮੈਂਟ ਸੋਧ" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "ਹਰੇਕ ਲਾਈਨ ਲਈ ਇੱਕ ਇੰਵਾਇਰਨਮੈਂਟ ਵੇਰੀਬਲ" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4377,30 +4632,30 @@ msgid_plural " seconds" msgstr[0] " ਸਕਿੰਟ" msgstr[1] " ਸਕਿੰਟ" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "ਸ਼ੁਰੂਆਤੀ ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "...ਨਵੇਂ ਲਵੋ" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4409,13 +4664,13 @@ msgstr "" "ਕਨਸੋਲ ਨੂੰ ਡੈਸਕਟਾਪ ਪ੍ਰਭਾਵ ਨੂੰ ਚਾਲੂ ਹੋਣ ਤੋਂ ਪਹਿਲਾਂ ਸ਼ੁਰੂ ਕੀਤਾ ਗਿਆ ਸੀ। ਪਾਰਦਰਸ਼ੀ (ਟਰਾਂਸਪਰੇਟ) " "ਬੈਕਗਰਾਊਂਡ ਵੇਖਣ ਲਈ ਤੁਹਾਨੂੰ ਕਨਸੋਲ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "ਡਿਫਾਲਟ ਪਰੋਫਾਇਲ" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4432,7 +4687,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4520,27 +4775,55 @@ msgstr "ਸ਼ੁਰੂਆਤੀ ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ" msgid "Start in same directory as current session" msgstr "ਮੌਜੂਦਾ ਸ਼ੈਸ਼ਨ ਵਾਲੀ ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਹੀ ਸ਼ੁਰੂ ਕਰੋ" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "ਮੌਜੂਦਾ ਸ਼ੈਸ਼ਨ ਵਾਲੀ ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਹੀ ਸ਼ੁਰੂ ਕਰੋ" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "ਵਾਤਾਵਰਨ:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" msgstr "ਸ਼ੁਰੂਆਤ ਟਰਮੀਨਲ ਆਕਾਰ:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4550,33 +4833,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal bell mode:" msgid "&Terminal bell mode:" msgstr "ਟਰਮੀਨਲ ਘੰਟੀ ਮੋਡ:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Text interaction" msgid "Semantic Integration" msgstr "ਲਿਖਤ ਦਖ਼ਲ" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4586,9 +4869,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4599,9 +4882,9 @@ msgstr "ਕਦੇ ਨਹੀਂ" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4612,34 +4895,34 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "ਹਮੇਸ਼ਾ" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "ਲਾਲ ਗਲਤੀ ਪੱਟੀਆਂ:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "ਲਾਲ ਗਲਤੀ ਬੈਕਗਰਾਊਂਡ:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "ਬਦਲਵੀਆਂ ਪੱਟੀਆਂ:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "ਬਦਲਵੀਆਂ ਬੈਕਗਰਾਊਂਡ:" @@ -4977,51 +5260,94 @@ msgid "Scrollback:" msgstr "ਸਕਰੋਲ-ਬੈਕ:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "ਲੁਕਵਾਂ" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half screen height" msgid "Half screen heigh&t" msgstr "ਅੱਧੀ ਸਕਰੀਨ ਦੀ ਉਚਾਈ" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full screen height" msgid "F&ull screen height" msgstr "ਪੂਰੀ ਸਕਰੀਨ ਦੀ ਉਚਾਈ" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "ਸਕਰੋਲ ਪੱਟੀ ਸਥਿਤੀ:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "ਟਰਮੀਨਲ ਦੇ ਸੱਜੇ ਪਾਸੇ ਸਕਰੋਲ ਪੱਟੀ ਵੇਖਾਓ" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the right side" #| msgid "Right side" @@ -5030,13 +5356,13 @@ msgid "Ri&ght side" msgstr "ਸੱਜੇ ਪਾਸੇ" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "ਟਰਮੀਨਲ ਦੇ ਖੱਬੇ ਪਾਸੇ ਸਕਰੋਲ ਪੱਟੀ ਵੇਖਾਓ" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the left side" #| msgid "Left side" @@ -5044,53 +5370,22 @@ msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "ਖੱਬੇ ਪਾਸੇ" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "ਲੁਕਵਾਂ" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "ਸਕਰੋਲ ਪੱਟੀ ਸਥਿਤੀ:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5194,91 +5489,92 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "ਕੋਈ ਨਹੀਂ(&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "ਲੱਭੋ..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ਖੋਜ ਕਰਨ ਲਈ ਟੈਕਸਟ ਇੱਥੇ ਦਿਓ" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "ਅੱਗੇ" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "ਮੌਜੂਦਾ ਖੋਜ ਸ਼ਬਦ ਦਾ ਅਗਲਾ ਮੇਲ ਲੱਭੋ" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "ਪਿੱਛੇ" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "ਮੌਜੂਦਾ ਖੋਜ ਸ਼ਬਦ ਦਾ ਪਿਛਲਾ ਮੇਲ ਲੱਭੋ" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "ਚੋਣ ਮੇਨੂ ਵੇਖਾਉ" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "ਖੋਜ ਪੱਟੀ ਬੰਦ ਕਰੋ" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "ਆਕਾਰ ਪ੍ਰਤੀ ਸੰਵੇਦਨਸ਼ੀਲ" +msgstr "ਅੱਖਰ ਆਕਾਰ ਪ੍ਰਤੀ ਸੰਵੇਦਨਸ਼ੀਲ" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "ਚੋਣ ਮੇਨੂ ਵੇਖਾਉ" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "ਖੋਜ ਪੱਟੀ ਬੰਦ ਕਰੋ" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "ਰੈਗੂਲਰ ਸਮੀਕਰਨ ਮੇਲ" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "ਸਭ ਮਿਲਦੇ ਹਾਈਲਾਈਟ ਕਰੋ" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "ਪਿੱਛੇ ਵੱਲ ਖੋਜੋ" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5286,13 +5582,13 @@ msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "ਮੌਜੂਦਾ ਖੋਜ ਸ਼ਬਦ ਦਾ ਅਗਲਾ ਮੇਲ ਲੱਭੋ" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5300,7 +5596,7 @@ msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "ਮੌਜੂਦਾ ਖੋਜ ਸ਼ਬਦ ਦਾ ਅਗਲਾ ਮੇਲ ਲੱਭੋ" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5308,7 +5604,7 @@ msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "ਮੌਜੂਦਾ ਖੋਜ ਸ਼ਬਦ ਦਾ ਅਗਲਾ ਮੇਲ ਲੱਭੋ" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5321,7 +5617,7 @@ msgstr "ਮੌਜੂਦਾ ਖੋਜ ਸ਼ਬਦ ਦਾ ਅਗਲਾ ਮੇਲ msgid "Print Shell" msgstr "ਸ਼ੈੱਲ ਪਰਿੰਟ ਕਰੋ" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5361,6 +5657,13 @@ msgstr "ਆਮ ਟੈਬ ਟਾਈਟਲ ਫਾਰਮੈਟ" msgid "Tab Co&lor:" msgstr "ਟੈਬ ਦਾ ਰੰਗ:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Color:" +msgid "&Activity Tab Color:" +msgstr "ਟੈਬ ਦਾ ਰੰਗ:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5457,36 +5760,48 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ਟਰਮੀਨਲ ਬਹਾਲ ਕਰੋ" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "ਨਵੀਂ ਟੈਬ ਖੋਲ੍ਹੋ" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "ਟੈਬ ਵੱਖ ਕਰੋ(&D)" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "ਇਹ ਟੈਬ ਬੰਦ ਕਰੋ" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "ਟੈਬ ਵੱਖ ਕਰੋ(&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ਟੈਬ ਦੀ ਸੰਰਚਨਾ ਕਰੋ ਜਾਂ ਨਾਂ ਬਦਲੋ(&C)..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "ਟੈਬ ਬੰਦ ਕਰੋ" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "ਆਕਾਰ ਪ੍ਰਤੀ ਸੰਵੇਦਨਸ਼ੀਲ" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "ਕੋਈ ਨਹੀਂ" diff --git a/local/recipes/kde/konsole/source/po/pl/konsole.po b/local/recipes/kde/konsole/source/po/pl/konsole.po index 2822605eb2..cbc7e5c83d 100644 --- a/local/recipes/kde/konsole/source/po/pl/konsole.po +++ b/local/recipes/kde/konsole/source/po/pl/konsole.po @@ -5,23 +5,23 @@ # Marta Rybczyńska , 2007, 2011, 2013. # Marcin Kocur , 2009. # Artur Chłond , 2010. -# SPDX-FileCopyrightText: 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Łukasz Wojniłowicz +# SPDX-FileCopyrightText: 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Łukasz Wojniłowicz # Ignacy Kajdan , 2019, 2020, 2021. msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-24 11:40+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-04-11 08:43+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" -"Language-Team: Polish \n" +"Language-Team: pl\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.08.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -56,7 +56,7 @@ msgstr "Widok" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Widok podzielony" @@ -92,7 +92,7 @@ msgid "S&crollback" msgstr "Przewijanie wste&cz" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Pasek narzędzi posiedzenia" @@ -174,46 +174,58 @@ msgstr "Ukryj pasek menu, zastępując ustawienia domyślne" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Pokaż wszystkie paski narzędzi, zastępując ustawienia domyślne" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Ukryj wszystkie paski narzędzi, zastępując ustawienia domyślne" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Pokaż pasek kart, zastępując ustawienia domyślne" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Ukryj pasek kart, zastępując ustawienia domyślne" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Uruchom Konsolę w trybie pełnego okna" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Wyłącz przezroczyste tła, nawet jeśli są obsługiwane przez system." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Pokaż dostępne profile" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Pokaż wszystkie nazwy właściwości profili i ich typy (do użytku z -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Zmień wartość atrybutu profilu." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -223,7 +235,7 @@ msgstr "" "Polecenie do wykonania. Opcja ta przechwyci wszystkie następujące po niej " "argumenty, więc użyj jej jako ostatniej opcji." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -233,13 +245,13 @@ msgstr "" "Wymuś ponowne użycie obecnego wystąpienia nawet wtedy gdy uniemożliwiaużycie " "np. --new-tab. Głównie dla celów diagnostycznych." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenty przekazane poleceniu" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -257,157 +269,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Pierwszy plan" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Tło" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Barwa 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Barwa 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Barwa 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Barwa 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Barwa 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Barwa 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Barwa 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Barwa 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Pierwszy plan (jaskrawy)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Tło (jaskrawe)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Barwa 1 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Barwa 2 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Barwa 3 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Barwa 4 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Barwa 5 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Barwa 6 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Barwa 7 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Barwa 8 (jaskrawa)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Pierwszy plan (słaby)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Tło (słabe)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Barwa 1 (słaba)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Barwa 2 (słaba)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Barwa 3 (słaba)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Barwa 4 (słaba)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Barwa 5 (słaba)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Barwa 6 (słaba)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Barwa 7 (słaba)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Barwa 8 (słaba)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -663,6 +675,41 @@ msgstr "Do góry" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Gospodarz: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [domyślny]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -708,7 +755,7 @@ msgstr "" msgid "Copy Location" msgstr "Skopiuj położenie" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Tworzenie miniatury" @@ -739,13 +786,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Wybierz czcionkę" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Pokaż wszystkie czcionki" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -786,17 +833,17 @@ msgstr "Kombinacja klawiszy" msgid "Output" msgstr "Wyjście" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nowa lista skrótów klawiszowych" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Edytuj listę skrótów klawiszowych" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Nie można zapisać listy skrótów klawiszowych z pustym opisem." @@ -804,7 +851,7 @@ msgstr "Nie można zapisać listy skrótów klawiszowych z pustym opisem." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -838,225 +885,225 @@ msgstr "Wejście:" msgid "Output:" msgstr "Wyjście:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsola" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator terminala" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Programiści Konsoli" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Ogólny opiekun, poprawki błędów i ogólne usprawnienia" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Poprzedni opiekun, port do KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autor pierwszej wersji" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Duże dostosowywanie kodu, poprawki błędów i ogólne ulepszenia" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Usuwanie błędów i poprawki" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Poprawki błędów i znaczące ulepszenia" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Ogólne usprawnienia" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Poprawki" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Wersja dla Solarisa i historia poleceń" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Poprawki i przyspieszenie uruchamiania" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Ulepszenia zaznaczania" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1066,13 +1113,13 @@ msgstr "" "Osadzona Konsola\n" "Nazwy posiedzeń i pasków narzędzi" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1082,25 +1129,25 @@ msgstr "" "Osadzona Konsola\n" "Ogólne usprawnienia" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efekty wizualne" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1110,132 +1157,132 @@ msgstr "" "Kod z projektu kvt\n" "Ogólne usprawnienia" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Poprawki do zestawów i zaznaczania tekstu" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Wersja dla SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Wersja dla FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Podziękowania dla wielu innych.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nowa karta" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Powiel kartę" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nowe &okno" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zamknij okno" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Zakładki" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Zesta&w barw okna" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Zarządzaj profilami..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Otwórz menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Zapisz układ kart..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Wczytaj układ kart..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1245,68 +1292,68 @@ msgstr[0] "W tym oknie uruchomiony jest proces. Czy zamknąć mimo tego?" msgstr[1] "W tym oknie uruchomione są %1 procesy. Czy zamknąć mimo tego?" msgstr[2] "W tym oknie uruchomionych jest %1 procesów. Czy zamknąć mimo tego?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Potwierdzenie zamknięcia" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Zamknij &okno" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zamknij bieżącą kar&tę" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Liczba otwartych terminali w tym oknie to %1. Czy zamknąć to okno mimo tego?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profile" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Ogólne" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Pamięć" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Pasek kart / rozdzielacze" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Pliki tymczasowe" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniatury" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1390,7 +1437,7 @@ msgstr "Zapisz" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Uaktualnij" @@ -1402,29 +1449,29 @@ msgid "Cancel" msgstr "Anuluj" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Szybkie polecenia" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Pokaż szybki dostęp" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Nie znaleziono żadnego szybkiego polecenia. Możesz doda takie we Wtyczki -> " "Szybkie polecenia" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Wtyczki - Szybkie polecenia" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Pokaż szybkie polecenia" @@ -1466,7 +1513,7 @@ msgstr "" " która zawiera wiele ustawień, czy na pewno?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Masz zamiar usunąć katalog %1, czy jesteś tego pewny?" @@ -1519,11 +1566,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 jest katalogiem wpisów SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Ustawienia SSH" @@ -1586,24 +1633,24 @@ msgstr "" "Nie można wydać polecenia SSH poza aplikacją powłoki (np, bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Klucz SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Usuń" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Nie zmieniaj" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1612,71 +1659,71 @@ msgstr "" "Masz zamiar usunąć katalog %1,\n" " który zawiera wiele ustawień SSH, czy na pewno?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Usuń ustawienia SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" "Zaimportowano profil SSH
              Niektóre z ustawień są tylko do odczytu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Brak nazwy gospodarza" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Brak nazwy" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Jeśli zaznaczone użycie ustawień SSH, to nie podawaj klucza SSH, ani nazwy " "użytkownika." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Musi być ustawiona co najmniej nazwa użytkownika lub klucz SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Brak katalogu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Posiedzenie SSH musi mieć profil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Nie można usunąć tego katalogu" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Usuń katalog i całą jego zawartość" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Naciśnij dwukrotnie, aby nazwę katalogu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Nie możesz usunąć samoczynnie dodanego wpisu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Usuń zaznaczony wpis" @@ -1868,25 +1915,25 @@ msgstr "Opcje wyjścia" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Tryb &przyjazny drukarce (czarny tekst, brak tła)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Prze&skaluj wyjście" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Wbudowany" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Domyślny profil" @@ -1945,17 +1992,40 @@ msgstr "Naciśnij dwukrotnie, aby zmienić skrót" msgid "Tab Properties" msgstr "Właściwości karty" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Zapisz wyjście z %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 nie jest poprawnym adresem. Nie można zapisać wyjścia." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Nie udało się utworzyć pliku samozapisu w %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Zatrzymywanie samozapisu ze względu na przełączenie ekranu." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Zewnętrzny program zapisał do plik samozapisu, co uniemożliwia jego dalsze " +"wykorzystywanie." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Nie udało się uaktualnić stanu samozapisu po zmianie wyjścia." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1991,81 +2061,98 @@ msgstr "Bryza" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Ciemny pastelowy" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zielone na czarnym" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Barwy Linuksa" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Czerwone na czarnym" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Nasłoneczniony" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Nasłoneczniony jasny" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Białe na czarnym" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Domyślny (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Konsola Linuksa" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Konsola Solarisa" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Poszukaj…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Tutaj wpisz nazwę karty do znalezienia" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Dzwonek w „%1” (posiedzenie „%2”)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nie można znaleźć pliku binarnego: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Ostrzeżenie: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nie można znaleźć interaktywnej powłoki do uruchomienia." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2074,337 +2161,339 @@ msgstr "" "Nie można znaleźć „%1”, uruchamianie „%2”. Proszę sprawdzić ustawienia " "profilu." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nie można uruchomić programu „%1” z parametrami „%2”." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Cisza w „%1” (posiedzenie „%2”)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Pokaż posiedzenie" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Właśnie użyto metod D-Bus sendText/runCommand. Istnieją obawy co do " -"bezpieczeństwa przy zezwalaniu tym metodom na bycie publicznymi. Jeśli " -"chcesz, to przeznaczenie tych metod może zostać zmienione tylko na " -"wewnętrzny użytek poprzez rekompilację Konsoli.

              To ostrzeżenie zostanie " -"wyświetlone tylko raz dla tego wystąpienia Konsoli.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Zakończono" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program „%1” nieoczekiwanie zakończył działanie." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program „%1” zakończył działanie. Kod powrotu: %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Postęp transmisji ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Ruch w „%1” (posiedzenie „%2”)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "API DBus zagrażające bezpieczeństwu jest wyłączone w ustawieniach." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsola" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Proces „%1” zakończył działanie w posiedzeniu „%2”" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsola nie umie otworzyć zakładki:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Szukaj „%1” w" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Ustawienia skrótów sieciowych..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Zamknij posiedzenie" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Otwórz przeglądarkę plików" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopiuj" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Podziel widok na lewy-prawy" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Podziel widok na górny-dolny" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Skopiuj pojawiające się wyjątki" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Skopiuj działanie użytkownika" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Skopiuj wynik polecenia" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Wklej zaznaczenie" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Szukaj w sieci" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Zaznacz w&szystko" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Zaznacz &tryb" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Zaznacz &wiersz" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Zapisz wyjście j&ako..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Sam zapisz wyjście jako..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Zatrzymaj samozapisywanie" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Wy&drukuj ekran..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Dostosuj przewijanie wstecz..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Wyczyść przewijanie wstecz" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Wyczyść przewijanie wstecz i wyzeruj" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Następny profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Poprzedni profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Przełącz profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Ustaw kodowani&e" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Zezwól na śledzenie myszy" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Tylko do odczytu" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Ustawienia lub zmiana nazwy karty..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Wszystkie k&arty w bieżącym oknie" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Wybierz karty..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nie wybieraj" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Skopiuj wejście do" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Wyślij przez &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Monitory jednorazowe" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Wyczuwaj za&pytania" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Wyczuw&aj ruch" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Wyczuwaj ci&szę" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitoruj kończenie procesów" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Zwiększ czcionkę" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Zmniejsz czcionkę" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Wyzeruj rozmiar czcionki" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Wyślij sygnał" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "W&strzymaj zadanie" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Kontynuuj zadanie" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Za&wieś" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Przerw&ij zadanie" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Zakończ zadanie" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Wymuś zam&knięcie zadania" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Sygnał użytkownika &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Sygnał użytkownika &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Utwórz nowy profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Edytuj bieżący profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2413,7 +2502,7 @@ msgstr "" "W tym posiedzeniu działa obecnie jakiś program. Czy na pewno chcesz zamknąć " "to posiedzenie?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2422,18 +2511,18 @@ msgstr "" "W tym posiedzeniu działa obecnie program „%1”. Czy na pewno chcesz zamknąć " "to posiedzenie?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potwierdź zamknięcie" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Zamknij program" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2441,36 +2530,37 @@ msgid "" msgstr "" "Program w tym posiedzeniu nie zginął. Czy na pewno chcesz zabić go siłą?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"Program „%1” w tym posiedzeniu nie zginął. Czy na pewno chcesz zabić go siłą?" +"Program „%1” w tym posiedzeniu nie został zamknięty. Czy na pewno wymusić " +"jego zamknięcie?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Wymuś zamknięcie programu" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Zapytanie powłoki jest wyświetlane w posiedzeniu '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Otwórz bieżący katalog w" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Zapisz pobranie ZModem do..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2481,14 +2571,14 @@ msgstr "" "oprogramowania wspierającego ten protokół.

              Należy zainstalować pakiet " "„rzsz” lub „lrzsz”.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" "

              W bieżącym posiedzeniu już trwa przesyłanie plików przy użyciu ZModem.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2497,7 +2587,7 @@ msgstr "" "

              W systemie nie odnaleziono oprogramowania wspierającego protokół ZModem.

              Należy zainstalować pakiet „rzsz” lub „lrzsz”.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Wybierz pliki do wysłania przez ZModem" @@ -2520,144 +2610,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Ustawienia" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Ustawienia szukania:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Umożliw dostęp do menu z klawiatury" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Jeśli włączono, to ustawienia profilu zostaną pominięte" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Zapamiętaj rozmiar okna" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Pokaż nazwę okna na pasku nazwy" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Przywołaj terminal po najechaniu na niego myszą" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Szukaj przy użyciu wyrażeń regularnych" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Jeśli to możliwe, uruchom Konsolę używając istniejącego procesu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Otwieraj wszystkie okna Konsoli w pojedynczym procesie" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Podświetl wszystkie pasujące" +msgid "If enabled, profile settings will be ignored" +msgstr "Jeśli włączono, to ustawienia profilu zostaną pominięte" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Określa, czy wyszukiwanie ma rozróżniać wielkość liter" +msgid "Remember window size" +msgstr "Zapamiętaj rozmiar okna" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Rozróżniaj wielkość liter" +msgid "Force new tabs" +msgstr "Wymuś nowe karty" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Ukryj pasek nazwy i obramowanie okna" +msgid "Listen for ZModem terminal codes" +msgstr "Nasłuchuj kodów terminala ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Przetwarzanie i okno:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Powiadomienia:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Wszystkie okna dialogowe zostaną ponownie pokazane" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Przywróć wszystkie zapytania „Nie pytaj ponownie”" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Określa, czy wyszukiwanie powinno zaczynać się od dołu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Szukaj wstecz" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Określa, czy wyszukiwanie ma rozróżniać wielkość liter" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Rozróżniaj wielkość liter" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Przetwarzanie i okno:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Podświetl wszystkie pasujące" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Ustawienia szukania:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Określa, czy zatrzymać wyszukiwanie zamiast zacząć znowu od początku" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Nie zaczynaj znowu od początku" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Umożliw dostęp do menu z klawiatury" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Przywołaj terminal po najechaniu na niego myszą" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Wszystkie okna dialogowe zostaną ponownie pokazane" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Przywróć wszystkie zapytania „Nie pytaj ponownie”" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Pokaż nazwę okna na pasku nazwy" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Włącz części API z DBus zagrażające bezpieczeństwu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Ukryj pasek nazwy i obramowanie okna" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Szukaj przy użyciu wyrażeń regularnych" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2684,71 +2800,109 @@ msgstr "Użyj bieżącego rozmiaru okna przy następnym uruchomieniu" msgid "The window size will be saved upon exiting Konsole" msgstr "Rozmiar okna zostanie zapisany przy wyjściu z Konsoli" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Jeśli to możliwe, uruchom Konsolę w nowej karcie zamiast nowym oknie" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "API DBus takie jak runCommand zostanie włączone" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Nasłuchuj kodów terminala ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Wysyłaj/odbieraj pliki przez połączenia szeregowe bez potwierdzenia" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Szerokość miniatur" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Ustawia szerokość miniatury" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Naciśnij klawisz Shift, aby pokazać miniaturę" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Naciśnij klawisz Alt, aby pokazać miniaturę" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Naciśnij klawisz Ctrl, aby pokazać miniaturę" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Wyszukuj z rozróżnianiem wielkość liter" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Podświetlaj wszystkie pasujące wyrażenia" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Określa, czy znaleziony tekst ma być zaznaczony" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Wyszukiwanie zatrzyma się zamiast zacząć znowu od początku" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Określa, czy tworzone są podrzędne cgroup dla osobnych kart" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2758,92 +2912,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Zmień widoczność całego paska kart" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Zmień rozmiar uchwytów pomiędzy panelami" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Zmień położenie paska kart" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Zmień stylem wizualny paska kart" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Użyj własnego pliku CSS dla paska kart" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Plik CSS dla stylu paska kart" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Zezwalaj na zamknięcie otwartych kart środkowym przyciskiem myszy" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Zmień widoczność przycisku „Nowa karta” na pasku kart" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Zmień widoczność przycisku „Poszukaj karty” na pasku kart" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Zmień widoczność przycisku „Zamknij kartę”" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Zmień miejsce umieszczenia nowej karty" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Zwiększ szerokość kart" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Użyj katalogu systemowego dla plików przewijania wstecz" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Użyj katalogu użytkownika dla plików przewijania wstecz" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" "Użyj katalogu wskazanego przez użytkownika dla plików przewijania wstecz" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Użyj tego katalogu dla plików przewijania wstecz" @@ -2855,33 +3015,30 @@ msgid "Enable memory monitoring:" msgstr "Włącz monitorowanie pamięci:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Zmiany odniosą skutek po ponownym uruchomieniu. Po włączeniu, przeciągające " -"się wykorzystanie pamięci przez Konsole\n" -"wykraczające poza określoną wartość spowoduje, że systemd-oomd zamknie " -"karty\n" -"zawierające działania pamięciożerne. Pamiętaj: włączenie\n" -"może wywołać większe spowolnienia podczas pamięciożernych zadań, a\n" -"określenie szczególnie niskich wartości może spowodować zakończenie Konsoli." +"się wykorzystanie pamięci przez Konsole wykraczające poza określoną wartość " +"spowoduje, że systemd-oomd zamknie karty zawierające działania " +"pamięciożerne. Pamiętaj: włączenie może wywołać większe spowolnienia podczas " +"pamięciożernych zadań, a określenie szczególnie niskich wartości może " +"spowodować zakończenie Konsoli." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Pamięć graniczna:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3042,125 +3199,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nie pokazuj" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Pokaż przycisk do szukania kart:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Zawsze" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nigdy" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Różne:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Pokaż przycisk „Nowa karta”" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Wykorzystaj całą szerokość okna na nazwy kart" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Użyj własnego arkusza stylów:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(brak)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Zachowanie" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Nowe karty umieszczaj:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "&Na końcu" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Za bieżącą kar&tą" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Zamknij kartę na środkowy przycisk myszy" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Rozdzielacze" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Pokaż nagłówek:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Gdy potrzeba" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nigdy" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Rozmiar uchwytu przeciągania:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Mały" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Średni" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Duży" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3212,13 +3387,12 @@ msgstr " piks." #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Aby móc korzystać z tej możliwości, włącz Mysz->Różne->Podkreślaj pliki w ustawieniach swojego profilu

              " +"\" font-weight:600;\">Mysz->Różne->Podkreślaj pliki w " +"ustawieniach swojego profilu

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3256,12 +3430,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Włącz tworzenie miniatur" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Rozmiar: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3269,52 +3443,52 @@ msgstr[0] "Czy na pewno chcesz wkleić %1 znak?" msgstr[1] "Czy na pewno chcesz wkleić %1 znaki?" msgstr[2] "Czy na pewno chcesz wkleić %1 znaków?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Potwierdź wklejenie" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Przerwanie: Może przerwać bieżący proces" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Koniec przesyłania: Może zakończyć bieżący proces" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Dzwonek: Spróbuje odtworzyć ostrzeżenie dźwiękowe" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: Wstrzymuje wyjście" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Zawieszenie: Może zawiesić bieżący proces" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: używane do zmiany stanu terminala" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Przerwanie: Może przerwać bieżący proces" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3323,31 +3497,31 @@ msgstr "" "Tekst, który próbujesz wkleić zawiera ukryte znaki sterujące. Czy chcesz je " "odfiltrować?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Potwierdź wklejenie" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "&Wklej bez znaków sterujących" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Wklej wszystko" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Anuluj" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been zawieszone poprzez naciśnięcie Ctrl+S. Naciśnij " "Ctrl+Q, aby wznowić." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Ten terminal jest tylko do odczytu." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Zmień na ten &katalog" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Wklej &położenie" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" -msgstr "Widok podzielony" +msgstr "Podziel widok" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Podziel widok na lewy/prawy" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Podziel widok na górny/dolny" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Sam podziel widok" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Podziel widok na lewy/prawy od następnej karty" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Podziel widok na górny/dolny od następnej karty" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Sam podziel widok od następnej karty" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Wczytaj nową kartę z układem terminali 2x2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Wczytaj nową kartę z układem terminali 2x1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Wczytaj nową kartę z układem terminali 1x2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Rozwiń widok" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Zwiń widok" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Odłącz bieżący &widok" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Odłącz bieżącą kar&tę" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Następna karta" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Poprzednia karta" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Przełącz na terminal powyżej" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Przełącz na terminal poniżej" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Przełącz na terminal po lewej" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Przełącz na terminal po prawej" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Przełącz na następny terminal" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Przełącz na poprzedni terminal" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Przełącz na ostatnią kartę" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Ostatnio używane karty" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Przełącz pomiędzy dwiema kartami" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Ostatnio używane karty (odwrotnie)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Przełącz maksymalizację bieżącego widoku" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Przełącz maksymalizację bieżącego widoku" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Przełącz powiększenie-maksymalizację bieżącego widoku" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Przełącz powiększenie-maksymalizację bieżącego widoku" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Przesuń kartę w prawo" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Przesuń kartę w lewo" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Ustaw obsługę semantyczną (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Przełącz wyświetlanie wskazówek semantycznych" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Przełącz wyświetlanie numerów wierszy" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Równy rozmiar dla wszystkich widoków" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Przełącz na kartę %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Wskazówki semantyczne " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Numery wierszy " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Zapisz układ kart" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Układ widoku Konsoli (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3615,7 +3801,7 @@ msgstr "" "Wystąpił błąd podczas zapisywania układu.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3625,13 +3811,13 @@ msgstr "" "Wystąpił błąd podczas wczytywania układu.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Wczytaj układ kart" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3730,28 +3916,40 @@ msgstr "&Domyślne kodowanie znaków:" msgid "Shortcut for peeking the primary screen:" msgstr "Skrót do podglądania głównego ekranu:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Ustaw okres samozapisywania:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Numery wierszy:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nigdy" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Po pojawieniu się wskazówki do adresu &URL" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3787,7 +3985,7 @@ msgstr "Zmień wybrany zestaw barw" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3841,12 +4039,18 @@ msgstr "Rysuj jaskrawe barwy pogrubioną czcionką" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Użyj wybranej czcionki dla znaków wiersza zamiast wbudowanego kodu" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Użyj znaków wiersza zawartych w czcionce" @@ -3966,29 +4170,45 @@ msgid "Make the cursor blink regularly" msgstr "Włącz regularne migotanie kursora" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Włączone" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Wyzwolenie:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Włącz regularne migotanie kursora" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Różne" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Okno:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3998,144 +4218,144 @@ msgstr "" "rozmiaru" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Pokaż wymiary terminala podczas zmieniania jego rozmiaru" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Zawsze odwracaj barwy zaznaczonego tekstu" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Siła przyciemnienia:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Barwa:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Wybierz barwę używaną do rysowania obramowania" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Nieużywane terminale:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Używane terminale:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Treści terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Odstęp między wierszami:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Liczba pikseli pomiędzy dwoma wierszami" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " piks." #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marginesy:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Wyrównaj do środka:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Wskaż czy okno jest przywołane, przygaszając barwy" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Przyciemnij" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Wskaż, czy okno jest używane, rysując wokół niego obramowanie" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Obramowanie" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Wyświetl pionową linię na kolumnie:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Złożony układ tekstu

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Złożony układ tekstu" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Włącz wyświetlanie tekstu w trybie słów" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Tryb słowa" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4145,43 +4365,43 @@ msgstr "" "właściwości łamią słowo podczas wyświetlania)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Użyj tych samych właściwości dla całego słowa" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Wyświetlaj słowa z zestawu znaków ASCII razem" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Znaki ASCII" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Wyświetlaj słowa z zestawu znaków Brahmicznych razem" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Znaki z zestawu Brahmicznego" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Czcionka Emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4191,13 +4411,13 @@ msgstr "" "perskiego i hebrajskiego)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Wyświetlanie dwukierunkowego tekstu" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4205,83 +4425,83 @@ msgstr "" "znak" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "wymuś kierunek wiersza LTR" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Traktuj znaki rysowane z tabeli jako silne od lewej-do-prawej." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Tryb zastępowania znaków z tabeli BiDi" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Pomiń wcwidth przy kłopotliwych znakach" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Zastąp wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Edycja profilu" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Ogólne" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Karty" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Wygląd" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Przewijanie" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klawiatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Skróty klawiszowe" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mysz" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Rozszerzone" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4292,31 +4512,31 @@ msgstr "" "Brak uprawnień do zapisania ustawień w: %1.Albo " "nadaj uprawnienia do pliku albo zapisz nowy profil po inną nazwą." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Nazwa profilu jest pusta; nadaj mu nazwę, aby móc zapisać ustawienia." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Profil o nazwie \"%1\" już istnieje." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Nazwa profilu przekroczyła dopuszczalną długość (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Podświetlone znaki są nieprawidłowe w nazwie profilu: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4324,17 +4544,24 @@ msgstr[0] "Edycja profilu: %2" msgstr[1] "Edycja %1 profilów: %2" msgstr[2] "Edycja %1 profilów: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Utwórz nowy profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Edycja profilu „%1”" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Nie pokazuj" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4345,7 +4572,7 @@ msgstr[0] " kolumna" msgstr[1] " kolumny" msgstr[2] " kolumn" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4356,42 +4583,42 @@ msgstr[0] " wiersz" msgstr[1] " wiersze" msgstr[2] " wierszy" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Dzwonek systemowy" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Powiadomienia systemowe" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Widzialny dzwonek" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Pomiń zdarzenia dzwonka" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Domyślny profil dla nowych posiedzeń terminala w %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Edycja środowiska" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Jedna zmienna środowiskowa na wiersz" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4400,23 +4627,23 @@ msgstr[0] " sekunda" msgstr[1] " sekundy" msgstr[2] " sekund" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Wybierz katalog początkowy" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Pobierz nowe..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Nie udało się wczytać wyglądu %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4425,7 +4652,7 @@ msgstr "" "Ten zestaw barw ma przezroczyste tło, które zapewne nie jest obsługiwane " "przez twój pulpit" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4434,12 +4661,12 @@ msgstr "" "Konsola została uruchomiona przed włączeniem efektów pulpitu. Musisz " "ponownie uruchomić Konsolę, aby przezroczyste tło wyświetlało się prawidłowo." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Domyślny dla rodzaju pliku" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4468,7 +4695,7 @@ msgstr "" "will be ignored and the file will be opened by the default text\n" "editor." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Własne polecenie edytora tekstowego" @@ -4556,26 +4783,54 @@ msgstr "Wybierz katalog początkowy" msgid "Start in same directory as current session" msgstr "Rozpocznij w katalogu bieżącego posiedzenia" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Rozpocznij w katalogu bieżącego posiedzenia" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Środowisko:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Edytuj zmienne środowiskowe i związane z nimi wartości" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Początkowy ro&zmiar terminala:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4588,31 +4843,31 @@ msgstr "" "span>, aby te wpisy zadziałały.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Tryb dzwonka terminala:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Obsługa semantyczna" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Naśladowanie strzałek góra/dół" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Klawisz myszy w wierszu wprowadzania przemieszcza kursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Wskazówki semantyczne:" @@ -4622,9 +4877,9 @@ msgstr "Wskazówki semantyczne:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4635,9 +4890,9 @@ msgstr "Nigdy" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4648,34 +4903,34 @@ msgstr "Przy pokazywaniu podpowiedzi adresów URL" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Zawsze" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Słupki czerwonego błędu:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Tło czerwonego błędu:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Naprzemienne paski:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Naprzemienne tło:" @@ -5037,116 +5292,128 @@ msgid "Scrollback:" msgstr "Przewijanie wstecz:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Przewinięcie strony w górę/dół:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Podświetl nowe wiersze" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Ukryty" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" +"Rozmiar każdego ze znacznika (jako procent długości paska przewijania):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Podświetlenie:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Przewiń stronę o połowę wysokości okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "&Połowa wysokości okna" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Kolor znaczników pasków przewijania:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Kolor linii podświetleń na pasku przewijania:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Ponownie ułóż wiersze:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Przewiń stronę o całą wysokość okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "P&ełna wysokość okna" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Położenie paska przewijania:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Pokaż pasek przewijania po prawej stronie okna terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "P&rawa strona" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Pokaż pasek przewijania po lewej stronie okna terminala" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Lewa strona" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Ukryty" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Podświetlenie:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Podświetl nowe wiersze" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Ponownie ułóż wiersze:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Ponownie ułóż wiersze po zmianie rozmiaru terminala" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Kolor znaczników pasków przewijania:" +msgid "Scrollbar position:" +msgstr "Położenie paska przewijania:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" -"Rozmiar każdego ze znacznika (jako procent długości paska przewijania):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Nieprzezroczystość linii podświetleń wyszukiwania:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5255,37 +5522,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Brak" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Znajdź..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Tutaj wpisz tekst do znalezienia" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Następne" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Znajdź następne wystąpienie obecnie szukanej frazy" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Poprzednie" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5293,77 +5560,77 @@ msgstr "Znajdź poprzednie wystąpienie obecnie szukanej frazy" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Wyświetl menu ustawień" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zamknij pasek wyszukiwania" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Rozróżniaj wielkość liter" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Określa, czy podczas wyszukiwania ma być uwzględniana wielkość liter" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Wyświetl menu ustawień" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zamknij pasek wyszukiwania" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Dopasuj do wyrażenia regularnego" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Podświetl wszystkie pasujące" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Określa, czy znaleziony tekst ma być zaznaczony" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Szukaj wstecz" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Określa, czy wyszukiwanie powinno zaczynać się od dołu" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Nie zaczynaj znowu od początku" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Określa, czy zatrzymać wyszukiwanie zamiast zacząć znowu od początku" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Szukaj bieżącego wyrażenia od dołu" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5374,7 +5641,7 @@ msgstr "Szukaj bieżącego wyrażenia od góry" msgid "Print Shell" msgstr "Wydrukuj powłokę" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5414,6 +5681,13 @@ msgstr "Zapis nazw zwykłych kart" msgid "Tab Co&lor:" msgstr "&Barwa karty:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "&Barwa karty:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5507,36 +5781,58 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Przywróć terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Otwórz nową kartę" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Poszukaj karty" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Zamknij tę kartę" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "O&dłącz kartę" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Ustawienia lub zmiana nazwy karty..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Zamknij kartę" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Właśnie użyto metod D-Bus sendText/runCommand. Istnieją obawy co do " +#~ "bezpieczeństwa przy zezwalaniu tym metodom na bycie publicznymi. Jeśli " +#~ "chcesz, to przeznaczenie tych metod może zostać zmienione tylko na " +#~ "wewnętrzny użytek poprzez rekompilację Konsoli.

              To ostrzeżenie " +#~ "zostanie wyświetlone tylko raz dla tego wystąpienia Konsoli.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Rozróżniaj wielkość liter" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Wyłączone" diff --git a/local/recipes/kde/konsole/source/po/pt/konsole.po b/local/recipes/kde/konsole/source/po/pt/konsole.po index d113365a98..4d35a1147d 100644 --- a/local/recipes/kde/konsole/source/po/pt/konsole.po +++ b/local/recipes/kde/konsole/source/po/pt/konsole.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2023-05-15 10:35+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -69,7 +69,7 @@ msgstr "Ver" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dividir a Área" @@ -105,7 +105,7 @@ msgid "S&crollback" msgstr "P&osicionamento" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra de Sessões" @@ -190,36 +190,52 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Esconde a barra do menu, substituindo a configuração por omissão" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Mostra a barra de páginas, substituindo a configuração por omissão" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Esconde a barra de páginas, substituindo a configuração por omissão" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Mostra a barra de páginas, substituindo a configuração por omissão" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Esconde a barra de páginas, substituindo a configuração por omissão" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Iniciar o Konsole em todo o ecrã" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Desactiva os fundos transparentes, mesmo que o sistema os suporte." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Listar os perfis disponíveis" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -227,13 +243,13 @@ msgstr "" "Apresentar todos os nomes das propriedades do perfil e o seu tipo (a usar " "com o -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Mudar o valor de uma propriedade do perfil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -243,7 +259,7 @@ msgstr "" "O comando a executar. Esta opção irá capturar todos os argumentos seguintes, " "por isso use-a como a última opção." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -253,13 +269,13 @@ msgstr "" "Forçar a reutilização da instância existente, mesmo que quebre " "funcionalidades, p.ex., --new-tab. Maioritariamente para depuração." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumentos passados ao comando" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -277,157 +293,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Principal" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fundo" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Cor 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Cor 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Cor 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Cor 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Cor 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Cor 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Cor 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Cor 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Texto (Intenso)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fundo (Intenso)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Cor 1 (Intensa)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Cor 2 (Intensa)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Cor 3 (Intensa)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Cor 4 (Intensa)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Cor 5 (Intensa)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Cor 6 (Intensa)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Cor 7 (Intensa)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Cor 8 (Intensa)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Texto (Leve)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fundo (Leve)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Cor 1 (Leve)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Cor 2 (Leve)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Cor 3 (Leve)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Cor 4 (Leve)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Cor 5 (Leve)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Cor 6 (Leve)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Cor 7 (Leve)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Cor 8 (Leve)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -684,6 +700,41 @@ msgstr "Topo" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Máquina: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Predefinição]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -729,7 +780,7 @@ msgstr "" msgid "Copy Location" msgstr "Copiar a Localização" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "A Gerar a Miniatura" @@ -760,13 +811,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Seleccionar o tipo de letra" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Mostrar todos os tipos de letra" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -807,17 +858,17 @@ msgstr "Combinação de Teclas" msgid "Output" msgstr "Resultado" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nova Lista de Combinações de Teclas" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Editar a Lista de Combinações de Teclas" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -826,7 +877,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -860,225 +911,225 @@ msgstr "Entrada:" msgid "Output:" msgstr "Saída:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulador de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022 dos Programadores do Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Manutenção geral, correcção de erros e melhoramentos gerais" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Manutenção anterior, versão para o KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autor original" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Remodelação geral, correcções de erros e melhoramentos gerais" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Correcção de erros e melhoramentos gerais" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Correcções de erros e melhoramentos gerais" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Melhoramentos gerais" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Correcções de erros" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Suporte para o Solaris e trabalho no histórico" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Correcções de erros e melhoria da performance do arranque" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Melhoramentos marcantes" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1088,13 +1139,13 @@ msgstr "" "Konsole Incorporado\n" "Barra de ferramentas e nomes de sessões" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,25 +1155,25 @@ msgstr "" "Konsole Incorporado\n" "Melhorias gerais" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efeitos visuais" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1132,132 +1183,132 @@ msgstr "" "Código do projecto kvt\n" "Melhorias gerais" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Melhorias nos esquemas e na selecção de texto" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Adaptação para o SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Conversão para o FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Obrigado a muitos outros.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nova Página" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Dupli&car a Página" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nova &Janela" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Fechar a Janela" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Fa&voritos" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Esquema de Cores da &Janela" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gerir os Perfis..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activar o Menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Gravar a Disposição de Páginas..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Carregar uma Disposição de Páginas..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1268,68 +1319,68 @@ msgstr[0] "" msgstr[1] "" "Tem %1 processos em execução nesta janela; tem a certeza que deseja sair?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmar o Fecho" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Fechar a &Janela" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Fechar a &Página Actual" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Existem %1 páginas abertas nesta janela; tem a certeza que deseja sair?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Perfis" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Geral" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barra de Páginas / Divisórias" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Ficheiros Temporários" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturas" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1413,7 +1464,7 @@ msgstr "Gravar" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualizar" @@ -1425,29 +1476,29 @@ msgid "Cancel" msgstr "Cancelar" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Comandos Rápidos" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Mostrar o Acesso Rápido" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Não foram encontrados comandos rápidos. Poderá adicionar um em 'Plugins' -> " "Comandos Rápidos" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "'Plugins' - Comandos Rápidos" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Mostrar os Comandos Rápidos" @@ -1490,7 +1541,7 @@ msgstr "" "que tem várias configurações; tem a certeza?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Está prestes a remover o %1; tem a certeza?" @@ -1543,11 +1594,11 @@ msgid "%1 is a folder for SSH entries" msgstr "A %1 é uma pasta de itens do SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configuração do SSH" @@ -1612,24 +1663,24 @@ msgstr "" "comandos (p.ex., bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Chave de SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Apagar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Não Modificar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1638,70 +1689,70 @@ msgstr "" "Está prestes a remover a pasta %1, que tem\n" "várias configurações de SSH; tem a certeza?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Remover as Configurações de SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Falta o Nome da Máquina" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Falta o Nome" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Se a opção Usar a Configuração do SSH estiver activa, não indicar a chave de " "SSH ou o utilizador." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Deve indicar pelo menos o Utilizador ou a Chave de SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Falta a Pasta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Uma sessão de SSH deverá ter um perfil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Não é possível remover esta pasta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Remover a pasta e todo o seu conteúdo" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Faça duplo-click para mudar o nome da pasta." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Não pode remover um item adicionado automaticamente." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Remover o item seleccionado" @@ -1893,25 +1944,25 @@ msgstr "Opções do Resultado" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Modo &amigável para impressoras (texto preto, sem fundo)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Aju&star a escala do resultado" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Perfil por omissão" @@ -1971,17 +2022,38 @@ msgstr "Duplo-click para mudar o atalho" msgid "Tab Properties" msgstr "Propriedades da Página" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Gravar o Resultado de %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "O %1 é um URL inválido, pelo que o resultado não pôde ser gravado." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2017,82 +2089,103 @@ msgstr "Brisa" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastéis Escuros" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verde em Preto" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Cores do Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Vermelho em Preto" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solar" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Luz Solar" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Branco em Preto" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Predefinido (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Consola do Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Consola do Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Procurar:" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Indique aqui o texto a procurar" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Campainha em '%1' (Sessão '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Não foi possível encontrar o binário: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Aviso: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" "Não foi possível encontrar uma linha de comandos interactiva para iniciar." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2101,202 +2194,205 @@ msgstr "" "Não foi possível encontrar o '%1'; a iniciar o '%2' em alternativa. " "Verifique por favor a configuração do seu perfil." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Não foi possível iniciar o programa '%1' com os argumentos '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silêncio em '%1' (Sessão '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Mostrar a sessão" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Os métodos de D-Bus 'sendText/runCommand' foram agora usados. Existem " -"questões de segurança em relação a permitir que estes métodos sejam " -"públicos. Se o desejar, estes métodos podem ser alterados para uso interno " -"apenas com a recompilação do Konsole.

              Este aviso só irá aparecer uma vez " -"para esta instância do Konsole.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Terminado" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "O programa '%1' estoirou." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "O programa '%1' terminou com o estado %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Evolução do ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Actividade em '%1' (Sessão '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "O processo '%1' terminou a sua execução na sessão '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "O Konsole não sabe como abrir o favorito: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Procurar por '%1' com" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configurar os Atalhos Web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Fe&char a Sessão" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Abrir o Gestor de Ficheiros" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copiar" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dividir a Área em Esquerda-Direita" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dividir a Área em Cima-Baixo" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copiar excepto as linhas de comando" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copiar os dados do utilizador" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copiar o resultado do comando" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Colar a Localização" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Pesquisa na Web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Seleccionar Tudo" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&Modo de Selecção" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Seleccionar a &Linha" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Gu&ardar o Resultado Como..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Gu&ardar o Resultado Como..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Im&primir o Ecrã..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Ajustar o Posicionamento..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Limpar o Posicionamento" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Limpar o Posicionamento e Reiniciar" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Editar o Perfil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Anterior" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Mudar de Perfil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Escolher a Codificação" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, fuzzy, kde-format #| msgctxt "" #| "@item:inmenu Allows terminal applications to request mouse tracking" @@ -2305,7 +2401,7 @@ msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permitir o seguimento do rato" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, fuzzy, kde-format #| msgctxt "@item:inmenu A read only (locked) session" #| msgid "Read-only" @@ -2313,141 +2409,141 @@ msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Apenas para leitura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configurar ou Mudar o Nome da Página..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Tod&as as Páginas da Janela Actual" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Selecciona&r as Páginas..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nenhuma" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copiar os Dados de Entrada Para" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Enviar por &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, fuzzy, kde-format #| msgid "One-shot monitors" msgid "One-Shot Monitors" msgstr "Monitores de ocorrência única" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Monitor da &Linha de Comandos" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitor de &Actividade" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitor de &Inactividade" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitor de Fim do Processo" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Aumentar o Tipo de Letra" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Diminuir o Tipo de Letra" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Repor o Tamanho da Letra" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Enviar um Sinal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspender a Tarefa" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Prosseguir a Tarefa" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Interromper" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interromper a Tarefa" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminar a Tarefa" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Matar a Tarefa" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Sinal do Utilizador &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Sinal do Utilizador &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Criar um Novo Perfil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Editar o Perfil Actual..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Tem várias páginas nesta sessão; tem a certeza que a deseja encerrar?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2456,18 +2552,18 @@ msgstr "" "O programa '%1' está actualmente em execução nesta sessão. Tem a certeza que " "o deseja fechar?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmar o Fecho" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Fechar o Programa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2475,36 +2571,39 @@ msgid "" msgstr "" "Um programa desta sessão não iria fechar. Deseja interrompê-lo à força?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "O programa '%1' desta sessão não iria fechar. Deseja interrompê-lo à força?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Matar o Programa" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "A linha de comandos está visível na sessão '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Abrir a Pasta Actual Com" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Gravar a Transferência por ZModem em..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2515,7 +2614,7 @@ msgstr "" "não foi encontrada nenhuma aplicação adequada de ZModem neste sistema.

              Poderá querer instalar o pacote 'rzsz' ou 'lrzsz'.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " @@ -2523,7 +2622,7 @@ msgstr "" "

              A sessão actual já tem uma transferência de ficheiros por ZModem em curso." "

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2532,7 +2631,7 @@ msgstr "" "

              Não foi encontrada nenhuma aplicação adequada de ZModem neste sistema.

              Poderá querer instalar o pacote 'rzsz' ou 'lrzsz'.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Seleccionar os Ficheiros para o Envio por ZModem" @@ -2555,145 +2654,172 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configurar" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Procurar:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Activar os aceleradores do menu" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Se estiver activo, a configuração do perfil será ignorada" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Recordar o tamanho da janela" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Mostrar o título da janela na barra de título" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Colocar os terminais em primeiro plano à passagem do cursor sobre eles" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Corresponder a uma expressão regular" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Ao lançar o Konsole, reutilizar o processo existente se possível" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Executar todas as janelas do Konsole num único processo" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Realçar todas as ocorrências" +msgid "If enabled, profile settings will be ignored" +msgstr "Se estiver activo, a configuração do perfil será ignorada" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Define se a pesquisa faz distinção entre maiúsculas e minúsculas" +msgid "Remember window size" +msgstr "Recordar o tamanho da janela" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Distinguir capitalização" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Colocar as páginas novas:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Remover a barra de título e moldura da janela" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Processo e janela:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notificações:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Todas as janelas serão apresentadas de novo" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Activar todas as mensagens \"Não Perguntar de Novo\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Define se a pesquisa deve começar a partir do fundo" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Procurar para trás" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Define se a pesquisa faz distinção entre maiúsculas e minúsculas" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Distinguir capitalização" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Processo e janela:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Realçar todas as ocorrências" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Procurar:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Define se a pesquisa deve começar a partir do fundo" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Activar os aceleradores do menu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Colocar os terminais em primeiro plano à passagem do cursor sobre eles" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Todas as janelas serão apresentadas de novo" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Activar todas as mensagens \"Não Perguntar de Novo\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Mostrar o título da janela na barra de título" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Remover a barra de título e moldura da janela" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Corresponder a uma expressão regular" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2722,71 +2848,110 @@ msgstr "Usar o tamanho da janela actual no próximo arranque" msgid "The window size will be saved upon exiting Konsole" msgstr "O tamanho da janela será gravado ao sair do Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Ao lançar o Konsole, reutilizar o processo existente se possível" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Largura da Miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Configura a largura da miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Use o Shift para mostrar uma miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Use o Alt para mostrar uma miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Use o Ctrl para mostrar uma miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "A pesquisa faz distinção de capitalização" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Realçar todas as correspondências da pesquisa" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Define se o texto correspondente deverá ficar realçado" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2794,80 +2959,87 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controlar a visibilidade da barra de páginas inteira" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controlar o tamanho da pega entre painéis" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controlar a posição da barra de páginas" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controlar o estilo visual da barra de páginas" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Usar um ficheiro .css definido pelo utilizador para a barra de páginas" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "O ficheiro '.css' a usar para o estilo da barra de páginas" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permitir o botão do meio sobre as páginas abertas para as fechar" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Controlar a visibilidade do botão 'Nova Página' da barra de páginas" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Controlar a visibilidade do botão 'Nova Página' da barra de páginas" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controlar onde deve ser apresentado o botão \"Fechar a página\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controlar onde colocar a nova página" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Expandir a largura das páginas" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" "Para os ficheiros de posicionamento, usar a localização das pastas do sistema" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2875,14 +3047,14 @@ msgstr "" "específica pelo utilizador" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" "Para os ficheiros de posicionamento, usar a localização da pasta indicada" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Para os ficheiros de posicionamento, usar esta pasta" @@ -2895,26 +3067,24 @@ msgid "Enable memory monitoring:" msgstr "Monitorização das Páginas" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3079,125 +3249,148 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nenhum" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "Show Close Tab button:" +msgid "Show Search Tabs button:" +msgstr "Mostrar o botão para 'Fechar a Página':" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +#| msgctxt "@option:radio Never show the split header" +#| msgid "Never" +msgid "Never" +msgstr "Nunca" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diversos:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Mostrar o botão de 'Nova Página'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Expandir as larguras das páginas individuais a toda a janela" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Usar uma 'stylesheet' definida pelo utilizador:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(nenhum)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportamento" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Colocar as páginas novas:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "No &fim" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Após a página act&ual" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Fechar a página com o botão do meio" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Divisórias" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Mostrar o Cabeçalho:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Quando necessário" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nunca" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Tamanho da Pega de Arrastamento:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Pequena" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Média" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grande" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3246,11 +3439,15 @@ msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Lembre-se: " "Para usar esta funcionalidade, activar os

              Complex Text Layout

              " msgstr "

              Disposição de Texto Complexa

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Disposição de Texto Complexa" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Activar o desenho de texto do modo da palavra" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Modo da palavra" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4205,43 +4455,43 @@ msgstr "" "mudanças de atributos irão quebrar a palavra durante o desenho)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Usar os mesmos atributos para a palavra inteira" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Desenhar as palavras dos caracteres ASCII em conjunto" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caracteres ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Desenhar as palavras dos caracteres brâmicos em conjunto" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Caracteres de escrita brâmica" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Tipo de letra dos Emojis:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4251,13 +4501,13 @@ msgstr "" "Árabe, o Farsi ou o Hebraico)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Representação de texto bidireccional" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4265,83 +4515,83 @@ msgstr "" "forte" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "forçar a direcção de linhas LTR" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tratar os caracteres de desenho da tabela como LTR forte." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Substituição do modo BiDi dos caracteres das tabelas" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorar o 'wcwidth' dos caracteres problemáticos" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Substituir o 'wcwidth'" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Editar o Perfil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Geral" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Páginas" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aparência" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Posicionamento" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Teclado" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Teclas" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Rato" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avançado" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4353,7 +4603,7 @@ msgstr "" "Pode modificar as permissões do ficheiro de configuração do perfil ou " "mudar o nome do perfil para gravar a configuração num novo perfil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4361,42 +4611,49 @@ msgstr "" "O Nome do Perfil estava vazio; por favor, defina um nome para poder gravar a " "configuração." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Já existe um perfil com o nome \"%1\"." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "A editar o perfil: %2" msgstr[1] "A editar os %1 perfis: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Criar um Novo Perfil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Editar o Perfil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Nenhum" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4406,7 +4663,7 @@ msgid_plural " columns" msgstr[0] " coluna" msgstr[1] " colunas" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4416,42 +4673,42 @@ msgid_plural " rows" msgstr[0] " linha" msgstr[1] " linhas" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Campainha do Sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificações do Sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Campainha Visível" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorar os Eventos da Campainha" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Perfil predefinido para as sessões de terminal novas em %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Editar o Ambiente" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Uma variável de ambiente por linha" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4459,25 +4716,25 @@ msgid_plural " seconds" msgstr[0] " segundo" msgstr[1] " segundos" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Seleccionar a Pasta Inicial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Novo..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Não foi possível carregar o esquema %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4486,7 +4743,7 @@ msgstr "" "Este esquema de cores tem um fundo transparente que não parece ser suportado " "no seu ambiente" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4495,13 +4752,13 @@ msgstr "" "O Konsole foi iniciado antes de activar os efeitos do ecrã. Terá de " "reiniciar o Konsole para ver o fundo transparente." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Perfil por omissão" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4529,7 +4786,7 @@ msgstr "" "Se o PATH ou o LINE não estiverem presentes no comando, esta opção\n" "será ignorada e o ficheiro será aberto pelo editor de texto predefinido." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Comando Personalizado do Editor de Texto" @@ -4621,27 +4878,55 @@ msgstr "Escolher a pasta inicial" msgid "Start in same directory as current session" msgstr "Iniciar na mesma pasta da sessão actual" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Iniciar na mesma pasta da sessão actual" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ambiente:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Edite a lista de variáveis de ambiente e os seus valores associados" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" msgstr "Tamanho do terminal inicial:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4655,32 +4940,32 @@ msgstr "" "p>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal bell mode:" msgid "&Terminal bell mode:" msgstr "Modo da campainha do terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Integração Semântica" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulação dos cursores para Cima/Baixo" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "O botão do rato num campo do texto move o cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Sugestões semânticas:" @@ -4690,9 +4975,9 @@ msgstr "Sugestões semânticas:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4703,9 +4988,9 @@ msgstr "Nunca" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4716,34 +5001,34 @@ msgstr "No caso de sugestões de URL's mostrar" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barras de erro a vermelho:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Fundo de erro a vermelho:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barras alternadas:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Fundo alternado:" @@ -5115,51 +5400,94 @@ msgid "Scrollback:" msgstr "Histórico:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Deslocamento do Page Up/Down:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Realçar as linhas que aparecem na janela" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Escondida" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Realce:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Deslocar a página em metade da altura da janela" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half screen height" msgid "Half screen heigh&t" msgstr "Metade da altura do ecrã" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Realinhar as Linhas:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Deslocar a página em toda a altura da janela" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full screen height" msgid "F&ull screen height" msgstr "Total da altura do ecrã" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Posição da barra de deslocamento:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Mostra a barra de posicionamento do lado direito da janela de terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the right side" #| msgid "Right side" @@ -5168,14 +5496,14 @@ msgid "Ri&ght side" msgstr "Lado direito" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" "Mostra a barra de posicionamento do lado esquerdo da janela de terminal" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgctxt "@option:radio Show scrollbar on the left side" #| msgid "Left side" @@ -5183,53 +5511,22 @@ msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Lado esquerdo" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Escondida" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Realce:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Realçar as linhas que aparecem na janela" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Realinhar as Linhas:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Reajustar as linhas quando o terminal é dimensionado" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Posição da barra de deslocamento:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5342,116 +5639,117 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nenhuma" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Procurar..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Indique aqui o texto a procurar" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Seguinte" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Procura a ocorrência seguinte da pesquisa actual" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Anterior" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Procura a ocorrência anterior da pesquisa actual" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Mostrar o menu de opções" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Fechar a barra de procura" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Distinguir capitalização" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Define se a pesquisa faz distinção entre maiúsculas e minúsculas" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Mostrar o menu de opções" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Fechar a barra de procura" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Corresponder a uma expressão regular" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Realçar todas as correspondências" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Define se o texto correspondente deverá ficar realçado" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Procurar para trás" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Define se a pesquisa deve começar a partir do fundo" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Define se a pesquisa deve começar a partir do fundo" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Procura pela ocorrência seguinte da pesquisa actual a partir do fundo" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5462,7 +5760,7 @@ msgstr "Procura pela ocorrência seguinte da pesquisa actual a partir do topo" msgid "Print Shell" msgstr "Imprimir a Linha de Comandos" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5504,6 +5802,13 @@ msgstr "Formato do título da página normal" msgid "Tab Co&lor:" msgstr "Cor da Página:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Color:" +msgid "&Activity Tab Color:" +msgstr "Cor da Página:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5597,36 +5902,60 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Repor o terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Abrir uma página nova" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Dissociar a Página" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Fechar esta página" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Dissociar a Página" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configurar ou Mudar o Nome da Página..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Fechar a Página" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Os métodos de D-Bus 'sendText/runCommand' foram agora usados. Existem " +#~ "questões de segurança em relação a permitir que estes métodos sejam " +#~ "públicos. Se o desejar, estes métodos podem ser alterados para uso " +#~ "interno apenas com a recompilação do Konsole.

              Este aviso só irá " +#~ "aparecer uma vez para esta instância do Konsole.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Distinguir capitalização" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Nenhum" diff --git a/local/recipes/kde/konsole/source/po/pt_BR/docs/konsole/index.docbook b/local/recipes/kde/konsole/source/po/pt_BR/docs/konsole/index.docbook index 24afe922d7..4b935d128c 100644 --- a/local/recipes/kde/konsole/source/po/pt_BR/docs/konsole/index.docbook +++ b/local/recipes/kde/konsole/source/po/pt_BR/docs/konsole/index.docbook @@ -100,7 +100,11 @@ >20172018 +>201820202021 &Kurt.Hindenburg; @@ -116,9 +120,9 @@ >&FDLNotice; 16/06/2019 +>23/04/2024 Applications 19.08 +>KDE Gear 24.05 + +Modo de seleção +O &konsole; possui um modo de seleção por teclado. Nesse modo, é possível navegar pela barra de rolagem e selecionar texto sem usar o mouse. + +Entre e saia deste modo usando o atalho de teclado (&Ctrl;&Shift;D por padrão). + +Esc também sai do modo de seleção de teclado. + +Movendo o cursor: Setas, PageUp, PageDown, Home, End. + +Movendo o cursor no estilo vi: h,j,k,l, para mover um caractere, Ctrl+b,f,u,d para página para cima/para baixo ou meia página para cima/para baixo. + +Selecionar texto usando Ctrl ou Shift com as setas, ou usando V para iniciar a seleção, movendo o cursor e, em seguida, V novamente para finalizar a seleção. &Shift;V seleciona linhas inteiras, em vez de caracteres. + + + + Perfis @@ -291,17 +349,6 @@ -Os perfis que tenham a opção Mostrar no menu assinalada, terão seus nomes listados no menu ArquivoNova aba. Não haverá nenhum submenu se apenas o perfil padrão estiver com a opção assinalada. - @@ -581,6 +628,213 @@ + +Integração com a semântica do shell + +Um programa shell em execução no Konsole pode emitir sequências de escape que divide o texto exibido em três tipos: prompt do shell, entrada do usuário e saída do comando. O uso dessas informações semânticas permite vários aprimoramentos no Konsole. +&Ctrl;&Shift;PgUp e &Ctrl;&Shift;PgDown rola para cima/baixo para o prompt de comando anterior/seguinte. +Dicas visuais: + +Uma linha é exibida acima de cada prompt, as cores do prompt são menos intensas e as cores da saída são mais intensas. +Uma barra vermelha é exibida à esquerda das linhas de entrada e saída dos comandos que resultaram em erro +Um fundo vermelho para as linhas de entrada e saída de comandos que resultaram em erro +Uma barra cinza é exibida à esquerda das linhas de entrada e saída de cada outro comando +Um fundo cinza para as linhas de entrada e saída de todos os outros comandos + +Cada um deles pode ser configurado para nunca aparecer, sempre aparecer ou apenas quando as dicas de URL forem exibidas. A configuração está na aba Integração semântica da página Geral da janela de configuração do perfil. + +As opções do menu de contexto Copiar entrada do usuário, Copiar saída do comando e Copiar exceto prompt podem ser usadas para filtrar a seleção quando ela for copiada para a área de transferência. +Quando a seleção está vazia, a ação copiar para a área de transferência copia a entrada atual. Se não estiver vazia, copia a última saída se não houver entrada atual. +Ao pressionar as setas para cima/para baixo durante a edição de um texto longo, o cursor será posicionado uma linha acima/abaixo, enviando o número apropriado de eventos de tecla para a esquerda/direita para o shell. Isso é configurável nas configurações do perfil. +Clicar com o mouse na entrada de texto posicionará o cursor no local clicado. Configurável nas configurações do perfil. +Pressionar a tecla &Ctrl; enquanto clica três vezes com o mouse na saída de um comando, seleciona toda a saída desse comando. + + + +A integração semântica do shell precisa ser configurada no shell. Pressionar &Ctrl;&Alt;] irá colar os comandos necessários no bash. Para outros shells, como fish, zsh, python, etc., consulte a documentação do programa correspondente. + + + + + +Layout de texto complexo + +Na aba Layout de texto complexo da página Aparência na caixa de diálogo Editar perfil, você encontrará opções que controlam a renderização do texto. + + + +Modo de palavra - neste modo, (algumas) strings são exibidas na tela como um todo, em vez de um caractere por vez. Isso permite que o Qt renderize o texto corretamente quando a forma de um caractere depende dos caracteres anteriores ou posteriores a ele. Isso pode resultar em posicionamento incorreto de alguns caracteres. Os espaços sempre quebram as sequências, garantindo que os caracteres estejam sempre nas posições corretas. Isso assegura que os caracteres nunca estejam muito longe de sua posição correta. + +Usar os mesmos atributos para cada palavra inteira - Quando esta opção está ativada, as palavras são renderizadas com os mesmos atributos (cor do texto, negrito, itálico, etc.). Se um atributo for alterado no meio de uma palavra, a alteração só terá efeito após o término da palavra. Quando esta opção está desativada, uma nova palavra começa quando os atributos são alterados. Isso resulta em caracteres que mudam de forma e posição ao mover o cursor ou selecionar o texto. + +Caracteres ASCII - Agrupa caracteres ASCII em palavras conforme descrito acima. O efeito mais notável desta opção é que habilitá-la mostra ligaduras de programação (para fontes que as suportam). Por exemplo, a string <= pode ser exibida como ⩽. + +Caracteres de escrita brâhmica - Agrupar caracteres brâhmicos conforme descrito acima. Sem esta opção (dependendo da fonte), algumas palavras podem não ser conectadas corretamente. Com esta opção ativada, os caracteres brâhmicos podem aparecer fora de posição. Por exemplo, o terceiro caractere da segunda linha pode não aparecer diretamente abaixo do terceiro caractere da primeira linha. + +Fonte de emoji: - Isso permite especificar a fonte a ser usada para os caracteres Emoji Unicode. Se não for definida, a fonte padrão do perfil será usada, ou alguma fonte alternativa poderá ser usada pelo sistema caso os glifos estejam ausentes. + +Renderização de texto bidirecional - Reordena caracteres da direita para a esquerda para que os textos em árabe e hebraico apareçam corretamente. + +Forçar direção da linha LTR - As linhas são sempre da esquerda para a direita. Sem isso, a direção de cada linha é determinada pelo primeiro caractere com forte direcionalidade. + +Substituição do modo BiDi para caracteres de tabela - Considerar caracteres gráficos de tabela como caracteres LTR fortes. Isso permite que tabelas contendo caracteres RTL sejam exibidas corretamente, mas pode causar ordem incorreta se esses caracteres forem usados ​​em textos RTL. + +Substituir wcwidth - Os caracteres problemáticos seguem o padrão Unicode, em vez do wcwidth() da glibc. Atualmente, apenas o hífen suave (Unicode 0x00AD), que tem wcwidth de 1 e largura Unicode de 0, é afetado por esta opção. Geralmente, esta opção deve ser desativada quando esses caracteres forem usados ​​principalmente na linha de comando e ativada quando forem apenas exibidos. + + + + + + +Dicas visuais +Além das várias dicas visuais descritas em , o &konsole; possui outras dicas visuais: + + +Uma linha vertical na coluna 80 (ou outra). Isso é configurado na aba Diversos da página Aparência na caixa de diálogo Editar perfil. + +Os números de linha podem ser exibidos como uma sobreposição ao texto do terminal. Os números de linha aparecem em vermelho na extremidade direita de cada linha. As linhas são numeradas consecutivamente a partir da primeira (superior) linha na lista de rolagem. A exibição dos números de linha pode ser configurada na página Avançado na caixa de diálogo Editar perfil. A alternância entre os três modos de exibição também pode ser feita por um atalho de teclado. O atalho padrão é &Ctrl;&Alt;\ + + + @@ -652,7 +906,7 @@ >Abre uma nova aba com o perfil padrão O &konsole; vem com um perfil padrão. Todos os perfis adicionados pelo usuário serão listados em um submenu. Não aparecerá nenhum submenu se existir apenas o perfil padrão. O primeiro perfil no submenu será sempre "Padrão", que é o perfil integrado. Todos os outros perfis serão listados abaixo em ordem alfabética. O perfil padrão especificado pelo usuário estará em negrito. Arquivo Fechar abaFechar sessão Fecha a aba atual +>Fecha a sessão atual @@ -787,18 +1041,9 @@ > O &konsole; apresentará uma caixa de diálogo de confirmação, caso exista mais de uma aba aberta. Essa caixa de diálogo poderá ser desativada se marcar a opção O &konsole; exibirá uma caixa de diálogo de confirmação se houver mais de uma sessão aberta ou se determinados programas estiverem em execução em alguma sessão. Essas caixas de diálogo podem ser desativadas clicando na caixa de seleção Não perguntar novamente. -Se quiser que a caixa de diálogo de confirmação apareça novamente, remova o item [Notification Messages] -CloseAllTabs=true em $XDG_CONFIG_HOME/konsolerc. @@ -1055,14 +1300,14 @@ CloseAllTabs=true EditarRenomear aba...Configurar aba... Abre uma caixa de diálogo que permite renomear a aba atual (Abre uma caixa de diálogo que permite alterar o formato do nome, o formato do título da aba remota e a cor da aba atual (mais informações) @@ -1250,56 +1495,6 @@ Various search improvements > - -&Ctrl;&Shift;X ExibirDividir a exibiçãoFechar a ativa - -Fecha a exibição ativa - - - - -&Ctrl;&Shift;O ExibirDividir a exibiçãoFechar as outras - -Fecha todas as exibições, menos a atual - - - + +&Ctrl;&Shift;E ExibirExibição divididaAlternar maximizar exibição atual + +Alterna a visualização atual entre o tamanho atual e o tamanho máximo + + + + +&Ctrl;&Shift;\ ExibirExibição dividaTamanho igual para todas as abas + +Define o mesmo tamanho para todas as visualizações + + + +Exibir Salvar layout da aba para arquivo + +Permite salvar o layout de abas da visualização atual em um arquivo de layout especializado do &konsole;, que pode ser carregado para restaurar um de seus layouts favoritos. + + + + +Exibir Carregar layout de aba do arquivo + +Permite carregar um dos seus layouts de visualização favoritos a partir do arquivo de layout que foi salvo usando o item de menu ExibirSalvar layout da aba para arquivo anteriormente. Os layouts padrão (2x2, 2x1 e 1x2) podem ser carregados pela barra de ferramentas. + + + +Exibir Monitores únicos +Os seguintes monitores notificam apenas uma vez e depois são desativados. + + + + +&Ctrl;&Shift;R ExibirMonitor para prompt +Ativa ou desativa o monitoramento da aba atual para um prompt do shell. +Quando um prompt do shell é exibido, o &konsole; mostrará uma notificação. Esta opção é exibida somente quando a integração semântica está habilitada no shell. + + + +Exibir Monitor para conclusão de processo +Ativa ou desativa o monitoramento da aba atual pelo fim do processo. Se marcada, ao terminar o processo atual, o &konsole; exibirá uma notificação O processo 'nome do processo' terminou de ser executado na sessão 'nome da sessão'. + + + +F11 ExibirModo de tela cheia +Ativa ou desativa a utilização da tela cheia pelo &konsole; + + @@ -1716,6 +2088,16 @@ Various search improvements + +Menu Plugins + +Os plugins instalados serão listados ou aparecerá a mensagem "Nenhum plugin disponível" + + + + Menu Configurações @@ -1772,6 +2154,23 @@ Various search improvements + +ConfiguraçõesEsquema de cores da janela +Alterar a &GUI; do &konsole; para o esquema especificado + + + + F11 ConfiguraçõesModo de tela inteiraBarras de ferramentas visíveis Ativa ou desativa a utilização da tela inteira pelo &konsole;Permite ativar/desativar a visibilidade das barras de ferramentas do &konsole; + + + + +ConfiguraçõesMostrar barra de status +Ativa ou desativa a visibilidade da barra de status @@ -1822,7 +2234,24 @@ Various search improvements >ConfiguraçõesConfigurar atalhos...Configurar idioma... +Abre uma janela para escolher uma tradução da interface do &konsole;. + + + + + +ConfiguraçõesConfigurar atalhos do teclado... &Ctrl;&Shift;&Ctrl;&Alt;Seta à esquerda @@ -1880,7 +2309,7 @@ Various search improvements &Ctrl;&Shift;&Ctrl;&Alt;Seta à direita @@ -1897,15 +2326,6 @@ Various search improvements Colar a seleção - -&Shift; -Próximo contêiner de exibição - @@ -1913,6 +2333,25 @@ Various search improvements + +ConfiguraçõesConfigurar barras de ferramentas... +Abre a janela de configuração da barra de ferramentas + + + Abre o editor de configurações do &konsole; Esta caixa de diálogo tem opções que influenciam a aparência e o comportamento da Barra de abas e opções gerais da janela do &konsole;. - +>Esta caixa de diálogo possui opções que influenciam a aparência e o comportamento da janela do &konsole;. + + + A página Geral permite configurar a visibilidade da barra de menus, memorizar o tamanho da janela do &konsole;, executar todas as janelas do &konsole; em um único processo, ativar atalhos de menu, exibir o título da janela na barra de título, remover a barra de título e a moldura da janela e focar os terminais quando o ponteiro do mouse for movido sobre eles. Também é possível configurar a diferenciação entre maiúsculas e minúsculas na pesquisa, o uso de expressões regulares, destacar todas as correspondências e a direção da pesquisa (Pesquisar para trás é o padrão). A página Geral também é o local onde você pode Reativar todas as mensagens "Não perguntar novamente" caso elas tenham sido desativadas anteriormente. + + + A página Perfis destina-se à criação e gestão de perfis. + + + Na página Barra de abas/Divisores, você pode configurar a visibilidade e o posicionamento da barra de abas, definir o comportamento das abas e ajustar as opções dos botões das abas. É possível configurar se você deseja Mostrar o botão 'Nova aba' e Expandir a largura das abas individuais para toda a janela ou configurar o Uso de uma folha de estilo definida pelo usuário. A aba Comportamento pode ser usada para definir o local das novas abas (No final ou Após a aba atual) e o fechamento das abas com um clique do &MMB;. + Também é possível configurar a visibilidade dos cabeçalhos divididos (Quando necessário (padrão), Sempre ou Nunca) e definir o tamanho da alça de arrastar para as divisões (Pequeno (padrão), Médio ou Grande) usando a aba Divisões desta página de configuração. + + + A página Arquivos temporários é usada para definir a localização do arquivo scrollback. + + + A página Miniaturas pode ser usada para definir o tamanho da miniatura e as opções de ativação (você pode escolher a tecla de controle de ativação entre &Shift;, &Alt; e &Ctrl;). + + Para usar o recurso de miniaturas que exibe miniaturas de imagens em janelas pop-up ao passar o cursor do mouse sobre os itens de imagem, você deve ativar o sublinhado de arquivos para o seu perfil atual: ConfiguraçõesEditar perfil atual...MouseDiversosSublinhar arquivos. + + + + @@ -1977,16 +2495,16 @@ When the window title from current session is emtpy, fallback to using Caixas de diálogo do &konsole; - + Janela de renomeação de aba +>Janela para configurar aba O nome da aba atual poderá ser alterado a partir desta caixa de diálogo, que poderá ser exibida através do menu, usando o atalho O formato do nome, o formato do título da aba remota e a cor da aba atual podem ser alterados nesta janela, que poderá ser exibida através do menu, usando o atalho &Ctrl;&Alt; S ou com um clique duplo na aba. Essas alterações poderão se tornar permanentes se editar o perfil atual. +> ou com um clique duplo na aba. Essas alterações são temporárias e poderão se tornar permanentes se editar o perfil atual. O &konsole; irá substituir estes itens para as abas locais: @@ -2163,18 +2681,31 @@ When the window title from current session is emtpy, fallback to using --layout arquivo Usa o perfil interno ALTERNATIVO. Esta opção é um atalho para ALTERNATIVO/Inicia o &konsole; usando um arquivo de layout &JSON; salvo. + + +Usa o perfil integrado em vez do perfil padrão atual. + + @@ -2463,7 +2994,7 @@ When the window title from current session is emtpy, fallback to using O &konsole; também aceita as opções genéricas do &Qt; e do &kf5-full; - veja as páginas de manual para qt5options e kf5options. +>O &konsole; também aceita as opções genéricas do &Qt; e do &kf6-full;. Veja as páginas de manual para qt6options e kf6options. @@ -2948,7 +3479,7 @@ Space+Ctrl Consulte a base de dados do Consulte o banco de dados do terminfo ou termcap É provável que o seu sistema tenha outras bases de dados de teclado que devem estar igualmente sincronizadas (⪚, É provável que o seu sistema tenha outros bancos de dados de teclado que devem estar igualmente sincronizadas (⪚, /etc/inputrc e readline para a linha de comando BASHPágina Web do &konsole; no &kde; UserBaseSite do &konsole; no &kde; UserBase  Página Web do &konsole;Site do &konsole; , 2002, 2003. # Henrique Pinto , 2003. # Lisiane Sztoltz Teixeira , 2004. -# Marcus Gama , 2004. +# SPDX-FileCopyrightText: 2004, 2025, 2026 Marcus Gama # Lisiane Sztoltz Teixeira , 2005. # doutor.zero , 2007. # Diniz Bortolotto , 2007, 2008. @@ -15,35 +15,36 @@ # Aracele Torres , 2017. # Camila Moura , 2017. # Thiago Masato Costa Sueto , 2021. -# SPDX-FileCopyrightText: 2024 Geraldo Simiao +# SPDX-FileCopyrightText: 2024, 2025 Geraldo Simiao +# SPDX-FileCopyrightText: 2025 Guilherme Marçal Silva msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-06 11:08-0300\n" -"Last-Translator: Geraldo Simiao \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-20 09:09-0300\n" +"Last-Translator: Marcus Gama \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 25.12.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "" "Diniz Bortolotto, André Marcelo Alvarenga, Luiz Fernando Ranghetti, Geraldo " -"Simião" +"Simião, Guilherme Marçal Silva" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" "diniz.bortolotto@gmail.com, alvarenga@kde.org, elchevive@opensuse.org, " -"geraldosimiao@fedoraproject.org" +"geraldosimiao@fedoraproject.org, guimarcalsilva@gmail.com" #. i18n: ectx: Menu (file) #: ../desktop/konsoleui.rc:6 @@ -67,7 +68,7 @@ msgstr "Exibir" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dividir a exibição" @@ -103,7 +104,7 @@ msgid "S&crollback" msgstr "Históri&co" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Barra de ferramentas de sessão" @@ -188,34 +189,48 @@ msgstr "Ocultar a barra de menu, sobrepondo-se à configuração padrão" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "" +"Mostrar todas as barras de ferramentas, sobrepondo-se à configuração padrão" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "" +"Ocultar todas as barras de ferramentas, sobrepondo-se à configuração padrão" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Mostrar a barra de abas, sobrepondo-se à configuração padrão" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Ocultar a barra de abas, sobrepondo-se à configuração padrão" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" -msgstr "Iniciar o Konsole no modo de tela inteira" +msgstr "Iniciar o Konsole no modo de tela cheia" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Desabilitar fundos transparentes mesmo se existir suporte no sistema." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Listar os perfis disponíveis" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -223,13 +238,13 @@ msgstr "" "Listar todos os nomes das propriedades do perfil e o seu tipo (para uso com " "o -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Modificar o valor de uma propriedade do perfil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -239,7 +254,7 @@ msgstr "" "O comando a ser executado. Esta opção irá capturar todos os argumentos " "seguintes, por isso use-a como última opção." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -249,13 +264,13 @@ msgstr "" "Forçar reuso da instância existente mesmo que ele quebre a funcionalidade, " "por exemplo --new-tab. Principalmente para depuração." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumentos passados para o comando" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -273,157 +288,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Cor do texto" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Plano de fundo" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Cor 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Cor 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Cor 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Cor 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Cor 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Cor 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Cor 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Cor 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Cor do texto (Intensa)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Plano de fundo (Intensa)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Cor 1 (Intensa)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Cor 2 (Intensa)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Cor 3 (Intensa)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Cor 4 (Intensa)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Cor 5 (Intensa)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Cor 6 (Intensa)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Cor 7 (Intensa)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Cor 8 (Intensa)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Primeiro plano (Fraca)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Plano de fundo (Fraca)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Cor 1 (Fraca)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Cor 2 (Fraca)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Cor 3 (Fraca)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Cor 4 (Fraca)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Cor 5 (Fraca)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Cor 6 (Fraca)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Cor 7 (Fraca)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Cor 8 (Fraca)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -679,6 +694,40 @@ msgstr "Superior" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Máquina" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"O suporte a contêineres não está disponível quando o Konsole está sendo " +"executado dentro do Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [padrão]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -724,7 +773,7 @@ msgstr "" msgid "Copy Location" msgstr "Copiar localização" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Gerando miniaturas" @@ -755,13 +804,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Selecionar fonte" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Mostrar todas as fontes" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -802,17 +851,17 @@ msgstr "Combinação de teclas" msgid "Output" msgstr "Saída" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nova lista de atalhos de teclado" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Editar lista de atalhos de teclado" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -821,7 +870,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -855,225 +904,225 @@ msgstr "Entrada:" msgid "Output:" msgstr "Saída:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulador de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Os desenvolvedores do Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Mantenedor geral, correção de erros e melhorias diversas" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Mantenedor anterior, migração para o KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autor original" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Reestruturação importante, correção de erros e melhorias importantes" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Correção de erros e melhorias diversas" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Correção de erros e melhorias importantes" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Melhorias diversas" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Correções de erros" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Suporte ao Solaris e histórico" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Correções de erros e melhoria no desempenho na inicialização" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Melhorias na marcação" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1083,13 +1132,13 @@ msgstr "" "Konsole incorporado\n" "Barra de ferramentas e nomes de sessão" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1099,25 +1148,25 @@ msgstr "" "Konsole incorporado\n" "Melhorias diversas" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efeitos visuais" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1127,132 +1176,132 @@ msgstr "" "Código do projeto kvt\n" "Melhorias diversas" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Melhorias nos esquemas e na seleção de texto" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Porte para SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Porte para FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Agradecimentos a muitas outras pessoas.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nova aba" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Duplicar aba" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nova &janela" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Fechar janela" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Favoritos" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Esquema de cores da &janela" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gerenciar perfis..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Ativar menu" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Salvar layout de abas..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Carregar layout de abas..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1263,67 +1312,67 @@ msgstr[0] "" msgstr[1] "" "Existem %1 processos em execução nesta janela. Deseja realmente sair?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmar fechamento" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Fechar janela" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Fechar a aba a&tual" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Há %1 terminais abertos nesta janela. Deseja realmente sair?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Perfis" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Geral" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Memória" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Barra de abas / divisores" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Arquivos temporários" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturas" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1407,7 +1456,7 @@ msgstr "Salvar" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Atualizar" @@ -1419,29 +1468,29 @@ msgid "Cancel" msgstr "Cancelar" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Comandos rápidos" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Mostrar acesso rápido" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Nenhum comando rápido encontrado. Você pode adicionar um em Plugins -> " "Comandos rápidos" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Plugins - Comandos rápidos" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Mostrar comandos rápidos" @@ -1483,7 +1532,7 @@ msgstr "" "com múltiplas configurações, tem certeza?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Você está prestes a excluir %1, tem certeza?" @@ -1536,11 +1585,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 é uma pasta para as entradas SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configuração SSH" @@ -1605,24 +1654,24 @@ msgstr "" "zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Chave SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Excluir" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Não alterar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1631,70 +1680,70 @@ msgstr "" "Você está prestes a excluir a pasta %1,\n" "com múltiplas configurações SSH, tem certeza?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Excluir configurações SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "Perfil SSH importado
              Algumas configurações são somente leitura." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Nome de máquina" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Nome faltando" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Se usar configuração SSH está definido, não especificar chave SSH ou nome de " "usuário." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Pelo menos o nome de usuário ou chave SSH deve ser definido" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Faltando pasta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Uma sessão SSH deve ter um perfil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Não foi possível excluir esta pasta" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Excluir pasta e todo o seu conteúdo" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Clique duplo para alterar o nome da pasta." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Você não pode excluir uma entrada adicionada automaticamente." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Excluir entrada selecionada" @@ -1886,25 +1935,25 @@ msgstr "Opções de saída" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Modo de &impressão amigável (texto preto, sem fundo)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "E&scala de saída" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Interno" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Perfil padrão" @@ -1963,17 +2012,41 @@ msgstr "Clique duplo para alterar o atalho" msgid "Tab Properties" msgstr "Propriedades da aba" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Salvar saída de %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 é uma URL inválida, a saída não poderá ser salva." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Falha ao criar arquivo de salvamento automático em %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Interrompendo o salvamento automático devido à troca de telas." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"O arquivo de salvamento automático foi modificado externamente, impedindo " +"salvamentos automáticos posteriores." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Falha ao atualizar o estado de salvamento automático nas alterações de saída." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2009,81 +2082,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastéis escuros" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verde sobre preto" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Cores do Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Vermelho sobre preto" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solar" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solar claro" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Branco sobre preto" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Padrão (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Console do Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Console do Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Pesquisar…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Digite aqui o nome da aba a pesquisar" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Campainha em '%1' (sessão '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Não foi possível encontrar o binário: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Aviso: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Não foi possível encontrar um shell interativo para iniciar." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2092,336 +2182,339 @@ msgstr "" "Não foi possível encontrar '%1'; iniciando '%2' alternativamente. Verifique " "as configurações do seu perfil." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Não foi possível iniciar o programa '%1' com os argumentos '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Silêncio em '%1' (sessão '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Mostrar sessão" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Os métodos do D-Bus sendText/runCommand foram usados. Há questões de " -"segurança sobre permitir que esses métodos sejam públicos. Se desejado, eles " -"podem ser alterados para apenas uso interno pele Konsole de re-compilação. " -"

              Esse aviso só será exibido uma vez para esta instância do Konsole.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Concluída" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "O programa '%1' travou." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "O programa '%1' concluiu com o status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progresso do ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Atividade em '%1' (sessão '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "A API DBus sensível à segurança está desabilitada nas configurações." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "O processo '%1' concluiu a execução na sessão '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "O Konsole não sabe como abrir o favorito: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Pesquisar por '%1' com" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configurar os atalhos da Web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Fechar sessão" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Abrir gerenciador de arquivos" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copiar" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dividir a exibição em esquerda-direita" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dividir a exibição em superior-inferior" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Copiar exceto prompts" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Copiar entrada do usuário" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Copiar saída do comando" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Colar a seleção" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Pesquisa na Web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Selecionar tudo" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Selecionar &modo" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Selecionar &linha" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "S&alvar saída como..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Salvar saída automaticamente como..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Parar salvamento automático" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Im&primir tela..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Ajustar histórico..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Limpar histórico" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Limpar histórico e reiniciar" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Próximo perfil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Perfil anterior" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Mudar o perfil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Definir &codificação" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permitir rastreio de mouse" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Somente leitura" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configurar ou renomear aba..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Todas as &abas da janela atual" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Selecionar abas..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nenhuma" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copiar a entrada para" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Enviar por &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Monitores únicos" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" -msgstr "Monitor para &prompot" +msgstr "Monitor para &prompt" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitor para &atividades" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitor para &silêncio" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitor para conclusão de processo" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Aumentar fonte" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Diminuir fonte" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Restaurar o tamanho da fonte" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Enviar sinal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspender tarefa" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continuar tarefa" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Desligar" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Interromper tarefa" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminar tarefa" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Cancelar tarefa" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Sinal do usuário &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Sinal do usuário &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Criar novo perfil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Editar o perfil atual..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2431,7 +2524,7 @@ msgstr "" "lo?" # "fechá-la" significa fechar a aba e não o programa. (Alvarenga) -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2439,18 +2532,18 @@ msgid "" msgstr "" "O programa '%1' está em execução nesta sessão. Deseja realmente fechá-la?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmar fechamento" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Fechar programa" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2459,37 +2552,37 @@ msgstr "" "Um programa nesta sessão não será encerrado. Deseja realmente forçar o " "encerramento?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "O programa '%1' está nesta sessão e não será encerrado. Deseja realmente " "forçar o encerramento?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Matar programa" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "O prompt do shell é exibido na sessão '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Abrir pasta atual com" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Salvar o download por ZModem em..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2500,7 +2593,7 @@ msgstr "" "não foi encontrado um aplicativo adequado de ZModem neste sistema.

              Você pode querer instalar o pacote 'rzsz' ou 'lrzsz'.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " @@ -2508,7 +2601,7 @@ msgstr "" "

              A sessão atual já tem uma transferência de arquivos por ZModem em " "andamento.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2517,7 +2610,7 @@ msgstr "" "

              Não foi encontrado um aplicativo adequado de ZModem neste sistema.

              Você pode querer instalar o pacote 'rzsz' ou 'lrzsz'.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Selecionar os arquivos para envio por ZModem" @@ -2540,146 +2633,172 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configurar" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Pesquisar:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Ativar os aceleradores do menu" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Se estiver ativo, as configurações do perfil serão ignoradas" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Memorizar o tamanho da janela" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Mostrar o título da janela na barra de título" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" -"Colocar os terminais em primeiro plano quando o ponteiro do mouse passar " -"sobre eles" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Corresponder à expressão regular" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Ao iniciar o Konsole reutilizar o processo existente, se possível" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Executar todas as janelas do Konsole em um único processo" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Realçar todas as ocorrências" +msgid "If enabled, profile settings will be ignored" +msgstr "Se estiver ativo, as configurações do perfil serão ignoradas" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Define se a pesquisa distingue maiúsculas de minúsculas" +msgid "Remember window size" +msgstr "Memorizar o tamanho da janela" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Diferenciar maiúsculas de minúsculas" +msgid "Force new tabs" +msgstr "Forçar novas abas" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Remover a barra de título e moldura da janela" +msgid "Listen for ZModem terminal codes" +msgstr "Escuta por códigos de terminal ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Processo e janela:" +msgid "Show progress in taskbar" +msgstr "Mostrar progresso na barra de tarefas" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notificações:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Todas as caixas de diálogo serão exibidas novamente" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Ativar todas as mensagens de \"Não perguntar novamente\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Define se a pesquisa deve começar a partir da base" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Pesquisar para trás" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Define se a pesquisa distingue maiúsculas de minúsculas" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Diferenciar maiúsculas de minúsculas" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Processo e janela:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Realçar todas as ocorrências" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Pesquisar:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Define se a pesquisa deve parar em vez de recomeçar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Sem recomeçar" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Ativar os aceleradores do menu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" +"Colocar os terminais em primeiro plano quando o ponteiro do mouse passar " +"sobre eles" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Todas as caixas de diálogo serão exibidas novamente" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Ativar todas as mensagens de \"Não perguntar novamente\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Mostrar o título da janela na barra de título" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Habilitar as partes sensíveis à segurança da API DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Remover a barra de título e moldura da janela" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Corresponder à expressão regular" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2707,71 +2826,112 @@ msgstr "Usar o tamanho da janela atual na próxima inicialização" msgid "The window size will be saved upon exiting Konsole" msgstr "O tamanho da janela será salvo ao sair do Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Ao iniciar o Konsole, criar uma nova aba em vez de criar novas janelas, se " +"possível" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Mostrar progresso na barra de tarefas" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Quando um script reporta seu progresso, ele será exibido na barra de tarefas" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "A API do DBus, como o runCommand, será habilitada" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Escuta por códigos de terminal ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Envia/recebe arquivos por conexões seriais automaticamente" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Largura da miniatura" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Define a largura da miniatura" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Use Shift para mostrar uma miniatura" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Use Alt para mostrar uma miniatura" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Use Ctrl para mostrar uma miniatura" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "A pesquisa distingue maiúsculas de minúsculas" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Realçar todas as ocorrências" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Define se o texto igualado deve ser destacado" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "A pesquisa deve parar em vez de recomeçar" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Controlar se cgroups filhos são criados para guias individuais" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2780,92 +2940,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controlar a visibilidade de toda a barra de abas" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controla o tamanho do separador entre os painéis" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controlar a posição da barra de abas" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controlar o estilo visual da barra de abas" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Usar um arquivo .css definido pelo usuário para a barra de abas" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "O arquivo .css a ser usado para o estilo da barra de abas" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permitir fechar abas abertas clicando com o botão do meio" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Controlar a visibilidade do botão \"Nova aba\" na barra de abas" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Controlar a visibilidade do botão \"Procurar aba\" na barra de abas" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controlar onde o botão \"Fechar aba\" será mostrado" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controlar onde colocar a nova aba" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Expandir a largura das abas" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Para arquivos de histórico, use a localização da pasta do sistema" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" "Para arquivos de histórico, use a localização da pasta específica do usuário" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Para arquivos de histórico, use a localização da pasta especificada" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Para arquivos de histórico, use esta pasta" @@ -2877,35 +3043,30 @@ msgid "Enable memory monitoring:" msgstr "Habilita o monitoramento de memória:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "As alterações entrarão em vigor após a reinicialização. Se habilitado, o " -"consumo sustentado de memória pelo Konsole\n" -" excedendo o valor especificado fará com que o systemd-oomd elimine a(s) " -"aba(s)\n" -" contendo o(s) processo(s) que consomem muita memória. Observação: " -"habilitar\n" -" pode causar lentidão maior durante alto consumo de memória e especificar\n" -" valores excessivamente baixos ainda pode fazer com que o Konsole seja " -"encerrado." +"consumo sustentado de memória pelo Konsole excedendo o valor especificado " +"fará com que o systemd-oomd elimine a(s) aba(s) contendo o(s) processo(s) " +"que consomem muita memória. Observação: habilitar pode causar lentidão maior " +"durante alto consumo de memória e especificar valores excessivamente baixos " +"ainda pode fazer com que o Konsole seja encerrado." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Limite de memória:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3066,125 +3227,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Nenhum" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Mostrar botão de pesquisar aba:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Sempre" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nunca" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diversos:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Mostrar botão de 'Nova aba'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Expandir a largura de abas individuais para a janela cheia" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Usar uma folha de estilo definida pelo usuário:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(nenhum)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportamento" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Colocar novas abas:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "No &final" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Após a aba a&tual" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Fechar aba com o botão do meio" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Divisões" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Mostrar cabeçalho:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Quando necessário" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nunca" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Tamanho do separador:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Pequeno" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Médio" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Grande" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3236,13 +3415,12 @@ msgstr "px" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" -"

              Para usar este recurso habiliteMouse->Diversos->Sublinhararquivos nas configurações do seu perfil

              " +"

              Para usar este recurso, habilite Mouse->Diversos->Arquivos sublinhados nas " +"configurações do seu perfil.

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3280,64 +3458,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Ativar a geração de miniaturas" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Tamanho: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Deseja realmente colar %1 caractere?" msgstr[1] "Deseja realmente colar %1 caracteres?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Confirmar colagem" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Fim do texto/Interrupção: Pode sair do processo atual" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "Fim da transmissão: Pode sair do processo atual" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Campainha: Tentará emitir um aviso sonoro" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Controle de dispositivo Three/XOFF: Suspende o resultado" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substituição/Suspensão: Pode suspender o processo atual" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: Usado para manipular o estado do terminal" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Separador de arquivos/Sair: Pode interromper o processo atual" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3346,31 +3524,31 @@ msgstr "" "O texto que você está tentando colar contém caracteres de controle ocultos. " "Deseja filtrá-los?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Confirmar colagem" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Colar &sem os caracteres de controle" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Co&lar tudo" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Cancelar" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been suspensa ao pressionar Ctrl+S. Pressione Ctrl+Q para continuar." "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Este terminal é somente leitura." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Alterar a &pasta para" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Colar localização" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Dividir a exibição" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dividir a exibição em esquerda/direita" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dividir a exibição em superior/inferior" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dividir a exibição automaticamente" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dividir a exibição em esquerda/direita na próxima aba" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dividir a exibição em superior/inferior na próxima aba" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dividir a exibição automaticamente na próxima aba" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Carrega uma nova aba com layout de terminais 2x2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Carrega uma nova aba com layout de terminais 2x1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Carrega uma nova aba com layout de terminais 1x2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expandir exibição" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Reduzir exibição" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Desanexar a e&xibição atual" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Desanexar a aba a&tual" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Próxima aba" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Aba anterior" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Focar o terminal acima" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Focar o terminal abaixo" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Focar o terminal à esquerda" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Focar o terminal à direita" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Focar o próximo terminal" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Focar o terminal anterior" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Mudar para a última aba" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Últimas abas usadas" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Alternar entre duas abas" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Últimas abas usadas (inversa)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Alternar para maximizar a exibição atual" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Alternar para maximizar a exibição atual" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Alternar para ampliar/maximizar a exibição atual" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Alternar para ampliar/maximizar a exibição atual" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Mover aba para a direita" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Mover aba para a esquerda" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Configurar a integração semântica (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Alternar exibição de dicas semânticas" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Alternar exibição de números de linha" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Tamanho igual para todas as visualizações" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Mudar para a aba %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Indicações semânticas" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Números de linha " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Salvar layout de abas" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Layout de visualização do Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3638,7 +3828,7 @@ msgstr "" "Ocorreu um problema ao salvar o layout.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3648,13 +3838,13 @@ msgstr "" "Ocorreu um problema ao carregar o layout.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Carregar layout de abas" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3755,28 +3945,40 @@ msgstr "Codificação de caracteres &padrão:" msgid "Shortcut for peeking the primary screen:" msgstr "Atalho para espiar a tela principal:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Definir intervalo entre salvamentos automáticos:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Números de linha:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nunca" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Quando as dicas de &URL são exibidas" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3812,7 +4014,7 @@ msgstr "Editar o esquema de cores selecionado" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3866,6 +4068,9 @@ msgstr "Desenhar as cores intensas em negrito" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Use a fonte selecionada para caracteres de linha em vez do código interno" @@ -3873,6 +4078,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Usar caracteres de linha contidos na fonte" @@ -3993,29 +4201,43 @@ msgid "Make the cursor blink regularly" msgstr "Fazer com que o cursor pisque regularmente" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Ativo" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animação:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Faz o cursor se mover suavemente" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diversos" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Janela:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4025,144 +4247,144 @@ msgstr "" "redimensionamento" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Mostrar a dica de tamanho do terminal após o redimensionamento" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Sempre inverter as cores do texto selecionado" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Força do escurecimento:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Cor:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Selecionar a cor a ser usada para desenhar a borda" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Terminais inativos:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Terminais ativos:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Conteúdo do terminal" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Espaço entre linhas:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "O número de pixels entre duas linhas" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Margens:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Alinhar ao centro:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indicar se a janela está ativa escurecendo as cores" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Escurecer" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indica se a janela está ativa desenhando uma borda" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Borda" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Mostrar linha vertical na coluna:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Layout de texto complexo

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Layout de texto complexo" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Ativar renderização de texto no modo palavra" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Modo palavra" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4172,43 +4394,43 @@ msgstr "" "alterações de atributos quebram a palavra durante a renderização)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Use os mesmos atributos para a palavra inteira" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Renderizar palavras de caracteres ASCII juntas" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Caracteres ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Renderizar palavras de caracteres de scripts Brahmico juntos" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Caracteres de escrita brahmica" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Fonte emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4218,13 +4440,13 @@ msgstr "" "Árabe, Farsi ou Hebraico)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Renderização de texto bidirecional" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4232,83 +4454,83 @@ msgstr "" "caractere forte" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "forçar direção da linha LTR" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Trate os caracteres de desenho de tabela como um LTR forte." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Sobrescrever o modo BiDi de caracteres de tabela" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorar a largura dos caracteres problemáticos" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Sobrescrever wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Editar perfil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Geral" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Abas" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aparência" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rolagem" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Teclado" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Combinação de teclas" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mouse" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avançado" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4320,7 +4542,7 @@ msgstr "" "filename>.Ou modifique as permissões do arquivo ou defina um nome " "diferente para salvar as configurações em um novo perfil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4328,42 +4550,47 @@ msgstr "" "O nome do perfil estava vazio; defina um nome para poder salvar as " "configurações." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Um perfil com o nome \"%1\" já existe." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "O nome do perfil excedeu o comprimento máximo permitido (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Os caracteres destacados são inválidos em nomes de perfil: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Editando o perfil: %2" msgstr[1] "Editando %1 perfis: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Criar novo perfil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Editar o perfil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Nenhum" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4373,7 +4600,7 @@ msgid_plural " columns" msgstr[0] " coluna" msgstr[1] " colunas" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4383,42 +4610,42 @@ msgid_plural " rows" msgstr[0] " linha" msgstr[1] " linhas" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Campainha do sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificações do sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Campainha visual" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorar eventos de campainha" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Perfil padrão para as novas sessões do terminal em %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Editar ambiente" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Uma variável de ambiente por linha" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4426,23 +4653,23 @@ msgid_plural " seconds" msgstr[0] " segundo" msgstr[1] " segundos" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Selecione a pasta inicial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Baixar novo..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Falha ao carregar o esquema %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4451,7 +4678,7 @@ msgstr "" "Este esquema de cores usa um fundo transparente, que parece não ser " "suportado pelo seu ambiente de trabalho" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4460,12 +4687,12 @@ msgstr "" "O Konsole foi iniciado antes dos efeitos da área de trabalho serem ativados. " "Você precisa reiniciar o Konsole para ver o fundo transparente." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Padrão por tipo de arquivo" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4494,7 +4721,7 @@ msgstr "" "esta configuração será ignorada e o arquivo será aberto pelo editor\n" "de texto padrão." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Comando personalizado do editor de texto" @@ -4584,26 +4811,57 @@ msgstr "Escolher a pasta inicial" msgid "Start in same directory as current session" msgstr "Iniciar na mesma pasta da sessão atual" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Ao abrir uma nova aba ou divisão, entre automaticamente no mesmo contêiner " +"(Toolbox, Distrobox) da sessão atual" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Entre no mesmo contêiner da sessão atual" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Sempre iniciar no contêiner:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Sempre inicia novas sessões usando este perfil dentro do contêiner " +"selecionado" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Ambiente:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Edita a lista de variáveis de ambiente e valores associados" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Tamanho ini&cial do terminal:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4616,31 +4874,31 @@ msgstr "" "desabilitado para estas entradas funcionarem.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Modo de campainha do &terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Integração semântica" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulação de teclas para cima/baixo" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Clique do mouse na linha de entrada move o cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Dicas semânticas:" @@ -4650,9 +4908,9 @@ msgstr "Dicas semânticas:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4663,9 +4921,9 @@ msgstr "Nunca" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4676,34 +4934,34 @@ msgstr "Quando as dicas de URL são exibidas" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Sempre" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Barras de erro vermelhas:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Plano de fundo para erros severos:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Barras alternadas:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Alternando plano de fundo:" @@ -5062,117 +5320,129 @@ msgid "Scrollback:" msgstr "Histórico:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Rolagem do Page Up/Down:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Rolar a página em metade da altura da janela" +msgid "Highlight the lines coming into view" +msgstr "Realçar as linhas que aparecem" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" -msgstr "M&etade da altura da tela" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Rolar a página a altura total da janela" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "Altura t&otal da tela" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Posição da barra de rolagem:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Mostrar a barra de rolagem no lado direito da janela do terminal" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, kde-format -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Lado d&ireito" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Mostrar a barra de rolagem no lado esquerdo da janela do terminal" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, kde-format -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Lado e&squerdo" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Oculta" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Realce:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Realçar as linhas que aparecem" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Refluir linhas:" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "Refluir linhas quando o terminal for redimensionado" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "Cor dos marcadores da barra de rolagem:" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" "Tamanho de cada marcador (como uma porcentagem do comprimento da barra de " "rolagem):" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Realce:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "Rolar a página em metade da altura da janela" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "M&etade da altura da tela" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Cor dos marcadores da barra de rolagem:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Cor das linhas de destaque da pesquisa na barra de rolagem:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Refluir linhas:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Rolar a página a altura total da janela" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "Altura t&otal da tela" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Mostrar a barra de rolagem no lado direito da janela do terminal" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Lado d&ireito" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Mostrar a barra de rolagem no lado esquerdo da janela do terminal" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Lado e&squerdo" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "Refluir linhas quando o terminal for redimensionado" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "Posição da barra de rolagem:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" +msgstr "Pesquisar destacando a opacidade da linha:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5278,37 +5548,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nenhum" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Localizar..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Digite aqui o texto a pesquisar" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Próxima" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Localiza a próxima coincidência para a expressão de pesquisa atual" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Anterior" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5316,77 +5586,77 @@ msgstr "Localiza a coincidência anterior para a expressão de pesquisa atual" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Mostrar o menu de opções" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Fecha a barra de pesquisa" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Diferenciar maiúsculas de minúsculas" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Define se a pesquisa distingue maiúsculas de minúsculas" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Mostrar o menu de opções" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Fecha a barra de pesquisa" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Corresponder à expressão regular" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Realçar todas as ocorrências" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Define se o texto igualado deve ser destacado" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Pesquisar para trás" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Define se a pesquisa deve começar a partir da base" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Sem recomeçar" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Define se a pesquisa deve parar em vez de recomeçar" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Procura pela próxima ocorrência da pesquisa atual a partir da base" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5397,7 +5667,7 @@ msgstr "Procura pela próxima ocorrência da pesquisa atual a partir do topo" msgid "Print Shell" msgstr "Imprimir a linha de comando" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5437,6 +5707,12 @@ msgstr "Formato normal do título da aba" msgid "Tab Co&lor:" msgstr "&Cor da aba:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Cor da aba de &atividade:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5530,36 +5806,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restaurar terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Abrir uma nova aba" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Pesquisar abas" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Fechar esta aba" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Desanexar aba" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configurar ou renomear aba..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Fechar aba" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Os métodos do D-Bus sendText/runCommand foram usados. Há questões de " +#~ "segurança sobre permitir que esses métodos sejam públicos. Se desejado, " +#~ "eles podem ser alterados para apenas uso interno pele Konsole de re-" +#~ "compilação.

              Esse aviso só será exibido uma vez para esta instância do " +#~ "Konsole.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Diferenciar maiúsculas de minúsculas" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Nenhum" diff --git a/local/recipes/kde/konsole/source/po/ro/konsole.po b/local/recipes/kde/konsole/source/po/ro/konsole.po index 93e20e4c0a..f31f198d9a 100644 --- a/local/recipes/kde/konsole/source/po/ro/konsole.po +++ b/local/recipes/kde/konsole/source/po/ro/konsole.po @@ -1,7 +1,7 @@ # Traducerea konsole.po în Română # Copyright (C) 2003, 2004, 2005, 2008 Free Software Foundation, Inc. # Claudiu Costin , 2003, 2004, 2005. -# Sergiu Bivol , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2020, 2021, 2022. +# SPDX-FileCopyrightText: 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2020, 2021, 2022, 2025, 2026 Sergiu Bivol # Laurenţiu Buzdugan , 2009. # Cristian Oneț , 2011, 2012. # @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2022-06-01 15:35+0100\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-03-31 15:08+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Lokalize 21.12.3\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -53,7 +53,7 @@ msgstr "Vizualizare" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Desparte vizualizarea" @@ -89,7 +89,7 @@ msgid "S&crollback" msgstr "Re&venire" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Bara de unelte cu sesiuni" @@ -174,36 +174,52 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Ascunde bara de meniu, trecând peste configurarea implicită" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Arată bara de file, trecând peste configurarea implicită" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Ascunde bara de file, trecând peste configurarea implicită" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Arată bara de file, trecând peste configurarea implicită" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Ascunde bara de file, trecând peste configurarea implicită" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Pornește Konsolă în regim de ecran complet" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Dezactivează fundalurile transparente, chiar dacă sistemul le susține." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Enumeră profilurile disponibile" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -211,13 +227,13 @@ msgstr "" "Enumeră toate numele de proprietăți ale profilului și tipul acestora (pentru " "a fi utilizate cu -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Schimbă valoarea unei proprietăți a profilului." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -227,7 +243,7 @@ msgstr "" "Comanda de executat. Această opțiune va prinde toate argumentele ulterioare, " "deci utilizați-o ca opțiune finală." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -235,13 +251,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumente transmise comenzii" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -259,157 +275,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Prim-plan" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Fundal" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Culoare 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Culoare 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Culoare 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Culoare 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Culoare 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Culoare 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Culoare 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Culoare 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Prim-plan (intens)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fundal (intens)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Culoare 1 (intens)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Culoare 2 (intens)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Culoare 3 (intens)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Culoare 4 (intens)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Culoare 5 (intens)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Culoare 6 (intens)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Culoare 7 (intens)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Culoare 8 (intens)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Prim-plan (palid)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fundal (palid)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Culoare 1 (palid)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Culoare 2 (palid)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Culoare 3 (palid)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Culoare 4 (palid)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Culoare 5 (palid)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Culoare 6 (palid)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Culoare 7 (palid)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Culoare 8 (palid)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -604,36 +620,33 @@ msgstr "FărăScalare" #. i18n: ectx: property (text), widget (QLabel, wallpaperFlipLabel) #: colorscheme/ColorSchemeEditor.ui:205 -#, fuzzy, kde-format -#| msgid "Wallpaper scaling:" +#, kde-format msgid "Wallpaper flip:" -msgstr "Scalare tapet:" +msgstr "Răsturnare tapet:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:213 #, kde-format msgid "NoFlip" -msgstr "" +msgstr "FărăRăsturnare" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:218 -#, fuzzy, kde-format -#| msgid "Horizontal Anchor:" +#, kde-format msgid "Horizontal" -msgstr "Ancoră orizontală:" +msgstr "Orizontal" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:223 -#, fuzzy, kde-format -#| msgid "Vertical Anchor:" +#, kde-format msgid "Vertical" -msgstr "Ancoră verticală:" +msgstr "Vertical" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:228 #, kde-format msgid "Both" -msgstr "" +msgstr "Ambele" #. i18n: ectx: property (text), widget (QLabel, wallpaperHorizontalAnchorLabel) #: colorscheme/ColorSchemeEditor.ui:240 @@ -664,6 +677,41 @@ msgstr "Sus" msgid "AaZz09..." msgstr "AaZz09…" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Gazdă: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Implicit]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -689,11 +737,10 @@ msgid "Deselect All" msgstr "Deselectează tot" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, fuzzy, kde-format -#| msgid "Preview:" +#, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" -msgstr "Previzualizare:" +msgstr "Previzualizare culori" #: filterHotSpots/FileFilterHotspot.cpp:158 #, kde-format @@ -707,7 +754,7 @@ msgstr "" msgid "Copy Location" msgstr "Copiază amplasarea" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Se generează miniatura" @@ -738,13 +785,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Alege fontul" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Arată toate fonturile" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -784,17 +831,17 @@ msgstr "Combinație de taste" msgid "Output" msgstr "Ieșire" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Listă de combinații de taste nouă" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Editează lista combinațiilor de taste" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -803,7 +850,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -837,225 +884,225 @@ msgstr "Intrare:" msgid "Output:" msgstr "Ieșire:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsolă" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator de terminal" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Dezvoltatorii Konsolă" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Responsabil general, corecții de erori și îmbunătățiri generale" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Responsabilul precedent, portarea spre KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Autorul original" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Restructurare majoră, corectarea defectelor și îmbunătățiri majore" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Corecții de defecte și îmbunătățiri generale" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Corecții de erori și îmbunătățiri majore" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Îmbunătățiri generale" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Corecții de erori" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Suport pentru Solaris și istoric" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Corecții și îmbunătățirea performanțelor de pornire" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Îmbunătățiri de marcaj" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1065,13 +1112,13 @@ msgstr "" "Consolă încorporată\n" "Bara de unelte și denumirile sesiunilor" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1081,25 +1128,25 @@ msgstr "" "Consolă încorporată\n" "Îmbunătățiri generale" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Efecte vizuale" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1109,136 +1156,132 @@ msgstr "" "Cod din proiectul kvt\n" "Îmbunătățiri generale" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Îmbunătățiri la scheme și selecție de text" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Portare SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Portare FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Mulțumiri multor altora.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Filă &nouă" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clonează fila" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Fereastră nouă" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Închide fereastra" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Semne de carte" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Schema de c&ulori a ferestrei" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gestiune profiluri..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Activează meniul" -#: MainWindow.cpp:403 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Save tab layout to file" +#: MainWindow.cpp:471 +#, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." -msgstr "Salvează aranjamentul filelor în fișier" +msgstr "Salvează aranjamentul filelor…" -#: MainWindow.cpp:412 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Load tab layout from file" +#: MainWindow.cpp:480 +#, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." -msgstr "Încarcă aranjamentul filelor din fișier" +msgstr "Încarcă aranjamentul filelor…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1248,67 +1291,67 @@ msgstr[0] "Este un proces rulând în această fereastră. Ieșiți oricum?" msgstr[1] "Sunt %1 procese rulând în această fereastră. Ieșiți oricum?" msgstr[2] "Sunt %1 de procese rulând în această fereastră. Ieșiți oricum?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Confirmă închiderea" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Închi&de fereastra" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Închide fila curen&tă" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Sunt %1 terminale deschise în această fereastră. Terminați oricum?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiluri" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Generale" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" -msgstr "" +msgstr "Memorie" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Bara de file / Despărțitori" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Fișiere temporare" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniaturi" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1322,11 +1365,9 @@ msgstr "Formular" #. i18n: ectx: property (text), widget (QLabel, label_2) #: plugins/QuickCommands/qcwidget.ui:22 -#, fuzzy, kde-format -#| msgctxt "@title:column Profile keyboard shortcut" -#| msgid "Shortcut" +#, kde-format msgid "Shortcut:" -msgstr "Scurtătură" +msgstr "Scurtătură:" #. i18n: ectx: property (placeholderText), widget (QLineEdit, filterLine) #. i18n: ectx: property (placeholderText), widget (QLineEdit, filterText) @@ -1394,7 +1435,7 @@ msgstr "Salvează" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Actualizează" @@ -1406,29 +1447,27 @@ msgid "Cancel" msgstr "Renunță" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Comenzi rapide" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 -#, fuzzy, kde-format -#| msgid "Show Quick Commands" +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 +#, kde-format msgid "Show Quick Access" -msgstr "Arată comenzi rapide" +msgstr "Arată accesul rapid" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 -#, fuzzy, kde-format -#| msgid "Quick Commands" +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 +#, kde-format msgid "Plugins - Quick Commands" -msgstr "Comenzi rapide" +msgstr "Extensii – Comenzi rapide" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Arată comenzi rapide" @@ -1440,18 +1479,15 @@ msgid "A duplicate item exists" msgstr "Există un element duplicat" #: plugins/QuickCommands/quickcommandswidget.cpp:183 -#, fuzzy, kde-format -#| msgid "Please fix all the warnings before trying to execute this script" +#, kde-format msgid "Please fix all the warnings before trying to run this script" msgstr "" -"Remediați toate avertismentele înainte de a încerca să executați acest script" +"Remediați toate avertismentele înainte de a încerca să rulați acest script" #: plugins/QuickCommands/quickcommandswidget.cpp:215 -#, fuzzy, kde-format -#| msgid "" -#| "There are some errors on the script, do you really want to execute it?" +#, kde-format msgid "There are some errors on the script, do you really want to run it?" -msgstr "Sunt erori în script, sigur doriți să-l executați?" +msgstr "Sunt erori în script, sigur doriți să-l rulați?" #: plugins/QuickCommands/quickcommandswidget.cpp:216 #, kde-format @@ -1459,36 +1495,30 @@ msgid "Shell Errors" msgstr "Erori de consolă" #: plugins/QuickCommands/quickcommandswidget.cpp:217 -#, fuzzy, kde-format -#| msgid "Run" +#, kde-format msgctxt "@action:button" msgid "Run" -msgstr "Execută" +msgstr "Rulează" #: plugins/QuickCommands/quickcommandswidget.cpp:242 -#, fuzzy, kde-format -#| msgid "" -#| "You are about to remove the group %1,\n" -#| " with multiple configurations, are you sure?" +#, kde-format msgid "" "You are about to delete the group %1,\n" " with multiple configurations, are you sure?" msgstr "" -"Sunteți pe cale să eliminați grupul %1\n" +"Sunteți pe cale să ștergeți grupul %1\n" " cu multiple configurări. Sunteți sigur?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 -#, fuzzy, kde-format -#| msgid "You are about to remove %1, are you sure?" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 +#, kde-format msgid "You are about to delete %1, are you sure?" -msgstr "Sunteți pe cale să eliminați %1. Sunteți sigur?" +msgstr "Sunteți pe cale să ștergeți %1. Sunteți sigur?" #: plugins/QuickCommands/quickcommandswidget.cpp:246 -#, fuzzy, kde-format -#| msgid "Remove Quick Commands Configurations" +#, kde-format msgid "Delete Quick Commands Configurations" -msgstr "Elimină configurările comenzilor rapide" +msgstr "Șterge configurările comenzilor rapide" #: plugins/QuickCommands/quickcommandswidget.cpp:276 #, kde-format @@ -1516,15 +1546,13 @@ msgid "Warnings (*)" msgstr "Avertismente (*)" #: plugins/SSHManager/sshmanagermodel.cpp:46 -#, fuzzy, kde-format -#| msgid "SSH Config" +#, kde-format msgctxt "@item:inlistbox Hosts from ssh/config file" msgid "SSH Config" -msgstr "Configurări SSH" +msgstr "Configurația SSH" #: plugins/SSHManager/sshmanagermodel.cpp:49 -#, fuzzy, kde-format -#| msgid "Default" +#, kde-format msgctxt "@item:inlistbox The default list of ssh hosts" msgid "Default" msgstr "Implicit" @@ -1535,11 +1563,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 e un dosar pentru înregistrări SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Configurări SSH" @@ -1562,7 +1590,7 @@ msgstr "Arată gestionarul SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:115 #, kde-format msgid "Show Quick Access for SSH Actions" -msgstr "" +msgstr "Arată accesul rapid pentru acțiuni SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:146 #, kde-format @@ -1570,15 +1598,14 @@ msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" msgstr "" #: plugins/SSHManager/sshmanagerplugin.cpp:147 -#, fuzzy, kde-format -#| msgid "Open File Manager" +#, kde-format msgid "Plugins - SSH Manager" -msgstr "Deschide gestionarul de fișiere" +msgstr "Extensii – Gestionar SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:153 #, kde-format msgid "SSH Entries" -msgstr "" +msgstr "Înregistrări SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:182 #, kde-format @@ -1603,114 +1630,103 @@ msgstr "" "zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Cheie SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 -#, fuzzy, kde-format -#| msgid "Delete" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 +#, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Șterge" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" -msgstr "" +msgstr "Nu modifica" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 -#, fuzzy, kde-format -#| msgid "" -#| "You are about to remove the folder %1,\n" -#| " with multiple SSH Configurations, are you sure?" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 +#, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -"Sunteți pe cale să eliminați dosarul %1\n" +"Sunteți pe cale să ștergeți dosarul %1\n" " cu multiple configurări SSH. Sunteți sigur?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 -#, fuzzy, kde-format -#| msgid "Remove SSH Configurations" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" -msgstr "Elimină configurările SSH" +msgstr "Șterge configurările SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." -msgstr "" +msgstr "Profil SSH importat
              Unele configurări sunt numai-citire." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Lipsește gazda" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Lipsește numele" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Dacă e activat „Folosește configurare SSH”, nu specificați cheia SSH sau " "utilizatorul." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Cel puțin Utilizator sau Cheie SSH trebuiesc specificate" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Dosar lipsă" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "O sesiune SSH trebuie să aibă profil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 -#, fuzzy, kde-format -#| msgid "Cannot remove this folder" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 +#, kde-format msgid "Cannot delete this folder" -msgstr "Acest dosar nu poate fi eliminat" +msgstr "Acest dosar nu poate fi șters" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 -#, fuzzy, kde-format -#| msgid "Remove folder and all of its contents" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 +#, kde-format msgid "Delete folder and all of its contents" -msgstr "Elimină dosarul și tot conținutul acestuia" +msgstr "Șterge dosarul și tot conținutul acestuia" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Dublu-clic pentru a schimba denumirea dosarului." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 -#, fuzzy, kde-format -#| msgid "You can't remove an automatically added entry." +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 +#, kde-format msgid "You can't delete an automatically added entry." -msgstr "Nu puteți elimina o înregistrare adăugată automat." +msgstr "Nu puteți șterge o înregistrare adăugată automat." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 -#, fuzzy, kde-format -#| msgid "Remove selected entry" +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 +#, kde-format msgid "Delete selected entry" -msgstr "Elimină înregistrarea aleasă" +msgstr "Șterge înregistrarea aleasă" #. i18n: ectx: property (text), widget (QLabel, label_6) #: plugins/SSHManager/sshwidget.ui:19 -#, fuzzy, kde-format -#| msgctxt "@title:column Profile keyboard shortcut" -#| msgid "Shortcut" +#, kde-format msgid "Shortcut" msgstr "Scurtătură" @@ -1724,15 +1740,13 @@ msgstr "Arată înregistrări ce nu se potrivesc filtrului" #: plugins/SSHManager/sshwidget.ui:57 #, kde-format msgid "Change profile on connect/disconnect" -msgstr "" +msgstr "Schimbă profilul la conectare/deconectare" #. i18n: ectx: property (text), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:60 -#, fuzzy, kde-format -#| msgctxt "@title:window" -#| msgid "Manage Profiles" +#, kde-format msgid "Manage profile" -msgstr "Gestionează profiluri" +msgstr "Gestionează profilul" #. i18n: ectx: property (text), widget (QLabel, label_2) #: plugins/SSHManager/sshwidget.ui:82 @@ -1802,6 +1816,8 @@ msgid "" "If this is set, we don't rely on the SSH key set above, but on the " "configuration on ~/.ssh/config" msgstr "" +"Dacă e activă, nu ne vom baza pe cheia SSH stabilită mai sus, ci pe " +"configurările din ~/.ssh/config" #. i18n: ectx: property (text), widget (QCheckBox, useSshConfig) #: plugins/SSHManager/sshwidget.ui:170 @@ -1859,10 +1875,9 @@ msgstr "Adaugă înregistrare SSH nouă" #. i18n: ectx: property (toolTip), widget (QPushButton, btnDelete) #: plugins/SSHManager/sshwidget.ui:284 -#, fuzzy, kde-format -#| msgid "Remove selected SSH entry" +#, kde-format msgid "Delete selected SSH entry" -msgstr "Elimină înregistrarea SSH aleasă" +msgstr "Șterge înregistrarea SSH aleasă" #. i18n: ectx: property (toolTip), widget (QPushButton, btnEdit) #: plugins/SSHManager/sshwidget.ui:297 @@ -1896,36 +1911,34 @@ msgstr "Opțiuni pentru ieșire" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Regim prietenos cu imprimanta (text negru, &fără fundal)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Scalează ieșirea" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" -msgstr "" +msgstr "Încorporat" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Profil implicit" #: profile/ProfileManager.cpp:280 -#, fuzzy, kde-format -#| msgctxt "The default name of a profile" -#| msgid "Profile #%1" +#, kde-format msgctxt "New profile name, %1 is a number" msgid "Profile %1" -msgstr "Profil #%1" +msgstr "Profilul %1" #: profile/ProfileManager.cpp:294 #, kde-format @@ -1975,17 +1988,38 @@ msgstr "Dublu-clic pentru a schimba scurtătura" msgid "Tab Properties" msgstr "Proprietăți filă" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Salvează ieșirea de la %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 nu este un URL valid. Ieșirea nu a putut fi salvată." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Nu s-a putu crea fișierul cu salvări automate la %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Salvarea automată se oprește din cauza schimbării ecranelor." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2021,81 +2055,98 @@ msgstr "Briză" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pasteluri întunecate" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Verde pe negru" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Culori Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Roșu pe negru" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarizat" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarizat, luminos" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Alb pe negru" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Implicit (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Consolă Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Consolă Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Căutare..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Introduceți aici denumirea unei file de căutat" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Clopoțel în „%1” (sesiunea „%2”)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nu s-a putut găsi binarul: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Atenție: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nu s-a găsit o consolă interactivă de pornit." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2104,380 +2155,364 @@ msgstr "" "Nu s-a putut găsi „%1” - pornesc „%2” în loc. Verificați-vă configurările " "profilului." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nu s-a putut porni programul „%1” cu argumentele „%2”." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Liniște în „%1” (sesiunea „%2”)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 -#, fuzzy, kde-format -#| msgid "&Close Session" -msgid "Show session" -msgstr "În&chide sesiunea" - -#: session/Session.cpp:1026 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Metodele D-Bus sendText/runCommand tocmai au fost folosite. Există " -"îngrijorări de securitate legate de permiterea acestor metode să fie " -"publice. Dacă doriți, puteți schimba aceste metode să fie doar pentru uz " -"intern prin recompilarea Konsolei.

              Acest avertisment va fi arătat doar o " -"dată pentru această instanță a Konsolei.

              " +msgid "Show session" +msgstr "Arată sesiunea" -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Terminat" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programul „%1” a eșuat." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programul '%1' a ieșit cu codul de eroare %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progres ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Activitate în „%1” (sesiunea „%2”)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsolă" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Procesul „%1” a terminat de rulat în sesiunea „%2”" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsola nu știe cum să deschidă semnul de carte: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Caută „%1” cu" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Configurare scurtături Web..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "În&chide sesiunea" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Deschide gestionarul de fișiere" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Copiază" -#: session/SessionController.cpp:667 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: session/SessionController.cpp:697 +#, kde-format msgid "Split View Left-Right" -msgstr "Desparte vizualizarea stânga/dreapta" +msgstr "Desparte vizualizarea stânga-dreapta" -#: session/SessionController.cpp:672 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: session/SessionController.cpp:702 +#, kde-format msgid "Split View Top-Bottom" -msgstr "Desparte vizualizarea sus/jos" +msgstr "Desparte vizualizarea sus-jos" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" -msgstr "" +msgstr "Copiază cu excepția solicitărilor" -#: session/SessionController.cpp:682 -#, fuzzy, kde-format -#| msgid "Copy Input" +#: session/SessionController.cpp:712 +#, kde-format msgid "Copy user input" -msgstr "Copiază intrarea" +msgstr "Copiază intrarea de la utilizator" -#: session/SessionController.cpp:688 -#, fuzzy, kde-format -#| msgid "Copy Input" +#: session/SessionController.cpp:718 +#, kde-format msgid "Copy command output" -msgstr "Copiază intrarea" +msgstr "Copiază rezultatul comenzii" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Lipește selecția" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Căutare web" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Selectează tot" -#: session/SessionController.cpp:720 -#, fuzzy, kde-format -#| msgid "Select &Line" +#: session/SessionController.cpp:750 +#, kde-format msgid "Select &Mode" -msgstr "Selectează &linia" +msgstr "Regi&m de selecție" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Selectează &linia" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Salvează ieșirea c&a..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Salvează automat rezultatul ca…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Oprește salvarea automată" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." -msgstr "Ti&părește ecranul..." +msgstr "Ti&părește ecranul…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Ajustează revenirea..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Curăță revenirea" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Curăță revenirea și reinițializează" -#: session/SessionController.cpp:757 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:795 +#, kde-format msgid "Next Profile" -msgstr "Modifică profilul" +msgstr "Profilul următor" -#: session/SessionController.cpp:762 -#, fuzzy, kde-format -#| msgid "Previous View" +#: session/SessionController.cpp:800 +#, kde-format msgid "Previous Profile" -msgstr "Vizualizarea precedentă" +msgstr "Profilul precedent" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Comută profilul" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Stabil&ește codarea" -#: session/SessionController.cpp:812 -#, fuzzy, kde-format -#| msgctxt "" -#| "@item:inmenu Allows terminal applications to request mouse tracking" -#| msgid "Allow mouse tracking" +#: session/SessionController.cpp:848 +#, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Permite urmărirea mausului" -#: session/SessionController.cpp:821 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu A read only (locked) session" -#| msgid "Read-only" +#: session/SessionController.cpp:857 +#, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Numai-citire" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Configurează sau redenumește fila..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "To&ate filele în fereastra actuală" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Alege filele..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Niciuna" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copiază intrarea la" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Încărcare &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" -msgstr "" +msgstr "Monitoare de unică folosință" -#: session/SessionController.cpp:877 -#, fuzzy, kde-format -#| msgid "Monitor for &Activity" +#: session/SessionController.cpp:913 +#, kde-format msgid "Monitor for &Prompt" -msgstr "Monitorizează pentru &activitate" +msgstr "Monitorizează &pentru solicitare" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitorizează pentru &activitate" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monit&orizează pentru tăcere" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitorizează terminarea procesului" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Mărește fontul" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Micșorează fontul" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Reinițializează dimensiunea fontului" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Trimite semnal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspendă sarcina" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Continuă sarcina" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Agață" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Întrerupe sarc&ina" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Termină sarcina" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Omoară sarcina" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Semnal utilizator &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Semnal utilizator &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Creează profil nou…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Editează profilul curent..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Un program rulează în această sesiune. Sigur îl închideți?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "Programul „%1” rulează în această sesiune. Sigur îl închideți?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Confirmă închiderea" -#: session/SessionController.cpp:1124 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Close Tab" +#: session/SessionController.cpp:1169 +#, kde-format msgctxt "@action:button" msgid "Close Program" -msgstr "Închide fila" +msgstr "Închide programul" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2486,37 +2521,37 @@ msgstr "" "Un program din această sesiune nu vrea să se închidă. Sigur doriți să-l " "închideți forțat?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Programul „%1” din această sesiune nu vrea să se închidă. Sigur doriți să-l " "închideți forțat?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" -msgstr "" +msgstr "Omoară programul" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "" +msgstr "Solicitarea consolei e afișată în sesiunea „%1”" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Deschide dosarul actual cu" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Salvează descărcare ZModem la…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2527,14 +2562,14 @@ msgstr "" "nici un program pentru ZModem nu a fost găsit

              E nevoie a se instala " "unul din pachetele 'rzsz' sau 'lrzsz'.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" "

              Sesiunea curentă are deja un transfer de fișiere ZModem în curs.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2543,7 +2578,7 @@ msgstr "" "

              Nici un program ZModem nu a fost găsit în acest sistem.

              E nevoie a " "se instala unul din pachetele 'rzsz' sau 'lrzsz'.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Alege fișiere pentru încărcare ZModem" @@ -2566,144 +2601,171 @@ msgctxt "@title:window" msgid "Configure" msgstr "Configurează" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Caută:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Activează acceleratorii meniului" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Dacă e activată, configurările profilului vor fi ignorate" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Memorizează dimensiunea ferestrei" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Arată titlul ferestrei în bara de titlu" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Focalizează terminalele când indicatorul mausului trece peste ele" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Potrivește folosind expresii regulate" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "La lansarea Konsolei, refolosește procesul existent dacă se poate" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Rulează toate ferestrele de Konsolă în același proces" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Evidențiază toate potrivirile" +msgid "If enabled, profile settings will be ignored" +msgstr "Dacă e activată, configurările profilului vor fi ignorate" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Stabilește dacă căutarea este sensibilă la registru" +msgid "Remember window size" +msgstr "Memorizează dimensiunea ferestrei" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Sensibil la registru" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Pune filele noi:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Elimină bara de titlu și chenarul ferestrei" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Proces și fereastră:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Notificări:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Toate dialogurile vor fi afișate din nou" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Activează toate mesajele „Nu mai întreba”" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Stabilește dacă căutarea trebuie să înceapă de jos" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Caută înapoi" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Stabilește dacă căutarea este sensibilă la registru" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Sensibil la registru" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Proces și fereastră:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Evidențiază toate potrivirile" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Caută:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format msgid "Sets whether search should stop instead of wrapping" -msgstr "Stabilește dacă căutarea trebuie să înceapă de jos" +msgstr "" +"Stabilește dacă căutarea trebuie să se oprească în loc să reia de la început" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" -msgstr "" +msgstr "Fără reluare" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Activează acceleratorii meniului" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Focalizează terminalele când indicatorul mausului trece peste ele" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Toate dialogurile vor fi afișate din nou" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Activează toate mesajele „Nu mai întreba”" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Arată titlul ferestrei în bara de titlu" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Activează părțile sensibile de securitate ale interfeței DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Elimină bara de titlu și chenarul ferestrei" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Potrivește folosind expresii regulate" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 @@ -2731,71 +2793,111 @@ msgstr "Folosește dimensiunea curentă a ferestrei la următoarea lansare" msgid "The window size will be saved upon exiting Konsole" msgstr "Dimensiunea ferestrei va fi salvată la ieșirea din Konsolă" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "La lansarea Konsolei, refolosește procesul existent dacă se poate" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "API-uri DBus ca runCommand vor fi activate" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Lățime miniaturi" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Stabilește lățimea miniaturilor" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Folosește Shift pentru a afișa o miniatură" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Folosește Alt pentru a afișa o miniatură" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Folosește Ctrl pentru a afișa o miniatură" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Căutarea e sensibilă la registru" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Evidențiază toate potrivirile căutării" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Stabilește dacă textul potrivit trebuie evidențiat" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Căutarea se oprește în loc să reia" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" +"Controlează dacă cgroup-uri subordonate se creează pentru file individuale" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2803,126 +2905,130 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Controlează vizibilitatea întregii bare de file" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Controlează dimensiunea mânerului dintre panouri" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Controlează poziția barei de file" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Controlează stilul vizual al barei de file" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Folosește un fișier .css personalizat pentru bara de file" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Fișierul .css de utilizat pentru stilul barei de file" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Permite clicului mijlociu pe filele deschise să le închidă" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Controlează vizibilitatea butonului „Filă nouă” pe bara de file" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of 'New Tab' button on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Controlează vizibilitatea butonului „Filă nouă” pe bara de file" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Controlează unde să fie afișat butonul „Închide fila”" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Controlează unde să fie pusă fila nouă" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Extinde lățimile filelor" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 -#, fuzzy, kde-format -#| msgid "Tab Monitoring" +#, kde-format msgid "Enable memory monitoring:" -msgstr "Monitorizare file" +msgstr "Activează monitorizarea memoriei:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" -msgstr "" +msgstr "Limită memorie:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" -msgstr "" +msgstr " Mo" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/PartInfo.ui:17 @@ -3038,17 +3144,15 @@ msgstr "Sub zona termina&lului" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the left of terminal area" -msgstr "Sub zona termina&lului" +msgstr "La stânga zonei terminalului" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the &right of terminal area" -msgstr "Sub zona termina&lului" +msgstr "La d&reapta zonei terminalului" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 @@ -3058,10 +3162,9 @@ msgstr "Arată butonul de închidere a filei:" #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 -#, fuzzy, kde-format -#| msgid "&On each tab" +#, kde-format msgid "On ea&ch tab" -msgstr "Pe fiec&are filă" +msgstr "Pe fie&care filă" #. i18n: ectx: property (text), widget (QRadioButton, OnTabBar) #: settings/TabBarSettings.ui:195 @@ -3076,125 +3179,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Niciunul" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Arată butonul de căutare a filelor:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Întotdeauna" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Niciodată" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diverse:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Arată butonul „Filă nouă”" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Extinde lățimile filelor individuale până la fereastra plină" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Folosește foaie de stil definită de utilizator:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(niciuna)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Comportament" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Pune filele noi:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "La sfârși&t" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "După fila curen&tă" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Închide fila cu clic mijlociu" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Despărțituri" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Arată antet:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Când este nevoie" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Niciodată" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Dimensiune mâner de tragere:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Mică" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Medie" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Mare" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3243,11 +3364,15 @@ msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Pentru a folosi această funcție, activați Maus->Diverse->Subliniază

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Randare bidirecțională a textului" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4216,46 +4394,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, fuzzy, kde-format #| msgid "Word characters:" msgid "ASCII characters " msgstr "Caractere de cuvânt:" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Match current character" msgid "Brahmic scripts characters" msgstr "Potrivește la caracterul actual" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font:" msgid "Emoji Font:" msgstr "Font:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4265,37 +4443,37 @@ msgstr "" "arabă, farsi și ebraică)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Randare bidirecțională a textului" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Paste &without control characters" @@ -4303,59 +4481,59 @@ msgid "Ignore wcwidth of problematic characters" msgstr "Lipește &fără caractere de control" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Modifică profilul" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Generale" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "File" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Aspect" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Derulare" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatură" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Asocieri de taste" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Maus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avansate" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4364,7 +4542,7 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4372,25 +4550,25 @@ msgstr "" "Denumirea profilului era goală. Alegeți o denumire pentru a putea salva " "configurările." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Există deja un profil cu denumirea „%1”." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4398,17 +4576,24 @@ msgstr[0] "Modificare profil: %2" msgstr[1] "Modificare %1 profile: %2" msgstr[2] "Modificare %1 de profile: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Creează profil nou" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Modifică profilul „%1”" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Niciunul" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4419,7 +4604,7 @@ msgstr[0] " coloană" msgstr[1] " coloane" msgstr[2] " de coloane" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4430,42 +4615,42 @@ msgstr[0] " rând" msgstr[1] " rânduri" msgstr[2] " de rânduri" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Clopoțel de sistem" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Notificări de sistem" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Clopoțel vizual" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignoră evenimente de clopoțel" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Profil implicit pentru sesiunile noi de terminal în %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Modifică mediul" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "O variabilă de mediu pe linie" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4474,23 +4659,23 @@ msgstr[0] " secundă" msgstr[1] " secunde" msgstr[2] " de secunde" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Alegeți dosarul inițial" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Obține noi..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Încărcarea schemei %1 a eșuat." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4499,7 +4684,7 @@ msgstr "" "Această schemă de culori utilizează fundal transparent, care nu pare să fie " "susținut de calculatorul dumneavoastră" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4508,13 +4693,13 @@ msgstr "" "Konsola a fost pornită înainte de activarea efectelor de birou. Trebuie să " "reporniți Konsola pentru a vedea fundalul transparent." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Profil implicit" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4531,7 +4716,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Comandă personalizată pentru redactor de text" @@ -4624,27 +4809,55 @@ msgstr "Alegeți dosarul inițial" msgid "Start in same directory as current session" msgstr "Pornește în același dosar ca sesiunea actuală" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Pornește în același dosar ca sesiunea actuală" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Mediu:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Modifică lista variabilelor de mediu și valorile asociate" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Initial terminal size:" msgid "Initial terminal si&ze:" msgstr "Dimensiune terminal inițială:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4658,33 +4871,33 @@ msgstr "" "html>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal bell mode:" msgid "&Terminal bell mode:" msgstr "Regim clopoțel de terminal:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Text interaction" msgid "Semantic Integration" msgstr "Interacțiune cu textul" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4694,9 +4907,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, fuzzy, kde-format #| msgctxt "@option:radio Never show the split header" #| msgid "Never" @@ -4709,9 +4922,9 @@ msgstr "Niciodată" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4722,9 +4935,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, fuzzy, kde-format #| msgctxt "@option:radio Always show the split header" #| msgid "Always" @@ -4733,30 +4946,29 @@ msgid "Always" msgstr "Întotdeauna" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Blur background" msgid "Red error background:" msgstr "Estompează fundalul" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" -msgstr "" +msgstr "Bare alternante:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 -#, fuzzy, kde-format -#| msgid "Blur background" +#: widgets/EditProfileGeneralPage.ui:639 +#, kde-format msgid "Alternating background:" -msgstr "Estompează fundalul" +msgstr "Fundal alternant:" #. i18n: ectx: property (text), widget (QLabel, note) #: widgets/EditProfileKeyboardPage.ui:17 @@ -4841,10 +5053,9 @@ msgstr "Triplu-clic alege:" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) #: widgets/EditProfileMousePage.ui:104 -#, fuzzy, kde-format -#| msgid "The whole line" +#, kde-format msgid "&The whole line" -msgstr "Întreaga linie" +msgstr "În&treaga linie" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 @@ -5108,120 +5319,126 @@ msgid "Scrollback:" msgstr "Revenire:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Derulează pagină în sus/jos:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Derulează pagina cu jumătate din înălțimea ferestrei" +msgid "Highlight the lines coming into view" +msgstr "Evidențiază liniile ce intră în cadru" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half screen height" -msgid "Half screen heigh&t" -msgstr "Jumătate din înălțimea ecranului" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Derulează pagina cu toată înălțimea ferestrei" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full screen height" -msgid "F&ull screen height" -msgstr "Toată înălțimea ecranului" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Poziția barei de derulare:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Arată bara de derulare în dreapta ferestrei terminalului" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the right side" -#| msgid "Right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Partea dreaptă" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Arată bara de derulare în stânga ferestrei terminalului" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the left side" -#| msgid "Left side" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Partea stângă" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Ascunsă" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Evidențiere:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Evidențiază liniile ce intră în cadru" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Rescurge liniile:" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "Rescurge liniile la redimensionarea terminalului" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Evidențiere:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "Derulează pagina cu jumătate din înălțimea ferestrei" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "Jumă&tate din înălțimea ecranului" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Rearanjează liniile:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Derulează pagina cu toată înălțimea ferestrei" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "Toată înălțimea ecran&ului" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Arată bara de derulare în dreapta ferestrei terminalului" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "Partea &dreaptă" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Arată bara de derulare în stânga ferestrei terminalului" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "Partea &stângă" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "Rearanjează liniile la redimensionarea terminalului" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "Poziția barei de derulare:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5285,10 +5502,9 @@ msgstr "Limitează ieșirea memorizată la un anumit număr de linii" #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 -#, fuzzy, kde-format -#| msgid "Fixed size:" +#, kde-format msgid "Fi&xed size:" -msgstr "Dimensiune fixă:" +msgstr "Dimensiune fi&xă:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 @@ -5304,12 +5520,10 @@ msgstr "Memorizează toată ieșirea produsă de terminal" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgctxt "Save all lines to the scrollback history" -#| msgid "Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "Nelimitat" +msgstr "&Nelimitată" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5319,44 +5533,42 @@ msgstr "Nu memoriza ieșirea precedentă" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Niciuna" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Găsește…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Introduceți aici textul de căutat" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Următoare" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Găsește următoarea potrivire pentru fraza căutată" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Precedentă" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5364,78 +5576,78 @@ msgstr "Găsește potrivirea precedentă pentru fraza căutată" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Arată meniul cu opțiuni" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Închide bara de căutare" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Sensibil la registru" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Stabilește dacă căutarea este sensibilă la registru" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Arată meniul cu opțiuni" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Închide bara de căutare" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Potrivire expresie regulată" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Evidențiază toate potrivirile" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Stabilește dacă textul potrivit trebuie evidențiat" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Caută înapoi" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Stabilește dacă căutarea trebuie să înceapă de jos" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "" +msgstr "Fără reluare" -#: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" -msgstr "Stabilește dacă căutarea trebuie să înceapă de jos" +msgstr "" +"Stabilește dacă căutarea trebuie se oprească în loc să reia de la capăt" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Caută fraza cerută începând de jos" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5446,7 +5658,7 @@ msgstr "Caută fraza cerută începând de sus" msgid "Print Shell" msgstr "Tipărește interpretorul" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5470,10 +5682,9 @@ msgstr "Format de titlu al filei distante:" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/RenameTabWidget.ui:79 -#, fuzzy, kde-format -#| msgid "Tab title format:" +#, kde-format msgid "&Tab title format:" -msgstr "Format titlu filă:" +msgstr "Format pentru &titlul filei:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5483,10 +5694,15 @@ msgstr "Format de titlu al filei normale" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgid "Tab Color:" +#, kde-format msgid "Tab Co&lor:" -msgstr "Culoare filă:" +msgstr "Culoare fi&lă:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Culoare filă cu &activitate:" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5581,36 +5797,58 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Restabilește terminalul" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Deschide o filă nouă" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Caută file" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Închide această filă" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Detașează fila" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Configurează sau redenumește fila…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Închide fila" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Metodele D-Bus sendText/runCommand tocmai au fost folosite. Există " +#~ "îngrijorări de securitate legate de permiterea acestor metode să fie " +#~ "publice. Dacă doriți, puteți schimba aceste metode să fie doar pentru uz " +#~ "intern prin recompilarea Konsolei.

              Acest avertisment va fi arătat doar " +#~ "o dată pentru această instanță a Konsolei.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Sensibil la registru" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Niciuna" @@ -6134,9 +6372,6 @@ msgstr "Închide fila" #~ msgid "New" #~ msgstr "Nouă" -#~ msgid "Select &Tab Color" -#~ msgstr "Alegere &culoare filă" - #~ msgid "Enable transparent backgrounds" #~ msgstr "Activează fundaluri transparente" diff --git a/local/recipes/kde/konsole/source/po/ru/docs/konsole/index.docbook b/local/recipes/kde/konsole/source/po/ru/docs/konsole/index.docbook index bc76d3e07a..add7f6a9e8 100644 --- a/local/recipes/kde/konsole/source/po/ru/docs/konsole/index.docbook +++ b/local/recipes/kde/konsole/source/po/ru/docs/konsole/index.docbook @@ -108,7 +108,7 @@ >Обновление переводаОбновление и редактирование перевода @@ -162,9 +162,9 @@ >&FDLNotice; 28 октября 2021 г. +>23 апреля 2024 г. Приложения KDE 21.12 +>KDE Gear 24.05 + +Режим выделения +В &konsole; поддерживается выделение с помощью клавиатуры. В этом режиме возможно перемещаться по журналу вывода и выделять текст без мыши. + +Вход в этот режим и выход из него можно выполнить с помощью соответствующей комбинации клавиш (по умолчанию это &Ctrl;&Shift;D). + +Клавиша Esc также позволяет выйти из режима выделения с помощью клавиатуры. + +Перемещение курсора: клавиши со стрелками, PageUp, PageDown, Home, End. + +Перемещение курсора в стиле vi: h, j, k, l для перемещения на один символ, Ctrl + b, f, u, d для перехода на страницу вверх или вниз или на половину страницы вверх или вниз. + +Для выделения текста используйте Ctrl или Shift со стрелками. Также можно начать выделение нажатием клавиши V, переместить курсор и снова нажать V для завершения выделения. Комбинация клавиш &Shift;V позволяет выбирать строки целиком (а не символы). + + + + Профили @@ -634,6 +688,213 @@ + +Семантическая интеграция оболочки + +Программа-оболочка, работающая в Konsole, может отправлять управляющие последовательности, которые разделяют отображаемый текст на три типа: запрос от оболочки, ввод пользователя и вывод команды. Использование этой семантической информации позволяет расширить функциональные возможности Konsole. +&Ctrl;&Shift;PgUp и &Ctrl;&Shift;PgDown — прокрутка вверх/вниз к предыдущему/следующему запросу команды. +Визуальные подсказки: + +Над каждым запросом показана линия, цвета запроса сделаны менее яркими, а вывода — более яркими. +Красная полоса слева от строк ввода и вывода тех команд, выполнение которых завершилось ошибкой +Красный фон строк ввода и вывода тех команд, выполнение которых завершилось ошибкой +Серая полоса слева от строк ввода и вывода всех остальных команд +Серый фон строк ввода и вывода всех остальных команд + +Любую из этих подсказок можно настроить (не показывать никогда, показывать всегда, показывать только при показе подсказок с URL-адресами). Настройка выполняется на вкладке Семантическая интеграция страницы Главное в окне настройки параметров профиля. + +Параметры контекстного меню Копировать ввод пользователя, Копировать вывод команды и Копировать без строки запроса позволяют фильтровать выделенное при его копировании в буфер обмена. +Если ничего не выделено, действие копирования в буфер обмена копирует текущую строку ввода (если она не пуста) или последний вывод (если нет текущего ввода). +Нажатие стрелки «вверх» или «вниз» при редактировании объёмного ввода поместит курсор на одну строку выше или ниже (путём отправки соответствующего количества событий клавиши «влево» или «вправо» оболочке). Настраивается в параметрах профиля. +Щелчок мышью по текстовому вводу поместит курсор в место щелчка. Настраивается в параметрах профиля. +Нажатие клавиши &Ctrl; при тройном щелчке мышью по выводу команды приводит к выделению всего вывода этой команды. + + + +Семантическая интеграция настраивается в оболочке. Необходимые команды вставляются в bash нажатием комбинации клавиш &Ctrl;&Alt;]. При работе с другими оболочками (fish, zsh, python и так далее) обратитесь к документации соответствующей программы. + + + + + +Компоновка сложного текста + +На вкладке Компоновка сложного текста страницы Внешний вид диалога Редактирование профиля доступны параметры, управляющие обработкой текста. + + + +Словесный режим — в этом режиме (некоторые) строки отображаются на экране целиком, а не посимвольно. Это позволяет Qt корректно обрабатывать текст, когда форма символа зависит от предшествующих или последующих символов. Посимвольное отображение может привести к неправильному расположению некоторых символов. Пробелы всегда разрывают строки, поэтому они всегда оказываются расположены правильно. Это предотвращает ситуации, когда символы оказываются далеко от своих корректных позиций. + +Использовать единые атрибуты для всего слова — когда этот параметр включён, при обработке слов используются одни и те же атрибуты (цвет текста, полужирное написание, курсивное написание и так далее). Если атрибут меняется на середине слова, то он начнёт действовать только после конца этого слова. Когда этот параметр отключён, при смене атрибутов начинается новое слово. Это приводит к изменению формы и положения символов при перемещении курсора или выделении текста. + +Символы ASCII — группировать символы ASCII в слова согласно приведённому выше описанию. Наиболее заметный эффект от включения этого параметра состоит в том, что станут отображаться программные лигатуры (для шрифтов, где предусмотрена их поддержка). Например, строка <= может быть показана как ⩽. + +Символы индийского письма — группировать символы индийского письма согласно приведённому выше описанию. Когда этот параметр отключён, некоторые слова (в зависимости от шрифта) могут не соединяться надлежащим образом. Когда этот параметр включён, расположение символов индийского письма может нарушаться. Например, третий по счёту символ во второй строке может не находиться непосредственно под третьим символом в первой строке. + +Шрифт эмодзи — этот параметр позволяет указать шрифт для символов эмодзи в Unicode. Если шрифт не выбран, будет использоваться стандартный установленный в профиле шрифт (если нужных глифов в нём не окажется, система задействует резервный шрифт). + +Поддержка вывода справа налево — переупорядочить символы с записью справа налево, чтобы тексты на арабском и иврите отображались корректно. + +Принудительное написание слева направо — строки всегда будут в направлении слева направо. Если этот параметр отключён, направление каждой строки определяется первым символом с выраженной направленностью. + +Табличные символы отменяют вывод справа налево — считать графические символы таблицы явно написанными слева направо. Включение этого параметра позволяет корректно отображать таблицы, содержащие символы с написанием справа налево, но может привести к неверному упорядочению, если такие символы используются в текстах с написанием справа налево. + +Переопределить wcwidth — проблемные символы следуют стандарту Unicode, а не wcwidth() glibc. В настоящее время этот параметр влияет только на мягкий дефис (Unicode 0x00AD), для которого значение wcwidth равняется 1, а ширина по Unicode — 0. Обычно этот параметр следует отключать, когда такие символы в основном используются в командной строке (а включать — когда они только отображаются). + + + + + + +Визуальные подсказки +Помимо тех визуальных подсказок, описание которых приводится в разделе , в &konsole; есть и другие: + + +Вертикальная линия по столбцу 80 (или другому). Этот параметр настраивается на вкладке Прочее страницы Внешний вид диалога Редактирование профиля. + +Для текста в консоли можно сделать накладку с номерами строк. Номера строк отображаются красным цветом справа в конце каждой строки. Строки нумеруются последовательно (начиная с первой (верхней) строки в журнале вывода). Показ номеров строк можно настроить на странице Дополнительно диалога Редактирование профиля. Цикличный переход между тремя режимами показа также можно выполнять путём нажатия соответствующей комбинации клавиш. По умолчанию это &Ctrl;&Alt;\ + + + @@ -1244,7 +1505,7 @@ Various search improvements Разделяет окно на левую и правую части с одинаковым набором вкладок. +>Разделяет окно на левую и правую части с одинаковым набором вкладок Любой вывод на одной вкладке дублируется и во второй вкладке. + +&Ctrl;&Shift;\ ВидРазделить окноОдинаковый размер во всех представлениях + +Устанавливает одинаковый размер для всех частей окна + +
              + +ВидОдноразовые мониторы +При использовании указанных далее способов отслеживания уведомление отправляется только один раз, а отслеживание прекращается + + + + +&Ctrl;&Shift;R ВидМонитор запроса +Переключает мониторинг текущей вкладки на наличие запроса от оболочки +Когда оболочка отправляет запрос, в &konsole; будет отображаться уведомление. Этот параметр доступен только тогда, когда в оболочке включена семантическая интеграция. + + Переключает мониторинг текущей вкладки на завершение процессаПереключает мониторинг текущей вкладки на завершение процесса. Если параметр включён, при завершении текущего процесса в &konsole; будет показано уведомление На странице Общие возможно настроить видимость строки меню, запоминание размера окна &konsole;, запуск всех окон &konsole; внутри одном процессе, включение клавиш быстрого доступа, показ заголовка окна в строке заголовка, скрытие заголовка и границ окна, а также передачу фокуса терминалам при наведении на них указателя мыши. Кроме того, возможно настроить регистрозависимый поиск, использование регулярных выражений, подсветку всех совпадений и направление поиска (по умолчанию: возможно настроить видимость строки меню, запоминание размера окна &konsole;, запуск всех окон &konsole; в одном процессе, включение клавиш быстрого доступа, показ заголовка окна в строке заголовка, скрытие заголовка и границ окна, а также передачу фокуса терминалам при наведении на них указателя мыши. Кроме того, возможно настроить регистрозависимый поиск, использование регулярных выражений, подсветку всех совпадений и направление поиска (по умолчанию: Искать назад). На странице Общие также имеется кнопка также имеется кнопка Сбросить запреты повторного показа уведомлений (если повторный показ уведомлений был отключён ранее, нажатие этой кнопки позволит снова включить эту функцию). @@ -2349,7 +2676,7 @@ Various search improvements В параметрах журнала вывода возможно изменить настройки размера журнала. Все изменения применяются только для текущей вкладки и не будут сохранены в профиле. +> возможно изменить настройки размера журнала. Все изменения применяются только для текущей вкладки и не будут сохранены в профиле. @@ -2413,15 +2740,11 @@ Various search improvements --builtin-profile Использовать внутренний профиль FALLBACK. Упрощённый вариант от FALLBACK/.Использовать встроенный профиль вместо текущего профиля по умолчанию. @@ -2707,7 +3030,7 @@ Various search improvements &konsole; также допускает использование типовых параметров &Qt; и &kf5-full;, смотрите man для qt5options и kf5options. +>&konsole; также допускает использование типовых параметров &Qt; и kf6-full; — смотрите man-страницы qt6options и kf6options. @@ -2953,7 +3276,7 @@ Space+Ctrl >Ansi Если этот режим включён, &konsole; использует управляющие последовательности кодов ANSI. +>Если этот режим включён, &konsole; использует управляющие последовательности кодов ANSI. Если этот режим выключен, &konsole; использует управляющие последовательности кодов VT52. diff --git a/local/recipes/kde/konsole/source/po/ru/konsole.po b/local/recipes/kde/konsole/source/po/ru/konsole.po index 1181296bb4..4466fcafd2 100644 --- a/local/recipes/kde/konsole/source/po/ru/konsole.po +++ b/local/recipes/kde/konsole/source/po/ru/konsole.po @@ -1,7 +1,7 @@ # KDE3 - konsole.pot Russian translation # Copyright (C) 1998, KDE Team. # -# SPDX-FileCopyrightText: 2018, 2019, 2020, 2021, 2022, 2023, 2024 Alexander Yavorsky +# SPDX-FileCopyrightText: 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Alexander Yavorsky # Denis Pershin , 1998. # Hermann Zheboldov , 2000. # Leonid Kanter , 2002-2005. @@ -11,21 +11,21 @@ # Alexander Potashev , 2009, 2010, 2011, 2014, 2015, 2016, 2017, 2019. # Yuri Efremov , 2012, 2013. # Alexander Lakhin , 2013, 2014. -# Olesya Gerasimenko , 2022. +# SPDX-FileCopyrightText: 2022, 2024, 2025, 2026 Olesya Gerasimenko # Alexander Yavorsky , 2024. msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-02-28 13:54+0300\n" -"Last-Translator: Alexander Yavorsky \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-21 14:08+0200\n" +"Last-Translator: Alexander Yavorskiy \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.08.3\n" +"X-Generator: Lokalize 25.12.2\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Environment: kde\n" @@ -68,7 +68,7 @@ msgstr "Вид" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Разделить окно" @@ -104,7 +104,7 @@ msgid "S&crollback" msgstr "&Журнал" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Панель управления сеансом" @@ -176,46 +176,58 @@ msgstr "Запустить в отдельном процессе." #, kde-format msgctxt "@info:shell" msgid "Show the menubar, overriding the default setting" -msgstr "Показывать меню, даже если в настройках указано иное." +msgstr "Показывать меню, даже если в параметрах настройки указано иное." #: Application.cpp:67 #, kde-format msgctxt "@info:shell" msgid "Hide the menubar, overriding the default setting" -msgstr "Скрыть меню, даже если в настройках указано иное." +msgstr "Скрывать меню, даже если в параметрах настройки указано иное." #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" -msgstr "Показывать вкладки, даже если в настройках указано иное." +msgid "Show all the toolbars, overriding the default setting" +msgstr "Показать все панели инструментов, переопределив настройку по умолчанию" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" -msgstr "Скрыть вкладки, даже если в настройках указано иное." +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Скрыть все панели инструментов, переопределив настройку по умолчанию" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Показывать вкладки, даже если в параметрах настройки указано иное." + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Скрывать вкладки, даже если в параметрах настройки указано иное." + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Запустить Konsole в полноэкранном режиме." -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" "Отключить полупрозрачный фон, даже если графическая система поддерживает его." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Показать список доступных профилей." -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -223,13 +235,13 @@ msgstr "" "Перечислить все свойства профиля с их названиями и типами (используется с " "параметром -p)." -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Изменить значение свойства профиля." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -239,7 +251,7 @@ msgstr "" "Команда для выполнения. Все последующие аргументы считаются частью этой " "команды, поэтому указывайте её в самом конце." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -250,17 +262,17 @@ msgstr "" "нарушает работоспособность, например, при использовании параметра «--new-" "tab». В основном, используется для целей отладки." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Аргументы для команды." -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" -msgstr "Скрыть/показать фоновое окно" +msgstr "Скрыть или показать фоновое окно" #: BookmarkHandler.cpp:107 #, kde-format @@ -274,157 +286,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Текст" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Фон" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Цвет 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Цвет 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Цвет 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Цвет 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Цвет 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Цвет 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Цвет 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Цвет 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Цвет текста (насыщенный)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Цвет фона (насыщенный)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Цвет 1 (насыщенный)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Цвет 2 (насыщенный)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Цвет 3 (насыщенный)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Цвет 4 (насыщенный)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Цвет 5 (насыщенный)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Цвет 6 (насыщенный)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Цвет 7 (насыщенный)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Цвет 8 (насыщенный)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Цвет текста (бледный)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Цвет фона (бледный)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Цвет 1 (бледный)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Цвет 2 (бледный)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Цвет 3 (бледный)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Цвет 4 (бледный)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Цвет 5 (бледный)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Цвет 6 (бледный)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Цвет 7 (бледный)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Цвет 8 (бледный)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -681,6 +693,38 @@ msgstr "По верхнему краю" msgid "AaZz09..." msgstr "AaZz09…" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Хост" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "Поддержка контейнеров недоступна при запуске Konsole внутри Flatpak." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [по умолчанию]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -706,11 +750,10 @@ msgid "Deselect All" msgstr "Отменить выбор" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, fuzzy, kde-format -#| msgid "Preview:" +#, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" -msgstr "Образец:" +msgstr "Предварительный просмотр цвета" #: filterHotSpots/FileFilterHotspot.cpp:158 #, kde-format @@ -728,7 +771,7 @@ msgstr "" msgid "Copy Location" msgstr "Копировать расположение" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Создание миниатюры…" @@ -759,13 +802,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Выбор шрифта" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Показывать все шрифты" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -808,17 +851,17 @@ msgstr "Привязки клавиш" msgid "Output" msgstr "Вывод" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Новый список привязок клавиш" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Изменение списка привязок клавиш" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Для сохранения список привязок клавиш требуется задать его описание." @@ -826,7 +869,7 @@ msgstr "Для сохранения список привязок клавиш #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -860,226 +903,226 @@ msgstr "Ввод:" msgid "Output:" msgstr "Вывод:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Эмулятор терминала" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© Разработчики Konsole, 1997–2022" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Основной сопровождающий, исправления и улучшения" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Предыдущий сопровождающий, перенос на KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Первоначальный автор" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" "Значительный рефакторинг кода, исправления ошибок и значительные улучшения" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Исправления и улучшения" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Исправления и значительные улучшения" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Общие улучшения" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Исправление ошибок" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Поддержка Solaris и журнала вывода" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Исправление ошибок и ускорение запуска" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Улучшения" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1089,13 +1132,13 @@ msgstr "" "Компонент терминала\n" "Панель инструментов и названия сеансов" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1105,25 +1148,25 @@ msgstr "" "Компонент встраиваемого терминала\n" "Общие улучшения" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Визуальные эффекты" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1133,132 +1176,132 @@ msgstr "" "Код из проекта kvt\n" "Общие улучшения" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Схемы и выделение текста" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Перенос на SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Перенос на FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Благодарности остальным принявшим участие.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Новая вкладка" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Создать копию вкладки" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Новое &окно" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Закрыть окно" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Закладки" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Цветовая схема окна" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Управление профилями…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Открыть меню" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Сохранить макет вкладки…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Загрузить макет вкладки…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1269,67 +1312,67 @@ msgstr[1] "В этом окне работают %1 процесса, вы де msgstr[2] "В этом окне работают %1 процессов, вы действительно хотите выйти?" msgstr[3] "В этом окне работает %1 процесс, вы действительно хотите выйти?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Подтверждение выхода" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Закрыть о&кно" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Закрыть текущую &вкладку" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "В этом окне открыто несколько терминалов (%1). Действительно выйти?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Профили" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Общие" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Память" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Панель вкладок / Разделение окна" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Временные файлы" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Миниатюры" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1413,7 +1456,7 @@ msgstr "Сохранить" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Обновить" @@ -1425,29 +1468,29 @@ msgid "Cancel" msgstr "Отмена" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Быстрые команды" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Быстрый доступ" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Быстрые команды не найдены. Вы можете добавить их в пункте меню Модули -> " "Быстрые команды." -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Модули - Быстрые команды" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Быстрые команды" @@ -1489,7 +1532,7 @@ msgstr "" "содержащей несколько конфигураций." #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Подтвердите удаление «%1»." @@ -1542,11 +1585,11 @@ msgid "%1 is a folder for SSH entries" msgstr "Для хранения записей о SSH-подключениях используется папка «%1»" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Конфигурация SSH" @@ -1609,24 +1652,24 @@ msgid "" msgstr "Ошибка передачи команды SSH из приложения оболочки (bash, zsh, sh...)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Ключ SSH:" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Удалить" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Не изменять" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1635,70 +1678,72 @@ msgstr "" "Подтвердите удаление папки «%1»,\n" "содержащей конфигурации для подключений SSH." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Удаление конфигураций SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" +"Профиль SSH импортирован
              Некоторые параметры доступны только для " +"чтения." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Не указано имя хоста" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Не указно имя" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Если включён параметр «Конфигурация SSH», то использовать параметры «Ключ " "SSH» и «Имя пользователя» не требуется." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Необходимо задать имя пользователя или ключ SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Папка отсуствует" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Для сеанса SSH необходимо задать используемый им профиль Konsole" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Не удалось удалить эту папку" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Удалить папку и всё её содержимое" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Щёлкните дважды, чтобы изменить имя папки" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Запись, добавленная автоматически, не может быть удалена." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Удалить выбранную запись" @@ -1890,25 +1935,25 @@ msgstr "Параметры вывода" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Э&кономный режим (чёрный текст, без фона)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Масштабировать вывод" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Встроенный" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Профиль по умолчанию" @@ -1967,17 +2012,41 @@ msgstr "Щёлкните дважды, чтобы задать или измен msgid "Tab Properties" msgstr "Свойства вкладки" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Сохранить вывод сеанса %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "Неверный адрес «%1», вывод не будет сохранён." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Не удалось создать файл автосохранения в %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Остановка автосохранения из-за переключения экранов." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Файл автосохранения был изменён в другой программе, что делает невозможным " +"последующее автосохранение." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Не удалось обновить состояние автосохранения в ответ на изменения вывода." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2013,81 +2082,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Кемпбел" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Тёмная пастель" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Зелёный на чёрном" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Цвета Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Красный на чёрном" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Выцветшие цвета (тёмный вариант)" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Выцветшие цвета (светлый вариант)" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Белый на чёрном" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "По умолчанию (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Консоль Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Консоль Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Поиск…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Введите название вкладки, которую ищете" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Сигнал в «%1» (сеанс «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Невозможно найти исполняемый файл:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Предупреждение: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Невозможно найти интерактивную оболочку." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2096,399 +2182,399 @@ msgstr "" "Невозможно найти «%1», вместо этого будет запущена программа «%2». Проверьте " "параметры своего профиля." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Невозможно запустить программу «%1» с параметрами «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Нет активности в «%1» (сеанс «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Показать сеанс" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Только что были использованы методы D-Bus sendText/runCommand. Разрешение " -"публичного доступа к этим методам может быть небезопасным. Чтобы разрешить " -"только внутреннее использование этих методов, необходимо перекомпилировать " -"Konsole с другими параметрами.

              Это предупреждение больше не будет " -"показываться, пока вы не запустите следующий экземпляр Konsole.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Завершена." -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Сбой программы «%1»." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Программа «%1» завершилась с кодом %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Состояние ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Активность в «%1» (сеанс «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "В параметрах настройки отключены уязвимые части API DBus." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Процесс «%1» завершил работу в сеансе «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole не может открыть закладку: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Искать «%1» в" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Настроить веб-сокращения…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Закрыть с&еанс" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Открыть диспетчер файлов" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Копировать" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Разделить окно по вертикали" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Разделить окно по горизонтали" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Копировать без строки запроса" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Копировать ввод пользователя" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Копировать вывод команды" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Вставить выделенное" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Поиск в Интернете" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Выделить всё" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Режим &выбора" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Выделить &строку" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Сохранить вывод в файле…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Автоматически сохранить вывод в файле..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Остановить автосохранение" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Пе&чать экрана…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Настроить журнал вывода…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Очистить журнал предыдущего вывода" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Очистить журнал и экран" -#: session/SessionController.cpp:757 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:795 +#, kde-format msgid "Next Profile" -msgstr "Изменить профиль" +msgstr "Следующий профиль" -#: session/SessionController.cpp:762 -#, fuzzy, kde-format -#| msgid "Previous View" +#: session/SessionController.cpp:800 +#, kde-format msgid "Previous Profile" -msgstr "Предыдущая вкладка" +msgstr "Предыдущий профиль" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Сменить профиль" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Установить кодировку" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Разрешить отслеживание курсора мыши" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Только чтение" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Настроить или переименовать вкладку…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Во &все вкладки данного окна" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "В &некоторые вкладки…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "Н&и в одну вкладку" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Направлять ввод также" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&Передать по ZModem…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Одноразовые мониторы" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Монитор &запроса" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Монитор &активности" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Монитор &простоя" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Монитор завершения работы процесса" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Увеличить размер шрифта" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Уменьшить размер шрифта" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Сбросить размер шрифта" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Отправить сигнал" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Прио&становить процесс (STOP)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "В&озобновить процесс (CONT)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "П&еречитать конфигурацию (HUP)" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Прер&вать процесс (INT)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Завершить процесс (TERM)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Уничтожить процесс (KILL)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Пользовательский &1 (USR1)" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Пользовательский &2 (USR2)" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Создать новый профиль…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Настроить профиль…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "В сеансе выполняется программа. Прекратить её работу?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "В сеансе выполняется программа «%1». Прекратить её работу?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Подтверждение выхода" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Закрыть программу" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "В сеансе выполняется программа. Прекратить её работу?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "В сеансе выполняется программа «%1». Прекратить её работу?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Завершить выполнение" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Запрос оболочки показан в сеансе «%1»" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Открыть текущую папку с помощью" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Сохранить получаемый по ZModem файл в…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2499,14 +2585,14 @@ msgstr "" "программ для работы с этим протоколом.

              Вы можете установить пакет " "«rzsz» или «lrzsz».

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" "

              В данном сеансе уже выполняется передача файла по протоколу ZModem.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2515,7 +2601,7 @@ msgstr "" "

              Не найдено программ для работы с протоколом ZModem.

              Вы можете " "установить пакет «rzsz» или «lrzsz».

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Выберите файлы для передачи по ZModem" @@ -2538,56 +2624,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "Настройка" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Поиск:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Включить клавиши быстрого доступа" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Если включено, параметры профиля игнорируются" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Запоминать размер окна" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Показывать заголовок окна в строке заголовка" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Передавать фокус в терминалы при перемещении над ними указателя мыши" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Использовать регулярные выражения" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2596,88 +2635,160 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Запускать все окна Konsole внутри одного процесса" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Подсветить все совпадения" +msgid "If enabled, profile settings will be ignored" +msgstr "Если включено, параметры профиля игнорируются" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "Запоминать размер окна" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, kde-format +msgid "Force new tabs" +msgstr "Принудительное открывать новые вкладки" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "Прослушивать коды терминала ZModem" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "Показывать ход выполнения в панели задач" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "Уведомления:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "Параметр включает режим поиска от конца к началу" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "Искать назад" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, kde-format msgid "Sets whether the search is case sensitive" msgstr "Параметр включает регистрозависимый поиск" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, kde-format msgid "Case sensitive" msgstr "С учётом регистра" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "Скрыть заголовок и границы окна" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "Процесс и окно:" -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Подсветить все совпадения" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Поиск:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) +#. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format +msgid "Sets whether search should stop instead of wrapping" +msgstr "Параметр включает остановку поиска вместо повторения цикла" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) #: settings/GeneralSettings.ui:206 #, kde-format -msgid "Notifications:" -msgstr "Уведомления:" +msgid "No wrap" +msgstr "Без повторения" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Включить клавиши быстрого доступа" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Передавать фокус в терминалы при перемещении над ними указателя мыши" #. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 +#: settings/GeneralSettings.ui:244 #, kde-format msgid "All dialogs will be shown again" msgstr "Все уведомления снова начнут показываться" #. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 +#: settings/GeneralSettings.ui:247 #, kde-format msgid "Enable all \"Don't Ask Again\" messages" msgstr "Сбросить запреты повторного показа уведомлений" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 #, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "Включает режим поиска от конца к началу" +msgid "Show window title on the titlebar" +msgstr "Показывать заголовок окна в строке заголовка" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 #, kde-format -msgid "Search backwards" -msgstr "Искать назад" +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Включить уязвимые части API DBus" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) -#. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" -msgid "Sets whether search should stop instead of wrapping" -msgstr "Включает режим поиска от конца к началу" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 #, kde-format -msgid "No wrap" -msgstr "" +msgid "Remove window titlebar and frame" +msgstr "Скрыть заголовок и границы окна" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Использовать регулярные выражения" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 @@ -2705,71 +2816,112 @@ msgstr "Восстановить текущие размеры при перез msgid "The window size will be saved upon exiting Konsole" msgstr "Сохранять размер окна при выходе из Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"При запуске Konsole создавать новую вкладку вместо создания новых окон, если " +"возможно" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Показывать индикатор выполнения в панели задач" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "Ход выполнения сценария будет показан в панели задач" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "Будет включён API DBus (например, runCommand)" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Прослушивать коды терминала ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" +"Автоматическая отправка и получение файлов через последовательные соединения" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Ширина миниатюры" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" -msgstr "Ширина миниатюры" +msgstr "Параметр устанавливает ширину миниатюры" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Использовать клавишу Shift для просмотра миниатюры" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Использовать клавишу Alt для просмотра миниатюры" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Использовать клавишу Ctrl для просмотра миниатюры" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Искать с учётом регистра" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Подсвечивать все совпадения" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" -msgstr "При включении параметра совпадения будет подсвечиваться" +msgstr "Параметр включает подсветку совпадений" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Поиск останавливается вместо повторения цикла" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Контролировать создание дочерних cgroups для отдельных вкладок" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2779,80 +2931,86 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Управление видимостью всей панели вкладок" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Настройка ширины разделителей панелей" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Управление расположением панели вкладок" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Управление внешним видом панели вкладок" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Использовать дополнительный .css для панели вкладок" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Файл .css для оформления панели вкладок" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Нажатие на вкладке средней кнопкой закрывает её" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Управление видимостью кнопки «Новая вкладка» на панели вкладок" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Управление видимостью кнопки «Поиск вкладок» на панели вкладок" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Управление местом отображения кнопки «Закрыть вкладку»" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Управление местоположением новой вкладки" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Растягивать панель вкладок" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" "Использовать системный каталог временных файлов для хранения журналов вывода" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" @@ -2860,13 +3018,13 @@ msgstr "" "вывода" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Использовать указанный каталог для хранения журналов вывода" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Использовать указанный каталог для хранения журналов вывода" @@ -2878,33 +3036,31 @@ msgid "Enable memory monitoring:" msgstr "Отслеживать использование памяти:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Изменения вступят в силу после перезапуска. Если этот параметр включён, " "постоянное использование памяти терминалом Konsole, превышающее указанное " "значение, приведёт к тому, что служба systemd-oomd завершит работу вкладок, " "содержащих процессы, интенсивно использующие память. Обратите внимание, что " "включение параметра может привести к замедлению работы при значительном " -"использовании памяти, а указание слишком низких значений все равно может " +"использовании памяти, а указание слишком низких значений всё равно может " "привести к завершению работы Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Ограничение памяти:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " МБ" @@ -3030,17 +3186,15 @@ msgstr "&Ниже области терминала" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the left of terminal area" -msgstr "&Ниже области терминала" +msgstr "&Слева от области терминала" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the &right of terminal area" -msgstr "&Ниже области терминала" +msgstr "Справа &от области терминала" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 @@ -3050,8 +3204,7 @@ msgstr "Кнопка «Закрыть»:" #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 -#, fuzzy, kde-format -#| msgid "&On each tab" +#, kde-format msgid "On ea&ch tab" msgstr "На &каждой вкладке" @@ -3059,7 +3212,7 @@ msgstr "На &каждой вкладке" #: settings/TabBarSettings.ui:195 #, kde-format msgid "On &the tab bar" -msgstr "На панели вкладок" +msgstr "На &панели вкладок" #. i18n: ectx: property (text), widget (QRadioButton, None) #: settings/TabBarSettings.ui:205 @@ -3068,125 +3221,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Не показывать" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Кнопка «Поиск вкладок»:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Всегда" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Никогда" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Прочее:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Показывать кнопку «Новая вкладка»" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Растягивать панель вкладок до ширины окна" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Использовать дополнительную таблицу стилей:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(не использовать)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Поведение" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Размещать новые вкладки:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "В кон&це" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "После &текущей" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Закрывать вкладку щелчком средней кнопкой мыши" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Разделение окна" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Показывать заголовок:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "При необходимости" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Никогда" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Ширина разделителей:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Маленькая" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Средняя" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Большая" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3238,13 +3409,12 @@ msgstr " пикс." #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Для использования этой функции включите параметр Мышь>Прочее>Подчёркивать файлы в настройках профиля

              " +"style=\" font-weight:600;\">Мышь>Прочее>Подчёркивать файлы в " +"разделе настройки профиля.

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3282,12 +3452,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Создавать миниатюры" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Размер: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3296,57 +3466,57 @@ msgstr[1] "Действительно вставить %1 символа?" msgstr[2] "Действительно вставить %1 символов?" msgstr[3] "Действительно вставить %1 символ?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Подтверждение вставки" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" "Символ End-Of-Text / Interrupt (^C): Может вызвать выход из текущего процесса" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" "Символ End-Of-Transmission (^D) End of transmission: Может вызвать выход из " "текущего процесса" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" -msgstr "Символ Bell (^G ): Воспроизведение звукового сигнала" +msgstr "Символ Bell (^G ): воспроизведение звукового сигнала" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Символ Backspace (^H): Удаление символа слева" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Символ Device Control Three / XOFF (^S): Приостановка вывода" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" "Символ Substitute / Suspend (^Z): Может вызвать приостановку текущего " "процесса" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Символ Escape (^[): Используется для управления состоянием терминала" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Символ Separator / Quit: Может прервать выполнение текущего процесса" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3355,31 +3525,31 @@ msgstr "" "Вставляемый текст содержит скрытые управляющие символы. Удалить управляющие " "символы из вставляемого текста?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Подтверждение вставки" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "&Удалить скрытые символы и вставить" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Вставить без изменения" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "О&тменить вставку" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been приостановлен по нажатию Ctrl+S. Нажмите Ctrl+Q для " "продолжения вывода." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Этот терминал открыт только для чтения." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Сменить рабочий каталог на" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Вставить адрес" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Разделить окно" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Разделить окно по вертикали" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Разделить окно по горизонтали" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Разделить окно автоматически" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Разделить окно следующей вкладки по вертикали" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Разделить окно следующей вкладки по горизонтали" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Разделить окно следующей вкладки автоматически" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Новая вкладка с макетом 2×2" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Новая вкладка с макетом 2×1" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Новая вкладка с макетом 1×2" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Увеличить размер панели" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Уменьшить размер панели" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Отделить текущий &вид" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Отделить текущую в&кладку" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Следующая вкладка" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Предыдущая вкладка" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Активировать верхний терминал" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Активировать нижний терминал" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Активировать левый терминал" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Активировать правый терминал" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Активировать следующий терминал" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Активировать предыдущий терминал" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Переключиться последнюю на вкладку" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Последние вкладки" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Переключиться между двумя вкладками" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Последние вкладки (в обратном порядке)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Развернуть текущее представление" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Развернуть текущее представление" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Развернуть текущую панель" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Развернуть текущую панель" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Переместить вкладку вправо" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Переместить вкладку влево" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Настроить семантическую интеграцию (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Показывать семантические подсказки" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" -msgstr "Показывать номеров строк" +msgstr "Показывать номера строк" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Одинаковый размер во всех представлениях" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Переключиться на вкладку %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Семантические подсказки " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Номера строк" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Сохранение макета вкладки" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Макет окна Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3647,7 +3829,7 @@ msgstr "" "Ошибка сохранения макета.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3657,13 +3839,13 @@ msgstr "" "Ошибка загрузки макета.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Загрузка макета вкладки" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3751,10 +3933,9 @@ msgstr "Управление потоком" #. i18n: ectx: property (text), widget (QLabel, label_14) #: widgets/EditProfileAdvancedPage.ui:222 -#, fuzzy, kde-format -#| msgid "Default character encoding:" +#, kde-format msgid "&Default character encoding:" -msgstr "Кодировка по умолчанию:" +msgstr "&Кодировка по умолчанию:" #. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) #: widgets/EditProfileAdvancedPage.ui:242 @@ -3762,38 +3943,44 @@ msgstr "Кодировка по умолчанию:" msgid "Shortcut for peeking the primary screen:" msgstr "Комбинация клавиш для просмотра основного экрана:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 -#, fuzzy, kde-format -#| msgid "Line numbers " +#, kde-format +msgid "Set interval between autosaves:" +msgstr "Интервал автосохранения:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " мс" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" -msgstr "Номера строк" +msgstr "Номера строк:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 -#, fuzzy, kde-format -#| msgid "&Never" +#: widgets/EditProfileAdvancedPage.ui:285 +#, kde-format msgctxt "Never" msgid "&Never" msgstr "&Никогда" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 -#, fuzzy, kde-format -#| msgctxt "When showing URL hints" -#| msgid "When URL hints show" +#: widgets/EditProfileAdvancedPage.ui:295 +#, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" -msgstr "Активация ссылок" +msgstr "&Активация ссылок" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 -#, fuzzy, kde-format -#| msgctxt "Always" -#| msgid "Always" +#: widgets/EditProfileAdvancedPage.ui:305 +#, kde-format msgctxt "Always" msgid "A&lways" -msgstr "Всегда" +msgstr "&Всегда" #. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) #: widgets/EditProfileAppearancePage.ui:36 @@ -3825,7 +4012,7 @@ msgstr "Изменить выбранную цветовую схему" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3879,35 +4066,38 @@ msgstr "Использовать полужирный шрифт с яркими #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" -"Использовать символы из шрифта для рисования линий\n" -"вместо встроенного в Konsole алгоритма." +"Использовать символы из шрифта для рисования линий вместо встроенного в " +"Konsole алгоритма" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Использовать символы из шрифта для рисования линий" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 -#, fuzzy, kde-format -#| msgid "" -#| "Use the selected font for line characters instead of the builtin code" +#, kde-format msgid "" "Use the selected font for unicode Braille characters instead of the builtin " "code" msgstr "" -"Использовать символы из шрифта для рисования линий\n" -"вместо встроенного в Konsole алгоритма." +"Использовать символы Брайля в Unicode из выбранного шрифта, а не из " +"встроенного кода" #. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:201 -#, fuzzy, kde-format -#| msgid "Use line characters contained in font" +#, kde-format msgid "Use unicode Braille characters contained in font" -msgstr "Использовать символы из шрифта для рисования линий" +msgstr "Использовать символы Брайля в Unicode из шрифта" #. i18n: ectx: attribute (title), widget (QWidget, cursorTab) #: widgets/EditProfileAppearancePage.ui:209 @@ -4011,29 +4201,43 @@ msgid "Make the cursor blink regularly" msgstr "Курсор, мигающий постоянно" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Включено" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Анимация:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Плавная анимация курсора" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Прочее" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Окно:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4041,190 +4245,190 @@ msgid "" msgstr "Показывать в центре окна новый размер терминала при его изменении" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Показывать размеры терминала при их изменении" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Всегда инвертировать цвета текстового выделения" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Интенсивность затемнения:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Цвет:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Выбор цвета рамки" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Неактивные терминалы:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Активные терминалы:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Содержимое терминала" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Межстрочный интервал:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Расстояние между строками в пикселах" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " пикс." #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Поля:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Выравнивание по центру:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Затемнение цветов в неактивных окнах" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Затемнять" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Выделение активного окна цветной рамкой" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Рамка" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Вертикальная линия по столбцу:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Компоновка сложного текста

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Компоновка сложного текста" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Использовать словесный режим для компоновки текста" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Словесный режим" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " "when rendering)" msgstr "" -"Не учитывать изменения аттрибутов посреди слов (если параметр отключён, то " -"изменение аттрибута приведёт к разрыву слова при его отображении)" +"Не учитывать изменения атрибутов посреди слов (если параметр отключён, то " +"изменение атрибута приведёт к разрыву слова при его отображении)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" -msgstr "Использовать единые аттрибуты для всего слова" +msgstr "Использовать единые атрибуты для всего слова" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Группировать символы ASCII в слова" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Символы ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Группировать символы индийского письма в слова" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Символы индийского письма" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Шрифт эмодзи:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4232,13 +4436,13 @@ msgid "" msgstr "Поддержка вывода справа налево (только для арабского, фарси и иврита)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Поддержка вывода справа налево" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4246,84 +4450,84 @@ msgstr "" "первым символом" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" -msgstr "Принудительно использовать направление написания слева направо" +msgstr "Принудительное написание слева направо" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" "Обрабатывать символы рисования таблиц как признак написания слева направо" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" -msgstr "Табличные символы переопределения режима BiDi" +msgstr "Табличные символы отменяют вывод справа налево" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Игнорировать свойство wcwidth некоторых символов" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Переопределить wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Изменить профиль" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Главное" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Вкладки" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Внешний вид" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Журнал" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Клавиатура" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Схема привязок клавиш" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Мышь" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Дополнительно" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4336,7 +4540,7 @@ msgstr "" "параметры, следует изменить права доступа к файлу конфигурации, либо " "сохранить изменения в новый профиль." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4344,25 +4548,25 @@ msgstr "" "Поле названия профиля не может быть пустым. Для сохранения параметров " "заполните это поле." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Профиль с названием «%1» уже существует." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Название профиля превышает максимально допустимую длину (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Название профиля содержит недопустимые символы (выделены): %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4371,17 +4575,22 @@ msgstr[1] "Изменение %1 профиля: %2" msgstr[2] "Изменение %1 профилей: %2" msgstr[3] "Изменение %1 профиль: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Создать новый профиль" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Редактирование профиля «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Не показывать" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4393,7 +4602,7 @@ msgstr[1] " столбца" msgstr[2] " столбцов" msgstr[3] " столбец" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4405,42 +4614,42 @@ msgstr[1] " строки" msgstr[2] " строк" msgstr[3] " строка" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Системный сигнал" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Системные уведомления" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Визуальный сигнал" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Игнорировать сигналы" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Сделать профилем по умолчанию для новых сеансов в %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Изменить переменные среды" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Одна строка — одна переменная" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4450,23 +4659,23 @@ msgstr[1] " секунды" msgstr[2] " секунд" msgstr[3] " секунда" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Выбор начального каталога" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Загрузить…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Не удалось загрузить схему %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4475,22 +4684,21 @@ msgstr "" "В выбранной цветовой схеме фон должен быть прозрачным, но данная система не " "настроена соответствующим образом" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -"Konsole был запущен до того, как эффекты рабочего стола были включены. Чтобы " +"Запуск Konsole был выполнен до включения эффектов рабочего стола. Чтобы " "активировать прозрачный фон, перезапустите приложение." -#: widgets/EditProfileDialog.cpp:1913 -#, fuzzy, kde-format -#| msgid "Default profile" +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format msgid "Default for file type" -msgstr "Профиль по умолчанию" +msgstr "По умолчанию для типа файлов" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4511,15 +4719,15 @@ msgstr "" " PATH — будет заменено на полный путь к текстовому файлу;\n" " LINE — будет заменено на номер строки;\n" " COLUMN (необязательное поле) — будет заменено на номер столбца.\n" -"Примечание: аргументы PATH:LINE:COLUMN следует указывать с учётом " -"синтаксиса, поддерживаемого тектовым редактором, к примеру: «gedit +LINE:" -"COLUMN PATH»\n" +"Примечание: аргументы PATH:LINE:COLUMN следует указывать с учётом\n" +"синтаксиса, поддерживаемого текстовым редактором, например:\n" +"gedit +LINE:COLUMN PATH\n" "\n" "Если поля PATH или LINE не указаны, то данный параметр\n" "не будет использован, а файл будет открыт в приложении\n" "для редактирования текста, используемом по умолчанию." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Команда для запуска редактора текста" @@ -4578,10 +4786,9 @@ msgstr "/bin/sh" #. i18n: ectx: property (text), widget (QLabel, label_9) #: widgets/EditProfileGeneralPage.ui:157 -#, fuzzy, kde-format -#| msgid "Initial directory:" +#, kde-format msgid "I&nitial directory:" -msgstr "Начальный каталог:" +msgstr "&Начальный каталог:" #. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:170 @@ -4610,27 +4817,56 @@ msgstr "Выбор начального каталога" msgid "Start in same directory as current session" msgstr "Открывать каталог текущего сеанса" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"При открытии новой вкладки или разделении автоматически входить в тот же " +"контейнер(Toolbox, Distrobox), что и в текущем сеансе" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Входить в контейнер, использующийся в текущем сеансе" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Всегда запускать в контейнере:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Всегда запускать новые сеансы с этим профилем внутри выбранного контейнера" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Переменные окружения:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Список переменных среды окружения и их значений" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 -#, fuzzy, kde-format -#| msgid "Initial terminal size:" +#: widgets/EditProfileGeneralPage.ui:320 +#, kde-format msgid "Initial terminal si&ze:" -msgstr "Начальные размеры терминала:" +msgstr "Начальные &размеры терминала:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4644,32 +4880,31 @@ msgstr "" "перезапуске.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 -#, fuzzy, kde-format -#| msgid "Terminal bell mode:" +#: widgets/EditProfileGeneralPage.ui:411 +#, kde-format msgid "&Terminal bell mode:" -msgstr "Режим вывода сигналов:" +msgstr "&Режим вывода сигналов:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Семантическая интеграция" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Эмуляция стрелок «вверх» и «вниз»" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Нажатие кнопки мыши в строке ввода перемещает указатель" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Семантические подсказки:" @@ -4679,9 +4914,9 @@ msgstr "Семантические подсказки:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4692,9 +4927,9 @@ msgstr "Никогда" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4705,34 +4940,34 @@ msgstr "Активация ссылок" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Всегда" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Отмечать строки с ошибками красным:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Выделять ошибки красным цветом фона:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Отмечать строки ввода и вывод:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Выделять ввод и вывод изменением цвета фона:" @@ -4815,17 +5050,15 @@ msgstr "Тройной щелчок выделяет:" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) #: widgets/EditProfileMousePage.ui:104 -#, fuzzy, kde-format -#| msgid "The whole line" +#, kde-format msgid "&The whole line" -msgstr "Всю строку" +msgstr "&Всю строку" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 -#, fuzzy, kde-format -#| msgid "From mouse position to the end of line" +#, kde-format msgid "From mouse position to the end of &line" -msgstr "От курсора мыши до конца строки" +msgstr "От курсора мыши до конца &строки" #. i18n: ectx: property (text), widget (QLabel, label_13) #: widgets/EditProfileMousePage.ui:140 @@ -5081,9 +5314,9 @@ msgid "" "Some terminal applications have mouse support, this allows them to get it by " "default. It can be toggled on/off while running as well." msgstr "" -"Этот параметр позволяет по умолчанию консольным приложениям, поддерживающим " -"работу с мышью, получать доступ к ней. Состояние параметра также возможно " -"изменять во время работы." +"Этот параметр позволяет консольным приложениям, поддерживающим работу с " +"мышью, по умолчанию получать доступ к ней. Состояние параметра также " +"возможно изменять во время работы." #. i18n: ectx: property (text), widget (QCheckBox, allowMouseTrackingButton) #: widgets/EditProfileMousePage.ui:461 @@ -5100,121 +5333,127 @@ msgid "Scrollback:" msgstr "Журнал:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Сдвиг при прокрутке Page Up/Down:" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" -msgstr "Прокручивать страницу на половину высоты окна" +msgid "Highlight the lines coming into view" +msgstr "Подсвечивать строки при выводе в область просмотра" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, fuzzy, kde-format -#| msgid "Half screen height" -msgid "Half screen heigh&t" -msgstr "Половина высоты окна" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "Прокручивать страницу на высоту окна" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, fuzzy, kde-format -#| msgid "Full screen height" -msgid "F&ull screen height" -msgstr "Высота окна" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Размещение полосы прокрутки:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Показывать полосу прокрутки справа от окна сеанса" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the right side" -#| msgid "Right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "Справа" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Показывать полосу прокрутки слева от окна сеанса" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgctxt "@option:radio Show scrollbar on the left side" -#| msgid "Left side" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "Слева" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, kde-format msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "Не показывать" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Размер каждого маркера (в процентах от длины полосы прокрутки):" + #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 +#: widgets/EditProfileScrollingPage.ui:97 #, kde-format msgid "Highlighting:" msgstr "Подсветка:" -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format -msgid "Highlight the lines coming into view" -msgstr "Подсвечивать строки при выводе в область просмотра" +msgid "Scroll the page the half height of window" +msgstr "Прокручивать страницу на половину высоты окна" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "&Половина высоты окна" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Цвет маркеров полосы прокрутки:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Цвет подсветки строк при поиске в полосе прокрутки:" #. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 +#: widgets/EditProfileScrollingPage.ui:181 #, kde-format msgid "Reflow Lines:" msgstr "Переформатирование строк:" +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "Прокручивать страницу на высоту окна" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "&Высота окна" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Показывать полосу прокрутки справа от окна сеанса" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "С&права" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Показывать полосу прокрутки слева от окна сеанса" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "&Слева" + #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Переформатировать строки при изменении размера терминала" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Размещение полосы прокрутки:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "" +msgid "Search highlighting line opacity:" +msgstr "Непрозрачность подсветки строки при поиске:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5287,10 +5526,9 @@ msgstr "Ограничить буфер вывода заданным число #. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:63 -#, fuzzy, kde-format -#| msgid "Fixed size:" +#, kde-format msgid "Fi&xed size:" -msgstr "Сохранять последние:" +msgstr "&Сохранять последние:" #. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) #: widgets/HistorySizeWidget.ui:73 @@ -5306,12 +5544,10 @@ msgstr "Сохранять весь вывод сеанса" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgctxt "Save all lines to the scrollback history" -#| msgid "Unlimited" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "Сохранять весь вывод" +msgstr "Сохранять &весь вывод" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5321,44 +5557,42 @@ msgstr "Не сохранять ранее выведенный текст" #. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:175 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" -msgstr "Н&и в одну вкладку" +msgstr "&Ничего не сохранять" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Найти…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Введите текст, который ищете" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Следующее" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Переход к следующему вхождению" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Предыдущее" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5366,78 +5600,77 @@ msgstr "Переход к предыдущему вхождению" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "С учётом регистра" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "Параметр включает учёт регистра при поиске" + +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "Показать меню параметров" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, kde-format msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Закрыть панель поиска" -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "С учётом регистра" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "Искать с учётом регистра" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Регулярное выражение" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Подсветить все совпадения" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" -msgstr "При включении параметра совпадения будет подсвечиваться" +msgstr "Параметр включает подсветку совпадений" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Искать назад" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" -msgstr "Включает режим поиска от конца к началу" +msgstr "Параметр включает режим поиска от конца к началу" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "" +msgstr "Без повторения" -#: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" -msgstr "Включает режим поиска от конца к началу" +msgstr "Параметр включает остановку поиска вместо повторения цикла" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Искать текущую фразу от конца документа" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5448,7 +5681,7 @@ msgstr "Искать текущую фразу от начала докумен msgid "Print Shell" msgstr "Окно печати" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5472,10 +5705,9 @@ msgstr "Удалённый сеанс:" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/RenameTabWidget.ui:79 -#, fuzzy, kde-format -#| msgid "Tab title format:" +#, kde-format msgid "&Tab title format:" -msgstr "Формат заголовка вкладки:" +msgstr "&Формат заголовка вкладки:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5485,10 +5717,15 @@ msgstr "Локальный сеанс" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/RenameTabWidget.ui:105 -#, fuzzy, kde-format -#| msgid "Tab Color:" +#, kde-format msgid "Tab Co&lor:" -msgstr "Цвет вкладки:" +msgstr "&Цвет вкладки:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "&Цвет активной вкладки:" #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5583,36 +5820,65 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Восстановить терминал" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Открыть новую вкладку" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Поиск вкладок" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Закрыть эту вкладку" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Отделить вкладку" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Настроить или переименовать вкладку…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Закрыть вкладку" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Только что были использованы методы D-Bus sendText/runCommand. Разрешение " +#~ "публичного доступа к этим методам может быть небезопасным. Чтобы " +#~ "разрешить только внутреннее использование этих методов, необходимо " +#~ "перекомпилировать Konsole с другими параметрами.

              Это предупреждение " +#~ "больше не будет показываться, пока вы не запустите следующий экземпляр " +#~ "Konsole.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "С учётом регистра" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Не сохранять вывод" diff --git a/local/recipes/kde/konsole/source/po/sa/konsole.po b/local/recipes/kde/konsole/source/po/sa/konsole.po new file mode 100644 index 0000000000..3decbc25f4 --- /dev/null +++ b/local/recipes/kde/konsole/source/po/sa/konsole.po @@ -0,0 +1,5799 @@ +# Sanskrit translations for konsole package. +# Copyright (C) 2024 This file is copyright: +# This file is distributed under the same license as the konsole package. +# Kali , 2024. +# +# SPDX-FileCopyrightText: 2024 kali +msgid "" +msgstr "" +"Project-Id-Version: konsole\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2024-12-25 19:40+0530\n" +"Last-Translator: kali \n" +"Language-Team: Sanskrit \n" +"Language: sa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n>2);\n" +"X-Generator: Lokalize 24.08.2\n" + +#, kde-format +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "श्रीकान्त् कलवार्" + +#, kde-format +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "skkalwar999@gmail.com" + +#. i18n: ectx: Menu (file) +#: ../desktop/konsoleui.rc:6 +#, kde-format +msgid "File" +msgstr "सञ्चिका" + +#. i18n: ectx: property (text), widget (QPushButton, btnEdit) +#. i18n: ectx: Menu (edit) +#: ../desktop/konsoleui.rc:16 plugins/QuickCommands/quickcommandswidget.cpp:296 +#: plugins/SSHManager/sshwidget.ui:300 +#, kde-format +msgid "Edit" +msgstr "सम्पादन" + +#. i18n: ectx: Menu (view) +#: ../desktop/konsoleui.rc:19 +#, kde-format +msgid "View" +msgstr "दृश्यं" + +#. i18n: ectx: Menu (view-split) +#: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 +#: ../desktop/sessionui.rc:64 +#, kde-format +msgid "Split View" +msgstr "विभक्त दृश्य" + +#. i18n: ectx: Menu (settings) +#: ../desktop/konsoleui.rc:41 +#, kde-format +msgid "Settings" +msgstr "सेटिंग्स्" + +#. i18n: ectx: Menu (plugins) +#: ../desktop/konsoleui.rc:54 +#, kde-format +msgid "Plugins" +msgstr "प्लगिन्स्" + +#. i18n: ectx: Menu (help) +#: ../desktop/konsoleui.rc:57 +#, kde-format +msgid "Help" +msgstr "साहाय्यम्‌" + +#. i18n: ectx: ToolBar (mainToolBar) +#: ../desktop/konsoleui.rc:61 +#, kde-format +msgid "Main Toolbar" +msgstr "मुख्य साधनपट्टी" + +#. i18n: ectx: Menu (history) +#: ../desktop/partui.rc:20 +#, kde-format +msgid "S&crollback" +msgstr "S&crollback" + +#. i18n: ectx: ToolBar (sessionToolbar) +#: ../desktop/sessionui.rc:80 +#, kde-format +msgid "Session Toolbar" +msgstr "सत्र साधनपट्टी" + +#: Application.cpp:53 +#, kde-format +msgctxt "@info:shell" +msgid "Name of profile to use for new Konsole instance" +msgstr "नूतन Konsole उदाहरणस्य कृते उपयोक्तुं प्रोफाइलस्य नाम" + +#: Application.cpp:54 +#, kde-format +msgctxt "@info:shell" +msgid "json layoutfile to be loaded to use for new Konsole instance" +msgstr "नूतन Konsole उदाहरणार्थं उपयोक्तुं json layoutfile लोड् कर्तव्यम्" + +#: Application.cpp:55 +#, kde-format +msgctxt "@info:shell" +msgid "Use the built-in profile instead of the default profile" +msgstr "पूर्वनिर्धारितप्रोफाइलस्य स्थाने अन्तःनिर्मितप्रोफाइलस्य उपयोगं कुर्वन्तु" + +#: Application.cpp:56 +#, kde-format +msgctxt "@info:shell" +msgid "Set the initial working directory of the new tab or window to 'dir'" +msgstr "नूतनस्य ट्याब् अथवा विण्डो इत्यस्य प्रारम्भिकं कार्यनिर्देशिकां 'dir' इति सेट् कुर्वन्तु ।" + +#: Application.cpp:57 +#, kde-format +msgctxt "@info:shell" +msgid "Do not close the initial session automatically when it ends." +msgstr "प्रारम्भिकसत्रस्य समाप्तेः समये स्वयमेव न पिधातु ।" + +#: Application.cpp:61 +#, kde-format +msgctxt "@info:shell" +msgid "" +"Create a new tab in an existing window rather than creating a new window " +"('Run all Konsole windows in a single process' must be enabled)" +msgstr "" +"नूतनं विण्डो निर्मातुं न अपि तु विद्यमानविण्डो मध्ये नूतनं ट्याब् रचयन्तु ('सर्वं Konsole विण्डो " +"एकस्मिन् प्रक्रियायां चालयन्तु' सक्षमं भवितुमर्हति)" + +#: Application.cpp:62 +#, kde-format +msgctxt "@info:shell" +msgid "Create tabs as specified in given tabs configuration file" +msgstr "दत्तटैब्स् विन्याससञ्चिकायां यथा निर्दिष्टं तथा ट्याब्स् रचयन्तु" + +#: Application.cpp:64 +#, kde-format +msgctxt "@info:shell" +msgid "" +"Start Konsole in the background and bring to the front when Ctrl+Shift+F12 " +"(by default) is pressed" +msgstr "" +"पृष्ठभूमितः Konsole आरभ्य Ctrl+Shift+F12 (पूर्वनिर्धारितरूपेण) दबावे सति अग्रे आनयन्तु" + +#: Application.cpp:65 +#, kde-format +msgctxt "@info:shell" +msgid "Run in a separate process" +msgstr "पृथक् प्रक्रियायां चालयन्तु" + +#: Application.cpp:66 +#, kde-format +msgctxt "@info:shell" +msgid "Show the menubar, overriding the default setting" +msgstr "पूर्वनिर्धारितसेटिंग् अतिक्रम्य मेनूपट्टिकां दर्शयतु" + +#: Application.cpp:67 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the menubar, overriding the default setting" +msgstr "पूर्वनिर्धारितसेटिंग् अतिक्रम्य मेनूपट्टिकां गोपयन्तु" + +#: Application.cpp:68 +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" +msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "पूर्वनिर्धारितसेटिंग् अतिक्रम्य टब्बर् दर्शयतु" + +#: Application.cpp:69 +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "पूर्वनिर्धारितसेटिंग् अतिक्रम्य टब्बर् गोपयन्तु" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "पूर्वनिर्धारितसेटिंग् अतिक्रम्य टब्बर् दर्शयतु" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "पूर्वनिर्धारितसेटिंग् अतिक्रम्य टब्बर् गोपयन्तु" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "पूर्णपर्दे कन्सोल् आरभत" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "पारदर्शकपृष्ठभूमिः निष्क्रियं कुर्वन्तु, यद्यपि प्रणाली तान् समर्थयति ।" + +#: Application.cpp:74 +#, kde-format +msgctxt "@info:shell" +msgid "List the available profiles" +msgstr "उपलब्धानि प्रोफाइल्-सूचयन्तु" + +#: Application.cpp:75 +#, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" +msgstr "" +"सर्वाणि प्रोफाइलगुणनामानि तेषां प्रकारं च (-p इत्यनेन सह उपयोगाय) सूचीबद्धं कुर्वन्तु ।" + +#: Application.cpp:76 +#, kde-format +msgctxt "@info:shell" +msgid "Change the value of a profile property." +msgstr "प्रोफाइल गुणस्य मूल्यं परिवर्तयन्तु ।" + +#: Application.cpp:78 +#, kde-format +msgctxt "@info:shell" +msgid "" +"Command to execute. This option will catch all following arguments, so use " +"it as the last option." +msgstr "" +"निष्पादयितुं आदेशः । एषः विकल्पः निम्नलिखित-सर्वं तर्कं गृह्णीयात्, अतः अन्तिमविकल्परूपेण तस्य " +"उपयोगं कुर्वन्तु ।" + +#: Application.cpp:81 +#, kde-format +msgctxt "@info:shell" +msgid "" +"Force re-using the existing instance even if it breaks functionality, e. g. " +"--new-tab. Mostly for debugging." +msgstr "" +"कार्यक्षमतां भङ्गयति चेदपि विद्यमानस्य दृष्टान्तस्य पुनः उपयोगं कर्तुं बाध्यताम्, ङ. छ. --नव-" +"टब। प्रायः त्रुटिनिवारणाय ।" + +#: Application.cpp:88 +#, kde-format +msgctxt "@info:shell" +msgid "Arguments passed to command" +msgstr "तर्काः आज्ञां प्रति गताः" + +#: Application.cpp:546 +#, kde-format +msgctxt "@item" +msgid "Toggle Background Window" +msgstr "पृष्ठभूमि विण्डो टॉगल करें" + +#: BookmarkHandler.cpp:107 +#, kde-format +msgctxt "@item:inmenu The user's name and host they are connected to via ssh" +msgid "%1 on %2" +msgstr "%2 इत्यत्र %1" + +#: BookmarkHandler.cpp:109 +#, kde-format +msgctxt "@item:inmenu The host the user is connected to via ssh" +msgid "%1" +msgstr "%1" + +#: colorscheme/ColorScheme.cpp:124 +msgctxt "@item:intable palette" +msgid "Foreground" +msgstr "अग्रभूमिः" + +#: colorscheme/ColorScheme.cpp:125 +msgctxt "@item:intable palette" +msgid "Background" +msgstr "पृष्ठभूमि" + +#: colorscheme/ColorScheme.cpp:126 +msgctxt "@item:intable palette" +msgid "Color 1" +msgstr "वर्णः १" + +#: colorscheme/ColorScheme.cpp:127 +msgctxt "@item:intable palette" +msgid "Color 2" +msgstr "वर्णः २" + +#: colorscheme/ColorScheme.cpp:128 +msgctxt "@item:intable palette" +msgid "Color 3" +msgstr "वर्णः ३" + +#: colorscheme/ColorScheme.cpp:129 +msgctxt "@item:intable palette" +msgid "Color 4" +msgstr "वर्णः ४" + +#: colorscheme/ColorScheme.cpp:130 +msgctxt "@item:intable palette" +msgid "Color 5" +msgstr "वर्णः ५" + +#: colorscheme/ColorScheme.cpp:131 +msgctxt "@item:intable palette" +msgid "Color 6" +msgstr "वर्णः ६" + +#: colorscheme/ColorScheme.cpp:132 +msgctxt "@item:intable palette" +msgid "Color 7" +msgstr "वर्णः ७" + +#: colorscheme/ColorScheme.cpp:133 +msgctxt "@item:intable palette" +msgid "Color 8" +msgstr "वर्णः ८" + +#: colorscheme/ColorScheme.cpp:134 +msgctxt "@item:intable palette" +msgid "Foreground (Intense)" +msgstr "अग्रभूमि (तीव्र)" + +#: colorscheme/ColorScheme.cpp:135 +msgctxt "@item:intable palette" +msgid "Background (Intense)" +msgstr "पृष्ठभूमि (तीव्र)" + +#: colorscheme/ColorScheme.cpp:136 +msgctxt "@item:intable palette" +msgid "Color 1 (Intense)" +msgstr "वर्णः १ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:137 +msgctxt "@item:intable palette" +msgid "Color 2 (Intense)" +msgstr "वर्णः २ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:138 +msgctxt "@item:intable palette" +msgid "Color 3 (Intense)" +msgstr "वर्णः ३ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:139 +msgctxt "@item:intable palette" +msgid "Color 4 (Intense)" +msgstr "वर्णः ४ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:140 +msgctxt "@item:intable palette" +msgid "Color 5 (Intense)" +msgstr "वर्णः ५ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:141 +msgctxt "@item:intable palette" +msgid "Color 6 (Intense)" +msgstr "वर्णः ६ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:142 +msgctxt "@item:intable palette" +msgid "Color 7 (Intense)" +msgstr "वर्णः ७ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:143 +msgctxt "@item:intable palette" +msgid "Color 8 (Intense)" +msgstr "वर्णः ८ (तीव्रः)" + +#: colorscheme/ColorScheme.cpp:144 +msgctxt "@item:intable palette" +msgid "Foreground (Faint)" +msgstr "अग्रभूमिः (Faint)" + +#: colorscheme/ColorScheme.cpp:145 +msgctxt "@item:intable palette" +msgid "Background (Faint)" +msgstr "पृष्ठभूमि (Faint)" + +#: colorscheme/ColorScheme.cpp:146 +msgctxt "@item:intable palette" +msgid "Color 1 (Faint)" +msgstr "वर्णः १ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:147 +msgctxt "@item:intable palette" +msgid "Color 2 (Faint)" +msgstr "वर्णः २ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:148 +msgctxt "@item:intable palette" +msgid "Color 3 (Faint)" +msgstr "वर्णः ३ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:149 +msgctxt "@item:intable palette" +msgid "Color 4 (Faint)" +msgstr "वर्णः ४ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:150 +msgctxt "@item:intable palette" +msgid "Color 5 (Faint)" +msgstr "वर्णः ५ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:151 +msgctxt "@item:intable palette" +msgid "Color 6 (Faint)" +msgstr "वर्णः ६ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:152 +msgctxt "@item:intable palette" +msgid "Color 7 (Faint)" +msgstr "वर्णः ७ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:153 +msgctxt "@item:intable palette" +msgid "Color 8 (Faint)" +msgstr "वर्णः ८ (मन्दः)" + +#: colorscheme/ColorScheme.cpp:452 +#, kde-format +msgctxt "@item" +msgid "Un-named Color Scheme" +msgstr "अनाम रङ्ग योजना" + +#: colorscheme/ColorSchemeEditor.cpp:110 +#, kde-format +msgctxt "@label:listbox Column header text for color names" +msgid "Name" +msgstr "नामः" + +#: colorscheme/ColorSchemeEditor.cpp:110 +#, kde-format +msgctxt "@label:listbox Column header text for the actual colors" +msgid "Color" +msgstr "वर्ण" + +#: colorscheme/ColorSchemeEditor.cpp:111 +#, kde-format +msgctxt "@label:listbox Column header text for the actual intense colors" +msgid "Intense color" +msgstr "तीव्रवर्णः" + +#: colorscheme/ColorSchemeEditor.cpp:112 +#, kde-format +msgctxt "@label:listbox Column header text for the actual faint colors" +msgid "Faint color" +msgstr "मन्दवर्णः" + +#: colorscheme/ColorSchemeEditor.cpp:137 +#, kde-format +msgctxt "@info:status" +msgid "" +"The background transparency setting will not be used because your desktop " +"does not appear to support transparent windows." +msgstr "" +"पृष्ठभूमिपारदर्शितासेटिंग् न उपयुज्यते यतोहि भवतः डेस्कटॉप् पारदर्शकविण्डोस् समर्थयति न दृश्यते ।" + +#: colorscheme/ColorSchemeEditor.cpp:188 +#, kde-format +msgctxt "@title:window" +msgid "Select wallpaper image file" +msgstr "वॉलपेपर इमेज सञ्चिकां चिनोतु" + +#: colorscheme/ColorSchemeEditor.cpp:190 +#, kde-format +msgctxt "@label:textbox Filter in file open dialog" +msgid "Supported Images" +msgstr "समर्थित चित्रम्" + +#: colorscheme/ColorSchemeEditor.cpp:334 +#, kde-format +msgctxt "@title:window" +msgid "New Color Scheme" +msgstr "नवीन रङ्ग योजना" + +#: colorscheme/ColorSchemeEditor.cpp:337 +#, kde-format +msgctxt "@title:window" +msgid "Edit Color Scheme" +msgstr "रङ्ग योजना सम्पादयतु" + +#: colorscheme/ColorSchemeEditor.cpp:383 +#, kde-format +msgctxt "@info:tooltip" +msgid "Click to choose color" +msgstr "वर्णं चिन्वन्तु इति क्लिक् कुर्वन्तु" + +#: colorscheme/ColorSchemeEditor.cpp:388 +#, kde-format +msgctxt "@info:tooltip" +msgid "Click to choose intense color" +msgstr "तीव्रवर्णं चिन्वन्तु इति क्लिक् कुर्वन्तु" + +#: colorscheme/ColorSchemeEditor.cpp:393 +#, kde-format +msgctxt "@info:tooltip" +msgid "Click to choose Faint color" +msgstr "Faint color इति चिन्वन्तु इति क्लिक् कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QLabel, descriptionLabel) +#. i18n: ectx: property (text), widget (QLabel, discriptionLabel) +#: colorscheme/ColorSchemeEditor.ui:31 KeyBindingEditor.ui:31 +#, kde-format +msgid "Description:" +msgstr "वर्णनम्‌:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, randomizedBackgroundCheck) +#: colorscheme/ColorSchemeEditor.ui:50 +#, kde-format +msgid "" +"Hue and saturation values of default foreground and background colors are " +"randomized by default. Some color schemes might use different randomization " +"settings.\n" +"To see any effect, set colors with saturation value greater than 0." +msgstr "" +"पूर्वनिर्धारित अग्रभूमिपृष्ठभूमिरङ्गयोः Hue तथा saturation मूल्यानि पूर्वनिर्धारितरूपेण " +"यादृच्छिकरूपेण भवन्ति । केचन वर्णयोजनाः भिन्नानि यादृच्छिकीकरणसेटिंग्स् उपयोक्तुं शक्नुवन्ति ।\n" +"किमपि प्रभावं द्रष्टुं 0 इत्यस्मात् अधिकं संतृप्तिमूल्यं युक्तानि वर्णाः सेट् कुर्वन्तु ।" + +#. i18n: ectx: property (text), widget (QCheckBox, randomizedBackgroundCheck) +#: colorscheme/ColorSchemeEditor.ui:53 +#, kde-format +msgid "Randomly adjust colors for each session" +msgstr "प्रत्येकं सत्रस्य कृते वर्णाः यादृच्छिकरूपेण समायोजयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, blurCheckBox) +#: colorscheme/ColorSchemeEditor.ui:60 +#, kde-format +msgid "Blur background" +msgstr "पृष्ठभूमि धुंधला" + +#. i18n: ectx: property (text), widget (QLabel, transparencyLabel) +#: colorscheme/ColorSchemeEditor.ui:69 +#, kde-format +msgid "Background color transparency:" +msgstr "पृष्ठभूमि रंग पारदर्शिता :" + +#. i18n: ectx: property (text), widget (QLabel, transparencyPercentLabel) +#. i18n: ectx: property (text), widget (QLabel, wallpaperTransparencyPercentLabel) +#: colorscheme/ColorSchemeEditor.ui:89 colorscheme/ColorSchemeEditor.ui:123 +#, kde-format +msgid "Percent" +msgstr "प्रतिशतं" + +#. i18n: ectx: property (text), widget (QLabel, wallpaperTransparencyLabel) +#: colorscheme/ColorSchemeEditor.ui:103 +#, kde-format +msgid "Wallpaper transparency:" +msgstr "वॉलपेपर पारदर्शिता :" + +#. i18n: ectx: property (text), widget (QLabel, wallpaperLabel) +#: colorscheme/ColorSchemeEditor.ui:137 +#, kde-format +msgid "Background image:" +msgstr "पृष्ठभूमिचित्रम् :" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, wallpaperPath) +#: colorscheme/ColorSchemeEditor.ui:144 +#, kde-format +msgid "Edit the path of the background image" +msgstr "पृष्ठभूमिचित्रस्य मार्गं सम्पादयन्तु" + +#. i18n: ectx: property (toolTip), widget (QToolButton, wallpaperSelectButton) +#: colorscheme/ColorSchemeEditor.ui:151 +#, kde-format +msgid "Choose the background image" +msgstr "पृष्ठभूमिचित्रं चिनोतु" + +#. i18n: ectx: property (text), widget (QToolButton, wallpaperSelectButton) +#. i18n: ectx: property (text), widget (QToolButton, dirSelectButton) +#. i18n: ectx: property (text), widget (QToolButton, btnFindSshKey) +#: colorscheme/ColorSchemeEditor.ui:154 plugins/SSHManager/sshwidget.ui:155 +#: widgets/EditProfileGeneralPage.ui:186 +#, kde-format +msgid "..." +msgstr "..." + +#. i18n: ectx: property (text), widget (QLabel, wallpaperScalingLabel) +#: colorscheme/ColorSchemeEditor.ui:165 +#, kde-format +msgid "Wallpaper scaling:" +msgstr "वॉलपेपर स्केलिंग: 1.1." + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) +#: colorscheme/ColorSchemeEditor.ui:173 +#, kde-format +msgid "Tile" +msgstr "टाइल्" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) +#: colorscheme/ColorSchemeEditor.ui:178 +#, kde-format +msgid "Stretch" +msgstr "विस्तार" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) +#: colorscheme/ColorSchemeEditor.ui:183 +#, kde-format +msgid "Crop" +msgstr "अन्नग्रह" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) +#: colorscheme/ColorSchemeEditor.ui:188 +#, kde-format +msgid "Adapt" +msgstr "अनुकूलयेत्" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) +#: colorscheme/ColorSchemeEditor.ui:193 +#, kde-format +msgid "NoScaling" +msgstr "NoScaling इति" + +#. i18n: ectx: property (text), widget (QLabel, wallpaperFlipLabel) +#: colorscheme/ColorSchemeEditor.ui:205 +#, kde-format +msgid "Wallpaper flip:" +msgstr "वॉलपेपर पलटना:" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) +#: colorscheme/ColorSchemeEditor.ui:213 +#, kde-format +msgid "NoFlip" +msgstr "NoFlip" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) +#: colorscheme/ColorSchemeEditor.ui:218 +#, kde-format +msgid "Horizontal" +msgstr "क्षैतिज" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) +#: colorscheme/ColorSchemeEditor.ui:223 +#, kde-format +msgid "Vertical" +msgstr "ऊर्ध्वाधर" + +#. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) +#: colorscheme/ColorSchemeEditor.ui:228 +#, kde-format +msgid "Both" +msgstr "उभौ" + +#. i18n: ectx: property (text), widget (QLabel, wallpaperHorizontalAnchorLabel) +#: colorscheme/ColorSchemeEditor.ui:240 +#, kde-format +msgid "Horizontal Anchor:" +msgstr "क्षैतिज लंगर :" + +#. i18n: ectx: property (text), widget (QLabel, wallpaperHorizontalAnchorPosition) +#: colorscheme/ColorSchemeEditor.ui:266 +#, kde-format +msgid "Left" +msgstr "वामः" + +#. i18n: ectx: property (text), widget (QLabel, wallpaperVerticalAnchorLabel) +#: colorscheme/ColorSchemeEditor.ui:277 +#, kde-format +msgid "Vertical Anchor:" +msgstr "ऊर्ध्वाधर लंगर :" + +#. i18n: ectx: property (text), widget (QLabel, wallpaperVerticalAnchorPosition) +#: colorscheme/ColorSchemeEditor.ui:303 +#, kde-format +msgid "Top" +msgstr "उपरितन" + +#: colorscheme/ColorSchemeViewDelegate.cpp:52 +#, kde-format +msgid "AaZz09..." +msgstr "आZz09..." + +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "यजमानः %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [मूलभूतम्‌]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + +#: CopyInputDialog.cpp:30 +#, kde-format +msgid "Copy Input" +msgstr "Input प्रतिलिपि कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QLabel, filterLabel) +#. i18n: ectx: property (text), widget (QLabel, label) +#: CopyInputDialog.ui:19 KeyBindingEditor.ui:41 +#, kde-format +msgid "Filter:" +msgstr "फ़िल्टर :" + +#. i18n: ectx: property (text), widget (QPushButton, selectAllButton) +#: CopyInputDialog.ui:46 +#, kde-format +msgid "Select All" +msgstr "सर्वं चिनोतु" + +#. i18n: ectx: property (text), widget (QPushButton, deselectAllButton) +#: CopyInputDialog.ui:53 +#, kde-format +msgid "Deselect All" +msgstr "सर्वाणि अचयनं कुर्वन्तु" + +#: filterHotSpots/ColorFilterHotSpot.cpp:84 +#, kde-format +msgctxt "Caption of hover tooltip" +msgid "Color Preview" +msgstr "रङ्ग पूर्वावलोकन" + +#: filterHotSpots/FileFilterHotspot.cpp:158 +#, kde-format +msgid "" +"Could not open file with the text editor specified in the profile settings;\n" +"it will be opened with the system default editor." +msgstr "" +"प्रोफाइलसेटिंग्स् मध्ये निर्दिष्टेन पाठसम्पादकेन सह सञ्चिकां उद्घाटयितुं न शक्तवान्;\n" +"तत् system default editor इत्यनेन सह उद्घाटितं भविष्यति ।" + +#: filterHotSpots/FileFilterHotspot.cpp:172 +#, kde-format +msgid "Copy Location" +msgstr "प्रतिलिपि स्थानम्" + +#: filterHotSpots/FileFilterHotspot.cpp:285 +#, kde-format +msgid "Generating Thumbnail" +msgstr "लघुचित्रं जनयति" + +#: filterHotSpots/UrlFilterHotspot.cpp:90 +#, kde-format +msgid "Open Link" +msgstr "लिङ्कं उद्घाटयतु" + +#: filterHotSpots/UrlFilterHotspot.cpp:92 +#, kde-format +msgid "Copy Link Address" +msgstr "लिङ्क पता प्रतिलिपि कुर्वन्तु" + +#: filterHotSpots/UrlFilterHotspot.cpp:95 +#, kde-format +msgid "Send Email To..." +msgstr "Send Email To..." + +#: filterHotSpots/UrlFilterHotspot.cpp:97 +#, kde-format +msgid "Copy Email Address" +msgstr "ईमेल पता प्रतिलिपि कुर्वन्तु" + +#: FontDialog.cpp:26 +#, kde-format +msgctxt "@title:window" +msgid "Select font" +msgstr "फन्ट् चयनं कुर्वन्तु" + +#: FontDialog.cpp:37 +#, kde-format +msgctxt "@action:button" +msgid "Show all fonts" +msgstr "सर्वाणि फन्ट् दर्शयतु" + +#: FontDialog.cpp:66 +#, kde-format +msgctxt "@info:status" +msgid "" +"By its very nature, a terminal program requires font characters that are " +"equal width (monospace). Any non monospaced font may cause display issues. " +"This should not be necessary except in rare cases." +msgstr "" +"स्वभावतः एव टर्मिनल् प्रोग्राम् इत्यस्य कृते समानविस्ताराः (मोनोस्पेस्) फ़ॉन्ट् वर्णानाम् " +"आवश्यकता भवति । कोऽपि अमोनोस्पेस्ड् फन्ट् प्रदर्शनसमस्यां जनयितुं शक्नोति । दुर्लभान् विहाय " +"एतत् आवश्यकं न भवेत् ।" + +#: HistorySizeDialog.cpp:25 +#, kde-format +msgctxt "@title:window" +msgid "Adjust Scrollback" +msgstr "Scrollback समायोजयन्तु" + +#: HistorySizeDialog.cpp:46 +#, kde-format +msgctxt "@info:status" +msgid "Any adjustments are only temporary to this session." +msgstr "अस्य सत्रस्य कृते यत्किमपि समायोजनं केवलं अस्थायी एव भवति ।" + +#: KeyBindingEditor.cpp:54 +#, kde-format +msgctxt "@label:textbox" +msgid "Enter descriptive label" +msgstr "वर्णनात्मकं लेबलं प्रविशतु" + +#: KeyBindingEditor.cpp:63 +#, kde-format +msgid "Key Combination" +msgstr "कीलसंयोजनम्" + +#: KeyBindingEditor.cpp:63 +#, kde-format +msgid "Output" +msgstr "उत्पादनम्" + +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 +#, kde-format +msgid "New Key Binding List" +msgstr "नवीन कुञ्जीबन्धनसूची" + +#: KeyBindingEditor.cpp:224 +#, kde-format +msgid "Edit Key Binding List" +msgstr "कीलबन्धनसूचीं सम्पादयतु" + +#: KeyBindingEditor.cpp:287 +#, kde-format +msgid "A key bindings scheme cannot be saved with an empty description." +msgstr "कीलबन्धनयोजना रिक्तवर्णनेन सह रक्षितुं न शक्यते ।" + +#. i18n: ectx: property (text), widget (QPushButton, addEntryButton) +#. i18n: ectx: property (text), widget (QPushButton, btnAdd) +#: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 +#: plugins/SSHManager/sshwidget.ui:310 +#, kde-format +msgid "Add" +msgstr "संयोजयति" + +#. i18n: ectx: property (text), widget (QPushButton, removeEntryButton) +#. i18n: ectx: property (text), widget (QPushButton, removeKeyBindingsButton) +#. i18n: ectx: property (text), widget (QPushButton, removeColorSchemeButton) +#: KeyBindingEditor.ui:72 widgets/EditProfileAppearancePage.ui:92 +#: widgets/EditProfileKeyboardPage.ui:83 +#, kde-format +msgid "Remove" +msgstr "अपाकरोति" + +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: KeyBindingEditor.ui:94 +#, kde-format +msgctxt "Title of the area where you test your keys are properly configured" +msgid "Test Area" +msgstr "परीक्षणक्षेत्रम्" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: KeyBindingEditor.ui:115 +#, kde-format +msgid "Input:" +msgstr "निवेशः :" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: KeyBindingEditor.ui:128 +#, kde-format +msgid "Output:" +msgstr "उत्पादनम् :" + +#: main.cpp:189 +#, kde-format +msgctxt "@title" +msgid "Konsole" +msgstr "सान्त्वनम्" + +#: main.cpp:191 +#, kde-format +msgctxt "@title" +msgid "Terminal emulator" +msgstr "टर्मिनल एमुलेटर" + +#: main.cpp:193 +#, kde-format +msgctxt "@info:credit" +msgid "(c) 1997-2022, The Konsole Developers" +msgstr "(ग) 1997-2022, द कन्सोल डेवलपर्स" + +#: main.cpp:369 +#, kde-format +msgctxt "@info:credit" +msgid "Kurt Hindenburg" +msgstr "कर्ट हिन्डेन्बर्ग" + +#: main.cpp:371 +#, kde-format +msgctxt "@info:credit" +msgid "General maintainer, bug fixes and general improvements" +msgstr "सामान्यं परिपालकः, दोषनिवारणं सामान्यसुधारं च" + +#: main.cpp:374 +#, kde-format +msgctxt "@info:credit" +msgid "Robert Knight" +msgstr "रोबर्ट नाइट्" + +#: main.cpp:375 +#, kde-format +msgctxt "@info:credit" +msgid "Previous maintainer, ported to KDE4" +msgstr "पूर्वनिर्वाहकः, KDE4 प्रति पोर्ट् कृतः" + +#: main.cpp:377 +#, kde-format +msgctxt "@info:credit" +msgid "Lars Doelle" +msgstr "लार्स डोएल" + +#: main.cpp:377 +#, kde-format +msgctxt "@info:credit" +msgid "Original author" +msgstr "मूल लेखक" + +#: main.cpp:378 +#, kde-format +msgctxt "@info:credit" +msgid "Ahmad Samir" +msgstr "अहमद समीर" + +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 +#, kde-format +msgctxt "@info:credit" +msgid "Major refactoring, bug fixes and major improvements" +msgstr "प्रमुखं पुनर्निर्माणं, दोषनिवारणं, प्रमुखसुधाराः च" + +#: main.cpp:381 +#, kde-format +msgctxt "@info:credit" +msgid "Carlos Alves" +msgstr "कार्लोस् आल्वेस्" + +#: main.cpp:384 +#, kde-format +msgctxt "@info:credit" +msgid "Tomaz Canabrava" +msgstr "तोमाज कानाब्रावा" + +#: main.cpp:387 +#, kde-format +msgctxt "@info:credit" +msgid "Gustavo Carneiro" +msgstr "गुस्तावो कार्नेरो" + +#: main.cpp:390 +#, kde-format +msgctxt "@info:credit" +msgid "Edwin Pujols" +msgstr "एड्विन् पुजोल्स्" + +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 +#, kde-format +msgctxt "@info:credit" +msgid "Bug fixes and general improvements" +msgstr "दोषनिवारणं सामान्यसुधारं च" + +#: main.cpp:393 +#, kde-format +msgctxt "@info:credit" +msgid "Martin T. H. Sandsmark" +msgstr "मार्टिन टी एच सैण्ड्स्मार्क" + +#: main.cpp:396 +#, kde-format +msgctxt "@info:credit" +msgid "Nate Graham" +msgstr "नेट ग्राहम" + +#: main.cpp:397 +#, kde-format +msgctxt "@info:credit" +msgid "Mariusz Glebocki" +msgstr "मारिउस्ज ग्लेबोक्की" + +#: main.cpp:398 +#, kde-format +msgctxt "@info:credit" +msgid "Bug fixes and major improvements" +msgstr "दोषनिवारणं प्रमुखसुधारं च" + +#: main.cpp:400 +#, kde-format +msgctxt "@info:credit" +msgid "Thomas Surrel" +msgstr "थॉमस सुरेल" + +#: main.cpp:403 +#, kde-format +msgctxt "@info:credit" +msgid "Jekyll Wu" +msgstr "जेकिल् वू" + +#: main.cpp:404 +#, kde-format +msgctxt "@info:credit" +msgid "Waldo Bastian" +msgstr "वाल्दो बास्टियन" + +#: main.cpp:405 +#, kde-format +msgctxt "@info:credit" +msgid "Stephan Binner" +msgstr "स्टीफन बिनर" + +#: main.cpp:406 +#, kde-format +msgctxt "@info:credit" +msgid "Thomas Dreibholz" +msgstr "थॉमस ड्रेबोल्ज्" + +#: main.cpp:406 +#, kde-format +msgctxt "@info:credit" +msgid "General improvements" +msgstr "सामान्यसुधाराः" + +#: main.cpp:407 +#, kde-format +msgctxt "@info:credit" +msgid "Chris Machemer" +msgstr "क्रिस मचेमर" + +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 +#, kde-format +msgctxt "@info:credit" +msgid "Bug fixes" +msgstr "दोषनिवारणं भवति" + +#: main.cpp:408 +#, kde-format +msgctxt "@info:credit" +msgid "Francesco Cecconi" +msgstr "फ्रांसिस्को सेकोनी" + +#: main.cpp:409 +#, kde-format +msgctxt "@info:credit" +msgid "Stephan Kulow" +msgstr "स्टीफन कुलोव" + +#: main.cpp:409 +#, kde-format +msgctxt "@info:credit" +msgid "Solaris support and history" +msgstr "सोलारिस् समर्थनं इतिहासं च" + +#: main.cpp:410 +#, kde-format +msgctxt "@info:credit" +msgid "Alexander Neundorf" +msgstr "अलेक्जेण्डर न्यूण्डोर्फ" + +#: main.cpp:411 +#, kde-format +msgctxt "@info:credit" +msgid "Bug fixes and improved startup performance" +msgstr "दोषनिवारणं स्टार्टअप-प्रदर्शनं च उन्नतम्" + +#: main.cpp:413 +#, kde-format +msgctxt "@info:credit" +msgid "Peter Silva" +msgstr "पीटर सिल्वा" + +#: main.cpp:413 +#, kde-format +msgctxt "@info:credit" +msgid "Marking improvements" +msgstr "सुधारस्य चिह्नीकरणम्" + +#: main.cpp:414 +#, kde-format +msgctxt "@info:credit" +msgid "Lotzi Boloni" +msgstr "लोत्जी बोलोनी" + +#: main.cpp:416 +#, kde-format +msgctxt "@info:credit" +msgid "" +"Embedded Konsole\n" +"Toolbar and session names" +msgstr "" +"एम्बेडेड् कन्सोल्\n" +"टूलबार तथा सत्रनाम" + +#: main.cpp:419 +#, kde-format +msgctxt "@info:credit" +msgid "David Faure" +msgstr "डेविड फौरे" + +#: main.cpp:421 +#, kde-format +msgctxt "@info:credit" +msgid "" +"Embedded Konsole\n" +"General improvements" +msgstr "" +"एम्बेडेड् कन्सोल्\n" +"सामान्यसुधाराः" + +#: main.cpp:424 +#, kde-format +msgctxt "@info:credit" +msgid "Antonio Larrosa" +msgstr "एण्टोनियो लारोसा" + +#: main.cpp:424 +#, kde-format +msgctxt "@info:credit" +msgid "Visual effects" +msgstr "दृश्यप्रभावाः" + +#: main.cpp:425 +#, kde-format +msgctxt "@info:credit" +msgid "Matthias Ettrich" +msgstr "मथियस एट्रिच्" + +#: main.cpp:427 +#, kde-format +msgctxt "@info:credit" +msgid "" +"Code from the kvt project\n" +"General improvements" +msgstr "" +"kvt परियोजनातः कोडः\n" +"सामान्यसुधाराः" + +#: main.cpp:430 +#, kde-format +msgctxt "@info:credit" +msgid "Warwick Allison" +msgstr "वारविक् एलिसन" + +#: main.cpp:431 +#, kde-format +msgctxt "@info:credit" +msgid "Schema and text selection improvements" +msgstr "योजना तथा पाठचयनसुधारः" + +#: main.cpp:433 +#, kde-format +msgctxt "@info:credit" +msgid "Dan Pilone" +msgstr "दान पिलोन्" + +#: main.cpp:433 +#, kde-format +msgctxt "@info:credit" +msgid "SGI port" +msgstr "SGI पोर्ट्" + +#: main.cpp:434 +#, kde-format +msgctxt "@info:credit" +msgid "Kevin Street" +msgstr "केविन् स्ट्रीट्" + +#: main.cpp:434 +#, kde-format +msgctxt "@info:credit" +msgid "FreeBSD port" +msgstr "FreeBSD पोर्ट्" + +#: main.cpp:435 +#, kde-format +msgctxt "@info:credit" +msgid "Sven Fischer" +msgstr "स्वेन् फिशरः" + +#: main.cpp:436 +#, kde-format +msgctxt "@info:credit" +msgid "Dale M. Flaven" +msgstr "डेल् एम. फ्लेवेन्" + +#: main.cpp:437 +#, kde-format +msgctxt "@info:credit" +msgid "Martin Jones" +msgstr "मार्टिन् जोन्स" + +#: main.cpp:438 +#, kde-format +msgctxt "@info:credit" +msgid "Lars Knoll" +msgstr "लार्स नोल्" + +#: main.cpp:439 +#, kde-format +msgctxt "@info:credit" +msgid "Thanks to many others.\n" +msgstr "अन्येषां बहूनां धन्यवादः।\n" + +#: MainWindow.cpp:391 +#, kde-format +msgctxt "@action:inmenu" +msgid "&New Tab" +msgstr "&नव ट्याब्" + +#: MainWindow.cpp:401 +#, kde-format +msgctxt "@action:inmenu" +msgid "&Clone Tab" +msgstr "&क्लोन ट्याब्" + +#: MainWindow.cpp:408 +#, kde-format +msgctxt "@action:inmenu" +msgid "New &Window" +msgstr "नवीन &विण्डो" + +#: MainWindow.cpp:415 +#, kde-format +msgctxt "@action:inmenu" +msgid "Close Window" +msgstr "विण्डो बन्दं कुर्वन्तु" + +#: MainWindow.cpp:420 +#, kde-format +msgctxt "@title:menu" +msgid "&Bookmarks" +msgstr "&पुस्तकचिह्न" + +#: MainWindow.cpp:447 +#, kde-format +msgid "&Window Color Scheme" +msgstr "&विण्डो रङ्ग योजना" + +#: MainWindow.cpp:459 +#, kde-format +msgctxt "@action:inmenu" +msgid "Manage Profiles..." +msgstr "प्रोफाइल प्रबन्धयन्तु..." + +#: MainWindow.cpp:465 +#, kde-format +msgctxt "@item" +msgid "Activate Menu" +msgstr "मेनू सक्रियं कुर्वन्तु" + +#: MainWindow.cpp:471 +#, kde-format +msgctxt "@action:inmenu" +msgid "Save Tab Layout..." +msgstr "ट्याब लेआउट् रक्षतु..." + +#: MainWindow.cpp:480 +#, kde-format +msgctxt "@action:inmenu" +msgid "Load Tab Layout..." +msgstr "लोड टैब लेआउट..." + +#: MainWindow.cpp:827 MainWindow.cpp:844 +#, kde-format +msgctxt "@info" +msgid "There is a process running in this window. Do you still want to quit?" +msgid_plural "" +"There are %1 processes running in this window. Do you still want to quit?" +msgstr[0] "अस्मिन् विण्डो मध्ये एकः प्रक्रिया प्रचलति । किं त्वं अद्यापि त्यक्तुम् इच्छसि ?" +msgstr[1] "अस्मिन् विण्डो मध्ये %1 प्रक्रियाः प्रचलन्ति । किं त्वं अद्यापि त्यक्तुम् इच्छसि ?" + +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 +#, kde-format +msgctxt "@title" +msgid "Confirm Close" +msgstr "Confirm Close इति" + +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 +#, kde-format +msgctxt "@action:button" +msgid "Close &Window" +msgstr "&विण्डो बन्द करो" + +#: MainWindow.cpp:852 MainWindow.cpp:866 +#, kde-format +msgctxt "@action:button" +msgid "Close Current &Tab" +msgstr "Current &Tab बन्द करें" + +#: MainWindow.cpp:861 +#, kde-format +msgctxt "@info" +msgid "There are %1 open terminals in this window. Do you still want to quit?" +msgstr "अस्मिन् विण्डो मध्ये %1 उद्घाटिताः टर्मिनल् सन्ति । किं त्वं अद्यापि त्यक्तुम् इच्छसि ?" + +#: MainWindow.cpp:1001 Part.cpp:317 +#, kde-format +msgctxt "@title Preferences page name" +msgid "Profiles" +msgstr "प्रोफाइल" + +#: MainWindow.cpp:1019 +#, kde-format +msgctxt "@title Preferences page name" +msgid "General" +msgstr "सामान्य" + +#: MainWindow.cpp:1031 +#, kde-format +msgctxt "@title Preferences page name" +msgid "Memory" +msgstr "स्मृति" + +#: MainWindow.cpp:1037 +#, kde-format +msgctxt "@title Preferences page name" +msgid "Tab Bar / Splitters" +msgstr "ट्याब बार / स्प्लिटर्स" + +#: MainWindow.cpp:1042 +#, kde-format +msgctxt "@title Preferences page name" +msgid "Temporary Files" +msgstr "अस्थायी सञ्चिकाः" + +#: MainWindow.cpp:1047 +#, kde-format +msgctxt "@title Preferences page name" +msgid "Thumbnails" +msgstr "लघुचित्रम्" + +#: Part.cpp:320 +#, kde-format +msgctxt "@title Preferences page name" +msgid "Part Info" +msgstr "भाग सूचना" + +#. i18n: ectx: property (windowTitle), widget (QWidget, QuickCommandsWidget) +#: plugins/QuickCommands/qcwidget.ui:14 +#, kde-format +msgid "Form" +msgstr "आवेदनपत्रं" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: plugins/QuickCommands/qcwidget.ui:22 +#, kde-format +msgid "Shortcut:" +msgstr "लघुमार्गः :" + +#. i18n: ectx: property (placeholderText), widget (QLineEdit, filterLine) +#. i18n: ectx: property (placeholderText), widget (QLineEdit, filterText) +#: plugins/QuickCommands/qcwidget.ui:52 plugins/SSHManager/sshwidget.ui:33 +#, kde-format +msgid "Filter..." +msgstr "फ़िल्टर..." + +#. i18n: ectx: property (text), widget (QCheckBox, invertFilter) +#. i18n: ectx: property (text), widget (QCheckBox, btnInvertFilter) +#: plugins/QuickCommands/qcwidget.ui:59 plugins/SSHManager/sshwidget.ui:46 +#, kde-format +msgid "Invert" +msgstr "विपर्ययम्" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: plugins/QuickCommands/qcwidget.ui:97 +#, kde-format +msgid "Title" +msgstr "शीर्षक" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: plugins/QuickCommands/qcwidget.ui:107 +#, kde-format +msgid "Tooltip" +msgstr "टूलटिप्" + +#. i18n: ectx: property (text), widget (QLabel, labelGroup) +#: plugins/QuickCommands/qcwidget.ui:117 +#, kde-format +msgid "Group" +msgstr "समूह" + +#. i18n: ectx: property (text), item, widget (QComboBox, group) +#. i18n: ectx: property (currentText), widget (QComboBox, folder) +#: plugins/QuickCommands/qcwidget.ui:128 plugins/SSHManager/sshwidget.ui:213 +#, kde-format +msgid "Default" +msgstr "मूलभूतम्‌" + +#. i18n: ectx: attribute (title), widget (QWidget, tab) +#: plugins/QuickCommands/qcwidget.ui:143 +#, kde-format +msgid "Command" +msgstr "आदेश" + +#. i18n: ectx: attribute (title), widget (QWidget, tab_2) +#: plugins/QuickCommands/qcwidget.ui:193 +#: plugins/QuickCommands/quickcommandswidget.cpp:333 +#, kde-format +msgid "Warnings" +msgstr "चेतावनी" + +#. i18n: ectx: property (text), widget (QPushButton, btnRun) +#: plugins/QuickCommands/qcwidget.ui:236 +#, kde-format +msgid "Run" +msgstr "धावनं करोतु" + +#. i18n: ectx: property (text), widget (QPushButton, btnSave) +#: plugins/QuickCommands/qcwidget.ui:256 +#, kde-format +msgid "Save" +msgstr "रक्ष्" + +#. i18n: ectx: property (text), widget (QPushButton, btnUpdate) +#: plugins/QuickCommands/qcwidget.ui:266 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 +#, kde-format +msgid "Update" +msgstr "अद्यतन" + +#. i18n: ectx: property (text), widget (QPushButton, btnCancel) +#: plugins/QuickCommands/qcwidget.ui:276 plugins/SSHManager/sshwidget.ui:320 +#, kde-format +msgid "Cancel" +msgstr "निरसयतु" + +#: plugins/QuickCommands/quickcommandsplugin.cpp:46 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 +#, kde-format +msgid "Quick Commands" +msgstr "त्वरित आदेशाः" + +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 +#, kde-format +msgid "Show Quick Access" +msgstr "द्रुतप्रवेशं दर्शयतु" + +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 +#, kde-format +msgid "No quick commands found. You can add one on Plugins -> Quick Commands" +msgstr "" +"न शीघ्रं आदेशाः प्राप्ताः। Plugins -> Quick Commands इत्यत्र एकं योजयितुं शक्नुवन्ति" + +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 +#, kde-format +msgid "Plugins - Quick Commands" +msgstr "प्लगिन्स् - त्वरित आदेशाः" + +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 +#, kde-format +msgid "Show Quick Commands" +msgstr "त्वरित आदेशान् दर्शयतु" + +#: plugins/QuickCommands/quickcommandswidget.cpp:166 +#: plugins/QuickCommands/quickcommandswidget.cpp:177 +#, kde-format +msgid "A duplicate item exists" +msgstr "द्वितीयकं द्रव्यं विद्यते" + +#: plugins/QuickCommands/quickcommandswidget.cpp:183 +#, kde-format +msgid "Please fix all the warnings before trying to run this script" +msgstr "कृपया एतां स्क्रिप्ट् चालयितुं प्रयत्नात् पूर्वं सर्वाणि चेतावनीनि समाधात" + +#: plugins/QuickCommands/quickcommandswidget.cpp:215 +#, kde-format +msgid "There are some errors on the script, do you really want to run it?" +msgstr "स्क्रिप्ट् मध्ये केचन दोषाः सन्ति, किं भवन्तः तत् चालयितुम् इच्छन्ति वा?" + +#: plugins/QuickCommands/quickcommandswidget.cpp:216 +#, kde-format +msgid "Shell Errors" +msgstr "शेल त्रुटयः" + +#: plugins/QuickCommands/quickcommandswidget.cpp:217 +#, kde-format +msgctxt "@action:button" +msgid "Run" +msgstr "धावनं करोतु" + +#: plugins/QuickCommands/quickcommandswidget.cpp:242 +#, kde-format +msgid "" +"You are about to delete the group %1,\n" +" with multiple configurations, are you sure?" +msgstr "" +"भवान् %1, 2 इति समूहं विलोपयितुम् उद्यतः अस्ति ।\n" +" बहुविधविन्यासैः सह, भवान् निश्चितः वा?" + +#: plugins/QuickCommands/quickcommandswidget.cpp:243 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 +#, kde-format +msgid "You are about to delete %1, are you sure?" +msgstr "भवान् %1 विलोपयितुं प्रवृत्तः अस्ति, भवान् निश्चितः अस्ति वा?" + +#: plugins/QuickCommands/quickcommandswidget.cpp:246 +#, kde-format +msgid "Delete Quick Commands Configurations" +msgstr "त्वरित आदेश विन्यासान् विलोपयन्तु" + +#: plugins/QuickCommands/quickcommandswidget.cpp:276 +#, kde-format +msgid "Title can not be empty or blank" +msgstr "शीर्षकं रिक्तं रिक्तं वा न भवितुम् अर्हति" + +#: plugins/QuickCommands/quickcommandswidget.cpp:280 +#, kde-format +msgid "Command can not be empty" +msgstr "आदेशः रिक्तः न भवितुम् अर्हति" + +#: plugins/QuickCommands/quickcommandswidget.cpp:300 +#, kde-format +msgid "Rename" +msgstr "पुनर्नाम" + +#: plugins/QuickCommands/quickcommandswidget.cpp:304 +#, kde-format +msgid "Delete" +msgstr "लुप्" + +#: plugins/QuickCommands/quickcommandswidget.cpp:335 +#, kde-format +msgid "Warnings (*)" +msgstr "चेतावनी (*)" + +#: plugins/SSHManager/sshmanagermodel.cpp:46 +#, kde-format +msgctxt "@item:inlistbox Hosts from ssh/config file" +msgid "SSH Config" +msgstr "SSH Config" + +#: plugins/SSHManager/sshmanagermodel.cpp:49 +#, kde-format +msgctxt "@item:inlistbox The default list of ssh hosts" +msgid "Default" +msgstr "मूलभूतम्‌" + +#: plugins/SSHManager/sshmanagermodel.cpp:75 +#, kde-format +msgid "%1 is a folder for SSH entries" +msgstr "%1 SSH प्रविष्टीनां कृते एकं पुटम् अस्ति" + +#: plugins/SSHManager/sshmanagermodel.cpp:79 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 +#, kde-format +msgid "SSH Config" +msgstr "SSH Config" + +#: plugins/SSHManager/sshmanagermodel.cpp:103 +#, kde-format +msgid "Host: %1" +msgstr "यजमानः %1" + +#: plugins/SSHManager/sshmanagerplugin.cpp:66 +#, kde-format +msgid "SSH Manager" +msgstr "SSH प्रबन्धकः" + +#: plugins/SSHManager/sshmanagerplugin.cpp:96 +#, kde-format +msgid "Show SSH Manager" +msgstr "SSH प्रबन्धकं दर्शयतु" + +#: plugins/SSHManager/sshmanagerplugin.cpp:115 +#, kde-format +msgid "Show Quick Access for SSH Actions" +msgstr "SSH क्रियाणां कृते द्रुतप्रवेशं दर्शयतु" + +#: plugins/SSHManager/sshmanagerplugin.cpp:146 +#, kde-format +msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" +msgstr "" +"कोऽपि रक्षितः SSH विन्यासः न प्राप्तः । प्लगिन्स् -> SSH Manager इत्यत्र एकं योजयितुं " +"शक्नुवन्ति" + +#: plugins/SSHManager/sshmanagerplugin.cpp:147 +#, kde-format +msgid "Plugins - SSH Manager" +msgstr "प्लगिन्स् - SSH प्रबन्धकः" + +#: plugins/SSHManager/sshmanagerplugin.cpp:153 +#, kde-format +msgid "SSH Entries" +msgstr "SSH प्रविष्टयः" + +#: plugins/SSHManager/sshmanagerplugin.cpp:182 +#, kde-format +msgid "" +"Could not get the process name, assume that we can't request a connection" +msgstr "प्रक्रियानाम प्राप्तुं न शक्तवान्, वयं संयोजनं अनुरोधयितुं न शक्नुमः इति कल्पयन्तु" + +#: plugins/SSHManager/sshmanagerplugin.cpp:182 +#: plugins/SSHManager/sshmanagerplugin.cpp:194 +#, kde-format +msgid "Error issuing SSH Command" +msgstr "SSH आदेशं निर्गन्तुं त्रुटिः" + +#: plugins/SSHManager/sshmanagerplugin.cpp:194 +#, kde-format +msgid "" +"Can't issue SSH command outside the shell application (eg, bash, zsh, sh)" +msgstr "शेल् अनुप्रयोगात् बहिः SSH आदेशं निर्गन्तुं न शक्नोति (उदाहरणार्थं, bash, zsh, sh)" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 +#: plugins/SSHManager/sshwidget.ui:133 +#, kde-format +msgid "SSH Key" +msgstr "SSH कीलम्" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 +#, kde-format +msgctxt "@action:inmenu" +msgid "Delete" +msgstr "लुप्" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 +#, kde-format +msgid "Don't Change" +msgstr "परिवर्तनं मा कुरुत" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 +#, kde-format +msgid "" +"You are about to delete the folder %1,\n" +" with multiple SSH Configurations, are you sure?" +msgstr "" +"भवान् %1, 10 इति पुटं विलोपयितुम् उद्यतः अस्ति ।\n" +" बहुभिः SSH विन्यासैः सह, भवान् निश्चितः वा?" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#, kde-format +msgctxt "@title:window" +msgid "Delete SSH Configurations" +msgstr "SSH विन्यासान् विलोपयन्तु" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 +#, kde-format +msgid "Imported SSH Profile
              Some settings are read only." +msgstr "आयातितं SSH प्रोफाइल
              केचन सेटिङ्ग्स् केवलं पठनीयानि सन्ति।" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 +#, kde-format +msgid "Missing Hostname" +msgstr "अनुपलब्ध होस्टनाम" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 +#, kde-format +msgid "Missing Name" +msgstr "लुप्त नाम" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 +#, kde-format +msgid "If Use Ssh Config is set, do not specify sshkey or username." +msgstr "यदि Use Ssh Config सेट् कृतम् अस्ति तर्हि sshkey अथवा username न निर्दिशन्तु ।" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 +#, kde-format +msgid "At least Username or SSHKey must be set" +msgstr "न्यूनातिन्यूनं Username अथवा SSHKey सेट् करणीयम्" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 +#, kde-format +msgid "Missing Folder" +msgstr "अनुपलब्ध फोल्डर" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 +#, kde-format +msgid "An SSH session must have a profile" +msgstr "SSH सत्रस्य प्रोफाइलं भवितुमर्हति" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 +#, kde-format +msgid "Cannot delete this folder" +msgstr "एतत् पुटं विलोपयितुं न शक्यते" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 +#, kde-format +msgid "Delete folder and all of its contents" +msgstr "फोल्डरं तस्य सर्वाणि सामग्रीनि च विलोपयन्तु" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 +#, kde-format +msgid "Double click to change the folder name." +msgstr "पुटस्य नाम परिवर्तयितुं द्विवारं क्लिक् कुर्वन्तु ।" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 +#, kde-format +msgid "You can't delete an automatically added entry." +msgstr "स्वयमेव योजितं प्रविष्टिं भवन्तः विलोपयितुं न शक्नुवन्ति।" + +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 +#, kde-format +msgid "Delete selected entry" +msgstr "चयनितं प्रविष्टिं विलोपयन्तु" + +#. i18n: ectx: property (text), widget (QLabel, label_6) +#: plugins/SSHManager/sshwidget.ui:19 +#, kde-format +msgid "Shortcut" +msgstr "शॉर्टकट" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, btnInvertFilter) +#: plugins/SSHManager/sshwidget.ui:43 +#, kde-format +msgid "Show entries that don't match the filter" +msgstr "फ़िल्टर इत्यनेन सह न मेलति इति प्रविष्टयः दर्शयन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, btnManageProfile) +#: plugins/SSHManager/sshwidget.ui:57 +#, kde-format +msgid "Change profile on connect/disconnect" +msgstr "connect/disconnect इत्यत्र प्रोफाइल परिवर्तयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, btnManageProfile) +#: plugins/SSHManager/sshwidget.ui:60 +#, kde-format +msgid "Manage profile" +msgstr "प्रोफाइल प्रबन्धयन्तु" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: plugins/SSHManager/sshwidget.ui:82 +#, kde-format +msgid "Identifier" +msgstr "परिचयकः" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, name) +#: plugins/SSHManager/sshwidget.ui:89 +#, kde-format +msgid "A name for this ssh entry" +msgstr "अस्य ssh प्रविष्टेः एकं नाम" + +#. i18n: ectx: property (placeholderText), widget (QLineEdit, name) +#: plugins/SSHManager/sshwidget.ui:92 +#, kde-format +msgid "The name of this entry on the list" +msgstr "सूचीयां अस्य प्रविष्टेः नाम" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: plugins/SSHManager/sshwidget.ui:99 +#, kde-format +msgid "SSH Hostname" +msgstr "SSH होस्टनाम" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, hostname) +#. i18n: ectx: property (placeholderText), widget (QLineEdit, hostname) +#: plugins/SSHManager/sshwidget.ui:106 plugins/SSHManager/sshwidget.ui:109 +#, kde-format +msgid "The hostname of the server" +msgstr "सर्वरस्य होस्ट्नाम" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: plugins/SSHManager/sshwidget.ui:116 +#, kde-format +msgid "Port" +msgstr "पोताश्रय" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, port) +#: plugins/SSHManager/sshwidget.ui:123 +#, kde-format +msgid "The port of the server, 22 is the default for ssh connections" +msgstr "सर्वरस्य पोर्ट्, 22 ssh संयोजनानां कृते पूर्वनिर्धारितम् अस्ति" + +#. i18n: ectx: property (text), widget (QLineEdit, port) +#: plugins/SSHManager/sshwidget.ui:126 +#, kde-format +msgid "22" +msgstr "२२" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, sshkey) +#: plugins/SSHManager/sshwidget.ui:142 +#, kde-format +msgid "The private key to be used for this connection" +msgstr "अस्य संयोजनस्य कृते उपयोक्तव्यं निजीकुंजी" + +#. i18n: ectx: property (placeholderText), widget (QLineEdit, sshkey) +#: plugins/SSHManager/sshwidget.ui:148 +#, kde-format +msgid "The private key" +msgstr "निजी कुञ्जी" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, useSshConfig) +#: plugins/SSHManager/sshwidget.ui:167 +#, kde-format +msgid "" +"If this is set, we don't rely on the SSH key set above, but on the " +"configuration on ~/.ssh/config" +msgstr "" +"यदि एतत् सेट् भवति तर्हि वयं उपरि सेट् कृते SSH कीलस्य उपरि न अवलम्बन्ते, अपितु ~/.ssh/" +"config इत्यत्र विन्यासस्य उपरि अवलम्बन्ते" + +#. i18n: ectx: property (text), widget (QCheckBox, useSshConfig) +#: plugins/SSHManager/sshwidget.ui:170 +#, kde-format +msgid "Use ~/.ssh/config for key" +msgstr "कीलस्य कृते ~/.ssh/config इत्यस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QLabel, label_7) +#: plugins/SSHManager/sshwidget.ui:177 +#, kde-format +msgid "Username" +msgstr "उपयोक्तृनाम" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, username) +#: plugins/SSHManager/sshwidget.ui:184 +#, kde-format +msgid "The username for the connection" +msgstr "संयोजनस्य उपयोक्तृनाम" + +#. i18n: ectx: property (placeholderText), widget (QLineEdit, username) +#: plugins/SSHManager/sshwidget.ui:187 +#, kde-format +msgid "Your username" +msgstr "भवतः उपयोक्तृनाम" + +#. i18n: ectx: property (text), widget (QLabel, folderLabel) +#: plugins/SSHManager/sshwidget.ui:194 +#, kde-format +msgid "Folder" +msgstr "समुच्चय" + +#. i18n: ectx: property (toolTip), widget (QComboBox, folder) +#: plugins/SSHManager/sshwidget.ui:207 +#, kde-format +msgid "For organizational purposes, this entry will be inside of this folder." +msgstr "संगठनात्मकप्रयोजनार्थं एषा प्रविष्टिः अस्य पुटस्य अन्तः भविष्यति ।" + +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: plugins/SSHManager/sshwidget.ui:220 +#, kde-format +msgid "Profile" +msgstr "रूपरेखा" + +#. i18n: ectx: property (toolTip), widget (QComboBox, profile) +#: plugins/SSHManager/sshwidget.ui:233 +#, kde-format +msgid "The profile to be active when the ssh session starts" +msgstr "ssh सत्रस्य आरम्भे सक्रियः भवितुम् अर्हति इति प्रोफाइल" + +#. i18n: ectx: property (toolTip), widget (QPushButton, newSSHConfig) +#: plugins/SSHManager/sshwidget.ui:271 +#, kde-format +msgid "Add a new SSH Entry" +msgstr "नूतनं SSH Entry योजयन्तु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, btnDelete) +#: plugins/SSHManager/sshwidget.ui:284 +#, kde-format +msgid "Delete selected SSH entry" +msgstr "चयनितं SSH प्रविष्टिं विलोपयन्तु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, btnEdit) +#: plugins/SSHManager/sshwidget.ui:297 +#, kde-format +msgid "Edit selected entry" +msgstr "चयनितप्रविष्टिं सम्पादयतु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, btnAdd) +#: plugins/SSHManager/sshwidget.ui:307 +#, kde-format +msgid "Add new SSH Configuration" +msgstr "नूतनं SSH विन्यासं योजयन्तु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, btnCancel) +#: plugins/SSHManager/sshwidget.ui:317 +#, kde-format +msgid "Cancel Add or Edit" +msgstr "योजयतु वा सम्पादयतु वा रद्दं कुर्वन्तु" + +#: pluginsystem/PluginManager.cpp:70 +#, kde-format +msgid "No plugins available" +msgstr "प्लगिन्स् उपलब्धाः नास्ति" + +#. i18n: ectx: property (windowTitle), widget (QWidget, PrintOptions) +#. i18n: ectx: property (title), widget (QGroupBox, OutputOptions) +#: PrintOptions.ui:14 PrintOptions.ui:20 +#, kde-format +msgid "Output Options" +msgstr "आउटपुट विकल्प" + +#. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) +#. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) +#: PrintOptions.ui:39 settings/konsole.kcfg:210 +#, kde-format +msgid "Printer &friendly mode (black text, no background)" +msgstr "मुद्रकः &अनुकूलः मोडः (कृष्णः पाठः, पृष्ठभूमिः नास्ति)" + +#. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) +#. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) +#: PrintOptions.ui:46 settings/konsole.kcfg:214 +#, kde-format +msgid "&Scale output" +msgstr "&स्केल आउटपुट" + +#: profile/Profile.cpp:272 +#, kde-format +msgctxt "Name of the built-in profile" +msgid "Built-in" +msgstr "अन्तर्निर्मितम्" + +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 +#, kde-format +msgid "Default profile" +msgstr "पूर्वनिर्धारित प्रोफाइल" + +#: profile/ProfileManager.cpp:280 +#, kde-format +msgctxt "New profile name, %1 is a number" +msgid "Profile %1" +msgstr "प्रोफाइल %1" + +#: profile/ProfileManager.cpp:294 +#, kde-format +msgid "Konsole does not have permission to save this profile to %1" +msgstr "Konsole इत्यस्य एतत् प्रोफाइलं %1 इत्यत्र रक्षितुं अनुमतिः नास्ति" + +#: profile/ProfileModel.cpp:55 +#, kde-format +msgctxt "@title:column Profile name" +msgid "Name" +msgstr "नामः" + +#: profile/ProfileModel.cpp:57 +#, kde-format +msgctxt "@title:column Profile keyboard shortcut" +msgid "Shortcut" +msgstr "शॉर्टकट" + +#: profile/ProfileModel.cpp:80 +#, kde-format +msgctxt "" +"@label:textbox added to the name of the built-in profile, to point out it's " +"read-only" +msgid " [Read-only]" +msgstr " [पठनमात्रम्]" + +#: profile/ProfileModel.cpp:84 +#, kde-format +msgctxt "@label:textbox added to the name of the current default profile" +msgid " [Default]" +msgstr " [मूलभूतम्‌]" + +#: profile/ProfileModel.cpp:99 +#, kde-format +msgctxt "@info:tooltip" +msgid "Built-in profile is always available" +msgstr "अन्तर्निर्मितः प्रोफाइलः सर्वदा उपलभ्यते" + +#: profile/ProfileModel.cpp:111 +#, kde-format +msgctxt "@info:tooltip" +msgid "Double click to change shortcut" +msgstr "शॉर्टकट् परिवर्तयितुं डबल क्लिक् कुर्वन्तु" + +#: RenameTabDialog.cpp:25 +#, kde-format +msgid "Tab Properties" +msgstr "ट्याब् गुणाः" + +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 +#, kde-format +msgid "Save Output From %1" +msgstr "%1 तः आउटपुट् रक्षन्तु" + +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 +#, kde-format +msgid "%1 is an invalid URL, the output could not be saved." +msgstr "%1 अमान्य URL अस्ति, निर्गमं रक्षितुं न शक्यते स्म ।" + +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "%1 इत्यत्र स्वयमेव रक्षणसञ्चिकां निर्मातुं असफलम् ।" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "स्क्रीनस् स्विचिंग् इत्यस्य कारणेन ऑटोसेव् स्थगयति।" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Autosave सञ्चिका बाह्यरूपेण परिवर्तिता अस्ति, येन अधिकानि autosave भवितव्यानि ।" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "आउटपुट् परिवर्तनेषु autosave स्थितिं अद्यतनीकर्तुं असफलम् ।" + +#: SaveHistoryTask.cpp:174 +#, kde-format +msgid "" +"A problem occurred when saving the output.\n" +"%1" +msgstr "" +"आउटपुट् रक्षन्ते सति समस्या अभवत् ।\n" +"%1" + +#: schemas.cpp:1 +#, kde-format +msgid "Black on Light Yellow" +msgstr "हल्के पीतवर्णे कृष्णवर्णः" + +#: schemas.cpp:2 +#, kde-format +msgid "Black on Random Light" +msgstr "यादृच्छिकप्रकाशे कृष्णवर्णः" + +#: schemas.cpp:3 +#, kde-format +msgid "Black on White" +msgstr "श्वेतस्य उपरि कृष्णः" + +#: schemas.cpp:4 +#, kde-format +msgid "Blue on Black" +msgstr "कृष्णवर्णे नीलवर्णः" + +#: schemas.cpp:5 +#, kde-format +msgid "Breeze" +msgstr "वायुः" + +#: schemas.cpp:6 +#, kde-format +msgid "Campbell" +msgstr "कैम्पबेल" + +#: schemas.cpp:7 +#, kde-format +msgid "Dark Pastels" +msgstr "डार्क पेस्टल" + +#: schemas.cpp:8 +#, kde-format +msgid "Green on Black" +msgstr "कृष्णे हरितम्" + +#: schemas.cpp:9 +#, kde-format +msgid "Linux Colors" +msgstr "Linux Colors इति" + +#: schemas.cpp:10 +#, kde-format +msgid "Red on Black" +msgstr "कृष्णस्य उपरि रक्तः" + +#: schemas.cpp:11 +#, kde-format +msgid "Solarized" +msgstr "सौरीकृत" + +#: schemas.cpp:12 +#, kde-format +msgid "Solarized Light" +msgstr "सौरीकृत प्रकाश" + +#: schemas.cpp:13 +#, kde-format +msgid "White on Black" +msgstr "कृष्णस्य उपरि श्वेतम्" + +#: schemas.cpp:14 +#, kde-format +msgid "Default (XFree 4)" +msgstr "पूर्वनिर्धारित (XFree 4) ." + +#: schemas.cpp:15 +#, kde-format +msgid "Linux console" +msgstr "Linux console इति" + +#: schemas.cpp:16 +#, kde-format +msgid "macOS" +msgstr "macOS" + +#: schemas.cpp:17 +#, kde-format +msgid "Solaris console" +msgstr "सोलारिस् कन्सोल" + +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "अन्वेषण..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "अत्र अन्वेष्टुं ट्याब्-नाम प्रविशन्तु" + +#: session/Session.cpp:131 +#, kde-format +msgid "Bell in '%1' (Session '%2')" +msgstr "'%1' (सत्र '%2') इत्यत्र घण्टी ।" + +#: session/Session.cpp:434 +#, kde-format +msgid "Could not find binary: " +msgstr "द्विचक्रीयम् न प्राप्नोत्: " + +#: session/Session.cpp:443 +#, kde-format +msgctxt "@info:shell Alert the user with red color text" +msgid "Warning: " +msgstr "चेतवानी: " + +#: session/Session.cpp:538 +#, kde-format +msgid "Could not find an interactive shell to start." +msgstr "आरम्भार्थं अन्तरक्रियाशीलं शेल् न प्राप्नोत् ।" + +#: session/Session.cpp:544 session/Session.cpp:547 +#, kde-format +msgid "" +"Could not find '%1', starting '%2' instead. Please check your profile " +"settings." +msgstr "'%1' न प्राप्नोत्, तस्य स्थाने '%2' आरभ्य । कृपया स्वस्य प्रोफाइलसेटिंग्स् पश्यन्तु।" + +#: session/Session.cpp:640 +#, kde-format +msgid "Could not start program '%1' with arguments '%2'." +msgstr "'%2' इति तर्कैः सह '%1' इति कार्यक्रमं आरभुं न शक्तवान् ।" + +#: session/Session.cpp:816 +#, kde-format +msgid "Silence in '%1' (Session '%2')" +msgstr "'%1' (सत्र '%2') मध्ये मौनम्" + +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 +#, kde-format +msgid "Show session" +msgstr "सत्रं दर्शयतु" + +#: session/Session.cpp:1133 +#, kde-format +msgctxt "@info:shell This session is done" +msgid "Finished" +msgstr "सम्पूर्ण" + +#: session/Session.cpp:1147 session/Session.cpp:1163 +#, kde-format +msgid "Program '%1' crashed." +msgstr "'%1' इति कार्यक्रमः दुर्घटनाम् अभवत् ।" + +#: session/Session.cpp:1149 +#, kde-format +msgid "Program '%1' exited with status %2." +msgstr "'%1' इति कार्यक्रमः %2 स्थितिना सह निर्गतवान् ।" + +#: session/Session.cpp:1700 +#, kde-format +msgid "ZModem Progress" +msgstr "ZModem प्रगति" + +#: session/Session.cpp:2248 +#, kde-format +msgid "Activity in '%1' (Session '%2')" +msgstr "'%1' (सत्र '%2') इत्यस्मिन् क्रियाकलापः" + +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 +#, kde-format +msgid "Konsole" +msgstr "सान्त्वनम्" + +#: session/SessionController.cpp:380 +#, kde-format +msgid "The process '%1' has finished running in session '%2'" +msgstr "'%1' इति प्रक्रिया '%2' सत्रे चालनं समाप्तवती ।" + +#: session/SessionController.cpp:463 +#, kde-format +msgid "Konsole does not know how to open the bookmark: " +msgstr "Konsole पुस्तकचिह्नं कथं उद्घाटयितुं न जानाति: " + +#: session/SessionController.cpp:541 +#, kde-format +msgid "Search for '%1' with" +msgstr "'%1' इत्यनेन सह अन्वेष्टुम्" + +#: session/SessionController.cpp:557 +#, kde-format +msgid "Configure Web Shortcuts..." +msgstr "जालशॉर्टकट् विन्यस्तं कुर्वन्तु..." + +#: session/SessionController.cpp:668 +#, kde-format +msgid "&Close Session" +msgstr "&सत्र समाप्त करें" + +#: session/SessionController.cpp:675 +#, kde-format +msgid "Open File Manager" +msgstr "सञ्चिकाप्रबन्धकं उद्घाटयन्तु" + +#: session/SessionController.cpp:690 +#, kde-format +msgid "Copy" +msgstr "प्रतिलिपि" + +#: session/SessionController.cpp:697 +#, kde-format +msgid "Split View Left-Right" +msgstr "विभक्त दृश्य वाम-दक्षिण" + +#: session/SessionController.cpp:702 +#, kde-format +msgid "Split View Top-Bottom" +msgstr "विभक्तं दृश्यं उपरि-तलम्" + +#: session/SessionController.cpp:706 +#, kde-format +msgid "Copy except prompts" +msgstr "प्रॉम्प्ट्स् विहाय प्रतिलिपिं कुर्वन्तु" + +#: session/SessionController.cpp:712 +#, kde-format +msgid "Copy user input" +msgstr "उपयोक्तृनिवेशस्य प्रतिलिपिं कुर्वन्तु" + +#: session/SessionController.cpp:718 +#, kde-format +msgid "Copy command output" +msgstr "आदेशनिर्गमस्य प्रतिलिपिं कुर्वन्तु" + +#: session/SessionController.cpp:733 +#, kde-format +msgid "Paste Selection" +msgstr "पेस्ट चयन" + +#: session/SessionController.cpp:740 +#, kde-format +msgid "Web Search" +msgstr "जाल अन्वेषणम्" + +#: session/SessionController.cpp:746 +#, kde-format +msgid "&Select All" +msgstr "&सर्वं चिनोतु" + +#: session/SessionController.cpp:750 +#, kde-format +msgid "Select &Mode" +msgstr "&Mode इति चिनोतु" + +#: session/SessionController.cpp:755 +#, kde-format +msgid "Select &Line" +msgstr "&Line इति चयनं कुर्वन्तु" + +#: session/SessionController.cpp:758 +#, kde-format +msgid "Save Output &As..." +msgstr "आउटपुट् रक्षतु &As..." + +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "ऑटो सेव आउटपुट अस..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "स्वतः रक्षणं स्थगयतु" + +#: session/SessionController.cpp:772 +#, kde-format +msgid "&Print Screen..." +msgstr "&मुद्रण स्क्रीन..." + +#: session/SessionController.cpp:776 +#, kde-format +msgid "Adjust Scrollback..." +msgstr "स्क्रॉलबैक् समायोजयन्तु..." + +#: session/SessionController.cpp:780 +#, kde-format +msgid "Clear Scrollback" +msgstr "स्क्रॉलबैक् स्वच्छं कुर्वन्तु" + +#: session/SessionController.cpp:784 +#, kde-format +msgid "Clear Scrollback and Reset" +msgstr "Scrollback तथा Reset इत्येतत् स्वच्छं कुर्वन्तु" + +#: session/SessionController.cpp:795 +#, kde-format +msgid "Next Profile" +msgstr "अग्रिमः प्रोफाइलः" + +#: session/SessionController.cpp:800 +#, kde-format +msgid "Previous Profile" +msgstr "पूर्व प्रोफाइल" + +#: session/SessionController.cpp:803 +#, kde-format +msgid "Switch Profile" +msgstr "प्रोफाइल स्विच करें" + +#: session/SessionController.cpp:828 +#, kde-format +msgid "Set &Encoding" +msgstr "सेट् &एन्कोडिंग" + +#: session/SessionController.cpp:848 +#, kde-format +msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" +msgid "Allow Mouse Tracking" +msgstr "Mouse Tracking इत्यस्य अनुमतिं ददातु" + +#: session/SessionController.cpp:857 +#, kde-format +msgctxt "@item:inmenu A read only (locked) session" +msgid "Read-Only" +msgstr "केवलं पठनीयम्" + +#: session/SessionController.cpp:868 +#, kde-format +msgid "&Configure or Rename Tab..." +msgstr "&ट्याब् विन्यस्तं वा पुनर्नामकरणं वा..." + +#: session/SessionController.cpp:874 +#, kde-format +msgid "&All Tabs in Current Window" +msgstr "&वर्तमानविण्डो मध्ये सर्वाणि ट्याब्स्" + +#: session/SessionController.cpp:881 +#, kde-format +msgid "&Select Tabs..." +msgstr "&ट्याब्स् चयनं कुर्वन्तु..." + +#: session/SessionController.cpp:887 +#, kde-format +msgctxt "@action:inmenu Do not select any tabs" +msgid "&None" +msgstr "&न कश्चित्" + +#: session/SessionController.cpp:895 +#, kde-format +msgid "Copy Input To" +msgstr "Copy Input To इति" + +#: session/SessionController.cpp:903 +#, kde-format +msgid "&ZModem Upload..." +msgstr "&ZModem अपलोड..." + +#: session/SessionController.cpp:908 +#, kde-format +msgid "One-Shot Monitors" +msgstr "एक-शॉट् निरीक्षकाः" + +#: session/SessionController.cpp:913 +#, kde-format +msgid "Monitor for &Prompt" +msgstr "&Prompt कृते निरीक्षणं कुर्वन्तु" + +#: session/SessionController.cpp:920 +#, kde-format +msgid "Monitor for &Activity" +msgstr "&Activity कृते निरीक्षणं कुर्वन्तु" + +#: session/SessionController.cpp:926 +#, kde-format +msgid "Monitor for &Silence" +msgstr "&Silence कृते निरीक्षणं कुर्वन्तु" + +#: session/SessionController.cpp:932 +#, kde-format +msgid "Monitor for Process Finishing" +msgstr "प्रक्रियासमाप्त्यर्थं निरीक्षकम्" + +#: session/SessionController.cpp:939 +#, kde-format +msgid "Enlarge Font" +msgstr "Font विस्तारित करें" + +#: session/SessionController.cpp:947 +#, kde-format +msgid "Shrink Font" +msgstr "संकुचित फॉन्ट" + +#: session/SessionController.cpp:952 +#, kde-format +msgid "Reset Font Size" +msgstr "Font Size पुनः सेट् करें" + +#: session/SessionController.cpp:958 +#, kde-format +msgid "Send Signal" +msgstr "संकेतं प्रेषयन्तु" + +#: session/SessionController.cpp:962 +#, kde-format +msgid "&Suspend Task" +msgstr "&कार्यं निलम्बयतु" + +#: session/SessionController.cpp:967 +#, kde-format +msgid "&Continue Task" +msgstr "&कार्यं निरन्तरं कुर्वन्तु" + +#: session/SessionController.cpp:972 +#, kde-format +msgid "&Hangup" +msgstr "&हङ्गुप्" + +#: session/SessionController.cpp:977 +#, kde-format +msgid "&Interrupt Task" +msgstr "&व्यवधान कार्य" + +#: session/SessionController.cpp:982 +#, kde-format +msgid "&Terminate Task" +msgstr "&कार्य समाप्त करना" + +#: session/SessionController.cpp:987 +#, kde-format +msgid "&Kill Task" +msgstr "&Kill Task इति" + +#: session/SessionController.cpp:992 +#, kde-format +msgid "User Signal &1" +msgstr "उपयोगकर्ता संकेत &1" + +#: session/SessionController.cpp:997 +#, kde-format +msgid "User Signal &2" +msgstr "उपयोगकर्ता संकेत &2" + +#: session/SessionController.cpp:1015 +#, kde-format +msgid "Create New Profile..." +msgstr "नूतनं प्रोफाइलं रचयन्तु..." + +#: session/SessionController.cpp:1017 +#, kde-format +msgid "Edit Current Profile..." +msgstr "वर्तमान प्रोफाइल सम्पादयतु..." + +#: session/SessionController.cpp:1157 +#, kde-format +msgid "" +"A program is currently running in this session. Are you sure you want to " +"close it?" +msgstr "" +"अस्मिन् सत्रे सम्प्रति एकः कार्यक्रमः प्रचलति । किं भवन्तः तत् पिधातुम् इच्छन्ति इति " +"निश्चितम्?" + +#: session/SessionController.cpp:1161 +#, kde-format +msgid "" +"The program '%1' is currently running in this session. Are you sure you " +"want to close it?" +msgstr "" +"अस्मिन् सत्रे सम्प्रति '%1' इति कार्यक्रमः प्रचलति । किं भवन्तः तत् पिधातुम् इच्छन्ति इति " +"निश्चितम्?" + +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 +#, kde-format +msgid "Confirm Close" +msgstr "Confirm Close इति" + +#: session/SessionController.cpp:1169 +#, kde-format +msgctxt "@action:button" +msgid "Close Program" +msgstr "Close Program" + +#: session/SessionController.cpp:1192 +#, kde-format +msgid "" +"A program in this session would not die. Are you sure you want to kill it " +"by force?" +msgstr "" +"अस्मिन् सत्रे कश्चन कार्यक्रमः न म्रियते स्म। किं त्वं निश्चयेन तत् बलात् मारयितुम् इच्छसि ?" + +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" +msgid "" +"The program '%1' in this session would not die. Are you sure you want to " +"kill it by force?" +msgstr "" +"अस्मिन् सत्रे '%1' इति कार्यक्रमः न म्रियते स्म । किं त्वं निश्चयेन तत् बलात् मारयितुम् " +"इच्छसि ?" + +#: session/SessionController.cpp:1204 +#, kde-format +msgctxt "@action:button" +msgid "Kill Program" +msgstr "किल प्रोग्राम" + +#: session/SessionController.cpp:1925 +#, kde-format +msgid "The shell prompt is displayed in session '%1'" +msgstr "शेल् प्रॉम्प्ट् '%1' सत्रे प्रदर्शितं भवति ।" + +#: session/SessionController.cpp:2155 +#, kde-format +msgid "Open Current Folder With" +msgstr "Current Folder With उद्घाटयन्तु" + +#: session/SessionController.cpp:2225 +#, kde-format +msgid "Save ZModem Download to..." +msgstr "ZModem Download इत्येतत् रक्षतु..." + +#: session/SessionController.cpp:2235 +#, kde-format +msgid "" +"

              A ZModem file transfer attempt has been detected, but no suitable ZModem " +"software was found on this system.

              You may wish to install the 'rzsz' " +"or 'lrzsz' package.

              " +msgstr "" +"

              ZModem सञ्चिकास्थापनस्य प्रयासः ज्ञातः, परन्तु अस्मिन् प्रणाल्यां कोऽपि उपयुक्तः ZModem " +"सॉफ्टवेयरः न प्राप्तः ।

              भवान् 'rzsz' अथवा 'lrzsz' संकुलं " +"संस्थापयितुम् इच्छति ।

              " + +#: session/SessionController.cpp:2245 +#, kde-format +msgid "" +"

              The current session already has a ZModem file transfer in progress.

              " +msgstr "

              वर्तमानसत्रे पूर्वमेव ZModem सञ्चिकास्थापनं प्रचलति ।

              " + +#: session/SessionController.cpp:2258 +#, kde-format +msgid "" +"

              No suitable ZModem software was found on this system.

              You may wish " +"to install the 'rzsz' or 'lrzsz' package.

              " +msgstr "" +"

              अस्मिन् प्रणाल्यां कोऽपि उपयुक्तः ZModem सॉफ्टवेयरः न प्राप्तः ।

              भवान् '" +"rzsz' अथवा 'lrzsz' संकुलं संस्थापयितुम् इच्छति ।

              " + +#: session/SessionController.cpp:2263 +#, kde-format +msgid "Select Files for ZModem Upload" +msgstr "ZModem अपलोड् कृते Files इति चिनोतु" + +#: session/SessionListModel.cpp:89 +#, kde-format +msgctxt "@item:intable The session index" +msgid "Number" +msgstr "संख्या" + +#: session/SessionListModel.cpp:91 +#, kde-format +msgctxt "@item:intable The session title" +msgid "Title" +msgstr "शीर्षक" + +#: settings/ConfigurationDialog.cpp:31 +#, kde-format +msgctxt "@title:window" +msgid "Configure" +msgstr "विन्यस्तं कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 +#, kde-format +msgid "When launching Konsole re-use existing process if possible" +msgstr "Konsole प्रारम्भं कुर्वन् यदि सम्भवं तर्हि विद्यमानप्रक्रियायाः पुनः उपयोगं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 +#, kde-format +msgid "Run all Konsole windows in a single process" +msgstr "एकस्मिन् प्रक्रियायां सर्वाणि Konsole विण्डोस् चालयन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "यदि सक्षमं भवति तर्हि प्रोफाइलसेटिंग्स् उपेक्षिताः भविष्यन्ति" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "विण्डो आकारं स्मर्यताम्" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "नूतनानि ट्याब्स् स्थापयन्तु :" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "सूचनाः :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "अन्वेषणं अधः आरभ्यत इति सेट् करोति" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "पश्चात् अन्वेषणं कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "अन्वेषणं लघुसंवेदनशीलं वा इति सेट् करोति" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "प्रकरणसंवेदनशीलः" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "प्रक्रिया तथा विण्डो :" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "सर्वाणि मेलनानि प्रकाशयन्तु" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "अन्वेषण:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) +#. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format +msgid "Sets whether search should stop instead of wrapping" +msgstr "अन्वेषणं वेष्टनस्य स्थाने स्थगितव्यं वा इति सेट् करोति" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) +#: settings/GeneralSettings.ui:206 +#, kde-format +msgid "No wrap" +msgstr "न वेष्टनम्" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "मेनू त्वरकान् सक्षमं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "यदा मूषकसूचकः तेषां उपरि चालितः भवति तदा टर्मिनल् फोकस कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "सर्वे संवादाः पुनः दर्शिताः भविष्यन्ति" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "सर्वे \"पुनः मा पृच्छन्तु\" इति सन्देशाः सक्षमाः कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "शीर्षकपट्टिकायां विण्डो शीर्षकं दर्शयतु" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "विण्डो शीर्षकपट्टिकां फ्रेमं च निष्कासयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "नियमितव्यञ्जनानां उपयोगेन मेलनं कुर्वन्तु" + +#. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/konsole.kcfg:18 +#, kde-format +msgid "Show window title set by escape sequence on the titlebar" +msgstr "शीर्षकपट्टिकायां escape क्रमेण सेट् विण्डो शीर्षकं दर्शयतु" + +#. i18n: ectx: tooltip, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/konsole.kcfg:23 +#, kde-format +msgid "Allow users to access top menu through Alt+Key combination" +msgstr "उपयोक्तृभ्यः Alt+Key संयोजनद्वारा शीर्षमेनू प्राप्तुं अनुमतिं ददातु" + +#. i18n: ectx: label, entry (RememberWindowSize), group (KonsoleWindow) +#: settings/konsole.kcfg:27 +#, kde-format +msgid "Use current window size on next startup" +msgstr "अग्रिमे आरम्भे वर्तमानविण्डो आकारस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: tooltip, entry (RememberWindowSize), group (KonsoleWindow) +#: settings/konsole.kcfg:28 +#, kde-format +msgid "The window size will be saved upon exiting Konsole" +msgstr "Konsole निर्गत्य विण्डो आकारः रक्षितः भविष्यति" + +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Konsole प्रारम्भं कुर्वन् यदि सम्भवं तर्हि विद्यमानप्रक्रियायाः पुनः उपयोगं कुर्वन्तु" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:42 +#, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format +msgid "Thumbnail Width" +msgstr "लघुचित्र चौड़ाई" + +#. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:63 +#, kde-format +msgid "Sets the width of the thumbnail" +msgstr "लघुचित्रस्य विस्तारं सेट् करोति" + +#. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 +#, kde-format +msgid "Use Shift to display a thumbnail" +msgstr "लघुचित्रं प्रदर्शयितुं Shift इत्यस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 +#, kde-format +msgid "Use Alt to display a thumbnail" +msgstr "लघुचित्रं प्रदर्शयितुं Alt इत्यस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 +#, kde-format +msgid "Use Ctrl to display a thumbnail" +msgstr "लघुचित्रं प्रदर्शयितुं Ctrl इत्यस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/konsole.kcfg:84 +#, kde-format +msgid "Search is case sensitive" +msgstr "अन्वेषणं केस-संवेदनशीलं भवति" + +#. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) +#: settings/konsole.kcfg:93 +#, kde-format +msgid "Highlight all search matches" +msgstr "सर्वाणि अन्वेषणमेलनानि प्रकाशयन्तु" + +#. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) +#: settings/konsole.kcfg:94 +#, kde-format +msgid "Sets whether matching text should be highlighted" +msgstr "मेलपाठः प्रकाशितः भवेत् वा इति सेट् करोति" + +#. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) +#: settings/konsole.kcfg:103 +#, kde-format +msgid "Search stops instead of wrapping" +msgstr "अन्वेषणं वेष्टनस्य स्थाने स्थगयति" + +#. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) +#: settings/konsole.kcfg:110 +#, kde-format +msgid "Control whether child cgroups are created for individual tabs" +msgstr "व्यक्तिगतट्याब्स् कृते बाल cgroups निर्मिताः सन्ति वा इति नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) +#: settings/konsole.kcfg:114 +#, kde-format +msgid "" +"Determines the memory consumption level above which throttling will start" +msgstr "स्मृति-उपभोगस्तरं निर्धारयति यस्य उपरि थ्रोट्लिंग् आरभ्यते" + +#. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) +#. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 +#, kde-format +msgid "Control the visibility of the whole tab bar" +msgstr "सम्पूर्णस्य ट्याब् बारस्य दृश्यतां नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) +#: settings/konsole.kcfg:129 +#, kde-format +msgid "Control the size of the handle between panels" +msgstr "फलकयोः मध्ये हस्तकस्य आकारं नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (TabBarPosition), group (TabBar) +#: settings/konsole.kcfg:149 +#, kde-format +msgid "Control the position of the tab bar" +msgstr "ट्याब् बारस्य स्थितिं नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) +#: settings/konsole.kcfg:159 +#, kde-format +msgid "Control the visual style of the tab bar" +msgstr "ट्याब् बारस्य दृश्यशैलीं नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) +#: settings/konsole.kcfg:163 +#, kde-format +msgid "Use a user-defined .css file for the tab bar" +msgstr "ट्याब् बारस्य कृते उपयोक्तृनिर्धारितं .css सञ्चिकां उपयुज्यताम्" + +#. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) +#: settings/konsole.kcfg:167 +#, kde-format +msgid "The .css file to use for the tab bar style" +msgstr "ट्याब् बारशैल्याः कृते उपयोक्तुं .css सञ्चिका" + +#. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) +#: settings/konsole.kcfg:171 +#, kde-format +msgid "Allow middle-clicking on open tabs to close them" +msgstr "उद्घाटित-ट्याब्-मध्ये मध्य-क्लिक् कृत्वा तान् पिधातुम् अनुमन्यताम्" + +#. i18n: ectx: label, entry (NewTabButton), group (TabBar) +#: settings/konsole.kcfg:175 +#, kde-format +msgid "Control the visibility of 'New Tab' button on the tab bar" +msgstr "ट्याब् बार मध्ये 'New Tab' बटनस्य दृश्यतां नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "ट्याब् पट्टिकायां 'Search Tabs' बटनस्य दृश्यतां नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (CloseTabButton), group (TabBar) +#: settings/konsole.kcfg:187 +#, kde-format +msgid "Control where the \"Close tab\" button will be displayed" +msgstr "\"Close tab\" इति बटनं कुत्र प्रदर्शितं भविष्यति इति नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) +#: settings/konsole.kcfg:196 +#, kde-format +msgid "Control where to put the new tab" +msgstr "नूतनं ट्याब् कुत्र स्थापयितव्यम् इति नियन्त्रयन्तु" + +#. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) +#: settings/konsole.kcfg:204 +#, kde-format +msgid "Expand the tab widths" +msgstr "ट्याब् विस्तारान् विस्तारयन्तु" + +#. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) +#: settings/konsole.kcfg:220 +#, kde-format +msgid "For scrollback files, use system-wide folder location" +msgstr "स्क्रॉलबैक् सञ्चिकानां कृते, सिस्टम्-व्यापी पुटस्थानस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) +#: settings/konsole.kcfg:224 +#, kde-format +msgid "For scrollback files, use user's specific folder location" +msgstr "स्क्रॉलबैक् सञ्चिकानां कृते उपयोक्तुः विशिष्टं पुटस्थानं उपयुज्यताम्" + +#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) +#: settings/konsole.kcfg:228 +#, kde-format +msgid "For scrollback files, use specified folder location" +msgstr "स्क्रॉलबैक् सञ्चिकानां कृते निर्दिष्टं पुटस्थानं उपयुज्यताम्" + +#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) +#: settings/konsole.kcfg:232 +#, kde-format +msgid "For scrollback files, use this folder" +msgstr "स्क्रॉलबैक् सञ्चिकानां कृते एतत् पुटे उपयुज्यताम्" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) +#: settings/MemorySettings.ui:17 +#, kde-format +msgid "Enable memory monitoring:" +msgstr "स्मृतिनिरीक्षणं सक्षमं कुर्वन्तु :" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/MemorySettings.ui:24 +#, fuzzy, kde-format +#| msgid "" +#| "Changes will take effect upon restart. If enabled, sustained memory " +#| "consumption by Konsole\n" +#| "exceeding the specified value will cause systemd-oomd to eliminate the " +#| "tab(s)\n" +#| "containing the memory-intensive process(es). Note: enabling\n" +#| "might cause greater slowdowns during high memory consumption and " +#| "specifying\n" +#| "excessively low values might still cause Konsole to be killed." +msgid "" +"Changes will take effect upon restart. If enabled, sustained memory " +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." +msgstr "" +"पुनः आरम्भे परिवर्तनं प्रभावी भविष्यति । यदि सक्षमं भवति तर्हि Konsole द्वारा स्मृति-" +"उपभोगः निरन्तरं भवति\n" +"निर्दिष्टमूल्यं अतिक्रम्य systemd-oomd इत्यनेन ट्याब्(s) समाप्तं भविष्यति ।\n" +"स्मृति-प्रधान-प्रक्रिया (प्रक्रियाः) युक्ता । नोटः सक्षमीकरणम्\n" +"उच्चस्मृति-उपभोगस्य निर्दिष्टीकरणस्य च समये अधिकं मन्दतां जनयितुं शक्नोति\n" +"अत्यधिकं न्यूनमूल्यानि अद्यापि Konsole इत्यस्य वधस्य कारणं भवितुम् अर्हन्ति ।" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/MemorySettings.ui:37 +#, kde-format +msgid "Memory limit:" +msgstr "स्मृतिसीमा :" + +#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) +#: settings/MemorySettings.ui:44 +#, kde-format +msgid " MB" +msgstr " MB" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/PartInfo.ui:17 +#, kde-format +msgid "" +"

              Applications that use KonsolePart share profiles.

              They do not share with Konsole or other applications:

              • default " +"profile
              • show in menu
              • shortcuts

              Feel free to " +"open a Konsole bug report if you desire " +"a change to how these are handled." +msgstr "" +"

              KonsolePart इत्यस्य उपयोगं कुर्वन्तः अनुप्रयोगाः प्रोफाइल् साझां " +"कुर्वन्ति ।

              ते Konsole अथवा अन्यैः अनुप्रयोगैः सह साझां न कुर्वन्ति:

              • " +"पूर्वनिर्धारितरूपरेखा
              • मेनू मध्ये दर्शयतु
              • शॉर्टकट् इति

              " +"यदि भवान् एतानि कथं नियन्त्रितानि इति परिवर्तनं इच्छति तर्हि Konsole दोषप्रतिवेदनं उद्घाटयितुं " +"निःशङ्कं भवन्तु ।" + +#. i18n: ectx: property (toolTip), widget (QPushButton, newProfileButton) +#: settings/ProfileSettings.ui:51 +#, kde-format +msgid "Create a new profile based on the selected profile" +msgstr "चयनितप्रोफाइलस्य आधारेण नूतनं प्रोफाइलं रचयन्तु" + +#. i18n: ectx: property (text), widget (QPushButton, newProfileButton) +#: settings/ProfileSettings.ui:54 +#, kde-format +msgid "&New..." +msgstr "&नूतनम्‌..." + +#. i18n: ectx: property (toolTip), widget (QPushButton, editProfileButton) +#: settings/ProfileSettings.ui:64 +#, kde-format +msgid "" +"Edit the selected profile (this button is disabled for read-only profiles)" +msgstr "चयनितं प्रोफाइलं सम्पादयन्तु (केवलपठनीयप्रोफाइलानां कृते एतत् बटनं अक्षमम् अस्ति)" + +#. i18n: ectx: property (text), widget (QPushButton, editProfileButton) +#: settings/ProfileSettings.ui:67 +#, kde-format +msgid "&Edit..." +msgstr "&सम्पादन..." + +#. i18n: ectx: property (toolTip), widget (QPushButton, deleteProfileButton) +#: settings/ProfileSettings.ui:77 +#, kde-format +msgid "Delete the selected profile" +msgstr "चयनितं प्रोफाइलं विलोपयन्तु" + +#. i18n: ectx: property (text), widget (QPushButton, deleteProfileButton) +#: settings/ProfileSettings.ui:80 +#, kde-format +msgid "&Remove" +msgstr "&अपाकरोति" + +#. i18n: ectx: property (toolTip), widget (QPushButton, setAsDefaultButton) +#: settings/ProfileSettings.ui:90 +#, kde-format +msgid "Set the selected profile as the default for new terminal sessions" +msgstr "चयनितं प्रोफाइलं नूतन-टर्मिनल्-सत्रेषु पूर्वनिर्धारितरूपेण सेट् कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QPushButton, setAsDefaultButton) +#: settings/ProfileSettings.ui:93 +#, kde-format +msgid "&Set as Default" +msgstr "&पूर्वनिर्धारितरूपेण सेट् कुर्वन्तु" + +#. i18n: ectx: attribute (title), widget (QWidget, appearanceTab) +#: settings/TabBarSettings.ui:39 +#, kde-format +msgctxt "@title:tab Tab bar settings" +msgid "Appearance" +msgstr "स्वरूपम्‌" + +#. i18n: ectx: property (text), widget (QLabel, showTabBarLabel) +#: settings/TabBarSettings.ui:53 +#, kde-format +msgid "Show:" +msgstr "दर्शयतु:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowTabBarWhenNeeded) +#: settings/TabBarSettings.ui:63 +#, kde-format +msgid "When needed" +msgstr "यदा आवश्यकता भवति" + +#. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowTabBar) +#: settings/TabBarSettings.ui:73 +#, kde-format +msgid "Alwa&ys" +msgstr "सर्वदा" + +#. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideTabBar) +#: settings/TabBarSettings.ui:83 +#, kde-format +msgid "&Never" +msgstr "&कदापि न" + +#. i18n: ectx: property (text), widget (QLabel, positionLabel) +#: settings/TabBarSettings.ui:109 +#, kde-format +msgid "Position:" +msgstr "स्थितिः:" + +#. i18n: ectx: property (text), widget (QRadioButton, Top) +#: settings/TabBarSettings.ui:119 +#, kde-format +msgid "Above terminal area" +msgstr "टर्मिनलक्षेत्रस्य उपरि" + +#. i18n: ectx: property (text), widget (QRadioButton, Bottom) +#: settings/TabBarSettings.ui:129 +#, kde-format +msgid "Be&low terminal area" +msgstr "Be&low टर्मिनल क्षेत्र" + +#. i18n: ectx: property (text), widget (QRadioButton, Left) +#: settings/TabBarSettings.ui:139 +#, kde-format +msgid "To the left of terminal area" +msgstr "टर्मिनलक्षेत्रस्य वामभागे" + +#. i18n: ectx: property (text), widget (QRadioButton, Right) +#: settings/TabBarSettings.ui:149 +#, kde-format +msgid "To the &right of terminal area" +msgstr "टर्मिनलक्षेत्रस्य &दक्षिणे" + +#. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) +#: settings/TabBarSettings.ui:175 +#, kde-format +msgid "Show Close Tab button:" +msgstr "Close Tab बटनं दर्शयतु:" + +#. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) +#: settings/TabBarSettings.ui:185 +#, kde-format +msgid "On ea&ch tab" +msgstr "ea&ch ट्याब् इत्यत्र" + +#. i18n: ectx: property (text), widget (QRadioButton, OnTabBar) +#: settings/TabBarSettings.ui:195 +#, kde-format +msgid "On &the tab bar" +msgstr "&the tab bar इत्यत्र" + +#. i18n: ectx: property (text), widget (QRadioButton, None) +#: settings/TabBarSettings.ui:205 +#, kde-format +msgctxt "Do not show a close button" +msgid "None" +msgstr "न कश्चित्" + +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Search Tabs इति बटनं दर्शयतु:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "सर्वदा" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "कदापि न" + +#. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) +#. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 +#, kde-format +msgctxt "@item:intext Miscellaneous Options" +msgid "Miscellaneous:" +msgstr "विविध:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) +#: settings/TabBarSettings.ui:287 +#, kde-format +msgid "Show 'New Tab' button" +msgstr "'New Tab' बटनं दर्शयतु" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) +#: settings/TabBarSettings.ui:294 +#, kde-format +msgid "Expand individual tab widths to full window" +msgstr "व्यक्तिगतट्याब्विस्तारं पूर्णविण्डोपर्यन्तं विस्तारयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) +#: settings/TabBarSettings.ui:301 +#, kde-format +msgid "Use user-defined stylesheet:" +msgstr "उपयोक्तृ-निर्धारितशैलीपत्रस्य उपयोगं कुर्वन्तु:" + +#. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) +#: settings/TabBarSettings.ui:327 +#, kde-format +msgctxt "@item:intext Optional file path is empty" +msgid "(none)" +msgstr "(न कश्चित्)" + +#. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) +#: settings/TabBarSettings.ui:350 +#, kde-format +msgctxt "@title:tab Tab bar settings" +msgid "Behavior" +msgstr "व्यवहार" + +#. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) +#: settings/TabBarSettings.ui:364 +#, kde-format +msgid "Put new tabs:" +msgstr "नूतनानि ट्याब्स् स्थापयन्तु :" + +#. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) +#: settings/TabBarSettings.ui:374 +#, kde-format +msgid "At &the end" +msgstr "&अन्ते" + +#. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) +#: settings/TabBarSettings.ui:384 +#, kde-format +msgid "After current &tab" +msgstr "वर्तमान &tab इत्यस्य अनन्तरं" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) +#: settings/TabBarSettings.ui:420 +#, kde-format +msgid "Close tab on middle-click" +msgstr "मध्य-क्लिक् इत्यत्र ट्याब् पिधाय" + +#. i18n: ectx: attribute (title), widget (QWidget, splitTab) +#: settings/TabBarSettings.ui:443 +#, kde-format +msgid "Splits" +msgstr "विभजति" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/TabBarSettings.ui:449 +#, kde-format +msgid "Show Header:" +msgstr "शीर्षकं दर्शयतु :" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) +#: settings/TabBarSettings.ui:456 +#, kde-format +msgctxt "@option:radio When needed show the split header" +msgid "When needed" +msgstr "यदा आवश्यकता भवति" + +#. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) +#: settings/TabBarSettings.ui:466 +#, kde-format +msgctxt "@option:radio Never show the split header" +msgid "Never" +msgstr "कदापि न" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/TabBarSettings.ui:492 +#, kde-format +msgid "Drag Handle Size:" +msgstr "Drag Handle आकारः :" + +#. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) +#: settings/TabBarSettings.ui:502 +#, kde-format +msgctxt "@option:radio Small height/width of splitter widget" +msgid "Small" +msgstr "लघु" + +#. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) +#: settings/TabBarSettings.ui:512 +#, kde-format +msgctxt "@option:radio Medium height/width of splitter widget" +msgid "Medium" +msgstr "मध्यम" + +#. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) +#: settings/TabBarSettings.ui:522 +#, kde-format +msgctxt "@option:radio Large height/width of splitter widget" +msgid "Large" +msgstr "बृहत्‌" + +#. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) +#: settings/TabBarSettings.ui:545 +#, kde-format +msgctxt "@option:radio Always show the split header" +msgid "Always" +msgstr "सर्वदा" + +#: settings/TemporaryFilesSettings.cpp:31 +#, kde-format +msgctxt "" +"@option:radio File location; %1: path to directory " +"placeholder" +msgid "System temporary directory (%1)" +msgstr "प्रणाली अस्थायी निर्देशिका (%1) ." + +#: settings/TemporaryFilesSettings.cpp:33 +#, kde-format +msgctxt "" +"@option:radio File location; %1: path to directory " +"placeholder" +msgid "User cache directory (%1)" +msgstr "उपयोक्तृसञ्चयनिर्देशिका (%1) ." + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: settings/TemporaryFilesSettings.ui:25 +#, kde-format +msgid "Scrollback file location:" +msgstr "स्क्रॉलबैक् सञ्चिकास्थानं :" + +#. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseSpecifiedLocation) +#: settings/TemporaryFilesSettings.ui:64 +#, kde-format +msgctxt "@option:radio Custom (file location); followed by text entry field" +msgid "Custom:" +msgstr "आचारः:" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/ThumbnailsSettings.ui:17 +#, kde-format +msgid "Size:" +msgstr "आकृति:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_ThumbnailSize) +#: settings/ThumbnailsSettings.ui:24 +#, kde-format +msgid "px" +msgstr "px" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/ThumbnailsSettings.ui:37 +#, kde-format +msgid "" +"

              To use this feature, enable Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " +msgstr "" +"

              एतत् विशेषतां उपयोक्तुं, स्वस्य प्रोफाइल सेटिंग्स् मध्ये Mouse->Miscellaneous->Underline सञ्चिकाः " +"सक्षमं कुर्वन्तु ।

              " + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/ThumbnailsSettings.ui:53 +#, kde-format +msgid "Activation:" +msgstr "सक्रियीकरणम् :" + +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: settings/ThumbnailsSettings.ui:63 +#, kde-format +msgid "Mouse hover plus" +msgstr "माउस होवर प्लस्" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailShift) +#: settings/ThumbnailsSettings.ui:70 +#, kde-format +msgid "Shift" +msgstr "विहरति" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailAlt) +#: settings/ThumbnailsSettings.ui:77 +#, kde-format +msgid "Alt" +msgstr "सर्वे" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailCtrl) +#: settings/ThumbnailsSettings.ui:84 +#, kde-format +msgid "Ctrl" +msgstr "Ctrl" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableThumbnails) +#: settings/ThumbnailsSettings.ui:93 +#, kde-format +msgid "Enable thumbnails generation" +msgstr "लघुचित्रजननं सक्षमं कुर्वन्तु" + +#: terminalDisplay/TerminalDisplay.cpp:702 +#, kde-format +msgid "Size: %1 x %2" +msgstr "आकारः %1 x %2" + +#: terminalDisplay/TerminalDisplay.cpp:2319 +#, kde-format +msgid "Are you sure you want to paste %1 character?" +msgid_plural "Are you sure you want to paste %1 characters?" +msgstr[0] "किं भवान् निश्चितः यत् भवान् %1 वर्णं चिनोतुम् इच्छति?" +msgstr[1] "किं भवान् निश्चितरूपेण %1 वर्णं चिनोतुम् इच्छति?" + +#: terminalDisplay/TerminalDisplay.cpp:2320 +#, kde-format +msgid "Confirm Paste" +msgstr "Confirm Paste इति" + +#: terminalDisplay/TerminalDisplay.cpp:2353 +#, kde-format +msgid "End Of Text/Interrupt: may exit the current process" +msgstr "End Of Text/Interrupt: वर्तमानप्रक्रियायाः निर्गमनं कर्तुं शक्नोति" + +#: terminalDisplay/TerminalDisplay.cpp:2354 +#, kde-format +msgid "End Of Transmission: may exit the current process" +msgstr "End Of Transmission: वर्तमानप्रक्रियायाः निर्गमनं कर्तुं शक्नोति" + +#: terminalDisplay/TerminalDisplay.cpp:2355 +#, kde-format +msgid "Bell: will try to emit an audible warning" +msgstr "बेल: श्रव्यं चेतावनीम् उत्सर्जयितुं प्रयतते" + +#: terminalDisplay/TerminalDisplay.cpp:2356 +#, kde-format +msgid "Backspace" +msgstr "पृष्ठभाग" + +#: terminalDisplay/TerminalDisplay.cpp:2357 +#, kde-format +msgid "Device Control Three/XOFF: suspends output" +msgstr "उपकरणनियन्त्रणं त्रयः/XOFF: उत्पादनं निलम्बयति" + +#: terminalDisplay/TerminalDisplay.cpp:2358 +#, kde-format +msgid "Substitute/Suspend: may suspend current process" +msgstr "प्रतिस्थापन/निलम्बनम्: वर्तमानप्रक्रियायाः निलम्बनं कर्तुं शक्नोति" + +#: terminalDisplay/TerminalDisplay.cpp:2359 +#, kde-format +msgid "Escape: used for manipulating terminal state" +msgstr "पलायनम् : टर्मिनल् अवस्थायां हेरफेरार्थं प्रयुक्तम्" + +#: terminalDisplay/TerminalDisplay.cpp:2360 +#, kde-format +msgid "File Separator/Quit: may abort the current process" +msgstr "File Separator/Quit: वर्तमान प्रक्रियां निरस्तं कर्तुं शक्नोति" + +#: terminalDisplay/TerminalDisplay.cpp:2383 +#, kde-format +msgid "" +"The text you're trying to paste contains hidden control characters, do you " +"want to filter them out?" +msgstr "" +"भवन्तः यस्मिन् पाठे चिनोतुम् प्रयतन्ते तस्मिन् गुप्तनियन्त्रणवर्णाः सन्ति, किं भवन्तः तान् " +"छानयितुम् इच्छन्ति?" + +#: terminalDisplay/TerminalDisplay.cpp:2386 +#, kde-format +msgctxt "@title" +msgid "Confirm Paste" +msgstr "Confirm Paste इति" + +#: terminalDisplay/TerminalDisplay.cpp:2387 +#, kde-format +msgctxt "@action:button" +msgid "Paste &without control characters" +msgstr "&नियंत्रणवर्णान् विना चिनोतु" + +#: terminalDisplay/TerminalDisplay.cpp:2388 +#, kde-format +msgctxt "@action:button" +msgid "&Paste everything" +msgstr "&सर्वं चिनोतु" + +#: terminalDisplay/TerminalDisplay.cpp:2389 +#, kde-format +msgctxt "@action:button" +msgid "&Cancel" +msgstr "&निरसयतु" + +#: terminalDisplay/TerminalDisplay.cpp:2620 +#, kde-format +msgid "" +"Output has been suspended by pressing Ctrl+S. Press Ctrl+Q to resume." +msgstr "" +"Ctrl+S नुदन् आउटपुट् निलम्बितम् अस्ति । पुनः आरम्भं कर्तुं Ctrl+Q नुदन्तु।" +"" + +#: terminalDisplay/TerminalDisplay.cpp:2675 +#, kde-format +msgid "This terminal is read-only." +msgstr "इदं टर्मिनल् केवलं पठनीयम् अस्ति ।" + +#: terminalDisplay/TerminalDisplay.cpp:3081 +#, kde-format +msgid "Change &Directory To" +msgstr "परिवर्तनं &निर्देशिका To" + +#: terminalDisplay/TerminalDisplay.cpp:3116 +#, kde-format +msgid "&Paste Location" +msgstr "&Paste स्थान" + +#: ViewManager.cpp:124 +#, kde-format +msgctxt "@action:inmenu" +msgid "Split View" +msgstr "विभक्त दृश्य" + +#: ViewManager.cpp:131 +#, kde-format +msgctxt "@action:inmenu" +msgid "Split View Left/Right" +msgstr "विभक्त दृश्य वाम/दक्षिण" + +#: ViewManager.cpp:139 +#, kde-format +msgctxt "@action:inmenu" +msgid "Split View Top/Bottom" +msgstr "विभक्तं दृश्यं उपरि/तलम्" + +#: ViewManager.cpp:147 +#, kde-format +msgctxt "@action:inmenu" +msgid "Split View Automatically" +msgstr "स्वतः दृश्यं विभज्यताम्" + +#: ViewManager.cpp:157 +#, kde-format +msgctxt "@action:inmenu" +msgid "Split View Left/Right from next tab" +msgstr "अग्रिम ट्याब् तः View Left/Right विभक्तं कुर्वन्तु" + +#: ViewManager.cpp:165 +#, kde-format +msgctxt "@action:inmenu" +msgid "Split View Top/Bottom from next tab" +msgstr "अग्रिम ट्याब् तः View Top/Bottom इति विभक्तं कुर्वन्तु" + +#: ViewManager.cpp:173 +#, kde-format +msgctxt "@action:inmenu" +msgid "Split View Automatically from next tab" +msgstr "अग्रिम ट्याब् तः स्वयमेव दृश्यं विभज्यताम्" + +#: ViewManager.cpp:183 +#, kde-format +msgctxt "@action:inmenu" +msgid "Load a new tab with layout 2x2 terminals" +msgstr "लेआउट् 2x2 टर्मिनल् इत्यनेन सह नूतनं ट्याब् लोड् कुर्वन्तु" + +#: ViewManager.cpp:192 +#, kde-format +msgctxt "@action:inmenu" +msgid "Load a new tab with layout 2x1 terminals" +msgstr "लेआउट् 2x1 टर्मिनल् इत्यनेन सह नूतनं ट्याब् लोड् कुर्वन्तु" + +#: ViewManager.cpp:201 +#, kde-format +msgctxt "@action:inmenu" +msgid "Load a new tab with layout 1x2 terminals" +msgstr "लेआउट् 1x2 टर्मिनल् इत्यनेन सह नूतनं ट्याब् लोड् कुर्वन्तु" + +#: ViewManager.cpp:209 +#, kde-format +msgctxt "@action:inmenu" +msgid "Expand View" +msgstr "दृश्यं विस्तारयन्तु" + +#: ViewManager.cpp:217 +#, kde-format +msgctxt "@action:inmenu" +msgid "Shrink View" +msgstr "संकुचितं दृश्यम्" + +#: ViewManager.cpp:227 +#, kde-format +msgctxt "@action:inmenu" +msgid "Detach Current &View" +msgstr "वर्तमान &दृश्यं विच्छेदं कुर्वन्तु" + +#: ViewManager.cpp:239 +#, kde-format +msgctxt "@action:inmenu" +msgid "Detach Current &Tab" +msgstr "वर्तमान &टैब विच्छेद करें" + +#: ViewManager.cpp:244 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Next Tab" +msgstr "अग्रिमः ट्याब्" + +#: ViewManager.cpp:252 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Previous Tab" +msgstr "पूर्व ट्याब्" + +#: ViewManager.cpp:260 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Above Terminal" +msgstr "टर्मिनल् इत्यस्य उपरि ध्यानं कुर्वन्तु" + +#: ViewManager.cpp:267 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Below Terminal" +msgstr "टर्मिनल् इत्यस्य अधः फोकस कुर्वन्तु" + +#: ViewManager.cpp:274 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Left Terminal" +msgstr "फोकस वाम टर्मिनल" + +#: ViewManager.cpp:280 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Right Terminal" +msgstr "फोकस राइट टर्मिनल" + +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "फोकस वाम टर्मिनल" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "टर्मिनल् इत्यस्य अधः फोकस कुर्वन्तु" + +#: ViewManager.cpp:298 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Switch to Last Tab" +msgstr "Last Tab इत्यत्र स्विच कुर्वन्तु" + +#: ViewManager.cpp:303 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Last Used Tabs" +msgstr "अन्तिमप्रयुक्ताः ट्याब्स्" + +#: ViewManager.cpp:308 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle Between Two Tabs" +msgstr "द्वयोः ट्याब्योः मध्ये Toggle कुर्वन्तु" + +#: ViewManager.cpp:313 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Last Used Tabs (Reverse)" +msgstr "अन्तिमप्रयुक्ताः ट्याब्स् (विपरीताः)" + +#: ViewManager.cpp:318 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle maximize current view" +msgstr "वर्तमानदृश्यं अधिकतमं कर्तुं टॉगलं कुर्वन्तु" + +#: ViewManager.cpp:319 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle maximize current view" +msgstr "वर्तमानदृश्यं अधिकतमं कर्तुं टॉगलं कुर्वन्तु" + +#: ViewManager.cpp:327 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "वर्तमानदृश्यं जूम्-अधिकतमं कुर्वन्तु" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "वर्तमानदृश्यं जूम्-अधिकतमं कुर्वन्तु" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "ट्याब् दक्षिणतः चालयन्तु" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the left" +msgstr "ट्याब् वामभागे चालयन्तु" + +#: ViewManager.cpp:350 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Setup semantic integration (bash)" +msgstr "शब्दार्थ एकीकरण (bash) सेटअप 1.1." + +#: ViewManager.cpp:356 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle semantic hints display" +msgstr "शब्दार्थसंकेतप्रदर्शनं टॉगल कुर्वन्तु" + +#: ViewManager.cpp:362 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Toggle line numbers display" +msgstr "रेखासङ्ख्यानां प्रदर्शनं टॉगल कुर्वन्तु" + +#: ViewManager.cpp:369 +#, kde-format +msgctxt "@action:inmenu" +msgid "Equal size to all views" +msgstr "सर्वेषां दृश्यानां समान आकारः" + +#: ViewManager.cpp:379 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Switch to Tab %1" +msgstr "%1 ट्याब् प्रति स्विच कुर्वन्तु" + +#: ViewManager.cpp:602 +#, kde-format +msgid "Semantic hints " +msgstr "शब्दार्थसंकेता " + +#: ViewManager.cpp:618 +#, kde-format +msgid "Line numbers " +msgstr "रेखासङ्ख्याः " + +#: ViewManager.cpp:1239 +#, kde-format +msgctxt "@title:window" +msgid "Save Tab Layout" +msgstr "Tab Layout रक्षतु" + +#: ViewManager.cpp:1241 ViewManager.cpp:1362 +#, kde-format +msgctxt "@item:inlistbox" +msgid "Konsole View Layout (*.json)" +msgstr "Konsole दृश्य विन्यास (*.json)" + +#: ViewManager.cpp:1257 +#, kde-format +msgctxt "@label:textbox" +msgid "" +"A problem occurred when saving the Layout.\n" +"%1" +msgstr "" +"Layout इत्यस्य रक्षणकाले समस्या अभवत् ।\n" +"%1" + +#: ViewManager.cpp:1349 +#, kde-format +msgctxt "@label:textbox" +msgid "" +"A problem occurred when loading the Layout.\n" +"%1" +msgstr "" +"Layout लोड् करणसमये समस्या अभवत् ।\n" +"%1" + +#: ViewManager.cpp:1360 +#, kde-format +msgctxt "@title:window" +msgid "Load Tab Layout" +msgstr "लोड ट्याब लेआउट" + +#: Vt102Emulation.cpp:3281 +#, kde-format +msgid "" +"No keyboard translator available. The information needed to convert key " +"presses into characters to send to the terminal is missing." +msgstr "" +"कीबोर्ड अनुवादकः उपलब्धः नास्ति। टर्मिनल् प्रति प्रेषयितुं कील-दबावानां वर्णरूपेण " +"परिवर्तयितुं आवश्यका सूचना अनुपलब्धा अस्ति ।" + +#. i18n: ectx: property (text), widget (QLabel, urlHintsLabel) +#: widgets/EditProfileAdvancedPage.ui:19 +#, kde-format +msgid "Key combination to show URL hints:" +msgstr "URL संकेतान् दर्शयितुं कीलसंयोजनम्:" + +#. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierShift) +#: widgets/EditProfileAdvancedPage.ui:51 +#, kde-format +msgctxt "key on keyboard" +msgid "Shift" +msgstr "विहरति" + +#. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierCtrl) +#: widgets/EditProfileAdvancedPage.ui:70 +#, kde-format +msgctxt "key on keyboard" +msgid "Ctrl" +msgstr "Ctrl" + +#. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierAlt) +#: widgets/EditProfileAdvancedPage.ui:89 +#, kde-format +msgctxt "key on keyboard" +msgid "Alt" +msgstr "सर्वे" + +#. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierMeta) +#: widgets/EditProfileAdvancedPage.ui:108 +#, kde-format +msgctxt "key on keyboard" +msgid "Meta" +msgstr "मेटा" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileAdvancedPage.ui:154 +#, kde-format +msgctxt "Items that do not fit in other categories" +msgid "Miscellaneous:" +msgstr "विविध:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableReverseUrlHints) +#: widgets/EditProfileAdvancedPage.ui:164 +#, kde-format +msgid "Number URL hints in reverse, starting from the bottom" +msgstr "सङ्ख्या URL संकेतं विपरीतरूपेण, अधः आरभ्य" + +#. i18n: ectx: property (text), widget (QCheckBox, enableReverseUrlHints) +#: widgets/EditProfileAdvancedPage.ui:167 +#, kde-format +msgid "Reverse URL hint numbering" +msgstr "URL संकेत संख्याकरणं विपर्ययम्" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingTextButton) +#: widgets/EditProfileAdvancedPage.ui:180 +#, kde-format +msgid "Allow terminal programs to create blinking sections of text" +msgstr "टर्मिनल् प्रोग्राम् इत्यनेन पाठस्य निमिषमाणान् विभागान् निर्मातुं अनुमतिं ददातु" + +#. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingTextButton) +#: widgets/EditProfileAdvancedPage.ui:183 +#, kde-format +msgid "Allow blinking text" +msgstr "निमिषं पाठं अनुमन्यताम्" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableFlowControlButton) +#: widgets/EditProfileAdvancedPage.ui:196 +#, kde-format +msgid "Allow the output to be suspended by pressing Ctrl+S" +msgstr "Ctrl+S नुदन् आउटपुट् निलम्बितुं अनुमन्यताम्" + +#. i18n: ectx: property (text), widget (QCheckBox, enableFlowControlButton) +#: widgets/EditProfileAdvancedPage.ui:199 +#, kde-format +msgid "Flow control" +msgstr "प्रवाहनियन्त्रणम्" + +#. i18n: ectx: property (text), widget (QLabel, label_14) +#: widgets/EditProfileAdvancedPage.ui:222 +#, kde-format +msgid "&Default character encoding:" +msgstr "&पूर्वनिर्धारितवर्णसङ्केतनम् :" + +#. i18n: ectx: property (text), widget (QLabel, peekPrimaryLabel) +#: widgets/EditProfileAdvancedPage.ui:242 +#, kde-format +msgid "Shortcut for peeking the primary screen:" +msgstr "प्राथमिकपर्दे झलकयितुं शॉर्टकट् :" + +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "ऑटोसेव्स् मध्ये अन्तरालं सेट् कुर्वन्तु:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format +msgid "Line Numbers:" +msgstr "रेखासङ्ख्याः :" + +#. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) +#: widgets/EditProfileAdvancedPage.ui:285 +#, kde-format +msgctxt "Never" +msgid "&Never" +msgstr "&कदापि न" + +#. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) +#: widgets/EditProfileAdvancedPage.ui:295 +#, kde-format +msgctxt "When showing URL hints" +msgid "When &URL hints show" +msgstr "यदा &URL संकेताः दर्शयन्ति" + +#. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) +#: widgets/EditProfileAdvancedPage.ui:305 +#, kde-format +msgctxt "Always" +msgid "A&lways" +msgstr "सर्वदा" + +#. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) +#: widgets/EditProfileAppearancePage.ui:36 +#, kde-format +msgid "Color scheme && font" +msgstr "रङ्ग योजना && font" + +#. i18n: ectx: property (toolTip), widget (QPushButton, newColorSchemeButton) +#: widgets/EditProfileAppearancePage.ui:69 +#, kde-format +msgid "Create a new color scheme based upon the selected scheme" +msgstr "चयनितयोजनायाः आधारेण नूतनं वर्णयोजनां रचयन्तु" + +#. i18n: ectx: property (text), widget (QPushButton, newColorSchemeButton) +#: widgets/EditProfileAppearancePage.ui:72 +#, kde-format +msgctxt "@action:button Create an alternate color scheme" +msgid "New..." +msgstr "नूतनम्‌..." + +#. i18n: ectx: property (toolTip), widget (QPushButton, editColorSchemeButton) +#: widgets/EditProfileAppearancePage.ui:79 +#, kde-format +msgid "Edit the selected color scheme" +msgstr "चयनितवर्णयोजनां सम्पादयन्तु" + +#. i18n: ectx: property (text), widget (QPushButton, editKeyBindingsButton) +#. i18n: ectx: property (text), widget (QPushButton, environmentEditButton) +#. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) +#. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) +#: widgets/EditProfileAppearancePage.ui:82 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileMousePage.ui:320 +#, kde-format +msgid "Edit..." +msgstr "सम्पादन..." + +#. i18n: ectx: property (toolTip), widget (QPushButton, removeColorSchemeButton) +#: widgets/EditProfileAppearancePage.ui:89 +#, kde-format +msgid "Delete the selected color scheme" +msgstr "चयनितं वर्णयोजनां विलोपयन्तु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, resetColorSchemeButton) +#: widgets/EditProfileAppearancePage.ui:99 +#, kde-format +msgid "Reset the selected color scheme settings to the default values" +msgstr "चयनितवर्णयोजनासेटिंग्स् पूर्वनिर्धारितमूल्येषु पुनः सेट् कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QPushButton, resetKeyBindingsButton) +#. i18n: ectx: property (text), widget (QPushButton, resetColorSchemeButton) +#: widgets/EditProfileAppearancePage.ui:102 +#: widgets/EditProfileKeyboardPage.ui:93 +#, kde-format +msgid "Defaults" +msgstr "पूर्वनिर्धारितम्" + +#. i18n: ectx: property (text), widget (QLabel, label_7) +#: widgets/EditProfileAppearancePage.ui:135 +#, kde-format +msgid "Font:" +msgstr "फन्ट् :" + +#. i18n: ectx: property (text), widget (QPushButton, chooseFontButton) +#: widgets/EditProfileAppearancePage.ui:167 +#, kde-format +msgctxt "@action:button open a dialog with list of fonts" +msgid "Choose..." +msgstr "चिनोतु..." + +#. i18n: ectx: property (text), widget (QCheckBox, antialiasTextButton) +#: widgets/EditProfileAppearancePage.ui:174 +#, kde-format +msgid "Smooth fonts" +msgstr "स्मूद फॉन्ट्" + +#. i18n: ectx: property (text), widget (QCheckBox, boldIntenseButton) +#: widgets/EditProfileAppearancePage.ui:181 +#, kde-format +msgid "Draw intense colors in bold font" +msgstr "गाढ-अक्षरेण तीव्रवर्णान् आकर्षयन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) +#: widgets/EditProfileAppearancePage.ui:188 +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." +msgid "Use the selected font for line characters instead of the builtin code" +msgstr "बिल्टिन् कोड् इत्यस्य स्थाने रेखावर्णानां कृते चयनितस्य फन्ट् इत्यस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) +#: widgets/EditProfileAppearancePage.ui:191 +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." +msgid "Use line characters contained in font" +msgstr "फन्ट् मध्ये समाविष्टानां पङ्क्तिवर्णानां उपयोगं कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) +#: widgets/EditProfileAppearancePage.ui:198 +#, kde-format +msgid "" +"Use the selected font for unicode Braille characters instead of the builtin " +"code" +msgstr "" +"बिल्टिन् कोड् इत्यस्य स्थाने यूनिकोड् ब्रेलवर्णानां कृते चयनितस्य फन्ट् इत्यस्य उपयोगं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, useFontBrailleCharactersButton) +#: widgets/EditProfileAppearancePage.ui:201 +#, kde-format +msgid "Use unicode Braille characters contained in font" +msgstr "फन्ट् मध्ये समाविष्टानां यूनिकोड ब्रेलवर्णानां उपयोगं कुर्वन्तु" + +#. i18n: ectx: attribute (title), widget (QWidget, cursorTab) +#: widgets/EditProfileAppearancePage.ui:209 +#, kde-format +msgid "Cursor" +msgstr "कर्सर" + +#. i18n: ectx: property (text), widget (QLabel, label_8) +#: widgets/EditProfileAppearancePage.ui:229 +#, kde-format +msgid "Shape:" +msgstr "आकारः:" + +#. i18n: ectx: property (text), widget (QRadioButton, cursorShapeBlock) +#: widgets/EditProfileAppearancePage.ui:239 +#, kde-format +msgctxt "A solid rectangular" +msgid "Block" +msgstr "मृदुवस्तु" + +#. i18n: ectx: property (text), widget (QRadioButton, cursorShapeIBeam) +#: widgets/EditProfileAppearancePage.ui:249 +#, kde-format +msgctxt "A vertical line on the left edge" +msgid "I-Beam" +msgstr "अहं-पुञ्जः" + +#. i18n: ectx: property (text), widget (QRadioButton, cursorShapeUnderline) +#: widgets/EditProfileAppearancePage.ui:259 +#, kde-format +msgctxt "A hortizonal line on the bottom edge" +msgid "Underline" +msgstr "रेखांकनम्" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: widgets/EditProfileAppearancePage.ui:291 +#, kde-format +msgctxt "Cursor color options" +msgid "Color:" +msgstr "वर्ण:" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, autoCursorColorButton) +#: widgets/EditProfileAppearancePage.ui:307 +#, kde-format +msgid "Set the cursor to match the color of the character underneath it." +msgstr "कर्सरं तस्य अधः वर्णस्य वर्णेन सह मेलयितुम् सेट् कुर्वन्तु ।" + +#. i18n: ectx: property (text), widget (QRadioButton, autoCursorColorButton) +#: widgets/EditProfileAppearancePage.ui:310 +#, kde-format +msgid "Match current character" +msgstr "वर्तमान वर्णस्य मेलनं कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, customCursorColorButton) +#: widgets/EditProfileAppearancePage.ui:326 +#, kde-format +msgid "Use a custom, fixed color for the cursor" +msgstr "कर्सरस्य कृते इष्टं, नियतवर्णं उपयुज्यताम्" + +#. i18n: ectx: property (text), widget (QRadioButton, customCursorColorButton) +#: widgets/EditProfileAppearancePage.ui:329 +#, kde-format +msgid "Custom cursor color" +msgstr "कस्टम कर्सर वर्ण" + +#. i18n: ectx: property (text), widget (QLabel, customCursorColorLabel) +#: widgets/EditProfileAppearancePage.ui:360 +#, kde-format +msgid "Cursor:" +msgstr "कर्सरः :" + +#. i18n: ectx: property (toolTip), widget (KColorButton, customColorSelectButton) +#: widgets/EditProfileAppearancePage.ui:373 +#, kde-format +msgid "Select the color used to draw the cursor" +msgstr "कर्सरस्य आकर्षणार्थं प्रयुक्तं वर्णं चिनोतु" + +#. i18n: ectx: property (text), widget (QLabel, customCursorTextColorLabel) +#: widgets/EditProfileAppearancePage.ui:393 +#, kde-format +msgid "Text:" +msgstr "पाठ:" + +#. i18n: ectx: property (toolTip), widget (KColorButton, customTextColorSelectButton) +#: widgets/EditProfileAppearancePage.ui:406 +#, kde-format +msgid "Select the color used to draw the character underneath the cursor" +msgstr "कर्सरस्य अधः वर्णं आकर्षयितुं प्रयुक्तं वर्णं चिनोतु" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: widgets/EditProfileAppearancePage.ui:431 +#, kde-format +msgid "Blinking:" +msgstr "निमिषः :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingCursorButton) +#: widgets/EditProfileAppearancePage.ui:447 +#, kde-format +msgid "Make the cursor blink regularly" +msgstr "कर्सरं नियमितरूपेण निमिषं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) +#: widgets/EditProfileAppearancePage.ui:450 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 +#, kde-format +msgid "Enabled" +msgstr "सक्षमम्" + +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "सक्रियीकरणम् :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "कर्सरं नियमितरूपेण निमिषं कुर्वन्तु" + +#. i18n: ectx: attribute (title), widget (QWidget, tab_2) +#. i18n: ectx: attribute (title), widget (QWidget, miscTab) +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 +#, kde-format +msgctxt "Items that do not fit in other categories" +msgid "Miscellaneous" +msgstr "विविध" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileAppearancePage.ui:510 +#, kde-format +msgid "Window:" +msgstr "कोष्ठ:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) +#: widgets/EditProfileAppearancePage.ui:517 +#, kde-format +msgid "" +"Show terminal size in columns and lines in the center of window after " +"resizing" +msgstr "आकारान्तरं कृत्वा विण्डो इत्यस्य केन्द्रे स्तम्भेषु रेखासु च टर्मिनल् आकारं दर्शयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) +#: widgets/EditProfileAppearancePage.ui:520 +#, kde-format +msgid "Show hint for terminal size after resizing" +msgstr "आकारान्तरणस्य अनन्तरं टर्मिनलस्य आकारस्य संकेतं दर्शयतु" + +#. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) +#: widgets/EditProfileAppearancePage.ui:527 +#, kde-format +msgid "Always invert the colors of selected text" +msgstr "चयनितपाठस्य वर्णाः सर्वदा विपर्यययन्तु" + +#. i18n: ectx: property (text), widget (QLabel, dimLabel) +#: widgets/EditProfileAppearancePage.ui:536 +#, kde-format +msgid "Darkening strength:" +msgstr "अन्धकारमयबलम् :" + +#. i18n: ectx: property (text), widget (QLabel, borderLabel) +#: widgets/EditProfileAppearancePage.ui:569 +#, kde-format +msgctxt "Border color options" +msgid "Color:" +msgstr "वर्ण:" + +#. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) +#: widgets/EditProfileAppearancePage.ui:585 +#, kde-format +msgid "Select the color used to draw the border" +msgstr "सीमां आकर्षयितुं प्रयुक्तं वर्णं चिनोतु" + +#. i18n: ectx: property (text), widget (QLabel, label_10) +#: widgets/EditProfileAppearancePage.ui:607 +#, kde-format +msgid "Inactive Terminals:" +msgstr "निष्क्रिय टर्मिनलाः :" + +#. i18n: ectx: property (text), widget (QLabel, label_11) +#: widgets/EditProfileAppearancePage.ui:617 +#, kde-format +msgid "Active Terminals:" +msgstr "सक्रिय टर्मिनल् :" + +#. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) +#: widgets/EditProfileAppearancePage.ui:627 +#, kde-format +msgctxt "@title:group" +msgid "Terminal contents" +msgstr "टर्मिनल सामग्री" + +#. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) +#: widgets/EditProfileAppearancePage.ui:639 +#, kde-format +msgid "Line spacing:" +msgstr "रेखा-अन्तरालम् :" + +#. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) +#: widgets/EditProfileAppearancePage.ui:657 +#, kde-format +msgid "The number of pixels between two lines" +msgstr "रेखाद्वयस्य मध्ये पिक्सेलसङ्ख्या" + +#. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) +#. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 +#, kde-format +msgctxt "(pixels) visual size unit" +msgid " px" +msgstr " px" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/EditProfileAppearancePage.ui:694 +#, kde-format +msgid "Margins:" +msgstr "मार्जिनः :" + +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: widgets/EditProfileAppearancePage.ui:746 +#, kde-format +msgid "Align to center:" +msgstr "केन्द्रं प्रति संरेखणं कुर्वन्तु :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) +#: widgets/EditProfileAppearancePage.ui:769 +#, kde-format +msgid "Indicate whether the window is active by dimming the colors" +msgstr "वर्णानाम् मन्दीकरणेन विण्डो सक्रियः अस्ति वा इति सूचयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) +#: widgets/EditProfileAppearancePage.ui:772 +#, kde-format +msgid "Darken" +msgstr "अन्धकारं कुरुत" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) +#: widgets/EditProfileAppearancePage.ui:779 +#, kde-format +msgid "Indicate whether the window is active by drawing a border" +msgstr "सीमां आकृष्य विण्डो सक्रियः अस्ति वा इति सूचयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) +#: widgets/EditProfileAppearancePage.ui:782 +#, kde-format +msgid "Border" +msgstr "सीमा" + +#. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) +#: widgets/EditProfileAppearancePage.ui:824 +#, kde-format +msgid "Display Vertical line at column:" +msgstr "स्तम्भे ऊर्ध्वाधररेखां प्रदर्शयन्तु:" + +#. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) +#: widgets/EditProfileAppearancePage.ui:869 +#, kde-format +msgid "

              Complex Text Layout

              " +msgstr "

              जटिल पाठविन्यास

              " + +#. i18n: ectx: attribute (title), widget (QWidget, CTLtab) +#: widgets/EditProfileAppearancePage.ui:872 +#, kde-format +msgid "Complex Text Layout" +msgstr "जटिल पाठविन्यास" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) +#: widgets/EditProfileAppearancePage.ui:887 +#, kde-format +msgid "Enable word mode text rendering" +msgstr "शब्दविधिपाठप्रतिपादनं सक्षमं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, wordMode) +#: widgets/EditProfileAppearancePage.ui:890 +#, kde-format +msgid "Word mode" +msgstr "शब्दविधिः" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) +#: widgets/EditProfileAppearancePage.ui:903 +#, kde-format +msgid "" +"Ignore attribute changes mid-word (otherwise, attribute changes break word " +"when rendering)" +msgstr "" +"विशेषतापरिवर्तनं मध्यशब्दस्य अवहेलनां कुर्वन्तु (अन्यथा, विशेषतापरिवर्तनं प्रतिपादनकाले शब्दं " +"भङ्गयति)" + +#. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) +#: widgets/EditProfileAppearancePage.ui:906 +#, kde-format +msgid "Use the same attributes for whole word" +msgstr "समग्रशब्दस्य कृते समानगुणानां प्रयोगं कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) +#: widgets/EditProfileAppearancePage.ui:919 +#, kde-format +msgid "Render words of ASCII characters together" +msgstr "ASCII वर्णानाम् शब्दान् एकत्र प्रस्तुतं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) +#: widgets/EditProfileAppearancePage.ui:922 +#, kde-format +msgid "ASCII characters " +msgstr "ASCII वर्णाः " + +#. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) +#: widgets/EditProfileAppearancePage.ui:935 +#, kde-format +msgid "Render words of Brahmic scripts characters together" +msgstr "ब्राह्मणलिपिनां शब्दान् वर्णान् एकत्र प्रतिपादयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) +#: widgets/EditProfileAppearancePage.ui:938 +#, kde-format +msgid "Brahmic scripts characters" +msgstr "ब्राह्मण लिपि वर्ण" + +#. i18n: ectx: property (text), widget (QLabel, label_17) +#: widgets/EditProfileAppearancePage.ui:951 +#, kde-format +msgid "Emoji Font:" +msgstr "इमोजी फॉन्टः :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) +#: widgets/EditProfileAppearancePage.ui:977 +#, kde-format +msgid "" +"Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " +"Hebrew only)" +msgstr "" +"टर्मिनल् मध्ये द्वि-दिशात्मकं प्रदर्शनं सक्षमं कुर्वन्तु (केवलं अरबी, फारसी अथवा हिब्रू कृते मान्यम्)" + +#. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) +#: widgets/EditProfileAppearancePage.ui:980 +#, kde-format +msgid "Bi-Directional text rendering" +msgstr "द्वि-दिशात्मक पाठ प्रतिपादन" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) +#: widgets/EditProfileAppearancePage.ui:993 +#, kde-format +msgid "Lines are always LTR, rather than determined by first strong character" +msgstr "रेखाः सर्वदा LTR भवन्ति, न तु प्रथमेन दृढेन वर्णेन निर्धारिताः" + +#. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) +#: widgets/EditProfileAppearancePage.ui:996 +#, kde-format +msgid "force LTR line direction" +msgstr "बल LTR रेखा दिशा" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) +#: widgets/EditProfileAppearancePage.ui:1009 +#, kde-format +msgid "Treat table drawing characters as strong LTR." +msgstr "सारणीचित्रणवर्णान् दृढं LTR इति व्यवहरन्तु।" + +#. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) +#: widgets/EditProfileAppearancePage.ui:1012 +#, kde-format +msgid "Table characters BiDi mode override" +msgstr "सारणीवर्णाः BiDi मोड अधिलिखन्ति" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) +#: widgets/EditProfileAppearancePage.ui:1025 +#, kde-format +msgid "Ignore wcwidth of problematic characters" +msgstr "समस्याग्रस्तवर्णानां wcwidth इत्यस्य अवहेलनां कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) +#: widgets/EditProfileAppearancePage.ui:1028 +#, kde-format +msgid "Override wcwidth" +msgstr "wcwidth अधिलिखित करें" + +#: widgets/EditProfileDialog.cpp:70 +#, kde-format +msgid "Edit Profile" +msgstr "प्रोफाइल सम्पादयतु" + +#: widgets/EditProfileDialog.cpp:97 +#, kde-format +msgctxt "@title:tab Generic, common options" +msgid "General" +msgstr "सामान्य" + +#: widgets/EditProfileDialog.cpp:108 +#, kde-format +msgid "Tabs" +msgstr "टब्स्" + +#: widgets/EditProfileDialog.cpp:125 +#, kde-format +msgid "Appearance" +msgstr "स्वरूपम्‌" + +#: widgets/EditProfileDialog.cpp:141 +#, kde-format +msgid "Scrolling" +msgstr "स्क्रॉल करणम्" + +#: widgets/EditProfileDialog.cpp:155 +#, kde-format +msgid "Keyboard" +msgstr "कीबोर्ड" + +#: widgets/EditProfileDialog.cpp:156 +#, kde-format +msgid "Key bindings" +msgstr "कीलबन्धनानि" + +#: widgets/EditProfileDialog.cpp:167 +#, kde-format +msgid "Mouse" +msgstr "मूषकः" + +#: widgets/EditProfileDialog.cpp:183 +#, kde-format +msgctxt "@title:tab Complex options" +msgid "Advanced" +msgstr "उन्नतं" + +#: widgets/EditProfileDialog.cpp:291 +#, kde-kuit-format +msgctxt "@info" +msgid "" +"Insufficient permissions to save settings to: %1.Either change the permissions of that file or set a different name to save " +"the settings to a new profile." +msgstr "" +"सेटिङ्ग्स् रक्षितुं अपर्याप्ताः अनुमतिः: %1.तस्याः सञ्चिकायाः " +"अनुमतिः परिवर्तयन्तु अथवा सेटिङ्ग्स् नूतने प्रोफाइल् मध्ये रक्षितुं भिन्नं नाम सेट् कुर्वन्तु ।" + +#: widgets/EditProfileDialog.cpp:308 +#, kde-format +msgctxt "@info" +msgid "Profile Name was empty; please set a name to be able to save settings." +msgstr "प्रोफाइल नाम रिक्तम् आसीत्; कृपया सेटिङ्ग्स् रक्षितुं शक्नुवन्ति इति नाम सेट् कुर्वन्तु ।" + +#: widgets/EditProfileDialog.cpp:316 +#, kde-format +msgctxt "@info" +msgid "A profile with the name \"%1\" already exists." +msgstr "\"%1\" इति नामयुक्तं प्रोफाइल पूर्वमेव अस्ति ।" + +#: widgets/EditProfileDialog.cpp:346 +#, kde-format +msgctxt "@info" +msgid "Profile name exceeded maximum allowed length (%1)." +msgstr "प्रोफाइलनाम अधिकतमं अनुमतदीर्घतां (%1) अतिक्रान्तम् ।" + +#: widgets/EditProfileDialog.cpp:384 +#, kde-format +msgctxt "@info" +msgid "The highlighted characters are invalid in profile names: %1." +msgstr "हाइलाइट् कृतानि वर्णाः प्रोफाइलनाम्नि अमान्यानि सन्ति: %1." + +#: widgets/EditProfileDialog.cpp:420 +#, kde-format +msgid "Editing profile: %2" +msgid_plural "Editing %1 profiles: %2" +msgstr[0] "प्रोफाइल सम्पादनम्: %2" +msgstr[1] "%1 प्रोफाइल सम्पादयति: %2" + +#: widgets/EditProfileDialog.cpp:424 +#, kde-format +msgid "Create New Profile" +msgstr "New Profile रचयन्तु" + +#: widgets/EditProfileDialog.cpp:427 +#, kde-format +msgid "Edit Profile \"%1\"" +msgstr "\"%1\" इति प्रोफाइल सम्पादयतु ।" + +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "न कश्चित्" + +#: widgets/EditProfileDialog.cpp:549 +#, kde-format +msgctxt "" +"Suffix of the number of columns (N columns). The leading space is needed to " +"separate it from the number value." +msgid " column" +msgid_plural " columns" +msgstr[0] " स्तम्भ:" +msgstr[1] " स्तम्भाः" + +#: widgets/EditProfileDialog.cpp:551 +#, kde-format +msgctxt "" +"Suffix of the number of rows (N rows). The leading space is needed to " +"separate it from the number value." +msgid " row" +msgid_plural " rows" +msgstr[0] " पंक्ति" +msgstr[1] " पङ्क्तयः" + +#: widgets/EditProfileDialog.cpp:561 +#, kde-format +msgid "System Bell" +msgstr "प्रणाली घण्टी" + +#: widgets/EditProfileDialog.cpp:561 +#, kde-format +msgid "System Notifications" +msgstr "प्रणाली सूचनाएँ" + +#: widgets/EditProfileDialog.cpp:561 +#, kde-format +msgid "Visual Bell" +msgstr "दृश्य घण्टी" + +#: widgets/EditProfileDialog.cpp:561 +#, kde-format +msgid "Ignore Bell Events" +msgstr "बेल इवेण्ट्स् इत्यस्य अवहेलना कुर्वन्तु" + +#: widgets/EditProfileDialog.cpp:570 +#, kde-format +msgid "Default profile for new terminal sessions in %1" +msgstr "%1 मध्ये नूतनटर्मिनलसत्रस्य पूर्वनिर्धारितरूपरेखा" + +#: widgets/EditProfileDialog.cpp:677 +#, kde-format +msgid "Edit Environment" +msgstr "परिवेश सम्पादयतु" + +#: widgets/EditProfileDialog.cpp:678 +#, kde-format +msgid "One environment variable per line" +msgstr "प्रतिपङ्क्तिः एकः वातावरणचरः" + +#: widgets/EditProfileDialog.cpp:711 +#, kde-format +msgctxt "Unit of time" +msgid " second" +msgid_plural " seconds" +msgstr[0] " क्षण" +msgstr[1] " सेकण्ड्" + +#: widgets/EditProfileDialog.cpp:841 +#, kde-format +msgid "Select Initial Directory" +msgstr "प्रारम्भिकनिर्देशिकां चिनोतु" + +#: widgets/EditProfileDialog.cpp:1003 +#, kde-format +msgid "Get New..." +msgstr "Get New..." + +#: widgets/EditProfileDialog.cpp:1406 +#, kde-kuit-format +msgctxt "@info" +msgid "Scheme %1 failed to load." +msgstr "योजना %1 लोड् कर्तुं असफलम् ।" + +#: widgets/EditProfileDialog.cpp:1588 +#, kde-format +msgid "" +"This color scheme uses a transparent background which does not appear to be " +"supported on your desktop" +msgstr "एषा वर्णयोजना पारदर्शकं पृष्ठभूमिं प्रयुङ्क्ते यत् भवतः डेस्कटॉप् मध्ये समर्थितं न दृश्यते" + +#: widgets/EditProfileDialog.cpp:1594 +#, kde-format +msgid "" +"Konsole was started before desktop effects were enabled. You need to restart " +"Konsole to see transparent background." +msgstr "" +"डेस्कटॉप् इफेक्ट्स् सक्षमीकरणात् पूर्वं Konsole आरब्धम् आसीत् । पारदर्शी पृष्ठभूमिं द्रष्टुं भवद्भिः " +"Konsole पुनः आरभ्यत इति आवश्यकम् ।" + +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format +msgid "Default for file type" +msgstr "सञ्चिकाप्रकारस्य कृते पूर्वनिर्धारितम्" + +#: widgets/EditProfileDialog.cpp:2021 +#, kde-format +msgid "" +"The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" +"\n" +"PATH will be replaced by the path to the text file\n" +"LINE will be replaced by the line number\n" +"COLUMN (optional) will be replaced by the column number\n" +"Note: you will need to replace 'PATH:LINE:COLUMN' by the actual\n" +"syntax the editor you want to use supports; e.g.:\n" +"gedit +LINE:COLUMN PATH\n" +"\n" +"If PATH or LINE aren't present in the command, this setting\n" +"will be ignored and the file will be opened by the default text\n" +"editor." +msgstr "" +"प्रारूपं यथा- 'editorExec पथ:रेखा:स्तम्भ'।\n" +"\n" +"PATH इत्यस्य स्थाने पाठसञ्चिकायाः मार्गः भविष्यति\n" +"LINE इत्यस्य स्थाने रेखासङ्ख्या भविष्यति\n" +"COLUMN (वैकल्पिकम्) इत्यस्य स्थाने स्तम्भसङ्ख्या स्थापिता भविष्यति\n" +"नोट्: भवद्भिः 'PATH:LINE:COLUMN' इत्यस्य स्थाने वास्तविकं स्थापयितुं आवश्यकता भविष्यति\n" +"वाक्यविन्यासः यस्य सम्पादकस्य उपयोगं कर्तुम् इच्छति तस्य समर्थनं करोति; यथा- १.\n" +"gedit +LINE:स्तम्भ मार्ग\n" +"\n" +"यदि आदेशे PATH अथवा LINE नास्ति तर्हि एतत् सेटिङ्ग्\n" +"उपेक्षितं भविष्यति तथा च सञ्चिका पूर्वनिर्धारितपाठेन उद्घाटिता भविष्यति\n" +"सम्पादक।" + +#: widgets/EditProfileDialog.cpp:2034 +#, kde-format +msgid "Text Editor Custom Command" +msgstr "पाठ सम्पादक कस्टम आदेश" + +#. i18n: ectx: attribute (title), widget (QWidget, general) +#: widgets/EditProfileGeneralPage.ui:42 +#, kde-format +msgid "General Settings" +msgstr "सामान्य सेटिंग्स्" + +#. i18n: ectx: property (toolTip), widget (QPushButton, iconSelectButton) +#: widgets/EditProfileGeneralPage.ui:66 +#, kde-format +msgid "Select the icon displayed on tabs using this profile" +msgstr "एतस्य प्रोफाइलस्य उपयोगेन ट्याब्-मध्ये प्रदर्शितं चिह्नं चिनोतु" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, profileNameEdit) +#: widgets/EditProfileGeneralPage.ui:84 +#, kde-format +msgid "A descriptive name for the profile" +msgstr "प्रोफाइलस्य वर्णनात्मकं नाम" + +#. i18n: ectx: property (placeholderText), widget (QLineEdit, profileNameEdit) +#: widgets/EditProfileGeneralPage.ui:87 +#, kde-format +msgctxt "@label:textbox" +msgid "Profile name" +msgstr "प्रोफाइल नाम" + +#. i18n: ectx: property (text), widget (QCheckBox, setAsDefaultButton) +#: widgets/EditProfileGeneralPage.ui:94 +#, kde-format +msgid "Default Profile" +msgstr "पूर्वनिर्धारित प्रोफाइल" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: widgets/EditProfileGeneralPage.ui:125 +#, kde-format +msgid "Command:" +msgstr "आदेश:" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, commandEdit) +#: widgets/EditProfileGeneralPage.ui:138 +#, kde-format +msgid "" +"The command to execute when new terminal sessions are created using this " +"profile" +msgstr "" +"यदा एतस्य प्रोफाइलस्य उपयोगेन नूतनानि टर्मिनल् सत्राणि निर्मीयन्ते तदा निष्पादयितुं आदेशः" + +#. i18n: ectx: property (placeholderText), widget (QLineEdit, commandEdit) +#: widgets/EditProfileGeneralPage.ui:144 +#, kde-format +msgid "/bin/sh" +msgstr "/बिन/श" + +#. i18n: ectx: property (text), widget (QLabel, label_9) +#: widgets/EditProfileGeneralPage.ui:157 +#, kde-format +msgid "I&nitial directory:" +msgstr "I&प्रारम्भिक निर्देशिका :" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit) +#: widgets/EditProfileGeneralPage.ui:170 +#, kde-format +msgid "" +"The initial working directory for new terminal sessions using this profile" +msgstr "एतस्य प्रोफाइलस्य उपयोगेन नूतनानां टर्मिनल् सत्रानाम् आरम्भिककार्यनिर्देशिका" + +#. i18n: ectx: property (placeholderText), widget (QLineEdit, initialDirEdit) +#: widgets/EditProfileGeneralPage.ui:176 +#, kde-format +msgid "/home/username" +msgstr "/गृह/उपयोक्तृनाम" + +#. i18n: ectx: property (toolTip), widget (QToolButton, dirSelectButton) +#: widgets/EditProfileGeneralPage.ui:183 +#, kde-format +msgid "Choose the initial directory" +msgstr "प्रारम्भिकनिर्देशिकां चिनोतु" + +#. i18n: ectx: property (text), widget (QCheckBox, startInSameDirButton) +#: widgets/EditProfileGeneralPage.ui:193 +#, kde-format +msgid "Start in same directory as current session" +msgstr "वर्तमानसत्रस्य समाने निर्देशिकायां आरभत" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "वर्तमानसत्रस्य समाने निर्देशिकायां आरभत" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/EditProfileGeneralPage.ui:255 +#, kde-format +msgid "Environment:" +msgstr "पर्यावरणम्‌:" + +#. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) +#: widgets/EditProfileGeneralPage.ui:273 +#, kde-format +msgid "Edit the list of environment variables and associated values" +msgstr "वातावरणचरानाम्, तत्सम्बद्धानां मूल्यानां च सूचीं सम्पादयन्तु" + +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: widgets/EditProfileGeneralPage.ui:320 +#, kde-format +msgid "Initial terminal si&ze:" +msgstr "प्रारम्भिक टर्मिनल si&ze:" + +#. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) +#: widgets/EditProfileGeneralPage.ui:395 +#, kde-format +msgctxt "@info" +msgid "" +"

              Settings → " +"Configure Konsole → General → Remember window size must be disabled " +"for these entries to work.

              " +msgstr "" +"

              सेटिंग्स् → Konsole " +"विन्यस्तं → सामान्यम् → स्मर्यतां एतासां प्रविष्टीनां कार्यं कर्तुं विण्डो आकारः अक्षमः " +"भवितुमर्हति ।

              " + +#. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) +#: widgets/EditProfileGeneralPage.ui:411 +#, kde-format +msgid "&Terminal bell mode:" +msgstr "&टर्मिनल घण्टी मोड: 1.1." + +#. i18n: ectx: attribute (title), widget (QWidget, semantic) +#: widgets/EditProfileGeneralPage.ui:429 +#, kde-format +msgid "Semantic Integration" +msgstr "शब्दार्थ एकीकरण" + +#. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) +#: widgets/EditProfileGeneralPage.ui:435 +#, kde-format +msgid "Up/Down Arrows emulation" +msgstr "Up/Down Arrows अनुकरणम्" + +#. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) +#: widgets/EditProfileGeneralPage.ui:442 +#, kde-format +msgid "Mouse click in input line moves cursor" +msgstr "इनपुट् रेखायां माउस् क्लिक् कर्सरं चालयति" + +#. i18n: ectx: property (text), widget (QLabel, label_8) +#: widgets/EditProfileGeneralPage.ui:455 +#, kde-format +msgid "Semantic hints:" +msgstr "शब्दार्थसङ्केतः :" + +#. i18n: ectx: property (text), widget (QRadioButton, semanticHintsNever) +#. i18n: ectx: property (text), widget (QRadioButton, errorBarsNever) +#. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) +#. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) +#. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 +#, kde-format +msgctxt "Never" +msgid "Never" +msgstr "कदापि न" + +#. i18n: ectx: property (text), widget (QRadioButton, semanticHintsURL) +#. i18n: ectx: property (text), widget (QRadioButton, errorBarsURL) +#. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) +#. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) +#. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 +#, kde-format +msgctxt "When showing URL hints" +msgid "When URL hints show" +msgstr "यदा URL संकेताः दर्शयन्ति" + +#. i18n: ectx: property (text), widget (QRadioButton, semanticHintsAlways) +#. i18n: ectx: property (text), widget (QRadioButton, errorBarsAlways) +#. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) +#. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) +#. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 +#, kde-format +msgctxt "Always" +msgid "Always" +msgstr "सर्वदा" + +#. i18n: ectx: property (text), widget (QLabel, label_20) +#: widgets/EditProfileGeneralPage.ui:501 +#, kde-format +msgid "Red error bars:" +msgstr "रक्तदोषपट्टिकाः :" + +#. i18n: ectx: property (text), widget (QLabel, label_30) +#: widgets/EditProfileGeneralPage.ui:547 +#, kde-format +msgid "Red error background:" +msgstr "लालदोषपृष्ठभूमिः :" + +#. i18n: ectx: property (text), widget (QLabel, label_40) +#: widgets/EditProfileGeneralPage.ui:593 +#, kde-format +msgid "Alternating bars:" +msgstr "पर्यायवाची शलाका :" + +#. i18n: ectx: property (text), widget (QLabel, label_50) +#: widgets/EditProfileGeneralPage.ui:639 +#, kde-format +msgid "Alternating background:" +msgstr "वैकल्पिक पृष्ठभूमिः" + +#. i18n: ectx: property (text), widget (QLabel, note) +#: widgets/EditProfileKeyboardPage.ui:17 +#, kde-format +msgctxt "@info" +msgid "" +"Key bindings control how combinations of keystrokes in the terminal window " +"are converted into the stream of characters that is then sent to the current " +"terminal program. For more information on how to customize the key bindings " +"check the Konsole Handbook." +msgstr "" +"कीलबन्धनानि नियन्त्रयन्ति यत् टर्मिनल् विण्डो मध्ये कीलप्रहारस्य संयोजनानि वर्णानाम् धारायां " +"कथं परिणमन्ति यत् ततः वर्तमानटर्मिनल् प्रोग्राम् प्रति प्रेष्यते कीलबन्धनानि कथं अनुकूलितुं " +"शक्यन्ते इति अधिकसूचनार्थं Konsole Handbook पश्यन्तु ।" + +#. i18n: ectx: property (toolTip), widget (QPushButton, newKeyBindingsButton) +#: widgets/EditProfileKeyboardPage.ui:60 +#, kde-format +msgid "Create a new key bindings scheme based upon the selected bindings" +msgstr "चयनितबन्धनानाम् आधारेण नूतनं कीलबन्धनयोजनां रचयन्तु" + +#. i18n: ectx: property (text), widget (QPushButton, newKeyBindingsButton) +#: widgets/EditProfileKeyboardPage.ui:63 +#, kde-format +msgctxt "@action:button Create an alternate key binding" +msgid "New..." +msgstr "नूतनम्‌..." + +#. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton) +#: widgets/EditProfileKeyboardPage.ui:70 +#, kde-format +msgid "Edit the selected key bindings scheme" +msgstr "चयनितं कीलबन्धनयोजनां सम्पादयन्तु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, removeKeyBindingsButton) +#: widgets/EditProfileKeyboardPage.ui:80 +#, kde-format +msgid "Delete the selected key bindings scheme" +msgstr "चयनितं कीलबन्धनयोजनां विलोपयन्तु" + +#. i18n: ectx: property (toolTip), widget (QPushButton, resetKeyBindingsButton) +#: widgets/EditProfileKeyboardPage.ui:90 +#, kde-format +msgid "Reset the selected key bindings scheme to its default values" +msgstr "चयनितं कीलबन्धनयोजनां तस्य पूर्वनिर्धारितमूल्येषु पुनः सेट् कुर्वन्तु" + +#. i18n: ectx: attribute (title), widget (QWidget, tab) +#: widgets/EditProfileMousePage.ui:36 +#, kde-format +msgid "Text interaction" +msgstr "पाठान्तरक्रिया" + +#. i18n: ectx: property (toolTip), widget (QLabel, label_11) +#. i18n: ectx: property (toolTip), widget (QLineEdit, wordCharacterEdit) +#: widgets/EditProfileMousePage.ui:50 widgets/EditProfileMousePage.ui:71 +#, kde-format +msgctxt "@info:tooltip" +msgid "" +"Characters which are considered part of a word when double-clicking to " +"select whole words in the terminal." +msgstr "" +"ये वर्णाः टर्मिनल् मध्ये सम्पूर्णशब्दानां चयनार्थं द्विवारं क्लिक् करणसमये शब्दस्य भागः इति " +"मन्यन्ते ।" + +#. i18n: ectx: property (text), widget (QLabel, label_11) +#: widgets/EditProfileMousePage.ui:53 +#, kde-format +msgid "Word characters:" +msgstr "शब्दवर्णाः :" + +#. i18n: ectx: property (text), widget (QLabel, label_17) +#: widgets/EditProfileMousePage.ui:94 +#, kde-format +msgid "Triple-click selects:" +msgstr "त्रिवारं क्लिक् कृत्वा चयनं करोति:" + +#. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsTheWholeLine) +#: widgets/EditProfileMousePage.ui:104 +#, kde-format +msgid "&The whole line" +msgstr "&समस्त रेखा" + +#. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) +#: widgets/EditProfileMousePage.ui:114 +#, kde-format +msgid "From mouse position to the end of &line" +msgstr "मूषकस्थानात् &line इत्यस्य अन्त्यपर्यन्तं" + +#. i18n: ectx: property (text), widget (QLabel, label_13) +#: widgets/EditProfileMousePage.ui:140 +#, kde-format +msgid "Middle-click pastes:" +msgstr "मध्य-क्लिक्-पेस्ट्स् :" + +#. i18n: ectx: property (text), widget (QRadioButton, pasteFromClipboardButton) +#: widgets/EditProfileMousePage.ui:150 +#, kde-format +msgid "From clipboard" +msgstr "क्लिपबोर्डात्" + +#. i18n: ectx: property (text), widget (QRadioButton, pasteFromX11SelectionButton) +#: widgets/EditProfileMousePage.ui:160 +#, kde-format +msgid "From selection" +msgstr "चयनात्" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileMousePage.ui:186 +#, kde-format +msgid "Copy options:" +msgstr "प्रतिलिपिविकल्पाः :" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextToClipboardButton) +#: widgets/EditProfileMousePage.ui:196 +#, kde-format +msgid "Automatically copy selected text into clipboard" +msgstr "चयनितं पाठं स्वयमेव क्लिप्बोर्ड् मध्ये प्रतिलिख्यताम्" + +#. i18n: ectx: property (text), widget (QCheckBox, copyTextToClipboardButton) +#: widgets/EditProfileMousePage.ui:199 +#, kde-format +msgid "Copy on select" +msgstr "select इत्यत्र प्रतिलिख्यताम्" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextAsHTMLButton) +#: widgets/EditProfileMousePage.ui:206 +#, kde-format +msgid "Copy text as HTML (including formatting, font faces, colors... etc)" +msgstr "" +"पाठस्य प्रतिलिपिं HTML रूपेण कुर्वन्तु (स्वरूपणं, फॉन्ट् फेस्, रङ्गाः... इत्यादयः समाविष्टाः)" + +#. i18n: ectx: property (text), widget (QCheckBox, copyTextAsHTMLButton) +#: widgets/EditProfileMousePage.ui:209 +#, kde-format +msgid "Copy text as HTML" +msgstr "पाठं HTML इति प्रतिलिख्यताम्" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, trimLeadingSpacesButton) +#: widgets/EditProfileMousePage.ui:216 +#, kde-format +msgid "Trim leading spaces in selected text, useful in some instances" +msgstr "चयनितपाठे अग्रणीस्थानानि च्छेदयन्तु, केषुचित् प्रसङ्गेषु उपयोगिनो भवन्ति" + +#. i18n: ectx: property (text), widget (QCheckBox, trimLeadingSpacesButton) +#: widgets/EditProfileMousePage.ui:219 +#, kde-format +msgid "Trim leading spaces" +msgstr "अग्रणीस्थानानि छटां कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, trimTrailingSpacesButton) +#: widgets/EditProfileMousePage.ui:226 +#, kde-format +msgid "Trim trailing spaces in selected text, useful in some instances" +msgstr "चयनितपाठे अनुवर्तीस्थानानि च्छेदयन्तु, केषुचित् प्रसङ्गेषु उपयोगिनो भवन्ति" + +#. i18n: ectx: property (text), widget (QCheckBox, trimTrailingSpacesButton) +#: widgets/EditProfileMousePage.ui:229 +#, kde-format +msgid "Trim trailing spaces" +msgstr "अनुवर्ती स्थानानि छंटनी कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, underlineLinksButton) +#: widgets/EditProfileMousePage.ui:266 +#, kde-format +msgid "" +"Text recognized as a link or an email address will be underlined when " +"hovered by the mouse pointer." +msgstr "लिङ्क् अथवा ईमेल-सङ्केतरूपेण ज्ञातः पाठः मूषकसूचकेन भ्रमति चेत् रेखांकितः भविष्यति ।" + +#. i18n: ectx: property (text), widget (QCheckBox, underlineLinksButton) +#: widgets/EditProfileMousePage.ui:269 +#, kde-format +msgid "Underline links" +msgstr "लिङ्कानि रेखांकयन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, underlineFilesButton) +#: widgets/EditProfileMousePage.ui:276 +#, kde-format +msgid "" +"Text recognized as a file will be underlined when hovered by the mouse " +"pointer." +msgstr "सञ्चिकारूपेण ज्ञातः पाठः मूषकसूचकेन भ्रमति चेत् रेखांकितः भविष्यति ।" + +#. i18n: ectx: property (text), widget (QCheckBox, underlineFilesButton) +#: widgets/EditProfileMousePage.ui:279 +#, kde-format +msgid "Underline files" +msgstr "सञ्चिकाः रेखांकयन्तु" + +#. i18n: ectx: property (toolTip), widget (QLabel, textEditorCommandLabel) +#. i18n: ectx: property (toolTip), widget (QComboBox, textEditorCombo) +#: widgets/EditProfileMousePage.ui:288 widgets/EditProfileMousePage.ui:307 +#, kde-format +msgctxt "@info:tooltip" +msgid "Text editor to use when opening text file URLs at a given line/column." +msgstr "दत्तपङ्क्तौ/स्तम्भे पाठसञ्चिका URL उद्घाटयति समये उपयोक्तुं पाठसम्पादकः ।" + +#. i18n: ectx: property (text), widget (QLabel, textEditorCommandLabel) +#: widgets/EditProfileMousePage.ui:291 +#, kde-format +msgid "Text Editor Command: " +msgstr "पाठ सम्पादक आदेशः : " + +#. i18n: ectx: property (toolTip), widget (QCheckBox, openLinksByDirectClickButton) +#: widgets/EditProfileMousePage.ui:335 +#, kde-format +msgid "" +"Text recognized as a file, link or an email address can be opened by direct " +"mouse click." +msgstr "" +"सञ्चिका, लिङ्क् अथवा ईमेल-सङ्केतः इति ज्ञातः पाठः प्रत्यक्ष-मूषक-क्लिक्-द्वारा उद्घाटयितुं " +"शक्यते ।" + +#. i18n: ectx: property (text), widget (QCheckBox, openLinksByDirectClickButton) +#: widgets/EditProfileMousePage.ui:338 +#, kde-format +msgid "Open files/links by direct click" +msgstr "प्रत्यक्ष क्लिक् कृत्वा सञ्चिकाः/लिङ्कानि उद्घाटयन्तु" + +#. i18n: ectx: property (text), widget (QCheckBox, allowLinkEscapeSequenceButton) +#: widgets/EditProfileMousePage.ui:349 +#, kde-format +msgid "Allow escape sequences for links" +msgstr "लिङ्कानां कृते पलायनक्रमान् अनुमन्यताम्" + +#. i18n: ectx: property (text), widget (QLabel, allowLinkEscapeSequenceButtonWarning) +#: widgets/EditProfileMousePage.ui:356 +#, kde-format +msgid "" +"WARNING: This has security implications as it allows malicious URLs " +"to be shown as another URL or hidden.
              Make sure you understand the " +"implications before turning this on." +msgstr "" +"चेतावनी : एतस्य सुरक्षानिमित्तानि सन्ति यतः एतेन दुर्भावनापूर्ण-URL-इत्येतत् अन्य-" +"URL-रूपेण वा गुप्तरूपेण वा दर्शयितुं शक्यते ।
              एतत् चालू कर्तुं पूर्वं निहितार्थान् अवगन्तुं " +"सुनिश्चितं कुर्वन्तु।" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: widgets/EditProfileMousePage.ui:374 +#, kde-format +msgid "Allowed link formats: " +msgstr "अनुमतलिङ्कस्वरूपाः : " + +#. i18n: ectx: property (toolTip), widget (QLineEdit, linkEscapeSequenceTexts) +#: widgets/EditProfileMousePage.ui:384 +#, kde-format +msgid "The formats of possible links, like http://, https:// and file://" +msgstr "सम्भाव्यलिङ्कानां प्रारूपाणि, यथा http://, https:// तथा file:// ." + +#. i18n: ectx: property (toolTip), widget (QCheckBox, ctrlRequiredForDragButton) +#: widgets/EditProfileMousePage.ui:395 +#, kde-format +msgid "Selected text will require control key plus click to drag." +msgstr "चयनितपाठस्य कृते नियन्त्रणकुंजी प्लस् क्लिक् इत्यस्य आवश्यकता भविष्यति ।" + +#. i18n: ectx: property (text), widget (QCheckBox, ctrlRequiredForDragButton) +#: widgets/EditProfileMousePage.ui:398 +#, kde-format +msgid "Require Ctrl key for drag && drop" +msgstr "drag && drop कृते Ctrl कीलस्य आवश्यकता अस्ति" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAlternateScrollingButton) +#: widgets/EditProfileMousePage.ui:405 +#, kde-format +msgid "" +"Mouse scroll wheel will emulate up/down key presses in programs that use the " +"Alternate Screen buffer (e.g. less)" +msgstr "" +"माउसस्क्रॉलचक्रं वैकल्पिकस्क्रीन् बफरस्य उपयोगं कुर्वतां कार्यक्रमेषु उपरि/अधः कीलदबानस्य अनुकरणं " +"करिष्यति (उदा. न्यूनम्)" + +#. i18n: ectx: property (text), widget (QCheckBox, enableAlternateScrollingButton) +#: widgets/EditProfileMousePage.ui:408 +#, kde-format +msgid "Enable Alternate Screen buffer scrolling" +msgstr "वैकल्पिकपर्दे बफरस्क्रॉलिंग् सक्षमं कुर्वन्तु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, dropUrlsAsText) +#: widgets/EditProfileMousePage.ui:415 +#, kde-format +msgid "" +"Always paste dropped files and URLs as text without offering move, copy and " +"link actions." +msgstr "" +"सदैव पातितसञ्चिकाः URL च पाठरूपेण चिनोतु, चालनं, प्रतिलिपिं, लिङ्क् क्रियाः न " +"प्रस्तावयित्वा ।" + +#. i18n: ectx: property (text), widget (QCheckBox, dropUrlsAsText) +#: widgets/EditProfileMousePage.ui:418 +#, kde-format +msgid "Disable drag && drop menu for files && URLs" +msgstr "सञ्चिकानां && URL कृते drag && drop मेन्यू अक्षमम्" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableMouseWheelZoomButton) +#: widgets/EditProfileMousePage.ui:425 +#, kde-format +msgid "Pressing Ctrl+scrollwheel will increase/decrease the text size." +msgstr "Ctrl+scrollwheel नुदनेन पाठस्य आकारः वर्धते/घटितः भविष्यति ।" + +#. i18n: ectx: property (text), widget (QCheckBox, enableMouseWheelZoomButton) +#: widgets/EditProfileMousePage.ui:428 +#, kde-format +msgid "Allow Ctrl+scrollwheel to zoom text size" +msgstr "Ctrl+scrollwheel इत्यस्य पाठस्य आकारं जूम् कर्तुं अनुमतिं ददातु" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, allowColorFilters) +#: widgets/EditProfileMousePage.ui:435 +#, kde-format +msgid "" +"When positioning the mouse over a hexadecimal color it will be displayed in " +"a frame next to the mouse pointer" +msgstr "" +"मूषकं षट्दशमलववर्णस्य उपरि स्थापयति सति मूषकसूचकस्य पार्श्वे फ्रेममध्ये प्रदर्शितं भविष्यति" + +#. i18n: ectx: property (text), widget (QCheckBox, allowColorFilters) +#: widgets/EditProfileMousePage.ui:438 +#, kde-format +msgid "Preview Colors on hover" +msgstr "पूर्वावलोकनं Colors on hover" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, allowMouseTrackingButton) +#: widgets/EditProfileMousePage.ui:458 +#, kde-format +msgid "" +"Some terminal applications have mouse support, this allows them to get it by " +"default. It can be toggled on/off while running as well." +msgstr "" +"केषुचित् टर्मिनल् अनुप्रयोगेषु मूषकस्य समर्थनं भवति, एतेन ते पूर्वनिर्धारितरूपेण प्राप्तुं शक्नुवन्ति । " +"चालयन् अपि इदं चालू/निष्क्रान्तं कर्तुं शक्यते ।" + +#. i18n: ectx: property (text), widget (QCheckBox, allowMouseTrackingButton) +#: widgets/EditProfileMousePage.ui:461 +#, kde-format +msgid "Allow terminal applications to handle clicks and drags" +msgstr "टर्मिनल् अनुप्रयोगानाम् क्लिक्, ड्रैग् च नियन्त्रयितुं अनुमतिं ददातु" + +#. i18n: ectx: property (text), widget (QLabel, historySizeLabel) +#: widgets/EditProfileScrollingPage.ui:25 +#, kde-format +msgid "Scrollback:" +msgstr "स्क्रॉलबैक् :" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: widgets/EditProfileScrollingPage.ui:41 +#, kde-format +msgid "Scroll Page Up/Down:" +msgstr "पृष्ठं उपरि/अधः स्क्रॉल कुर्वन्तु:" + +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "दृश्ये आगच्छन्तीः पङ्क्तयः प्रकाशयन्तु" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " % ." + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "अदृष्ट" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "प्रत्येकस्य चिह्नस्य आकारः (स्क्रॉलबारदीर्घतायाः प्रतिशतरूपेण):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "प्रकाशनम् :" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "पृष्ठं विण्डो इत्यस्य अर्धं ऊर्ध्वतां स्क्रॉल कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "अर्धपर्दे ऊर्ध्वता&t" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "स्क्रॉलबार मार्करस्य वर्णः :" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, fuzzy, kde-format +#| msgid "Color of scrollbar markers:" +msgid "Color of scrollbar search highlighting lines:" +msgstr "स्क्रॉलबार मार्करस्य वर्णः :" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "पुनः प्रवाह रेखाः :" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "पृष्ठं विण्डो इत्यस्य पूर्णोन्नतिं स्क्रॉल कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "F&ull स्क्रीन ऊर्ध्वता" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "टर्मिनल् विण्डो इत्यस्य दक्षिणभागे स्क्रॉल बारं दर्शयतु" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, kde-format +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "दक्षिणपक्षः" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "टर्मिनल् विण्डो इत्यस्य वामभागे स्क्रॉल-पट्टिकां दर्शयतु" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, kde-format +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "&वामपक्षः" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "यदा टर्मिनलस्य आकारः परिवर्तते तदा रेखाः पुनः प्रवाहयन्तु" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, kde-format +msgid "Scrollbar position:" +msgstr "स्क्रॉलबारस्य स्थितिः :" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" +msgstr "" + +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) +#: widgets/EditProfileTabsPage.ui:43 +#, kde-format +msgid "Tab Titles" +msgstr "ट्याब् शीर्षकम्" + +#. i18n: ectx: property (title), widget (QGroupBox, tabMonitoringGroup) +#: widgets/EditProfileTabsPage.ui:65 +#, kde-format +msgid "Tab Monitoring" +msgstr "ट्याब निगरानी" + +#. i18n: ectx: property (text), widget (QLabel, silenceSecondsLabel) +#: widgets/EditProfileTabsPage.ui:80 +#, kde-format +msgid "Threshold for continuous silence:" +msgstr "निरन्तरमौनस्य सीमा :" + +#. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, silenceSecondsSpinner) +#: widgets/EditProfileTabsPage.ui:93 +#, kde-format +msgid "The threshold for continuous silence to be detected by Konsole" +msgstr "Konsole द्वारा ज्ञातव्यं निरन्तरं मौनस्य सीमा" + +#: widgets/HistorySizeWidget.cpp:40 +#, kde-format +msgctxt "@label:textbox Unit of scrollback" +msgid " line" +msgid_plural " lines" +msgstr[0] " पंक्ति" +msgstr[1] " रेखाः" + +#: widgets/HistorySizeWidget.cpp:57 +#, kde-format +msgctxt "@info:whatsthis" +msgid "" +"When using this option, the scrollback data will be saved to RAM. If you " +"choose a huge value, your system may run out of free RAM and cause serious " +"issues with your system." +msgstr "" +"एतस्य विकल्पस्य उपयोगं कुर्वन् स्क्रॉलबैक्-दत्तांशः RAM मध्ये रक्षितः भविष्यति । यदि भवान् " +"विशालं मूल्यं चिनोति तर्हि भवतः प्रणाल्याः मुक्तं RAM समाप्तं भवितुम् अर्हति तथा च भवतः " +"प्रणाल्या सह गम्भीराः समस्याः उत्पद्यन्ते ।" + +#: widgets/HistorySizeWidget.cpp:69 +#, kde-kuit-format +msgctxt "@info:tooltip" +msgid "" +"When using this option, the scrollback data will be written unencrypted to " +"temporary files. Those temporary files will be deleted automatically when " +"Konsole is closed in a normal manner.Use Settings → Configure " +"Konsole → Temporary Files to select the location of the temporary " +"files." +msgstr "" +"एतस्य विकल्पस्य उपयोगं कुर्वन् स्क्रॉलबैक् दत्तांशः अस्थायीसञ्चिकासु अगुप्तरूपेण लिखितः भविष्यति " +"। ताः अस्थायीसञ्चिकाः स्वयमेव विलोपिताः भविष्यन्ति यदा Konsole सामान्यरीत्या बन्दं " +"भवति।अस्थायीसञ्चिकानां स्थानं चयनार्थं सेटिंग्स् → Configure Konsole → " +"Temporary Files इत्यस्य उपयोगं कुर्वन्तु।" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, fixedSizeHistoryButton) +#: widgets/HistorySizeWidget.ui:60 +#, kde-format +msgid "Limit the remembered output to a fixed number of lines" +msgstr "स्मरणीयं उत्पादनं नियतसङ्ख्यायां रेखासु सीमितं कुर्वन्तु" + +#. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton) +#: widgets/HistorySizeWidget.ui:63 +#, kde-format +msgid "Fi&xed size:" +msgstr "Fi&xed आकारः :" + +#. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner) +#: widgets/HistorySizeWidget.ui:73 +#, kde-format +msgid "Number of lines of output to remember" +msgstr "स्मर्तव्यं उत्पादनपङ्क्तयः संख्या" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, unlimitedHistoryButton) +#: widgets/HistorySizeWidget.ui:134 +#, kde-format +msgid "Remember all output produced by the terminal" +msgstr "टर्मिनल् द्वारा उत्पादितं सर्वं आउटपुट् स्मर्यताम्" + +#. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) +#: widgets/HistorySizeWidget.ui:137 +#, kde-format +msgctxt "Save all lines to the scrollback history" +msgid "&Unlimited" +msgstr "&असीमित" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) +#: widgets/HistorySizeWidget.ui:172 +#, kde-format +msgid "Do not remember previous output" +msgstr "पूर्वनिर्गमं न स्मर्यताम्" + +#. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton) +#: widgets/HistorySizeWidget.ui:175 +#, kde-format +msgctxt "Do not save any lines to the scrollback history" +msgid "&None" +msgstr "&न कश्चित्" + +#: widgets/IncrementalSearchBar.cpp:50 +#, kde-format +msgctxt "@label:textbox" +msgid "Find..." +msgstr "अन्वेषय..." + +#: widgets/IncrementalSearchBar.cpp:52 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter the text to search for here" +msgstr "अत्र अन्वेष्टुं पाठं प्रविशतु" + +#: widgets/IncrementalSearchBar.cpp:74 +#, kde-format +msgctxt "@action:button Go to the next phrase" +msgid "Next" +msgstr "अग्रिम" + +#: widgets/IncrementalSearchBar.cpp:77 +#, kde-format +msgctxt "@info:tooltip" +msgid "Find the next match for the current search phrase" +msgstr "वर्तमान अन्वेषणवाक्यस्य अग्रिममेलनं ज्ञातव्यम्" + +#: widgets/IncrementalSearchBar.cpp:84 +#, kde-format +msgctxt "@action:button Go to the previous phrase" +msgid "Previous" +msgstr "पूर्वतनम्‌" + +#: widgets/IncrementalSearchBar.cpp:86 +#, kde-format +msgctxt "@info:tooltip" +msgid "Find the previous match for the current search phrase" +msgstr "वर्तमान अन्वेषणवाक्यस्य पूर्वमेलनं ज्ञातव्यम्" + +#: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "प्रकरणसंवेदनशीलः" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "अन्वेषणं लघुसंवेदनशीलं वा इति सेट् करोति" + +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "विकल्पमेनू प्रदर्शयन्तु" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "अन्वेषणपट्टिकां पिधाय" + +#: widgets/IncrementalSearchBar.cpp:131 +#, kde-format +msgctxt "@item:inmenu" +msgid "Match regular expression" +msgstr "नियमितव्यञ्जनस्य मेलनं कुर्वन्तु" + +#: widgets/IncrementalSearchBar.cpp:135 +#, kde-format +msgctxt "@item:inmenu" +msgid "Highlight all matches" +msgstr "सर्वाणि मेलनानि प्रकाशयन्तु" + +#: widgets/IncrementalSearchBar.cpp:137 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether matching text should be highlighted" +msgstr "मेलपाठः प्रकाशितः भवेत् वा इति सेट् करोति" + +#: widgets/IncrementalSearchBar.cpp:140 +#, kde-format +msgctxt "@item:inmenu" +msgid "Search backwards" +msgstr "पश्चात् अन्वेषणं कुर्वन्तु" + +#: widgets/IncrementalSearchBar.cpp:142 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "अन्वेषणं अधः आरभ्यत इति सेट् करोति" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "न वेष्टनम्" + +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether search should stop instead of wrapping" +msgstr "अन्वेषणं वेष्टनस्य स्थाने स्थगितव्यं वा इति सेट् करोति" + +#: widgets/IncrementalSearchBar.cpp:184 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search for the current search phrase from the bottom" +msgstr "वर्तमान अन्वेषणवाक्यं अधः अन्वेष्टुम्" + +#: widgets/IncrementalSearchBar.cpp:189 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search for the current search phrase from the top" +msgstr "उपरितः वर्तमानं अन्वेषणवाक्यं अन्वेष्टुम्" + +#: widgets/KonsolePrintManager.cpp:50 +#, kde-format +msgid "Print Shell" +msgstr "मुद्रण शेल्" + +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 +#, kde-format +msgctxt "@label:listbox No color selected" +msgid "None" +msgstr "न कश्चित्" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, remoteTabTitleEdit) +#: widgets/RenameTabWidget.ui:41 +#, kde-format +msgid "" +"Tab title format used when a remote command (e.g. connection to another " +"computer via SSH) is being executed" +msgstr "" +"यदा दूरस्थः आदेशः (उदा. SSH मार्गेण अन्यसङ्गणकेन सह संयोजनं) निष्पादितः भवति तदा उपयुज्यते " +"ट्याब् शीर्षकस्वरूपम्" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: widgets/RenameTabWidget.ui:60 +#, kde-format +msgid "Remote tab title format:" +msgstr "दूरस्थं ट्याब् शीर्षकस्वरूपम् :" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/RenameTabWidget.ui:79 +#, kde-format +msgid "&Tab title format:" +msgstr "&Tab शीर्षक प्रारूपः:" + +#. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) +#: widgets/RenameTabWidget.ui:98 +#, kde-format +msgid "Normal tab title format" +msgstr "सामान्यं ट्याब् शीर्षकस्वरूपम्" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: widgets/RenameTabWidget.ui:105 +#, kde-format +msgid "Tab Co&lor:" +msgstr "Co&lor ट्याब् :" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "Co&lor ट्याब् :" + +#: widgets/TabTitleFormatButton.cpp:21 +#, c-format +msgid "Program Name: %n" +msgstr "कार्यक्रमनाम: %n" + +#: widgets/TabTitleFormatButton.cpp:22 +#, c-format +msgid "Current Directory (Short): %d" +msgstr "वर्तमान निर्देशिका (लघु): %d" + +#: widgets/TabTitleFormatButton.cpp:23 +msgid "Current Directory (Long): %D" +msgstr "वर्तमान निर्देशिका (दीर्घ): %D" + +#: widgets/TabTitleFormatButton.cpp:24 widgets/TabTitleFormatButton.cpp:39 +msgid "Window Title Set by Shell: %w" +msgstr "विण्डो शीर्षकं शेल् द्वारा सेट् कुर्वन्तु: %w" + +#: widgets/TabTitleFormatButton.cpp:25 widgets/TabTitleFormatButton.cpp:40 +msgid "Session Number: %#" +msgstr "सत्रसङ्ख्या: %#" + +#: widgets/TabTitleFormatButton.cpp:26 widgets/TabTitleFormatButton.cpp:34 +#, c-format +msgid "User Name: %u" +msgstr "उपयोक्तृनाम: %u" + +#: widgets/TabTitleFormatButton.cpp:27 +msgid "Local Host: %h" +msgstr "स्थानीय मेजबानः %h" + +#: widgets/TabTitleFormatButton.cpp:28 +msgid "User's Bourne prompt sigil: %B" +msgstr "उपयोक्तुः Bourne प्रॉम्प्ट sigil: %B" + +#: widgets/TabTitleFormatButton.cpp:35 +msgid "User Name@ (if given): %U" +msgstr "उपयोक्तृनाम@ (यदि दत्तं): %U" + +#: widgets/TabTitleFormatButton.cpp:36 +msgid "Remote Host (Short): %h" +msgstr "दूरस्थ मेजबान (लघु): % h" + +#: widgets/TabTitleFormatButton.cpp:37 +msgid "Remote Host (Long): %H" +msgstr "दूरस्थ मेजबान (दीर्घ): % एच" + +#: widgets/TabTitleFormatButton.cpp:38 +#, c-format +msgid "Command and arguments: %c" +msgstr "आदेशः तर्कश्च: %c" + +#: widgets/TabTitleFormatButton.cpp:48 +#, kde-format +msgid "Insert" +msgstr "युज्" + +#: widgets/TabTitleFormatButton.cpp:73 +#, kde-format +msgctxt "@info:tooltip" +msgid "Insert title format" +msgstr "शीर्षकस्वरूपं सम्मिलितं कुर्वन्तु" + +#: widgets/TabTitleFormatButton.cpp:77 +#, kde-format +msgctxt "@info:tooltip" +msgid "Insert remote title format" +msgstr "दूरस्थं शीर्षकस्वरूपं सम्मिलितं कुर्वन्तु" + +#: widgets/TerminalHeaderBar.cpp:80 widgets/TerminalHeaderBar.cpp:188 +#, kde-format +msgctxt "@info:tooltip" +msgid "Maximize terminal" +msgstr "टर्मिनल् अधिकतमं कुर्वन्तु" + +#: widgets/TerminalHeaderBar.cpp:91 +#, kde-format +msgctxt "@info:tooltip" +msgid "Move terminal to new tab" +msgstr "टर्मिनल् नूतन ट्याब् मध्ये स्थानान्तरयन्तु" + +#: widgets/TerminalHeaderBar.cpp:101 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close terminal" +msgstr "टर्मिनल् बन्दं कुर्वन्तु" + +#: widgets/TerminalHeaderBar.cpp:186 +#, kde-format +msgctxt "@info:tooltip" +msgid "Restore terminal" +msgstr "टर्मिनल् पुनःस्थापयन्तु" + +#: widgets/ViewContainer.cpp:60 +#, kde-format +msgctxt "@info:tooltip" +msgid "Open a new tab" +msgstr "नूतनं ट्याब् उद्घाटयन्तु" + +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "अन्वेषण ट्याब्स्" + +#: widgets/ViewContainer.cpp:70 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close this tab" +msgstr "एतत् ट्याब् पिधाय" + +#: widgets/ViewContainer.cpp:106 +#, kde-format +msgctxt "@action:inmenu" +msgid "&Detach Tab" +msgstr "&Detach Tab" + +#: widgets/ViewContainer.cpp:112 +#, kde-format +msgctxt "@action:inmenu" +msgid "&Configure or Rename Tab..." +msgstr "&ट्याब् विन्यस्तं वा पुनर्नामकरणं वा..." + +#: widgets/ViewContainer.cpp:117 +#, kde-format +msgctxt "@action:inmenu" +msgid "Close Tab" +msgstr "ट्याब् बन्दं कुर्वन्तु" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "D-Bus मेथड्स् sendText/runCommand इत्येतत् केवलं प्रयुक्तम् आसीत् । एतानि पद्धतीनि " +#~ "सार्वजनिकरूपेण भवितुं अनुमतिं दातुं सुरक्षाचिन्ताः सन्ति। इष्टे सति एतानि पद्धतयः केवलं " +#~ "Konsole इत्यस्य पुनः संकलनेन एव आन्तरिकप्रयोगे परिवर्तयितुं शक्यन्ते ।

              एषा चेतावनी " +#~ "केवलं एकवारं अस्य Konsole उदाहरणस्य कृते दर्शयिष्यति ।

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "प्रकरणसंवेदनशीलः" diff --git a/local/recipes/kde/konsole/source/po/se/konsole.po b/local/recipes/kde/konsole/source/po/se/konsole.po index 35c84f4406..7c83a4f63c 100644 --- a/local/recipes/kde/konsole/source/po/se/konsole.po +++ b/local/recipes/kde/konsole/source/po/se/konsole.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2007-12-21 03:01+0100\n" "Last-Translator: Børre Gaup \n" -"Language-Team: Northern Sami \n" +"Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "Čájeheapmi" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Ludde čájeheami" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "" @@ -165,54 +165,66 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 #, kde-format msgctxt "@info:shell" -msgid "List the available profiles" +msgid "Start Konsole in fullscreen mode" msgstr "" #: Application.cpp:73 #, kde-format msgctxt "@info:shell" -msgid "List all the profile properties names and their type (for use with -p)" +msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" #: Application.cpp:74 #, kde-format msgctxt "@info:shell" -msgid "Change the value of a profile property." +msgid "List the available profiles" +msgstr "" + +#: Application.cpp:75 +#, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" msgstr "" #: Application.cpp:76 #, kde-format msgctxt "@info:shell" +msgid "Change the value of a profile property." +msgstr "" + +#: Application.cpp:78 +#, kde-format +msgctxt "@info:shell" msgid "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -220,13 +232,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -244,157 +256,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -644,6 +656,39 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Defaults" +msgid " [default]" +msgstr "Standárddat" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -686,7 +731,7 @@ msgstr "" msgid "Copy Location" msgstr "" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -717,13 +762,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -760,17 +805,17 @@ msgstr "Boallokombinašuvdna" msgid "Output" msgstr "Čoallu" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Ođđa njuolggobálggislistu" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Doaimmát njuolggobálggislisttu" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -778,7 +823,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -813,225 +858,225 @@ msgstr "Sisadáhta:" msgid "Output:" msgstr "Čoallu:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1039,13 +1084,13 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1053,25 +1098,25 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1079,132 +1124,132 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1213,67 +1258,67 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1357,7 +1402,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1369,27 +1414,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1429,7 +1474,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1482,11 +1527,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1545,92 +1590,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "" @@ -1820,25 +1865,25 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "" @@ -1897,17 +1942,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 lea gustohis čujuhus (URL), ii lean vejolaš vurket čoallu." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1943,473 +2009,497 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Ruoná čáhppes ivnni alde" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux-ivnnit" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Vielgat čáhpes ivnni alde" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Standárda (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-konsolla" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-konsolla" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem-ovdaneapmi" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Oza «%1» dáinna" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Liibme merkejuvvon teavstta" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format msgid "Next Profile" msgstr "Doaimmat profiilla" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format msgid "Previous Profile" msgstr "Doaimmat profiilla" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Bija &kodema" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Fakte jus &aktiverejuvvo" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Fákte jus &jaskkoda" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Stuorit fontta" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Unnit fontta" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Sádde signála" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Doaimmát dálá profiilla …" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2417,20 +2507,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2453,144 +2543,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" +msgid "Force new tabs" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2615,71 +2731,109 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Mearrida jus galgá deaivamiid merket" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2687,91 +2841,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2783,26 +2943,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -2956,125 +3114,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3126,8 +3302,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3166,95 +3342,95 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Sturrodat: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Ludde čájeheami ceaggut" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Ludde čájeheami lásku" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Viiddit čájeheami" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Seaggut čájeheami" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Doaimmat profiilla" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3517,7 +3705,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3525,13 +3713,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3629,28 +3817,40 @@ msgstr "Standárda mearkakoden:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3686,7 +3886,7 @@ msgstr "Doaimmat válljejuvvon ivdnečoahkkádusa" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3740,12 +3940,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3864,29 +4070,44 @@ msgid "Make the cursor blink regularly" msgstr "Divtte sievána livkit jeavddalaččat" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Divtte sievána livkit jeavddalaččat" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3894,144 +4115,144 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4039,43 +4260,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4083,95 +4304,95 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Doaimmat profiilla" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Gilkorat" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Fárda" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rullen" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Boallobeavdi" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Sáhpán" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4180,47 +4401,52 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Doaimmat profiilla «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4230,7 +4456,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4240,42 +4466,42 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Doaimma birrasa" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4283,42 +4509,42 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Vállje álgomáhpa" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4335,7 +4561,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4424,26 +4650,53 @@ msgstr "" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Biras:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Doaimmat birasvariábeliid ja eará gullevaš árvvuid" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4453,31 +4706,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4487,9 +4740,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4500,9 +4753,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4513,34 +4766,34 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "" @@ -4869,114 +5122,126 @@ msgid "Scrollback:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Čájet rullengietti terminálláse olgešbealde" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Čájet rullengietti terminálláse gurutbealde" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" +msgid "Scrollbar position:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5075,37 +5340,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5113,77 +5378,77 @@ msgstr "" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5194,7 +5459,7 @@ msgstr "" msgid "Print Shell" msgstr "" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5232,6 +5497,12 @@ msgstr "" msgid "Tab Co&lor:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5325,31 +5596,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/si/konsole.po b/local/recipes/kde/konsole/source/po/si/konsole.po index df92930769..2a24b07a00 100644 --- a/local/recipes/kde/konsole/source/po/si/konsole.po +++ b/local/recipes/kde/konsole/source/po/si/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2011-08-14 00:07+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" @@ -49,7 +49,7 @@ msgstr "දසුන" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "දිස්වන ආකාරය බෙදන්න" @@ -85,7 +85,7 @@ msgid "S&crollback" msgstr "පසුපසට ස්ක්‍රෝල් කරන්න (&c)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -178,36 +178,48 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Disable transparent backgrounds, even if the system supports them." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "භාවිතයට ඇති පැතිකඩ ලැයිස්තුව" -#: Application.cpp:73 +#: Application.cpp:75 #, fuzzy, kde-format #| msgid "" #| "List all the profile properties names and their type (for use with -p)" @@ -215,14 +227,14 @@ msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "පැතිකඩ වත්කම් නම් හා ඒවායේ වර්ග ලැයිස්තුගත කරන්න (-p සමඟ භාවිතයට)" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "පැතිකඩ තරතුරු වල අගයක් වෙනස් කිරන්න." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +242,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -238,14 +250,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "විධානයට වාදය මාරු විය" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -264,217 +276,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "පෙරබිම" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "පසුබිම" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "1 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "2 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "3 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "4 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "5 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "6 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "7 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "8 වන වර්‍ණය" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ඉදිරිබිම (අධි)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "පසුබිම (අධි)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "1 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "2 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "3 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "4 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "5 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "6 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "7 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "8 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ඉදිරිබිම (අධි)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "පසුබිම (අධි)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "1 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "2 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "3 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "4 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "5 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "6 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "7 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "8 වන වර්‍ණය (තීවෘ)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -741,6 +753,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "ධාරකය:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "පෙරනිමිය ලෙසට සකසන්න" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -785,7 +831,7 @@ msgstr "" msgid "Copy Location" msgstr "ප්‍රධානය පිටපත් වන්නේ" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -817,14 +863,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "අකුරු සකසන්න..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "සුමට අකුරු" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -862,17 +908,17 @@ msgstr "යතුරු සංකලනය" msgid "Output" msgstr "ප්‍රථිධාන" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "නව යතුරු බැඳීම් ලැයිස්තුව" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "යතුරු බැඳීම් ලැයිස්තුව සකසන්න" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -880,7 +926,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -914,249 +960,249 @@ msgstr "ප්‍රධානය:" msgid "Output:" msgstr "ප්‍රථිධානය:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "අග්‍ර අනුකාරකය" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "දෝෂ විසදීම් සහ සාමාන්‍ය දියුණු කිරීම්" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "අග්‍ර අනුකාරකය" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "දෝෂ විසදීම් සහ සාමාන්‍ය දියුණු කිරීම්" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "දෝෂ විසදීම් සහ සාමාන්‍ය දියුණු කිරීම්" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "දෝෂ විසදීම් සහ සාමාන්‍ය දියුණු කිරීම්" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "සාමාන්‍ය දියුණු කිරීම්" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "දෝෂ විසදීම්" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris සහාය සහ අතීතය" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "දෝෂ විසදීම් සහ ඇරඹුම් ක්‍රියාකාරිත්ව දියුණුව" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "දියුණුකිරීම් සලකුණු කිරීම" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1169,14 +1215,14 @@ msgstr "" "Embedded Konsole\n" "Toolbar and session names" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1189,28 +1235,28 @@ msgstr "" "Embedded Konsole\n" "General improvements" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "රංග ප්‍රයෝග" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1223,125 +1269,125 @@ msgstr "" "Code from the kvt project\n" "General improvements" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "ක්‍රම සහ පෙළ තේරිමේ දියුණුකිරීම්" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI ගැලපීම" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD ගැලපීම" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "අනෙක් සියල්ලන්ටම ස්තුතියි.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "නව ටැබය (&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "ටැබය වසන්න (&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "නව කවුළුව (&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "පිටු සලකුණු (&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "නව වර්‍ණ ක්‍රමය" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Manage Profiles" @@ -1349,27 +1395,27 @@ msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "පැතිකඩ කළමණාකරනය" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "සක්‍රීය මෙනුව" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "ටැබය වමට ගෙන යන්න" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1382,28 +1428,28 @@ msgstr[0] "" msgstr[1] "" "You have multiple tabs in this window, are you sure you want to quit?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "වැසීම සහතික කරන්න" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "දැනට ඇති ටැබය වසන්න" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1411,7 +1457,7 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "You have multiple tabs in this window, are you sure you want to quit?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1419,7 +1465,7 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "නව පැතිකඩ" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgctxt "@title:tab Generic, common options" #| msgid "General" @@ -1427,31 +1473,31 @@ msgctxt "@title Preferences page name" msgid "General" msgstr "සාමාන්‍ය" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1545,7 +1591,7 @@ msgstr "ගොනු පාලකය විවෘත කරන්න" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1557,29 +1603,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "විධානය:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "විධානය:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1621,7 +1667,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1681,11 +1727,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1748,94 +1794,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "දුරස්ත සම්බන්ධතාවය" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Do not close the initial session automatically when it ends." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2044,25 +2090,25 @@ msgstr "අභිප්‍රේත" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "පෙරනිමි පැතිකඩ" @@ -2127,17 +2173,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1න් ප්‍රතිදාන සුරකින්න" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 සාවද්‍ය URL කි, ප්‍රථිධානය සුරකිය නොහැක." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2174,84 +2241,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "අඳුරු පැස්ටල" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "කළු මත කොළ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux වර්ණ" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "කලු මත සුදු" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "හිරු කල" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solarized" msgid "Solarized Light" msgstr "හිරු කල" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "කලු මත සුදු" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "පෙරනිමි (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux කන්සෝලය" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris කන්සෝලය" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "සෙවුම් ප්‍රථිධානය..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Enter the text to search for here" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "'%1' වාරයේ සීනුව" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "ද්වීමය සෙවි නොහැක: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "අවවාදය: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Could not find an interactive shell to start." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2260,360 +2346,368 @@ msgstr "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Could not start program '%1' with arguments '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "'%1' වාරයේ නිහඬ" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "අවසන්" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "'%1' වැඩසටහන බිදවැටුනි" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program '%1' exited with status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem ප්‍රගතිය" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "'%1' සැසිය තුළ ක්‍රියා" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole පොත්සලකුණ විවෘත කිරීමට නොදනී: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Configure Profiles..." msgid "Configure Web Shortcuts..." msgstr "පැතිකඩ සැකසීම..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ගොනු පාලකය විවෘත කරන්න" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "පිටපත් කරන්න (~C)" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "දසුන බෙදීම වම/දකුණ" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "දසුන බෙදීම ඉහළ/ඉහළ" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ප්‍රධානය පිටපත් කරන්න" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ප්‍රධානය පිටපත් කරන්න" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "තේරීම අලවන්න" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "සියල්ල තෝරන්න" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Mode" msgstr "තෝරන්න" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Line" msgstr "තෝරන්න" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "ලෙස ප්‍රථිධාන සුරකින්න (&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "ලෙස ප්‍රථිධාන සුරකින්න (&A)..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Configure Scrollback..." msgid "Adjust Scrollback..." msgstr "ආපසු ස්ක්‍රෝල් සකසන්න..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "පසුපසට ස්ක්‍රෝල් පිරිසිදු" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "ආපසු ස්ක්‍රෝල් පැහැදිලි කිරීම සහ යළි සැකසීම" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "පැතිකඩ වෙනස් කරන්න" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "පෙර දසුන" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "පැතිකඩ වෙනස් කරන්න" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "සංකේතාංඛනය සකසන්න (&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "ටැබයේ නම වෙනස් (&R)" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "වත්මන් කවුළුවේ සියළු ටැබ (&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "ටැබ් තෝරන්න... (&S)" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "නොමැත (&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "ප්‍රධානය පිටපත් වන්නේ" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem අපගත..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "ක්‍රියා සඳහා නිරික්‍ෂකය (&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "ක්‍රියා සඳහා නිරික්‍ෂකය (&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "නිහඬතාව සඳහා නිරික්‍ෂකය (&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "ක්‍රියා සඳහා නිරික්‍ෂකය (&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "අකුරු විශාල කරන්න" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "අකුර හකුළන්න" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "අකුරු විශාල කරන්න" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "ටැබය වසන්න (&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "ටර්මිනල ගුණාංග" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "නව පැතිකඩ..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "දැනට ඇති පැතැකඩ සුරකින්න..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2622,7 +2716,7 @@ msgstr "" "A program is currently running in this session. Are you sure you want to " "close it?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2631,19 +2725,19 @@ msgstr "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "වැසීම සහතික කරන්න" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "ටැබය වසන්න (&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2655,41 +2749,41 @@ msgstr "" "A program is currently running in this session. Are you sure you want to " "close it?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "ZModem බාගත සුරකින්න..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2699,13 +2793,13 @@ msgstr "" "

              ZModem ගොනු හුවමාරුවක් හඳුනා ගැණිනි, නමුත් සුදුසු ZModem මෘදුකාංගයක් මෙම පද්ධතිය මත හමු " "නොවිනි.

              ඔබට 'rzsz' හෝ 'lrzsz' පැකේජය ස්ථාපනයට ඇවැසිද?

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              වත්මන් වාරය සතුව දැනටමත් ZModem ගොනු හුවමාරුවක් පවතී.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2714,7 +2808,7 @@ msgstr "" "

              මෙම පද්ධතිය මත සුදුසු ZModem මෘදුකාංගයක් හමු නොවිනි

              ඔබට 'rzsz' හෝ 'lrzsz' " "පැකේජය ස්ථාපනයට ඇවැසිද?

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem අපගත කිරීමට ගොනු තෝරන්න" @@ -2738,150 +2832,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "වැසීම සහතික කරන්න" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, fuzzy, kde-format -#| msgid "Save window size and position on exit" -msgid "Show window title on the titlebar" -msgstr "පිටවීමේදී කවුළු ප්‍රමාණය හා ස්ථානය සුරකින්න" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "සාමාන්‍ය ප්‍රකාශන සසඳන්න" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "සියලු ගැලපුම් උද්දීපනය කරන්න" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "සෙවුම අක්‍ෂර සංවේදී දැයි සකසන්න" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "අක්‍ෂර සංවේදී" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "ටැබයට නව පෙළ එක් කරන්න:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "සෙවුම අක්‍ෂර සංවේදී දැයි සකසන්න" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "අක්‍ෂර සංවේදී" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "සියලු ගැලපුම් උද්දීපනය කරන්න" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Find the next match for the current search phrase" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, fuzzy, kde-format +#| msgid "Save window size and position on exit" +msgid "Show window title on the titlebar" +msgstr "පිටවීමේදී කවුළු ප්‍රමාණය හා ස්ථානය සුරකින්න" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "සාමාන්‍ය ප්‍රකාශන සසඳන්න" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2908,74 +3029,112 @@ msgstr "පිටවීමේදී කවුළු ප්‍රමාණය හ msgid "The window size will be saved upon exiting Konsole" msgstr "පිටවීමේදී කවුළු ප්‍රමාණය හා ස්ථානය සුරකින්න" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "සෙවුම අක්‍ෂර සංවේදී දැයි සකසන්න" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all matches" msgid "Highlight all search matches" msgstr "සියලු ගැලපුම් උද්දීපනය කරන්න" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Sets whether matching text should be highlighted" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2983,92 +3142,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Use a custom, fixed color for the cursor" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3081,26 +3246,24 @@ msgid "Enable memory monitoring:" msgstr "Enable Bi-Directional text rendering" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3273,110 +3436,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "නොමැත (&N)" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "ටැබය වසන්න (&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "Show 'New Tab' and 'Close Tab' buttons in tab bar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "Use a custom, fixed color for the cursor" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "ටැබයට නව පෙළ එක් කරන්න:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "දැනට ඇති ටැබය වසන්න" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "දිස්වන ආකාරය බෙදන්න" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "මෙනු තීරුව පෙන්වන්න" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3385,14 +3567,14 @@ msgid "Small" msgstr "කුඩා" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3401,7 +3583,7 @@ msgid "Large" msgstr "විශාල" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3454,8 +3636,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3495,99 +3677,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "ප්‍රමාණය: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "වැසීම සහතික කරන්න" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "වැසීම සහතික කරන්න" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Set cursor color to match current character" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "තේරීම අලවන්න" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been
              Output has been suspended by pressing Ctrl+S. Press Ctrl+Q to resume.
              " -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "තේරීම අලවන්න" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "දිස්වන ආකාරය බෙදන්න" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "දසුන බෙදීම වම/දකුණ" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "දසුන බෙදීම ඉහළ/ඉහළ" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3643,7 +3825,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "දසුන බෙදීම ඉහළ/ඉහළ" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3651,7 +3833,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "දසුන බෙදීම වම/දකුණ" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3659,7 +3841,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "දසුන බෙදීම ඉහළ/ඉහළ" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3667,210 +3849,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "දසුන බෙදීම ඉහළ/ඉහළ" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "දසුන විහිදන්න" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "දසුන හකුළන්න" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "වත්මන් ටැබය වෙන් කරන්න (&e)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "වත්මන් ටැබය වෙන් කරන්න (&e)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "Next Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "ඊලඟ ටැබය" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous Tab" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "පෙර ටැබය" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "ටර්මිනලය දර්ශන ඉහළ" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ටර්මිනලය දර්ශන පහළ" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "ටර්මිනලය දර්ශන ඉහළ" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ටර්මිනලය දර්ශන පහළ" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "%1 ටැබයට මාරුවන්න" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move Tab Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "ටැබය දකුණට ගෙන යන්න" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "ටැබය වමට ගෙන යන්න" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1 ටැබයට මාරුවන්න" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "මවුසයේ අන්තර්ක්‍රියාකාරිත්වය" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "ස්තිර පෙළී ගණන:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move Tab Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "ටැබය වමට ගෙන යන්න" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3883,7 +4079,7 @@ msgstr "" "A problem occurred when saving the output.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3896,13 +4092,13 @@ msgstr "" "A problem occurred when saving the output.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -4002,29 +4198,41 @@ msgstr "පෙරනිමි අක්‍ෂර සංකේතාංඛනය: msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "ස්තිර පෙළී ගණන:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4061,7 +4269,7 @@ msgstr "වර්‍ණ ක්‍රමය සකසන්න" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4118,12 +4326,18 @@ msgstr "දෘඩ අකුරු වල දැඩි වර්ණ අඳින #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4255,30 +4469,46 @@ msgid "Make the cursor blink regularly" msgstr "Make the cursor blink regularly" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "සක්‍රීය මෙනුව" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Make the cursor blink regularly" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "කවුළුව" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, fuzzy, kde-format #| msgid "Show new size of the terminal after resizing" msgid "" @@ -4287,26 +4517,26 @@ msgid "" msgstr "ප්‍රතිප්‍රමාණයෙන් පසු අග්‍රයේ නව ප්‍රමාණය පෙන්වන්න" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, fuzzy, kde-format #| msgid "Show terminal size after resizing" msgid "Show hint for terminal size after resizing" msgstr "ප්‍රතිප්‍රමාණයෙන් පසු අග්‍ර ප්‍රමාණය පෙන්වන්න" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4315,28 +4545,28 @@ msgid "Color:" msgstr "වර්‍ණය" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Select the color used to draw the cursor" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "ටර්මිනල ගුණාංග" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "ටර්මිනල ගුණාංග" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4344,95 +4574,95 @@ msgid "Terminal contents" msgstr "ටර්මිනල ගුණාංග" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Enable Bi-Directional text rendering" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4440,45 +4670,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Set cursor color to match current character" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "අකුරු" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4488,98 +4718,98 @@ msgstr "" "Hebrew only)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Enable Bi-Directional text rendering" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Set cursor color to match current character" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "පැතිකඩ වෙනස් කරන්න" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "සාමාන්‍ය" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "ටැබ්" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "පෙනුම" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "ස්ක්‍රෝල් කරමින්" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "යතුරු සංකලනය" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "උසස්" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4588,49 +4818,56 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "පැතිකඩ සකසමින්: %2" msgstr[1] "%1 පැතිකඩ සකසන්න: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "නව පැතිකඩ..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" පැතිකඩ සකසන්න" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "නොමැත (&N)" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4640,7 +4877,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4650,45 +4887,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "තේරීම අලවන්න" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "රංග ප්‍රයෝග" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Set the selected profile as the default for new terminal sessions" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "පරිසරය සකසන්න" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4696,25 +4933,25 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "ආරම්භක නාමාවලිය තෝරන්න" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "නව..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4723,20 +4960,20 @@ msgstr "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "පෙරනිමි පැතිකඩ" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4753,7 +4990,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4849,27 +5086,55 @@ msgstr "ආරම්භක බහලුම සඳහා ගවේශනය" msgid "Start in same directory as current session" msgstr "Start in same directory as current tab" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Start in same directory as current tab" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "පරිසරය:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Edit the list of environment variables and associated values" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "ටර්මිනල ගුණාංග" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4879,33 +5144,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "අග්‍ර අනුකාරකය" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "මවුසයේ අන්තර්ක්‍රියාකාරිත්වය" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4915,9 +5180,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4928,9 +5193,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4941,35 +5206,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "පසුබිම" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5333,72 +5598,25 @@ msgid "Scrollback:" msgstr "පසුපසට ස්ක්‍රෝල් කරන්න (&c)" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ටැබ්තීරුවේ පිහිටුම:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "Show the scroll bar on the right side of the terminal window" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "දකුණුපසින් පෙන්වන්න" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "Show the scroll bar on the left side of the terminal window" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "පෙළ ප්‍රමාණය:" - #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5406,46 +5624,105 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "සැඟවුණු" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "Show the scroll bar on the right side of the terminal window" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "දකුණුපසින් පෙන්වන්න" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "Show the scroll bar on the left side of the terminal window" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "පෙළ ප්‍රමාණය:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ටැබ්තීරුවේ පිහිටුම:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5550,40 +5827,40 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "නොමැත (&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "සොයන්න:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Enter the text to search for here" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "මීළඟ" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Find the next match for the current search phrase" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "පෙර" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5592,87 +5869,87 @@ msgstr "වත්මන් සවුම් වදනට පෙර ගැලප #: widgets/IncrementalSearchBar.cpp:102 #, fuzzy, kde-format -#| msgid "Display the options menu" -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "අභිප්‍රේත මෙනුව පෙන්වන්න" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "සෙවුම් තීරුව වසන්න" - -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format #| msgid "Case sensitive" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "අක්‍ෂර සංවේදී" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "සෙවුම අක්‍ෂර සංවේදී දැයි සකසන්න" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, fuzzy, kde-format +#| msgid "Display the options menu" +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "අභිප්‍රේත මෙනුව පෙන්වන්න" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "සෙවුම් තීරුව වසන්න" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "සාමාන්‍ය ප්‍රකාශන සසඳන්න" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all matches" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "සියලු ගැලපුම් උද්දීපනය කරන්න" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Sets whether matching text should be highlighted" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Find the next match for the current search phrase" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Find the next match for the current search phrase" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Find the next match for the current search phrase" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Find the next match for the current search phrase" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5685,7 +5962,7 @@ msgstr "Find the next match for the current search phrase" msgid "Print Shell" msgstr "ශෙල්" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5730,6 +6007,14 @@ msgstr "සාමාන්‍ය ටැබ් සිරස්තල සංයු msgid "Tab Co&lor:" msgstr "වර්‍ණය" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "වර්‍ණය" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5831,7 +6116,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "ටැබය වසන්න (&C)" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5839,33 +6124,47 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "දසුන වෙන් කරන්න (&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "දසුන වෙන් කරන්න (&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "සෙවුම් තීරුව වසන්න" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "දසුන වෙන් කරන්න (&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "ටැබයේ නම වෙනස් (&R)" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "ටැබය වසන්න (&C)" +#, fuzzy +#~| msgid "Case sensitive" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "අක්‍ෂර සංවේදී" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" @@ -6314,9 +6613,6 @@ msgstr "ටැබය වසන්න (&C)" #~ msgid "Decrease Text Size" #~ msgstr "අකුරු කුඩා කරන්න" -#~ msgid "Search Output..." -#~ msgstr "සෙවුම් ප්‍රථිධානය..." - #~ msgid "Find Next" #~ msgstr "මීළඟ සෙවුම" diff --git a/local/recipes/kde/konsole/source/po/sk/konsole.po b/local/recipes/kde/konsole/source/po/sk/konsole.po index 68313fc395..948e9a5e9d 100644 --- a/local/recipes/kde/konsole/source/po/sk/konsole.po +++ b/local/recipes/kde/konsole/source/po/sk/konsole.po @@ -6,21 +6,21 @@ # Michal Sulek , 2009, 2010, 2011. # Richard Frič , 2012. # SPDX-FileCopyrightText: 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2021, 2022, 2023 Roman Paholík -# SPDX-FileCopyrightText: 2018, 2019, 2020, 2021, 2022, 2024 Matej Mrenica +# Matej Mrenica , 2018, 2019, 2020, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-26 11:58+0200\n" -"Last-Translator: Matej Mrenica \n" -"Language-Team: Slovak \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2023-12-12 19:29+0100\n" +"Last-Translator: Roman Paholik \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 24.08.0\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 23.08.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -56,7 +56,7 @@ msgstr "Pohľad" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Rozdeliť pohľad" @@ -92,7 +92,7 @@ msgid "S&crollback" msgstr "&Rolovanie" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Panel nástrojov sedenia" @@ -110,11 +110,10 @@ msgid "json layoutfile to be loaded to use for new Konsole instance" msgstr "Súbor json s rozložením, ktoré sa použije pre novú inštanciu Konsole" #: Application.cpp:55 -#, fuzzy, kde-format -#| msgid "Create a new profile based on the selected profile" +#, kde-format msgctxt "@info:shell" msgid "Use the built-in profile instead of the default profile" -msgstr "Vytvoriť nový profil založený na vybranom profile" +msgstr "Použiť vstavaný profil namiesto predvoleného profilu" #: Application.cpp:56 #, kde-format @@ -175,46 +174,58 @@ msgstr "Skryť panel ponuky, prepísať predvolené nastavenie" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Zobraziť všetky panely nástrojov, prepísať predvolené nastavenie" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Skryť všetky panely nástrojov, prepísať predvolené nastavenie" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Zobraziť panel kariet, prepísať predvolené nastavenie" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Skryť panel kariet, prepísať predvolené nastavenie" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Spustiť Konsole v režime celej obrazovky" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Zakázať priehľadné pozadia, aj keď ich systém podporuje." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Zoznam dostupných profilov" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Zobraziť všetky vlastnosti profilu a ich typ (na použitie s -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Zmení hodnotu vlastnosti profilu." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -224,7 +235,7 @@ msgstr "" "Príkaz na vykonanie. Táto voľba zachytí všetky nasledovné argumenty, takže " "použite ju ako poslednú voľbu." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -234,13 +245,13 @@ msgstr "" "Vynútiť opätovné použitie existujúcej inštancie, aj keď sa tým naruší " "funkčnosť, napr. --new-tab. Väčšinou na ladenie." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenty zadané príkazu" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -258,157 +269,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Popredie" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Pozadie" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Farba 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Farba 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Farba 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Farba 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Farba 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Farba 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Farba 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Farba 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Popredie (intenzívne)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Pozadie (intenzívne)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Farba 1 (intenzívna)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Farba 2 (intenzívna)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Farba 3 (intenzívna)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Farba 4 (intenzívna)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Farba 5 (intenzívna)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Farba 6 (intenzívna)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Farba 7 (intenzívna)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Farba 8 (intenzívna)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Popredie (slabé)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Pozadie (slabé)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Farba 1 (slabá)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Farba 2 (slabá)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Farba 3 (slabá)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Farba 4 (slabá)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Farba 5 (slabá)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Farba 6 (slabá)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Farba 7 (slabá)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Farba 8 (slabá)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -608,16 +619,15 @@ msgstr "Žiadna mierka" #. i18n: ectx: property (text), widget (QLabel, wallpaperFlipLabel) #: colorscheme/ColorSchemeEditor.ui:205 -#, fuzzy, kde-format -#| msgid "Wallpaper scaling:" +#, kde-format msgid "Wallpaper flip:" -msgstr "Mierka tapety:" +msgstr "Prevrátiť tapetu:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:213 #, kde-format msgid "NoFlip" -msgstr "" +msgstr "BezPreklopenia" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:218 @@ -647,7 +657,7 @@ msgstr "Horizontálna kotva:" #: colorscheme/ColorSchemeEditor.ui:266 #, kde-format msgid "Left" -msgstr "Ľavá strana" +msgstr "Ľavá" #. i18n: ectx: property (text), widget (QLabel, wallpaperVerticalAnchorLabel) #: colorscheme/ColorSchemeEditor.ui:277 @@ -666,6 +676,38 @@ msgstr "Hore" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Hostiteľ" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "Podpora kontajnerov nie je dostupná, keď Konsole beží vo Flatpaku." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [Predvolené]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -691,8 +733,7 @@ msgid "Deselect All" msgstr "Zrušiť výber" #: filterHotSpots/ColorFilterHotSpot.cpp:84 -#, fuzzy, kde-format -#| msgid "Preview:" +#, kde-format msgctxt "Caption of hover tooltip" msgid "Color Preview" msgstr "Náhľad:" @@ -712,7 +753,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopírovať umiestnenie" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Generujem náhľad" @@ -743,13 +784,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Vybrať písmo" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Zobraziť všetky písma" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -789,17 +830,17 @@ msgstr "Kombinácia kláves" msgid "Output" msgstr "Výstup" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nový zoznam klávesových skratiek" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Upraviť zoznam klávesových skratiek" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Schéma priradenia klávesov nemôže byť uložená s prázdnym popisom." @@ -807,7 +848,7 @@ msgstr "Schéma priradenia klávesov nemôže byť uložená s prázdnym popisom #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -841,225 +882,225 @@ msgstr "Vstup:" msgid "Output:" msgstr "Výstup:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulátor terminálu" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Vývojári Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Všeobecný správca, opravy chýb a všeobecné vylepšenia" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Predošlý správca, port na KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Pôvodný autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "+Všeobecný správca, opravy chýb a všeobecné vylepšenia" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Opravy chýb a všeobecné vylepšenia" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Opravy chýb a významné vylepšenia" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "+Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Všeobecné vylepšenia" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Opravy chýb" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Podpora pre Solaris a históriu" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Opravy chýb a vylepšená rýchlosť spúšťania" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Vylepšenie označovania" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1069,13 +1110,13 @@ msgstr "" "Vložená Konsole\n" "Panel nástrojov a názvy sedení" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1085,25 +1126,25 @@ msgstr "" "Vložená Konsole\n" "Všeobecné vylepšenia" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vizuálne efekty" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1113,202 +1154,205 @@ msgstr "" "Kód z projektu kvt\n" "Všeobecné vylepšenia" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Vylepšenia schém a výberu textu" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Port pre SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Port pre FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Poďakovanie veľa ďalším.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nová karta" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Klonovať kartu" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Nové okno" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zavrieť okno" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Záložky" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Farebná schéma okna" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Spravovať profily..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktivovať ponuku" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." -msgstr "Uložiť rozloženie kariet..." +msgstr "Uložiť rozloženie kariet do súboru" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." -msgstr "Načítať rozloženie kariet..." +msgstr "Načítať rozloženie kariet zo súboru" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" -msgstr[0] "V tomto okne beží proces. Stále chcete skončiť?" -msgstr[1] "V tomto okne bežia %1 procesy. Stále chcete skončiť?" -msgstr[2] "V tomto okne beží %1 procesov. Stále chcete skončiť?" +msgstr[0] "" +"Existuje a process running in this window. Do you still want to quit?" +msgstr[1] "" +"Existujú %1 processes running in this window. Do you still want to quit?" +msgstr[2] "" +"Existujú %1 processes running in this window. Do you still want to quit?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Potvrdiť zatvorenie" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Zavrieť okno" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zatvoriť aktuálnu kartu" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "V tomto okne je %1 otvorených terminálov. Stále chcete skončiť?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profily" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Všeobecné" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Pamäť" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Panel kariet / Oddeľovače" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Dočasné súbory" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Náhľady" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1392,7 +1436,7 @@ msgstr "Uložiť" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Aktualizovať" @@ -1404,27 +1448,27 @@ msgid "Cancel" msgstr "Zrušiť" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Rýchle príkazy" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Zobraziť rýchly prístup" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" -msgstr "" +msgstr "No quick commands found. Môžete add one on Plugins -> Quick Commands" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" -msgstr "Doplnky - Rýchle príkazy" +msgstr "Doplňky - rýchle príkazy" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Zobraziť rýchle príkazy" @@ -1438,15 +1482,12 @@ msgstr "Existuje duplikát položky" #: plugins/QuickCommands/quickcommandswidget.cpp:183 #, kde-format msgid "Please fix all the warnings before trying to run this script" -msgstr "" +msgstr "Please fix all the warnings before trying to run this script" #: plugins/QuickCommands/quickcommandswidget.cpp:215 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "" -#| "There are %1 open terminals in this window. Do you still want to quit?" +#, kde-format msgid "There are some errors on the script, do you really want to run it?" -msgstr "V tomto okne je %1 otvorených terminálov. Stále chcete skončiť?" +msgstr "V skripte sú nejaké chyby, naozaj ho chcete spustiť?" #: plugins/QuickCommands/quickcommandswidget.cpp:216 #, kde-format @@ -1469,7 +1510,7 @@ msgstr "" " s viacerými konfiguráciami, ste si istí?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Chystáte sa odstrániť %1, chcete pokračovať?" @@ -1522,11 +1563,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 je priečinok pre záznamy SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH Nastavenia" @@ -1549,23 +1590,22 @@ msgstr "Zobraziť správcu SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:115 #, kde-format msgid "Show Quick Access for SSH Actions" -msgstr "" +msgstr "Show Quick Access for SSH Actions" #: plugins/SSHManager/sshmanagerplugin.cpp:146 #, kde-format msgid "No saved SSH config found. You can add one on Plugins -> SSH Manager" -msgstr "" +msgstr "No saved SSH config found. Môžete add one on Plugins -> SSH Manager" #: plugins/SSHManager/sshmanagerplugin.cpp:147 -#, fuzzy, kde-format -#| msgid "Open File Manager" +#, kde-format msgid "Plugins - SSH Manager" -msgstr "Otvoriť správcu súborov" +msgstr "Doplňky - správca SSH" #: plugins/SSHManager/sshmanagerplugin.cpp:153 #, kde-format msgid "SSH Entries" -msgstr "SSH Položky" +msgstr "SSH Entries" #: plugins/SSHManager/sshmanagerplugin.cpp:182 #, kde-format @@ -1589,24 +1629,24 @@ msgstr "" "Nie je možné vydať príkaz SSH mimo aplikácie shell (napr. bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH kľúč" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Vymazať" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" -msgstr "Nemeniť" +msgstr "Don't Change" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1615,70 +1655,70 @@ msgstr "" "Chystáte sa odstrániť priečinok %1,\n" " s viacerými konfiguráciami SSH, chcete pokračovať?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Odstrániť SSH konfigurácie" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." -msgstr "" +msgstr "Imported SSH Profile
              Some settings are read only." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Chýbajúce Hostname" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Chýbajúci názov" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Ak je nastavená možnosť Používať ssh nastavenia, nezadávajte sshkey ani " "používateľské meno." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Aspoň používateľské meno alebo SSHKey musí byť nastavené" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Chýbajúci priečinok" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "+" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Nie je možné odstrániť tento priečinok" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Odstrániť priečinok a celý jeho obsah" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Dvojklikom zmeníte názov priečinku" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Automaticky pridanú položku nemôžete odstrániť." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Odstrániť vybranú položku" @@ -1699,13 +1739,13 @@ msgstr "Zobrazenie záznamov, ktoré nezodpovedajú filtru" #: plugins/SSHManager/sshwidget.ui:57 #, kde-format msgid "Change profile on connect/disconnect" -msgstr "" +msgstr "Change profile on connect/disconnect" #. i18n: ectx: property (text), widget (QCheckBox, btnManageProfile) #: plugins/SSHManager/sshwidget.ui:60 #, kde-format msgid "Manage profile" -msgstr "Spravovať profil" +msgstr "Spravovať profily" #. i18n: ectx: property (text), widget (QLabel, label_2) #: plugins/SSHManager/sshwidget.ui:82 @@ -1871,25 +1911,25 @@ msgstr "Možnosti výstupu" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Režim tlače (čierny text, bez pozadia)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Škálovať výstup" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Zabudované" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Štandardný profil" @@ -1898,7 +1938,7 @@ msgstr "Štandardný profil" #, kde-format msgctxt "New profile name, %1 is a number" msgid "Profile %1" -msgstr "Profil %1" +msgstr "Profile %1" #: profile/ProfileManager.cpp:294 #, kde-format @@ -1935,7 +1975,7 @@ msgstr " [Predvolené]" #, kde-format msgctxt "@info:tooltip" msgid "Built-in profile is always available" -msgstr "" +msgstr "Built-in profile is always available" #: profile/ProfileModel.cpp:111 #, kde-format @@ -1948,17 +1988,39 @@ msgstr "Dvakrát kliknite na zmenu skratky" msgid "Tab Properties" msgstr "Vlastnosti karty" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Uložiť výstup z %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 nie je platná URL, výstup sa nepodarilo uložiť." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Nepodarilo sa create autosave file at %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Stopping autosave kvôli switching of screens." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Autosave file has been modified externally, preventing further autosaves." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Nepodarilo sa update autosave state on output changes." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1994,81 +2056,98 @@ msgstr "Vánok" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tmavé pastely" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zelená na čiernom" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Farby Linuxu" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Červená na čiernom" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarizované svetlo" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Biela na čiernom" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Štandardné (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linuxová konzola" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris konzola" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Hľadať:" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Sem zadajte názov karty, ktorú chcete hľadať" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Zvonček v '%1' (Sedenie '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Nepodarilo sa nájsť program: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Upozornenie: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Nepodarilo sa nájsť interaktívny shell." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2077,397 +2156,399 @@ msgstr "" "Nepodarilo sa nájsť '%1', miesto toho sa spúšťa '%2'. Skontrolujte " "nastavenie profilu." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Nepodarilo sa spustiť program '%1' s argumentami '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Ticho v '%1' (Sedenie '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" -msgstr "Zavrieť sedenie" +msgstr "Zobraziť sedenie" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Metódy D-Bus sendText/runCommand sa práve použili. Existujú bezpečnostné " -"výhrady ohľadom povolenia týchto metód verejnostiAk je to želané, tieto " -"metódy sa môžu zmeniť len na vnútorné použitie iba rekompiláciou Konsole." -"

              Toto upozornenie sa zobrazí iba raz pre túto inštanciu Konsole.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Dokončené" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program '%1' spadol." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program '%1' ukončený so stavom %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem priebeh" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivita v '%1' (Sedenie '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "Security sensitive DBus API is disabled in the settings." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Proces '%1' bol ukončený v sedení '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole nevie ako má otvoriť záložku: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Hľadať '%1' pomocou" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Nastaviť webové skratky..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Zavrieť sedenie" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Otvoriť správcu súborov" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopírovať" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Rozdeliť pohľad vertikálne" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Rozdeliť pohľad horizontálne" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" -msgstr "" +msgstr "Copy except prompts" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopírovať vstup používateľa" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopírovať výstup príkazu" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Vložiť výber" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Vyhľadať na webe" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Vybrať &všetko" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" -msgstr "Vybrať riadok" +msgstr "Vybrať &režim" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Vybrať riadok" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Uložiť výstup &ako..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Automaticky uložiť výstup ako..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Stop Auto Save" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Tlačiť obrazovku..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Upraviť rolovanie späť..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Vyčistiť rolovanie" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Vyčistiť rolovanie a obnoviť" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" -msgstr "Ďalší profil" +msgstr "Nasledujúci profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Predchádzajúci profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Prepnúť profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Nastaviť &kódovanie" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Povoliť sledovanie myši" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Iba na čítanie" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Nestaviť alebo premenovať kartu..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Všetky karty v aktuálnom okne" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Vybrať &karty..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "Žiad&ne" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopírovať vstup do" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem odoslanie..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" -msgstr "" +msgstr "One-Shot Monitors" -#: session/SessionController.cpp:877 -#, fuzzy, kde-format -#| msgid "Monitor for &Activity" +#: session/SessionController.cpp:913 +#, kde-format msgid "Monitor for &Prompt" -msgstr "Monitorovať &aktivitu" +msgstr "Monitorovať &výzvu" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Monitorovať &aktivitu" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Monitorovať &nečinnosť" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Monitorovať ukončenie procesov" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Zväčšiť písmo" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Zmenšiť písmo" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Vynulovať Veľkosť Písma" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Poslať signál" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Pozastaviť úlohu" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Pokračovať úlohu" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Zavesiť" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Prerušiť úlohu" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Ukončiť úlohu" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Zabiť úlohu" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Používateľský signál 1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Používateľský signál 2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Vytvoriť nový profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Upraviť aktuálny profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "V tomto sedení práve beží program. Naozaj chcete skončiť?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "V tomto sedení práve beží program '%1'. Naozaj chcete skončiť?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potvrdiť zatvorenie" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Zatvoriť program" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "Program v tomto sedení nezomrie. Určite ho chcete nasilu zabiť?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "Program '%1' v tomto sedení nezomrie. Určite ho chcete nasilu zabiť?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Zabiť program" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" -msgstr "" +msgstr "The shell prompt is displayed in session '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Otvoriť aktuálny priečinok s" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Uložiť ZModem sťahovanie do..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2478,13 +2559,13 @@ msgstr "" "žiadny vhodný ZModem softvér.

              Asi bude potrebné nainštalovať balíček " "'rzsz' alebo 'lrzsz'.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Aktuálne sedenie už má spustený ZModem prenos súborov.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2493,7 +2574,7 @@ msgstr "" "

              V systéme nebol nájdený žiadny vhodný ZModem softvér.

              Asi bude " "potrebné nainštalovať balíček 'rzsz' alebo 'lrzsz'.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Vyberte súbory pre ZModem odoslanie" @@ -2516,144 +2597,169 @@ msgctxt "@title:window" msgid "Configure" msgstr "Nastaviť" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Hľadať:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Povoliť akcelerátory ponuky" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Ak je povolené, nastavenia profilu budú ignorované" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Pamätať si veľkosť okna" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Zobraziť názov okna v záhlaví" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Zamerať terminál, keď nad nimi presuniete kurzor myši" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Hľadať pomocou regulárnych výrazov" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Pri spustení Konsole znovu použi existujúci proces, ak je to možné" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Spustiť všetky okná Konsole v jednom procese" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Zvýrazniť všetky zhody" +msgid "If enabled, profile settings will be ignored" +msgstr "Ak je povolené, nastavenia profilu budú ignorované" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Nastavuje, či sa má rozlišovať veľkosť písmen" +msgid "Remember window size" +msgstr "Pamätať si veľkosť okna" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Rozlišovať veľkosť písmen" +msgid "Force new tabs" +msgstr "Vynútiť nové karty" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Odstrániť záhlavie a rám okna" +msgid "Listen for ZModem terminal codes" +msgstr "Listen for ZModem terminal codes" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Proces a okno:" +msgid "Show progress in taskbar" +msgstr "Show progress in taskbar" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Upozornenia:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Všetky dialógy sa zobrazia znova" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Povoliť správy \"Nepýtať sa znova\"" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Nastaví, či hľadanie má začať od konca" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Spätné vyhľadávanie" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Nastavuje, či sa má rozlišovať veľkosť písmen" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Rozlišovať veľkosť písmen" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Proces a okno:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Zvýrazniť všetky zhody" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Hľadať:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 +#, kde-format msgid "Sets whether search should stop instead of wrapping" -msgstr "Nastaví, či hľadanie má začať od konca" +msgstr "Nastaví, či hľadanie má zastaviť namiesto opakovania" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" -msgstr "" +msgstr "No wrap" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Povoliť akcelerátory ponuky" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Zamerať terminál, keď nad nimi presuniete kurzor myši" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Všetky dialógy sa zobrazia znova" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Povoliť správy \"Nepýtať sa znova\"" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Zobraziť názov okna v záhlaví" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Enable the security sensitive parts of the DBus API" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Odstrániť záhlavie a rám okna" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Hľadať pomocou regulárnych výrazov" #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 @@ -2680,196 +2786,245 @@ msgstr "Použiť aktuálnu veľkosť okna pri ďalšom spustení" msgid "The window size will be saved upon exiting Konsole" msgstr "Veľkosť okna bude uložená pri ukončení Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Pri spustení Konsole vytvoriť novú kartu namiesto nových okien, ak je to " +"možné" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Show progress in task bar" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "When a script reports its progress, it will be shown in the task bar" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "DBus API like runCommand will be enabled" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Listen for ZModem Terminal codes" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Automatic send/receive files over serial connections" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Šírka náhľadu" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Nastaví šírku náhľadu" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Použiť Shift na zobrazenie náhľadu" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Použiť Alt na zobrazenie náhľadu" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" -msgstr "Použiť Alt na zobrazenie náhľadu" +msgstr "Použiť Ctrl na zobrazenie náhľadu" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Hľadanie je citlivé na veľkosť písmen" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Zvýrazniť všetky zhody hľadania" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Nastavuje, či má byť zodpovedajúci text zvýraznený" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" -msgstr "" +msgstr "Search stops namiesto wrapping" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" -msgstr "" +msgstr "Control whether child cgroups are created for individual tabs" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" msgstr "" +"Determines the memory consumption level above which throttling will start" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Ovládať viditeľnosť celého panelu kariet" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Ovládať veľkosť rukoväte medzi panelmi" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Ovládať polohu panelu kariet" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Ovládač vizuálny štýl panelu kariet" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Použiť používateľom definovaný .css súbor pre panel kariet" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr ".css súbor na použitie pre štýl panelu kariet" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Povoliť zatvorenie karty stredným tlačidlom" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Ovládať viditeľnosť tlačidla \"Nová karta\" na paneli kariet" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Ovládať viditeľnosť tlačidla „Hľadať karty” na paneli kariet" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Ovládať kde sa zobrazí tlačidlo \"Zatvoriť kartu\"" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Ovládať kde vložiť novú kartu" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Rozšíriť výšku kariet" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Pre scrollback súbory použiť systémové umiestnenie priečinka" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" "Pre scrollback súbory použiť používateľovo špecifické umiestnenie priečinka" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Pre scrollback súbory použiť špecifické umiestnenie priečinka" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Pre scrollback súbory použiť tento priečinok" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 -#, fuzzy, kde-format -#| msgid "Tab Monitoring" +#, kde-format msgid "Enable memory monitoring:" -msgstr "Monitorovanie kariet" +msgstr "Povoliť monitorovanie pamäte:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" +"Zmeny sa prejavia po reštarte. Ak je povolené, dlhotrvajúca spotreba pamäte " +"aplikáciou Konsole presahujúca zadanú hodnotu spôsobí, že systemd-oomd " +"odstráni karty obsahujúce procesy náročné na pamäť. Poznámka: povolenie môže " +"spôsobiť väčšie spomalenia počas vysokej spotreby pamäte a zadanie príliš " +"nízkych hodnôt môže napriek tomu spôsobiť ukončenie aplikácie Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Limit pamäte:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -2994,17 +3149,15 @@ msgstr "Pod oblasťou terminálu" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the left of terminal area" -msgstr "Pod oblasťou terminálu" +msgstr "Naľavo od oblasti terminálu" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Be&low terminal area" +#, kde-format msgid "To the &right of terminal area" -msgstr "Pod oblasťou terminálu" +msgstr "Napravo od oblasti terminálu" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 @@ -3031,125 +3184,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Žiadne" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Zobraziť tlačidlo Hľadať karty:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Vždy" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nikdy" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Rôzne:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Zobraziť tlačidlo \"Nová karta\"" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Roztiahnuť jednotlivé šírky kariet na celé okno" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Použiť vlastný štýl:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(žiadne)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Správanie" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" -msgstr "Ukladať nové záložky:" +msgstr "Umiestniť nové karty:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Na konci" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Za aktuálnu kartu" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Zatvoriť kartu stredným tlačidlom" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Rozdelenia" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Zobraziť hlavičku:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Podľa potreby" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nikdy" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Veľkosť rukoväte potiahnutia:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Malá" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Stredná" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Veľká" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3201,8 +3372,8 @@ msgstr "px" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Ak chcete používať túto funkciu, povoľte Myš->Rôzne->Podčiarkovať

              Complex Text Layout

              " -msgstr "" +msgstr "

              Complex Text Layout

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" -msgstr "" +msgstr "Complex Text Layout" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 -#, fuzzy, kde-format -#| msgid "Bi-Directional text rendering" +#: widgets/EditProfileAppearancePage.ui:887 +#, kde-format msgid "Enable word mode text rendering" -msgstr "Povoliť obojsmerné vykresľovanie textu" +msgstr "Povoliť vykresľovanie textu v režime slov" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" -msgstr "" +msgstr "Word mode" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " "when rendering)" msgstr "" +"Ignore attribute changes mid-word (otherwise, attribute changes break word " +"when rendering)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" -msgstr "" +msgstr "Use rovnaký attributes for whole word" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" -msgstr "" +msgstr "Render words of ASCII characters together" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 -#, fuzzy, kde-format -#| msgid "Word characters:" +#: widgets/EditProfileAppearancePage.ui:922 +#, kde-format msgid "ASCII characters " -msgstr "Znaky slova:" +msgstr "Znaky ASCII:" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" -msgstr "" +msgstr "Render words of Brahmic scripts characters together" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 -#, fuzzy, kde-format -#| msgid "Match current character" +#: widgets/EditProfileAppearancePage.ui:938 +#, kde-format msgid "Brahmic scripts characters" -msgstr "Nastaviť farbu kurzora podľa aktuálneho znaku" +msgstr "Znaky Brahmic skriptov" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 -#, fuzzy, kde-format -#| msgid "Font:" +#: widgets/EditProfileAppearancePage.ui:951 +#, kde-format msgid "Emoji Font:" -msgstr "Písmo:" +msgstr "Písmo emoji:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4203,97 +4394,95 @@ msgstr "" "Perzštinu alebo Hebrejčinu)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Povoliť obojsmerné vykresľovanie textu" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" -msgstr "" +msgstr "Lines are always LTR, namiesto determined by first strong character" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" -msgstr "" +msgstr "force LTR line direction" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." -msgstr "" +msgstr "Treat table drawing characters as strong LTR." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" -msgstr "" +msgstr "Table characters BiDi mode override" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 -#, fuzzy, kde-format -#| msgctxt "@action:button" -#| msgid "Paste &without control characters" +#: widgets/EditProfileAppearancePage.ui:1025 +#, kde-format msgid "Ignore wcwidth of problematic characters" -msgstr "Prilepiť bez netlačiteľných znakov" +msgstr "Ignorovať wcwidth problematických znakov" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" -msgstr "" +msgstr "Override wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Upraviť profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Všeobecné" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Karty" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Vzhľad" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Rolovanie" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klávesnica" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Klávesové skratky" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Myš" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Pokročilé" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4305,7 +4494,7 @@ msgstr "" "> Zmeňte povolenia tohto súboru alebo nastavte iný názov, aby sa nastavenia " "uložili do nového profilu." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4313,43 +4502,48 @@ msgstr "" "Názov profilu bol prázdny; prosím nastavte názov aby ste mohli uložiť " "nastavenia" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Profil s názvom „%1“ už existuje." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." -msgstr "" +msgstr "Profile name exceeded maximum allowed length (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." -msgstr "" +msgstr "The highlighted characters are invalid in profile names: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" -msgstr[0] "Úprava profilu: %2" -msgstr[1] "Úprava %1 profilov: %2" -msgstr[2] "Úprava %1 profilov: %2" +msgstr[0] "Editing profile: %2" +msgstr[1] "Editing %1 profiles: %2" +msgstr[2] "Editing %1 profiles: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Vytvoriť nový profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Upraviť profil \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Žiadne" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4360,7 +4554,7 @@ msgstr[0] "stĺpec" msgstr[1] "stĺpce" msgstr[2] "stĺpcov" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4371,43 +4565,43 @@ msgstr[0] "riadok" msgstr[1] "riadky" msgstr[2] "riadkov" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Systémový zvonček" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Systémové upozornenia" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Vizuálny k zvonček" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorovať udalosti zvončeka" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" "Nastaviť vybraný profil ako štandardný pre nové terminálové sedenia v %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Upraviť prostredie" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Jedna premenná prostredia na riadok" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4416,23 +4610,23 @@ msgstr[0] " sekunda" msgstr[1] " sekundy" msgstr[2] " sekúnd" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Vyberte počiatočný adresár" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Získať Nové..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Schému %1 sa nepodarilo načítať." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4441,7 +4635,7 @@ msgstr "" "Táto farebná schéma používa priehľadné pozadie, ktoré vaša plocha zrejme " "nepodporuje." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4450,13 +4644,12 @@ msgstr "" "Konsole bola spustená pred povolením efektov plochy. Musíte reštatovať " "Konsole, aby ste videli transparentné pozadie." -#: widgets/EditProfileDialog.cpp:1913 -#, fuzzy, kde-format -#| msgid "Default profile" +#: widgets/EditProfileDialog.cpp:1995 +#, kde-format msgid "Default for file type" -msgstr "Štandardný profil" +msgstr "Predvolené pre typ súboru" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4485,7 +4678,7 @@ msgstr "" "bude ignorované a súbor bude otvorený predvoleným textovým\n" "editorom." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Vlastný príkaz textového editora" @@ -4572,26 +4765,55 @@ msgstr "Vyberte počiatočný adresár" msgid "Start in same directory as current session" msgstr "Začať v rovnakom adresári ako aktuálne sedenie" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Pri otvorení novej karty alebo rozdelenia automaticky vstúpiť do rovnakého " +"kontajnera (Toolbox, Distrobox) ako aktuálna relácia" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Vstúpiť do rovnakého kontajnera ako aktuálne sedenie" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Always start in container:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "Always start new sessions using this profile inside vybraný container" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Prostredie:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Upravte zoznam premenných prostredia a pridelených hodnôt" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Počiatočná veľkosť terminálu:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4604,31 +4826,31 @@ msgstr "" "zakázané, aby tieto položky fungovali.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" -msgstr "&Režim zvončeku terminálu" +msgstr "Režim zvončeku terminálu" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Sémantická integrácia" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" -msgstr "" +msgstr "Up/Down Arrows emulation" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" -msgstr "" +msgstr "Mouse click in input line moves cursor" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Sémantické nápovedy:" @@ -4638,9 +4860,9 @@ msgstr "Sémantické nápovedy:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4651,52 +4873,50 @@ msgstr "Nikdy" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" -msgstr "" +msgstr "When URL hints show" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Vždy" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" -msgstr "" +msgstr "Red error bars:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 -#, fuzzy, kde-format -#| msgid "Blur background" +#: widgets/EditProfileGeneralPage.ui:547 +#, kde-format msgid "Red error background:" -msgstr "Rozmazať pozadie" +msgstr "Červené pozadie chyby:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" -msgstr "" +msgstr "Alternating bars:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 -#, fuzzy, kde-format -#| msgid "Blur background" +#: widgets/EditProfileGeneralPage.ui:639 +#, kde-format msgid "Alternating background:" -msgstr "Rozmazať pozadie" +msgstr "Striedajúce sa pozadie:" #. i18n: ectx: property (text), widget (QLabel, note) #: widgets/EditProfileKeyboardPage.ui:17 @@ -4779,7 +4999,7 @@ msgstr "Výber trojkliku:" #: widgets/EditProfileMousePage.ui:104 #, kde-format msgid "&The whole line" -msgstr "&Celý aktuálny riadok" +msgstr "Celý aktuálny riadok" #. i18n: ectx: property (text), widget (QRadioButton, tripleClickSelectsFromMousePosition) #: widgets/EditProfileMousePage.ui:114 @@ -4840,14 +5060,14 @@ msgstr "Kopírovať text ako HTML" #, kde-format msgid "Trim leading spaces in selected text, useful in some instances" msgstr "" -"Odstrihnúť koncové medzery vo vybranom texte, užitočné v niektorých " +"Odstrihnút počiatočné medzery vo vybratom texte, užitočné v niektorých " "inštanciách" #. i18n: ectx: property (text), widget (QCheckBox, trimLeadingSpacesButton) #: widgets/EditProfileMousePage.ui:219 #, kde-format msgid "Trim leading spaces" -msgstr "Odstrihnúť koncové medzery" +msgstr "Odstrihnút počiatočné medzery" #. i18n: ectx: property (toolTip), widget (QCheckBox, trimTrailingSpacesButton) #: widgets/EditProfileMousePage.ui:226 @@ -5052,115 +5272,127 @@ msgid "Scrollback:" msgstr "Rolovanie:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "O koľko rolovať stranu hore/dolu:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Zvýrazniť riadky prichádzajúce do zobrazenia" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Skrytý" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Size of each marker (as a percentage of scrollbar length):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Zvýrazňovanie:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rolovať stranu polovičnou výškou okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Polovica výšky strany" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Color of scrollbar markers:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Color of scrollbar search highlighting lines:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Pretiecť riadky:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rolovať stranu plnou výškou okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Celá výška strany" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Pozícia posuvníka:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Zobraziť posuvník na pravej strane terminálového okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Pravá strana" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Zobraziť posuvník na ľavej strane terminálového okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" -msgstr "&Ľavá strana" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Skrytý" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Zvýrazňovanie:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Zvýrazniť riadky prichádzajúce do zobrazenia" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Pretiecť riadky:" +msgstr "Ľavá strana" #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Pretiecť riadky keď terminál zmení veľkosť" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +msgid "Scrollbar position:" +msgstr "Pozícia posuvníka:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "" +msgid "Search highlighting line opacity:" +msgstr "Search highlighting line opacity:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5251,7 +5483,7 @@ msgstr "Zapamätať celý výstup z terminálu" #, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "&Neobmedzené" +msgstr "Neobmedzené" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5264,39 +5496,39 @@ msgstr "Nepamätať si predošlý výstup" #, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" -msgstr "Ži&adne" +msgstr "Žiad&ne" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Nájsť..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Sem zadajte text, ktorý chcete hľadať" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Nasledujúci" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Nájde nasledujúci výskyt aktuálnej hľadanej frázy" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Predchádzajúci" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5304,78 +5536,77 @@ msgstr "Nájde predchádzajúci výskyt aktuálnej hľadanej frázy" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Zobraziť ponuku možností" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zavrieť panel hľadania" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Rozlišovať veľkosť písmen" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Nastavuje, či sa má rozlišovať veľkosť písmen" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Zobraziť ponuku možností" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zavrieť panel hľadania" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Reg. výraz" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Zvýrazniť všetky zhody" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Nastavuje, či má byť zodpovedajúci text zvýraznený" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Spätné vyhľadávanie" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Nastaví, či hľadanie má začať od konca" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" -msgstr "" +msgstr "No wrap" -#: widgets/IncrementalSearchBar.cpp:142 -#, fuzzy, kde-format -#| msgid "Sets whether search should start from the bottom" +#: widgets/IncrementalSearchBar.cpp:149 +#, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Nastaví, či hľadanie má začať od konca" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Hľadať aktuálnu hľadanú frázu od konca" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5386,7 +5617,7 @@ msgstr "Hľadať aktuálnu hľadanú frázu od začiatku" msgid "Print Shell" msgstr "Tlačiť Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5412,7 +5643,7 @@ msgstr "Formát titulku vzdialenej karty:" #: widgets/RenameTabWidget.ui:79 #, kde-format msgid "&Tab title format:" -msgstr "&Formát titulku karty:" +msgstr "Formát titulku karty:" #. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit) #: widgets/RenameTabWidget.ui:98 @@ -5426,6 +5657,12 @@ msgstr "Formát titulku normálnej karty" msgid "Tab Co&lor:" msgstr "Farba karty:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Farba karty &aktivity:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5519,36 +5756,57 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Obnoviť terminál" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Otvoriť novú kartu" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Hľadať karty" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Zatvoriť túto kartu" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "O&dpojiť kartu" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Nestaviť alebo premenovať kartu..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Zavrieť kartu" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Metódy D-Bus sendText/runCommand sa práve použili. Existujú bezpečnostné " +#~ "výhrady ohľadom povolenia týchto metód verejnostiAk je to želané, tieto " +#~ "metódy sa môžu zmeniť len na vnútorné použitie iba rekompiláciou Konsole." +#~ "

              Toto upozornenie sa zobrazí iba raz pre túto inštanciu Konsole.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Rozlišovať veľkosť písmen" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Žiadne" @@ -5560,13 +5818,11 @@ msgstr "&Zavrieť kartu" #~ msgstr "text/css" #, fuzzy -#~| msgid "Save File" #~ msgctxt "@title:window" #~ msgid "Save File" #~ msgstr "+Otvoriť súbor" #, fuzzy -#~| msgid "Open File" #~ msgctxt "@title:window" #~ msgid "Open File" #~ msgstr "Otvoriť súbor" @@ -5617,7 +5873,6 @@ msgstr "&Zavrieť kartu" #~ "

              Každý profil musí mať názov predtým, ako sa môže uložiť na disk.

              " #, fuzzy -#~| msgid " (Default)" #~ msgctxt "@label:textbox Name of the current default profile" #~ msgid " (Default)" #~ msgstr " (Predvolené)" @@ -5683,8 +5938,6 @@ msgstr "&Zavrieť kartu" #~ msgid "Vary the background color for each tab" #~ msgstr "Meniť farbu pozadia pre každú kartu" -#~| msgctxt "@action Shortcut entry" -#~| msgid "Maximize current Terminal" #~ msgctxt "@action:itooltip" #~ msgid "Maximize / Restore Terminal" #~ msgstr "Maximalizovať / Obnoviť terminál" @@ -5919,15 +6172,11 @@ msgstr "&Zavrieť kartu" #~ msgstr "Kliknite na premenovanie profilu" #, fuzzy -#~| msgctxt "@title" -#~| msgid "Konsole" #~ msgctxt "@title" #~ msgid "Demo KonsolePart" #~ msgstr "Konsole" #, fuzzy -#~| msgctxt "@info:credit" -#~| msgid "(c) 1997-2017, The Konsole Developers" #~ msgctxt "@info:credit" #~ msgid "(c) 2017, The Konsole Developers" #~ msgstr "(c) 1997-2017, Vývojári Konsole" diff --git a/local/recipes/kde/konsole/source/po/sl/konsole.po b/local/recipes/kde/konsole/source/po/sl/konsole.po index c996736ce6..962754398c 100644 --- a/local/recipes/kde/konsole/source/po/sl/konsole.po +++ b/local/recipes/kde/konsole/source/po/sl/konsole.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-18 06:38+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-20 07:36+0100\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" "Language: sl\n" @@ -27,7 +27,7 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" "Translator: Andrej Mernik \n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.8\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -61,7 +61,7 @@ msgstr "Pogled" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Razdeli pogled" @@ -97,7 +97,7 @@ msgid "S&crollback" msgstr "Po&mnilnik vrstic" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Vrstica seje" @@ -180,47 +180,59 @@ msgstr "Skrije menijsko vrstico ne glede na privzeto nastavitev" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Pokaže vse orodne vrstice in preglasi privzeto nastavitev" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Skrije vse orodne vrstice in preglasi privzeto nastavitev" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Pokaže vrstico z zavihki ne glede na privzeto nastavitev" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Skrije vrstico z zavihki ne glede na privzeto nastavitev" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Zaženi Konsole v celozaslonskem načinu" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Onemogoči prosojno ozadje, četudi to sistem podpira." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Izpiše razpoložljive profile" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Izpiše seznam vseh imen lastnosti profila in njihovih tipov (za uporabo z -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Spremeni vrednost lastnosti profila." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +242,7 @@ msgstr "" "Ukaz, ki bo izveden. Ta možnost bo ujela vse naslednje argumente, zato jo " "uporabite kot zadnjo." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -240,13 +252,13 @@ msgstr "" "Prisili uporabo obstoječega pojavka, četudi se funkcionalno polomi npr. --" "new-tab. V glavnem za odpravljanje napak." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenti, podani ukazu" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -264,157 +276,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Ospredje" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Ozadje" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Barva 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Barva 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Barva 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Barva 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Barva 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Barva 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Barva 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Barva 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Ospredje (intenzivno)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Ozadje (intenzivno)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Barva 1 (intenzivna)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Barva 2 (intenzivna)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Barva 3 (intenzivna)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Barva 4 (intenzivna)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Barva 5 (intenzivna)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Barva 6 (intenzivna)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Barva 7 (intenzivna)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Barva 8 (intenzivna)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Ospredje (šibko)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Ozadje (šibko)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Barva 1 (šibka)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Barva 2 (šibka)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Barva 3 (šibka)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Barva 4 (šibka)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Barva 5 (šibka)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Barva 6 (šibka)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Barva 7 (šibka)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Barva 8 (šibka)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -669,6 +681,39 @@ msgstr "Vrh" msgid "AaZz09..." msgstr "AaŽž09 …" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Gostitelj" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Podpora za vsebnike ni na voljo, ko se Konsole izvaja znotraj Flatpaka." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsula" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [privzeto]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -714,7 +759,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiraj lokacijo" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Ustvarjam predogled" @@ -745,13 +790,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Izberi pisavo" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Pokaži vse pisave" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -791,17 +836,17 @@ msgstr "Kombinacija tipk" msgid "Output" msgstr "Izpis" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nov seznam tipkovnih bližnjic" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Uredi seznam tipkovnih bližnjic" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Sheme povezave tipk ne morem shraniti s praznim opisom." @@ -809,7 +854,7 @@ msgstr "Sheme povezave tipk ne morem shraniti s praznim opisom." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -843,225 +888,225 @@ msgstr "Vhod:" msgid "Output:" msgstr "Izpis:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Posnemovalnik terminala" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997–2022, razvijalci Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Splošni vzdrževalec, odpravljanje hroščev in splošne izboljšave" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Prejšnji vzdrževalec, predelava za KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Prvotni avtor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Večja predelava, odpravljanje hroščev in splošne izboljšave" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Odpravljanje hroščev in splošne izboljšave" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Odpravljanje hroščev in splošne izboljšave" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Splošne izboljšave" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Popravki hroščev" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Podpora Solarisu in zgodovini" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Popravki hroščev in pohitren zagon" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Izboljšave označevanja" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1071,13 +1116,13 @@ msgstr "" "Vgrajen program Konsole\n" "Orodna vrstica in imena sej" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1087,25 +1132,25 @@ msgstr "" "Vgrajen program Konsole\n" "Splošne izboljšave" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Vidni učinki" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1115,132 +1160,132 @@ msgstr "" "Koda iz projekta kvt\n" "Splošne izboljšave" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Izboljšave shem in izbora besedila" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Predelava za SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Predelava za FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Zahvala gre še mnogim drugim.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Nov zavihek" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Podvoji zavihek" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Novo okno" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zapri okno" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Zaznamki" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Barvna shema okna" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Upravljanje profilov …" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Omogoči meni" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Shrani razporeditev zavihka …" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Naloži razporeditev zavihka …" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1251,67 +1296,67 @@ msgstr[1] "V oknu teče %1 opravilo. Ali res želite končati?" msgstr[2] "V oknu tečeta %1 opravili. Ali res želite končati?" msgstr[3] "V oknu tečejo %1 opravila. Ali res želite končati?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Potrdi zaprtje" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Zapri okno" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zapri &trenutni zavihek" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "V tem oknu je %1 odprtih terminalov. Ali res želite končati?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profili" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Splošno" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Pomnilnik" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Vrstica z zavihki / Razdelilniki" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Začasne datoteke" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Predogledne sličice" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1395,7 +1440,7 @@ msgstr "Shrani" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Posodobi" @@ -1407,27 +1452,27 @@ msgid "Cancel" msgstr "Prekliči" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Hitri ukazi" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Prikaži hitri dostop" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "Ni najdenih hitrih ukazov. Lahko jih dodate v Vtičniki → Hitri ukazi" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Vtičniki – Hitri ukazi" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Prikaži hitre ukaze" @@ -1470,7 +1515,7 @@ msgstr "" "z več sestavami, ali ste prepričani?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Nameravate odstraniti %1, ali ste prepričani?" @@ -1523,11 +1568,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 je mapa za vnose SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Nastavitev SSH" @@ -1589,24 +1634,24 @@ msgid "" msgstr "Ni mogoče izdati ukaza SSH izven aplikacije shell (npr. bash, zsh,sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Ključ SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Zbriši" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ne spreminjaj" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1615,70 +1660,70 @@ msgstr "" "Nameravate odstraniti mapo %1,\n" "z več sestavami SSH, ali ste prepričani?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Zbriši sestave SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "Uvožen profil SSH
              Nekatere nastavitve so samo za branje." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Manjkajoče ime gostitelja" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Manjkajoče ime" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Če je uporabljen Ssh nastavi Config, tako da ne določen sshkey ali " "uporabniško ime." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Nastavljeno mora biti vsaj uporabniško ime ali ključ SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Manjkajoča mapa" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Seja SSH mora imeti profil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Ni mogoče zbrisati te mape" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Zbriši mapo in vso njeno vsebino" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Dvojni klik za spremembo imena mape." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Ni mogoče zbrisati samodejno dodani vnos." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Zbriši izbrani vnos" @@ -1870,25 +1915,25 @@ msgstr "Možnosti izpisa" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Prijazen način do tiskalnika (črno besedilo, brez ozadja)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Umeri izpis" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Vgrajeno" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Privzeti profil" @@ -1947,17 +1992,41 @@ msgstr "Dvokliknite, da spremenite bližnjico" msgid "Tab Properties" msgstr "Lastnosti zavihka" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Shrani izpis iz %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 ni veljaven URL. Izpisa ni bilo mogoče shraniti." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Datoteke za samodejno shranjevanje ni bilo mogoče ustvariti na %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Ustavitev samodejnega shranjevanja zaradi preklapljanja zaslonov." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Datoteka za samodejno shranjevanje je bila spremenjena od zunaj, kar " +"preprečuje nadaljnje samodejno shranjevanje." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Posodobitev stanja samodejnega shranjevanja ob spremembah izhoda ni uspela." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1993,81 +2062,98 @@ msgstr "Sapica" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Temni pasteli" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zeleno na črnem" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Barve Linuxa" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Rdeče na črnem" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Sončno" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Sončno svetla" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Belo na črnem" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Privzeta (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Konzola Linuxa" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Konzola Solarisa" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Išči..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Tukaj vnesite ime zavihka za iskanje" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Zvonec v »%1« (Seja »%2«)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Ni bilo mogoče najti programa: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Opozorilo: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Ni bilo mogoče najti interaktivne lupine, ki bi jo lahko zagnali." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2076,336 +2162,339 @@ msgstr "" "Ni bilo mogoče najti »%1«, namesto tega zaganjam »%2«. Preverite nastavitve " "profila." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Ni bilo mogoče zagnati programa »%1« z argumenti »%2«." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Tišina v »%1« (Seja »%2«)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Prikaži sejo" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Uporabljene so bile metode D-Bus sendText/runCommand, za katere obstajajo " -"dvomi glede njihove varnosti, če so javne. Te metode lahko s ponovnim " -"prevodom programa Konsole pretvorite v zasebne.

              To opozorilo bo v tem " -"primerku Konsole pokazano le enkrat.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Zaključeno" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." -msgstr "Program »%1« se je sesul." +msgstr "Program '%1' se je sesul." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." -msgstr "Program »%1« je končal s stanjem %2." +msgstr "Program '%1' je končal s stanjem %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Napredek ZModema" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" -msgstr "Dejavnost v »%1« (Seja »%2«)" +msgstr "Dejavnost v '%1' (Seja '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "Varnostno občutljiv DBus API je v nastavitvah onemogočen." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" -msgstr "Dejavnost »%1« se je končala v seji »%2«" +msgstr "Dejavnost '%1' se je končala v seji '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ne zna odpreti zaznamka: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" -msgstr "Poišči »%1« z" +msgstr "Poišči '%1' z" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Nastavi spletne bližnjice …" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Zapri sejo" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Odpri upravljalnik datotek" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopiraj" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Razcepi pogled levo/desno" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Razcepi pogled zgoraj/spodaj" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopiraj brez pozivov" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopiraj uporabnikov vnos" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopiraj izhod ukaza" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Prilepi izbiro" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Spletno iskanje" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "Izberi vse" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Izberi način" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Izberi vrstico" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Shrani izpis &kot …" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Samodejno shrani izhod kot..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Ustavi samodejno shranjevanje" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." -msgstr "&Natisni zaslon …" +msgstr "Natisni zaslon..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." -msgstr "Nastavi pomnilnik vrstic …" +msgstr "Nastavi pomnilnik vrstic..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Počisti pomnilnik vrstic" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Počisti pomnilnik vrstic in ponastavi" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Naslednji profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Predhodni profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Preklopi profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Nastavi kodiranj&e" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Dovoli sledenje miške" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Samo za branje" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "N&astavi ali preimenuj zavihek …" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Vsi zavihki v trenutnem oknu" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Izbor zavihkov …" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nobenega" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiraj vnos v" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Pošiljanje prek &ZModema …" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Enkratni nadzorniki" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Spremljaj &Poziv" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Spremljaj dej&avnost" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Spremljaj nedejavno&st" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Spremljaj dej&avnost dokler ne konča" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Povečaj velikost pisave" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Zmanjšaj velikost pisave" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Ponastavi velikost pisave" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Pošlji signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "Po&stavi opravilo v pripravljenost" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Nadaljuj opravilo" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Odloži" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "Prekini opravilo" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Končaj opravilo" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "Uniči opravilo" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Uporabniški signal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Uporabniški signal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Ustvari nov profil …" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Uredi trenutni profil …" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2414,7 +2503,7 @@ msgstr "" "V tej seji trenutno teče nek program. Ali ste prepričani, da jo želite " "zapreti?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2423,18 +2512,18 @@ msgstr "" "V tej seji trenutno teče program »%1«. Ali ste prepričani, da jo želite " "zapreti?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potrdi zaprtje" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Zapri program" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2443,37 +2532,37 @@ msgstr "" "V tej seji teče program, ki ga ni mogoče uničiti. Ali ste prepričani, da ga " "želite uničiti nasilno?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -"V tej seji teče program »%1«, ki ga ni mogoče uničiti. Ali ste prepričani, " -"da ga želite uničiti nasilno?" +"Program '%1' v tej seji ne bi umrl. Ali ste prepričani, da ga želite ubiti " +"na silo?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Ubij program" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Shellov poziv je prikazan v seji »%1«" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Odpri trenutno mapo z" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Shrani prejem prek ZModema v …" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2484,13 +2573,13 @@ msgstr "" "ni bilo mogoče najti ustreznega programa za ZModem.

              Morda bi želeli " "namestiti paket »rzsz« ali »lrzsz«.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              V trenutni seji že poteka datotečni prenos prek ZModema.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2499,7 +2588,7 @@ msgstr "" "

              Na tem sistemu ni bilo mogoče najti ustreznega programa za ZModem.

              Morda bi želeli namestiti paket »rzsz« ali »lrzsz«.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Izberite datoteke za pošiljanje prek ZModema" @@ -2522,144 +2611,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Nastavi" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Išči:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Omogoči pospeševalnike menija" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Če je omogočeno, bodo nastavitve profila prezrte" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Zapomni si velikost okna" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "V naslovni vrstici pokaži ime okna" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Osredotočenje na terminale, ko se miška pomakne nadnje" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Ujemanje naj upošteva regularne izraze" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Ob zagonu Konsole ponovno uporabi obstoječe opravilo (če je mogoče)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Zaženi vsa okna Konsole v enojnem opravilu" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Poudari vsa ujemanja" +msgid "If enabled, profile settings will be ignored" +msgstr "Če je omogočeno, bodo nastavitve profila prezrte" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Ali naj se pri iskanju upošteva velikost črk" +msgid "Remember window size" +msgstr "Zapomni si velikost okna" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "Ločevanje med malimi in velikimi črkami" +msgid "Force new tabs" +msgstr "Prisili nove zavihke" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Odstrani naslov okna in okvir" +msgid "Listen for ZModem terminal codes" +msgstr "Poslušaj kode terminala ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Obdeluj in okno:" +msgid "Show progress in taskbar" +msgstr "Prikaži napredek v opravilni vrstici" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Obvestila:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Vsa pogovorna okna bodo znova prikazana" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Omogoči vsa sporočila »Ne vprašaj več«" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Nastavi ali se naj iskanje začne od spodaj" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Poišči vzvratno" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Ali naj se pri iskanju upošteva velikost črk" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Ločevanje med malimi in velikimi črkami" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Obdeluj in okno:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Poudari vsa ujemanja" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Išči:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Nastavi, ali naj se iskanje ustavi namesto zavijanja" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Ni zavijanja" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Omogoči pospeševalnike menija" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Osredotočenje na terminale, ko se miška pomakne nadnje" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Vsa pogovorna okna bodo znova prikazana" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Omogoči vsa sporočila »Ne vprašaj več«" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "V naslovni vrstici pokaži ime okna" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Omogoči varnostno občutljive dele API-ja DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Odstrani naslov okna in okvir" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Ujemanje naj upošteva regularne izraze" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2686,71 +2801,111 @@ msgstr "Uporabi trenutno velikost okna ob naslednjem zagonu" msgid "The window size will be saved upon exiting Konsole" msgstr "Ob izhodu bo shranjena velikost okna programa Konsole" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Ob zagonu Konsole ustvari nov zavihek ustvarjanja namesto novih oken, če je " +"mogoče" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Prikaži napredek v opravilni vrstici" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "Ko skript poroča o svojem napredku, se to kaže v opravilni vrstici" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "Omogočen bo DBus API podoben kot je runCommand" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Poslušaj kode terminala ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Samodejno pošiljaj/prejemaj datoteke prek serijskih povezav" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Širina predogledne sličice" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Določi širino predogledne sličice" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Uporabite tipko Shift za predogled sličice" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Uporabi Alt za prikaz predogledne sličice" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Uporabi Ctrl za prikaz predogledne sličice" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Iskanje upošteva velikost črk" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Poudari vsa ujemanja" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Ali naj se ujemajoče besedilo poudari" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Zaustavi iskanje namesto zavijanja" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Nadzira, ali se za posamezne zavihke ustvarijo podrejene skupine" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2758,91 +2913,97 @@ msgstr "Določa raven porabe pomnilnika nad katero se začne dušenje" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Nadziraj vidnost celotne vrstice z zavihki" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Nadzoruj velikost ročaja med ploščami" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Nadziraj položaj vrstice z zavihki" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Nadziraj vidni slog vrstice z zavihki" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Uporabi uporabniško določeno datoteko .css za vrstico z zavihki" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Datoteka .css, ki bo uporabljena za slog vrstice z zavihki" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Dovoli klik s srednjo tipko na odprte zavihke, da jih zapreš" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Nadzor vidnosti gumba »Nov zavihek« na vrstici z zavihki" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Nadzirajte vidnost gumba »Iskanje po zavihkih« v vrstici z zavihki" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Upravljaj, kje naj bo prikazan gumb Zapri zavihek" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Nadziraj kam bo postavljen nov zavihek" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Razširi širine zavihkov" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Uporabi sistemsko mapo za datoteke s pomnilnikom vrstic" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Uporabi uporabniško določeno mapo za datoteke s pomnilnikom vrstic" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Uporabi navedeno mapo za datoteke s pomnilnikom vrstic" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Uporabi to mapo za datoteke s pomnilnikom vrstic" @@ -2854,33 +3015,30 @@ msgid "Enable memory monitoring:" msgstr "Omogoči nadzor pomnilnika:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" -"Spremembe bodo začele veljati ob ponovnem zagonu. Če je omogočeno, Konsole " -"stalno porablja pomnilnik\n" -"prekoračitev navedene vrednosti bo povzročila, da systemd-oomd odstrani " -"zavihke\n" -"ki vsebujejo pomnilniško intenzivne procese. Opomba: omogočanje\n" -"lahko povzroči večje upočasnitve med veliko porabo pomnilnika in določanjem\n" -"pretirano nizke vrednosti lahko še vedno povzročijo uničenje Konsole." +"Spremembe bodo začele veljati ob ponovnem zagonu. Če je omogočeno, bo " +"Konsole zaradi dolgotrajne porabe pomnilnika, ki presega določeno vrednost, " +"povzročil, da bo systemd-oomd odstranil zavihek(-e), ki vsebuje(-jo) proces(-" +"e), ki intenzivno porabljajo pomnilnik. Opomba: omogočanje lahko povzroči " +"večje upočasnitve med visoko porabo pomnilnika, določanje pretirano nizkih " +"vrednosti pa še vedno lahko povzroči, da se Konsole ustavi." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Omejitev pomnilnika:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3038,125 +3196,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Noben" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Pokaži gumb za iskanje zavihkov:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Vedno" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Nikoli" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Razno:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Pokaži gumb »Nov zavihek«" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Razširi posamezne širine zavihkov do polnega okna" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Uporabniško določena slogovna predloga:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(noben)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Obnašanje" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Postavi nove zavihke:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Na konec" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Za trenutnim zavihkom" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Zavihek zapremo s srednjo tipko" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Razdeli" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Pokaži glavo:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Kadar je potrebno" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Nikoli" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Vleci velikost ročaja:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Majhno" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Srednje" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Veliko" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3208,12 +3384,12 @@ msgstr "px" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Da bi uporabljali to možnost, omogočite Miška → Razno → Podčrtaj files v nastavitvah vašega profila

              " +"font-weight:600;\">Miška->Razno->Podčrtaj datoteke v vaših " +"nastavitvah profila.

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3251,12 +3427,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Omogoči tvorbo predoglednih sličic" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Velikost: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3265,52 +3441,52 @@ msgstr[1] "Ali res želite prilepiti %1 znak?" msgstr[2] "Ali res želite prilepiti %1 znaka?" msgstr[3] "Ali res želite prilepiti %1 znake?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Potrditev lepljenja" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "End Of Text/Interrupt: lahko konča trenutni proces" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "End Of Transmission: lahko konča trenutni proces" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Bell: bo poskusil oddati zvočno opozorilo" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: začasno prekini izhod" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitute/Suspend: lahko začasno ustavi trenutni proces" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: se uporablja za spremembo stanja terminala" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "File Separator/Quit: lahko konča trenutni proces" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3319,31 +3495,31 @@ msgstr "" "Besedilo, ki ga želite prilepiti vsebuje nekatere skrite kontrolne znake. " "Ali želite te znake odfiltrirati?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Potrdi lepljenje" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Prilepi brez kontrolnih znakov" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Prilepi vse" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "Prekliči" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been zaustavljen s pritiskom Ctrl+S. Pritisnite " "Ctrl+Qza nadaljevanje." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Ta terminal je samo za branje." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Spremeni mapo v" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Prilepi naslov" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Razdeljen pogled" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Razdeli pogled levo/desno" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Razdeli pogled zgoraj/spodaj" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Samodejno razdeli pogled" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Razdeli pogled levo/desno iz naslednjega zavihka" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Razdeli pogled zgoraj/spodaj iz naslednjega zavihka" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Samodejno razdeli pogled iz naslednjega zavihka" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Naloži nov zavihek s postavitvijo 2x2 terminalov" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Naloži nov zavihek s postavitvijo 2x1 terminalov" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Naloži nov zavihek s postavitvijo 1x2 terminala" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Razširi pogled" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Skrči pogled" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Odpni trenutni pogled" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Odpni trenutni zavihek" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Naslednji zavihek" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Predhodni zavihek" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Deluje na območjem terminala" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Deluj pod območjem terminala" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Deluj na levem terminalu" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Deluj na desnem terminalu" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokus na naslednjem terminalu" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokus na prejšnjem terminalu" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Preklopi na zadnji zavihek" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Zadnje uporabljeni zavihki" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Preklapljaj med dvema zavihkoma" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Zadnje uporabljeni zavihki (Obratno)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Preklopi v maksimalni trenutni pogled" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Preklopi v maksimalni trenutni pogled" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Preklopi v razpeti trenutni pogled" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Preklopi v razpeti trenutni pogled" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Premakni zavihek na desno" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Premakni zavihek na levo" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Nastavi semantićno integracijo (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Preklopi prikaz semantičnih namigov" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Preklopi prikaz številk vrstic" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Enaka velikost za vse poglede" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Preklopi na zavihek %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantični namigi " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Številke vrstic " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Shrani razporeditev zavihka" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole View Layout (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3611,7 +3799,7 @@ msgstr "" "Med shranjevanjem postavitve je prišlo do težave.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3621,13 +3809,13 @@ msgstr "" "Med nalaganjem postavitve je prišlo do težave.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Naloži razporeditev zavihka" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3725,28 +3913,40 @@ msgstr "Privzeto kodiranje znakov:" msgid "Shortcut for peeking the primary screen:" msgstr "Bližnjica za kukanje na primarni zaslon:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Nastavi interval med samodejnimi shranjevanji:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Številke vrstic:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Nikoli" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Kadar namigi &URL kažejo" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3782,7 +3982,7 @@ msgstr "Uredi izbrano barvno shemo" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3836,14 +4036,20 @@ msgstr "Intenzivne barve izpiši s polkrepko pisavo" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" -msgstr "Uporabi izbrano pisavo za znake za novo vrstico namesto vgrajene kode" +msgstr "Uporabi izbrano pisavo za znake v vrstici namesto vgrajene kode" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Uporabi znake za novo vrstico iz pisave" +msgstr "Uporabite znake v vrstici, ki jih vsebuje pisava" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3961,29 +4167,43 @@ msgid "Make the cursor blink regularly" msgstr "Povzroči, da kazalka redno utripa" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Omogočeno" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Animacija:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Naj bo kazalec gladko animiran" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Razno" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Okno:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3993,145 +4213,145 @@ msgstr "" "sredini okna" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Prikaži namig za velikost terminala po spremembi velikosti" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Vedno zamenjaj barve izbranega besedila" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Moč temnenja:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Barva:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Izberite barvo za izris meje" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Nedejavni terminali:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Dejavni terminali:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Vsebine terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Razmik vrstic:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Število točk med dvema vrsticama" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Robovi:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Usredini:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Z zatemnitvijo barv označi, ali je okno aktivno" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Potemni" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Označi dejavno okno aktivno z risanjem meje" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Meja" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Kaži navpično črto pri stolpcu:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" "

              Kompleksna razporeditev besedila

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Kompleksna razporeditev besedila" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Omogoči besedni način upodabljanja" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Besedni način" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4141,43 +4361,43 @@ msgstr "" "besedo pri upodabljanju)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Uporabi iste lastnosti za celotno besedo" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Upodobi besede z znaki ASCII skupaj" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII znaki " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Upodobi besede z znaki bramanske pisave skupaj" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Znaki bramanske pisave" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Pisava čustvenčka:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4187,95 +4407,95 @@ msgstr "" "hebrejščino)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Dvosmeren prikaz besedila" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "Črte so vedno L->D, smeri ne določa prvi krepki znak" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "vsili smer vrstice L->D" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Obravnavaj znake izrisa tabele kot krepki L->D." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Preglasitev dvosmernega načina znakov tabele" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Prezri širino wcwidth problematičnih znakov" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Povozi širino wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Uredi profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Splošno" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Zavihki" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Videz" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Drsenje" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tipkovnica" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Povezave tipk" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Miška" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Napredno" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4287,31 +4507,31 @@ msgstr "" "Ali spremenite dovoljenja te datoteke ali nastavite drugo ime za " "shranjevanje nastavitev v novi profil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "Ime profila je prazno; uporabite neko ime za shranjevanje nastavitev." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Profil z imenom »%1« že obstaja." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Ime profila presega maksimalno dovoljeno dolžino (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Označeni znaki niso veljavni v imenih profilov: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4320,17 +4540,22 @@ msgstr[1] "Urejanje %1 profila: %2" msgstr[2] "Urejanje %1 profilov: %2" msgstr[3] "Urejanje %1 profilov: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Ustvari nov profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Uredi profil »%1«" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Noben" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4342,7 +4567,7 @@ msgstr[1] " stolpec" msgstr[2] " stolpca" msgstr[3] " stolpci" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4354,42 +4579,42 @@ msgstr[1] " vrstica" msgstr[2] " vrstici" msgstr[3] " vrstice" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sistemski zvonec" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Obvestila sistema" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Vidni zvonec" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Prezri dogodke zvonca" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Privzeti profil za nove terminalske seje v %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Uredi okolje" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Ena okoljska spremenljivka na vrstico" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4399,23 +4624,23 @@ msgstr[1] " sekunda" msgstr[2] " sekundi" msgstr[3] " sekunde" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Izberi začetno mapo" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Dobi novo…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Shema %1 se ni uspela naložiti." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4423,7 +4648,7 @@ msgid "" msgstr "" "Ta barvna shema uporablja prozorno ozadje, kar na tem sistemu ni podprto" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4432,12 +4657,12 @@ msgstr "" "Program Konsole je bil začet preden so bili omogočeni učinki namizja. Da bi " "lahko videli prozorno ozadje, ga morate znova zagnati." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Privzeto za vrsto datoteke" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4465,7 +4690,7 @@ msgstr "" "Če v ukazu manjkata PATH ali LINE, bo ta nastavitev\n" "prezrta, datoteko pa bo odprl privzeti urejevalnik besedil." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Ukaz urejevalnika besedil po meri" @@ -4553,26 +4778,56 @@ msgstr "Izberite začetno mapo" msgid "Start in same directory as current session" msgstr "Začni v isti mapi kot trenutno sejo" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Pri odpiranju novega zavihka ali razdelitve samodejno vstopi v isti vsebnik " +"(Orodjarna, Distrobox) trenutne seje" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Vstopite v isti vsebnik trenutne seje" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Vedno zaženi v vsebniku:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Vedno začni nove seje z uporabo tega profila znotraj izbranega vsebnika" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Okolje:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Uredi seznam okoljskih spremenljivk in povezanih vrednosti" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Začetna velikost terminala:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4585,31 +4840,31 @@ msgstr "" "onemogočeno, da ti vnosi delujejo.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Terminalski način zvonca:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantična integracija" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulacija puščic gor/dol" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Klik z miško v vhodno vrstico premakne kazalko" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantični namigi:" @@ -4619,9 +4874,9 @@ msgstr "Semantični namigi:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4632,9 +4887,9 @@ msgstr "Nikoli" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4645,34 +4900,34 @@ msgstr "Kadar namigi URL kažejo" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Vedno" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Rdeče črte napak:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Rdeče ozadje napak:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Izmenjujoče črte:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Izmenjujoče se ozadje:" @@ -5033,115 +5288,127 @@ msgid "Scrollback:" msgstr "Pomik nazaj:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Pomik po strani navzgor/navzdol:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Osvetli vrstice, ki prihajajo v pogled" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Skrit" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Velikost vsakega markerja (kot odstotek dolžine drsnika):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Osvetljevanje:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Premakni stran za polovico višine okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Polovica višine zaslona" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Barva oznak drsnika:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Barva označevalnih črt iskanja z drsnikom:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Ponovni potek vrstic:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Premakni stran za celotno višino okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Celotna višina zaslona" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Položaj drsnika:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Prikaže drsnik na desni strani terminalskega okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Desna stran" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Prikaže drsnik na levi strani terminalskega okna" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Leva stran" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Skrit" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Osvetljevanje:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Osvetli vrstice, ki prihajajo v pogled" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Ponovni potek vrstic:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Ponovni potek vrstic ob spremembi velikosti" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Barva oznak drsnika:" +msgid "Scrollbar position:" +msgstr "Položaj drsnika:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Velikost vsakega markerja (kot odstotek dolžine drsnika):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Neprosojnost črte za označevanje iskanja:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5249,37 +5516,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nobenega" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Najdi..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Sem vnesite iskano besedilo" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Naslednji" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Najde naslednje ujemanje za trenutno iskalno frazo" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Predhodni" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5287,77 +5554,77 @@ msgstr "Najde predhodno ujemanje za trenutno iskalno frazo" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Prikaže meni z možnostmi" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zapri iskalno vrstico" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "Ločevanje velikosti črk" +msgstr "Loči med malimi in velikimi črkami" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Ali naj se pri iskanju upošteva velikost črk" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Prikaže meni z možnostmi" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zapri iskalno vrstico" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Ujemanje z regularnim izrazom" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Poudari vsa ujemanja" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Ali naj se ujemajoče besedilo poudari" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Poišči vzvratno" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Nastavi, ali se naj iskanje začne od spodaj" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Ni zavijanja" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Nastavi, ali naj se iskanje ustavi namesto zavijanja" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Poišči trenutno iskalno frazo od spodaj navzgor" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5368,7 +5635,7 @@ msgstr "Poišči trenutno iskalno frazo od zgoraj navzdol" msgid "Print Shell" msgstr "Natisni lupino" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5408,6 +5675,12 @@ msgstr "Oblika imena običajnega zavihka" msgid "Tab Co&lor:" msgstr "Barva zavihka:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Barva zavihka dejavnosti:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5501,36 +5774,63 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Obnovi terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Odpri novi zavihek" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Zavihki za iskanje" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Zapri ta zavihek" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "O&dpni zavihek" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Nastavi ali preimenuj zavihek …" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Zapri zavihek" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Uporabljene so bile metode D-Bus sendText/runCommand, za katere obstajajo " +#~ "dvomi glede njihove varnosti, če so javne. Te metode lahko s ponovnim " +#~ "prevodom programa Konsole pretvorite v zasebne.

              To opozorilo bo v tem " +#~ "primerku Konsole pokazano le enkrat.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Ločevanje velikosti črk" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Noben" diff --git a/local/recipes/kde/konsole/source/po/sq/konsole.po b/local/recipes/kde/konsole/source/po/sq/konsole.po index 4f8d610e98..09099019e1 100644 --- a/local/recipes/kde/konsole/source/po/sq/konsole.po +++ b/local/recipes/kde/konsole/source/po/sq/konsole.po @@ -3,22 +3,22 @@ # This file is distributed under the same license as the kdebase package. # # FIRST AUTHOR , 2009. -# Agron Selimaj , 2021. +# SPDX-FileCopyrightText: 2021, 2024, 2026 Agron Selimaj msgid "" msgstr "" "Project-Id-Version: kdebase\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2021-03-31 16:13-0400\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-01-01 20:59-0500\n" "Last-Translator: Agron Selimaj \n" -"Language-Team: kdeshqip\n" +"Language-Team: sq\n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2011-04-22 06:28+0000\n" -"X-Generator: Lokalize 20.12.3\n" +"X-Generator: Lokalize 25.12.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -34,7 +34,7 @@ msgstr "kde-i18n-sq@kde.org,vilsongjeci@gmail.com" #: ../desktop/konsoleui.rc:6 #, kde-format msgid "File" -msgstr "Skedari" +msgstr "Skedë" #. i18n: ectx: property (text), widget (QPushButton, btnEdit) #. i18n: ectx: Menu (edit) @@ -52,7 +52,7 @@ msgstr "Pamja" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Ndaj Pamjen" @@ -65,9 +65,9 @@ msgstr "Parametrat" #. i18n: ectx: Menu (plugins) #: ../desktop/konsoleui.rc:54 -#, kde-format +#, fuzzy, kde-format msgid "Plugins" -msgstr "" +msgstr "Pluginat" #. i18n: ectx: Menu (help) #: ../desktop/konsoleui.rc:57 @@ -88,7 +88,7 @@ msgid "S&crollback" msgstr "Rrëshqitje mbrapa" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Shiriti i seancës" @@ -166,54 +166,66 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 #, kde-format msgctxt "@info:shell" -msgid "List the available profiles" +msgid "Start Konsole in fullscreen mode" msgstr "" #: Application.cpp:73 #, kde-format msgctxt "@info:shell" -msgid "List all the profile properties names and their type (for use with -p)" +msgid "Disable transparent backgrounds, even if the system supports them." msgstr "" #: Application.cpp:74 #, kde-format msgctxt "@info:shell" -msgid "Change the value of a profile property." +msgid "List the available profiles" +msgstr "" + +#: Application.cpp:75 +#, kde-format +msgctxt "@info:shell" +msgid "List all the profile properties names and their type (for use with -p)" msgstr "" #: Application.cpp:76 #, kde-format msgctxt "@info:shell" +msgid "Change the value of a profile property." +msgstr "" + +#: Application.cpp:78 +#, kde-format +msgctxt "@info:shell" msgid "" "Command to execute. This option will catch all following arguments, so use " "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -221,13 +233,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background" msgctxt "@item" @@ -238,209 +250,207 @@ msgstr "Sfondi" #, kde-format msgctxt "@item:inmenu The user's name and host they are connected to via ssh" msgid "%1 on %2" -msgstr "" +msgstr "%1 në %2" #: BookmarkHandler.cpp:109 #, kde-format msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" -msgstr "" +msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 -#, fuzzy -#| msgid "Foreground" +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Pamja Parësore" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Sfondi" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" -msgstr "Ngjyra 1" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" -msgstr "Ngjyra 2" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" -msgstr "Ngjyra 3" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" -msgstr "Ngjyra 4" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" -msgstr "Ngjyra 5" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" -msgstr "Ngjyra 6" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" -msgstr "Ngjyra 7" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" -msgstr "Ngjyra 8" +msgstr "Ngjyra" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Pamja Parësore" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Sfondi" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Pamja Parësore" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Sfondi" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Ngjyra 1" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Ngjyra 2" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Ngjyra 3" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Ngjyra 4" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Ngjyra 5" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Ngjyra 6" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Ngjyra 7" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Ngjyra 8" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "New Color Scheme" msgctxt "@item" @@ -448,16 +458,16 @@ msgid "Un-named Color Scheme" msgstr "Skemë e Re Ngjyre" #: colorscheme/ColorSchemeEditor.cpp:110 -#, kde-format +#, fuzzy, kde-format msgctxt "@label:listbox Column header text for color names" msgid "Name" -msgstr "" +msgstr "Emri" #: colorscheme/ColorSchemeEditor.cpp:110 #, kde-format msgctxt "@label:listbox Column header text for the actual colors" msgid "Color" -msgstr "" +msgstr "Ngjyra" #: colorscheme/ColorSchemeEditor.cpp:111 #, kde-format @@ -492,8 +502,7 @@ msgid "Supported Images" msgstr "" #: colorscheme/ColorSchemeEditor.cpp:334 -#, fuzzy, kde-format -#| msgid "New Color Scheme" +#, kde-format msgctxt "@title:window" msgid "New Color Scheme" msgstr "Skemë e Re Ngjyre" @@ -526,9 +535,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QLabel, descriptionLabel) #. i18n: ectx: property (text), widget (QLabel, discriptionLabel) #: colorscheme/ColorSchemeEditor.ui:31 KeyBindingEditor.ui:31 -#, kde-format +#, fuzzy, kde-format msgid "Description:" -msgstr "" +msgstr "Përshkrimi:" #. i18n: ectx: property (toolTip), widget (QCheckBox, randomizedBackgroundCheck) #: colorscheme/ColorSchemeEditor.ui:50 @@ -565,7 +574,7 @@ msgstr "Sfondi" #: colorscheme/ColorSchemeEditor.ui:89 colorscheme/ColorSchemeEditor.ui:123 #, kde-format msgid "Percent" -msgstr "" +msgstr "Përqind" #. i18n: ectx: property (text), widget (QLabel, wallpaperTransparencyLabel) #: colorscheme/ColorSchemeEditor.ui:103 @@ -601,7 +610,7 @@ msgstr "Sfondi" #: widgets/EditProfileGeneralPage.ui:186 #, kde-format msgid "..." -msgstr "" +msgstr "..." #. i18n: ectx: property (text), widget (QLabel, wallpaperScalingLabel) #: colorscheme/ColorSchemeEditor.ui:165 @@ -623,15 +632,15 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:183 -#, kde-format +#, fuzzy, kde-format msgid "Crop" -msgstr "" +msgstr "Preje" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:188 #, kde-format msgid "Adapt" -msgstr "" +msgstr "Përshtat" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:193 @@ -655,21 +664,21 @@ msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:218 -#, kde-format +#, fuzzy, kde-format msgid "Horizontal" -msgstr "" +msgstr "Horizontal" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:223 -#, kde-format +#, fuzzy, kde-format msgid "Vertical" -msgstr "" +msgstr "Vertikal" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:228 #, kde-format msgid "Both" -msgstr "" +msgstr "Së bashku" #. i18n: ectx: property (text), widget (QLabel, wallpaperHorizontalAnchorLabel) #: colorscheme/ColorSchemeEditor.ui:240 @@ -681,7 +690,7 @@ msgstr "" #: colorscheme/ColorSchemeEditor.ui:266 #, kde-format msgid "Left" -msgstr "" +msgstr "Majtas" #. i18n: ectx: property (text), widget (QLabel, wallpaperVerticalAnchorLabel) #: colorscheme/ColorSchemeEditor.ui:277 @@ -691,15 +700,49 @@ msgstr "" #. i18n: ectx: property (text), widget (QLabel, wallpaperVerticalAnchorPosition) #: colorscheme/ColorSchemeEditor.ui:303 -#, kde-format +#, fuzzy, kde-format msgid "Top" -msgstr "" +msgstr "Kreu" #: colorscheme/ColorSchemeViewDelegate.cpp:52 #, kde-format msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Hosti:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [I Parazgjedhur]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -710,19 +753,19 @@ msgstr "Kopjo Hyrjen" #: CopyInputDialog.ui:19 KeyBindingEditor.ui:41 #, kde-format msgid "Filter:" -msgstr "" +msgstr "Filtri:" #. i18n: ectx: property (text), widget (QPushButton, selectAllButton) #: CopyInputDialog.ui:46 #, kde-format msgid "Select All" -msgstr "" +msgstr "Zgjidhi të Gjitha" #. i18n: ectx: property (text), widget (QPushButton, deselectAllButton) #: CopyInputDialog.ui:53 #, kde-format msgid "Deselect All" -msgstr "" +msgstr "Lësho Gjithçka" #: filterHotSpots/ColorFilterHotSpot.cpp:84 #, fuzzy, kde-format @@ -739,12 +782,11 @@ msgid "" msgstr "" #: filterHotSpots/FileFilterHotspot.cpp:172 -#, fuzzy, kde-format -#| msgid "Copy Input" +#, kde-format msgid "Copy Location" -msgstr "Kopjo Hyrjen" +msgstr "Kopjo Vendndodhjen" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -774,15 +816,15 @@ msgstr "Kopjo Adresën Email" #| msgid "Paste Selection" msgctxt "@title:window" msgid "Select font" -msgstr "Ngjit Përzgjedhjen" +msgstr "Zgjidh Gërmën" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -820,17 +862,17 @@ msgstr "" msgid "Output" msgstr "Rezultati" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -838,11 +880,11 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" -msgstr "" +msgstr "Shto" #. i18n: ectx: property (text), widget (QPushButton, removeEntryButton) #. i18n: ectx: property (text), widget (QPushButton, removeKeyBindingsButton) @@ -851,7 +893,7 @@ msgstr "" #: widgets/EditProfileKeyboardPage.ui:83 #, kde-format msgid "Remove" -msgstr "" +msgstr "Hiqe" #. i18n: ectx: property (title), widget (QGroupBox, groupBox) #: KeyBindingEditor.ui:94 @@ -862,238 +904,236 @@ msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: KeyBindingEditor.ui:115 -#, fuzzy, kde-format -#| msgid "Copy Input" +#, kde-format msgid "Input:" -msgstr "Kopjo Hyrjen" +msgstr "Hyrja:" #. i18n: ectx: property (text), widget (QLabel, label_2) #: KeyBindingEditor.ui:128 -#, fuzzy, kde-format -#| msgid "Output" +#, kde-format msgid "Output:" -msgstr "Rezultati" +msgstr "Dalja:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@title" msgid "Konsole" msgstr "Dritare e &Re" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" -msgstr "" +msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" -msgstr "" +msgstr "Lars Doelle" -#: main.cpp:349 -#, kde-format +#: main.cpp:377 +#, fuzzy, kde-format msgctxt "@info:credit" msgid "Original author" -msgstr "" +msgstr "Autori origjinal" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" -msgstr "" +msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" -msgstr "" +msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" -msgstr "" +msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" -msgstr "" +msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" -msgstr "" +msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" -msgstr "" +msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" -msgstr "" +msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" -msgstr "" +msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" -msgstr "" +msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" -msgstr "" +msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" -msgstr "" +msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" -msgstr "" +msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" -msgstr "" +msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" -msgstr "" +msgstr "Përmirësimet e përgjithshme" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" -msgstr "" +msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" -msgstr "" +msgstr "Rregullimet e gabimeve" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" -msgstr "" +msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" -msgstr "" +msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" -msgstr "" +msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" -msgstr "" +msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" -msgstr "" +msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1101,13 +1141,13 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" -msgstr "" +msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1115,25 +1155,25 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" -msgstr "" +msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" -msgstr "" +msgstr "Efektet pamore" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" -msgstr "" +msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1141,136 +1181,134 @@ msgid "" "General improvements" msgstr "" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" -msgstr "" +msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" -msgstr "" +msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" -msgstr "" +msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" -msgstr "" +msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" -msgstr "" +msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" -msgstr "" +msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" -msgstr "" +msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" -msgstr "" +msgstr "Falënderime dhe shumë të tjerëve.\n" -#: MainWindow.cpp:327 -#, fuzzy, kde-format -#| msgid "&Close Tab" +#: MainWindow.cpp:391 +#, kde-format msgctxt "@action:inmenu" msgid "&New Tab" -msgstr "&Mbylle Tabelën" +msgstr "&Tabelë e Re" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Mbylle Tabelën" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Dritare e &Re" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Mbylle Dritaren" -#: MainWindow.cpp:356 -#, fuzzy, kde-format -#| msgid "&Bookmarks" +#: MainWindow.cpp:420 +#, kde-format msgctxt "@title:menu" msgid "&Bookmarks" -msgstr "&Faqeruajtës" +msgstr "&Faqeruajtëset" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Skemë e Re Ngjyre" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Menexho Profilet..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Menya Aktive" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1279,68 +1317,68 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Konfirmo Mbylljen" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Mbyll dritaren" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Mbylle Tabelën e Tanishme" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profilet" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Të Përgjithshme" -#: MainWindow.cpp:896 -#, kde-format +#: MainWindow.cpp:1031 +#, fuzzy, kde-format msgctxt "@title Preferences page name" msgid "Memory" -msgstr "" +msgstr "&Kujtesa:" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Skedat e përkohshme" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" -msgstr "" +msgstr "Miniaturat" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1350,27 +1388,27 @@ msgstr "" #: plugins/QuickCommands/qcwidget.ui:14 #, kde-format msgid "Form" -msgstr "" +msgstr "Forma" #. i18n: ectx: property (text), widget (QLabel, label_2) #: plugins/QuickCommands/qcwidget.ui:22 #, kde-format msgid "Shortcut:" -msgstr "" +msgstr "Shkurtore:" #. i18n: ectx: property (placeholderText), widget (QLineEdit, filterLine) #. i18n: ectx: property (placeholderText), widget (QLineEdit, filterText) #: plugins/QuickCommands/qcwidget.ui:52 plugins/SSHManager/sshwidget.ui:33 #, kde-format msgid "Filter..." -msgstr "" +msgstr "Filtri..." #. i18n: ectx: property (text), widget (QCheckBox, invertFilter) #. i18n: ectx: property (text), widget (QCheckBox, btnInvertFilter) #: plugins/QuickCommands/qcwidget.ui:59 plugins/SSHManager/sshwidget.ui:46 #, kde-format msgid "Invert" -msgstr "" +msgstr "Inverto" #. i18n: ectx: property (text), widget (QLabel, label) #: plugins/QuickCommands/qcwidget.ui:97 @@ -1388,78 +1426,77 @@ msgstr "" #. i18n: ectx: property (text), widget (QLabel, labelGroup) #: plugins/QuickCommands/qcwidget.ui:117 -#, kde-format +#, fuzzy, kde-format msgid "Group" -msgstr "" +msgstr "Grupi" #. i18n: ectx: property (text), item, widget (QComboBox, group) #. i18n: ectx: property (currentText), widget (QComboBox, folder) #: plugins/QuickCommands/qcwidget.ui:128 plugins/SSHManager/sshwidget.ui:213 -#, kde-format +#, fuzzy, kde-format msgid "Default" -msgstr "" +msgstr "I Parazgjedhur" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: plugins/QuickCommands/qcwidget.ui:143 #, kde-format msgid "Command" -msgstr "" +msgstr "Komanda" #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #: plugins/QuickCommands/qcwidget.ui:193 #: plugins/QuickCommands/quickcommandswidget.cpp:333 #, kde-format msgid "Warnings" -msgstr "" +msgstr "Vërejtjet" #. i18n: ectx: property (text), widget (QPushButton, btnRun) #: plugins/QuickCommands/qcwidget.ui:236 #, kde-format msgid "Run" -msgstr "" +msgstr "Ekzekuto" #. i18n: ectx: property (text), widget (QPushButton, btnSave) #: plugins/QuickCommands/qcwidget.ui:256 -#, fuzzy, kde-format -#| msgid "Open Link" +#, kde-format msgid "Save" -msgstr "Hap Lidhje" +msgstr "Ruaje" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 -#, kde-format +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 +#, fuzzy, kde-format msgid "Update" -msgstr "" +msgstr "Përditëso" #. i18n: ectx: property (text), widget (QPushButton, btnCancel) #: plugins/QuickCommands/qcwidget.ui:276 plugins/SSHManager/sshwidget.ui:320 -#, kde-format +#, fuzzy, kde-format msgid "Cancel" -msgstr "" +msgstr "Anullo" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" -msgstr "" +msgstr "Komandat e Shpejta" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1489,7 +1526,7 @@ msgstr "" #, kde-format msgctxt "@action:button" msgid "Run" -msgstr "" +msgstr "Ekzekuto" #: plugins/QuickCommands/quickcommandswidget.cpp:242 #, kde-format @@ -1499,7 +1536,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1522,12 +1559,12 @@ msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:300 #, kde-format msgid "Rename" -msgstr "" +msgstr "Riemërto" #: plugins/QuickCommands/quickcommandswidget.cpp:304 #, kde-format msgid "Delete" -msgstr "" +msgstr "Fshije" #: plugins/QuickCommands/quickcommandswidget.cpp:335 #, kde-format @@ -1547,7 +1584,7 @@ msgstr "Konfiguro" #| msgid "Edit Profile" msgctxt "@item:inlistbox The default list of ssh hosts" msgid "Default" -msgstr "Modifiko Profilin" +msgstr "I Parazgjedhur" #: plugins/SSHManager/sshmanagermodel.cpp:75 #, kde-format @@ -1555,11 +1592,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Configure" @@ -1567,9 +1604,9 @@ msgid "SSH Config" msgstr "Konfiguro" #: plugins/SSHManager/sshmanagermodel.cpp:103 -#, kde-format +#, fuzzy, kde-format msgid "Host: %1" -msgstr "" +msgstr "Hosti:" #: plugins/SSHManager/sshmanagerplugin.cpp:66 #, kde-format @@ -1620,92 +1657,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" -msgstr "" +msgstr "Fshije" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Delete selected entry" @@ -1715,7 +1752,7 @@ msgstr "Modifiko Profilin" #: plugins/SSHManager/sshwidget.ui:19 #, kde-format msgid "Shortcut" -msgstr "" +msgstr "Shkurtore" #. i18n: ectx: property (toolTip), widget (QCheckBox, btnInvertFilter) #: plugins/SSHManager/sshwidget.ui:43 @@ -1771,7 +1808,7 @@ msgstr "" #: plugins/SSHManager/sshwidget.ui:116 #, kde-format msgid "Port" -msgstr "" +msgstr "Porti" #. i18n: ectx: property (toolTip), widget (QLineEdit, port) #: plugins/SSHManager/sshwidget.ui:123 @@ -1783,7 +1820,7 @@ msgstr "" #: plugins/SSHManager/sshwidget.ui:126 #, kde-format msgid "22" -msgstr "" +msgstr "22" #. i18n: ectx: property (toolTip), widget (QLineEdit, sshkey) #: plugins/SSHManager/sshwidget.ui:142 @@ -1815,7 +1852,7 @@ msgstr "" #: plugins/SSHManager/sshwidget.ui:177 #, kde-format msgid "Username" -msgstr "" +msgstr "Emri i Përdoruesit" #. i18n: ectx: property (toolTip), widget (QLineEdit, username) #: plugins/SSHManager/sshwidget.ui:184 @@ -1836,7 +1873,7 @@ msgstr "KDE Shqip, Launchpad Contributions: Vilson Gjeci" #: plugins/SSHManager/sshwidget.ui:194 #, kde-format msgid "Folder" -msgstr "" +msgstr "Skedar" #. i18n: ectx: property (toolTip), widget (QComboBox, folder) #: plugins/SSHManager/sshwidget.ui:207 @@ -1846,9 +1883,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) #: plugins/SSHManager/sshwidget.ui:220 -#, fuzzy, kde-format -#| msgctxt "@title Preferences page name" -#| msgid "Profiles" +#, kde-format msgid "Profile" msgstr "Profilet" @@ -1904,25 +1939,25 @@ msgstr "Rezultati" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 -#, kde-format +#: PrintOptions.ui:39 settings/konsole.kcfg:210 +#, fuzzy, kde-format msgid "Printer &friendly mode (black text, no background)" -msgstr "" +msgstr "Mënyrë miqësore printimi (tekst i zi, pa sfond)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" -msgstr "" +msgstr "E brendshme" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "" @@ -1943,13 +1978,13 @@ msgstr "" #, kde-format msgctxt "@title:column Profile name" msgid "Name" -msgstr "" +msgstr "Emri" #: profile/ProfileModel.cpp:57 #, kde-format msgctxt "@title:column Profile keyboard shortcut" msgid "Shortcut" -msgstr "" +msgstr "Shkurtore" #: profile/ProfileModel.cpp:80 #, kde-format @@ -1957,13 +1992,13 @@ msgctxt "" "@label:textbox added to the name of the built-in profile, to point out it's " "read-only" msgid " [Read-only]" -msgstr "" +msgstr " [Vetëm lexim]" #: profile/ProfileModel.cpp:84 #, kde-format msgctxt "@label:textbox added to the name of the current default profile" msgid " [Default]" -msgstr "" +msgstr " [I Parazgjedhur]" #: profile/ProfileModel.cpp:99 #, kde-format @@ -1982,17 +2017,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2012,12 +2068,12 @@ msgstr "" #: schemas.cpp:3 #, kde-format msgid "Black on White" -msgstr "" +msgstr "E Zezë mbi të Bardhë" #: schemas.cpp:4 #, kde-format msgid "Blue on Black" -msgstr "" +msgstr "Kaltër mbi të Zezë" #: schemas.cpp:5 #, kde-format @@ -2026,490 +2082,514 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" -msgstr "" +msgid "Campbell" +msgstr "Campbell" #: schemas.cpp:7 #, kde-format -msgid "Green on Black" +msgid "Dark Pastels" msgstr "" #: schemas.cpp:8 #, kde-format -msgid "Linux Colors" -msgstr "Ngjyrat e Linux-it" +msgid "Green on Black" +msgstr "Gjelbër mbi të Zezë" #: schemas.cpp:9 #, kde-format -msgid "Red on Black" -msgstr "" +msgid "Linux Colors" +msgstr "Ngjyrat e Linux-it" #: schemas.cpp:10 #, kde-format +msgid "Red on Black" +msgstr "Kuq mbi të Zezë" + +#: schemas.cpp:11 +#, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" -msgstr "" +msgstr "Bardhë mbi të Zezë" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" -msgstr "" +msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgctxt "@item:intext Search options" +#| msgid "Search:" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Kërko:" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 -#, kde-format +#: session/Session.cpp:443 +#, fuzzy, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " -msgstr "" +msgstr "Kujdes" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New &Window" msgid "Show session" msgstr "Dritare e &Re" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 -#, kde-format +#: session/Session.cpp:1133 +#, fuzzy, kde-format msgctxt "@info:shell This session is done" msgid "Finished" -msgstr "" +msgstr "Përfunduar" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Progresi i ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, fuzzy, kde-format #| msgid "New &Window" msgid "Konsole" msgstr "Dritare e &Re" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" -msgstr "" +msgstr "Kërko për '%1' me" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "New &Window" msgid "&Close Session" msgstr "Dritare e &Re" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" -msgstr "" +msgstr "Kopjo" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Split View" msgid "Split View Left-Right" -msgstr "Ndaj Pamjen" +msgstr "Ndaje Pamjen &Majtas/Djathtas" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Split View" msgid "Split View Top-Bottom" -msgstr "Ndaj Pamjen" +msgstr "Ndaje Pamjen Lart/Poshtë" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kopjo Hyrjen" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kopjo Hyrjen" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Ngjit Përzgjedhjen" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" -msgstr "" +msgstr "Zgjidhi të &Gjitha" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "Select &Mode" msgstr "Ngjit Përzgjedhjen" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Clear Scrollback" msgid "Adjust Scrollback..." msgstr "Pastro Kthimin Mbrapsht" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Pastro Kthimin Mbrapsht" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Modifiko Profilin" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Previous Profile" msgstr "Modifiko Profilin" -#: session/SessionController.cpp:765 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:803 +#, kde-format msgid "Switch Profile" -msgstr "Modifiko Profilin" +msgstr "Ndërro Profilin" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" -msgstr "" +msgstr "Vendos &Kodimin" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 -#, kde-format +#: session/SessionController.cpp:857 +#, fuzzy, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" -msgstr "" +msgstr " [Vetëm lexim]" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Riemërto Tabelën..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" -msgstr "" +msgstr "&Asnjë" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Zmadho Gërmat" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Zvogëlo Gërmat" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Dërgo Sinjal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 -#, fuzzy, kde-format -#| msgid "&Close Tab" +#: session/SessionController.cpp:967 +#, kde-format msgid "&Continue Task" -msgstr "&Mbylle Tabelën" +msgstr "&Vazhdoni detyrën" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Create New Profile..." -msgstr "Modifiko Profilin" +msgstr "Krijoni Profil të Ri" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Edit Current Profile..." msgstr "Modifiko Profilin" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Konfirmo Mbylljen" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Mbylle Tabelën" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2517,20 +2597,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2553,145 +2633,173 @@ msgctxt "@title:window" msgid "Configure" msgstr "Konfiguro" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Përzgjidhi të gjitha" +#| msgctxt "@info:tooltip" +#| msgid "Open a new tab" +msgid "Force new tabs" +msgstr "Hap një skedë të re" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 -#, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, kde-format +#: settings/GeneralSettings.ui:112 +#, fuzzy, kde-format msgid "Notifications:" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" +msgstr "Njoftime" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, fuzzy, kde-format msgid "Search backwards" +msgstr "Kërko mbrapsht." + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +msgid "Case sensitive" +msgstr "I &Ndjeshëm Ndaj Madhësisë së Gërmave" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Përzgjidhi të gjitha" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Kërko:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2716,72 +2824,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Përzgjidhi të gjitha" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2789,91 +2935,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2885,29 +3037,27 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" -msgstr "" +msgstr " MB" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/PartInfo.ui:17 @@ -2929,10 +3079,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, newProfileButton) #: settings/ProfileSettings.ui:54 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#, kde-format msgid "&New..." -msgstr "Modifiko Profilin" +msgstr "&I Ri..." #. i18n: ectx: property (toolTip), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:64 @@ -2943,10 +3092,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:67 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#, kde-format msgid "&Edit..." -msgstr "Modifiko Profilin" +msgstr "&Modifiko..." #. i18n: ectx: property (toolTip), widget (QPushButton, deleteProfileButton) #: settings/ProfileSettings.ui:77 @@ -2959,7 +3107,7 @@ msgstr "Modifiko Profilin" #: settings/ProfileSettings.ui:80 #, kde-format msgid "&Remove" -msgstr "" +msgstr "&Hiqe" #. i18n: ectx: property (toolTip), widget (QPushButton, setAsDefaultButton) #: settings/ProfileSettings.ui:90 @@ -2975,16 +3123,16 @@ msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, appearanceTab) #: settings/TabBarSettings.ui:39 -#, kde-format +#, fuzzy, kde-format msgctxt "@title:tab Tab bar settings" msgid "Appearance" -msgstr "" +msgstr "Paraqitja" #. i18n: ectx: property (text), widget (QLabel, showTabBarLabel) #: settings/TabBarSettings.ui:53 #, kde-format msgid "Show:" -msgstr "" +msgstr "Shfaq:" #. i18n: ectx: property (text), widget (QRadioButton, ShowTabBarWhenNeeded) #: settings/TabBarSettings.ui:63 @@ -2994,21 +3142,21 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowTabBar) #: settings/TabBarSettings.ui:73 -#, kde-format +#, fuzzy, kde-format msgid "Alwa&ys" -msgstr "" +msgstr "Gjithmonë" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideTabBar) #: settings/TabBarSettings.ui:83 #, kde-format msgid "&Never" -msgstr "" +msgstr "&Kurrë" #. i18n: ectx: property (text), widget (QLabel, positionLabel) #: settings/TabBarSettings.ui:109 -#, kde-format +#, fuzzy, kde-format msgid "Position:" -msgstr "" +msgstr "Pozicioni" #. i18n: ectx: property (text), widget (QRadioButton, Top) #: settings/TabBarSettings.ui:119 @@ -3058,136 +3206,157 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, None) #: settings/TabBarSettings.ui:205 -#, kde-format +#, fuzzy, kde-format msgctxt "Do not show a close button" msgid "None" -msgstr "" +msgstr "Asnjë" + +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Mbylle Tabelën" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, fuzzy, kde-format +#| msgctxt "@option:radio Always show the split header" +#| msgid "Always" +msgid "Always" +msgstr "Gjithmonë" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, fuzzy, kde-format +msgid "Never" +msgstr "Kurrë" #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 -#, kde-format +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 +#, fuzzy, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" -msgstr "" +msgstr "Të Ndryshme" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "&Mbylle Tabelën" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" -msgstr "" +msgstr "(asnjë)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" -msgstr "" +msgstr "Sjellja" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Mbylle Tabelën e Tanishme" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 -#, kde-format +#: settings/TabBarSettings.ui:466 +#, fuzzy, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" -msgstr "" +msgstr "Kurrë" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" -msgstr "" +msgstr "E vogël" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 -#, kde-format +#: settings/TabBarSettings.ui:512 +#, fuzzy, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" -msgstr "" +msgstr "Mesatare" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 -#, kde-format +#: settings/TabBarSettings.ui:522 +#, fuzzy, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" -msgstr "" +msgstr "E madhe" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" -msgstr "" +msgstr "Gjithmonë" #: settings/TemporaryFilesSettings.cpp:31 #, kde-format @@ -3214,30 +3383,30 @@ msgstr "Opsionet e Rrëshkitjes Mbrapsht" #. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseSpecifiedLocation) #: settings/TemporaryFilesSettings.ui:64 -#, kde-format +#, fuzzy, kde-format msgctxt "@option:radio Custom (file location); followed by text entry field" msgid "Custom:" -msgstr "" +msgstr "Përshtatur:" #. i18n: ectx: property (text), widget (QLabel, label) #: settings/ThumbnailsSettings.ui:17 #, kde-format msgid "Size:" -msgstr "" +msgstr "Madhësia:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_ThumbnailSize) #: settings/ThumbnailsSettings.ui:24 #, kde-format msgid "px" -msgstr "" +msgstr "px" #. i18n: ectx: property (text), widget (QLabel, label_3) #: settings/ThumbnailsSettings.ui:37 #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3254,21 +3423,21 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailShift) #: settings/ThumbnailsSettings.ui:70 -#, kde-format +#, fuzzy, kde-format msgid "Shift" -msgstr "" +msgstr "Shift" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailAlt) #: settings/ThumbnailsSettings.ui:77 #, kde-format msgid "Alt" -msgstr "" +msgstr "Alt" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ThumbnailCtrl) #: settings/ThumbnailsSettings.ui:84 #, kde-format msgid "Ctrl" -msgstr "" +msgstr "Ctrl" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableThumbnails) #: settings/ThumbnailsSettings.ui:93 @@ -3276,98 +3445,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Konfirmo Mbylljen" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 -#, kde-format +#: terminalDisplay/TerminalDisplay.cpp:2356 +#, fuzzy, kde-format msgid "Backspace" -msgstr "" +msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Konfirmo Mbylljen" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Ngjit Përzgjedhjen" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" -msgstr "" +msgstr "&Anullo" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Ngjit Përzgjedhjen" -#: ViewManager.cpp:120 -#, fuzzy, kde-format -#| msgid "Split View" +#: ViewManager.cpp:124 +#, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Ndaj Pamjen" -#: ViewManager.cpp:127 -#, kde-format +#: ViewManager.cpp:131 +#, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" -msgstr "" +msgstr "Ndaje Pamjen &Majtas/Djathtas" -#: ViewManager.cpp:135 -#, kde-format +#: ViewManager.cpp:139 +#, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" -msgstr "" +msgstr "Ndaje Pamjen Lart/Poshtë" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Mbylle Tabelën e Tanishme" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" -msgstr "Mbylle Tabelën e Tanishme" +msgstr "Ndaje Tabelën e Tanishme" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "&Mbylle Tabelën" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Edit Profile" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Modifiko Profilin" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:312 -#, kde-format -msgctxt "@action:inmenu" -msgid "Toggle zoom-maximize current view" -msgstr "" - -#: ViewManager.cpp:320 -#, kde-format -msgctxt "@action Shortcut entry" -msgid "Move tab to the right" -msgstr "" - #: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:328 +#, kde-format +msgctxt "@action:inmenu" +msgid "Toggle zoom-maximize current view" +msgstr "" + +#: ViewManager.cpp:336 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Move tab to the right" +msgstr "" + +#: ViewManager.cpp:343 +#, kde-format +msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3634,7 +3816,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3642,13 +3824,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3663,38 +3845,38 @@ msgstr "" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierShift) #: widgets/EditProfileAdvancedPage.ui:51 -#, kde-format +#, fuzzy, kde-format msgctxt "key on keyboard" msgid "Shift" -msgstr "" +msgstr "Shift" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierCtrl) #: widgets/EditProfileAdvancedPage.ui:70 #, kde-format msgctxt "key on keyboard" msgid "Ctrl" -msgstr "" +msgstr "Ctrl" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierAlt) #: widgets/EditProfileAdvancedPage.ui:89 #, kde-format msgctxt "key on keyboard" msgid "Alt" -msgstr "" +msgstr "Alt" #. i18n: ectx: property (text), widget (QToolButton, urlHintsModifierMeta) #: widgets/EditProfileAdvancedPage.ui:108 #, kde-format msgctxt "key on keyboard" msgid "Meta" -msgstr "" +msgstr "Meta" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/EditProfileAdvancedPage.ui:154 -#, kde-format +#, fuzzy, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous:" -msgstr "" +msgstr "Të Ndryshme" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableReverseUrlHints) #: widgets/EditProfileAdvancedPage.ui:164 @@ -3744,8 +3926,20 @@ msgstr "" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgctxt "@item:intable The session index" #| msgid "Number" @@ -3753,25 +3947,25 @@ msgid "Line Numbers:" msgstr "Numër" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" -msgstr "" +msgstr "&Kurrë" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" -msgstr "" +msgstr "&Gjithmonë" #. i18n: ectx: attribute (title), widget (QWidget, colorSchemeTab) #: widgets/EditProfileAppearancePage.ui:36 @@ -3791,7 +3985,7 @@ msgstr "" #, kde-format msgctxt "@action:button Create an alternate color scheme" msgid "New..." -msgstr "" +msgstr "Të re..." #. i18n: ectx: property (toolTip), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:79 @@ -3804,12 +3998,11 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#, kde-format msgid "Edit..." -msgstr "Modifiko Profilin" +msgstr "Redakto..." #. i18n: ectx: property (toolTip), widget (QPushButton, removeColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:89 @@ -3829,20 +4022,20 @@ msgstr "" #: widgets/EditProfileKeyboardPage.ui:93 #, kde-format msgid "Defaults" -msgstr "" +msgstr "Parazgjedhje" #. i18n: ectx: property (text), widget (QLabel, label_7) #: widgets/EditProfileAppearancePage.ui:135 #, kde-format msgid "Font:" -msgstr "" +msgstr "Gërma:" #. i18n: ectx: property (text), widget (QPushButton, chooseFontButton) #: widgets/EditProfileAppearancePage.ui:167 #, kde-format msgctxt "@action:button open a dialog with list of fonts" msgid "Choose..." -msgstr "" +msgstr "Zgjidhni..." #. i18n: ectx: property (text), widget (QCheckBox, antialiasTextButton) #: widgets/EditProfileAppearancePage.ui:174 @@ -3859,12 +4052,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -3899,7 +4098,7 @@ msgstr "" #, kde-format msgctxt "A solid rectangular" msgid "Block" -msgstr "" +msgstr "Tullë" #. i18n: ectx: property (text), widget (QRadioButton, cursorShapeIBeam) #: widgets/EditProfileAppearancePage.ui:249 @@ -3913,15 +4112,14 @@ msgstr "" #, kde-format msgctxt "A hortizonal line on the bottom edge" msgid "Underline" -msgstr "" +msgstr "Nënvizuar" #. i18n: ectx: property (text), widget (QLabel, label_3) #: widgets/EditProfileAppearancePage.ui:291 -#, fuzzy, kde-format -#| msgid "Color 1" +#, kde-format msgctxt "Cursor color options" msgid "Color:" -msgstr "Ngjyra 1" +msgstr "Ngjyra:" #. i18n: ectx: property (toolTip), widget (QRadioButton, autoCursorColorButton) #: widgets/EditProfileAppearancePage.ui:307 @@ -3963,7 +4161,7 @@ msgstr "" #: widgets/EditProfileAppearancePage.ui:393 #, kde-format msgid "Text:" -msgstr "" +msgstr "Teksti:" #. i18n: ectx: property (toolTip), widget (KColorButton, customTextColorSelectButton) #: widgets/EditProfileAppearancePage.ui:406 @@ -3984,30 +4182,43 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" +msgstr "I Aktivizuar" + +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +msgid "Animation:" +msgstr "Pozicioni" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 -#, kde-format +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 +#, fuzzy, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" -msgstr "" +msgstr "Të Ndryshme" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 -#, fuzzy, kde-format -#| msgid "New &Window" +#: widgets/EditProfileAppearancePage.ui:510 +#, kde-format msgid "Window:" -msgstr "Dritare e &Re" +msgstr "Dritare:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4015,147 +4226,145 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 -#, fuzzy, kde-format -#| msgid "Color 1" +#: widgets/EditProfileAppearancePage.ui:569 +#, kde-format msgctxt "Border color options" msgid "Color:" -msgstr "Ngjyra 1" +msgstr "Ngjyra:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Inactive Terminals:" msgstr "&Mbylle Tabelën" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 -#, fuzzy, kde-format -#| msgid "&Close Tab" +#: widgets/EditProfileAppearancePage.ui:617 +#, kde-format msgid "Active Terminals:" -msgstr "&Mbylle Tabelën" +msgstr "Terminalet Aktive:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" -msgstr "" +msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" -msgstr "" +msgstr "Kufiri" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4163,43 +4372,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4207,96 +4416,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Modifiko Profilin" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" -msgstr "" +msgstr "Të Përgjithshme" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" -msgstr "" +msgstr "Tabelat" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" -msgstr "" +msgstr "Pamja" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, fuzzy, kde-format #| msgid "No scrollback" msgid "Scrolling" msgstr "Pa rrëshkitje" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" -msgstr "" +msgstr "Tastierë" -#: widgets/EditProfileDialog.cpp:152 -#, kde-format +#: widgets/EditProfileDialog.cpp:156 +#, fuzzy, kde-format msgid "Key bindings" -msgstr "" +msgstr "Lidhjet e tasteve" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" -msgstr "" +msgstr "Miu" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" -msgstr "" +msgstr "Të Avancuara" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4305,150 +4514,154 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:420 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: widgets/EditProfileDialog.cpp:424 +#, kde-format msgid "Create New Profile" +msgstr "Krijoni Profil të Ri" + +#: widgets/EditProfileDialog.cpp:427 +#, fuzzy, kde-format +msgid "Edit Profile \"%1\"" msgstr "Modifiko Profilin" -#: widgets/EditProfileDialog.cpp:423 -#, kde-format -msgid "Edit Profile \"%1\"" -msgstr "" +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +msgid "None" +msgstr "Asnjë" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " "separate it from the number value." msgid " column" msgid_plural " columns" -msgstr[0] "" -msgstr[1] "" +msgstr[0] " shtyllë" +msgstr[1] " shtylla" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " "separate it from the number value." msgid " row" msgid_plural " rows" -msgstr[0] "" -msgstr[1] "" +msgstr[0] " rresht" +msgstr[1] " rreshta" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" -msgstr "" +msgstr "Zilja e sistemit" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "Ngjit Përzgjedhjen" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Modifiko Ambientin" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" -msgstr[0] "" -msgstr[1] "" +msgstr[0] " sekondë" +msgstr[1] " sekonda" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Get New..." msgstr "Modifiko Profilin" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Default for file type" msgstr "Modifiko Profilin" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4465,7 +4678,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4475,7 +4688,7 @@ msgstr "" #, fuzzy, kde-format #| msgid "Settings" msgid "General Settings" -msgstr "Parametrat" +msgstr "Parametrat e Përgjithshëm" #. i18n: ectx: property (toolTip), widget (QPushButton, iconSelectButton) #: widgets/EditProfileGeneralPage.ui:66 @@ -4508,7 +4721,7 @@ msgstr "Modifiko Profilin" #: widgets/EditProfileGeneralPage.ui:125 #, kde-format msgid "Command:" -msgstr "" +msgstr "Komanda:" #. i18n: ectx: property (toolTip), widget (QLineEdit, commandEdit) #: widgets/EditProfileGeneralPage.ui:138 @@ -4522,7 +4735,7 @@ msgstr "" #: widgets/EditProfileGeneralPage.ui:144 #, kde-format msgid "/bin/sh" -msgstr "" +msgstr "/bin/sh" #. i18n: ectx: property (text), widget (QLabel, label_9) #: widgets/EditProfileGeneralPage.ui:157 @@ -4555,28 +4768,55 @@ msgstr "" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, fuzzy, kde-format #| msgid "Edit Environment" msgid "Environment:" msgstr "Modifiko Ambientin" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Initial terminal si&ze:" msgstr "&Mbylle Tabelën" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4586,31 +4826,31 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4620,22 +4860,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" -msgstr "" +msgstr "Kurrë" #. i18n: ectx: property (text), widget (QRadioButton, semanticHintsURL) #. i18n: ectx: property (text), widget (QRadioButton, errorBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4646,35 +4886,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" -msgstr "" +msgstr "Gjithmonë" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Sfondi" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -4702,7 +4942,7 @@ msgstr "" #, kde-format msgctxt "@action:button Create an alternate key binding" msgid "New..." -msgstr "" +msgstr "Të re..." #. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton) #: widgets/EditProfileKeyboardPage.ui:70 @@ -4773,7 +5013,7 @@ msgstr "" #, fuzzy, kde-format #| msgid "Paste Selection" msgid "From clipboard" -msgstr "Ngjit Përzgjedhjen" +msgstr "&Nga Kujtesa" #. i18n: ectx: property (text), widget (QRadioButton, pasteFromX11SelectionButton) #: widgets/EditProfileMousePage.ui:160 @@ -5005,118 +5245,130 @@ msgstr "" #, fuzzy, kde-format #| msgid "No scrollback" msgid "Scrollback:" -msgstr "Pa rrëshkitje" +msgstr "Rrëshqitje mbrapa" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "i fshehur" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Scrollback Options" -msgid "Scrollbar position:" -msgstr "Opsionet e Rrëshkitjes Mbrapsht" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Scrollback Options" +msgid "Scrollbar position:" +msgstr "Opsionet e Rrëshkitjes Mbrapsht" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5144,13 +5396,12 @@ msgid "The threshold for continuous silence to be detected by Konsole" msgstr "" #: widgets/HistorySizeWidget.cpp:40 -#, fuzzy, kde-format -#| msgid "lines" +#, kde-format msgctxt "@label:textbox Unit of scrollback" msgid " line" msgid_plural " lines" -msgstr[0] "rreshta" -msgstr[1] "rreshta" +msgstr[0] "Rresht" +msgstr[1] "Vijë" #: widgets/HistorySizeWidget.cpp:57 #, kde-format @@ -5199,11 +5450,10 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton) #: widgets/HistorySizeWidget.ui:137 -#, fuzzy, kde-format -#| msgid "No scrollback" +#, kde-format msgctxt "Save all lines to the scrollback history" msgid "&Unlimited" -msgstr "Pa rrëshkitje" +msgstr "&Pa Kufi" #. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton) #: widgets/HistorySizeWidget.ui:172 @@ -5216,120 +5466,120 @@ msgstr "" #, kde-format msgctxt "Do not save any lines to the scrollback history" msgid "&None" -msgstr "" +msgstr "&Asnjë" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." -msgstr "Gjej:" +msgstr "&Gjej" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 -#, kde-format +#: widgets/IncrementalSearchBar.cpp:74 +#, fuzzy, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" -msgstr "" +msgstr "Tjetra" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 -#, kde-format +#: widgets/IncrementalSearchBar.cpp:84 +#, fuzzy, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" -msgstr "" +msgstr "E mëparshmja" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "I &Ndjeshëm Ndaj Madhësisë së Gërmave" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Mbylle shiritin e kërkimit" -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Përzgjidhi të gjitha" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format +#: widgets/IncrementalSearchBar.cpp:140 +#, fuzzy, kde-format msgctxt "@item:inmenu" msgid "Search backwards" -msgstr "" +msgstr "Kërko mbrapsht." -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5341,11 +5591,11 @@ msgstr "" msgid "Print Shell" msgstr "Shell" -#: widgets/RenameTabWidget.cpp:37 -#, kde-format +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 +#, fuzzy, kde-format msgctxt "@label:listbox No color selected" msgid "None" -msgstr "" +msgstr "Asnjë" #. i18n: ectx: property (toolTip), widget (QLineEdit, remoteTabTitleEdit) #: widgets/RenameTabWidget.ui:41 @@ -5380,6 +5630,13 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Ngjyra 1" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color 1" +msgid "&Activity Tab Color:" +msgstr "Ngjyra 1" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5433,9 +5690,9 @@ msgid "Command and arguments: %c" msgstr "" #: widgets/TabTitleFormatButton.cpp:48 -#, kde-format +#, fuzzy, kde-format msgid "Insert" -msgstr "" +msgstr "Shto" #: widgets/TabTitleFormatButton.cpp:73 #, kde-format @@ -5476,38 +5733,48 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Mbylle Tabelën" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" -msgstr "" +msgstr "Hap një skedë të re" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 #, fuzzy, kde-format -#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "S&hkëpute Tabelën" + +#: widgets/ViewContainer.cpp:70 +#, kde-format msgctxt "@info:tooltip" msgid "Close this tab" -msgstr "Mbylle shiritin e kërkimit" +msgstr "Mbylle këtë tabelë" -#: widgets/ViewContainer.cpp:94 -#, kde-format +#: widgets/ViewContainer.cpp:106 +#, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" -msgstr "" +msgstr "S&hkëpute Tabelën" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Riemërto Tabelën..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" -msgstr "&Mbylle Tabelën" +msgstr "Mbylle Tabelën" + +#, fuzzy +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "I &Ndjeshëm Ndaj Madhësisë së Gërmave" #, fuzzy #~| msgid "Open Link" diff --git a/local/recipes/kde/konsole/source/po/sr/konsole.po b/local/recipes/kde/konsole/source/po/sr/konsole.po index b6b3210aac..e9e9ca7363 100644 --- a/local/recipes/kde/konsole/source/po/sr/konsole.po +++ b/local/recipes/kde/konsole/source/po/sr/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2017-12-31 22:42+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -59,7 +59,7 @@ msgstr "Приказ" # >> @title:menu #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Подељен приказ" @@ -99,7 +99,7 @@ msgstr "Пр&епис" # >> @item:inlistbox #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -185,48 +185,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Сакриј траку менија, потиснувши подразумевану поставку." #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Прикажи траку језичака, потиснувши подразумевану поставку." #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Сакриј траку језичака, потиснувши подразумевану поставку." #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Прикажи траку језичака, потиснувши подразумевану поставку." + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Сакриј траку језичака, потиснувши подразумевану поставку." + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Покрени Конзолу преко целог екрана" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Искључи провидне позадине, чак и ако их систем подржава." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Списак расположивих профила." -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Наброји сва имена својстава профила и њихове типове (служи уз -p)." -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Измени вредност својства профила." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -236,7 +252,7 @@ msgstr "" "Наредба за извршавање. Ова опција хвата све наредне аргументе, тако да мора " "бити последња." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -244,13 +260,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Аргументи за наредбу." -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Faint)" @@ -270,157 +286,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1|/|$[ном %1]" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "испис" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "позадина" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "боја 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "боја 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "боја 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "боја 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "боја 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "боја 5" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "боја 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "боја 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "испис (изразит)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "позадина (изразита)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "боја 1 (изразита)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "боја 2 (изразита)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "боја 3 (изразита)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "боја 4 (изразита)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "боја 5 (изразита)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "боја 6 (изразита)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "боја 7 (изразита)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "боја 8 (изразита)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "испис (блед)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "позадина (бледа)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "боја 1 (бледа)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "боја 2 (бледа)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "боја 3 (бледа)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "боја 4 (бледа)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "боја 5 (бледа)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "боја 6 (бледа)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "боја 7 (бледа)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "боја 8 (бледа)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -686,6 +702,42 @@ msgstr "" msgid "AaZz09..." msgstr "АаШш09..." +# >> @item:inlistbox +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Local Host: %h" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "локални домаћин: %h" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "Name of the default/builtin profile" +#| msgid "Default" +msgid " [default]" +msgstr "Подразумевано" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + # >> @title:window #: CopyInputDialog.cpp:30 #, kde-format @@ -732,7 +784,7 @@ msgstr "" msgid "Copy Location" msgstr "Копирај унос у" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -766,14 +818,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Изабери фонт..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Show All Fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Приказуј све фонтове" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -815,18 +867,18 @@ msgstr "комбинација" msgid "Output" msgstr "излаз" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Нов списак свеза тастера" # >> @title:window -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Уређивање списка свеза тастера" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -834,7 +886,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -868,19 +920,19 @@ msgstr "Унос:" msgid "Output:" msgstr "Излаз:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Конзола" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Емулатор терминала" -#: main.cpp:190 +#: main.cpp:193 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "(c) 1997-2017, The Konsole Developers" @@ -888,49 +940,49 @@ msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997–2017, програмери Конзоле" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Курт Хинденбург" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "одржавалац, исправке грешака и побољшања" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Роберт Најт" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "претходни одржавалац, преношење на КДЕ‑4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Ларс Деле" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "првобитни аутор" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -938,56 +990,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "одржавалац, исправке грешака и побољшања" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "исправке грешака и побољшања" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -995,7 +1047,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "исправке грешака и побољшања" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1003,98 +1055,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Томас Драјбхолц" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Џекил Ву" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Валдо Бастијан" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Штефан Бинер" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Томас Драјбхолц" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "општа побољшања" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Крис Махејмер" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "исправке грешака" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Франческо Чекони" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Штефан Кулов" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "подршка за Соларис и историјат" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Александер Нојндорф" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "исправке грешака и убрзано покретање" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Питер Силва" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "побољшано обележавање" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Лоци Болони" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,13 +1156,13 @@ msgstr "" "угнежђена Конзола\n" "трака алатки и имена сесија" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "Давид Фор" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1120,25 +1172,25 @@ msgstr "" "угнежђена Конзола\n" "општа побољшавања" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Антонио Лароса Хименез" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "визуелни ефекти" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Матијас Етрих" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1148,135 +1200,135 @@ msgstr "" "кôд из пројекта Квт\n" "општа побољшања" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Ворвик Алисон" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "побољшања шема и избора текста" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Ден Пајлон" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "пребацивање на СГИ" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Кевин Стрит" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "пребацивање на ФриБСД" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Свен Фишер" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Дејл М. Флејвен" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Мартин Р. Џоунс" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Ларс Кнол" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Хвала многима другима.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Нови &језичак" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Умножи језичак" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Нови &прозор" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Затвори прозор" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Обележивачи" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Нова шема боја" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Управљај профилима..." # >> @action:inmenu -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Активирај мени" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1287,26 +1339,26 @@ msgstr[1] "У овом прозору раде %1 процеса, желите msgstr[2] "У овом прозору ради %1 процеса, желите ли заиста да га напустите?" msgstr[3] "У овом прозору ради један процес, желите ли заиста да га напустите?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Потврда затварања" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Затвори &прозор" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Затвори текући &језичак" # >! Plurals. -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 open tabs in this window. Do you still want to quit?" @@ -1317,43 +1369,43 @@ msgstr "" "напустите?|/|У овом прозору има %1 $[множ ^1 'отворен језичак' 'отворена " "језичка' 'отворених језичака'], желите ли заиста да га напустите?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Профили" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Опште" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1447,7 +1499,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1459,28 +1511,28 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Наредба:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1526,7 +1578,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1588,11 +1640,11 @@ msgstr "" # >> @title:window #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1654,96 +1706,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Двокликните да промените пречицу." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Не затварај аутоматски почетну сесију када се заврши." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Delete the selected profile(s)" msgid "Delete selected entry" @@ -1948,25 +2000,25 @@ msgstr "Опције излаза" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Наклоњено штампачу (црн текст, без позадине)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Скалирај излаз" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Подразумевани профил" @@ -2035,17 +2087,38 @@ msgid "Tab Properties" msgstr "" # >> @title:window -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Уписивање излаза из %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 није исправан УРЛ, излаз се не може сачувати." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2081,82 +2154,102 @@ msgstr "Поветарац" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Тамне пастеле" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Зелена на црној" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Боје Линукса" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Црвена на црној" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Осунчано" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Осунчано слабије" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Бела на црној" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Подразумевано (Икс‑фри86 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Конзола Линукса" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Конзола Солариса" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Веб претрага" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Унесите текст који треба потражити." + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Звоно у сесији „%1“" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Не могу да нађем наредбу: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Упозорење: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Не могу да нађем интерактивну шкољку за покретање." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2164,361 +2257,364 @@ msgid "" msgstr "" "Не могу да нађем %1, покрећем %2 уместо тога. Проверите поставке профила." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Не могу да извршим наредбу %1 са аргументима „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Тишина у сесији „%1“" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Затвори сесију" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"

              Управо је употребљен д‑бус метод sendText или runCommand. Из безбедносних разлога, можда не желите да ови методи буду јавни. У " -"том случају можете поново изградити Конзолу тако да су ови методи унутрашњи." -"

              Ово упозорење ће бити приказано само једном за овај примерак Конзоле." -"

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Завршено" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Програм „%1“ се срушио." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Програм „%1“ завршио је стањем %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Напредак з‑модема" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Активност у сесији „%1“" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Конзола" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Конзола не зна како да отвори обележивач: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Потражи „%1“ помоћу" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Подеси веб пречице..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Затвори сесију" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Отвори менаџер фајлова" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Подели приказ лево/десно" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Подели приказ горе/доле" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" # >> @title:window -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Копирање уноса" # >> @title:window -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Копирање уноса" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Налепи избор" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Веб претрага" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Изабери све" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Изабери &ред" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Изабери &ред" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Сачувај излаз &као..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Сачувај излаз &као..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Одштампај екран..." # rewrite-msgid: /Adjust/Configure/ -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Подеси препис..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Очисти препис" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Очисти препис и ресетуј" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Уреди профил" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Претходно" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Промени профил" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Постави &кодирање" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Преименуј језичак..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&све језичке у текућем прозору" # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&изабране језичке..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&нигде" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Копирај унос у" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Отпреми &з‑модемом..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Надгледај &активност" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Надгледај &активност" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Надгледај &тишину" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Надгледај &активност" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Повећај фонт" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Смањи фонт" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Пошаљи сигнал" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Суспендуј задатак" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Настави задатак" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Прекини везу" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Прекини задатак" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Обустави задатак" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Укини задатак" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Кориснички сигнал &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Кориснички сигнал &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "нови профил" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Уреди текући профил..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2527,7 +2623,7 @@ msgstr "" "У сесији се тренутно извршава један програм. Желите ли заиста да је " "затворите?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2536,19 +2632,19 @@ msgstr "" "У сесији се тренутно извршава програм „%1“. Желите ли заиста да је затворите?" # >> @title:window -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Потврда затварања" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Затвори језичак" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2557,38 +2653,41 @@ msgstr "" "Један програм у овој сесији неће да се укине. Желите ли заиста да га " "принудно укинете?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Програм ‘%1’ у овој сесији неће да се укине. Желите ли заиста да га принудно " "укинете?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" # rewrite-msgid: /Save// -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Преузимање з‑модемом у..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2599,13 +2698,13 @@ msgstr "" "софтвера за з‑модем.

              Инсталирајте пакет rzsz или lrzsz.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              У текућој сесији се већ одвија з‑модемски пренос фајла.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2615,7 +2714,7 @@ msgstr "" "tt> или lrzsz.

              " # >> @title:window -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Избор фајлова за отпремање з‑модемом" @@ -2640,151 +2739,179 @@ msgctxt "@title:window" msgid "Configure" msgstr "Потврда затварања" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Веб претрага" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Активирај убрзиваче у менију" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Ако је укључено, игноришу се поставке профила." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Прикажи наслов прозор на насловној траци" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Поклапај регуларним изразима" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Употреби постојећи процес за покретање Конзоле ако је могуће" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Свих прозори Конзоле у једном процесу" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Истакни сва поклапања" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Да ли претрага разликује величину слова." +msgid "If enabled, profile settings will be ignored" +msgstr "Ако је укључено, игноришу се поставке профила." -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "Разликуј величину слова" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgid "Force new tabs" +msgstr "&Откачи језичак" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "Notifications" msgid "Notifications:" msgstr "Обавештења" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Сви дијалози ће бити поново приказивани." - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Активирај све поруке „не питај више“" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Треба ли тражити почев од дна." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Тражи уназад" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Да ли претрага разликује величину слова." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "Разликуј величину слова" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Истакни сва поклапања" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Веб претрага" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Треба ли тражити почев од дна." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Активирај убрзиваче у менију" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Сви дијалози ће бити поново приказивани." + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Активирај све поруке „не питај више“" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Прикажи наслов прозор на насловној траци" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Поклапај регуларним изразима" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2809,71 +2936,110 @@ msgstr "Тренутна величина прозора по следећем msgid "The window size will be saved upon exiting Konsole" msgstr "Величина прозора ће бити сачувана по напуштању Конзоле." -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Употреби постојећи процес за покретање Конзоле ако је могуће" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Претрага разликује величину слова" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Истакни све поклопљено претрагом" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Треба ли истицати нађени текст." #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2881,93 +3047,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Управљање видљивошћу целе траке језичака" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "Управљање видљивошћу целе траке језичака" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Управљање положајем траке језичака" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Управљање визуелним стилом траке језичака" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Кориснички дефинисан ЦСС фајл за траку језичака" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "ЦСС фајл за стил траке језичака" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Управљање видљивошћу брзих дугмади на траци језичака" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Управљање видљивошћу брзих дугмади на траци језичака" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Управљање смештањем новог језичка" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Користи системску локацију за фајлове преписа" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Користи локацију према кориснику за фајлове преписа" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Користи задату локацију фасцикле за фајлове преписа" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Користи ову фасциклу за фајлове преписа" @@ -2980,26 +3153,24 @@ msgid "Enable memory monitoring:" msgstr "Надгледање језичака" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3186,9 +3357,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&нигде" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Затвори језичак" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3197,35 +3387,35 @@ msgstr "Разно" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "Дугме за отварање/затварање језичка" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, fuzzy, kde-format #| msgid "Expand Individual Tab Widths to Full Window" msgid "Expand individual tab widths to full window" msgstr "Прошири појединачне језичке на цео прозор" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "Кориснички дефинисан опис стила" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3233,19 +3423,19 @@ msgid "Behavior" msgstr "Понашање" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Close Current &Tab" @@ -3253,69 +3443,69 @@ msgid "After current &tab" msgstr "Затвори текући &језичак" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" # >> @title:menu #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Подељен приказ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menubar by default" msgid "Show Header:" msgstr "Подразумевано прикажи траку менија" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3368,8 +3558,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" # >> @action:inmenu @@ -3414,12 +3604,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Активирај убрзиваче у менију" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Величина: %1×%2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3429,52 +3619,52 @@ msgstr[2] "Желите ли заиста да налепите %1 знаков msgstr[3] "Желите ли заиста да налепите %1 знак?" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Потврда налепљивања" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3482,7 +3672,7 @@ msgid "" msgstr "" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" @@ -3490,27 +3680,27 @@ msgid "Confirm Paste" msgstr "Потврда налепљивања" # >> @option:radio Cursor options -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Курсор прати боју знака под њим" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Налепи избор" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been
              заустављен притиском Ctrl+S. Притисните Ctrl+Q да " "продужи. Кликните овде да уклоните поруку." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Промени &фасциклу на" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Налепи локацију" # >> @title:menu -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Подељен приказ" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Подели приказ лево/десно" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Подели приказ горе/доле" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3569,7 +3759,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Подели приказ горе/доле" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3577,7 +3767,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Подели приказ лево/десно" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3585,43 +3775,43 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Подели приказ горе/доле" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Рашири приказ" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Скупи приказ" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3629,7 +3819,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "От&качи текући језичак" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3637,20 +3827,20 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "От&качи текући језичак" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Следећи језичак" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Претходни језичак" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" @@ -3658,75 +3848,91 @@ msgid "Focus Above Terminal" msgstr "изнад зоне терминала" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "испод зоне терминала" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "изнад зоне терминала" + +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "испод зоне терминала" + # rewrite-msgid: /Last/Last Viewed/ -#: ViewManager.cpp:282 +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Претходно приказани језичак" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3734,7 +3940,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Помери језичак удесно" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3742,59 +3948,59 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Помери језичак улево" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Пребаци на језичак %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3807,7 +4013,7 @@ msgstr "" "Проблем при уписивању излаза.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3820,13 +4026,13 @@ msgstr "" "Проблем при уписивању излаза.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3931,30 +4137,42 @@ msgstr "Подразумевано кодирање знакова:" msgid "Shortcut for peeking the primary screen:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + # >> @item:inlistbox #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "број сесије: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3993,7 +4211,7 @@ msgstr "Уреди изабрану шему боја" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4051,14 +4269,23 @@ msgstr "Цртај изразите боје подебљаним фонтом" # skip-rule: t-line #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Користи избрани фонт за линијске знакове уместо уграђеног кода" # skip-rule: t-line #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Користи линијске знакове из фонта" @@ -4200,16 +4427,34 @@ msgid "Make the cursor blink regularly" msgstr "Курсор који стално трепће" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +# >> @action:inmenu +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Активирај мени" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Курсор који стално трепће" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4217,14 +4462,14 @@ msgid "Miscellaneous" msgstr "Разно" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Прозор" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4234,26 +4479,26 @@ msgstr "" "промене величине" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Напомена о величини терминала по промени величине" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" # >! @title:column #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4262,14 +4507,14 @@ msgid "Color:" msgstr "боја" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Изабери боју за исцртавање курсора" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" @@ -4277,14 +4522,14 @@ msgstr "Величина терминала" # >> @item:inlistbox Tab bar position #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgid "Active Terminals:" msgstr "изнад зоне терминала" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4292,97 +4537,97 @@ msgid "Terminal contents" msgstr "Могућности терминала" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Проред:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Број пиксела између два реда." #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" # >> @option:check #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Двосмерно рендеровање текста" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4390,46 +4635,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Курсор прати боју знака под њим" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Фонт" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4440,99 +4685,99 @@ msgstr "" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Двосмерно рендеровање текста" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Курсор прати боју знака под њим" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Уреди профил" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Опште" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Језичци" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Изглед" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Клизање" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Тастатура" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Свезе тастера" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Миш" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Напредно" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, fuzzy, kde-kuit-format #| msgid "" #| "

              Konsole does not have permission to save this profile to:
              " @@ -4549,33 +4794,33 @@ msgstr "" "могли да сачувате поставке, треба или да измените дозволе поставног фајла " "профила, или да промените име профила како би се сачувао као нови профил.

              " -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "

              A profile with this name already exists.

              " msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "

              Профил са овим именом већ постоји.

              " -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" # >> @title:window -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4584,7 +4829,7 @@ msgstr[1] "Уређивање %1 профила: %2" msgstr[2] "Уређивање %1 профила: %2" msgstr[3] "Уређивање профила: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -4592,12 +4837,20 @@ msgid "Create New Profile" msgstr "нови профил" # >> @title:window -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Уређивање профила „%1“" -#: widgets/EditProfileDialog.cpp:514 +# >> @action:inmenu Copy Input To +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&нигде" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgid "Columns" msgctxt "" @@ -4610,7 +4863,7 @@ msgstr[1] "Колоне" msgstr[2] "Колоне" msgstr[3] "Колоне" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4622,47 +4875,47 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications" msgid "System Notifications" msgstr "Обавештења" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "визуелни ефекти" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Постави изабрани профил као подразумевани за нове сесије" # >> @title:window -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Уређивање окружења" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Једна променљива окружења по реду." -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4673,34 +4926,34 @@ msgstr[2] " секунди" msgstr[3] " секунда" # >> @title:window -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Избор почетне фасцикле" # >> @action:button New # >! Needs contexts, one for color schemes, another for key bindings -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Нова..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "Ова шема боја има провидну позадину, што површ изгледа да не подржава" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4709,13 +4962,13 @@ msgstr "" "Конзола је покренута пре него што су ефекти површи били укључени. Морате је " "поново покренути да бисте добили провидну позадину." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Подразумевани профил" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4732,7 +4985,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4828,27 +5081,56 @@ msgstr "Изаберите почетну фасциклу." msgid "Start in same directory as current session" msgstr "Почни у фасцикли текућег језичка" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +# >> @option:check +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Почни у фасцикли текућег језичка" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Окружење:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Уреди списак променљивих окружења и придружених вредности" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "Величина терминала" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, fuzzy, kde-format #| msgid "" #| "Configure Konsole->General->Use current window size on next startup must " @@ -4863,7 +5145,7 @@ msgstr "" "→Опште→Тренутна величина прозора по следећем покретању“." #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4871,25 +5153,25 @@ msgid "&Terminal bell mode:" msgstr "Емулатор терминала" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4899,9 +5181,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4912,9 +5194,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4925,22 +5207,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4948,13 +5230,13 @@ msgid "Red error background:" msgstr "позадина" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5327,54 +5609,95 @@ msgid "Scrollback:" msgstr "Препис" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Клизање странице нагоре/надоле" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Отклизај страницу пола висине прозора" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half Page Height" msgid "Half screen heigh&t" msgstr "Пола висине странице" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Отклизај страницу целу висину прозора" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full Page Height" msgid "F&ull screen height" msgstr "Цела висина странице" -# >> @label:listbox Tab Bar Options -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Положај:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Клизачка трака на десној страни терминалског прозора" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5382,67 +5705,38 @@ msgid "Ri&ght side" msgstr "На десној страни" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Клизачка трака на левој страни терминалског прозора" # >! Add a trailing space, slider range text looks stuck to the label. #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Величина текста: " -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +# >> @label:listbox Tab Bar Options +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Положај:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5570,7 +5864,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&нигде" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5578,110 +5872,112 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Нађи:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Унесите текст који треба потражити." -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Следеће" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Нађи следеће поклапање са задатим изразом" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Претходно" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Нађи претходно поклапање са задатим изразом" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Прикажи мени опција" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Затвори траку претраге" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Разликуј величину слова" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Да ли претрага разликује величину слова." -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Прикажи мени опција" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Затвори траку претраге" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Поклопи регуларни израз" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Истакни сва поклапања" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Треба ли истицати нађени текст." -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Тражи уназад" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Треба ли тражити почев од дна." -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Треба ли тражити почев од дна." -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Тражи тренутно задати израз почев од дна" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5694,7 +5990,7 @@ msgid "Print Shell" msgstr "Штампање шкољке" # >> @action:inmenu Copy Input To -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5742,6 +6038,15 @@ msgstr "Формат наслова нормалног језичка" msgid "Tab Co&lor:" msgstr "боја" +# >! @title:column +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "боја" + # >> @item:inlistbox #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5852,7 +6157,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "изнад зоне терминала" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5860,33 +6165,57 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Откачи језичак" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Откачи језичак" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Затвори језичак" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Откачи језичак" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Преименуј језичак..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Затвори језичак" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "

              Управо је употребљен д‑бус метод sendText или runCommand. Из безбедносних разлога, можда не желите да ови методи буду јавни. " +#~ "У том случају можете поново изградити Конзолу тако да су ови методи " +#~ "унутрашњи.

              Ово упозорење ће бити приказано само једном за овај " +#~ "примерак Конзоле.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Разликуј величину слова" + # >> @action:inmenu Copy Input To #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" diff --git a/local/recipes/kde/konsole/source/po/sr@ijekavian/konsole.po b/local/recipes/kde/konsole/source/po/sr@ijekavian/konsole.po index ef63326731..00064d1ad2 100644 --- a/local/recipes/kde/konsole/source/po/sr@ijekavian/konsole.po +++ b/local/recipes/kde/konsole/source/po/sr@ijekavian/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2017-12-31 22:42+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -59,7 +59,7 @@ msgstr "Приказ" # >> @title:menu #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Подијељен приказ" @@ -99,7 +99,7 @@ msgstr "Пр&епис" # >> @item:inlistbox #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -185,48 +185,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Сакриј траку менија, потиснувши подразумевану поставку." #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Прикажи траку језичака, потиснувши подразумевану поставку." #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Сакриј траку језичака, потиснувши подразумевану поставку." #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Прикажи траку језичака, потиснувши подразумевану поставку." + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Сакриј траку језичака, потиснувши подразумевану поставку." + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Покрени Конзолу преко целог екрана" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Искључи провидне позадине, чак и ако их систем подржава." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Списак расположивих профила." -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Наброји сва имена својстава профила и њихове типове (служи уз -p)." -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Измијени вриједност својства профила." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -236,7 +252,7 @@ msgstr "" "Наредба за извршавање. Ова опција хвата све наредне аргументе, тако да мора " "бити последња." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -244,13 +260,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Аргументи за наредбу." -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Faint)" @@ -270,157 +286,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1|/|$[ном %1]" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "испис" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "позадина" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "боја 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "боја 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "боја 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "боја 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "боја 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "боја 5" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "боја 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "боја 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "испис (изразит)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "позадина (изразита)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "боја 1 (изразита)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "боја 2 (изразита)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "боја 3 (изразита)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "боја 4 (изразита)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "боја 5 (изразита)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "боја 6 (изразита)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "боја 7 (изразита)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "боја 8 (изразита)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "испис (блед)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "позадина (бледа)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "боја 1 (бледа)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "боја 2 (бледа)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "боја 3 (бледа)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "боја 4 (бледа)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "боја 5 (бледа)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "боја 6 (бледа)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "боја 7 (бледа)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "боја 8 (бледа)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -686,6 +702,42 @@ msgstr "" msgid "AaZz09..." msgstr "АаШш09..." +# >> @item:inlistbox +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Local Host: %h" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "локални домаћин: %h" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "Name of the default/builtin profile" +#| msgid "Default" +msgid " [default]" +msgstr "Подразумијевано" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + # >> @title:window #: CopyInputDialog.cpp:30 #, kde-format @@ -732,7 +784,7 @@ msgstr "" msgid "Copy Location" msgstr "Копирај унос у" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -766,14 +818,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Изабери фонт..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Show All Fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Приказуј све фонтове" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -815,18 +867,18 @@ msgstr "комбинација" msgid "Output" msgstr "излаз" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Нов списак свеза тастера" # >> @title:window -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Уређивање списка свеза тастера" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -834,7 +886,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -868,19 +920,19 @@ msgstr "Унос:" msgid "Output:" msgstr "Излаз:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Конзола" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Емулатор терминала" -#: main.cpp:190 +#: main.cpp:193 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "(c) 1997-2017, The Konsole Developers" @@ -888,49 +940,49 @@ msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997–2017, програмери Конзоле" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Курт Хинденбург" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "одржавалац, исправке грешака и побољшања" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Роберт Најт" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "претходни одржавалац, преношење на КДЕ‑4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Ларс Деле" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "првобитни аутор" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -938,56 +990,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "одржавалац, исправке грешака и побољшања" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "исправке грешака и побољшања" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -995,7 +1047,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "исправке грешака и побољшања" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1003,98 +1055,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Томас Драјбхолц" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Џекил Ву" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Валдо Бастијан" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Штефан Бинер" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Томас Драјбхолц" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "општа побољшања" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Крис Махејмер" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "исправке грешака" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Франческо Чекони" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Штефан Кулов" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "подршка за Соларис и историјат" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Александер Нојндорф" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "исправке грешака и убрзано покретање" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Питер Силва" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "побољшано обиљежавање" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Лоци Болони" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,13 +1156,13 @@ msgstr "" "угнијежђена Конзола\n" "трака алатки и имена сесија" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "Давид Фор" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1120,25 +1172,25 @@ msgstr "" "угнијежђена Конзола\n" "општа побољшавања" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Антонио Лароса Хименез" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "визуелни ефекти" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Матијас Етрих" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1148,135 +1200,135 @@ msgstr "" "кôд из пројекта Квт\n" "општа побољшања" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Ворвик Алисон" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "побољшања шема и избора текста" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Ден Пајлон" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "пребацивање на СГИ" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Кевин Стрит" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "пребацивање на ФриБСД" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Свен Фишер" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Дејл М. Флејвен" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Мартин Р. Џоунс" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Ларс Кнол" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Хвала многима другима.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Нови &језичак" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Умножи језичак" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Нови &прозор" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Затвори прозор" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Обиљеживачи" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Нова шема боја" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Управљај профилима..." # >> @action:inmenu -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Активирај мени" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1287,26 +1339,26 @@ msgstr[1] "У овом прозору раде %1 процеса, желите msgstr[2] "У овом прозору ради %1 процеса, желите ли заиста да га напустите?" msgstr[3] "У овом прозору ради један процес, желите ли заиста да га напустите?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Потврда затварања" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Затвори &прозор" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Затвори текући &језичак" # >! Plurals. -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 open tabs in this window. Do you still want to quit?" @@ -1317,43 +1369,43 @@ msgstr "" "напустите?|/|У овом прозору има %1 $[множ ^1 'отворен језичак' 'отворена " "језичка' 'отворених језичака'], желите ли заиста да га напустите?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Профили" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Опште" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1447,7 +1499,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1459,28 +1511,28 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Наредба:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1526,7 +1578,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1588,11 +1640,11 @@ msgstr "" # >> @title:window #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1654,96 +1706,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Двокликните да промените пречицу." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Не затварај аутоматски почетну сесију када се заврши." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Delete the selected profile(s)" msgid "Delete selected entry" @@ -1948,25 +2000,25 @@ msgstr "Опције излаза" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Наклоњено штампачу (црн текст, без позадине)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Скалирај излаз" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Подразумијевани профил" @@ -2035,17 +2087,38 @@ msgid "Tab Properties" msgstr "" # >> @title:window -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Уписивање излаза из %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 није исправан УРЛ, излаз се не може сачувати." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2081,82 +2154,102 @@ msgstr "Поветарац" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Тамне пастеле" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Зелена на црној" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Боје Линукса" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Црвена на црној" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Осунчано" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Осунчано слабије" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Бијела на црној" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Подразумијевано (Икс‑фри86 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Конзола Линукса" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Конзола Солариса" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Веб претрага" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Унесите текст који треба потражити." + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Звоно у сесији „%1“" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Не могу да нађем наредбу: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Упозорење: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Не могу да нађем интерактивну шкољку за покретање." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2164,361 +2257,364 @@ msgid "" msgstr "" "Не могу да нађем %1, покрећем %2 умјесто тога. Провјерите поставке профила." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Не могу да извршим наредбу %1 са аргументима „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Тишина у сесији „%1“" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Затвори сесију" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"

              Управо је употребљен д‑бус метод sendText или runCommand. Из безбедносних разлога, можда не желите да ови методи буду јавни. У " -"том случају можете поново изградити Конзолу тако да су ови методи унутрашњи." -"

              Ово упозорење ће бити приказано само једном за овај примерак Конзоле." -"

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Завршено" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Програм „%1“ се срушио." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Програм „%1“ завршио је стањем %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Напредак з‑модема" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Активност у сесији „%1“" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Конзола" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Конзола не зна како да отвори обиљеживач: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Потражи „%1“ помоћу" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Подеси веб пречице..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Затвори сесију" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Отвори менаџер фајлова" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Подијели приказ лијево/десно" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Подијели приказ горе/доље" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" # >> @title:window -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Копирање уноса" # >> @title:window -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Копирање уноса" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Налијепи избор" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Веб претрага" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Изабери све" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Изабери &ред" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Изабери &ред" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Сачувај излаз &као..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Сачувај излаз &као..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Одштампај екран..." # rewrite-msgid: /Adjust/Configure/ -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Подеси препис..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Очисти препис" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Очисти препис и ресетуј" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Уреди профил" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Претходно" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Промијени профил" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Постави &кодирање" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Преименуј језичак..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&све језичке у текућем прозору" # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&изабране језичке..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&нигдје" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Копирај унос у" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Отпреми &з‑модемом..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Надгледај &активност" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Надгледај &активност" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Надгледај &тишину" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Надгледај &активност" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Повећај фонт" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Смањи фонт" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Пошаљи сигнал" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Суспендуј задатак" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Настави задатак" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Прекини везу" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Прекини задатак" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Обустави задатак" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Укини задатак" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Кориснички сигнал &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Кориснички сигнал &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "нови профил" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Уреди текући профил..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2527,7 +2623,7 @@ msgstr "" "У сесији се тренутно извршава један програм. Желите ли заиста да је " "затворите?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2536,19 +2632,19 @@ msgstr "" "У сесији се тренутно извршава програм „%1“. Желите ли заиста да је затворите?" # >> @title:window -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Потврда затварања" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Затвори језичак" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2557,38 +2653,41 @@ msgstr "" "Један програм у овој сесији неће да се укине. Желите ли заиста да га " "принудно укинете?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Програм ‘%1’ у овој сесији неће да се укине. Желите ли заиста да га принудно " "укинете?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" # rewrite-msgid: /Save// -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Преузимање з‑модемом у..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2599,13 +2698,13 @@ msgstr "" "софтвера за з‑модем.

              Инсталирајте пакет rzsz или lrzsz.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              У текућој сесији се већ одвија з‑модемски пренос фајла.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2615,7 +2714,7 @@ msgstr "" "tt> или lrzsz.

              " # >> @title:window -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Избор фајлова за отпремање з‑модемом" @@ -2640,151 +2739,179 @@ msgctxt "@title:window" msgid "Configure" msgstr "Потврда затварања" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Веб претрага" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Активирај убрзиваче у менију" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Ако је укључено, игноришу се поставке профила." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Прикажи наслов прозор на насловној траци" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Поклапај регуларним изразима" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Употреби постојећи процес за покретање Конзоле ако је могуће" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Свих прозори Конзоле у једном процесу" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Истакни сва поклапања" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Да ли претрага разликује величину слова." +msgid "If enabled, profile settings will be ignored" +msgstr "Ако је укључено, игноришу се поставке профила." -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "Разликуј величину слова" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgid "Force new tabs" +msgstr "&Откачи језичак" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "Notifications" msgid "Notifications:" msgstr "Обавештења" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Сви дијалози ће бити поново приказивани." - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Активирај све поруке „не питај више“" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Треба ли тражити почев од дна." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Тражи уназад" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Да ли претрага разликује величину слова." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "Разликуј величину слова" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Истакни сва поклапања" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Веб претрага" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Треба ли тражити почев од дна." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Активирај убрзиваче у менију" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Сви дијалози ће бити поново приказивани." + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Активирај све поруке „не питај више“" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Прикажи наслов прозор на насловној траци" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Поклапај регуларним изразима" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2809,71 +2936,110 @@ msgstr "Тренутна величина прозора по следећем msgid "The window size will be saved upon exiting Konsole" msgstr "Величина прозора ће бити сачувана по напуштању Конзоле." -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Употреби постојећи процес за покретање Конзоле ако је могуће" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Претрага разликује величину слова" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Истакни све поклопљено претрагом" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Треба ли истицати нађени текст." #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2881,93 +3047,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Управљање видљивошћу целе траке језичака" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "Управљање видљивошћу целе траке језичака" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Управљање положајем траке језичака" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Управљање визуелним стилом траке језичака" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Кориснички дефинисан ЦСС фајл за траку језичака" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "ЦСС фајл за стил траке језичака" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Управљање видљивошћу брзих дугмади на траци језичака" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Управљање видљивошћу брзих дугмади на траци језичака" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Управљање смештањем новог језичка" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Користи системску локацију за фајлове преписа" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Користи локацију према кориснику за фајлове преписа" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Користи задату локацију фасцикле за фајлове преписа" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Користи ову фасциклу за фајлове преписа" @@ -2980,26 +3153,24 @@ msgid "Enable memory monitoring:" msgstr "Надгледање језичака" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3186,9 +3357,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&нигдје" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Затвори језичак" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3197,35 +3387,35 @@ msgstr "Разно" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "Дугме за отварање/затварање језичка" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, fuzzy, kde-format #| msgid "Expand Individual Tab Widths to Full Window" msgid "Expand individual tab widths to full window" msgstr "Прошири појединачне језичке на цео прозор" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "Кориснички дефинисан опис стила" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3233,19 +3423,19 @@ msgid "Behavior" msgstr "Понашање" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Close Current &Tab" @@ -3253,69 +3443,69 @@ msgid "After current &tab" msgstr "Затвори текући &језичак" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" # >> @title:menu #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Подијељен приказ" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menubar by default" msgid "Show Header:" msgstr "Подразумевано прикажи траку менија" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3368,8 +3558,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" # >> @action:inmenu @@ -3414,12 +3604,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Активирај убрзиваче у менију" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Величина: %1×%2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3429,52 +3619,52 @@ msgstr[2] "Желите ли заиста да налепите %1 знаков msgstr[3] "Желите ли заиста да налепите %1 знак?" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Потврда налепљивања" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3482,7 +3672,7 @@ msgid "" msgstr "" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" @@ -3490,27 +3680,27 @@ msgid "Confirm Paste" msgstr "Потврда налепљивања" # >> @option:radio Cursor options -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Курсор прати боју знака под њим" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Налијепи избор" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been заустављен притиском Ctrl+S. Притисните Ctrl+Q да " "продужи. Кликните овде да уклоните поруку." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Промијени &фасциклу на" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Налијепи локацију" # >> @title:menu -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Подијељен приказ" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Подијели приказ лијево/десно" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Подијели приказ горе/доље" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3569,7 +3759,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Подијели приказ горе/доље" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3577,7 +3767,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Подијели приказ лијево/десно" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3585,43 +3775,43 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Подијели приказ горе/доље" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Рашири приказ" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Скупи приказ" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3629,7 +3819,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "От&качи текући језичак" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3637,20 +3827,20 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "От&качи текући језичак" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Следећи језичак" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Претходни језичак" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" @@ -3658,75 +3848,91 @@ msgid "Focus Above Terminal" msgstr "изнад зоне терминала" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "испод зоне терминала" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "изнад зоне терминала" + +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "испод зоне терминала" + # rewrite-msgid: /Last/Last Viewed/ -#: ViewManager.cpp:282 +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Претходно приказани језичак" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3734,7 +3940,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Помјери језичак удесно" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3742,59 +3948,59 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Помјери језичак улијево" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Пребаци на језичак %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3807,7 +4013,7 @@ msgstr "" "Проблем при уписивању излаза.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3820,13 +4026,13 @@ msgstr "" "Проблем при уписивању излаза.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3931,30 +4137,42 @@ msgstr "Подразумијевано кодирање знакова:" msgid "Shortcut for peeking the primary screen:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + # >> @item:inlistbox #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "број сесије: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3993,7 +4211,7 @@ msgstr "Уреди изабрану шему боја" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4051,14 +4269,23 @@ msgstr "Цртај изразите боје подебљаним фонтом" # skip-rule: t-line #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Користи избрани фонт за линијске знакове уместо уграђеног кода" # skip-rule: t-line #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Користи линијске знакове из фонта" @@ -4200,16 +4427,34 @@ msgid "Make the cursor blink regularly" msgstr "Курсор који стално трепће" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +# >> @action:inmenu +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Активирај мени" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Курсор који стално трепће" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4217,14 +4462,14 @@ msgid "Miscellaneous" msgstr "Разно" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Прозор" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4234,26 +4479,26 @@ msgstr "" "промене величине" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Напомена о величини терминала по промени величине" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" # >! @title:column #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4262,14 +4507,14 @@ msgid "Color:" msgstr "боја" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Изабери боју за исцртавање курсора" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" @@ -4277,14 +4522,14 @@ msgstr "Величина терминала" # >> @item:inlistbox Tab bar position #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgid "Active Terminals:" msgstr "изнад зоне терминала" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4292,97 +4537,97 @@ msgid "Terminal contents" msgstr "Могућности терминала" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Проред:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Број пиксела између два реда." #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" # >> @option:check #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Двосмјерно рендеровање текста" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4390,46 +4635,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Курсор прати боју знака под њим" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Фонт" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4440,99 +4685,99 @@ msgstr "" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Двосмјерно рендеровање текста" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Курсор прати боју знака под њим" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Уреди профил" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Опште" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Језичци" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Изглед" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Клизање" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Тастатура" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Свезе тастера" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Миш" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Напредно" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, fuzzy, kde-kuit-format #| msgid "" #| "

              Konsole does not have permission to save this profile to:
              " @@ -4549,33 +4794,33 @@ msgstr "" "могли да сачувате поставке, треба или да измените дозволе поставног фајла " "профила, или да промените име профила како би се сачувао као нови профил.

              " -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "

              A profile with this name already exists.

              " msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "

              Профил са овим именом већ постоји.

              " -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" # >> @title:window -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4584,7 +4829,7 @@ msgstr[1] "Уређивање %1 профила: %2" msgstr[2] "Уређивање %1 профила: %2" msgstr[3] "Уређивање профила: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -4592,12 +4837,20 @@ msgid "Create New Profile" msgstr "нови профил" # >> @title:window -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Уређивање профила „%1“" -#: widgets/EditProfileDialog.cpp:514 +# >> @action:inmenu Copy Input To +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&нигдје" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgid "Columns" msgctxt "" @@ -4610,7 +4863,7 @@ msgstr[1] "Колоне" msgstr[2] "Колоне" msgstr[3] "Колоне" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4622,47 +4875,47 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications" msgid "System Notifications" msgstr "Обавештења" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "визуелни ефекти" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Постави изабрани профил као подразумијевани за нове сесије" # >> @title:window -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Уређивање окружења" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Једна променљива окружења по реду." -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4673,34 +4926,34 @@ msgstr[2] " секунди" msgstr[3] " секунда" # >> @title:window -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Избор почетне фасцикле" # >> @action:button New # >! Needs contexts, one for color schemes, another for key bindings -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Нова..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "Ова шема боја има провидну позадину, што површ изгледа да не подржава" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4709,13 +4962,13 @@ msgstr "" "Конзола је покренута пре него што су ефекти површи били укључени. Морате је " "поново покренути да бисте добили провидну позадину." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Подразумијевани профил" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4732,7 +4985,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4828,27 +5081,56 @@ msgstr "Изаберите почетну фасциклу." msgid "Start in same directory as current session" msgstr "Почни у фасцикли текућег језичка" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +# >> @option:check +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Почни у фасцикли текућег језичка" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Окружење:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Уреди списак промјенљивих окружења и придружених вредности" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "Величина терминала" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, fuzzy, kde-format #| msgid "" #| "Configure Konsole->General->Use current window size on next startup must " @@ -4863,7 +5145,7 @@ msgstr "" "→Опште→Тренутна величина прозора по следећем покретању“." #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4871,25 +5153,25 @@ msgid "&Terminal bell mode:" msgstr "Емулатор терминала" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4899,9 +5181,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4912,9 +5194,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4925,22 +5207,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4948,13 +5230,13 @@ msgid "Red error background:" msgstr "позадина" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5327,54 +5609,95 @@ msgid "Scrollback:" msgstr "Препис" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Клизање странице нагоре/надоле" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Отклизај страницу пола висине прозора" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half Page Height" msgid "Half screen heigh&t" msgstr "Пола висине странице" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Отклизај страницу целу висину прозора" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full Page Height" msgid "F&ull screen height" msgstr "Цела висина странице" -# >> @label:listbox Tab Bar Options -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Положај:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Клизачка трака на десној страни терминалског прозора" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5382,67 +5705,38 @@ msgid "Ri&ght side" msgstr "На десној страни" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Клизачка трака на лијевој страни терминалског прозора" # >! Add a trailing space, slider range text looks stuck to the label. #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Величина текста: " -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +# >> @label:listbox Tab Bar Options +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Положај:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5570,7 +5864,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&нигдје" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5578,110 +5872,112 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Нађи:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Унесите текст који треба потражити." -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Сљедеће" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Нађи сљедеће поклапање са задатим изразом" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Претходно" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Нађи претходно поклапање са задатим изразом" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Прикажи мени опција" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Затвори траку претраге" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Разликуј величину слова" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Да ли претрага разликује величину слова." -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Прикажи мени опција" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Затвори траку претраге" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Поклопи регуларни израз" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Истакни сва поклапања" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Треба ли истицати нађени текст." -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Тражи уназад" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Треба ли тражити почев од дна." -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Треба ли тражити почев од дна." -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Тражи тренутно задати израз почев од дна" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5694,7 +5990,7 @@ msgid "Print Shell" msgstr "Штампање шкољке" # >> @action:inmenu Copy Input To -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5742,6 +6038,15 @@ msgstr "Формат наслова нормалног језичка" msgid "Tab Co&lor:" msgstr "боја" +# >! @title:column +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "боја" + # >> @item:inlistbox #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5852,7 +6157,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "изнад зоне терминала" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5860,33 +6165,57 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Откачи језичак" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Откачи језичак" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Затвори језичак" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Откачи језичак" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Преименуј језичак..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Затвори језичак" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "

              Управо је употребљен д‑бус метод sendText или runCommand. Из безбедносних разлога, можда не желите да ови методи буду јавни. " +#~ "У том случају можете поново изградити Конзолу тако да су ови методи " +#~ "унутрашњи.

              Ово упозорење ће бити приказано само једном за овај " +#~ "примерак Конзоле.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Разликуј величину слова" + # >> @action:inmenu Copy Input To #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" diff --git a/local/recipes/kde/konsole/source/po/sr@ijekavianlatin/konsole.po b/local/recipes/kde/konsole/source/po/sr@ijekavianlatin/konsole.po index dd6e4a1878..1f2e622bd9 100644 --- a/local/recipes/kde/konsole/source/po/sr@ijekavianlatin/konsole.po +++ b/local/recipes/kde/konsole/source/po/sr@ijekavianlatin/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2017-12-31 22:42+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -59,7 +59,7 @@ msgstr "Prikaz" # >> @title:menu #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Podijeljen prikaz" @@ -99,7 +99,7 @@ msgstr "Pr&epis" # >> @item:inlistbox #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -185,48 +185,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Sakrij traku menija, potisnuvši podrazumevanu postavku." #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Prikaži traku jezičaka, potisnuvši podrazumevanu postavku." #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Sakrij traku jezičaka, potisnuvši podrazumevanu postavku." #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Prikaži traku jezičaka, potisnuvši podrazumevanu postavku." + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Sakrij traku jezičaka, potisnuvši podrazumevanu postavku." + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Pokreni Konsolu preko celog ekrana" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Isključi providne pozadine, čak i ako ih sistem podržava." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Spisak raspoloživih profila." -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Nabroji sva imena svojstava profila i njihove tipove (služi uz -p)." -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Izmijeni vrijednost svojstva profila." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -236,7 +252,7 @@ msgstr "" "Naredba za izvršavanje. Ova opcija hvata sve naredne argumente, tako da mora " "biti poslednja." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -244,13 +260,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenti za naredbu." -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Faint)" @@ -270,157 +286,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1|/|$[nom %1]" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "ispis" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "pozadina" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "boja 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "boja 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "boja 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "boja 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "boja 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "boja 5" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "boja 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "boja 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ispis (izrazit)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "pozadina (izrazita)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "boja 1 (izrazita)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "boja 2 (izrazita)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "boja 3 (izrazita)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "boja 4 (izrazita)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "boja 5 (izrazita)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "boja 6 (izrazita)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "boja 7 (izrazita)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "boja 8 (izrazita)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ispis (bled)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "pozadina (bleda)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "boja 1 (bleda)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "boja 2 (bleda)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "boja 3 (bleda)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "boja 4 (bleda)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "boja 5 (bleda)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "boja 6 (bleda)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "boja 7 (bleda)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "boja 8 (bleda)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -686,6 +702,42 @@ msgstr "" msgid "AaZz09..." msgstr "AaZz09..." +# >> @item:inlistbox +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Local Host: %h" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "lokalni domaćin: %h" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "Name of the default/builtin profile" +#| msgid "Default" +msgid " [default]" +msgstr "Podrazumijevano" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + # >> @title:window #: CopyInputDialog.cpp:30 #, kde-format @@ -732,7 +784,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiraj unos u" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -766,14 +818,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Izaberi font..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Show All Fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Prikazuj sve fontove" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -815,18 +867,18 @@ msgstr "kombinacija" msgid "Output" msgstr "izlaz" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nov spisak sveza tastera" # >> @title:window -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Uređivanje spiska sveza tastera" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -834,7 +886,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -868,19 +920,19 @@ msgstr "Unos:" msgid "Output:" msgstr "Izlaz:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator terminala" -#: main.cpp:190 +#: main.cpp:193 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "(c) 1997-2017, The Konsole Developers" @@ -888,49 +940,49 @@ msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997–2017, programeri Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "održavalac, ispravke grešaka i poboljšanja" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Najt" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "prethodni održavalac, prenošenje na KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Dele" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "prvobitni autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -938,56 +990,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "održavalac, ispravke grešaka i poboljšanja" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "ispravke grešaka i poboljšanja" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -995,7 +1047,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "ispravke grešaka i poboljšanja" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1003,98 +1055,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Tomas Drajbholc" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Džekil Vu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Valdo Bastijan" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Štefan Biner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Tomas Drajbholc" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "opšta poboljšanja" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Kris Mahejmer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "ispravke grešaka" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Frančesko Čekoni" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Štefan Kulov" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "podrška za Solaris i istorijat" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Aleksander Nojndorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "ispravke grešaka i ubrzano pokretanje" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Piter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "poboljšano obilježavanje" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Loci Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,13 +1156,13 @@ msgstr "" "ugniježđena Konsole\n" "traka alatki i imena sesija" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David For" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1120,25 +1172,25 @@ msgstr "" "ugniježđena Konsole\n" "opšta poboljšavanja" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larosa Himenez" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "vizuelni efekti" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matijas Etrih" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1148,135 +1200,135 @@ msgstr "" "kôd iz projekta Kvt\n" "opšta poboljšanja" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Vorvik Alison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "poboljšanja šema i izbora teksta" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Den Pajlon" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "prebacivanje na SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Strit" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "prebacivanje na FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fišer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dejl M. Flejven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin R. Džouns" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knol" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Hvala mnogima drugima.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Novi &jezičak" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Umnoži jezičak" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Novi &prozor" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zatvori prozor" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Obilježivači" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nova šema boja" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Upravljaj profilima..." # >> @action:inmenu -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktiviraj meni" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1287,26 +1339,26 @@ msgstr[1] "U ovom prozoru rade %1 procesa, želite li zaista da ga napustite?" msgstr[2] "U ovom prozoru radi %1 procesa, želite li zaista da ga napustite?" msgstr[3] "U ovom prozoru radi jedan proces, želite li zaista da ga napustite?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Potvrda zatvaranja" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Zatvori &prozor" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zatvori tekući &jezičak" # >! Plurals. -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 open tabs in this window. Do you still want to quit?" @@ -1317,43 +1369,43 @@ msgstr "" "napustite?|/|U ovom prozoru ima %1 $[množ ^1 'otvoren jezičak' 'otvorena " "jezička' 'otvorenih jezičaka'], želite li zaista da ga napustite?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profili" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Opšte" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1447,7 +1499,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1459,28 +1511,28 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Naredba:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1526,7 +1578,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1588,11 +1640,11 @@ msgstr "" # >> @title:window #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1654,96 +1706,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Dvokliknite da promenite prečicu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Ne zatvaraj automatski početnu sesiju kada se završi." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Delete the selected profile(s)" msgid "Delete selected entry" @@ -1948,25 +2000,25 @@ msgstr "Opcije izlaza" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Naklonjeno štampaču (crn tekst, bez pozadine)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skaliraj izlaz" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Podrazumijevani profil" @@ -2035,17 +2087,38 @@ msgid "Tab Properties" msgstr "" # >> @title:window -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Upisivanje izlaza iz %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 nije ispravan URL, izlaz se ne može sačuvati." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2081,82 +2154,102 @@ msgstr "Povetarac" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tamne pastele" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zelena na crnoj" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Boje Linuxa" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Crvena na crnoj" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Osunčano" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Osunčano slabije" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Bijela na crnoj" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Podrazumijevano (XFree86 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Konzola Linuxa" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Konzola Solarisa" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Veb pretraga" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Unesite tekst koji treba potražiti." + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Zvono u sesiji „%1“" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Ne mogu da nađem naredbu: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Upozorenje: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Ne mogu da nađem interaktivnu školjku za pokretanje." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2164,361 +2257,364 @@ msgid "" msgstr "" "Ne mogu da nađem %1, pokrećem %2 umjesto toga. Provjerite postavke profila." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Ne mogu da izvršim naredbu %1 sa argumentima „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Tišina u sesiji „%1“" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Zatvori sesiju" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"

              Upravo je upotrebljen D‑Bus metod sendText ili runCommand. Iz bezbednosnih razloga, možda ne želite da ovi metodi budu javni. U " -"tom slučaju možete ponovo izgraditi Konsolu tako da su ovi metodi unutrašnji." -"

              Ovo upozorenje će biti prikazano samo jednom za ovaj primerak Konsole." -"

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Završeno" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program „%1“ se srušio." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program „%1“ završio je stanjem %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Napredak ZModema" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktivnost u sesiji „%1“" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ne zna kako da otvori obilježivač: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Potraži „%1“ pomoću" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Podesi veb prečice..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Zatvori sesiju" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Otvori menadžer fajlova" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Podijeli prikaz lijevo/desno" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Podijeli prikaz gore/dolje" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" # >> @title:window -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kopiranje unosa" # >> @title:window -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kopiranje unosa" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Nalijepi izbor" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Veb pretraga" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Izaberi sve" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Izaberi &red" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Izaberi &red" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Sačuvaj izlaz &kao..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Sačuvaj izlaz &kao..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Odštampaj ekran..." # rewrite-msgid: /Adjust/Configure/ -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Podesi prepis..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Očisti prepis" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Očisti prepis i resetuj" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Uredi profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Prethodno" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Promijeni profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Postavi &kodiranje" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Preimenuj jezičak..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&sve jezičke u tekućem prozoru" # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&izabrane jezičke..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&nigdje" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiraj unos u" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Otpremi &ZModemom..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Nadgledaj &aktivnost" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Nadgledaj &aktivnost" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Nadgledaj &tišinu" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Nadgledaj &aktivnost" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Povećaj font" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Smanji font" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Pošalji signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspenduj zadatak" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Nastavi zadatak" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Prekini vezu" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Prekini zadatak" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Obustavi zadatak" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Ukini zadatak" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Korisnički signal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Korisnički signal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "novi profil" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Uredi tekući profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2527,7 +2623,7 @@ msgstr "" "U sesiji se trenutno izvršava jedan program. Želite li zaista da je " "zatvorite?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2536,19 +2632,19 @@ msgstr "" "U sesiji se trenutno izvršava program „%1“. Želite li zaista da je zatvorite?" # >> @title:window -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potvrda zatvaranja" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Zatvori jezičak" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2557,38 +2653,41 @@ msgstr "" "Jedan program u ovoj sesiji neće da se ukine. Želite li zaista da ga " "prinudno ukinete?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Program ‘%1’ u ovoj sesiji neće da se ukine. Želite li zaista da ga prinudno " "ukinete?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" # rewrite-msgid: /Save// -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Preuzimanje ZModemom u..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2599,13 +2698,13 @@ msgstr "" "softvera za ZModem.

              Instalirajte paket rzsz ili lrzsz.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              U tekućoj sesiji se već odvija zmodemski prenos fajla.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2615,7 +2714,7 @@ msgstr "" "tt> ili lrzsz.

              " # >> @title:window -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Izbor fajlova za otpremanje ZModemom" @@ -2640,151 +2739,179 @@ msgctxt "@title:window" msgid "Configure" msgstr "Potvrda zatvaranja" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Veb pretraga" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Aktiviraj ubrzivače u meniju" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Ako je uključeno, ignorišu se postavke profila." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Prikaži naslov prozor na naslovnoj traci" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Poklapaj regularnim izrazima" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Upotrebi postojeći proces za pokretanje Konsole ako je moguće" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Svih prozori Konsole u jednom procesu" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Istakni sva poklapanja" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Da li pretraga razlikuje veličinu slova." +msgid "If enabled, profile settings will be ignored" +msgstr "Ako je uključeno, ignorišu se postavke profila." -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "Razlikuj veličinu slova" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgid "Force new tabs" +msgstr "&Otkači jezičak" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "Notifications" msgid "Notifications:" msgstr "Obaveštenja" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Svi dijalozi će biti ponovo prikazivani." - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Aktiviraj sve poruke „ne pitaj više“" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Treba li tražiti počev od dna." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Traži unazad" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Da li pretraga razlikuje veličinu slova." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "Razlikuj veličinu slova" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Istakni sva poklapanja" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Veb pretraga" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Treba li tražiti počev od dna." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Aktiviraj ubrzivače u meniju" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Svi dijalozi će biti ponovo prikazivani." + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Aktiviraj sve poruke „ne pitaj više“" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Prikaži naslov prozor na naslovnoj traci" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Poklapaj regularnim izrazima" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2809,71 +2936,110 @@ msgstr "Trenutna veličina prozora po sledećem pokretanju" msgid "The window size will be saved upon exiting Konsole" msgstr "Veličina prozora će biti sačuvana po napuštanju Konsole." -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Upotrebi postojeći proces za pokretanje Konsole ako je moguće" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Pretraga razlikuje veličinu slova" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Istakni sve poklopljeno pretragom" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Treba li isticati nađeni tekst." #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2881,93 +3047,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Upravljanje vidljivošću cele trake jezičaka" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "Upravljanje vidljivošću cele trake jezičaka" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Upravljanje položajem trake jezičaka" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Upravljanje vizuelnim stilom trake jezičaka" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Korisnički definisan CSS fajl za traku jezičaka" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "CSS fajl za stil trake jezičaka" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Upravljanje vidljivošću brzih dugmadi na traci jezičaka" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Upravljanje vidljivošću brzih dugmadi na traci jezičaka" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Upravljanje smeštanjem novog jezička" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Koristi sistemsku lokaciju za fajlove prepisa" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Koristi lokaciju prema korisniku za fajlove prepisa" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Koristi zadatu lokaciju fascikle za fajlove prepisa" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Koristi ovu fasciklu za fajlove prepisa" @@ -2980,26 +3153,24 @@ msgid "Enable memory monitoring:" msgstr "Nadgledanje jezičaka" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3186,9 +3357,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&nigdje" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Zatvori jezičak" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3197,35 +3387,35 @@ msgstr "Razno" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "Dugme za otvaranje/zatvaranje jezička" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, fuzzy, kde-format #| msgid "Expand Individual Tab Widths to Full Window" msgid "Expand individual tab widths to full window" msgstr "Proširi pojedinačne jezičke na ceo prozor" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "Korisnički definisan opis stila" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3233,19 +3423,19 @@ msgid "Behavior" msgstr "Ponašanje" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Close Current &Tab" @@ -3253,69 +3443,69 @@ msgid "After current &tab" msgstr "Zatvori tekući &jezičak" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" # >> @title:menu #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Podijeljen prikaz" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menubar by default" msgid "Show Header:" msgstr "Podrazumevano prikaži traku menija" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3368,8 +3558,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" # >> @action:inmenu @@ -3414,12 +3604,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Aktiviraj ubrzivače u meniju" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Veličina: %1×%2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3429,52 +3619,52 @@ msgstr[2] "Želite li zaista da nalepite %1 znakova?" msgstr[3] "Želite li zaista da nalepite %1 znak?" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Potvrda nalepljivanja" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3482,7 +3672,7 @@ msgid "" msgstr "" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" @@ -3490,27 +3680,27 @@ msgid "Confirm Paste" msgstr "Potvrda nalepljivanja" # >> @option:radio Cursor options -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Kursor prati boju znaka pod njim" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Nalijepi izbor" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been zaustavljen pritiskom Ctrl+S. Pritisnite Ctrl+Q da " "produži. Kliknite ovde da uklonite poruku." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Promijeni &fasciklu na" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Nalijepi lokaciju" # >> @title:menu -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Podijeljen prikaz" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Podijeli prikaz lijevo/desno" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Podijeli prikaz gore/dolje" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3569,7 +3759,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Podijeli prikaz gore/dolje" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3577,7 +3767,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Podijeli prikaz lijevo/desno" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3585,43 +3775,43 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Podijeli prikaz gore/dolje" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Raširi prikaz" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Skupi prikaz" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3629,7 +3819,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Ot&kači tekući jezičak" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3637,20 +3827,20 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Ot&kači tekući jezičak" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Sledeći jezičak" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Prethodni jezičak" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" @@ -3658,75 +3848,91 @@ msgid "Focus Above Terminal" msgstr "iznad zone terminala" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ispod zone terminala" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "iznad zone terminala" + +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ispod zone terminala" + # rewrite-msgid: /Last/Last Viewed/ -#: ViewManager.cpp:282 +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Prethodno prikazani jezičak" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3734,7 +3940,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Pomjeri jezičak udesno" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3742,59 +3948,59 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Pomjeri jezičak ulijevo" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Prebaci na jezičak %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3807,7 +4013,7 @@ msgstr "" "Problem pri upisivanju izlaza.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3820,13 +4026,13 @@ msgstr "" "Problem pri upisivanju izlaza.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3931,30 +4137,42 @@ msgstr "Podrazumijevano kodiranje znakova:" msgid "Shortcut for peeking the primary screen:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + # >> @item:inlistbox #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "broj sesije: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3993,7 +4211,7 @@ msgstr "Uredi izabranu šemu boja" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4051,14 +4269,23 @@ msgstr "Crtaj izrazite boje podebljanim fontom" # skip-rule: t-line #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Koristi izbrani font za linijske znakove umesto ugrađenog koda" # skip-rule: t-line #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Koristi linijske znakove iz fonta" @@ -4200,16 +4427,34 @@ msgid "Make the cursor blink regularly" msgstr "Kursor koji stalno trepće" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +# >> @action:inmenu +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Aktiviraj meni" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Kursor koji stalno trepće" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4217,14 +4462,14 @@ msgid "Miscellaneous" msgstr "Razno" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Prozor" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4234,26 +4479,26 @@ msgstr "" "promene veličine" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Napomena o veličini terminala po promeni veličine" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" # >! @title:column #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4262,14 +4507,14 @@ msgid "Color:" msgstr "boja" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Izaberi boju za iscrtavanje kursora" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" @@ -4277,14 +4522,14 @@ msgstr "Veličina terminala" # >> @item:inlistbox Tab bar position #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgid "Active Terminals:" msgstr "iznad zone terminala" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4292,97 +4537,97 @@ msgid "Terminal contents" msgstr "Mogućnosti terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Prored:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Broj piksela između dva reda." #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" # >> @option:check #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Dvosmjerno renderovanje teksta" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4390,46 +4635,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Kursor prati boju znaka pod njim" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Font" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4440,99 +4685,99 @@ msgstr "" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Dvosmjerno renderovanje teksta" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Kursor prati boju znaka pod njim" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Uredi profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Opšte" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Jezičci" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Izgled" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Klizanje" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Sveze tastera" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Miš" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Napredno" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, fuzzy, kde-kuit-format #| msgid "" #| "

              Konsole does not have permission to save this profile to:
              " @@ -4549,33 +4794,33 @@ msgstr "" "mogli da sačuvate postavke, treba ili da izmenite dozvole postavnog fajla " "profila, ili da promenite ime profila kako bi se sačuvao kao novi profil.

              " -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "

              A profile with this name already exists.

              " msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "

              Profil sa ovim imenom već postoji.

              " -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" # >> @title:window -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4584,7 +4829,7 @@ msgstr[1] "Uređivanje %1 profila: %2" msgstr[2] "Uređivanje %1 profila: %2" msgstr[3] "Uređivanje profila: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -4592,12 +4837,20 @@ msgid "Create New Profile" msgstr "novi profil" # >> @title:window -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Uređivanje profila „%1“" -#: widgets/EditProfileDialog.cpp:514 +# >> @action:inmenu Copy Input To +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&nigdje" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgid "Columns" msgctxt "" @@ -4610,7 +4863,7 @@ msgstr[1] "Kolone" msgstr[2] "Kolone" msgstr[3] "Kolone" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4622,47 +4875,47 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications" msgid "System Notifications" msgstr "Obaveštenja" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "vizuelni efekti" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Postavi izabrani profil kao podrazumijevani za nove sesije" # >> @title:window -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Uređivanje okruženja" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Jedna promenljiva okruženja po redu." -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4673,34 +4926,34 @@ msgstr[2] " sekundi" msgstr[3] " sekunda" # >> @title:window -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Izbor početne fascikle" # >> @action:button New # >! Needs contexts, one for color schemes, another for key bindings -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Nova..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "Ova šema boja ima providnu pozadinu, što površ izgleda da ne podržava" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4709,13 +4962,13 @@ msgstr "" "Konsole je pokrenuta pre nego što su efekti površi bili uključeni. Morate je " "ponovo pokrenuti da biste dobili providnu pozadinu." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Podrazumijevani profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4732,7 +4985,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4828,27 +5081,56 @@ msgstr "Izaberite početnu fasciklu." msgid "Start in same directory as current session" msgstr "Počni u fascikli tekućeg jezička" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +# >> @option:check +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Počni u fascikli tekućeg jezička" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Okruženje:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Uredi spisak promjenljivih okruženja i pridruženih vrednosti" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "Veličina terminala" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, fuzzy, kde-format #| msgid "" #| "Configure Konsole->General->Use current window size on next startup must " @@ -4863,7 +5145,7 @@ msgstr "" "→Opšte→Trenutna veličina prozora po sledećem pokretanju“." #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4871,25 +5153,25 @@ msgid "&Terminal bell mode:" msgstr "Emulator terminala" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4899,9 +5181,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4912,9 +5194,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4925,22 +5207,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4948,13 +5230,13 @@ msgid "Red error background:" msgstr "pozadina" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5328,54 +5610,95 @@ msgid "Scrollback:" msgstr "Prepis" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Klizanje stranice nagore/nadole" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Otklizaj stranicu pola visine prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half Page Height" msgid "Half screen heigh&t" msgstr "Pola visine stranice" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Otklizaj stranicu celu visinu prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full Page Height" msgid "F&ull screen height" msgstr "Cela visina stranice" -# >> @label:listbox Tab Bar Options -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Položaj:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Klizačka traka na desnoj strani terminalskog prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5383,67 +5706,38 @@ msgid "Ri&ght side" msgstr "Na desnoj strani" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Klizačka traka na lijevoj strani terminalskog prozora" # >! Add a trailing space, slider range text looks stuck to the label. #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Veličina teksta: " -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +# >> @label:listbox Tab Bar Options +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Položaj:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5571,7 +5865,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&nigdje" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5579,110 +5873,112 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Nađi:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Unesite tekst koji treba potražiti." -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Sljedeće" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Nađi sljedeće poklapanje sa zadatim izrazom" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Prethodno" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Nađi prethodno poklapanje sa zadatim izrazom" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Prikaži meni opcija" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zatvori traku pretrage" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Razlikuj veličinu slova" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Da li pretraga razlikuje veličinu slova." -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Prikaži meni opcija" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zatvori traku pretrage" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Poklopi regularni izraz" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Istakni sva poklapanja" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Treba li isticati nađeni tekst." -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Traži unazad" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Treba li tražiti počev od dna." -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Treba li tražiti počev od dna." -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Traži trenutno zadati izraz počev od dna" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5695,7 +5991,7 @@ msgid "Print Shell" msgstr "Štampanje školjke" # >> @action:inmenu Copy Input To -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5743,6 +6039,15 @@ msgstr "Format naslova normalnog jezička" msgid "Tab Co&lor:" msgstr "boja" +# >! @title:column +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "boja" + # >> @item:inlistbox #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5853,7 +6158,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "iznad zone terminala" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5861,33 +6166,57 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Otkači jezičak" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Otkači jezičak" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Zatvori jezičak" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Otkači jezičak" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Preimenuj jezičak..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Zatvori jezičak" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "

              Upravo je upotrebljen D‑Bus metod sendText ili " +#~ "runCommand. Iz bezbednosnih razloga, možda ne želite da ovi " +#~ "metodi budu javni. U tom slučaju možete ponovo izgraditi Konsolu tako da " +#~ "su ovi metodi unutrašnji.

              Ovo upozorenje će biti prikazano samo " +#~ "jednom za ovaj primerak Konsole.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Razlikuj veličinu slova" + # >> @action:inmenu Copy Input To #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" diff --git a/local/recipes/kde/konsole/source/po/sr@latin/konsole.po b/local/recipes/kde/konsole/source/po/sr@latin/konsole.po index 29bef01cbc..dec500a128 100644 --- a/local/recipes/kde/konsole/source/po/sr@latin/konsole.po +++ b/local/recipes/kde/konsole/source/po/sr@latin/konsole.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2017-12-31 22:42+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -59,7 +59,7 @@ msgstr "Prikaz" # >> @title:menu #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Podeljen prikaz" @@ -99,7 +99,7 @@ msgstr "Pr&epis" # >> @item:inlistbox #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Session Toolbar" @@ -185,48 +185,64 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Sakrij traku menija, potisnuvši podrazumevanu postavku." #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Prikaži traku jezičaka, potisnuvši podrazumevanu postavku." #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Sakrij traku jezičaka, potisnuvši podrazumevanu postavku." #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Prikaži traku jezičaka, potisnuvši podrazumevanu postavku." + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Sakrij traku jezičaka, potisnuvši podrazumevanu postavku." + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Pokreni Konsolu preko celog ekrana" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Isključi providne pozadine, čak i ako ih sistem podržava." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Spisak raspoloživih profila." -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "Nabroji sva imena svojstava profila i njihove tipove (služi uz -p)." -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Izmeni vrednost svojstva profila." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -236,7 +252,7 @@ msgstr "" "Naredba za izvršavanje. Ova opcija hvata sve naredne argumente, tako da mora " "biti poslednja." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -244,13 +260,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Argumenti za naredbu." -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Faint)" @@ -270,157 +286,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1|/|$[nom %1]" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "ispis" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "pozadina" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "boja 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "boja 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "boja 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "boja 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "boja 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "boja 5" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "boja 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "boja 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ispis (izrazit)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "pozadina (izrazita)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "boja 1 (izrazita)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "boja 2 (izrazita)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "boja 3 (izrazita)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "boja 4 (izrazita)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "boja 5 (izrazita)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "boja 6 (izrazita)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "boja 7 (izrazita)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "boja 8 (izrazita)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ispis (bled)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "pozadina (bleda)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "boja 1 (bleda)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "boja 2 (bleda)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "boja 3 (bleda)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "boja 4 (bleda)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "boja 5 (bleda)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "boja 6 (bleda)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "boja 7 (bleda)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "boja 8 (bleda)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -686,6 +702,42 @@ msgstr "" msgid "AaZz09..." msgstr "AaZz09..." +# >> @item:inlistbox +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Local Host: %h" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "lokalni domaćin: %h" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "Name of the default/builtin profile" +#| msgid "Default" +msgid " [default]" +msgstr "Podrazumevano" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + # >> @title:window #: CopyInputDialog.cpp:30 #, kde-format @@ -732,7 +784,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiraj unos u" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -766,14 +818,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Izaberi font..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Show All Fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Prikazuj sve fontove" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -815,18 +867,18 @@ msgstr "kombinacija" msgid "Output" msgstr "izlaz" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Nov spisak sveza tastera" # >> @title:window -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Uređivanje spiska sveza tastera" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -834,7 +886,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -868,19 +920,19 @@ msgstr "Unos:" msgid "Output:" msgstr "Izlaz:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Emulator terminala" -#: main.cpp:190 +#: main.cpp:193 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "(c) 1997-2017, The Konsole Developers" @@ -888,49 +940,49 @@ msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997–2017, programeri Konsole" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "održavalac, ispravke grešaka i poboljšanja" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Najt" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "prethodni održavalac, prenošenje na KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Dele" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "prvobitni autor" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "General maintainer, bug fixes and general improvements" @@ -938,56 +990,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "održavalac, ispravke grešaka i poboljšanja" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "ispravke grešaka i poboljšanja" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -995,7 +1047,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "ispravke grešaka i poboljšanja" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1003,98 +1055,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Tomas Drajbholc" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Džekil Vu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Valdo Bastijan" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Štefan Biner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Tomas Drajbholc" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "opšta poboljšanja" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Kris Mahejmer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "ispravke grešaka" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Frančesko Čekoni" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Štefan Kulov" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "podrška za Solaris i istorijat" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Aleksander Nojndorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "ispravke grešaka i ubrzano pokretanje" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Piter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "poboljšano obeležavanje" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Loci Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,13 +1156,13 @@ msgstr "" "ugnežđena Konsole\n" "traka alatki i imena sesija" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David For" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1120,25 +1172,25 @@ msgstr "" "ugnežđena Konsole\n" "opšta poboljšavanja" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larosa Himenez" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "vizuelni efekti" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matijas Etrih" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1148,135 +1200,135 @@ msgstr "" "kôd iz projekta Kvt\n" "opšta poboljšanja" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Vorvik Alison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "poboljšanja šema i izbora teksta" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Den Pajlon" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "prebacivanje na SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Strit" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "prebacivanje na FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fišer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dejl M. Flejven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin R. Džouns" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knol" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Hvala mnogima drugima.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Novi &jezičak" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Umnoži jezičak" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Novi &prozor" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Zatvori prozor" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Obeleživači" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Nova šema boja" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Upravljaj profilima..." # >> @action:inmenu -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktiviraj meni" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1287,26 +1339,26 @@ msgstr[1] "U ovom prozoru rade %1 procesa, želite li zaista da ga napustite?" msgstr[2] "U ovom prozoru radi %1 procesa, želite li zaista da ga napustite?" msgstr[3] "U ovom prozoru radi jedan proces, želite li zaista da ga napustite?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Potvrda zatvaranja" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Zatvori &prozor" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Zatvori tekući &jezičak" # >! Plurals. -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "There are %1 open tabs in this window. Do you still want to quit?" @@ -1317,43 +1369,43 @@ msgstr "" "napustite?|/|U ovom prozoru ima %1 $[množ ^1 'otvoren jezičak' 'otvorena " "jezička' 'otvorenih jezičaka'], želite li zaista da ga napustite?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profili" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Opšte" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1447,7 +1499,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1459,28 +1511,28 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Naredba:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1526,7 +1578,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1588,11 +1640,11 @@ msgstr "" # >> @title:window #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1654,96 +1706,96 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Double click to change shortcut" msgid "Double click to change the folder name." msgstr "Dvokliknite da promenite prečicu." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Ne zatvaraj automatski početnu sesiju kada se završi." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Delete the selected profile(s)" msgid "Delete selected entry" @@ -1948,25 +2000,25 @@ msgstr "Opcije izlaza" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Naklonjeno štampaču (crn tekst, bez pozadine)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skaliraj izlaz" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Podrazumevani profil" @@ -2035,17 +2087,38 @@ msgid "Tab Properties" msgstr "" # >> @title:window -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Upisivanje izlaza iz %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 nije ispravan URL, izlaz se ne može sačuvati." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2081,82 +2154,102 @@ msgstr "Povetarac" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Tamne pastele" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Zelena na crnoj" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Boje Linuxa" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Crvena na crnoj" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Osunčano" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Osunčano slabije" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Bela na crnoj" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Podrazumevano (XFree86 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Konzola Linuxa" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Konzola Solarisa" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Veb pretraga" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Unesite tekst koji treba potražiti." + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Zvono u sesiji „%1“" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Ne mogu da nađem naredbu: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Upozorenje: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Ne mogu da nađem interaktivnu školjku za pokretanje." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2164,361 +2257,364 @@ msgid "" msgstr "" "Ne mogu da nađem %1, pokrećem %2 umesto toga. Proverite postavke profila." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Ne mogu da izvršim naredbu %1 sa argumentima „%2“." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Tišina u sesiji „%1“" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "&Close Session" msgid "Show session" msgstr "&Zatvori sesiju" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"

              Upravo je upotrebljen D‑Bus metod sendText ili runCommand. Iz bezbednosnih razloga, možda ne želite da ovi metodi budu javni. U " -"tom slučaju možete ponovo izgraditi Konsolu tako da su ovi metodi unutrašnji." -"

              Ovo upozorenje će biti prikazano samo jednom za ovaj primerak Konsole." -"

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Završeno" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Program „%1“ se srušio." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Program „%1“ završio je stanjem %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Napredak ZModema" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Aktivnost u sesiji „%1“" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole ne zna kako da otvori obeleživač: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Potraži „%1“ pomoću" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Podesi veb prečice..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Zatvori sesiju" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Otvori menadžer fajlova" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Podeli prikaz levo/desno" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Podeli prikaz gore/dole" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" # >> @title:window -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Kopiranje unosa" # >> @title:window -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Kopiranje unosa" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Nalepi izbor" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Veb pretraga" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Izaberi sve" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select &Line" msgid "Select &Mode" msgstr "Izaberi &red" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Izaberi &red" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Sačuvaj izlaz &kao..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "Sačuvaj izlaz &kao..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Odštampaj ekran..." # rewrite-msgid: /Adjust/Configure/ -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Podesi prepis..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Očisti prepis" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Očisti prepis i resetuj" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Uredi profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "Prethodno" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Promeni profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Postavi &kodiranje" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Preimenuj jezičak..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&sve jezičke u tekućem prozoru" # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&izabrane jezičke..." # >> @action:inmenu Copy Input To -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&nigde" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiraj unos u" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Otpremi &ZModemom..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Nadgledaj &aktivnost" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Nadgledaj &aktivnost" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Nadgledaj &tišinu" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Nadgledaj &aktivnost" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Povećaj font" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Smanji font" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Pošalji signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Suspenduj zadatak" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Nastavi zadatak" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Prekini vezu" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Prekini zadatak" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Obustavi zadatak" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Ukini zadatak" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Korisnički signal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Korisnički signal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "novi profil" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Uredi tekući profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2527,7 +2623,7 @@ msgstr "" "U sesiji se trenutno izvršava jedan program. Želite li zaista da je " "zatvorite?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2536,19 +2632,19 @@ msgstr "" "U sesiji se trenutno izvršava program „%1“. Želite li zaista da je zatvorite?" # >> @title:window -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Potvrda zatvaranja" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Zatvori jezičak" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2557,38 +2653,41 @@ msgstr "" "Jedan program u ovoj sesiji neće da se ukine. Želite li zaista da ga " "prinudno ukinete?" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is in this session would not die. Are you sure you want " +#| "to kill it by force?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Program ‘%1’ u ovoj sesiji neće da se ukine. Želite li zaista da ga prinudno " "ukinete?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" # rewrite-msgid: /Save// -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Preuzimanje ZModemom u..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2599,13 +2698,13 @@ msgstr "" "softvera za ZModem.

              Instalirajte paket rzsz ili lrzsz.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              U tekućoj sesiji se već odvija zmodemski prenos fajla.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2615,7 +2714,7 @@ msgstr "" "tt> ili lrzsz.

              " # >> @title:window -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Izbor fajlova za otpremanje ZModemom" @@ -2640,151 +2739,179 @@ msgctxt "@title:window" msgid "Configure" msgstr "Potvrda zatvaranja" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, fuzzy, kde-format -#| msgid "Web Search" -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Veb pretraga" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Aktiviraj ubrzivače u meniju" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Ako je uključeno, ignorišu se postavke profila." - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Prikaži naslov prozor na naslovnoj traci" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Poklapaj regularnim izrazima" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Upotrebi postojeći proces za pokretanje Konsole ako je moguće" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Svih prozori Konsole u jednom procesu" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "Istakni sva poklapanja" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Da li pretraga razlikuje veličinu slova." +msgid "If enabled, profile settings will be ignored" +msgstr "Ako je uključeno, ignorišu se postavke profila." -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "Razlikuj veličinu slova" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgid "Force new tabs" +msgstr "&Otkači jezičak" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "Notifications" msgid "Notifications:" msgstr "Obaveštenja" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Svi dijalozi će biti ponovo prikazivani." - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Aktiviraj sve poruke „ne pitaj više“" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Treba li tražiti počev od dna." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Traži unazad" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Da li pretraga razlikuje veličinu slova." + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "Razlikuj veličinu slova" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "Istakni sva poklapanja" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, fuzzy, kde-format +#| msgid "Web Search" +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Veb pretraga" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgid "Sets whether search should stop instead of wrapping" msgstr "Treba li tražiti počev od dna." #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Aktiviraj ubrzivače u meniju" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Svi dijalozi će biti ponovo prikazivani." + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Aktiviraj sve poruke „ne pitaj više“" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Prikaži naslov prozor na naslovnoj traci" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Poklapaj regularnim izrazima" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2809,71 +2936,110 @@ msgstr "Trenutna veličina prozora po sledećem pokretanju" msgid "The window size will be saved upon exiting Konsole" msgstr "Veličina prozora će biti sačuvana po napuštanju Konsole." -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Upotrebi postojeći proces za pokretanje Konsole ako je moguće" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Pretraga razlikuje veličinu slova" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Istakni sve poklopljeno pretragom" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Treba li isticati nađeni tekst." #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2881,93 +3047,100 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Upravljanje vidljivošću cele trake jezičaka" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, fuzzy, kde-format #| msgid "Control the visibility of the whole tab bar" msgid "Control the size of the handle between panels" msgstr "Upravljanje vidljivošću cele trake jezičaka" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Upravljanje položajem trake jezičaka" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Upravljanje vizuelnim stilom trake jezičaka" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Korisnički definisan CSS fajl za traku jezičaka" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "CSS fajl za stil trake jezičaka" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, fuzzy, kde-format #| msgid "Control the visibility of quick buttons on the tab bar" msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Upravljanje vidljivošću brzih dugmadi na traci jezičaka" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, fuzzy, kde-format +#| msgid "Control the visibility of quick buttons on the tab bar" +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Upravljanje vidljivošću brzih dugmadi na traci jezičaka" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Upravljanje smeštanjem novog jezička" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Koristi sistemsku lokaciju za fajlove prepisa" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Koristi lokaciju prema korisniku za fajlove prepisa" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Koristi zadatu lokaciju fascikle za fajlove prepisa" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Koristi ovu fasciklu za fajlove prepisa" @@ -2980,26 +3153,24 @@ msgid "Enable memory monitoring:" msgstr "Nadgledanje jezičaka" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3186,9 +3357,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&nigde" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Zatvori jezičak" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3197,35 +3387,35 @@ msgstr "Razno" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons" msgid "Show 'New Tab' button" msgstr "Dugme za otvaranje/zatvaranje jezička" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, fuzzy, kde-format #| msgid "Expand Individual Tab Widths to Full Window" msgid "Expand individual tab widths to full window" msgstr "Proširi pojedinačne jezičke na ceo prozor" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use user-defined stylesheet" msgid "Use user-defined stylesheet:" msgstr "Korisnički definisan opis stila" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3233,19 +3423,19 @@ msgid "Behavior" msgstr "Ponašanje" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Close Current &Tab" @@ -3253,69 +3443,69 @@ msgid "After current &tab" msgstr "Zatvori tekući &jezičak" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" # >> @title:menu #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Podeljen prikaz" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show menubar by default" msgid "Show Header:" msgstr "Podrazumevano prikaži traku menija" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3368,8 +3558,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" # >> @action:inmenu @@ -3414,12 +3604,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "Aktiviraj ubrzivače u meniju" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Veličina: %1×%2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3429,52 +3619,52 @@ msgstr[2] "Želite li zaista da nalepite %1 znakova?" msgstr[3] "Želite li zaista da nalepite %1 znak?" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Potvrda nalepljivanja" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3482,7 +3672,7 @@ msgid "" msgstr "" # >> @title:window -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Paste" msgctxt "@title" @@ -3490,27 +3680,27 @@ msgid "Confirm Paste" msgstr "Potvrda nalepljivanja" # >> @option:radio Cursor options -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Kursor prati boju znaka pod njim" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Nalepi izbor" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been zaustavljen pritiskom Ctrl+S. Pritisnite Ctrl+Q da " "produži. Kliknite ovde da uklonite poruku." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Promeni &fasciklu na" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Nalepi lokaciju" # >> @title:menu -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Podeljen prikaz" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Podeli prikaz levo/desno" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Podeli prikaz gore/dole" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3569,7 +3759,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Podeli prikaz gore/dole" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3577,7 +3767,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Podeli prikaz levo/desno" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3585,43 +3775,43 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Podeli prikaz gore/dole" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Raširi prikaz" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Skupi prikaz" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3629,7 +3819,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Ot&kači tekući jezičak" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3637,20 +3827,20 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Ot&kači tekući jezičak" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Sledeći jezičak" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Prethodni jezičak" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgctxt "@action Shortcut entry" @@ -3658,75 +3848,91 @@ msgid "Focus Above Terminal" msgstr "iznad zone terminala" # >> @item:inlistbox Tab bar position -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Area" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ispod zone terminala" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "iznad zone terminala" + +# >> @item:inlistbox Tab bar position +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Area" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ispod zone terminala" + # rewrite-msgid: /Last/Last Viewed/ -#: ViewManager.cpp:282 +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Prethodno prikazani jezičak" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3734,7 +3940,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Pomeri jezičak udesno" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3742,59 +3948,59 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Pomeri jezičak ulevo" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Prebaci na jezičak %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3807,7 +4013,7 @@ msgstr "" "Problem pri upisivanju izlaza.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3820,13 +4026,13 @@ msgstr "" "Problem pri upisivanju izlaza.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3931,30 +4137,42 @@ msgstr "Podrazumevano kodiranje znakova:" msgid "Shortcut for peeking the primary screen:" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) +#: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + # >> @item:inlistbox #. i18n: ectx: property (text), widget (QLabel, label_linenums) -#: widgets/EditProfileAdvancedPage.ui:255 +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Session Number: %#" msgid "Line Numbers:" msgstr "broj sesije: %#" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3993,7 +4211,7 @@ msgstr "Uredi izabranu šemu boja" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4051,14 +4269,23 @@ msgstr "Crtaj izrazite boje podebljanim fontom" # skip-rule: t-line #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Use the selected font for line characters instead of the builtin code" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Koristi izbrani font za linijske znakove umesto ugrađenog koda" # skip-rule: t-line #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 -#, kde-format +#, fuzzy, kde-format +#| msgid "Use line characters contained in font" +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Koristi linijske znakove iz fonta" @@ -4200,16 +4427,34 @@ msgid "Make the cursor blink regularly" msgstr "Kursor koji stalno trepće" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +# >> @action:inmenu +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Aktiviraj meni" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Kursor koji stalno trepće" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4217,14 +4462,14 @@ msgid "Miscellaneous" msgstr "Razno" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Prozor" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4234,26 +4479,26 @@ msgstr "" "promene veličine" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Napomena o veličini terminala po promeni veličine" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" # >! @title:column #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4262,14 +4507,14 @@ msgid "Color:" msgstr "boja" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Izaberi boju za iscrtavanje kursora" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Inactive Terminals:" @@ -4277,14 +4522,14 @@ msgstr "Veličina terminala" # >> @item:inlistbox Tab bar position #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Above Terminal Area" msgid "Active Terminals:" msgstr "iznad zone terminala" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4292,97 +4537,97 @@ msgid "Terminal contents" msgstr "Mogućnosti terminala" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "Prored:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Broj piksela između dva reda." #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" # >> @option:check #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Dvosmerno renderovanje teksta" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4390,46 +4635,46 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Kursor prati boju znaka pod njim" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Font" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4440,99 +4685,99 @@ msgstr "" # >> @option:check #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Dvosmerno renderovanje teksta" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" # >> @option:radio Cursor options #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Kursor prati boju znaka pod njim" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Uredi profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Opšte" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Jezičci" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Izgled" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Klizanje" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tastatura" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Sveze tastera" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Miš" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Napredno" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, fuzzy, kde-kuit-format #| msgid "" #| "

              Konsole does not have permission to save this profile to:
              " @@ -4549,33 +4794,33 @@ msgstr "" "mogli da sačuvate postavke, treba ili da izmenite dozvole postavnog fajla " "profila, ili da promenite ime profila kako bi se sačuvao kao novi profil.

              " -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "

              A profile with this name already exists.

              " msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "

              Profil sa ovim imenom već postoji.

              " -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" # >> @title:window -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4584,7 +4829,7 @@ msgstr[1] "Uređivanje %1 profila: %2" msgstr[2] "Uređivanje %1 profila: %2" msgstr[3] "Uređivanje profila: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -4592,12 +4837,20 @@ msgid "Create New Profile" msgstr "novi profil" # >> @title:window -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Uređivanje profila „%1“" -#: widgets/EditProfileDialog.cpp:514 +# >> @action:inmenu Copy Input To +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "&nigde" + +#: widgets/EditProfileDialog.cpp:549 #, fuzzy, kde-format #| msgid "Columns" msgctxt "" @@ -4610,7 +4863,7 @@ msgstr[1] "Kolone" msgstr[2] "Kolone" msgstr[3] "Kolone" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4622,47 +4875,47 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Notifications" msgid "System Notifications" msgstr "Obaveštenja" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "vizuelni efekti" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Postavi izabrani profil kao podrazumevani za nove sesije" # >> @title:window -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Uređivanje okruženja" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Jedna promenljiva okruženja po redu." -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4673,34 +4926,34 @@ msgstr[2] " sekundi" msgstr[3] " sekunda" # >> @title:window -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Izbor početne fascikle" # >> @action:button New # >! Needs contexts, one for color schemes, another for key bindings -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "Nova..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "Ova šema boja ima providnu pozadinu, što površ izgleda da ne podržava" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4709,13 +4962,13 @@ msgstr "" "Konsole je pokrenuta pre nego što su efekti površi bili uključeni. Morate je " "ponovo pokrenuti da biste dobili providnu pozadinu." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "Podrazumevani profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4732,7 +4985,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4828,27 +5081,56 @@ msgstr "Izaberite početnu fasciklu." msgid "Start in same directory as current session" msgstr "Počni u fascikli tekućeg jezička" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +# >> @option:check +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Počni u fascikli tekućeg jezička" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Okruženje:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Uredi spisak promenljivih okruženja i pridruženih vrednosti" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Size" msgid "Initial terminal si&ze:" msgstr "Veličina terminala" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, fuzzy, kde-format #| msgid "" #| "Configure Konsole->General->Use current window size on next startup must " @@ -4863,7 +5145,7 @@ msgstr "" "→Opšte→Trenutna veličina prozora po sledećem pokretanju“." #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4871,25 +5153,25 @@ msgid "&Terminal bell mode:" msgstr "Emulator terminala" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4899,9 +5181,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4912,9 +5194,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4925,22 +5207,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4948,13 +5230,13 @@ msgid "Red error background:" msgstr "pozadina" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5328,54 +5610,95 @@ msgid "Scrollback:" msgstr "Prepis" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, fuzzy, kde-format #| msgid "Scroll Page Up/Down Amount" msgid "Scroll Page Up/Down:" msgstr "Klizanje stranice nagore/nadole" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Otklizaj stranicu pola visine prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, fuzzy, kde-format #| msgid "Half Page Height" msgid "Half screen heigh&t" msgstr "Pola visine stranice" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Otklizaj stranicu celu visinu prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, fuzzy, kde-format #| msgid "Full Page Height" msgid "F&ull screen height" msgstr "Cela visina stranice" -# >> @label:listbox Tab Bar Options -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Položaj:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Klizačka traka na desnoj strani terminalskog prozora" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5383,67 +5706,38 @@ msgid "Ri&ght side" msgstr "Na desnoj strani" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Klizačka traka na levoj strani terminalskog prozora" # >! Add a trailing space, slider range text looks stuck to the label. #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Veličina teksta: " -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +# >> @label:listbox Tab Bar Options +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Položaj:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5571,7 +5865,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&nigde" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5579,110 +5873,112 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "Nađi:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Unesite tekst koji treba potražiti." -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Sledeće" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Nađi sledeće poklapanje sa zadatim izrazom" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Prethodno" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "Nađi prethodno poklapanje sa zadatim izrazom" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Prikaži meni opcija" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Zatvori traku pretrage" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Razlikuj veličinu slova" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Da li pretraga razlikuje veličinu slova." -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Prikaži meni opcija" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Zatvori traku pretrage" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Poklopi regularni izraz" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Istakni sva poklapanja" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Treba li isticati nađeni tekst." -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Traži unazad" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Treba li tražiti počev od dna." -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgid "Sets whether search should start from the bottom" msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Treba li tražiti počev od dna." -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Traži trenutno zadati izraz počev od dna" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5695,7 +5991,7 @@ msgid "Print Shell" msgstr "Štampanje školjke" # >> @action:inmenu Copy Input To -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5743,6 +6039,15 @@ msgstr "Format naslova normalnog jezička" msgid "Tab Co&lor:" msgstr "boja" +# >! @title:column +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "boja" + # >> @item:inlistbox #: widgets/TabTitleFormatButton.cpp:21 #, c-format @@ -5853,7 +6158,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "iznad zone terminala" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5861,33 +6166,57 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Otkači jezičak" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Otkači jezičak" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Zatvori jezičak" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Otkači jezičak" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Preimenuj jezičak..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Zatvori jezičak" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "

              Upravo je upotrebljen D‑Bus metod sendText ili " +#~ "runCommand. Iz bezbednosnih razloga, možda ne želite da ovi " +#~ "metodi budu javni. U tom slučaju možete ponovo izgraditi Konsolu tako da " +#~ "su ovi metodi unutrašnji.

              Ovo upozorenje će biti prikazano samo " +#~ "jednom za ovaj primerak Konsole.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Razlikuj veličinu slova" + # >> @action:inmenu Copy Input To #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" diff --git a/local/recipes/kde/konsole/source/po/sv/konsole.po b/local/recipes/kde/konsole/source/po/sv/konsole.po index 678ba87e50..49a6d6d137 100644 --- a/local/recipes/kde/konsole/source/po/sv/konsole.po +++ b/local/recipes/kde/konsole/source/po/sv/konsole.po @@ -5,22 +5,22 @@ # Anders Widell , 1998. # Per Lindström , 2000. # Mattias Newzella , 2000, 2001, 2002,2003, 2004. -# SPDX-FileCopyrightText: 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2024 Stefan Asserhäll +# SPDX-FileCopyrightText: 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2024, 2025 Stefan Asserhäll # Stefan Asserhall , 2005, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023. # Arve Eriksson <031299870@telia.com>, 2011. msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-18 17:32+0200\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2025-09-26 13:44+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.08.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -57,7 +57,7 @@ msgstr "Visa" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dela vy" @@ -93,7 +93,7 @@ msgid "S&crollback" msgstr "&Historik" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Sessionsverktygsrad" @@ -177,49 +177,65 @@ msgid "Hide the menubar, overriding the default setting" msgstr "Dölj menyraden, överskrid standardinställningen" #: Application.cpp:68 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Show the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "Visa flikraden, överskrid standardinställningen" #: Application.cpp:69 -#, kde-format +#, fuzzy, kde-format +#| msgctxt "@info:shell" +#| msgid "Hide the tabbar, overriding the default setting" msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "Dölj flikraden, överskrid standardinställningen" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Visa flikraden, överskrid standardinställningen" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Dölj flikraden, överskrid standardinställningen" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Starta terminal i fullskärmsläge" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Inaktivera genomskinliga bakgrunder, även om systemet stöder dem." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Lista tillgängliga profiler" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Lista alla profilegenskapernas namn och deras typ (för användning med -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Ändra profilegenskapens värde." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,7 +245,7 @@ msgstr "" "Kommando att köra. Väljaren tar alla följande argument, så använd den som " "sista väljare." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -239,13 +255,13 @@ msgstr "" "Tvinga återanvändning av befintlig instans även om det förstör " "funktionalitet, t.ex. --new-tab. I huvudsak för felsökning." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Parametrar att skicka till kommandot" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -263,157 +279,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Förgrund" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Bakgrund" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Färg 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Färg 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Färg 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Färg 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Färg 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Färg 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Färg 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Färg 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Förgrund (stark)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Bakgrund (stark)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Färg 1 (stark)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Färg 2 (stark)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Färg 3 (stark)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Färg 4 (stark)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Färg 5 (stark)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Färg 6 (stark)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Färg 7 (stark)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Färg 8 (stark)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Förgrund (svag)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Bakgrund (svag)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Färg 1 (svag)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Färg 2 (svag)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Färg 3 (svag)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Färg 4 (svag)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Färg 5 (svag)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Färg 6 (svag)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Färg 7 (svag)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Färg 8 (svag)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -669,6 +685,41 @@ msgstr "Längst upp" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host: %1" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Värddator: %1" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [Standard]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -713,7 +764,7 @@ msgstr "" msgid "Copy Location" msgstr "Kopiera plats" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Genererar miniatyrbild" @@ -744,13 +795,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Välj teckensnitt" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Visa alla teckensnitt" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -790,17 +841,17 @@ msgstr "Tangenter" msgid "Output" msgstr "Utmatning" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Ny tangentbindningslista" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Redigera tangentbindningslista" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Ett tangentbindningsschema kan inte sparas med en tom beskrivning." @@ -808,7 +859,7 @@ msgstr "Ett tangentbindningsschema kan inte sparas med en tom beskrivning." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -842,225 +893,225 @@ msgstr "Inmatning:" msgid "Output:" msgstr "Utmatning:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Terminalemulator" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© 1997-2022, Konsole-utvecklarna" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Allmänt underhåll, felrättningar och allmänna förbättringar" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Föregående underhåll, överföring till KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Ursprunglig upphovsman" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Större omstrukturering, felrättningar och större förbättringar" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Felrättningar och allmänna förbättringar" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Felrättningar och större förbättringar" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Allmänna förbättringar" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Felrättningar" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris-stöd och historik" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Felrättningar och förbättrad startprestanda" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Förbättringar av markering" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1070,13 +1121,13 @@ msgstr "" "Inbäddad terminal\n" "Verktygsrad och sessionsnamn" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1086,25 +1137,25 @@ msgstr "" "Inbäddad terminal\n" "Allmänna förbättringar" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Visuella effekter" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1114,132 +1165,132 @@ msgstr "" "Kod från kvt-projektet\n" "Allmänna förbättringar" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Schema och textmarkeringsförbättringar" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI-överföring" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD-överföring" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Tack till många andra.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Ny flik" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Duplicera flik" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Nytt &fönster" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Stäng fönster" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Bokmärken" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Fönsterfärgschema" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Hantera profiler..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Aktivera meny" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Spara fliklayout..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Läs in fliklayout..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1252,68 +1303,68 @@ msgstr[1] "" "Det finns %1 processer som kör i det här fönstret. Är du säker på att du " "vill avsluta?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Bekräfta stängning" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Stäng &fönster" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Stäng ak&tuell flik" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "Det finns %1 öppna terminaler i det här fönstret. Vill du ändå avsluta?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiler" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Allmänt" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Minne" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Flikrad och avdelare" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Tillfälliga filer" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Miniatyrbilder" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1397,7 +1448,7 @@ msgstr "Spara" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Uppdatera" @@ -1409,29 +1460,29 @@ msgid "Cancel" msgstr "Avbryt" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Snabbkommandon" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Visa snabbåtkomst" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Inga snabbkommandon hittades. Det går att lägga till ett med Insticksprogram " "- Snabbkommandon." -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Insticksprogram - Snabbkommandon" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Visa snabbkommandon" @@ -1473,7 +1524,7 @@ msgstr "" " med flera inställningar. Är du säker?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Du ska just ta bort %1. Är du säker?" @@ -1526,11 +1577,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 är en katalog för SSH-poster" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Inställning av SSH" @@ -1593,24 +1644,24 @@ msgstr "" "Kan inte utföra SSH-kommandon utanför skalprogrammet (t.ex. bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH-nyckel" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Ta bort" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Ändra inte" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1619,69 +1670,69 @@ msgstr "" "Du ska just ta bort katalogen %1,\n" " med flera SSH-inställningar. Är du säker?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Ta bort SSH-inställningar" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "Importerad SSH-profil
              Vissa inställningar är skrivskyddade." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Saknar värddatornamn" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Saknar namn" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Om Använd SSH-inställning anges, använd inte SSH-nyckel eller användarnamn." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Åtminstone användarnamn eller SSH-nyckel måste anges" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Saknar katalog" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "En SSH-session måste ha en profil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Kan inte ta bort katalogen" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Ta bort katalog och hela dess innehåll" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Dubbelklicka för att ändra katalognamnet." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "En automatiskt tillagd post kan inte tas bort." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Ta bort vald post" @@ -1873,25 +1924,25 @@ msgstr "Utskriftsalternativ" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Skrivar&vänligt läge (svart text, ingen bakgrund)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Skala utmatning" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Inbyggd" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Standardprofil" @@ -1950,17 +2001,42 @@ msgstr "Dubbelklicka för att ändra genväg" msgid "Tab Properties" msgstr "Flikegenskaper" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Spara historik från %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 är en ogiltig webbadress. Historiken kunde inte sparas." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Misslyckades skapa fil för att spara automatiskt i %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Stoppar spara automatiskt på grund av skärmbyte." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Fil för spara automatiskt har ändrats externt, vilket förhindrar ytterligare " +"spara automatiskt." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Misslyckades uppdatera tillstånd för spara automatiskt vid " +"utmatningsändringar." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1996,81 +2072,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Mörka pastellfärger" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Grön på svart" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux färger" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Röd på svart" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solariserad" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solariserad ljus" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Vit på svart" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Förval (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux-konsoll" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris-konsoll" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Sök..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Skriv in ett fliknamn att söka efter här" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Ljudsignal i '%1' (session '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Kunde inte hitta binärfil: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Varning: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Kunde inte hitta ett interaktivt skal att starta." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2079,336 +2172,341 @@ msgstr "" "Kunde inte hitta '%1'. Startar '%2' istället. Kontrollera dina " "profilinställningar." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Kunde inte starta programmet '%1' med argumenten '%2'." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Tystnad i '%1' (session '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Visa session" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"D-Bus metoderna sendText och/eller runCommand har just används. Det finns " -"säkerhetsproblem med att låta dessa metoder vara öppna. Om så önskas, kan " -"metoderna ändras till bara intern användning genom att kompilera om Terminal." -"

              Varningen visas bara en gång för den här instansen av Terminal.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Avslutad" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Programmet '%1' kraschade." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Programmet '%1' avslutades med status %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Z-modemförlopp" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Aktivitet i '%1' (session '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"Säkerhetskänsligt DBus-programmeringsgränssnitt är inaktiverat i " +"inställningarna." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Processen '%1' har slutat köra i session '%2'" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole känner inte till hur bokmärket kan öppnas: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Sök efter '%1' med" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Anpassa webbgenvägar..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "Stän&g session" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Öppna filhanterare" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopiera" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Dela vyn vänster-höger" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Dela vyn topp-botten" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Kopiera utan prompt" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kopiera användarinmatning" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Kopiera kommandoutmatning" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Klistra in markering" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Webbsökning" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Markera alla" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Välj &läge" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Markera &rad" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Spara historik s&om..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Spara historik automatiskt som..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Stoppa spara automatiskt" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Skriv ut skärmen..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Justera historik..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Töm historik" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Töm historik och återställ" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Nästa profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Föregående profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Byt profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Ang&e kodning" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Tillåt musföljning" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Skrivskyddad" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "Anpassa eller &byt namn på flik..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Alla flikar i aktuellt fönster" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Välj flikar..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "I&nga" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Kopiera indata till" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Uppladdning med &Zmodem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Engångsövervakare" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Övervakare av &prompt" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Övervakare av &aktivitet" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Övervakare av ty&stnad" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Övervakare av processavslutning" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Öka teckensnitt" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Minska teckensnitt" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Återställ teckenstorlek" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Skicka signal" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Stoppa aktivitet" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Fortsätt aktivitet" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Lägg på" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Avbryt aktivitet" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&Terminera aktivitet" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Döda aktivitet" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Användarsignal &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Användarsignal &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Skapa ny profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Redigera nuvarande profil..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2417,7 +2515,7 @@ msgstr "" "Ett program kör för närvarande i sessionen. Är du säker på att du vill " "stänga det?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2426,18 +2524,18 @@ msgstr "" "Programmet '%1' kör för närvarande i sessionen. Är du säker på att du vill " "stänga det?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Bekräfta stängning" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Avsluta program" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2446,37 +2544,37 @@ msgstr "" "Ett program i sessionen vill inte dö. Är du säker på att du vill tvinga det " "att dö?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Programmet '%1' i den här sessionen vill inte dö. Är du säker på att du vill " "tvinga det att dö?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Döda program" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Skalprompten visas i session '%1'" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Öppna nuvarande katalog med" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Spara nerladdning med Zmodem som..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2487,14 +2585,14 @@ msgstr "" "programvara för Zmodem hittades på systemet.

              Du kanske bör installera " "paketet 'rzsz' eller 'lrzsz'.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" "

              Den aktuella sessionen har redan en pågående filöverföring med Zmodem.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2503,7 +2601,7 @@ msgstr "" "

              Ingen lämplig programvara för Zmodem hittades på systemet.

              Du " "kanske bör installera paketet 'rzsz' eller 'lrzsz'.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Välj filer för uppladdning med Zmodem" @@ -2526,144 +2624,172 @@ msgctxt "@title:window" msgid "Configure" msgstr "Anpassa" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Sök:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Aktivera menygenvägar" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Om aktiverad, ignoreras profilinställningarna" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Kom ihåg fönsterstorlek" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Visa fönsterrubrik i namnlisten" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Fokusera terminal när muspekaren finns över den" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Matcha med användning av reguljära uttryck" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Återanvänd befintlig process om möjligt när Terminal startas" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Kör alla fönster i Terminal som en enda process" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Markera alla träffar" +msgid "If enabled, profile settings will be ignored" +msgstr "Om aktiverad, ignoreras profilinställningarna" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Anger om sökningen är skiftlägeskänslig" +msgid "Remember window size" +msgstr "Kom ihåg fönsterstorlek" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "Skiftlägeskänslig" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Put new tabs:" +msgid "Force new tabs" +msgstr "Placera nya flikar:" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Ta bort fönstrets namnlist och ram" +msgid "Listen for ZModem terminal codes" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Process och fönster:" +msgid "Show progress in taskbar" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Underrättelser:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Alla dialogrutor kommer att visas igen" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Aktivera alla \"Fråga inte igen\"-meddelanden" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Ställer in om sökningen ska startas från slutet" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Sök bakåt" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Anger om sökningen är skiftlägeskänslig" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "Skiftlägeskänslig" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Process och fönster:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Markera alla träffar" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Sök:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Ställer in om sökningen ska stoppa istället för att går runt" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Gå inte runt" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Aktivera menygenvägar" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Fokusera terminal när muspekaren finns över den" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Alla dialogrutor kommer att visas igen" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Aktivera alla \"Fråga inte igen\"-meddelanden" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Visa fönsterrubrik i namnlisten" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" +"Aktivera de säkerhetskänsliga delarna av DBus-programmeringsgränssnittet" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Ta bort fönstrets namnlist och ram" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Matcha med användning av reguljära uttryck" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2688,71 +2814,110 @@ msgstr "Använd nuvarande fönsterstorlek vid nästa start" msgid "The window size will be saved upon exiting Konsole" msgstr "Fönsterstorleken sparas när Terminal avslutas" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, fuzzy, kde-format +#| msgid "When launching Konsole re-use existing process if possible" +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "Återanvänd befintlig process om möjligt när Terminal startas" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "DBus-programmeringsgränssnitt som runCommand aktiveras" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Miniatyrbildsbredd" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Ställer in miniatyrbildens bredd" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Använd Skift för att visa en miniatyrbild" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Använd Alt för att visa en miniatyrbild" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Använd Ctrl för att visa en miniatyrbild" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Sökningen är skiftlägeskänslig" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Markera alla sökträffar" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Anger om hittad text ska markeras" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Sökning stoppar istället för att gå runt" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "Bestäm om underliggande c-grupper skapas för individuella flikar" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2760,91 +2925,97 @@ msgstr "Bestämmer minnesanvändningsnivån där inskränkningar börjar" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Bestäm synligheten för hela flikraden" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Bestäm storleken på greppet mellan paneler" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Bestäm flikradens position" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Bestäm flikradens visuella stil" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Använd en användardefinierad .css-fil för flikraden" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Namnet på .css-filen som ska användas för flikradens stil" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Tillåt att mittenklicka på öppna flikar för att stänga dem" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Bestäm synligheten för knappen 'Ny flik' i flikraden" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Bestäm synligheten för knappen 'Sökflikar' på flikraden" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Bestäm var knappen 'Stäng flik' visas" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Bestäm var den nya fliken ska placeras" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Expandera flikbredderna" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Använd systemgemensam katalogplats för historikfiler" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Använd användarspecificerad katalogplats för historikfiler" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Använd specificerad katalog för historikfiler" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Använd den här katalogen för historikfiler" @@ -2856,34 +3027,30 @@ msgid "Enable memory monitoring:" msgstr "Aktivera minnesövervakning:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Ändringar får effekt efter omstart. Om aktiverat, leder oavbruten " -"minnesanvändning av Terminal\n" -"som överskrider det angivna värdet till att systemd-oomd eliminerar en eller " -"flera\n" -"flikar som innehåller den eller de minnesintensiva processerna. Observera:\n" -"aktivering kan orsaka större långsamhet vid hög minnesanvändning och att " -"ange\n" -"överdrivet låga värden kan ändå göra att Terminal dödas." +"minnesanvändning av Terminal som överskrider det angivna värdet till att " +"systemd-oomd eliminerar en eller flera flikar som innehåller den eller de " +"minnesintensiva processerna. Observera: aktivering kan orsaka större " +"långsamhet vid hög minnesanvändning och att ange överdrivet låga värden kan " +"ändå göra att Terminal dödas." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Minnesbegränsning:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3043,125 +3210,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Ingen" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Visa knappen Sökflikar:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Alltid" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Aldrig" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diverse:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Visa knappen 'Ny flik'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Expandera individuella flikbredder till hela fönster" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Använd användardefinierad stilmall:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ingen)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Beteende" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Placera nya flikar:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "Lägg till sis&t" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Efter ak&tuell flik" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Stäng flik med mittenklick" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Avdelare" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Visa rubrik:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Vid behov" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Aldrig" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Draggreppstorlek:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Liten" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Medium" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Stor" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3213,12 +3398,12 @@ msgstr "bildpunkter" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              För att använda funktionen, aktivera Mus -> Diverse -> Stryk under filer i profilinställningarna

              " +"font-weight:600;\">Mus -> Diverse -> Stryk under filer i " +"profilinställningarna.

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3256,64 +3441,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Aktivera generering av miniatyrbilder" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Storlek: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Är du säker på att du vill klistra in %1 tecken?" msgstr[1] "Är du säker på att du vill klistra in %1 tecken?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Bekräfta klistra in" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "End of text, avbrott: Kan avbryta aktuell process" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "End of transmission: Kan avsluta aktuell process" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Bell: Försöker avge en hörbar varning" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Baksteg" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: stoppar utmatning tillfälligt" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitute/Suspend: Stoppar aktuell process" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: Används för att hantera terminaltillståndet" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "File Separator/Quit: Kan avbryta aktuell process" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3322,31 +3507,31 @@ msgstr "" "Texten du försöker klistra in innehåller dolda kontrolltecken. Vill du " "filtrera bort dem?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Bekräfta klistra in" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Klistra in &utan kontrolltecken" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "K&listra in markering" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "Av&bryt" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been stoppats genom att trycka på Ctrl+S. Tryck på " "Ctrl+Q för att återuppta den." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Terminalen är skrivskyddad." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "&Byt katalog till" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "K&listra in plats" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Dela vy" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dela vyn vänster/höger" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dela vyn topp/botten" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dela vyn automatiskt" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dela vyn vänster-höger från nästa flik" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dela vyn topp-botten från nästa flik" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dela vyn automatiskt från nästa flik" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Läs in en ny flik med layout 2 x 2 terminaler" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Läs in en ny flik med layout 2 x 1 terminaler" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Läs in en ny flik med layout 1 x 2 terminaler" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Expandera vy" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Krymp vy" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Koppla loss aktuell &vy" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Koppla loss ak&tuell flik" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Nästa flik" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Föregående flik" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Fokus ovanför terminalen" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Fokus under terminalen" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Fokus till vänster om terminalen" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Fokus till höger om terminalen" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Left Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Fokus till vänster om terminalen" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Focus Below Terminal" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Fokus under terminalen" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Byt till senaste flik" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Senast använda flikar" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Byt mellan två flikar" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Senast använda flikar (baklänges)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Maximera eller minimera aktuell vy" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Maximera eller minimera aktuell vy" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Maximera eller minimera zoom av aktuell vy" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Maximera eller minimera zoom av aktuell vy" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Flytta flik åt höger" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Flytta flik åt vänster" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Ställ i n semantisk integrering (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Visa eller dölj semantiska tips" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Visa eller dölj radnummer" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Samma storlek för alla vyer" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Byt till flik %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Semantiska tips " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Radnummer " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Spara fliklayout" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Terminal-visningslayout (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3614,7 +3815,7 @@ msgstr "" "Ett problem uppstod när layouten skulle sparas.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3624,13 +3825,13 @@ msgstr "" "Ett problem uppstod när layouten skulle läsas in.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Läs in fliklayout" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3729,28 +3930,40 @@ msgstr "&Förvald teckenkodning:" msgid "Shortcut for peeking the primary screen:" msgstr "Genväg för att kika på huvudskärmen:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Ställ in intervall mellan spara automatiskt:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Radnummer:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "Al&drig" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "När &webbadresstips visas" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3786,7 +3999,7 @@ msgstr "Redigera det valda färgschemat" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3840,6 +4053,9 @@ msgstr "Rita starka färger med fetstil" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Använd valt teckensnitt för linjetecken istället för den inbyggda koden" @@ -3847,6 +4063,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Använd linjetecken som finns i teckensnittet" @@ -3967,29 +4186,45 @@ msgid "Make the cursor blink regularly" msgstr "Gör att markören blinkar regelbundet" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Aktiverad" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activation:" +msgid "Animation:" +msgstr "Aktivering:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Gör att markören blinkar regelbundet" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diverse" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Fönster:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3999,144 +4234,144 @@ msgstr "" "storleksändring" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Visa tips med terminalstorlek efter storleksändring" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Invertera alltid den markerade textens färger" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Mörknadsstyrka:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Färg:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Välj färg som används för att rita kanten" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Inaktiva terminaler:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Aktiva terminaler:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Terminalinnehåll" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" -msgstr "Radmellanrum:" +msgstr "Radavstånd:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Antal bildpunkter mellan två rader" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " bildpunkter" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Marginaler:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Justera till mitten:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Indikera om fönstret är aktivt genom att dämpa färgerna" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Gör mörkare" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Indikera om fönstret är aktivt genom att rita en kant" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Kant" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Visa vertikal linjer vid kolumn:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Komplex textlayout

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Komplex textlayout" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Aktivera textåtergivning med ordläge" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Ordläge" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4146,43 +4381,43 @@ msgstr "" "när de återges)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Använd samma attribut för hela ord" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Återge ord med ASCII-tecken tillsammans" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII-tecken" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Återge ord med indiska skrifttecken tillsammans" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Indiska skrifttecken" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji-teckensnitt:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4192,13 +4427,13 @@ msgstr "" "arabiska, farsi eller hebreiska)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Bidirektionell textåtergivning" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4206,83 +4441,83 @@ msgstr "" "starka tecken" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Tvinga vänster till höger riktning" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Behandla tabellritningstecken som starkt vänster till höger." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Överskrid bidirektionellt läge för tabelltecken" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ignorera bredd för problematiska breda tecken" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Överskrid bredd för breda tecken" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Redigera profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Allmänt" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Flikar" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Utseende" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Historik" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Tangentbord" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Tangentbindningar" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Mus" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Avancerat" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4294,49 +4529,56 @@ msgstr "" "filename>.Ändra antingen filens rättigheter eller ange ett annat namn " "för att spara inställningarna i en ny profil." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" "Profilnamnet är tomt. Ange ett namn för att kunna spara inställningarna." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "En profil med namnet \"%1\" finns redan." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profilnamnet överskrider maximalt tillåten längd (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "De markerade tecknen är ogiltiga i profilnamn: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Redigera profil: %2" msgstr[1] "Redigera %1 profiler: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Skapa ny profil" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Redigera profilen \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "Ingen" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4346,7 +4588,7 @@ msgid_plural " columns" msgstr[0] " kolumn" msgstr[1] " kolumner" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4356,42 +4598,42 @@ msgid_plural " rows" msgstr[0] " rad" msgstr[1] " rader" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Systemlarmklocka" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Systemunderrättelser" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Visuellt alarm" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ignorera alarmhändelser" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Standardprofil för nya terminalsessioner i %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Redigera miljö" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "En miljövariabel per rad" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4399,23 +4641,23 @@ msgid_plural " seconds" msgstr[0] " sekund" msgstr[1] " sekunder" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Välj startkatalog" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Hämta nytt..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Misslyckades ladda schemat %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4424,7 +4666,7 @@ msgstr "" "Färgschemat använder en genomskinlig bakgrund som inte verkar stödjas av " "skrivbordet." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4433,12 +4675,12 @@ msgstr "" "Terminalen startades innan skrivbordseffekter aktiverats. Du måste starta om " "terminalen för att se genomskinlig bakgrund." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Förvald filtyp" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4467,7 +4709,7 @@ msgstr "" "ignoreras inställningen och filen öppnas med den\n" "förvalda texteditorn." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Eget texteditorkommando" @@ -4556,26 +4798,54 @@ msgstr "Välj ursprunglig katalog" msgid "Start in same directory as current session" msgstr "Starta i samma katalog som aktuell session" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current session" +msgid "Enter same container as current session" +msgstr "Starta i samma katalog som aktuell session" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Miljö:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Redigera listan med miljövariabler och tillhörande värden" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "&Ursprunglig terminalstorlek:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4588,31 +4858,31 @@ msgstr "" "inaktiverat för att dessa alternativ ska fungera.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "&Terminalalarmmetod:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Semantisk integrering" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Emulering av uppåt- och neråtpilar" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Musklick på inmatningsraden flyttar markören" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Semantiska tips:" @@ -4622,9 +4892,9 @@ msgstr "Semantiska tips:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4635,9 +4905,9 @@ msgstr "Aldrig" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4648,34 +4918,34 @@ msgstr "När webbadresstips visas" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Alltid" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Röda felstaplar:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Röd felbakgrund:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Alternerande staplar:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Alternerande bakgrund:" @@ -5034,115 +5304,127 @@ msgid "Scrollback:" msgstr "Historik:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Rulla sida uppåt/nedåt:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Färglägg raderna som blir synliga" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Dold" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Varje markörs storlek (som procent av rullningslistens längd):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Färgläggning:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Rulla sidan halva fönsterhöjden" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Halva skärmens höj&d" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Färg på rullningslistmarkörer:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Färg på rullningslistens sökmarkeringsrader:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Formatera om rader:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Rulla sidan hela fönsterhöjden" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "&Hela skärmens höjd" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Rullningsradens position:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Visa rullningslist till höger om terminalfönster" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Hö&ger sida" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Visa rullningslist till vänster om terminalfönster" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Vänster sida" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Dold" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Färgläggning:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Färglägg raderna som blir synliga" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Formatera om rader:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Formatera om rader när terminalens storlek ändras" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Färg på rullningslistmarkörer:" +msgid "Scrollbar position:" +msgstr "Rullningsradens position:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Varje markörs storlek (som procent av rullningslistens längd):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Sökmarkeringsradernas ogenomskinlighet:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5247,37 +5529,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "I&nga" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Sök..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Skriv in texten att söka efter här" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Nästa" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Hitta nästa träff för nuvarande sökbegrepp" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Föregående" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5285,77 +5567,77 @@ msgstr "Hitta föregående träff för nuvarande sökbegrepp" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Visa alternativmenyn" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Stäng sökraden" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Skiftlägeskänslig" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Anger om sökningen är skiftlägeskänslig" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Visa alternativmenyn" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Stäng sökraden" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Matcha reguljärt uttryck" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Markera alla träffar" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Anger om hittad text ska markeras" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Sök bakåt" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Ställer in om sökningen ska startas från slutet" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Gå inte runt" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Ställer in om sökningen ska stoppa istället för att går runt" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Sök efter nuvarande sökbegrepp från slutet" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5366,7 +5648,7 @@ msgstr "Sök efter nuvarande sökbegrepp från början" msgid "Print Shell" msgstr "Skriv ut skalet" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5406,6 +5688,13 @@ msgstr "Normalt flikrubrikformat" msgid "Tab Co&lor:" msgstr "&Flikfärg:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Tab Co&lor:" +msgid "&Activity Tab Color:" +msgstr "&Flikfärg:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5499,36 +5788,58 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Återställ terminal" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Öppna en ny flik" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Sökflikar" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Stäng denna flik" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Koppla &från flik" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Anpassa eller &byt namn på flik..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Stäng flik" +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "D-Bus metoderna sendText och/eller runCommand har just används. Det finns " +#~ "säkerhetsproblem med att låta dessa metoder vara öppna. Om så önskas, kan " +#~ "metoderna ändras till bara intern användning genom att kompilera om " +#~ "Terminal.

              Varningen visas bara en gång för den här instansen av " +#~ "Terminal.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Skiftlägeskänslig" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Ingen" diff --git a/local/recipes/kde/konsole/source/po/ta/konsole.po b/local/recipes/kde/konsole/source/po/ta/konsole.po index c515c9ddd6..afaf59ee5b 100644 --- a/local/recipes/kde/konsole/source/po/ta/konsole.po +++ b/local/recipes/kde/konsole/source/po/ta/konsole.po @@ -3,21 +3,21 @@ # # Vasee Vaseeharan , 2004, 2008. # ஆமாச்சு , 2008. -# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Kishore G +# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025, 2026 Kishore G msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-18 16:44+0530\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-04-12 21:43+0530\n" "Last-Translator: Kishore G \n" -"Language-Team: Tamil \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 24.05.2\n" +"X-Generator: Lokalize 25.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -51,7 +51,7 @@ msgstr "பார்வை" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "பிரிந்த காட்சிமுறை" @@ -87,7 +87,7 @@ msgid "S&crollback" msgstr "&முந்தைய உரையை காட்டுவது" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "அமர்வு கருவிப்பட்டை" @@ -169,34 +169,46 @@ msgstr "இயல்பிருப்பு அமைப்பை பொரு #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "இயல்பிருப்பு அமைப்பை பொருட்படுத்தாமல் அனைத்து கருவிப்பட்டைகளையும் காட்டும்" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "இயல்பிருப்பு அமைப்பை பொருட்படுத்தாமல் அனைத்து கருவிப்பட்டைகளையும் மறைக்கும்" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "இயல்பிருப்பு அமைப்பை பொருட்படுத்தாமல் கீற்றுப்பட்டையை காட்டும்" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "இயல்பிருப்பு அமைப்பை பொருட்படுத்தாமல் கீற்றுப்பட்டையை மறைக்கும்" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "கான்சோலை முழுத்திரை பயன்முறையில் துவக்கும்" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "ஒளிபுகும் பின்புலங்களை கணினி ஆதரிக்குமாயினும், அவற்றை முடக்கும்." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "உள்ள அனைத்து பயன்முறைகளையும் காட்டும்" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -204,13 +216,13 @@ msgstr "" "உள்ள அனைத்து பயன்முறைகளையும் அவற்றின் வகைகளையும் காட்டும் (-p என்ற விருப்பத்துடன் " "பயன்படுத்தக்கூடியது)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "பயன்முறையின் ஓர் பண்பின் மதிப்பை மாற்றும்." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -220,7 +232,7 @@ msgstr "" "இயக்க வேண்டிய கட்டளை. இதற்கு பின் வரும் அனைத்து தருமதிப்புகளையும் இக்கட்டளையே பெறும். " "ஆதலால், இதுவே கான்சோலுக்கு நீங்கள் தரும் கடைசி தருமதிப்பாக இருக்க வேண்டும்." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -228,13 +240,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "கட்டளை பெற வேண்டிய தருமதிப்புகள்" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -252,157 +264,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "முன்புலம்" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "பின்புலம்" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "நிறம் 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "நிறம் 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "நிறம் 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "நிறம் 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "நிறம் 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "நிறம் 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "நிறம் 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "நிறம் 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "முன்புலம் (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "பின்புலம் (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "நிறம் 1 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "நிறம் 2 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "நிறம் 3 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "நிறம் 4 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "நிறம் 5 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "நிறம் 6 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "நிறம் 7 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "நிறம் 8 (பகட்டானது)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "முன்புலம் (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "பின்புலம் (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "நிறம் 1 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "நிறம் 2 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "நிறம் 3 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "நிறம் 4 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "நிறம் 5 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "நிறம் 6 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "நிறம் 7 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "நிறம் 8 (மங்கலானது)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -654,6 +666,38 @@ msgstr "மேலே" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "புரவன்" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "Flatpak-இல் இயங்கும்போது கான்சோலால் container-களைப் பயன்படுத்த முடியாது." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [இயல்பிருப்பு]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -698,7 +742,7 @@ msgstr "" msgid "Copy Location" msgstr "இருப்பிடத்தை நகலெடு" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "சிறுபடம் உருவாக்கப்படுகிறது" @@ -729,13 +773,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "எழுத்துருவை தேர்வு செய்தல்" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "அனைத்து எழுத்துருக்களையும் காட்டு" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -775,17 +819,17 @@ msgstr "விசைக்கூட்டு" msgid "Output" msgstr "வெளியீடு" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "புதிய விசை பிணைப்பு பட்டியல்" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "விசை பிணைப்பு பட்டியலை திருத்து" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "விவரணம் இல்லாமல் ஓர் விசை பிணைப்பு பட்டியலை சேமிக்க முடியாது." @@ -793,7 +837,7 @@ msgstr "விவரணம் இல்லாமல் ஓர் விசை #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -827,226 +871,226 @@ msgstr "உள்ளீடு:" msgid "Output:" msgstr "வெளியீடு:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "கான்சோல்" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "முனைய செயலி" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, கான்சோல் நிரலாளர்கள்" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "குர்ட் ஹின்டன்பர்க்" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "பொதுவான பராமரிப்பாளர், பிழைநீக்கல், மற்றும் பொதுவான முன்னேற்றங்கள்" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "ராபர்ட் நைட்" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" -msgstr "" +msgstr "முந்தைய பராமரிப்பாளர், KDE4 நிரலகங்களைப் பயன்படுத்த உதவினார்" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "லாரஸ் டொயல்லெ" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "முதிலில் இயற்றியவர்" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "அஹமது சமீர்" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "வழு களைதல்களும் பொதுவான முன்னேற்றங்களும்" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "கார்லோஸ் ஆல்வெஸ்" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "தாமசு கானாபிராவா" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "குஸ்தாவோ கார்னெயிரோ" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "எடுவின் புயோல்ஸ்" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "பிழைதிருத்தங்களும் பொதுவான மேம்பாடுகளும்" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "மார்ட்டின் டி. ஹ. சான்டுஸ்மார்க்" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "நேட் கிரஹாம்" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "மாரியஸ் குலெபொக்கி" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "பிழைதிருத்தங்களும் முக்கிய மேம்பாடுகளும்" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "தாமஸ் சர்ரெல்" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "ஜெக்கில் வூ" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "வாலுடோ பாஸ்டியான்" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "ஸ்டீபன் பின்னர்" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "தாமஸ் டுரைபுஹோல்சு" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "பொதுவான மேம்பாடுகள்" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "கிரிஸ் மேகெமர்" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "பிழைதிருத்தங்கள்" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "ஃபரான்செஸ்க்கோ செக்கோனி" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "ஸ்டீபன் குளோ" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "சோலாரிஸ் ஆதரவும் வரலாறும்" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "அலெக்ஸாண்டர் நியுன்டார்ப்" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "பிழைநீக்கமும் துவக்கத்தை விரைவுபடுத்தியதும்" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "பீட்டர் சில்வா" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "குறிகளில் முன்னேற்றங்கள்" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "லாட்சி பொலோனி" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1056,13 +1100,13 @@ msgstr "" "உட்பொதிந்த கான்சோல்\n" "கருவிப்பட்டையும் அமர்வுப் பெயர்களும்" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "டேவிட் ஃபவுர்" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1072,25 +1116,25 @@ msgstr "" "உட்பொதிந்த கான்சோல்\n" "பொதுவான முன்னேற்றங்கள்" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "அன்டோனியோ லாராஸோ" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "காட்சிமுறை அசைவூட்டங்கள்" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "மத்தையாஸ் எட்ரிச்" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1103,135 +1147,135 @@ msgstr "" "kvt திட்டத்தினின்று நிரல்\n" "பொதுவான முன்னேற்றங்கள்" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "வார்விக் அலிசன்" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "ஸ்கீமா மற்றும் உரை தேர்வு முன்னேற்றங்கள்" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "டான் பிலோன்" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI துறை" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "கெவின் ஸ்டிரீட்" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD துறை" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "செவன் ஃபிஸ்சர்" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "டேல் எம். ப்ளேவன்" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "மார்ட்டின் ஜோன்ஸ்" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "லர்ஸ் க்னோல்" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "மேலும் பலருக்கும் நன்றி.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&புதிய கீற்று" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&கீற்றை நகலெடு" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "புதிய &சாளரம்" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "சாளரத்தை மூடு" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&நினைவுக்குறிகள்" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&சாளரத்தின் நிறத்திட்டம்" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "பயன்முறைகளை நிர்வகி..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "பட்டியை செயல்படுத்து" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "கீற்றுகளின் தளவமைப்பை சேமி..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "கீற்றுகளின் தளவமைப்பை ஏற்று..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1240,67 +1284,67 @@ msgid_plural "" msgstr[0] "இச்சாளரத்தில் ஓர் நிரல் இயங்கிக்கொண்டிருக்கிறது. உறுதியாக வெளியேற வேண்டுமா?" msgstr[1] "இச்சாளரத்தில் %1 நிரல்கள் இயங்கிக்கொண்டிருக்கின்றன. உறுதியாக வெளியேற வேண்டுமா?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "வெளியேறுவதை உறுதிப்படுத்தல்" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&சாளரத்தை மூடு" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "&தற்போதைய கீற்றை மூடு" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "இச்சாளரத்தில் %1 முனையங்கள் திறந்துள்ளன. உறுதியாக வேளியேற வேண்டுமா?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "பயன்முறைகள்" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "பொதுவானவை" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "நினைவகம்" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "கீற்றுப்பட்டை / பிரிப்பான்கள்" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "தற்காலிக கோப்புகள்" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "சிறுபடங்கள்" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1384,7 +1428,7 @@ msgstr "சேமி" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "புதுப்பி" @@ -1396,28 +1440,28 @@ msgid "Cancel" msgstr "ரத்து செய்" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "விரை கட்டளைகள்" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "விரை அணுகலைக் காட்டு" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "விரை கட்டளை ஏதுமில்லை. செருகுநிரல்கள் → விரை கட்டளைகள் என்பதற்கு சென்று ஒன்றைச் சேர்க்கலாம்" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "செருகுநிரல்கள் - விரை கட்டளைகள்" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "விரை கட்டளைகளை காட்டு" @@ -1459,7 +1503,7 @@ msgstr "" "என்ற குழுவை நீக்கப் போகிறீர்கள். உறுதியாக செய்யலாமா?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "%1 என்பதை நீக்கப் போகிறீர்கள். உறுதியாக செய்யலாமா?" @@ -1512,11 +1556,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1, SSH பதிவுகளுக்கான அடைவாகும்" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH அமைப்பு" @@ -1579,24 +1623,24 @@ msgid "" msgstr "முனைய நிரலுக்கு (எ.கா. bash, zsh, sh) வெளியே SSH கட்டளையை இயக்க முடியாது" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH சாவி" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "நீக்கு" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "மாற்றாதே" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1605,70 +1649,70 @@ msgstr "" "பல்வேறு SSH அமைப்புகளை கொண்ட %1\n" "என்ற அடைவை நீக்கவிருக்கிறீர்கள். உறுதியாக நீக்கலாமா?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH அமைப்புகளை நீக்குவது" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "இறக்குமதி செய்த SSH பயன்முறை
              சில அமைப்புகள் படிக்க மட்டும் கூடியவை." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "புரவன் பெயரை காணவில்லை" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "பெயரை காணவில்லை" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "'SSH அமைப்புகளிலிருந்து' என்பது தேர்ந்தெடுக்கப்பட்டிருந்தால், SSH சாவியையோ பயனர்பெயரையோ " "குறிப்பிட வேண்டாம்." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "பயனர் பெயரோ SSH சாவியோ அமைக்கப்பட்டிருக்க வேண்டும்" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "அடைவை காணவில்லை" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH அமர்வுக்கான பயன்முறை அமைக்கப்பட்டிருக்க வேண்டும்" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "இவ்வடைவை நீக்க முடியாது" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "அடைவையும் அதிலுள்ளவற்றையும் நீக்கும்" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "அடைவின் பெயரை மாற்ற இரட்டை கிளிக் செய்யவும்." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "தானாக சேர்க்கப்பட்ட பதிவை நீக்க முடியாது." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "தேர்ந்தெடுத்துள்ள பதிவை நீக்கு" @@ -1860,25 +1904,25 @@ msgstr "வெளியீட்டுக்கான விருப்பங #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&அச்சடிப்பதற்குரிய பயன்முறை (கருப்பு எழுத்துகள், பின்புலம் இல்லாமல்)." #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&வெளியீட்டின் அளவை மாற்று" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "உள்ளமைந்த‍து" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "இயல்பிருப்பு பயன்முறை" @@ -1937,17 +1981,39 @@ msgstr "சுருக்குவழியை மாற்ற இரட்ட msgid "Tab Properties" msgstr "கீற்றுப் பண்புகள்" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 என்பதிலிருந்து வெளியீட்டை சேமி" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "முறையற்ற முகவரியாய் %1 உள்ளதால், வெளியீட்டை சேமிக்க முடியவில்லை." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "%1 தனில் தானியக்க சேமிப்பு கோப்பை உருவாக்க முடியவில்லை." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "வேறு திரைக்கு மாறியதால் தானியக்க சேமிப்பு இடைநிறுத்தப்பட்டுள்ளது." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"தானியக்க சேமிப்பு கோப்பு வேறு நிரலால் மாற்றப்பட்டுள்ளதால் இனிமேல் சேமிக்க முடியாது." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "வெளியீட்டு கருவி மாறியதற்கேற்ப தானியக்க சேமிப்பின் நிலையை மாற்ற முடியவில்லை." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1983,82 +2049,99 @@ msgstr "பிரீஸ்" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "டார்க் பேஸ்டெல்ஸ்" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "கருப்பின் மீது பச்சை" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "லினக்ஸ் நிறங்கள்" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "கருப்பின் மீது சிவப்பு" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "கருப்பின் மீது வெள்ளை" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "இயல்பிருப்பு (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "லினக்ஸ் முனையம்" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "சோலரிஸ் முனையம்" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "தேடு..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "கண்டுபிடிக்க வேண்டிய கீற்றின் பெயரை இங்கு உள்ளிடவும்" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "'%1' என்பதில் மணியடிக்கிறது (அமர்வு '%2')" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "இருமத்தை கண்டுபிடிக்க முடியவில்லை: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "எச்சரிக்கை: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" "துவக்க வேண்டிய மனிதப்பயன்பாட்டிற்கான (interactive) முனையத்தை கண்டுபிடிக்க முடியவில்லை." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2067,332 +2150,339 @@ msgstr "" "'%1' கண்டுபிடிக்கப்படவில்லை; மாற்றாக '%2' துவக்கப்படுகிறது. உங்கள் பயனர் கணக்கின் " "அமைப்புகளை சரிபாருங்கள்." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "'%1' நிரலை '%2' என்ற தருமதிப்புகளுடன் துவக்க முடியவில்லை." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "'%1' என்பதில் அமைதி (அமர்வு '%2')" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "அமர்வைக் காட்டு" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "நிறைவடைந்தது" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "'%1' நிரல் முறிவடைந்தது." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "'%1' நிரல், %2 என்ற நிலையுடன் வெளிவந்தது." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem முன்னேற்றம்" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "'%1' என்பதில் செயல்பாடு (அமர்வு '%2')" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "பாதுகாப்பை பாதிக்கக்கூடிய DBus நெறிமுறை அமைப்புகளில் முடக்கப்பட்டுள்ளது." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "கான்சோல்" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "'%2' என்ற அமர்வில் '%1' என்ற பணி முடிவடைந்துள்ளது" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "இந்நினைவுக்குறியை எப்படி திறப்பதென கான்சோலுக்கு தெரியவில்லை: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "'%1' என்பதை இதைக்கொண்டு தேடு" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "இணைய சுருக்குவழிகளை அமை..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&அமர்வை மூடு" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "கோப்பு உலாவியை திற" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "நகலெடு" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "காட்சியை இடது/வலது என பிரி" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "காட்சியை மேல்/கீழ் என பிரி" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "prompt-ஐத் தவிர அனைத்தையும் நகலெடு" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "பயனரின் உள்ளீட்டை நகலெடு" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "கட்டளையின் வெளியீட்டை நகலெடு" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "தேர்வை ஒட்டு" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "இணையத்தேடல்" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&அனைத்தையும் தேர்ந்தெடு" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "&தேர்வுப் பயன்முறை" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "&வரியை தேர்ந்தெடு" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "வெளியீட்டை &இவ்வாறு சேமி…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "வெளியீட்டை தானாக இவ்வாறு சேமி…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "தானியக்க சேமிப்பை நிறுத்து" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&திரையை அச்சிடு…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "முந்தைய உரை காட்டப்படுவதை மாற்று..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "முந்தைய உரையை நீக்கு" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "முந்தைய உரையை நீக்கி முனையத்தை மீட்டமை" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "அடுத்த பயன்முறை" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "முந்தைய பயன்முறை" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "பயன்முறையை மாற்று" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "எழுத்துருவாக்கத்தை &அமை" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "சுட்டியின் இருப்பிடத்தை நிரல்கள் அறியவிடு" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "படித்தல் மட்டும்" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&கீற்றை அமை அல்லது அதற்கு மறுபெயரிடு…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&தற்போதைய சாளரத்திலுள்ள அனைத்து கீற்றுகளும்" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&கீற்றுகளை தேர்ந்தெடு…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&ஏதுமில்லை" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "உள்ளீட்டை நகலெடுக்க வேண்டிய இடம்" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem பதிவேற்றம்..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "ஒருமுறை மட்டும் தூண்டப்படக்கூடிய கண்காணிகள்" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "&தூண்டிக்காக கண்காணி" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&செயல்பாட்டிற்காக கண்காணி" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&அமைதிக்காக கண்காணி" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "&பணி முடிவடைவதற்காக கண்காணி" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "எழுத்துருவை பெரிதாக்கு" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "எழுத்துருவை சிறிதாக்கு" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "எழுத்துருவின் அளவை மீட்டமை" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "சமிக்ஞை அனுப்பு" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&பணியை இடைநிறுத்து" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&பணியைத் தொடர்" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&தொடர்பைத் துண்டி" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&பணியில் குறுக்கிடு" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "&பணியை முடி" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&பணியை கட்டாயமாக முடி" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "பயனர் சமிக்ஞை &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "பயனர் சமிக்ஞை &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "புதிய பயன்முறையை உருவாக்கு…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "தற்போதைய பயன்முறையை திருத்து…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2400,7 +2490,7 @@ msgid "" msgstr "" "இவ்வமர்வில் ஓர் நிரல் இயங்கிக் கொண்டிருக்கிறது. உறுதியாக அதை மூட விரும்புகிறீர்களா?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2408,18 +2498,18 @@ msgid "" msgstr "" "இவ்வமர்வில் '%1' என்ற நிரல் இயங்கிக் கொண்டிருக்கிறது. உறுதியாக அதை மூட விரும்புகிறீர்களா?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "மூடுவதை உறுதிசெய்யுங்கள்" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "நிரலை மூடு" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2427,76 +2517,63 @@ msgid "" msgstr "" "இவ்வமர்விலுள்ள ஓர் நிரல் வெளியேற மறுக்கிறது. அதை கட்டாயப்படுத்தி முடிவடைய வைக்கலாமா?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" -msgstr "" -"இவ்வமர்விலுள்ள '%1' என்ற நிரல் வெளியேற மறுக்கிறது. அதை கட்டாயப்படுத்தி முடிவடைய " -"வைக்கலாமா?" +msgstr "இவ்வமர்விலுள்ள '%1' என்ற நிரல் வெளியேற மறுக்கிறது. அதை கட்டாயப்படுத்தி மூடலாமா?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "நிரலை கட்டாயப்படுத்தி மூடு" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "'%1' அமர்வில் தூண்டி காட்டப்படுகிறது" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "தற்போதைய அடைவை இதனால் திற" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "&ZModem பதிவிறக்கத்தை இங்கு சேமி…" -#: session/SessionController.cpp:2118 -#, fuzzy, kde-format -#| msgid "" -#| "

              A ZModem file transfer attempt has been detected, but no suitable " -#| "ZModem software was found on the system.\n" -#| "

              You may wish to install the 'rzsz' or 'lrzsz' package.\n" +#: session/SessionController.cpp:2235 +#, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " "software was found on this system.

              You may wish to install the 'rzsz' " "or 'lrzsz' package.

              " msgstr "" -"

              ஒரு Zமோடம் கோப்பு மாற்றும் முயற்சி கண்டுபிடிக்கப்பட்டது, ஆனால் பொருத்தமான Zமோடம் " -"மென்பொருள் அமைப்பில் இல்லை.\n" -"

              'rzsz' அல்லது 'lrzsz' தொகுப்பை வேண்டுமானால் நிறுவலாம்.\n" +"

              ஒரு ZModem கோப்பு மாற்றும் முயற்சிக்கப்பட்டுள்ளது, ஆனால் உரிய நிரல் ஏதும் இக்கணினியில் " +"இல்லை.

              விரும்பினால் 'rzsz' அல்லது 'lrzsz' தனை நிறுவவும்.

              " -#: session/SessionController.cpp:2128 -#, fuzzy, kde-format -#| msgid "" -#| "

              The current session already has a ZModem file transfer in progress." +#: session/SessionController.cpp:2245 +#, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " -msgstr "<பி>நடப்பு அமர்வில் ஏற்கனவே உள்ள Z மோடம் கோப்பு இடமாற்றம் நடைமுறையில் உள்ளது." +msgstr "

              தற்போதயை அமர்வில் ஏற்கனவே ZModem மூலமான கோப்பு இடமாற்றம் நடைபெறுகிறது.

              " -#: session/SessionController.cpp:2141 -#, fuzzy, kde-format -#| msgid "" -#| "

              No suitable ZModem software was found on the system.\n" -#| "

              You may wish to install the 'rzsz' or 'lrzsz' package.\n" +#: session/SessionController.cpp:2258 +#, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -"

              பொருத்தமான Z மோடம் மென்பொருள் அமைப்பு கிடைக்கவில்லை.\n" -"

              'rzsz' அல்லது 'lrzsz ' தொகுப்பு வேண்டுமானால் நிறுவலாம்.\n" +"

              எந்த ZModem நிரலும் கண்டுபிடிக்கப்படவில்லை.

              'rzsz' அல்லது 'lrzsz' போன்ற " +"நிரல்களை நிறுவ வேண்டியிருக்கலாம்.

              " -#: session/SessionController.cpp:2146 -#, fuzzy, kde-format -#| msgid "Select Files to Upload" +#: session/SessionController.cpp:2263 +#, kde-format msgid "Select Files for ZModem Upload" -msgstr "பதிவேற்றத்திற்கான கோப்புகளை தேர்ந்தெடு" +msgstr "ZModem பதிவேற்றத்திற்கான கோப்புகளை தேர்ந்தெடுவும்" #: session/SessionListModel.cpp:89 #, kde-format @@ -2516,56 +2593,9 @@ msgctxt "@title:window" msgid "Configure" msgstr "அமைப்புகள்" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "தேடல்:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "பட்டிகளில் விரைவுப்படுத்திகளை இயக்கு" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "இது இயக்கப்படால், தனிப்பட்ட பயன்முறைகளுக்குரிய அமைப்புகள் பொருட்படுத்தப்படா" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "சாளரத்தின் அளவை நினைவில் கொள்" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "சாளரத்தலைப்பை தலைப்புப்பட்டையில் காட்டு" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "முனையங்களின் மீது சுட்டிக்குறியை வைக்கும்போது அவற்றை குவியப்படுத்து" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "சுருங்குறித் தொடர்களைக் கொண்டு பொருத்து" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" @@ -2573,89 +2603,162 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "அனைத்து கான்சோல் சாளரங்களும் ஒரே பணியில் இருக்கட்டும்" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "பொருந்தும் அனைத்தை முன்னிலைப்படுத்து" +msgid "If enabled, profile settings will be ignored" +msgstr "இது இயக்கப்படால், தனிப்பட்ட பயன்முறைகளுக்குரிய அமைப்புகள் பொருட்படுத்தப்படா" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "பெரிய/சிறிய எழுத்துவகையை தேடல் வேறுபடுத்துமா என்பதை அமைக்கும்" +msgid "Remember window size" +msgstr "சாளரத்தின் அளவை நினைவில் கொள்" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "எழுத்து வகையை (பெரிது/சிறிது) பொருட்படுத்து" +msgid "Force new tabs" +msgstr "புதிய கீற்றுகளை கட்டாயப்படுத்து" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "சாளரத்தின் தலைப்புப்பட்டையையும் விளிம்பையும் நீக்கு" +msgid "Listen for ZModem terminal codes" +msgstr "ZModem முனையக் குறிகளை கையாள்" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "சாளரமும் ஒன்றாக்கமும்" +msgid "Show progress in taskbar" +msgstr "முன்னேற்றத்தை பணிப்பட்டையில் காட்டு" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "அறிவிப்புகள்:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "அனைத்து சாளரங்களும் தேவைப்படும்போது மறுபடியும் காட்டப்படும்" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "\"மறுபடியும் கேட்காதே\" என்று மறைத்த அனைத்து எச்சரிக்கைகளையும் காட்டு" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "தேடல் கீழிலிருந்து துவங்க வேண்டுமா என்பதை அமைக்கும்" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "பின்னோக்கித் தேடு" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "பெரிய/சிறிய எழுத்துவகையை தேடல் வேறுபடுத்துமா என்பதை அமைக்கும்" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "எழுத்து வகையை (பெரிது/சிறிது) பொருட்படுத்து" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "சாளரமும் ஒன்றாக்கமும்" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "பொருந்தும் அனைத்தை முன்னிலைப்படுத்து" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "தேடல்:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" "கீழ் மற்றும் மேல் எல்லைகளில் தேடல் சுழல வேண்டுமா அல்லது நிற்க வேண்டுமா என்பதை அமைக்கும்" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "சுழலாதே" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "பட்டிகளில் விரைவுப்படுத்திகளை இயக்கு" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "முனையங்களின் மீது சுட்டிக்குறியை வைக்கும்போது அவற்றை குவியப்படுத்து" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "அனைத்து சாளரங்களும் தேவைப்படும்போது மறுபடியும் காட்டப்படும்" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "\"மறுபடியும் கேட்காதே\" என்று மறைத்த அனைத்து எச்சரிக்கைகளையும் காட்டு" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "சாளரத்தலைப்பை தலைப்புப்பட்டையில் காட்டு" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "பாதுகாப்பை பாதிக்கக்கூடிய DBus நெறிமுறையின் பகுதியை இயக்கு" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "சாளரத்தின் தலைப்புப்பட்டையையும் விளிம்பையும் நீக்கு" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "சுருங்குறித் தொடர்களைக் கொண்டு பொருத்து" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2680,71 +2783,112 @@ msgstr "அடுத்த துவக்கத்தில் தற்போ msgid "The window size will be saved upon exiting Konsole" msgstr "கான்சோலிலிருந்து வெளியேறும்போது சாளரத்தின் அளவு செமிக்கப்படும்" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"கான்சோலைத் துவக்கும்போது புதிய சாளரத்திற்குப் பதிலாக ஏற்கனவேயுள்ள அமர்வில் புதியக் " +"கீற்றாகத் திற (முடிந்தால்)" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "முன்னேற்றப் பட்டையைக் காட்டு" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"ஓடிக்கொண்டிருக்கும் நிரல் அதன் முன்னேற்றத்தை தெரிவித்தால், அது பணிப்பட்டையில் காட்டப்படும்" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "runCommand போன்ற DBus நெறிமுறைகள் இயக்கப்படும்" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "ZModem முனையக் குறிகளை கையாள்" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Serial இணைப்புகள் வழியாக தானாக கோப்புகளை அனுப்பு/பெறு" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "சிறுபடத்தின் அகலம்" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "சிறுபடத்தின் அகலத்தை அமைக்கும்" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "சிறுபடத்தை காட்ட shift-ஐப் பயன்படுத்து" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "சிறுபடத்தை காட்ட alt-ஐப் பயன்படுத்து" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "சிறுபடத்தை காட்ட ctrl-ஐப் பயன்படுத்து" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "பெரிய/சிறிய எழுத்துவகையை தேடல் வேறுபடுத்தும்" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "பொருந்தும் அனைத்தை முன்னிலைப்படுத்து" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "பொருந்தும் உரை முன்னிலைப்படுத்தப்பட வேண்டுமா என்பதை அமைக்கும்" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "தேடல் சுழலாமல் நிற்கும்" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "கீற்றுகளை தனித்தனி cgroup-களில் உருவாக்க வேண்டுமா" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2752,91 +2896,97 @@ msgstr "எவ்வளவு நினைவுக்கு மேல் பய #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "கீற்றுப்பட்டை காட்டப்படுவதை கட்டுப்படுத்தும்" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "பலகைகளுக்கிடையேயான பிடிப்பியின் அளவை கட்டுப்படுத்தும்" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "கீற்றுப்பட்டையின் இருப்பிடத்தை கட்டுப்படுத்தும்" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "கீற்றுப்பட்டையின் தோற்றத்தை கட்டுப்படுத்தும்" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "பயனர் குறிப்பிடும் .css கோப்பைக் கீற்றுப்பட்டைக்குப் பயன்படுத்து" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "கீற்றுப்பட்டையின் தோற்றத்திட்டத்திற்கு பயன்படுத்த வேண்டிய .css கோப்பு" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "கீற்றுகளின் மீது நடு-கிளிக் செய்தால் அவற்றை மூடு" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "கீற்றுப்பட்டையில் 'புதிய கீற்று' பட்டன் காட்டப்படுவதை கட்டுப்படுத்தும்" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "கீற்றுப்பட்டையில் 'கீற்றுகளை கண்டுபிடி' பட்டன் காட்டப்படுவதை கட்டுப்படுத்தும்" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "கீற்றுகளை மூடும் பட்டன் காட்டப்படும் இடத்தை கட்டுப்படுத்தும்" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "புதிய கீற்றுகள் சேர்க்கப்படும் இடத்தை கட்டுப்படுத்தும்" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "கீற்றுகளை அகலப்படுத்து" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "முந்தைய உரையை சேமிப்பதற்கு, கணினி முழுவதற்குமான இடத்தை பயன்படுத்து" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "முந்தைய உரையை சேமிப்பதற்கு, இப்பயனருக்கான தனிப்பட்ட இடத்தை பயன்படுத்து" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "முந்தைய உரையை சேமிப்பதற்கு, வேறு இடத்தை பயன்படுத்து" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "முந்தைய உரையை சேமிப்பதற்கு, இந்த அடைவை பயன்படுத்து" @@ -2848,32 +2998,29 @@ msgid "Enable memory monitoring:" msgstr "நினைவக பயன்பாட்டை கண்காணி:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" -"மீள்துவக்கியபின் மாற்றங்கள் செயல்படும். இது இயக்கப்பட்டிருக்கும்போது குறிப்பிட்ட வரம்புக்கு\n" -"மேல் கான்சோல் நினைவைப் பயன்படுத்தினால், அதிக நினைவப் பயன்படுத்தும் கீற்றுகளை systemd-" -"oomd\n" -"கட்டாயமாக மூடும். குறிப்பு: இதை இயக்குவது,\n" -"அதிக நினைவைப் பயன்படுத்தும்போது கணினியின் வேகத்தை பாதிக்கலாம்.\n" -"மாறாக, வரம்பை மிக‍க்குறைவாக அமைத்தால் கான்சோலே கட்டாயமாக நிறுத்தப்படலாம்." +"மீள்துவக்கியபின் மாற்றங்கள் செயல்படும். இது இயக்கப்பட்டிருக்கும்போது குறிப்பிட்ட வரம்புக்குமேல் " +"கான்சோல் நினைவைப் பயன்படுத்தினால், அதிக நினைவப் பயன்படுத்தும் கீற்றுகளை systemd-" +"oomdகட்டாயமாக மூடும். குறிப்பு: இதை இயக்குவது,அதிக நினைவைப் பயன்படுத்தும்போது " +"கணினியின் வேகத்தை பாதிக்கலாம்.மாறாக, வரம்பை மிக‍க்குறைவாக அமைத்தால் கான்சோலே கட்டாயமாக " +"நிறுத்தப்படலாம்." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "நினைவக வரம்பு" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3034,125 +3181,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "வேண்டாம்" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "கீற்றைகளைக் கண்டுபிடிப்பதற்கான பட்டனை காட்டுவது:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "எப்போதும்" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "ஒருபோதும் வேண்டாம்" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "மற்றவை:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "'புதிய கீற்று' பட்டனை காட்டு" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "கீற்றுகளை சாளரத்தின் முழு அகலத்திற்கு விரி" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "பயனர்-வரையறுக்கும் stylesheet-ஐப் பயன்படுத்து:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(ஏதுமில்லை)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "நடத்தை" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "புதிய கீற்றுகளை வைப்பது:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "க&டைசியில்" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "தற்போதைய கீற்றுக்கு &பிறகு" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "நடு கிளிக் செய்தால் கீற்றை மூடு" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "துண்டுகள்" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "தலைப்பைக் காட்டுவது:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "தேவைப்படும்போது" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "ஒருபோதும் வேண்டாம்" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "இழுப்பதற்கான இடத்தின் அளவு:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "சிறியது" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "நடுத்தரமானது" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "பெரியது" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3204,12 +3369,12 @@ msgstr "px" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              இவ்வம்சத்தை பயன்படுத்த, சுட்டி->மற்றவை->கோப்புகளுக்கு அடிக்கோடிடு என்பதை பயன்முறையின் அமைப்புகளில் இயக்குங்கள்

              " +"\">சுட்டி->மற்றவை->கோப்புகளுக்கு அடிக்கோடிடு என்பதை பயன்முறையின் " +"அமைப்புகளில் இயக்கவும்.

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3247,64 +3412,64 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "சிறுபட உருவாக்கத்தை இயக்கு" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "அளவு: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "%1 எழுத்தை உறுதியாக ஒட்ட வேண்டுமா?" msgstr[1] "%1 எழுத்துகளை உறுதியாக ஒட்ட வேண்டுமா?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "ஒட்டுவதை உறுதிசெய்யுங்கள்" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "End Of Text/Interrupt: தற்போதைய பணியை வெளியேற செய்யலாம்" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "End Of Transmission: தற்போதைய பணியை வெளியேற செய்யலாம்" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "மணி: கேட்க‍க்கூடிய எச்சரிக்கையை எழுப்ப முயற்சிக்கும்" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Device Control Three/XOFF: வெளியீட்டை முடக்கும்" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Substitute/Suspend: தற்போதைய பணியை இடைநிறுத்தலாம்" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: முனையத்தின் நிலையை மாற்றியமைக்கும்" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "File Separator/Quit: தற்போதைய பணியை ரத்து செய்யலாம்" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3312,31 +3477,31 @@ msgid "" msgstr "" "நீங்கள் ஒட்ட முயற்சிக்கும் உரை, மறைந்த கட்டுப்பாடு குறிகளைக் கொண்டது. அவற்றை நீக்க வேண்டுமா?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "ஒட்டுவதை உறுதிசெய்யுங்கள்" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "&கட்டுப்பாடு குறிகளை நீக்கி ஒட்டு" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&அப்படியே ஒட்டு" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&ரத்து செய்" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been இடைநிறுத்தப்பட்டுள்ளது. வெளியீடு தொடர Ctrl+Q என்பதை அழுத்துங்கள்." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "இம்முனையம் படிக்க மட்டும் கூடியது." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "&இந்த அடைவிற்கு மாறு" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&இருப்பிடத்தை ஒட்டு" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "பிரிந்த காட்சிமுறை" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "காட்சியை இடது/வலது என பிரி" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "காட்சியை மேல்/கீழ் என பிரி" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "காட்சியை தானாக பிரி" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "அடுத்த கீற்றிலிருந்து காட்சியை இடது/வலது என பிரி" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "அடுத்த கீற்றிலிருந்து காட்சியை மேல்/கீழ் என பிரி" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "அடுத்த கீற்றிலிருந்து காட்சியை தானாக பிரி" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "2x2 முனையங்களை கொண்ட புதிய கீற்றை திற" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "2x1 முனையங்களை கொண்ட புதிய கீற்றை திற" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "1x2 முனையங்களை கொண்ட புதிய கீற்றை திற" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "காட்சிப்பகுதியை பெரிதாக்கு" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "காட்சிப்பகுதியை சுருக்கு" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "&தற்போதைய காட்சிப்பகுதியை பிரித்தெடு" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "தற்போதைய &கீற்றை பிரித்தெடு" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "அடுத்த கீற்று" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "முந்தைய கீற்று" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "மேலுள்ள முனையத்தை குவியப்படுத்து" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "கீழுள்ள முனையத்தை குவியப்படுத்து" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "இடதிலுள்ள முனையத்தை குவியப்படுத்து" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "வலதிலுள்ள முனையத்தை குவியப்படுத்து" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "அடுத்த முனையத்தைக் குவியப்படுத்து" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "முந்தைய முனையத்தைக் குவியப்படுத்து" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "கடைசி கீற்றுக்கு தாவு" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "கடைசியாக பயன்படுத்திய கீற்றுகள்" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "இரண்டு கீற்றுகளுக்கிடையே தாவு" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "கடைசியாக பயன்படுத்திய கீற்றுகள் (தற்போதையதை நோக்கி)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "தற்போதைய காட்சிப்பகுதியின் அதிகபட்சப்பெரிதாக்கல் நிலையை மாற்று" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "தற்போதைய காட்சிப்பகுதியின் அதிகபட்சப்பெரிதாக்கல் நிலையை மாற்று" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "தற்போதைய காட்சிப்பகுதியின் பெரிதாக்கல்-அதிகபட்சப்பெரிதாக்கல் நிலையை மாற்று" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "தற்போதைய காட்சிப்பகுதியின் பெரிதாக்கல்-அதிகபட்சப்பெரிதாக்கல் நிலையை மாற்று" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "கீற்றை வலது பக்கமாக நகர்த்து" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "கீற்றை இடது பக்கமாக நகர்த்து" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "பொருளறி அம்சங்களை அமை (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "பொருளறி கருவித்துப்புகளை நிலைமாற்று" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "வரியெண்கள் காட்டப்படுவதை நிலைமாற்று" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "அனைத்து காட்சிப்பகுதிகளையும் ஒரே அளவாக்கு" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1-ஆம் கீற்றுக்கு தாவு" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "பொருளறித் துப்புகள் " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "வரியேண்கள்" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "கீற்றுகளின் தளவமைப்பை சேமித்தல்" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "கான்சோல் காட்சிப்பகுதி தளவமைப்பு (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3604,7 +3781,7 @@ msgstr "" "தளவமைப்பை சேமிப்பதில் சிக்கல் ஏற்பட்டது.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3614,13 +3791,13 @@ msgstr "" "தளவமைப்பை ஏற்றுவதில் சிக்கல் ஏற்பட்டது.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "கீற்றுகளின் தளவமைப்பை ஏற்றுல்" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3718,28 +3895,40 @@ msgstr "&எழுத்துகளுக்கான இயல்பிரு msgid "Shortcut for peeking the primary screen:" msgstr "முதன்மையான திரையை காட்டுவதற்கான சுருக்குவழி:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "தானியக்க சேமிப்பு இடைவெளி:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " மி.நொ." + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "வரியேண்கள்:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&ஒருபோதும் வேண்டாம்" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "&முகவரித்துப்புகள் காட்டப்படும்போது" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3775,7 +3964,7 @@ msgstr "தேர்ந்தெடுக்கப்பட்டுள்ள #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3829,6 +4018,9 @@ msgstr "பகட்டான நிறங்களை தடித்த எழ #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "கோடுகளை வரைய முனைய கட்டுப்பாட்டு குறிகளுக்கு பதிலாக தேர்ந்தெடுத்துள்ள எழுத்துருவிலுள்ள " @@ -3837,6 +4029,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "கொடுகளுக்கு எழுத்துருவிலுள்ள குறிகளையேப் பயன்படுத்து" @@ -3957,29 +4152,43 @@ msgid "Make the cursor blink regularly" msgstr "இடஞ்சுட்டி தொடர்ச்சியாக மினுக்கச் செய்யும்" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "இயக்கு" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "அசைவூட்டம்:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "இடஞ்சுட்டியின் அசைவூட்டத்தை மேம்படுத்து" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "மற்றவை" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "சாளரம்:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3989,144 +4198,144 @@ msgstr "" "காட்டும்" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "முனையத்தின் அளவை மாற்றியபின் துப்பைக் காட்டு" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "தேர்ந்தெடுக்கப்பட்டுள்ள உரையின் நிறத்தை எப்போதும் புரட்டு" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "கருமையாக்கும் அளவு:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "நிறம்:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "விளிம்பை வரைய பயன்படுத்த வேண்டிய நிறத்தை தேர்ந்தெடுங்கள்" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "செயலிலில்லாத முனையங்கள்:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "செயலிலுள்ள முனையங்கள்:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "முனையத்தின் உள்ளடக்கம்" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "வரி இடைவெளி:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "இரண்டு வரிகளுக்கிடையே உள்ள இடைவெளி, பிக்செல்களில்" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " px" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "விளிம்புகள்:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "நடுப்பகுதிக்கு சீரமை:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "நிறங்களை கருமையாக்கி, சாளரம் செயலிலுள்ளதா என்பதை குறிக்கும்" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "கருமையாக்கு" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "சாளரம் செயலிலுள்ளதா என்பதை விளிம்பை வரைவதன் மூலம் குறி" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "விளிம்பு" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "இந்நெடுவரிசையில் செங்குத்தான கோட்டை காட்டு:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              மேம்பட்ட உரைத்தளவமைப்பு

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "மேம்பட்ட உரைத்தளவமைப்பு" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "கூட்டெழுத்துகளின் பகுதிகளை சேர்த்து வரைவதற்கான ஆதரவு" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "சொல் பயன்முறை" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4136,44 +4345,44 @@ msgstr "" "மாறும்போது அச்சொல் உடைக்கப்படும்)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "முழு சொல்லுக்கு ஒரே பண்புகளைப் பயன்படுத்து" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "ASCII கூட்டெழுத்துகளின் பகுதிகளை சேர்த்து வரையும்" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII கூட்டெழுத்துகள்" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "இந்திய லிபிகளிலுள்ள கூட்டெழுத்துகளின் பகுதிகளை சேர்த்து வரையும்" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "இந்திய லிபிகளிலுள்ள எழுத்துகள்" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "முகவடிகளுக்கான எழுத்துரு:" # Current English string is misleading. See https://invent.kde.org/utilities/konsole/-/merge_requests/544 #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4183,95 +4392,95 @@ msgstr "" "இந்திய லிபிகளுக்கு இது தேவை)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "மேம்பட்ட உரைத்தளவமைப்பு" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "முதல் எழுத்தைப் பொறுத்து இல்லாமல், வரிகள் எப்போதும் இடதிலிருந்து வலதாக காட்டப்படும்" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "வலதிலிருந்து இடதாக எழுதுவதை எப்போதும் கட்டாயப்படுத்து" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "பிரச்சனை உண்டாக்கும் எழுத்துகளின் wcwidth-ஐ பொருட்படுத்தாதே" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "wcwidth-ஐ மேலெழுது" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "பயன்முறையை திருத்துவது" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "பொதுவானவை" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "கீற்றுகள்" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "தோற்றம்" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "உருளல்" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "விசைப்பலகை" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "விசைப்பிணைப்புகள்" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "சுட்டி" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "மேம்பட்டவை" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4283,7 +4492,7 @@ msgstr "" "அக்கோப்பின் அனுமதிகளை மாற்றுங்கள், அல்லது வேறு பெயரை உள்ளிட்டு உங்கள் விருப்பங்களை " "புதிய பயன்முறையாக சேமியுங்கள்." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4291,43 +4500,48 @@ msgstr "" "பயன்முறைக்கு எந்த பெயரும் இடப்படவில்லை; உங்கள் அமைப்புகளை சேமிக்க ஏதாவதொரு பெயரை " "உள்ளிடுங்கள்." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "\"%1\" என்ற பெயரில் ஏற்கனவேயொரு பயன்முறை உள்ளது." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "பயன்முறையின் பெயர் அதிகபட்ச நீளத்தைக் கடந்த‍து (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" "முன்னிலைப்படுத்தப்பட்டுள்ள எழுத்துகளை பயன்முறைகளின் பெயர்களில் பயன்படுத்த முடியாது: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "திருத்தப்படும் பயன்முறை: %2" msgstr[1] "திருத்தப்படும் %1 பயன்முறைகள்: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "புதிய பயன்முறையை உருவாக்குவது" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" என்ற பயன்முறையை திருத்துவது" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "ஏதுமில்லை" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4337,7 +4551,7 @@ msgid_plural " columns" msgstr[0] " நெடுவரிசை" msgstr[1] " நெடுவரிசைகள்" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4347,42 +4561,42 @@ msgid_plural " rows" msgstr[0] " வரி" msgstr[1] " வரிகள்" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "கணினி மணி" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "கணினி அறிவிப்புகள்" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "காட்சிவழி மணி" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "மணியெழுப்பப்படுவதை பொருட்படுத்தாதே" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "%1 என்பதிலுள்ள புதிய முனைய அமர்வுகளுக்கான இயல்பிருப்பு பயன்முறை" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "சூழலை திருத்துவது" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "வரிக்கு ஒரு சூழல் மாறியை உள்ளிடுங்கள்" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4390,23 +4604,23 @@ msgid_plural " seconds" msgstr[0] " நொடி" msgstr[1] " நொடிகள்" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "முதலடைவை தேர்வு செய்வது" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "புதியவற்றை பெறு…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "%1 என்ற திட்டத்தை ஏற்ற முடியவில்லை." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4415,7 +4629,7 @@ msgstr "" "இந்நிறத்திட்டம் ஒளிபுகும் பின்பலத்தை பயன்படுத்துகிறது. அதை உங்கள் பணிமேடை ஆதரிப்பதுபோல் " "தெரியவில்லை." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4424,12 +4638,12 @@ msgstr "" "பணிமேடை அசைவூட்டங்கள் இயக்கப்படுமுன் கான்சோல் துவக்கப்பட்டது. ஒளிபுகும் பின்புலத்தைப் பார்க்க " "நீங்கள் கான்சோலை மீள்துவக்க வேண்டும்." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "கோப்புவகைக்கான இயல்பிருப்பு" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4456,7 +4670,7 @@ msgstr "" "PATH அல்லது LINE இக்கட்டளையில் இல்லாத பட்சத்தில், இத்தேர்வு பொருட்படுத்தப்படாது; " "இயல்பிருப்பு உரைத்திருத்தியிலேயே உரைக்கோப்பு திறக்கப்படும்." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "உரைத்திருத்திக்கான தனிப்பயன் கட்டளை" @@ -4543,26 +4757,56 @@ msgstr "இயல்பிருப்பு அடைவை தேர்ந் msgid "Start in same directory as current session" msgstr "தற்போதைய அமர்வுள்ள அடைவிலேயே துவக்கு" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"புதிய கீற்றையோ பிரிந்த காட்சிப்பகுதியையோ திறக்கும்போது, தற்பொதைய அமர்வில் " +"பயன்படுத்தப்படும் அதே கொள்கலனைப் (container, எ.கா. Toolbox, Distrobox) பயன்படுத்து." + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "தற்போதைய அமர்விலுள்ள கொள்கலனைப் பயன்படுத்து" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "கொள்கலனில் எப்போதும் துவக்கு:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"இந்தப் பயன்முறையைப் பயன்படுத்தும் அனைத்து அமர்வுகளும் குறிப்பிட்ட கொள்கலனிலேயே துவக்கப்படும்" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "சூழல்:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "சூழல் மாறிகளின் மற்றும் தொடர்புடைய மதிப்புகளின் பட்டியலை திருத்தவிடும்" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "&முனையத்தின் இயல்பிருப்பு அளவு:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4575,31 +4819,31 @@ msgstr "" "தேர்வு முடக்கப்பட்டிருக்க வேண்டும்

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "மு&னைய மணியின் பயன்முறை:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "பொருளறி அம்சங்கள்" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "மேல்/கீழ் விசை கையாளல்" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "உள்ளீட்டு வரியில் கிளிக் செய்தல் இடஞ்சுட்டியை நகர்த்தும்" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "பொருளறித் துப்புகள்" @@ -4609,9 +4853,9 @@ msgstr "பொருளறித் துப்புகள்" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4622,9 +4866,9 @@ msgstr "ஒருபோதும் வேண்டாம்" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4635,34 +4879,34 @@ msgstr "முகவரித்துப்புகள் காட்டப #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "எப்போதும்" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "சிவப்பு பிழைப்பட்டைகள்:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "பிழைகளுக்கு சிவப்பு பின்புலம்:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "கட்டம்-கட்டமான பட்டைகள்:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "கட்டம்-கட்டமான பின்புலம்:" @@ -5017,115 +5261,127 @@ msgid "Scrollback:" msgstr "முந்தைய உரையை காட்டுவது:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "பக்கத்தை மேலே/கீழே உருளச்செய்வது:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "புதிதாக காட்டப்படும் வரிகளை முன்னிலைப்படுத்து" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "மறைந்தது" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "ஒவ்வொரு குறியின் நீளம் (உருள் பட்டையின் சதவீதமாக):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "முன்னிலைப்படுத்தல்:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "திரையின் உயரத்தில் பாதியளவிற்கு பக்கத்தை உருளச்செய்யும்" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "&திரையின் உயரத்தில் பாதி" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "உருள் பட்டைக் குறிகளின் நிறம்:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "தேடியதை உருள் பட்டையில் குறிக்கும் கோடுகளின் நிறம்:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "வரிகளை மடித்தல்:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "திரையின் முழு உயரத்திற்கு பக்கத்தை உருளச்செய்யும்" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "திரையின் &உயரம் முழுதாக" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "உருள்பட்டையின் இருப்பிடம்:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "உருள்பட்டையை முனையச்சாளரத்தின் வலதோரத்தில் காட்டும்" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "&வலதுபுறம்" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "உருள்பட்டையை முனையச்சாளரத்தின் இடதோரத்தில் காட்டும்" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&இடதுபுறம்" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "மறைந்தது" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "முன்னிலைப்படுத்தல்:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "புதிதாக காட்டப்படும் வரிகளை முன்னிலைப்படுத்து" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "வரிகளை மடித்தல்:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "முனையச்சாளரத்தின் அளவை மாற்றும்போது வரிகளை மீண்டும் மடிக்கும்" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "உருள் பட்டைக் குறிகளின் நிறம்:" +msgid "Scrollbar position:" +msgstr "உருள்பட்டையின் இருப்பிடம்:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "ஒவ்வொரு குறியின் நீளம் (உருள் பட்டையின் சதவீதமாக):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "தேடியதை குறிக்கும் கோடுகளின் ஒளிபுகாமை:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5230,37 +5486,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&ஏதுமில்லை" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "தேடு..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "கண்டுபிடிக்க வேண்டிய உரையை இங்கு உள்ளிடுங்கள்" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "அடுத்தது" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "தற்போதைய வினாவிற்கான அடுத்த பொருத்தத்தை கண்டுபிடிக்கும்" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "முந்தையது" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5268,78 +5524,78 @@ msgstr "தற்போதைய வினாவிற்கான முந் #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "விருப்பங்களுக்கான பட்டியை காட்டு" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "தேடல் பட்டையை மூடும்" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" -msgstr "எழுத்துவகையை பொருட்படுத்து" +msgstr "எழுத்து வகையை (பெரிது/சிறிது) பொருட்படுத்து" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "பெரிய/சிறிய எழுத்துவகையை தேடல் வேறுபடுத்துமா என்பதை அமைக்கும்" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "விருப்பங்களுக்கான பட்டியை காட்டு" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "தேடல் பட்டையை மூடும்" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "சுருங்குறித் தொடரை பொருத்து" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "பொருந்தும் அனைத்தை முன்னிலைப்படுத்து" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "பொருந்தும் உரை முன்னிலைப்படுத்தப்பட வேண்டுமா என்பதை அமைக்கும்" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "பின்னோக்கித் தேடு" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "தேடல் கீழிலிருந்து துவங்க வேண்டுமா என்பதை அமைக்கும்" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "சுழலாதே" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" "கீழ் மற்றும் மேல் எல்லைகளில் தேடல் சுழல வேண்டுமா அல்லது நிற்க வேண்டுமா என்பதை அமைக்கும்" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "தற்போதைய தேடலை கீழிலிருந்து கண்டுபிடி" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5350,7 +5606,7 @@ msgstr "தற்போதைய தேடலை மேலிலிருந் msgid "Print Shell" msgstr "முனையத்தை அச்சிடுவது" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5390,6 +5646,12 @@ msgstr "சாதாரண கீற்றின் தலைப்பிற் msgid "Tab Co&lor:" msgstr "கீற்றின் &நிறம்:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "பணி நடைபெறும் கீற்றின் நிறம்:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5483,36 +5745,46 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "முனையத்தை மீட்டெடுக்கும்" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "புதிய கீற்றைத் திறக்கும்" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "கீற்றுகளை கண்டுபிடி" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "இக்கீற்றை மூடும்" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&கீற்றை பிரித்தெடு" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&கீற்றை அமை அல்லது அதற்கு மறுபெயரிடு…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "கீற்றை மூடு" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "எழுத்துவகையை பொருட்படுத்து" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "ஏதுமில்லை" @@ -6012,9 +6284,6 @@ msgstr "கீற்றை மூடு" #~ msgid "New" #~ msgstr "புதிய" -#~ msgid "Select &Tab Color" -#~ msgstr "தத்தின் &வண்ணத்தைத் தேர்ந்தெடு" - #, fuzzy #~| msgid "Transparent, Dark Background" #~ msgid "Enable transparent backgrounds" @@ -6573,9 +6842,6 @@ msgstr "கீற்றை மூடு" #~ "வரலாற்றின் ஆரம்பம் எட்டப்பட்டது.\n" #~ "முடிவிலிருந்து தொடரவா?" -#~ msgid "Unable to write to file." -#~ msgstr "கோப்புக்கு எழுத முடியவில்லை." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/te/konsole.po b/local/recipes/kde/konsole/source/po/te/konsole.po index 6b1c3cb6e3..38045449a0 100644 --- a/local/recipes/kde/konsole/source/po/te/konsole.po +++ b/local/recipes/kde/konsole/source/po/te/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2009-01-16 22:16+0530\n" "Last-Translator: Krishna Babu K \n" "Language-Team: Telugu \n" @@ -50,7 +50,7 @@ msgstr "వీక్షణం" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "వీక్షణం విభజించు" @@ -86,7 +86,7 @@ msgid "S&crollback" msgstr "(&c) స్క్రోల్‌బ్యాక్" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session number" msgid "Session Toolbar" @@ -175,49 +175,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "సిస్టమ్ మద్దతిచ్చినా కూడా, పారదృశ్య బ్యాక్‌గ్రౌండులను అచేతనము చేయుము." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "అందుబాటులోని ప్రొఫైల్సును జాబితాచేయుము" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "ప్రొఫైల్ లక్షణంయొక్క విలువను మార్చుము." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -225,7 +237,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -233,14 +245,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "ఆదేశమునకు పంపబడిన ఆర్గుమెంట్లు" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -261,217 +273,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "ఫోర్‌గ్రౌండు" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "బ్యాక్‌గ్రౌండు" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "రంగు 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "రంగు 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "రంగు 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "రంగు 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "రంగు 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "రంగు 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "రంగు 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "రంగు 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ఫోర్‌గ్రౌండు (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "బ్యాగ్‌గ్రౌండు (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "రంగు 1 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "రంగు 2 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "రంగు 3 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "రంగు 4 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "రంగు 5 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "రంగు 6 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "రంగు 7 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "రంగు 8 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ఫోర్‌గ్రౌండు (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "బ్యాగ్‌గ్రౌండు (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "రంగు 1 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "రంగు 2 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "రంగు 3 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "రంగు 4 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "రంగు 5 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "రంగు 6 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "రంగు 7 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "రంగు 8 (ఇన్టెన్‍స్)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -741,6 +753,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "హొస్ట్:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "అప్రమేయం చెయి" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -785,7 +831,7 @@ msgstr "" msgid "Copy Location" msgstr "ఇన్పుట్ యిచటకు నకలుతీయి..." -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -817,14 +863,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "ఫాంటు సరికూర్చుము..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "సున్నితమైన ఫాంట్లు" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -862,17 +908,17 @@ msgstr "కీ కలయిక" msgid "Output" msgstr "అవుట్పుట్" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "కొత్త కీ బైండింగ్ జాబితా" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "కీ బైండింగ్ జాబితా సరికూర్చు" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -880,7 +926,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -914,247 +960,247 @@ msgstr "ఇన్పుట్:" msgid "Output:" msgstr "అవుట్పుట్:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "కాన్సోల్" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "టెర్మినల్ ఎములెటర్" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "కర్ట్ వి. హిండెన్ బర్గ్" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "బగ్ పరిష్కారములు మరియు సాధారణ మెరుగుదలలు" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "రాబెర్ట్ నైట్" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "లార్స్ డొయెల్లి" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "టెర్మినల్ ఎములెటర్" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "బగ్ పరిష్కారములు మరియు సాధారణ మెరుగుదలలు" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "బగ్ పరిష్కారములు మరియు సాధారణ మెరుగుదలలు" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "బగ్ పరిష్కారములు మరియు సాధారణ మెరుగుదలలు" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "వాల్డొ బాస్టియన్" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "స్టీఫెన్ బిన్నర్" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "బగ్ పరిష్కారములు మరియు సాధారణ మెరుగుదలలు" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "క్రిస్ మెచెమర్" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "బగ్ పరిష్కారములు" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "స్టీఫెన్ కులొ" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "సోలారీస్ మద్దతు మరియు చరిత్ర" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "బగ్ పరిష్కారములు మరియు మెరగుపరచిన ప్రారంభపు పనితనము" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "పీటర్ సిల్వ" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "మెరుగుదలలను గుర్తుంచుతోంది" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "లొట్జి బొలొని" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1167,14 +1213,14 @@ msgstr "" "ఎంబెడెడ్ చేసిన కన్సోలు\n" "టూల్‌బార్ మరియు సెషన్ పేరులు" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "డెవిడ్ ఫారె" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1187,28 +1233,28 @@ msgstr "" "ఎంబెడెడ్ కన్సోలు\n" "సాదారణ మెరుగుదలలు" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "అంటొనియొ లరొస్సా" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "దృశ్య ప్రభావాలు" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "మథైయాస్ ఎట్ట్రిచ్" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1221,151 +1267,151 @@ msgstr "" "kvt ప్రోజెక్టునుండి కొడ్\n" "సాదారణ మెరుగుదలలు" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "వార్విక్ ఎల్లిసన్" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "స్కీమా మరియు వచనము యెంపిక మెరుగుదలలు" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "డాన్ పిలొన్" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "ఎస్ జి ఐ పొర్ట్" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "కెవిన్ స్ట్రీట్" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "ఫ్రి బి ఎస్ డి పొర్ట్" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "స్వెన్ ఫిషర్" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "డెల్ ఎం. ఫ్లావెన్" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "మార్టిన్ జొన్స్" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "లార్స్ క్నొల్" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "ఇంకా చాలామందికి కృతజ్ఞతలు.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "(&T) కొత్త టాబ్" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "(&C) టాబ్ ను మూసివెయి" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "(&W) కొత్త విండొ" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "కాన్సోల్" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "(&B) పేజీ గుర్తులు" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "కొత్త రంగు స్కీము" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "ప్రొఫైల్సును నిర్వహించుము" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "వీక్షణం ఎడమకు కదుపుము" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1384,28 +1430,28 @@ msgstr[3] "" msgstr[4] "" "ఈ విండోనందు మీరు వివిధ టాబ్లను కలిగివున్నారు, మీరు ఖచ్చితంగా నిష్క్రమించుదామని అనుకొనుచున్నారా?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "ముసివేత నిర్ధారించు" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "కాన్సోల్" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "ప్రస్తుత టాబ్ మూసివేయి" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1413,45 +1459,45 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "ఈ విండోనందు మీరు వివిధ టాబ్లను కలిగివున్నారు, మీరు ఖచ్చితంగా నిష్క్రమించుదామని అనుకొనుచున్నారా?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "కొత్త ప్రొఫైల్" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "సాధారణ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1542,7 +1588,7 @@ msgstr "లింకును తెరువు" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1554,29 +1600,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "ఆదేశము:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "ఆదేశము:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1618,7 +1664,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1677,11 +1723,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1744,94 +1790,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "రిమోట్ అనుసంధానము" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "ప్రాధమిక సెషన్ ముగిసినప్పుడు దానిని స్వయంచాలకంగా మూయవద్దు." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2036,25 +2082,25 @@ msgstr "అవుట్పుట్" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2118,17 +2164,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1నుండి అవుట్పుట్‌ను భద్రపరచుము" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 చెల్లని URL, అవుట్పుట్ భద్రపరచబడలేదు." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2165,84 +2232,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "డార్‍క్ పేస్టెల్‍స్" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "నలుపు మీద పచ్చ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "లినక్స్ రంగులు" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "నలుపు మీద తెలుపు" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "నలుపు మీద తెలుపు" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "అప్రమెయం (ఎక్స్ ఫ్రీ 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "లినక్స్ కన్సోల్" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "సొలారిస్ కన్సోల్" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "అవుట్పుట్ శోధించుము..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ఇక్కడ శోధించుటకు వచనము ప్రవేశపెట్టుము" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "%1 సెషన్ లో గంట" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "బైనరీను కనుగొనలేక పోయింది: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "హెచ్చరిక:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "ప్రారంభమునందు యింటరాక్టివ్ షెల్‌ను కనుగొనలేక పోయింది." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2250,373 +2336,381 @@ msgid "" msgstr "" "'%1'ను కనుగొనలేక పోయింది, బదులుగా '%2'ను ప్రారంభిస్తోంది. దయచేసి మీ ప్రొఫైల్ అమరికలను పరిశీలించుము." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "ప్రోగ్రామ్ '%1'ను ఆర్గుమెంట్లు '%2'తో ప్రారంభించలేక పోయింది." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "%1 సెషన్ లో నిశబ్దం" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "కాన్సోల్" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "ముగిసింది" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "ప్రోగ్రామ్ '%1' క్రాష్ అయినది." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "ప్రోగ్రామ్ '%1' స్థితి %2తో నిష్క్రమించినది." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem పురోగతి" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "సెషన్ '%1'నందు క్రియాశీలత" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "కాన్సోల్" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "ప్రొఫైల్సును నిర్వహించుము..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "కాన్సోల్" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "(&C) నకలు" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "వీక్షణం ఎడమ/కుడికు విభజించుము" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "వీక్షణం పైనకు/క్రిందకు విభజించుము" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "ఇన్పుట్ నకలుతీయి" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "ఇన్పుట్ నకలుతీయి" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "ఎంచుకొన్న దానిని అతికించు" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "అన్నిటిని ఎంపికచేయుము" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "ఎంచుకొ" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "ఎంచుకొ" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "అవుట్పుట్ భద్రపరచుము..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "అవుట్పుట్ భద్రపరచుము..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "ప్రొఫైల్సును నిర్వహించుము..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "స్క్రాల్‌బ్యాక్‌ను శుభ్రముచేయి" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "స్క్రాల్‌బ్యాక్‌ను శుభ్రముచేయి && తిరిగివుంచుము" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "ప్రొఫైల్ సరికూర్చు" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "మునుపటి వీక్షణం" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "ప్రొఫైల్ సరికూర్చు" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "ఎన్కోడింగ్" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "(&R) టాబ్‌కు మరలాపేరు..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "(&R) టాబ్‌కు మరలాపేరు..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Copy Input To..." msgid "Copy Input To" msgstr "ఇన్పుట్ యిచటకు నకలుతీయి..." -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "(&A) క్రియాశీలత కొరకు మానిటర్" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "(&A) క్రియాశీలత కొరకు మానిటర్" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "(&S) నిశ్శబ్ధము కొరకు మానిటర్" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "(&A) క్రియాశీలత కొరకు మానిటర్" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "వీక్షణం కుదించుము" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "వచన పరిమాణం పెంచు" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "(&C) టాబ్ ను మూసివెయి" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "టెర్మినల్ సౌలభ్యాలు" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "కొత్త ప్రొఫైల్..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "ప్రస్తుత ప్రొఫైలును సరికూర్చు..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "ఈ సెషన్‌నందు వొక పోగ్రామ్ యిప్పటికే నుడుస్తోంది. మీరు దానిని ఖచ్చితంగా మూసివేద్దామని అనుకొంటున్నారా?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2624,19 +2718,19 @@ msgid "" msgstr "" "పొగ్రామ్ '%1' ప్రస్తుతం ఈ సెషన్‌నందు నడుస్తోంది. మీరు ఖచ్చితంగా దీనిని మూసివేద్దామని అనుకొంటున్నారా?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "ముసివేత నిర్ధారించు" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "(&C) టాబ్ ను మూసివెయి" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2646,39 +2740,39 @@ msgid "" "by force?" msgstr "ఈ సెషన్‌నందు వొక పోగ్రామ్ యిప్పటికే నుడుస్తోంది. మీరు దానిని ఖచ్చితంగా మూసివేద్దామని అనుకొంటున్నారా?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "పొగ్రామ్ '%1' ప్రస్తుతం ఈ సెషన్‌నందు నడుస్తోంది. మీరు ఖచ్చితంగా దీనిని మూసివేద్దామని అనుకొంటున్నారా?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2686,20 +2780,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2725,150 +2819,177 @@ msgctxt "@title:window" msgid "Configure" msgstr "ముసివేత నిర్ధారించు" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "సాదారణ సమీకరణం సరిపోల్చుము" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "అన్నిటిని హైలైట్ చేయుము" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "శోధన చిన్నపెద్ద అక్షరతేడాలను పట్టించుకొనవలెనో లేదో అమర్చుము" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "క్రియాశీలమైంది మూయుము" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "కొత్త టాబ్ వచనము ప్రవేశపెట్టుము:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "శోధన చిన్నపెద్ద అక్షరతేడాలను పట్టించుకొనవలెనో లేదో అమర్చుము" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "క్రియాశీలమైంది మూయుము" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "అన్నిటిని హైలైట్ చేయుము" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "ప్రస్తుతం శోధిస్తున్న పదమునకు తరువాతి జోడీను కనుగొనుము" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "సాదారణ సమీకరణం సరిపోల్చుము" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2893,74 +3014,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "శోధన చిన్నపెద్ద అక్షరతేడాలను పట్టించుకొనవలెనో లేదో అమర్చుము" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "అన్నిటిని హైలైట్ చేయుము" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "సరిజోడీ వచనము హైలైట్ కావాలోలేదో అమర్చుము" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2968,92 +3127,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "కర్సరు కొరకు మలుచుకొనిన, నిర్ధారిత రంగును వుపయోగించుము" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3066,26 +3231,24 @@ msgid "Enable memory monitoring:" msgstr "బై-డైరెక్షనల్ టెక్స్టు రెండరింగ్ (వచన ప్రస్పుటీకరణం) చేతనం చేయుము" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3253,110 +3416,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "(&C) టాబ్ ను మూసివెయి" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" msgstr "టాబ్ బార్‌నందు 'కొత్త టాబ్' మరియు 'టాబ్ మూసివేయి' బటన్లను చూపుము" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "కర్సరు కొరకు మలుచుకొనిన, నిర్ధారిత రంగును వుపయోగించుము" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "కొత్త టాబ్ వచనము ప్రవేశపెట్టుము:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "ప్రస్తుత టాబ్ మూసివేయి" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "వీక్షణం విభజించు" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "మెనూ బార్ చూపుము" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3364,14 +3546,14 @@ msgid "Small" msgstr "చిన్న" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3379,7 +3561,7 @@ msgid "Large" msgstr "పెద్ద" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3432,8 +3614,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3473,12 +3655,12 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "పరిమాణం: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3488,87 +3670,87 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "ముసివేత నిర్ధారించు" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "ముసివేత నిర్ధారించు" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "ప్రస్తుత అక్షరముకు సరిపోలునట్లు కర్సర్ రంగును అమర్చుము" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "ఎంచుకొన్న దానిని అతికించు" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been అవుట్పుట్ Ctrl+S వత్తుట ద్వారా suspended అయింది. తిరిగికొనసాగించుటకు Ctrl+Q వత్తుము." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "ఎంచుకొన్న దానిని అతికించు" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "వీక్షణం విభజించు" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "వీక్షణం ఎడమ/కుడికు విభజించుము" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "వీక్షణం పైనకు/క్రిందకు విభజించుము" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3624,7 +3806,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "వీక్షణం పైనకు/క్రిందకు విభజించుము" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3632,7 +3814,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "వీక్షణం ఎడమ/కుడికు విభజించుము" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3640,7 +3822,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "వీక్షణం పైనకు/క్రిందకు విభజించుము" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3648,210 +3830,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "వీక్షణం పైనకు/క్రిందకు విభజించుము" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "వీక్షణం విస్తరించుము" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "వీక్షణం కుదించుము" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "ప్రస్తుత టాబ్ మూసివేయి" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "ప్రస్తుత టాబ్ మూసివేయి" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "(&T) కొత్త టాబ్" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "ముందు" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "పైని టెర్మినల్ ప్రదర్శిస్తుంది" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "క్రింది టెర్మినల్ ప్రదర్శిస్తుంది" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "పైని టెర్మినల్ ప్రదర్శిస్తుంది" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "క్రింది టెర్మినల్ ప్రదర్శిస్తుంది" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "టాబ్ %1కు మారుము" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "వీక్షణం కుడికు కదుపుము" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "వీక్షణం ఎడమకు కదుపుము" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "టాబ్ %1కు మారుము" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "మౌస్ ఇంటరాక్షన్" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "కొన్ని నిర్ధిష్ట వరుసలు:" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "వీక్షణం ఎడమకు కదుపుము" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3864,7 +4060,7 @@ msgstr "" "అవుట్పుట్‌ను భద్రపరచుచున్నప్పుడు వొక సమస్య యెదురైంది.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3877,13 +4073,13 @@ msgstr "" "అవుట్పుట్‌ను భద్రపరచుచున్నప్పుడు వొక సమస్య యెదురైంది.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3983,29 +4179,41 @@ msgstr "అప్రమేయ కారెక్టర్ ఎన్కోడి msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "కొన్ని నిర్ధిష్ట వరుసలు:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4043,7 +4251,7 @@ msgstr "ఎంపికచేసిన రంగు స్కీమును స #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4100,12 +4308,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4236,30 +4450,46 @@ msgid "Make the cursor blink regularly" msgstr "కర్సర్ క్రమంతప్పకుండా బ్లింకు అగునట్లు చేయుము" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "వర్ణన:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "కర్సర్ క్రమంతప్పకుండా బ్లింకు అగునట్లు చేయుము" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "విండొ" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4267,25 +4497,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4293,28 +4523,28 @@ msgid "Color:" msgstr "రంగు" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "కర్సరు డ్రాచేయుటకు వుపయోగించు రంగును యెంపికచేయుము" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "టెర్మినల్ సౌలభ్యాలు" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "టెర్మినల్ సౌలభ్యాలు" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4322,95 +4552,95 @@ msgid "Terminal contents" msgstr "టెర్మినల్ సౌలభ్యాలు" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "బై-డైరెక్షనల్ టెక్స్టు రెండరింగ్ (వచన ప్రస్పుటీకరణం) చేతనం చేయుము" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4418,45 +4648,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "ప్రస్తుత అక్షరముకు సరిపోలునట్లు కర్సర్ రంగును అమర్చుము" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "అక్షర శైలి" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4465,100 +4695,100 @@ msgstr "" "టర్మినల్సు నందు బై-డైరెక్షనల్ ప్రదర్శనను చేతనముచేయుము (అరబిక్, ఫార్సీ లేదా హెబ్రూకు మాత్రమే చెల్లుతుంది)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "బై-డైరెక్షనల్ టెక్స్టు రెండరింగ్ (వచన ప్రస్పుటీకరణం) చేతనం చేయుము" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "ప్రస్తుత అక్షరముకు సరిపోలునట్లు కర్సర్ రంగును అమర్చుము" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "ప్రొఫైల్ సరికూర్చు" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "సాధారణ" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "టాబ్ లు" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "కనిపించువిధం" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "స్క్రోలింగ్ " -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "కీ బైండింగ్‍స్" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "ఆధునాతన" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4567,31 +4797,31 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" @@ -4602,18 +4832,23 @@ msgstr[2] "ప్రొఫైల్ \"%1\" సరికూర్చు" msgstr[3] "ప్రొఫైల్ \"%1\" సరికూర్చు" msgstr[4] "ప్రొఫైల్ \"%1\" సరికూర్చు" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "కొత్త ప్రొఫైల్..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "ప్రొఫైల్ \"%1\" సరికూర్చు" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4623,7 +4858,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4633,45 +4868,45 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "ఎంచుకొన్న దానిని అతికించు" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "దృశ్య ప్రభావాలు" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "ఎంపికచేసిన ప్రొఫైలు కొత్త టెర్మినల్ సెషన్లకు అప్రమేయంగా అమర్చుము" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "ఎన్విరాన్మెంటు సరికూర్చు" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4682,44 +4917,44 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "ప్రాధమిక డెరెక్టరీను ఎంపికచేయుము" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "కొత్త..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "ఈ రంగు స్కీము మీ డెస్కుటాపు మద్దతీయనటువంటి పారదర్శ బ్యాక్‌గ్రౌండును వుపయోగిస్తోంది" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "ప్రొఫైల్ తొలగించు" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4736,7 +4971,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4830,27 +5065,55 @@ msgstr "ప్రాధమిక డైరెక్టరీకొరకు అ msgid "Start in same directory as current session" msgstr "ప్రస్తుత టాబువలె యిదే డెరెక్టరీనందు ప్రారంభించుము" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "ప్రస్తుత టాబువలె యిదే డెరెక్టరీనందు ప్రారంభించుము" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "ఎన్విరాన్మెంట్:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "ఎన్విరాన్మెంట్ వేరియబుల్సు మరియు సంభందిత విలువల జాబితాను సరికూర్చుము" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "టెర్మినల్ సౌలభ్యాలు" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4860,33 +5123,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "టెర్మినల్ ఎములెటర్" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "మౌస్ ఇంటరాక్షన్" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4896,9 +5159,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4909,9 +5172,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4922,35 +5185,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "బ్యాక్‌గ్రౌండు" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5307,50 +5570,93 @@ msgid "Scrollback:" msgstr "(&c) స్క్రోల్‌బ్యాక్" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "దాగిన" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "టాబ్ బార్ స్థానము:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "స్క్రోల్ బార్‌ను టెర్మినల్ విండో కుడి వైపున చూపుము" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5358,67 +5664,36 @@ msgid "Ri&ght side" msgstr "కుడి వైపున చూపుము" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "స్క్రోల్ బార్‌ను టెర్మినల్ విండో ఎడమ వైపున చూపుము" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "వచన పరిమాణం:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "దాగిన" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "టాబ్ బార్ స్థానము:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5524,42 +5799,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "వెతుకు:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ఇక్కడ శోధించుటకు వచనము ప్రవేశపెట్టుము" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "తరువాత" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "ప్రస్తుతం శోధిస్తున్న పదమునకు తరువాతి జోడీను కనుగొనుము" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "ముందు" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5567,88 +5842,88 @@ msgid "Find the previous match for the current search phrase" msgstr "ప్రస్తుతము శోధిస్తున్న పదమునకు మునుపటి జోడీను కనుగొనుము" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "శోధన బార్‌ను మూయుము" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "క్రియాశీలమైంది మూయుము" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "శోధన చిన్నపెద్ద అక్షరతేడాలను పట్టించుకొనవలెనో లేదో అమర్చుము" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "శోధన బార్‌ను మూయుము" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "సాదారణ సమీకరణం సరిపోల్చుము" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "అన్నిటిని హైలైట్ చేయుము" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "సరిజోడీ వచనము హైలైట్ కావాలోలేదో అమర్చుము" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "ప్రస్తుతం శోధిస్తున్న పదమునకు తరువాతి జోడీను కనుగొనుము" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "ప్రస్తుతం శోధిస్తున్న పదమునకు తరువాతి జోడీను కనుగొనుము" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "ప్రస్తుతం శోధిస్తున్న పదమునకు తరువాతి జోడీను కనుగొనుము" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "ప్రస్తుతం శోధిస్తున్న పదమునకు తరువాతి జోడీను కనుగొనుము" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5661,7 +5936,7 @@ msgstr "ప్రస్తుతం శోధిస్తున్న పదమ msgid "Print Shell" msgstr "షెల్" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5703,6 +5978,13 @@ msgstr "సాధారణ టాబ్ శీర్షిక రూపము" msgid "Tab Co&lor:" msgstr "రంగు" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "రంగు" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5817,41 +6099,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "(&C) టాబ్ ను మూసివెయి" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "(&D) వీక్షణం వేరుచేయి" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "(&D) వీక్షణం వేరుచేయి" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "శోధన బార్‌ను మూయుము" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "(&D) వీక్షణం వేరుచేయి" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "(&R) టాబ్‌కు మరలాపేరు..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "(&C) టాబ్ ను మూసివెయి" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "క్రియాశీలమైంది మూయుము" + #, fuzzy #~| msgid "Open Link" #~ msgctxt "@title:window" @@ -6272,9 +6568,6 @@ msgstr "(&C) టాబ్ ను మూసివెయి" #~ msgid "Decrease Text Size" #~ msgstr "వచన పరిమాణం తగ్గించు" -#~ msgid "Search Output..." -#~ msgstr "అవుట్పుట్ శోధించుము..." - #~ msgid "Find Next" #~ msgstr "తరువాతది వెతుకు" diff --git a/local/recipes/kde/konsole/source/po/tg/konsole.po b/local/recipes/kde/konsole/source/po/tg/konsole.po index 8d40a8f9a7..a7fcc8c776 100644 --- a/local/recipes/kde/konsole/source/po/tg/konsole.po +++ b/local/recipes/kde/konsole/source/po/tg/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2019-09-29 12:43+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: English \n" @@ -54,7 +54,7 @@ msgstr "Намоиш" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Разделить на две части" @@ -90,7 +90,7 @@ msgid "S&crollback" msgstr "&Буфер вывода" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -180,49 +180,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Запретить полупрозрачные фоны, даже если низом их поддерживает." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Список доступных профилей" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Изменить значение свойства профиля." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -230,7 +242,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -238,14 +250,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Аргументы для команды" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -266,217 +278,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Пешзамина" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Замина" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Ранги 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Ранги 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Ранги 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Ранги 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Ранги 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Ранги 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Ранги 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Ранги 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Замина (Фаъол)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Шаффофият" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Ранги 1 (Фаъол)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Ранги 2 (Фаъол)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Ранги 3 (Фаъол)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Ранги 4 (Фаъол)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Ранги 5 (Фаъол)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Ранги 6 (Фаъол)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Ранги 7 (Фаъол)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Ранги 8 (Фаъол)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Замина (Фаъол)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Шаффофият" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Ранги 1 (Фаъол)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Ранги 2 (Фаъол)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Ранги 3 (Фаъол)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Ранги 4 (Фаъол)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Ранги 5 (Фаъол)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Ранги 6 (Фаъол)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Ранги 7 (Фаъол)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Ранги 8 (Фаъол)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -746,6 +758,39 @@ msgstr "&Исто" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Шабака:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Konsole Иҷрошаванда таъриҳ" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -790,7 +835,7 @@ msgstr "" msgid "Copy Location" msgstr "Направлять ввод также" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -822,14 +867,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Таҳрири ҳарф..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Сглаживать шрифты" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -867,17 +912,17 @@ msgstr "Привязки клавиш" msgid "Output" msgstr "Хуруҷ" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Новый список привязок клавиш" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Изменение списка привязок клавиш" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -885,7 +930,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -919,249 +964,249 @@ msgstr "Ввод:" msgid "Output:" msgstr "Хуруҷ:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Эмулятор терминала" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Исправления и улучшения" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Эмулятор терминала" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Исправления и улучшения" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Исправления и улучшения" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Исправления и улучшения" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Общие улучшения" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Исправление ошибок" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Поддержка Solaris и работа над журналом" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Исправление ошибок и ускорение запуска" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "Улучшения" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1171,14 +1216,14 @@ msgstr "" "Консоли дарунсохт\n" "Навози абзорҳо ва номҳои ҷаласа" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1191,28 +1236,28 @@ msgstr "" "Компонент внедрения терминала\n" "Общие улучшения" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Визуальные эффекты" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1225,151 +1270,151 @@ msgstr "" "Код из проекта kvt\n" "Общие улучшения" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Схемы и выделение текста" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI Порт" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Порти мустақилона BSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Благодарности остальным принявшим участие.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Ҷадвалбандии &нав" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Хуруҷи ҷадвалбандӣ" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "Тирезаи &нав" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Хатчӯбҳо" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Нақшаи рангини нав" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Идоракунии профилҳо" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Меню Фаъол кардан" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Сдвинуть представление влево" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1380,28 +1425,28 @@ msgid_plural "" msgstr[0] "Закрыть окно с несколькими открытыми вкладками?" msgstr[1] "Закрыть окно с несколькими открытыми вкладками?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Подтверждение выхода" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Закрыть текущую вкладку" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1409,45 +1454,45 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Закрыть окно с несколькими открытыми вкладками?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Новый профиль" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Умумӣ" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1537,7 +1582,7 @@ msgstr "Открыть диспетчер файлов" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1549,29 +1594,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Фармон:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Фармон:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1613,7 +1658,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1671,11 +1716,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1738,94 +1783,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Андозаи тарҳ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "Не закрывать первоначальный сеанс автоматически при его завершении." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2034,25 +2079,25 @@ msgstr "Тарҳи таърих" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Методи чоп кардани мусоид(матни сиёҳ, манзар нест)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2115,17 +2160,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Сохранить вывод сеанса %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "Неверный адрес «%1», вывод не будет сохранён." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Навиштан дар файл намондан" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2162,84 +2229,103 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Тёмная пастель" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Сабз болои ранги сиёҳ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Рангҳои Линукс" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Сафед болои Сиёҳ" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Сафед болои Сиёҳ" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Стандартӣ (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Консоли Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Консоли Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Ҷустуҷӯи хуруҷ..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Введите текст, который ищите" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Зангӯла дар сессия '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Невозможно найти исполняемый файл:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Огоҳинома:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Невозможно найти интерактивную оболочку." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2248,391 +2334,399 @@ msgstr "" "Невозможно найти «%1», вместо этого будет запущена программа «%2». Проверьте " "параметры вашего профиля." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Невозможно запустить программу «%1» с параметрами «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Хомӯшӣ дар сессия '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Сессияи Нав" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Поёншуда" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Сбой программы «%1»." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Программа «%1» завершилась с кодом %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZМодем тараққӣ" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Фаъолият дар сессия '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole не может открыть закладку: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Қатори матлуб '%1' кофта ёфт." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Идоракунии профилҳо..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "&Сессияи Пӯшондан" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Кушодани мудири файлҳо" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Нусха" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Разделить окно по вертикали" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Разделить окно по горизонтали" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Скопировать ввод" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Скопировать ввод" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Интихоб даровардан" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Интихоби ҳама" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Интихоб" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Интихоб" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "Сохранить сеанс..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "Сохранить сеанс..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "Экрани &нашр кардан..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Идоракунии профилҳо..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Очистить сеанс" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "Очистить сеанс и сбросить" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Таҳрири профил" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Намоиши пешина" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Таҳрири профил" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Рамзгузорӣ" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Ивази номи ҷадвалбандӣ" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Во &все вкладки данного окна" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "В &некоторые вкладки..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "&None" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Ничего" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Направлять ввод также" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZМодем пурборкардан" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Тамошо барои &Фаъол кардан" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Тамошо барои &Фаъол кардан" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Нишон барои &Хомӯшӣ" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Тамошо барои &Фаъол кардан" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, fuzzy, kde-format msgid "Enlarge Font" msgstr "Ҳарфи калонтар" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "Уменьшить размер представления" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Увеличить размер шрифта" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "&Бонги Фиристодан" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Супоришро Муваққатон хобондан" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Супоришро Давом додан" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Канор гузоштан" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Супоришро Куштан" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Возможности терминала" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Супоришро Нест кардан" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "&1 Бонги Сарфкунанда" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "&2 Бонги Сарфкунанда" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Профили нав..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Настроить профиль..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "В сеансе выполняется программа. Прекратить её работу?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "В сеансе выполняется программа «%1». Прекратить её работу?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Подтверждение выхода" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Хуруҷи ҷадвалбандӣ" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2642,39 +2736,39 @@ msgid "" "by force?" msgstr "В сеансе выполняется программа. Прекратить её работу?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "В сеансе выполняется программа «%1». Прекратить её работу?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "Сохранить получаемый по ZModem файл в..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

              A ZModem file transfer attempt has been detected, but no suitable " @@ -2689,7 +2783,7 @@ msgstr "" "программ для работы с этим протоколом.\n" "

              Вы можете установить пакет «rzsz» или «lrzsz».\n" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, fuzzy, kde-format #| msgid "" #| "

              The current session already has a ZModem file transfer in progress." @@ -2697,7 +2791,7 @@ msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Сессияи шоранда аллакай файли мутараққӣ ZModem доштан. " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

              No suitable ZModem software was found on this system.\n" @@ -2709,7 +2803,7 @@ msgstr "" "

              Не найдено программ для работы с протоколом ZModem.\n" "

              Вы можете установить пакет «rzsz» или «lrzsz».\n" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Выберите файлы для передачи по ZModem" @@ -2735,152 +2829,179 @@ msgctxt "@title:window" msgid "Configure" msgstr "Подтверждение выхода" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Номи тиреза гузоштан" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Регулярное выражение" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Показать все" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "Искать с учётом регистра" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Close Active View" -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "Закрыть текущее представление" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, fuzzy, kde-format +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Номи тиреза гузоштан" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Название сеанса:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "&Тартиби Хабар додани" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "Искать с учётом регистра" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Close Active View" +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "Закрыть текущее представление" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Показать все" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Поиск следующего вхождения" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Регулярное выражение" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2905,74 +3026,112 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "Искать с учётом регистра" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Показать все" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Подсветить все вхождения" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2980,92 +3139,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Единый цвет курсора" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3078,26 +3243,24 @@ msgid "Enable memory monitoring:" msgstr "Включить двунаправленную растеризацию текста" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3266,16 +3429,35 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Ничего" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Хуруҷи ҷадвалбандӣ" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" msgid "Show 'New Tab' button" @@ -3283,94 +3465,94 @@ msgstr "" "Отображать кнопки \"Создать вкладку\" и \"Закрыть вкладку\" на навори вкладок" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "Единый цвет курсора" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Название сеанса:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Закрыть текущую вкладку" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Разделить на две части" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Показать меню" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3378,14 +3560,14 @@ msgid "Small" msgstr "Хурд" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3393,7 +3575,7 @@ msgid "Large" msgstr "Калон" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3447,8 +3629,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3488,99 +3670,99 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Андоза: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Подтверждение выхода" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Подтверждение выхода" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Установить цвет курсора таким же как цвет символа" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Интихоб даровардан" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been приостановлен по нажатию Ctrl+S. Нажмите Ctrl+Q для " "продолжения вывода." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "Директорияи корӣ konsole ба 'дир' хиёнат кардан" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Интихоб даровардан" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Разделить на две части" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Разделить окно по вертикали" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Разделить окно по горизонтали" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3637,7 +3819,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Разделить окно по горизонтали" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3645,7 +3827,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Разделить окно по вертикали" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3653,7 +3835,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Разделить окно по горизонтали" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3661,210 +3843,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Разделить окно по горизонтали" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Увеличить размер представления" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Уменьшить размер представления" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Закрыть текущую вкладку" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Закрыть текущую вкладку" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Ҷадвалбандии &нав" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "&Пешина" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Вверху" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Внизу" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Вверху" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Внизу" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Переключиться на вкладку %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Сдвинуть представление вправо" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Сдвинуть представление влево" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Переключиться на вкладку %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Мӯш" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Количество строк: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Сдвинуть представление влево" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3877,7 +4073,7 @@ msgstr "" "Ошибка сохранения вывода.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3890,13 +4086,13 @@ msgstr "" "Ошибка сохранения вывода.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3996,29 +4192,41 @@ msgstr "Кодировка по умолчанию:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Количество строк: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4056,7 +4264,7 @@ msgstr "Изменить выбранную цветовую схему" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4112,12 +4320,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4249,31 +4463,47 @@ msgid "Make the cursor blink regularly" msgstr "Мигающий постоянно курсор" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "&Мондан" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Меню Фаъол кардан" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Мигающий постоянно курсор" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Тиреза" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4281,25 +4511,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4307,28 +4537,28 @@ msgid "Color:" msgstr "Ранг" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Выбор цвета курсора" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "Андозаи Терминал кайд кард" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "Андозаи Терминал кайд кард" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4336,96 +4566,96 @@ msgid "Terminal contents" msgstr "Возможности терминала" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "&Aосилаи хат" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "Включить двунаправленную растеризацию текста" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4433,45 +4663,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Установить цвет курсора таким же как цвет символа" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Ҳарф" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4481,101 +4711,101 @@ msgstr "" "иврита)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "Включить двунаправленную растеризацию текста" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Установить цвет курсора таким же как цвет символа" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Таҳрири профил" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Умумӣ" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Вкладки" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Намуди зоҳирӣ" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Прокрутка" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "Keyboard Setup" msgid "Keyboard" msgstr "&Тугмача" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Привязки клавиш" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Иловагӣ" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4584,13 +4814,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4601,37 +4831,43 @@ msgstr "" "Файл катӣ ҳамин ном аллакай будан.\n" "Шумо мехоед ин аз сари нав навиштан?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Профили нав..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Таҳрири профили \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "&None" +msgid "None" +msgstr "&Ничего" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4641,7 +4877,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4651,46 +4887,46 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "&Тартиби Занг" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "&Тартиби Хабар додани" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "&Занги Зоҳир" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Сделать профилем по умолчанию для новых сеансов" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Изменить переменные среды" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4698,24 +4934,24 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Выбор начального каталога" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Нав..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4724,20 +4960,20 @@ msgstr "" "В выбранной цветовой схеме фон должен быть прозрачным, но данная низом не " "настроена соответствующим образом" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Нест кардани профил" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4754,7 +4990,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4851,27 +5087,55 @@ msgstr "Выбор начального каталога" msgid "Start in same directory as current session" msgstr "Запустить в том же каталоге, что и текущая вкладка" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "Запустить в том же каталоге, что и текущая вкладка" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Переменные окружения:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Список переменных среды окружения и их значений" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "Андозаи Терминал кайд кард" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4881,33 +5145,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Эмулятор терминала" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Мӯш" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4917,9 +5181,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4930,9 +5194,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4943,35 +5207,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Замина" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5328,50 +5592,93 @@ msgid "Scrollback:" msgstr "&Буфер вывода" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Пинҳоншуда" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Размещение навори:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Показывать полосу прокрутки справа от окна сеанса" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5379,67 +5686,36 @@ msgid "Ri&ght side" msgstr "Показывать справа" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Показывать полосу прокрутки слева от окна сеанса" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Андозаи матн:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Пинҳоншуда" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Размещение навори:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5543,42 +5819,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Ничего" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Ҷустуҷӯ" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Введите текст, который ищите" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Навбатӣ" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Поиск следующего вхождения" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "&Пешина" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5586,87 +5862,87 @@ msgid "Find the previous match for the current search phrase" msgstr "Поиск предыдущего вхождения" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Пӯшидани навори ҷустуҷӯ" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Закрыть текущее представление" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Искать с учётом регистра" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Пӯшидани навори ҷустуҷӯ" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Регулярное выражение" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Показать все" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Подсветить все вхождения" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Поиск следующего вхождения" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Поиск следующего вхождения" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Поиск следующего вхождения" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Поиск следующего вхождения" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5679,7 +5955,7 @@ msgstr "Поиск следующего вхождения" msgid "Print Shell" msgstr "&Раҳнамо барои чоп кардани" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "&None" msgctxt "@label:listbox No color selected" @@ -5722,6 +5998,13 @@ msgstr "Формат заголовка вкладки обычного сеан msgid "Tab Co&lor:" msgstr "Ранг" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Ранг" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5836,41 +6119,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Барпо кардан && Терминал тоза кардан" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "От&делить представление" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "От&делить представление" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Хуруҷи ҷадвалбандӣ" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "От&делить представление" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Ивази номи ҷадвалбандӣ" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Хуруҷи ҷадвалбандӣ" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Закрыть текущее представление" + #, fuzzy #~| msgid "&None" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6335,9 +6632,6 @@ msgstr "&Хуруҷи ҷадвалбандӣ" #~ msgid "Decrease Text Size" #~ msgstr "Уменьшить размер шрифта" -#~ msgid "Search Output..." -#~ msgstr "Ҷустуҷӯи хуруҷ..." - #~ msgid "Find Next" #~ msgstr "Ҷустуҷӯи дигар" @@ -6859,9 +7153,6 @@ msgstr "&Хуруҷи ҷадвалбандӣ" #~ "Ибтидои таърих расид.\n" #~ "Аз сар давом кунондан?" -#~ msgid "Unable to write to file." -#~ msgstr "Навиштан дар файл намондан" - #, fuzzy #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" diff --git a/local/recipes/kde/konsole/source/po/th/konsole.po b/local/recipes/kde/konsole/source/po/th/konsole.po index 8dc3acea75..751456feb0 100644 --- a/local/recipes/kde/konsole/source/po/th/konsole.po +++ b/local/recipes/kde/konsole/source/po/th/konsole.po @@ -1,39 +1,40 @@ # translation of konsole.po to Thai # Copyright (C) 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -# # Thanomsub Noppaburana , 2003, 2005. # Sahachart Anukulkitch , 2005, 2006, 2007. # Thanomsub Noppaburana , 2008, 2010. +# SPDX-FileCopyrightText: 2025 Atirut Wattanamongkol +# msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2010-12-17 20:05+0700\n" -"Last-Translator: Thanomsub Noppaburana \n" -"Language-Team: Thai \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2025-03-17 21:03+0700\n" +"Last-Translator: Atirut Wattanamongkol \n" +"Language-Team: Thai\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Lokalize 24.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "ถนอมทรัพย์ นพบูรณ์" +msgstr "ถนอมทรัพย์ นพบูรณ์, อติรุจ วัฒนะมงคล" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "donga.nb@gmail.com" +msgstr "donga.nb@gmail.com, atirut.wattanamongkol@gmail.com" #. i18n: ectx: Menu (file) #: ../desktop/konsoleui.rc:6 #, kde-format msgid "File" -msgstr "แฟ้ม" +msgstr "ไฟล์" #. i18n: ectx: property (text), widget (QPushButton, btnEdit) #. i18n: ectx: Menu (edit) @@ -51,7 +52,7 @@ msgstr "มุมมอง" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "แยกมุมมอง" @@ -66,7 +67,7 @@ msgstr "ตั้งค่า" #: ../desktop/konsoleui.rc:54 #, kde-format msgid "Plugins" -msgstr "" +msgstr "ปลั๊กอิน" #. i18n: ectx: Menu (help) #: ../desktop/konsoleui.rc:57 @@ -78,7 +79,7 @@ msgstr "ช่วยเหลือ" #: ../desktop/konsoleui.rc:61 #, kde-format msgid "Main Toolbar" -msgstr "" +msgstr "แถบเครื่องมือหลัก" #. i18n: ectx: Menu (history) #: ../desktop/partui.rc:20 @@ -87,11 +88,10 @@ msgid "S&crollback" msgstr "การเ&ลื่อนกลับ" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 -#, fuzzy, kde-format -#| msgid "Session Number" +#: ../desktop/sessionui.rc:80 +#, kde-format msgid "Session Toolbar" -msgstr "หมายเลขวาระ" +msgstr "เครื่องมือเซสชัน" #: Application.cpp:53 #, fuzzy, kde-format @@ -177,49 +177,61 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "Disable transparent backgrounds, even if the system supports them." msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "ปิดการแสดงผลพื้นหลังแบบโปร่งแสง แม้ว่าระบบจะรองรับมันก็ตาม" -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "แสดงรายการโพรไฟล์ที่มีอยู่" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "เปลี่ยนค่าคุณสมบัติของโพรไฟล์" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -227,7 +239,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -235,14 +247,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "อาร์กิวเมนต์ที่จะผ่านไปให้ 'command'" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -261,197 +273,197 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "พื้นหน้า" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "พื้นหลัง" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "สี 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "สี 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "สี 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "สี 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "สี 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "สี 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "สี 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "สี 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "พื้นหน้า (เข้ม)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "พื้นหลัง (เข้ม)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "สี 1 (เข้ม)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "สี 2 (เข้ม)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "สี 3 (เข้ม)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "สี 4 (เข้ม)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "สี 5 (เข้ม)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "สี 6 (เข้ม)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "สี 7 (เข้ม)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "สี 8 (เข้ม)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "พื้นหน้า (เข้ม)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "พื้นหลัง (เข้ม)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "สี 1 (เข้ม)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "สี 2 (เข้ม)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "สี 3 (เข้ม)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "สี 4 (เข้ม)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "สี 5 (เข้ม)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "สี 6 (เข้ม)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "สี 7 (เข้ม)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "สี 8 (เข้ม)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -718,6 +730,41 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "เครื่อง:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgctxt "@label:textbox added to the name of the current default profile" +#| msgid " [Default]" +msgid " [default]" +msgstr " [ปริยาย]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -762,7 +809,7 @@ msgstr "" msgid "Copy Location" msgstr "คัดลอกข้อมูลเข้า ไปยัง" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -794,14 +841,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "แก้ไขแบบอักษร..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "แสดงตัวอักษรแบบนุ่มนวล" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -811,11 +858,10 @@ msgid "" msgstr "" #: HistorySizeDialog.cpp:25 -#, fuzzy, kde-format -#| msgid "Adjust Scrollback" +#, kde-format msgctxt "@title:window" msgid "Adjust Scrollback" -msgstr "ปรับการเลื่อนกลับ" +msgstr "ปรับแต่งการเลื่อนกลับ" #: HistorySizeDialog.cpp:46 #, kde-format @@ -839,17 +885,17 @@ msgstr "รูปแบบการกดแป้น" msgid "Output" msgstr "ค่าส่งออก" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "สร้างรายการปุ่มพิมพ์ลัดใหม่" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "แก้ไขรายการปุ่มพิมพ์ลัด" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -857,7 +903,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -891,249 +937,249 @@ msgstr "ข้อมูลเข้า:" msgid "Output:" msgstr "แสดงผล:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "คอนโซล-K" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "ตัวจำลองเทอร์มินัล" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "การแก้ไขบั๊กและการปรับปรุงทั่วไป" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "ตัวจำลองเทอร์มินัล" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "การแก้ไขบั๊กและการปรับปรุงทั่วไป" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "การแก้ไขบั๊กและการปรับปรุงทั่วไป" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "การแก้ไขบั๊กและการปรับปรุงทั่วไป" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "การปรับปรุงทั่วไป" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "การแก้ไขบั๊ก" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "การรองรับ Solaris และส่วนของประวัติการใช้งาน" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "แก้ไขบั๊กและปรับปรุงประสิทธิภาพเมื่อเริ่มงาน" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "ทำการปรับปรุงส่วน Marking" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1146,14 +1192,14 @@ msgstr "" "Konsole แบบฝังตัว\n" "แถบเครื่องมือและชื่อวาระ" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1166,28 +1212,28 @@ msgstr "" "Konsole แบบฝังตัว\n" "การปรับปรุงทั่วไป" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "ลูกเล่นต่าง ๆ" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1200,125 +1246,122 @@ msgstr "" "โค้ดจากโครงการ kvt\n" "การปรับปรุงทั่วไป" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "ปรับปรุงรูปแบบชุดสีและการเลือกข้อความ" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "พอร์ตไป SGI" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "พอร์ตไป FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "ขอขอบคุณอีกหลาย ๆ ท่าน\n" -#: MainWindow.cpp:327 -#, fuzzy, kde-format -#| msgid "&New Tab" +#: MainWindow.cpp:391 +#, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "เปิดแ&ท็บใหม่" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&ปิดแท็บ" -#: MainWindow.cpp:344 -#, fuzzy, kde-format -#| msgid "New &Window" +#: MainWindow.cpp:408 +#, kde-format msgctxt "@action:inmenu" msgid "New &Window" -msgstr "เปิด&หน้าต่างใหม่" +msgstr "ห&น้าต่างใหม่" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "คอนโซล-K" -#: MainWindow.cpp:356 -#, fuzzy, kde-format -#| msgid "&Bookmarks" +#: MainWindow.cpp:420 +#, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&ที่คั่นหน้า" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "สร้างชุดสีใหม่" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Manage Profiles" @@ -1326,26 +1369,26 @@ msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "จัดการโพรไฟล์" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "ย้ายมุมมองไปทางซ้าย" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1355,28 +1398,28 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "คุณมีแท็บหลายแท็บในหน้าต่างนี้ คุณแน่ใจหรือว่าคุณต้องการออกจากโปรแกรม?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "ยืนยันการปิด" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "คอนโซล-K" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "ปิดแท็บปัจจุบัน" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1384,47 +1427,43 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "คุณมีแท็บหลายแท็บในหน้าต่างนี้ คุณแน่ใจหรือว่าคุณต้องการออกจากโปรแกรม?" -#: MainWindow.cpp:867 Part.cpp:297 -#, fuzzy, kde-format -#| msgctxt "@item This will be used as part of the file name" -#| msgid "New Profile" +#: MainWindow.cpp:1001 Part.cpp:317 +#, kde-format msgctxt "@title Preferences page name" msgid "Profiles" -msgstr "สร้างโพรไฟล์ใหม่" +msgstr "โปรไฟล์" -#: MainWindow.cpp:884 -#, fuzzy, kde-format -#| msgctxt "@title:tab Generic, common options" -#| msgid "General" +#: MainWindow.cpp:1019 +#, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "ทั่วไป" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" -msgstr "" +msgstr "ความจำ" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" -msgstr "" +msgstr "ไฟล์ชั่วคราว" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" -msgstr "" +msgstr "รูปขนาดย่อ" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1517,7 +1556,7 @@ msgstr "เปิดเครื่องมือจัดการแฟ้ม #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1529,29 +1568,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "คำสั่ง:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "คำสั่ง:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1593,7 +1632,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1653,11 +1692,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1720,94 +1759,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "เชื่อมต่อทางไกล" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "ไม่ต้องปิดวาระงานที่เริ่มอัตโนมัติเมื่อมันจบ" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2016,28 +2055,28 @@ msgstr "ตัวเลือก" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" -msgstr "โพรไฟล์ปริยาย" +msgstr "โปรไฟล์ปริยาย" #: profile/ProfileManager.cpp:280 #, fuzzy, kde-format @@ -2073,14 +2112,13 @@ msgctxt "" "@label:textbox added to the name of the built-in profile, to point out it's " "read-only" msgid " [Read-only]" -msgstr "" +msgstr " [อ่านอย่างเดียว]" #: profile/ProfileModel.cpp:84 -#, fuzzy, kde-format -#| msgid "Set as Default" +#, kde-format msgctxt "@label:textbox added to the name of the current default profile" msgid " [Default]" -msgstr "ตั้งเป็นค่าปริยาย" +msgstr " [ปริยาย]" #: profile/ProfileModel.cpp:99 #, kde-format @@ -2099,17 +2137,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "บันทึกการแสดงผลหน้าจอจาก %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 ไม่ใช่ที่อยู่ URL ที่ถูกต้อง ไม่สามารถบันทึกการแสดงผลหน้าจอได้" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2146,470 +2205,488 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "ดินสอสีแบบมืด" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "ตัวอักษรเขียวบนพื้นดำ" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "สีแบบลินุกซ์" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "ตัวอักษรขาวบนพื้นดำ" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "ตัวอักษรขาวบนพื้นดำ" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "เทอร์มินัลปริยาย (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "เทอร์มินัลแบบคอนโซลลินุกซ์" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "เทอร์มินัลคอนโซลโซลาริส" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "ค้นหาจากผลบนหน้าจอ..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ป้อนข้อความที่จะค้นหาที่นี่" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "มีออดเตือนในวาระ '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " -msgstr "ไม่สามารถค้นหาแฟ้มไบนารีได้: " +msgstr "ไม่สามารถค้นหาไฟล์ไบนารีได้: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "แจ้งเตือน: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "ไม่สามารถค้นหาเชลล์ที่จะสั่งทำงานได้" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -"ไม่สามารถค้นหา '%1' ได้, กำลังเริ่ม '%2' เพื่อใช้งานแทน โปรดตรวจสอบการตั้งค่าโพรไฟล์ของคุณ" +"ไม่สามารถค้นหา '%1' ได้, กำลังเริ่ม '%2' เพื่อใช้งานแทน โปรดตรวจสอบการตั้งค่าโปรไฟล์ของคุณ" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "ไม่สามารถเริ่มการทำงานโปรแกรม '%1' ด้วยอาร์กิวเมนต์ '%2' ได้" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "ไม่มีกิจกรรมใด ๆ เกิดขึ้นในวาระ '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "คอนโซล-K" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "เสร็จสิ้น" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "โปรแกรม '%1' ทำงานข้ดข้อง" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "โปรแกรม '%1' ออกจากการทำงานด้วยสถานะ %2" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ความคืบหน้าของ ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "มีกิจกรรมเกิดขึ้นในวาระ '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "คอนโซล-K" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " -msgstr "คอนโซล-K ไม่ทราบว่าจะทำการเปิดที่คั่นหน้าต่อไปนี้ได้อย่างไร: " +msgstr "Konsole ไม่ทราบว่าจะทำการเปิดที่คั่นหน้าต่อไปนี้ได้อย่างไร: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Configure Profiles..." msgid "Configure Web Shortcuts..." msgstr "ปรับแต่งโพรไฟล์ต่าง ๆ ..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "คอนโซล-K" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" -msgstr "เปิดเครื่องมือจัดการแฟ้ม" +msgstr "เปิดเครื่องมือจัดการไฟล์" -#: session/SessionController.cpp:660 -#, fuzzy, kde-format -#| msgid "&Copy" +#: session/SessionController.cpp:690 +#, kde-format msgid "Copy" msgstr "&คัดลอก" -#: session/SessionController.cpp:667 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: session/SessionController.cpp:697 +#, kde-format msgid "Split View Left-Right" -msgstr "มุมมองแยก ซ้าย/ขวา" +msgstr "แยกมุมมอง ซ้าย/ขวา" -#: session/SessionController.cpp:672 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: session/SessionController.cpp:702 +#, kde-format msgid "Split View Top-Bottom" -msgstr "มุมมองแยก บน/ล่าง" +msgstr "แยกมุมมอง บน/ล่าง" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "คัดลอกข้อมูลเข้า" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "คัดลอกข้อมูลเข้า" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "วางการเลือก" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "เลือกทั้งหมด" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Mode" msgstr "เลือก" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Line" msgstr "เลือก" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "บันทึกข้อความผลลัพธ์ที่แ&สดงผลเป็น..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "บันทึกข้อความผลลัพธ์ที่แ&สดงผลเป็น..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 -#, fuzzy, kde-format -#| msgid "Configure Scrollback..." +#: session/SessionController.cpp:776 +#, kde-format msgid "Adjust Scrollback..." -msgstr "ปรับแต่งหน้าจอเลื่อนกลับ..." +msgstr "ปรับแต่งการเลื่อนกลับ..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "ล้างหน้าจอเลื่อนกลับ" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "ล้างหน้าจอเลื่อนกลับและเริ่มใหม่" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "แก้ไขโพรไฟล์" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "มุมมองก่อนหน้า" -#: session/SessionController.cpp:765 -#, fuzzy, kde-format -#| msgid "Edit Profile" +#: session/SessionController.cpp:803 +#, kde-format msgid "Switch Profile" -msgstr "แก้ไขโพรไฟล์" +msgstr "สลับโปรไฟล์" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "ตั้งชุด&รหัสอักขระ" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" -msgstr "" +msgstr "อนุญาตให้ติดตามเมาส์" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" -msgstr "" +msgstr "อ่านอย่างเดียว" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "เปลี่ยน&ชื่อแท็บ..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "แ&ท็บทั้งหมดในหน้าต่างปัจจุบัน" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "เลือกแ&ท็บ..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&ไม่มี" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "คัดลอกข้อมูลเข้า ไปยัง" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "อัปโหลดผ่าน &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "เฝ้าดู&กิจกรรมต่าง ๆ" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "เฝ้าดู&กิจกรรมต่าง ๆ" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "เฝ้าดูการไ&ม่มีกิจกรรม" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "เฝ้าดู&กิจกรรมต่าง ๆ" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "เพิ่มขนาดตัวอักษร" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "ลดขนาดตัวอักษร" -#: session/SessionController.cpp:916 -#, fuzzy, kde-format -#| msgid "Increase Text Size" +#: session/SessionController.cpp:952 +#, kde-format msgid "Reset Font Size" -msgstr "เพิ่มขนาดอักษร" +msgstr "คืนขนาดอักษร" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "&ปิดแท็บ" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "คุณลักษณะของเทอร์มินัล" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 -#, fuzzy, kde-format -#| msgid "New Profile..." +#: session/SessionController.cpp:1015 +#, kde-format msgid "Create New Profile..." -msgstr "สร้างโพรไฟล์ใหม่..." +msgstr "สร้างโปรไฟล์ใหม่..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." -msgstr "แก้ไขโพรไฟล์ปัจจุบัน" +msgstr "แก้ไขโปรไฟล์ปัจจุบัน" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "มีโปรแกรมกำลังทำงานอยู่ในวาระการใช้งานนี้ คุณแน่ใจหรือว่าต้องการจะปิดมันจริง ๆ ?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "โปรแกรม '%1' กำลังทำงานอยู่ในวาระการใช้งานนี้ คุณแน่ใจหรือว่าต้องการจะปิดมันจริง ๆ ?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "ยืนยันการปิด" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&ปิดแท็บ" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, fuzzy, kde-format #| msgid "" #| "A program is currently running in this session. Are you sure you want to " @@ -2619,55 +2696,55 @@ msgid "" "by force?" msgstr "มีโปรแกรมกำลังทำงานอยู่ในวาระการใช้งานนี้ คุณแน่ใจหรือว่าต้องการจะปิดมันจริง ๆ ?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " #| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "โปรแกรม '%1' กำลังทำงานอยู่ในวาระการใช้งานนี้ คุณแน่ใจหรือว่าต้องการจะปิดมันจริง ๆ ?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "บันทึกการดาวน์โหลดจาก ZModem ไปยัง..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " "software was found on this system.

              You may wish to install the 'rzsz' " "or 'lrzsz' package.

              " msgstr "" -"

              ตรวจพบการพยายามส่งถ่ายแฟ้มผ่าน ZModem แต่ไม่พบโปรแกรม ZModem ที่เหมาะสมในระบบนี้ตรวจพบการพยายามส่งถ่ายไฟล์ผ่าน ZModem แต่ไม่พบโปรแกรม ZModem ที่เหมาะสมในระบบนี้

              คุณควรจะทำการติดตั้งแพกเกจ 'rzsz' หรือ 'lrzsz' ก่อน

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " -msgstr "

              มีการส่งถ่ายแฟ้มผ่านทาง ZModem ในวาระปัจจุบันอยู่แล้ว

              " +msgstr "

              มีการส่งถ่ายไฟล์ผ่านทาง ZModem ในวาระปัจจุบันอยู่แล้ว

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2676,10 +2753,10 @@ msgstr "" "

              ไม่พบโปรแกรม ZModem ที่เหมาะสมในระบบนี้

              คุณควรจะทำการติดตั้งแพกเกจ 'rzsz' " "หรือ 'lrzsz' ก่อน

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" -msgstr "เลือกแฟ้มสำหรับอัปโหลดผ่าน ZModem" +msgstr "เลือกไฟล์สำหรับอัปโหลดผ่าน ZModem" #: session/SessionListModel.cpp:89 #, fuzzy, kde-format @@ -2702,150 +2779,176 @@ msgctxt "@title:window" msgid "Configure" msgstr "ยืนยันการปิด" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, fuzzy, kde-format -#| msgid "Save window size and position on exit" -msgid "Show window title on the titlebar" -msgstr "จดจำขนาดและตำแหน่งของหน้าต่างไว้เมื่อออกจากโปรแกรม" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "ค้นโดยใช้เงื่อนไข Regular expression" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "ทำแถบเน้นทั้งหมด" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, fuzzy, kde-format -#| msgid "Sets whether the search is case sensitive" -msgid "Sets whether the search is case sensitive" -msgstr "ตั้งค่าให้การค้นหามีการแยกแยะตัวพิมพ์ใหญ่-เล็ก" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgid "Case sensitive" -msgid "Case sensitive" -msgstr "แยกแยะตัวอักษรพิมพ์เล็ก-ใหญ่" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Remove window titlebar and frame" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Process and window:" +msgid "Remember window size" +msgstr "จำขนาดหน้าต่าง" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "ป้อนข้อความใหม่ที่จะใช้บนแท็บ:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, fuzzy, kde-format +#| msgid "Sets whether the search is case sensitive" +msgid "Sets whether the search is case sensitive" +msgstr "ตั้งค่าให้การค้นหามีการแยกแยะตัวพิมพ์ใหญ่-เล็ก" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "Case sensitive" +msgid "Case sensitive" +msgstr "แยกแยะตัวอักษรพิมพ์เล็ก-ใหญ่" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "ทำแถบเน้นทั้งหมด" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "ค้นหาคำที่ตรงกันกับคำค้นในปัจจุบันตัวถัดไป" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "แสดงชื่อหน้าต่างบนแถบชื่อ" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "ค้นโดยใช้เงื่อนไข Regular expression" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2872,74 +2975,112 @@ msgstr "จดจำขนาดและตำแหน่งของหน้ msgid "The window size will be saved upon exiting Konsole" msgstr "จดจำขนาดและตำแหน่งของหน้าต่างไว้เมื่อออกจากโปรแกรม" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" msgstr "ตั้งค่าให้การค้นหามีการแยกแยะตัวพิมพ์ใหญ่-เล็ก" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "ทำแถบเน้นทั้งหมด" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "ตั้งค่าว่าจะให้ทำแถบเน้นคำที่ค้นเจอหรือไม่" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2947,92 +3088,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "ใช้ค่ากำหนดเอง โดยใช้ค่าสีตายตัวสำหรับเคอร์เซอร์" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3045,26 +3192,24 @@ msgid "Enable memory monitoring:" msgstr "เปิดใช้การแสดงผลข้อความแบบสองทิศทาง" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3090,11 +3235,9 @@ msgstr "สร้างโพรไฟล์ใหม่ โดยใช้ค #. i18n: ectx: property (text), widget (QPushButton, newProfileButton) #: settings/ProfileSettings.ui:54 -#, fuzzy, kde-format -#| msgctxt "@action:button Create an alternate color scheme" -#| msgid "New..." +#, kde-format msgid "&New..." -msgstr "สร้าง..." +msgstr "&สร้าง..." #. i18n: ectx: property (toolTip), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:64 @@ -3106,10 +3249,9 @@ msgstr "ตั้งโพรไฟล์ที่เลือกไว้เป #. i18n: ectx: property (text), widget (QPushButton, editProfileButton) #: settings/ProfileSettings.ui:67 -#, fuzzy, kde-format -#| msgid "Edit..." +#, kde-format msgid "&Edit..." -msgstr "แก้ไข..." +msgstr "แ&ก้ไข..." #. i18n: ectx: property (toolTip), widget (QPushButton, deleteProfileButton) #: settings/ProfileSettings.ui:77 @@ -3120,23 +3262,21 @@ msgstr "ลบโพรไฟล์ที่เลือกไว้" #. i18n: ectx: property (text), widget (QPushButton, deleteProfileButton) #: settings/ProfileSettings.ui:80 -#, fuzzy, kde-format -#| msgid "Remove" +#, kde-format msgid "&Remove" -msgstr "ลบออก" +msgstr "&ลบออก" #. i18n: ectx: property (toolTip), widget (QPushButton, setAsDefaultButton) #: settings/ProfileSettings.ui:90 #, kde-format msgid "Set the selected profile as the default for new terminal sessions" -msgstr "ตั้งโพรไฟล์ที่เลือกไว้เป็นค่าปริยาย สำหรับวาระเทอร์มินัลใหม่" +msgstr "ตั้งโปรไฟล์ที่เลือกไว้เป็นค่าปริยาย สำหรับวาระเทอร์มินัลใหม่" #. i18n: ectx: property (text), widget (QPushButton, setAsDefaultButton) #: settings/ProfileSettings.ui:93 -#, fuzzy, kde-format -#| msgid "Set as Default" +#, kde-format msgid "&Set as Default" -msgstr "ตั้งเป็นค่าปริยาย" +msgstr "&ตั้งเป็นค่าปริยาย" #. i18n: ectx: attribute (title), widget (QWidget, appearanceTab) #: settings/TabBarSettings.ui:39 @@ -3156,13 +3296,13 @@ msgstr "" #: settings/TabBarSettings.ui:63 #, kde-format msgid "When needed" -msgstr "" +msgstr "เมื่อจำเป็น" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowTabBar) #: settings/TabBarSettings.ui:73 #, kde-format msgid "Alwa&ys" -msgstr "" +msgstr "&ทุกเมื่อ" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideTabBar) #: settings/TabBarSettings.ui:83 @@ -3172,175 +3312,181 @@ msgstr "" #. i18n: ectx: property (text), widget (QLabel, positionLabel) #: settings/TabBarSettings.ui:109 -#, fuzzy, kde-format -#| msgid "Description:" +#, kde-format msgid "Position:" -msgstr "คำอธิบาย:" +msgstr "ตำแหน่ง:" #. i18n: ectx: property (text), widget (QRadioButton, Top) #: settings/TabBarSettings.ui:119 -#, fuzzy, kde-format -#| msgid "Above Terminal Displays" +#, kde-format msgid "Above terminal area" -msgstr "เหนือหน้าจอเทอร์มินัล" +msgstr "เหนือพื้นที่เทอร์มินัล" #. i18n: ectx: property (text), widget (QRadioButton, Bottom) #: settings/TabBarSettings.ui:129 -#, fuzzy, kde-format -#| msgid "Below Terminal Displays" +#, kde-format msgid "Be&low terminal area" -msgstr "ข้างใต้หน้าจอเทอร์มินัล" +msgstr "ข้างใ&ต้พื้นที่เทอร์มินัล" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 -#, fuzzy, kde-format -#| msgid "Below Terminal Displays" +#, kde-format msgid "To the left of terminal area" -msgstr "ข้างใต้หน้าจอเทอร์มินัล" +msgstr "ด้านซ้ายของพื้นที่เทอร์มินัล" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 -#, fuzzy, kde-format -#| msgid "Below Terminal Displays" +#, kde-format msgid "To the &right of terminal area" -msgstr "ข้างใต้หน้าจอเทอร์มินัล" +msgstr "ด้าน&ขวาของพื้นที่เทอร์มินัล" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 -#, fuzzy, kde-format -#| msgid "&Close Tab" +#, kde-format msgid "Show Close Tab button:" -msgstr "&ปิดแท็บ" +msgstr "แสดงปุ่มปิดแท็บ:" #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "&Detach Tab" +#, kde-format msgid "On ea&ch tab" -msgstr "แ&ยกแท็บ" +msgstr "บน&ทุก ๆ แท็บ" #. i18n: ectx: property (text), widget (QRadioButton, OnTabBar) #: settings/TabBarSettings.ui:195 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "&Detach Tab" +#, kde-format msgid "On &the tab bar" -msgstr "แ&ยกแท็บ" +msgstr "บน&แถบแท็บ" #. i18n: ectx: property (text), widget (QRadioButton, None) #: settings/TabBarSettings.ui:205 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu Do not select any tabs" -#| msgid "&None" +#, kde-format msgctxt "Do not show a close button" msgid "None" -msgstr "&ไม่มี" +msgstr "ไม่แสดง" + +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&ปิดแท็บ" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" -msgstr "" +msgstr "เบ็ดเตล็ด" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 -#, fuzzy, kde-format -#| msgid "Show 'New Tab' and 'Close Tab' buttons in tab bar" +#: settings/TabBarSettings.ui:287 +#, kde-format msgid "Show 'New Tab' button" -msgstr "แสดงปุ่ม 'สร้างแท็บใหม่' และ 'ปิดแท็บ' ในแถบแท็บ" +msgstr "แสดงปุ่ม 'แท็บใหม่'" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" -msgstr "" +msgstr "ขยายความกว้างแท็บให้เต็มหน้าต่าง" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "ใช้ค่ากำหนดเอง โดยใช้ค่าสีตายตัวสำหรับเคอร์เซอร์" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "ป้อนข้อความใหม่ที่จะใช้บนแท็บ:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "ปิดแท็บปัจจุบัน" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "แยกมุมมอง" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "แสดงแถบเมนู" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3349,14 +3495,14 @@ msgid "Small" msgstr "เล็ก" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3365,7 +3511,7 @@ msgid "Large" msgstr "ใหญ่" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3418,8 +3564,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3459,98 +3605,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "ขนาด: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "ยืนยันการปิด" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "ยืนยันการปิด" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "ใช้ค่าสีสำหรับเคอร์เซอร์ ตรงกับสีตัวอักษรปัจจุบัน" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "วางการเลือก" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been การแสดงผลทางหน้าจอถูก หยุดไว้ โดยการกด Ctrl+S ให้กด Ctrl+Q เพื่อทำงานต่อ" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." -msgstr "" +msgstr "เทอร์มินัลนี้อ่านอย่างเดียว" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "วางการเลือก" -#: ViewManager.cpp:120 -#, fuzzy, kde-format -#| msgid "Split View" +#: ViewManager.cpp:124 +#, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "แยกมุมมอง" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" -msgstr "มุมมองแยก ซ้าย/ขวา" +msgstr "แยกมุมมอง ซ้าย/ขวา" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" -msgstr "มุมมองแยก บน/ล่าง" +msgstr "แยกมุมมอง บน/ล่าง" -#: ViewManager.cpp:143 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:147 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" -msgstr "มุมมองแยก บน/ล่าง" +msgstr "แยกมุมมองโดยอัตโนมัติ" -#: ViewManager.cpp:153 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Left/Right" +#: ViewManager.cpp:157 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" -msgstr "มุมมองแยก ซ้าย/ขวา" +msgstr "แยกมุมมอง ซ้าย/ขวา จากแท็บต่อไป" -#: ViewManager.cpp:161 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:165 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" -msgstr "มุมมองแยก บน/ล่าง" +msgstr "แยกมุมมอง บน/ล่าง จากแท็บต่อไป" -#: ViewManager.cpp:169 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Split View Top/Bottom" +#: ViewManager.cpp:173 +#, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" -msgstr "มุมมองแยก บน/ล่าง" +msgstr "แยกมุมมองจากแท็บต่อไปโดยอัตโนมัติ" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "มุมมองขยาย" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "มุมมองย่อ" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "เลิก&ฝังแนบแท็บปัจจุบัน" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "D&etach Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "เลิก&ฝังแนบแท็บปัจจุบัน" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "&New Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "เปิดแ&ท็บใหม่" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" @@ -3689,152 +3826,166 @@ msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "ก่อนหน้า" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "เหนือหน้าจอเทอร์มินัล" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "ข้างใต้หน้าจอเทอร์มินัล" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "เหนือหน้าจอเทอร์มินัล" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ข้างใต้หน้าจอเทอร์มินัล" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "เปลี่ยนไปยังแท็บ %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "ย้ายมุมมองไปทางขวา" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "ย้ายมุมมองไปทางซ้าย" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "เปลี่ยนไปยังแท็บ %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "การทำงานร่วมกับเมาส์" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "จำนวนบรรทัด: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "ย้ายมุมมองไปทางซ้าย" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3847,7 +3998,7 @@ msgstr "" "เกิดปัญหาขึ้นเมื่อมีการบันทึกการแสดงผลหน้าจอ\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3860,13 +4011,13 @@ msgstr "" "เกิดปัญหาขึ้นเมื่อมีการบันทึกการแสดงผลหน้าจอ\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3965,29 +4116,41 @@ msgstr "การเข้ารหัสอักขระปริยาย:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "จำนวนบรรทัด: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4024,7 +4187,7 @@ msgstr "แก้ไขชุดสีที่เลือก" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4081,12 +4244,18 @@ msgstr "วาดตัวอักษรตัวหนาด้วยสีท #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4218,30 +4387,46 @@ msgid "Make the cursor blink regularly" msgstr "ทำให้เคอร์เซอร์กระพริบตามปกติ" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "คำอธิบาย:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "ทำให้เคอร์เซอร์กระพริบตามปกติ" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "หน้าต่าง" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4249,25 +4434,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4276,28 +4461,28 @@ msgid "Color:" msgstr "สี" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "เลือกสีที่ใช้ในการวาดเคอร์เซอร์" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "คุณลักษณะของเทอร์มินัล" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "คุณลักษณะของเทอร์มินัล" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4305,95 +4490,95 @@ msgid "Terminal contents" msgstr "คุณลักษณะของเทอร์มินัล" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "เปิดใช้การแสดงผลข้อความแบบสองทิศทาง" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4401,45 +4586,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "ใช้ค่าสีสำหรับเคอร์เซอร์ ตรงกับสีตัวอักษรปัจจุบัน" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "แบบอักษร" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4447,98 +4632,98 @@ msgid "" msgstr "เปิดใช้การแสดงผลสองทิศทางบนเทอร์มินัล (ใช้กับภาษาอารบิก, ฟาร์ซี และ ฮิบรู เท่านั้น)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "เปิดใช้การแสดงผลข้อความแบบสองทิศทาง" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "ใช้ค่าสีสำหรับเคอร์เซอร์ ตรงกับสีตัวอักษรปัจจุบัน" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" -msgstr "แก้ไขโพรไฟล์" +msgstr "แก้ไขโปรไฟล์" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "ทั่วไป" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "แท็บ" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "รูปลักษณ์" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "การเลื่อน" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "ปุ่มพิมพ์ลัด" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "ขั้นสูง" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4547,48 +4732,54 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" -msgstr[0] "กำลังแก้ไขโพรไฟล์ %1: %2" +msgstr[0] "กำลังแก้ไขโปรไฟล์ %1: %2" -#: widgets/EditProfileDialog.cpp:420 -#, fuzzy, kde-format -#| msgid "New Profile..." +#: widgets/EditProfileDialog.cpp:424 +#, kde-format msgid "Create New Profile" -msgstr "สร้างโพรไฟล์ใหม่..." +msgstr "สร้างโปรไฟล์ใหม่" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" -msgstr "แก้ไขโพรไฟล์ \"%1\"" +msgstr "แก้ไขโปรไฟล์ \"%1\"" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "Do not show a close button" +#| msgid "None" +msgid "None" +msgstr "ไม่แสดง" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4597,7 +4788,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4606,90 +4797,90 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "วางการเลือก" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "ลูกเล่นต่าง ๆ" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "ตั้งโพรไฟล์ที่เลือกไว้เป็นค่าปริยาย สำหรับวาระเทอร์มินัลใหม่" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "แก้ไขสภาพแวดล้อม" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "เลือกไดเรกทอรีเริ่มต้น" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "สร้าง..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "ชุดสีนี้ใช้พื้นหลังแบบโปร่งแสง ซึ่งดูเหมือนว่าพื้นที่ทำงานของคุณจะไม่รองรับ" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "โพรไฟล์ปริยาย" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4706,7 +4897,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4722,13 +4913,13 @@ msgstr "การเข้ารหัสอักขระปริยาย:" #: widgets/EditProfileGeneralPage.ui:66 #, kde-format msgid "Select the icon displayed on tabs using this profile" -msgstr "เลือกไอคอนที่จะให้แสดงบนแท็บที่ใช้โพรไฟล์นี้" +msgstr "เลือกไอคอนที่จะให้แสดงบนแท็บที่ใช้โปรไฟล์นี้" #. i18n: ectx: property (toolTip), widget (QLineEdit, profileNameEdit) #: widgets/EditProfileGeneralPage.ui:84 #, kde-format msgid "A descriptive name for the profile" -msgstr "ชื่ออธิบายของโพรไฟล์" +msgstr "ชื่ออธิบายของโปรไฟล์" #. i18n: ectx: property (placeholderText), widget (QLineEdit, profileNameEdit) #: widgets/EditProfileGeneralPage.ui:87 @@ -4757,7 +4948,7 @@ msgstr "คำสั่ง:" msgid "" "The command to execute when new terminal sessions are created using this " "profile" -msgstr "คำสั่งที่จะเรียกใช้ เมื่อมีการสร้างวาระของเทอร์มินัลขึ้นมาใหม่โดยใช้โพรไฟล์นี้" +msgstr "คำสั่งที่จะเรียกใช้ เมื่อมีการสร้างวาระของเทอร์มินัลขึ้นมาใหม่โดยใช้โปรไฟล์นี้" #. i18n: ectx: property (placeholderText), widget (QLineEdit, commandEdit) #: widgets/EditProfileGeneralPage.ui:144 @@ -4777,7 +4968,7 @@ msgstr "ไดเรกทอรีเริ่มต้น" #, kde-format msgid "" "The initial working directory for new terminal sessions using this profile" -msgstr "ไดเรกทอรีทำงานเริ่มต้นสำหรับวาระเทอร์มินัลใหม่ที่ใช้โพรไฟล์นี้" +msgstr "ไดเรกทอรีทำงานเริ่มต้นสำหรับวาระเทอร์มินัลใหม่ที่ใช้โปรไฟล์นี้" #. i18n: ectx: property (placeholderText), widget (QLineEdit, initialDirEdit) #: widgets/EditProfileGeneralPage.ui:176 @@ -4799,27 +4990,55 @@ msgstr "เรียกดูไดเรกทอรีเริ่มต้น msgid "Start in same directory as current session" msgstr "เริ่มที่ไดเรกทอรีเดียวกันกับแท็บปัจจุบัน" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "เริ่มที่ไดเรกทอรีเดียวกันกับแท็บปัจจุบัน" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "สภาพแวดล้อม:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "แก้ไขรายการของตัวแปรสภาพแวดล้อมและค่าที่เกี่ยวข้อง" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "คุณลักษณะของเทอร์มินัล" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4829,33 +5048,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "ตัวจำลองเทอร์มินัล" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "การทำงานร่วมกับเมาส์" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4865,9 +5084,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4878,9 +5097,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4891,22 +5110,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4914,13 +5133,13 @@ msgid "Red error background:" msgstr "พื้นหลัง" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5275,72 +5494,25 @@ msgid "Scrollback:" msgstr "การเ&ลื่อนกลับ" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "ตำแหน่งแถบแท็บ:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "แสดงแถบเลื่อนทางด้านขวาของหน้าต่างเทอร์มินัล" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "แสดงทางด้านขวา" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "แสดงแถบเลื่อนทางด้านซ้ายชองหน้าต่างเทอร์มินัล" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "ขนาดอักษร:" - #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5348,46 +5520,105 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "ซ่อน" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "แสดงแถบเลื่อนทางด้านขวาของหน้าต่างเทอร์มินัล" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "แสดงทางด้านขวา" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "แสดงแถบเลื่อนทางด้านซ้ายชองหน้าต่างเทอร์มินัล" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "ขนาดอักษร:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "ตำแหน่งแถบแท็บ:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5491,129 +5722,125 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&ไม่มี" -#: widgets/IncrementalSearchBar.cpp:49 -#, fuzzy, kde-format -#| msgid "Find:" +#: widgets/IncrementalSearchBar.cpp:50 +#, kde-format msgctxt "@label:textbox" msgid "Find..." -msgstr "ค้นหา:" +msgstr "ค้นหา..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ป้อนข้อความที่จะค้นหาที่นี่" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "ถัดไป" -#: widgets/IncrementalSearchBar.cpp:78 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" +#: widgets/IncrementalSearchBar.cpp:77 +#, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" -msgstr "ค้นหาคำที่ตรงกันกับคำค้นในปัจจุบันตัวถัดไป" +msgstr "ค้นหาคำถัดไปที่ตรงกัน" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "ก่อนหน้า" -#: widgets/IncrementalSearchBar.cpp:87 -#, fuzzy, kde-format -#| msgid "Find the previous match for the current search phrase" +#: widgets/IncrementalSearchBar.cpp:86 +#, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" -msgstr "ค้นหาคำที่ตรงกันกับคำค้นในปัจจุบันตัวก่อนหน้า" +msgstr "ค้นหาคำก่อนหน้าที่ตรงกัน" #: widgets/IncrementalSearchBar.cpp:102 #, fuzzy, kde-format -#| msgid "Display the options menu" -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "แสดงเมนูตัวเลือก" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "ปิดแถบค้นหา" - -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format #| msgid "Case sensitive" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "แยกแยะตัวอักษรพิมพ์เล็ก-ใหญ่" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "ตั้งค่าให้การค้นหามีการแยกแยะตัวพิมพ์ใหญ่-เล็ก" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "แสดงเมนูตัวเลือก" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "ปิดแถบค้นหา" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "ค้นโดยใช้เงื่อนไข Regular expression" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "ทำแถบเน้นทั้งหมด" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "ตั้งค่าว่าจะให้ทำแถบเน้นคำที่ค้นเจอหรือไม่" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "ค้นหาคำที่ตรงกันกับคำค้นในปัจจุบันตัวถัดไป" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "ค้นหาคำที่ตรงกันกับคำค้นในปัจจุบันตัวถัดไป" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "ค้นหาคำที่ตรงกันกับคำค้นในปัจจุบันตัวถัดไป" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "ค้นหาคำที่ตรงกันกับคำค้นในปัจจุบันตัวถัดไป" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5626,7 +5853,7 @@ msgstr "ค้นหาคำที่ตรงกันกับคำค้น msgid "Print Shell" msgstr "เชลล์" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5671,6 +5898,13 @@ msgstr "รูปแบบหัวเรื่องแท็บธรรมด msgid "Tab Co&lor:" msgstr "สี" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "เลือกสีของแ&ท็บ..." + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5785,7 +6019,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&ปิดแท็บ" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5793,33 +6027,47 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "แ&ยกแท็บ" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "แ&ยกแท็บ" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "ปิดแถบค้นหา" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "แ&ยกแท็บ" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "เปลี่ยน&ชื่อแท็บ..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&ปิดแท็บ" +#, fuzzy +#~| msgid "Case sensitive" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "แยกแยะตัวอักษรพิมพ์เล็ก-ใหญ่" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" @@ -6265,9 +6513,6 @@ msgstr "&ปิดแท็บ" #~ msgid "Decrease Text Size" #~ msgstr "ลดขนาดอักษร" -#~ msgid "Search Output..." -#~ msgstr "ค้นหาจากผลบนหน้าจอ..." - #~ msgid "Find Next" #~ msgstr "ค้นหาถัดไป" @@ -6296,9 +6541,6 @@ msgstr "&ปิดแท็บ" #~ msgid "New" #~ msgstr "ใหม่" -#~ msgid "Select &Tab Color" -#~ msgstr "เลือกสีของแ&ท็บ..." - #~ msgid "Enable transparent backgrounds" #~ msgstr "เปิดใช้การแสดงผลพื้นหลังแบบโปร่งแสง" diff --git a/local/recipes/kde/konsole/source/po/tr/docs/konsole/index.docbook b/local/recipes/kde/konsole/source/po/tr/docs/konsole/index.docbook index c0cbff1602..7b01bdaada 100644 --- a/local/recipes/kde/konsole/source/po/tr/docs/konsole/index.docbook +++ b/local/recipes/kde/konsole/source/po/tr/docs/konsole/index.docbook @@ -120,13 +120,13 @@ >&FDLNotice; 2023-04-25 +>2024‒04‒23 KDE Gear 23.08 +>KDE Gear 24.05 &konsole;, &kde;'nin uçbirim öykünücüsüdür.&konsole;, &kde;’nin uçbirim öykünücüsüdür. @@ -159,7 +159,7 @@ >&konsole;, genellikle uçbirim veya kabuk olarak adlandırılan bir X uçbirim öykünücüsüdür. Yalnızca metin penceresindeki bir komut satırı arayüzünü öykünür. &konsole;, tipik olarak yazdığınız komutları yürüten bir uygulama olan bir komut kabuğu çalıştırır. &konsole;'nin çalıştığı kabuk hesap ayarlarınıza bağlıdır. Kabuk nedir, nasıl yapılandırılır ve nasıl kullanılır öğrenmek için işletim sistemi belgelerinize bakın. +>&konsole;, tipik olarak yazdığınız komutları yürüten bir uygulama olan bir komut kabuğu çalıştırır. &konsole;’nin çalıştığı kabuk hesap ayarlarınıza bağlıdır. Kabuk nedir, nasıl yapılandırılır ve nasıl kullanılır öğrenmek için işletim sistemi belgelerinize bakın. @@ -197,7 +197,7 @@ >AyarlarGeçerli Profili Düzenle...Geçerli Profili Düzenle… yolunu kullanın). @@ -207,7 +207,7 @@ Seçim Kipi &konsole;'de bir klavyeyle seçim kipi vardır. Bu kipte, geçmişte serbestçe dolanılabilir ve fare olmadan metin seçilebilir. +>&konsole;’de bir klavyeyle seçim kipi vardır. Bu kipte, geçmişte serbestçe dolanılabilir ve fare olmadan metin seçilebilir. Bu kipe giriş yapıp çıkmak için klavye kısayolunu kullanın (öntanımlı olarak V düğmesine basın; imleci hareket ettirin ve seçimi sonlandırmak için yeniden V'ye basın. ’ye basın. &Shift;VAyarlarProfilleri Yönet...Profilleri Yönet… menü girdisine tıklayın. @@ -308,7 +308,7 @@ Yeni Profil...Yeni Profil… düğmesine tıklayın. @@ -342,7 +342,7 @@ >Tamam düğmesine basın. Yeni oturum artık Profilleri Yönet...Profilleri Yönet… iletişim kutusunda görünecektir. @@ -369,7 +369,7 @@ Tüm &LMB; tıklamaları, &konsole;'da çalışan fare uyumlu bir uygulamaya gönderilir. Bir uygulama, fare tıklamasına tepki gösteriyorsa &konsole; bunu bir ok imleci ile gösterir. Değilse bir çubuk imleci gösterilir. +>Tüm &LMB; tıklamaları, &konsole;’da çalışan fare uyumlu bir uygulamaya gönderilir. Bir uygulama, fare tıklamasına tepki gösteriyorsa &konsole; bunu bir ok imleci ile gösterir. Değilse bir çubuk imleci gösterilir. Farenin farkında olmayan bir uygulama çalışırken &LMB; ile basılı tutmak ve fareyi ekran üzerinde sürüklemek metnin bir bölümünü işaretleyecektir. Fareyi sürüklerken, işaretlenen metin görsel geri bildirim için ters renkte görüntülenir. İşaretli metni &konsole; içinde daha sonra kullanmak üzere panoya kopyalamak veya başka bir uygulamaya göndermek için Geçmişi Ayarla...Geçmişi Ayarla… Geçerli Profili Düzenle...Geçerli Profili Düzenle… Sürükle ve bırak işlemi sırasında &LMB;'ni bırakmadan önce kısayollara basarsanız herhangi bir bağlam menüsü görünmez ve eylemler hemen yürütülür. +>Sürükle ve bırak işlemi sırasında &LMB;’ni bırakmadan önce kısayollara basarsanız herhangi bir bağlam menüsü görünmez ve eylemler hemen yürütülür. &URL;'leri öntanımlı olarak metin olarak eklemek üzere sürükleyip bırakmak için &Ctrl; düğmesini kullanmak veya bağlam menüsünü devre dışı bırakmak istiyorsanız profil ayarları iletişim kutusundaki &URL;’leri öntanımlı olarak metin olarak eklemek üzere sürükleyip bırakmak için &Ctrl; düğmesini kullanmak veya bağlam menüsünü devre dışı bırakmak istiyorsanız profil ayarları iletişim kutusundaki Fare sekmesinde ilgili seçenekleri etkinleştirin. @@ -725,9 +725,11 @@ Profili Düzenle iletişim kutusunun iletişim kutusundaki Görünüş sayfasının Karmaşık Metin Yerleşimi sayfasında, metin sunumunu denetleyen seçenekleri bulacaksınız. +> sekmesinde metin sunumunu denetleyen seçenekleri bulacaksınız. @@ -735,7 +737,7 @@ >Sözcük kipi - Bu kipte (bazı) diziler ekranda tek tek karakter yerine bir bütün olarak görüntülenir. Bu, bir karakterin şekli kendisinden önceki veya sonraki karakterlere bağlı olduğunda Qt’un metni doğru şekilde oluşturmasını sağlar. Bu, bazı karakterlerin yanlış konumlandırılmasına neden olabilir. — Bu kipte (bazı) diziler ekranda tek tek karakter yerine bir bütün olarak görüntülenir. Bu, bir karakterin şekli kendisinden önceki veya sonraki karakterlere bağlı olduğunda Qt’un metni doğru şekilde oluşturmasını sağlar. Bu, bazı karakterlerin yanlış konumlandırılmasına neden olabilir. Boşluklar her zaman dizileri bozar, dolayısıyla her zaman doğru konumlarda olurlar. Bu, karakterlerin hiçbir zaman doğru konumlarından çok fazla uzaklaşmamasını sağlar. @@ -744,63 +746,95 @@ >Tüm sözcük için aynı öznitelikleri kullan - Bu etkinleştirildiğinde, sözcükler aynı niteliklerle (metin rengi, kalın, yatık vb.) oluşturulur. Bir öznitelik kelimenin ortasında değişirse bu durum; ancak sözcüğün sonundan sonra geçerli olur. Bu devre dışı bırakıldığında, öznitelikler değiştiğinde yeni bir sözcük başlar. Bu, imleci hareket ettirirken veya metni seçerken karakterlerin şekil ve konumunu değiştirmesine neden olur. — Bu etkinleştirildiğinde, sözcükler aynı niteliklerle (metin rengi, kalın, yatık vb.) oluşturulur. Bir öznitelik kelimenin ortasında değişirse bu durum; ancak sözcüğün sonundan sonra geçerli olur. Bu devre dışı bırakıldığında, öznitelikler değiştiğinde yeni bir sözcük başlar. Bu, imleci hareket ettirirken veya metni seçerken karakterlerin şekil ve konumunu değiştirmesine neden olur. ASCII karakterler - ASCII karakterlerini yukarıda açıklandığı gibi sözcükler halinde gruplayın. Bu seçeneğin en göze çarpan etkisi, bunun etkinleştirilmesinin programlama bitişik harflerini (bunları destekleyen yazı tipleri için) göstermesidir. Örneğin. <= dizesi ⩽ olarak görüntülenebilir. — ASCII karakterlerini yukarıda açıklandığı gibi sözcükler halinde gruplayın. Bu seçeneğin en göze çarpan etkisi, bunun etkinleştirilmesinin programlama bitişik harflerini (bunları destekleyen yazı tipleri için) göstermesidir. Örneğin. <= dizesi ⩽ olarak görüntülenebilir. Brahmi yazısı karakterleri - Brahmi karakterlerini yukarıda açıklandığı gibi gruplandırın. Bu seçenek olmadan (yazıtipine bağlı olarak) bazı sözcükler olması gerektiği gibi bağlanmayabilir. Bu etkinleştirildiğinde Brahmi karakterleri konumlarının dışında görünebilir. Örneğin, ikinci satırdaki üçüncü karakter doğrudan birinci satırdaki üçüncü karakterin altında görünmeyebilir. — Brahmi karakterlerini yukarıda açıklandığı gibi gruplandırın. Bu seçenek olmadan (yazıtipine bağlı olarak) bazı sözcükler olması gerektiği gibi bağlanmayabilir. Bu etkinleştirildiğinde Brahmi karakterleri konumlarının dışında görünebilir. Örneğin, ikinci satırdaki üçüncü karakter doğrudan birinci satırdaki üçüncü karakterin altında görünmeyebilir. Emoji yazısı: - Bu, Unicode Emoji karakterleri için kullanılacak yazıtipinin belirlenmesine olanak tanır. Ayarlanmazsa öntanımlı profil yazıtipi kullanılır veya bu yazıtipinde glifler eksikse sistem tarafından bazı yedek yazıtipleri kullanılabilir. — Bu, Unicode Emoji karakterleri için kullanılacak yazıtipinin belirlenmesine olanak tanır. Ayarlanmazsa öntanımlı profil yazıtipi kullanılır veya bu yazıtipinde glifler eksikse sistem tarafından bazı yedek yazıtipleri kullanılabilir. Çift yönlü metin sunumu - Arapça ve İbranice metinlerin doğru görünmesi için sağdan sola karakterleri yeniden sıralayın. — Arapça ve İbranice metinlerin doğru görünmesi için sağdan sola karakterleri yeniden sıralayın. Soldan sağa satır yönü zorla - Satırlar her zaman soldan sağadır. Bu olmadan her satırın yönü, güçlü yönlülüğe sahip ilk karakter tarafından belirlenir. — Satırlar her zaman soldan sağadır. Bu olmadan her satırın yönü, güçlü yönlülüğe sahip ilk karakter tarafından belirlenir. Tablo karakterlerinde çift yönlü kipi geçersiz kıl - Grafik tablo karakterlerini güçlü soldan sağa karakterleri olarak düşünün. Bu, sağdan sola karakterlerini içeren tablonun doğru şekilde görüntülenmesine olanak tanır; ancak bu karakterler sağdan sola metinlerinde kullanılırsa sıralamanın yanlış olmasına neden olabilir. — Grafik tablo karakterlerini güçlü soldan sağa karakterleri olarak düşünün. Bu, sağdan sola karakterlerini içeren tablonun doğru şekilde görüntülenmesine olanak tanır; ancak bu karakterler sağdan sola metinlerinde kullanılırsa sıralamanın yanlış olmasına neden olabilir. wcwidth’i geçersiz kıl - Sorunlu karakterler glibc’nin wcwidth() yöntemi yerine Unicode standardını izler. Şu anda yalnızca wc genişliği 1 ve Unicode genişliği 0 olan yumuşak kısa çizgi (Unicode 0x00AD) bu seçenekten etkilenmektedir. Genel olarak bu seçenek, esas olarak komut satırında bu karakterler kullanıldığında devre dışı bırakılmalı ve yalnızca görüntülendiklerinde etkinleştirilmelidir. — Sorunlu karakterler glibc’nin wcwidth() yöntemi yerine Unicode standardını izler. Şu anda yalnızca wc genişliği 1 ve Unicode genişliği 0 olan yumuşak kısa çizgi (Unicode 0x00AD) bu seçenekten etkilenmektedir. Genel olarak bu seçenek, esas olarak komut satırında bu karakterler kullanıldığında devre dışı bırakılmalı ve yalnızca görüntülendiklerinde etkinleştirilmelidir. - + +Görsel İpuçları + içinde açıklanan çeşitli görsel ipuçlarına ek olarak, &konsole; içinde başka görsel ipuçları da bulunur: + + +80. veya başka bir sütunda görsel bir çizgi. Bu, Profili Düzenle iletişim kutusunun Görünüş sayfasındaki Diğer sekmesinde yapılandırılır. + +Satır numaraları, uçbirim metninin üzerine koyulacak biçimde görüntülenebilir. Satır numaraları, her bir satırın sağ ucuna doğru kırmızı renkte görünürler. Satırlar, geçmişteki ilk (en üst) satırdan başlanarak numaralandırılırlar. Satır numaralarının görüntülenmesi, Profili Düzenle iletişim kutusunun Gelişmiş sekmesinde yapılandırılabilir. Görüntülenen üç kip arasında geçiş ise bir klavye kısayoluyla sağlanabilir. Öntanımlı kısayol: &Ctrl;&Alt;\ + + + @@ -907,7 +941,7 @@ > Dosya Çıktıyı Farklı Kaydet...Çıktıyı Farklı Kaydet… Dosya Ekranı Yazdır ...Ekranı Yazdır… Geçerli dizinde &kde; dosya yöneticisini açar. Öntanımlı olarak bu &dolphin;'dir. ’dir. @@ -1003,7 +1037,7 @@ &konsole;'dan çıkar&konsole;’dan çıkar Girdiyi Şuraya KopyalaSekmeler Seç...Sekmeler Seç… DüzenSekme Ayarlarını Yapılandır...Sekmeyi Yapılandır/Yeniden Adlandır… DüzenZModem ile Karşıya Yükle...ZModem ile Karşıya Yükle… DüzenBul...Bul… Süreç tamamlanması için geçerli sekmenin izlenmesini açar/kapatır. İşaretlenirse geçerli sürecin tamamlanmasının ardından &konsole; 'İşaretlenirse geçerli sürecin tamamlanmasının ardından &konsole;, A' süreci, '” süreci, “B oturumundaki çalışmayı bitirdi” oturumundaki çalışmayı bitirdi biçiminde bir bildirim gösterir. @@ -1817,7 +1851,7 @@ Various search improvements Metnin yazıtipi boyutunu artırırMetnin yazıtipi puntosunu artırır @@ -1834,13 +1868,13 @@ Various search improvements > GörünümYazıtipi Boyutunu SıfırlaYazıtipi Puntosunu Sıfırla Metnin yazıtipi boyutunu profil öntanımlısına sıfırlarMetnin yazıtipi puntosunu profil öntanımlısına sıfırlar @@ -1864,7 +1898,7 @@ Various search improvements Metnin yazıtipi boyutunu azaltırMetnin yazıtipi puntosunu azaltır @@ -1942,7 +1976,7 @@ Various search improvements &konsole;'nin tüm ekranı kaplamasını açar/kapatır&konsole;’nin tüm ekranı kaplamasını açar/kapatır @@ -1968,7 +2002,7 @@ Various search improvements > Yer İmleriYer İmi EkleYer İmi Koy Yer İmleriSekmeleri Klasör Olarak Yer İmlerine Ekle...Sekmeleri Klasör Olarak Yer İmlerine Ekle… Yer İmleriYeni Yer İmi Klasörü...Yeni Yer İmi Klasörü… AyarlarGeçerli Profili Düzenle...Geçerli Profili Düzenle… AyarlarProfilleri Yönet...Profilleri Yönet… AyarlarDili Yapılandır... Dili Yapılandır… &konsole;'nin arayüz çevirisini seçmek için bir pencere açar. +>&konsole;’nin arayüz çevirisini seçmek için bir pencere açar. @@ -2217,7 +2251,7 @@ Various search improvements >AyarlarKlavye Kısayollarını Yapılandır...Klavye Kısayollarını Yapılandır… AyarlarAraç Çubuklarını Yapılandır...Araç Çubuklarını Yapılandır… AyarlarBildirimleri Yapılandır...Bildirimleri Yapılandır… Ayarlar&konsole; Uygulamasını Yapılandır...&konsole; Uygulamasını Yapılandır… General sayfası, ayrıca daha önce kapatılmışlarsa Tüm "Bir Daha Sorma" İletilerini Etkinleştir'ebileceğiniz yerdir. +>’ebileceğiniz yerdir. Sekme Çubuğu/Ayırıcılar sayfasını kullanarak, sekme çubuğunun görünürlüğünü ve konumunu, sekme davranışlarını ve sekme düğmelerinin ince ayarlarını yapılandırabilirsiniz. 'Yeni Sekme' düğmesini göster“Yeni Sekme” düğmesini göster ve Bireysel sekme genişliklerini tam pencereye genişlet arasında seçim yapabilir veya AyarlarGeçerli Profili Düzenle...Geçerli Profili Düzenle…FareÖntanımlı profil yerine belirtilen profili kullanarak &konsole;'u başlat&konsole;’u başlat. @@ -2656,7 +2690,7 @@ Various search improvements >Bir kaydedilen &JSON; yerleşim dosyası kullanarak &konsole;'u başlat&konsole;’u başlat. @@ -2783,7 +2817,7 @@ Various search improvements &konsole;'u arka planda başlat&konsole;’u arka planda başlat ve &Ctrl;&Shift;F12 &konsole;'un yeni bir örneğini ayrı bir süreçte &konsole;’nin yeni bir örneğini ayrı bir süreçte çalıştır. @@ -2869,7 +2903,7 @@ Various search improvements &konsole;'u tam ekran kipinde başlat&konsole;’u tam ekran kipinde başlat. @@ -2915,7 +2949,7 @@ Various search improvements Daha fazla bilgi için lütfen &konsole; API Başvurusu'nu ziyaret edin. +>’nu ziyaret edin. @@ -2950,7 +2984,7 @@ Various search improvements >. Bu seçenek, &konsole;'a aktarılan tüm değişkenleri yakalar ve Bu seçenek, &konsole;’a aktarılan tüm değişkenleri yakalar ve komut olarak yürütür. Bu nedenle, bu seçenek her zaman son seçenek olarak kullanılmalıdır. @@ -2960,7 +2994,7 @@ Various search improvements &konsole; aynı zamanda genel &Qt; ve &kf5-full; seçeneklerini kabul eder; ek bilgi için qt5options ve kf5options kılavuz sayfalarına göz atın. +>&konsole; aynı zamanda genel &Qt; ve &kf6-full; seçeneklerini kabul eder; ek bilgi için qt6options ve kf6options kılavuz sayfalarına göz atın. @@ -2971,7 +3005,7 @@ Various search improvements &konsole;, &DBus; ile kullanılabilecek birçok yöntemi destekler. &DBus; arayüzünü kullanmanın iki yolu vardır: &Qt;'nin grafiksel &DBus; arayüzünü kullanmanın iki yolu vardır: &Qt;’nin grafiksel qdbusviewer uygulaması ve qdbus (bu, geçerli &konsole;'dan kullanılabilir) (bu, geçerli &konsole;’dan kullanılabilir) +>“qdbus | grep konsole” çıktılarından birini seçin @@ -3088,7 +3122,7 @@ Various search improvements Daha fazla bilgi için lütfen &DBus; öğreticisi'ni ziyaret edin. +>’ni ziyaret edin. @@ -3113,7 +3147,7 @@ Various search improvements >) gönderilen denetim karakterlerine ve kaçış dizilerine dönüştürmek için *.keytab dosyalarını kullanır. Kullanıcılar, düğme bağıntısı düzenleyicisini kullanarak &konsole;'deki düğme bağıntısı ayarlarını özelleştirebilir. Uçbirime belirli bir denetim veya kaçış dizisi göndermek için bir düğme kombinasyonu yapılandırılabilir. +>Kullanıcılar, düğme bağıntısı düzenleyicisini kullanarak &konsole;’deki düğme bağıntısı ayarlarını özelleştirebilir. Uçbirime belirli bir denetim veya kaçış dizisi göndermek için bir düğme kombinasyonu yapılandırılabilir. Düğme Bağıntıları Düzenleyicisi’ni screen, tmux... &etc;) +>… &etc;) @@ -3273,7 +3307,7 @@ Boşluk+Kontrol Bu kip VT100 İmleç Düğmeleri Kipi (DECCKM)'ni gerçekler. Bu, bu kipin ayarlı veya sıfırlanan durumuna istinaden, her bir imleç düğmesinin (’ni gerçekler. Bu, bu kipin ayarlı veya sıfırlanan durumuna istinaden, her bir imleç düğmesinin (Yukarı, Aşağı düğmesi için de geçerlidir. Bu kip LNM - Satır Besleme/Yeni Satır Kipi'ne öykünür. +>LNM — Satır Besleme/Yeni Satır Kipi’ne öykünür. @@ -3357,10 +3391,10 @@ Boşluk+Kontrol >Çıktı Alanı Çıktı alanında ilgili düğme kombinasyonuna basıldığında &konsole;'nin uçbirimee göndermesini istediğiniz kaçış dizilerini veya denetim karakterlerini ekleyebilirsiniz. +>Çıktı alanında ilgili düğme kombinasyonuna basıldığında &konsole;’nin uçbirime göndermesini istediğiniz kaçış dizilerini veya denetim karakterlerini ekleyebilirsiniz. Ayrıca &konsole;'de her biri özel bir anlama sahip olan aşağıdaki anahtar sözcüklerden herhangi birini de kullanabilirsiniz: +>Ayrıca &konsole;’de her biri özel bir anlama sahip olan aşağıdaki anahtar sözcüklerden herhangi birini de kullanabilirsiniz: terminfo veya termcap veritabanına başvurun. +> veri tabanına başvurun. .css dosyasında onu kullanacak araç takımı QTabBar::tab'dır. +>’dır. Daha fazla bilgi için &Qt; Biçem SayfalarıSekme başlığındaki "%d" biçimlendiricisinde gizli bir özellik vardır. &konsole;'a bir dizin adını onun ilk karakterine kısaltmasını söyleyebilirsiniz. Örneğin, "/konsole/ikilisi/yolu", "konsole/i" olarak kısaltılabilir. Bu gizli özelliği etkinleştirmek ve denetlemek isterseniz Sekme başlığındaki "%d" biçimlendiricisinde gizli bir özellik vardır. &konsole;’a bir dizin adını onun ilk karakterine kısaltmasını söyleyebilirsiniz. Örneğin, "/konsole/ikilisi/yolu", "konsole/i" olarak kısaltılabilir. Bu gizli özelliği etkinleştirmek ve denetlemek isterseniz qtpaths 16.08 sürümünden (Ağustos 2016) itibaren &konsole;, ekranın doğru görüntülenemeyebileceği uyarısıyla herhangi bir yazıtipinin seçilmesine izin verecek biçimde yapılandırılabilir. @@ -3730,7 +3764,7 @@ CommonDirNames=ad1,ad2,ad3... >&konsole;, oturum açma kabuğunu çalıştırma konusunda kolaylık sağlamaz; çünkü geliştiricileri oturum açma kabuğunu bir uçbirim öykünücüsünde çalıştırma fikrinden hoşlanmıyor. Tabii ki kullanıcılar çok gerekirse oturum açma kabuğunu &konsole;'da çalıştırabilirler. Kullanımdaki profili düzenleyin ve komutunu bir oturum açma kabuğunu açıkça çağıracak biçimde değiştirin; örneğin, "Tabii ki kullanıcılar çok gerekirse oturum açma kabuğunu &konsole;’da çalıştırabilirler. Kullanımdaki profili düzenleyin ve komutunu bir oturum açma kabuğunu açıkça çağıracak biçimde değiştirin; örneğin, "bash -l" ve "zsh -lÖnceki &konsole; bakımcıları: &Robert.Knight; &Robert.Knight.mail; ve &Waldo.Bastian; &Waldo.Bastian.mail; &konsole; uygulaması telif hakkı © 1997-2008 &Lars.Doelle; &Lars.Doelle.mail; +>&konsole; uygulaması telif hakkı © 1997–2008 &Lars.Doelle; &Lars.Doelle.mail; Bu belge ilk olarak &Jonathan.Singer; &Jonathan.Singer.mail; tarafından yazılmıştır. diff --git a/local/recipes/kde/konsole/source/po/tr/konsole.po b/local/recipes/kde/konsole/source/po/tr/konsole.po index 715a14b8b9..b7707b5c28 100644 --- a/local/recipes/kde/konsole/source/po/tr/konsole.po +++ b/local/recipes/kde/konsole/source/po/tr/konsole.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# SPDX-FileCopyrightText: 2022, 2023, 2024 Emir SARI +# SPDX-FileCopyrightText: 2022-2026 Emir SARI # Adem Alp Yıldız , 2005. # Bekir SONAT , 2005. # Görkem Çetin , 2003-2004. @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: applications-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-09-23 14:34+0300\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-06-11 21:17+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -27,7 +27,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.11.70\n" +"X-Generator: Lokalize 26.04.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -63,7 +63,7 @@ msgstr "Görünüm" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Görünümü Böl" @@ -99,7 +99,7 @@ msgid "S&crollback" msgstr "&Geçmiş" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Oturum Araç Çubuğu" @@ -171,58 +171,70 @@ msgstr "Ayrı bir süreçte çalıştır" #, kde-format msgctxt "@info:shell" msgid "Show the menubar, overriding the default setting" -msgstr "Menü çubuğunu göster, öntanımlı ayarların üzerine yazılır" +msgstr "Öntanımlı ayarı geçersiz kılarak menü çubuğunu göster" #: Application.cpp:67 #, kde-format msgctxt "@info:shell" msgid "Hide the menubar, overriding the default setting" -msgstr "Menü çubuğunu gizle, öntanımlı ayarların üzerine yazılır" +msgstr "Öntanımlı ayarı geçersiz kılarak menü çubuğunu gizle" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" -msgstr "Sekme çubuğunu göster, öntanımlı ayarların üzerine yazılır" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Öntanımlı ayarı geçersiz kılarak tüm araç çubuklarını göster" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" -msgstr "Sekme çubuğunu gizle, öntanımlı ayarların üzerine yazılır" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Öntanımlı ayarı geçersiz kılarak tüm araç çubuklarını gizle" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" +msgid "Show the tabbar, overriding the default setting" +msgstr "Öntanımlı ayarı geçersiz kılarak sekme çubuğunu göster" + +#: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "Öntanımlı ayarı geçersiz kılarak sekme çubuğunu gizle" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Konsole’yi tam ekran kipinde başlat" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Sistem desteklese bile saydam arka planları devre dışı bırakın." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Kullanılabilir profilleri listele" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" "Tüm profile özelliklerinin adlarını ve tiplerini listele (-p kullanarak)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Bir profil özelliğine ait değeri değiştir." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,7 +244,7 @@ msgstr "" "Yürütülecek komut. Bu seçenek, tüm izleyen argümanları yakalar, bu nedenle " "son seçenek olarak kullanın." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -242,13 +254,13 @@ msgstr "" "İşlevselliği bozsa bile var olan oturumu yeniden kullanmayı zorla; örn. --" "new-tab. Çoğunlukla hata ayıklama için kullanılır." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Komuta verilen argümanlar" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -266,157 +278,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Ön Plan" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Arka Plan" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Renk 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Renk 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Renk 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Renk 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Renk 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Renk 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Renk 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Renk 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Ön plan (Yoğun)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Arka plan (Yoğun)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Renk 1 (Yoğun)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Renk 2 (Yoğun)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Renk 3 (Yoğun)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Renk 4 (Yoğun)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Renk 5 (Yoğun)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Renk 6 (Yoğun)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Renk 7 (Yoğun)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Renk 8 (Yoğun)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Ön plan (Soluk)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Arka plan (Soluk)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Renk 1 (Soluk)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Renk 2 (Soluk)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Renk 3 (Soluk)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Renk 4 (Soluk)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Renk 5 (Soluk)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Renk 6 (Soluk)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Renk 7 (Soluk)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Renk 8 (Soluk)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -460,7 +472,7 @@ msgstr "" #, kde-format msgctxt "@title:window" msgid "Select wallpaper image file" -msgstr "Duvar kağıdı görseli dosyası seç" +msgstr "Duvar kâğıdı görseli dosyası seç" #: colorscheme/ColorSchemeEditor.cpp:190 #, kde-format @@ -549,7 +561,7 @@ msgstr "Yüzde" #: colorscheme/ColorSchemeEditor.ui:103 #, kde-format msgid "Wallpaper transparency:" -msgstr "Duvar kağıdı saydamlığı:" +msgstr "Duvar kâğıdı saydamlığı:" #. i18n: ectx: property (text), widget (QLabel, wallpaperLabel) #: colorscheme/ColorSchemeEditor.ui:137 @@ -582,7 +594,7 @@ msgstr "…" #: colorscheme/ColorSchemeEditor.ui:165 #, kde-format msgid "Wallpaper scaling:" -msgstr "Duvar kağıdı ölçeklendirme:" +msgstr "Duvar kâğıdı ölçeklendirme:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperScalingType) #: colorscheme/ColorSchemeEditor.ui:173 @@ -618,7 +630,7 @@ msgstr "Ölçeklendirme Yok" #: colorscheme/ColorSchemeEditor.ui:205 #, kde-format msgid "Wallpaper flip:" -msgstr "Duvar kağıdı ters çevirme:" +msgstr "Duvar kâğıdı ters çevirme:" #. i18n: ectx: property (text), item, widget (QComboBox, wallpaperFlipType) #: colorscheme/ColorSchemeEditor.ui:213 @@ -673,6 +685,38 @@ msgstr "Üst" msgid "AaZz09..." msgstr "AaZz09…" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Makine" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "Konsole, Flatpak içinde çalışırken kapsayıcı desteği kullanılamaz." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsül" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [Öntanımlı]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -717,7 +761,7 @@ msgstr "" msgid "Copy Location" msgstr "Konumu Kopyala" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Küçük Görsel Oluşturuluyor" @@ -748,13 +792,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Yazıtipi Seç" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Tüm yazıtiplerini göster" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -794,17 +838,17 @@ msgstr "Düğme Kombinasyonu" msgid "Output" msgstr "Çıktı" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Yeni Düğme Bağıntısı Listesi" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Düğme Bağıntısı Listesini Düzenle" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Bir düğme bağıntısı şeması boş bir açıklamayla kaydedilemez." @@ -812,7 +856,7 @@ msgstr "Bir düğme bağıntısı şeması boş bir açıklamayla kaydedilemez." #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -846,226 +890,225 @@ msgstr "Girdi:" msgid "Output:" msgstr "Çıktı:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Uçbirim Öykünücüsü" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" -msgstr "(c) 1997–2022, Konsole Geliştiricileri" +msgstr "© 1997–2022, Konsole Geliştiricileri" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" -msgstr "" -"Projeyi yürüten ana geliştirici, hata düzeltmeleri ve genel geliştirmeler" +msgstr "Genel bakımcı, hata düzeltmeleri ve genel geliştirmeler" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Önceki bakımcı, KDE 4 geçişi" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" -msgstr "Asıl yazar" +msgstr "Özgün yazar" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Büyük yeniden düzenleme, hata düzeltmeleri ve büyük iyileştirmeler" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Hata düzeltmeleri ve genel geliştirmeler" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Hata düzeltmeleri ve önemli iyileştirmeler" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Genel geliştirmeler" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Hata düzeltmeleri" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris desteği ve geçmiş özelliği" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" -msgstr "Hata düzeltmeleri ve başlangıç performansı" +msgstr "Hata düzeltmeleri ve başlangıç başarımı" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "İşaretleme geliştirmeleri" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1075,13 +1118,13 @@ msgstr "" "Gömülü Konsole\n" "Araç çubuğu ve oturum adları" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1091,25 +1134,25 @@ msgstr "" "Gömülü Konsole\n" "Genel geliştirmeler" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Görsel efektler" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1119,132 +1162,132 @@ msgstr "" "Kvt projesinden kodlar\n" "Genel iyileştirmeler" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Şema ve metin seçme geliştirmeleri" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI ortamına aktarma" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD ortamına aktarma" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Diğer kişilere teşekkürler.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Yeni Sekme" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Sekmeyi Çoğalt" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Yeni Pencere" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Pencereyi Kapat" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Y&er İmleri" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "&Pencere Renk Şeması" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profilleri Yönet…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Menüyü Etkinleştir" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Sekme Yerleşimini Kaydet…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Sekme Yerleşimi Yükle…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1255,67 +1298,67 @@ msgstr[0] "" msgstr[1] "" "Bu pencerede çalışan %1 süreç var. Çıkmak istediğinizden emin misiniz?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Kapatmayı Doğrula" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "&Pencereyi Kapat" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "G&eçerli Sekmeyi Kapat" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Bu pencerede %1 açık uçbirim var. Çıkmak istediğinizden emin misiniz?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Profiller" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Genel" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Bellek" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Sekme Çubuğu / Ayırıcılar" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Geçici Dosyalar" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Küçük Görseller" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1399,7 +1442,7 @@ msgstr "Kaydet" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Güncelle" @@ -1411,29 +1454,29 @@ msgid "Cancel" msgstr "İptal et" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Tez Komutlar" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Tez Erişim’i Göster" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Bir tez komut bulunamadı. Eklentiler → Tez Komutlar bölümünden bir tane " "ekleyebilirsiniz" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Eklentiler — Tez Komutlar" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Tez Komutları Göster" @@ -1475,7 +1518,7 @@ msgstr "" "üzeresiniz, emin misiniz?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "%1 ögesini silmek üzeresiniz, emin misiniz?" @@ -1528,11 +1571,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1, SSH girdileri için bi klasördür" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH Yapılandırması" @@ -1593,24 +1636,24 @@ msgid "" msgstr "Kabuk uygulaması dışında SSH komutu verilemez (örn. bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH Anahtarı" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Sil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Değiştirme" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1619,69 +1662,69 @@ msgstr "" "Çoklu SSH Yapılandırması olan\n" "%1 klasörünü silmek üzeresiniz, emin misiniz?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "SSH Yapılandırmalarını Sil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "SSH profili içe aktarıldı
              Bazı ayarlar saltokunur." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Eksik Ana Bilgisayar Adı" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Eksik Ad" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Ssh Yapılandırması Kullan ayarlanmışsa sshkey veya kullanıcı adı belirtmeyin." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "En azından Kullanıcı Adı veya SSHKey ayarlanmalıdır" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Eksik Klasör" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Bir SSH oturumunun bir profili olmalı" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Bu klasör silinemiyor" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Klasörü ve tüm içeriğini sil" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Klasör adını değiştirmek için çift tıklayın." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Kendiliğinden eklenmiş bir girdiyi silemezsiniz." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Seçili girdiyi sil" @@ -1873,25 +1916,25 @@ msgstr "Çıktı Seçenekleri" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "Yazıcı &dostu kip (siyah metin, arka plan yok)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "Çıkı&şı Ölçeklendir" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Yerleşik" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Öntanımlı profil" @@ -1950,17 +1993,40 @@ msgstr "Kısayolu değiştirmek için çift tıkla" msgid "Tab Properties" msgstr "Sekme Özellikleri" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 Çıktısını Kaydet" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 geçersiz bir URL, çıktı kaydedilmeyecek." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "%1 konumunda kendiliğinden kayıt dosyası oluşturulamadı." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Ekran değiştirme nedeniyle kendiliğinden kayıt durduruluyor." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"Kendiliğinden kayıt dosyası, sonraki kayıtları önleyecek biçimde dışarıdan " +"değiştirildi." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "Çıktı değişikliklerinde kendiliğinden kayıt durumu güncellenemedi." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1996,81 +2062,98 @@ msgstr "Esinti" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Koyu Pastel Renkler" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Siyah üzerine Yeşil" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux Renkleri" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Siyah üzerine Kırmızı" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Soldurulmuş" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Soldurulmuş Işık" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Siyah üzerine Beyaz" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Öntanımlı (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux konsolu" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris konsolu" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Ara…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Buraya aramak için bir sekme adı girin" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "“%1” içinde Zil (Oturum “%2”)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "İkili dosya bulunamadı: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Uyarı: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Başlatılacak etkileşimli kabuk bulunamadı." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2079,344 +2162,346 @@ msgstr "" "“%1” bulunamadı, onun yerine “%2” başlatılıyor. Lütfen profil ayarlarınızı " "denetleyin." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "“%1” uygulaması “%2” argümanıyla başlatılamadı." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "“%1” içinde Sessizlik (Oturum “%2”)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Oturumu göster" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"D-Bus yöntemleri olan sendText/runCommand kullanıldı. Bu yöntemlerin genele " -"açık olması konusunda güvenlik endişeleri bulunmaktadır. Dilerseniz Konsole " -"tekrar derlenerek bu yöntemler yalnızca içsel olarak kullanılmak üzere " -"değiştirilebilir.

              Bu uyarı yalnızca bu Konsole örneği için bir kez " -"gösterilecek.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Bitti" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "“%1” uygulaması çöktü." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "“%1” uygulamasından %2 durumu ile çıkıldı." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem İlerlemesi" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "“%1” içinde Etkinlik (Oturum “%2”)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "Güvenliğe duyarlı DBus API’si, ayarlarda devre dışı bırakılmıştır." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "“%1” süreci, “%2” oturumundaki çalışmayı bitirdi" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsol belirtilen yer iminin nasıl açılacağını bilmiyor: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "“%1” İfadesini Şununla Ara" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Web Kısayollarını Yapılandır…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Oturumu Kapat" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Dosya Yöneticisini Aç" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Kopyala" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" -msgstr "Görünümü Sol–Sağ Şeklinde Böl" +msgstr "Görünümü Sol/Sağ Şeklinde Böl" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" -msgstr "Görünümü Üst–Alt Şeklinde Böl" +msgstr "Görünümü Üst/Alt Şeklinde Böl" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "İstemler Dışındakileri Kopyala" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Kullanıcı Girdisini Kopyala" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Komut Çıktısını Kopyala" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Seçimi Yapıştır" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Web Araması" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Tümünü Seç" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Seçim &Kipi" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Satır &Seç" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Çıktıyı &Farklı Kaydet…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Çıktıyı Kendiliğinden Farklı Kaydet…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Kendiliğinden Kaydı Durdur" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Ekranı Yazdır…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Geçmişi Ayarla…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Geçmişi Temizle" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Geçmişi Temizle ve Sıfırla" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Sonraki Profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Önceki Profil" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Profil Değiştir" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "&Kodlamayı Ayarla" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Fare Takibine İzin Ver" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Saltokunur" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Sekmeyi Yapılandır/Yeniden Adlandır…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "Geçerli Penceredeki &Tüm Sekmeler" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Sekmeler &Seç…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Yok" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Girdiyi Şuraya Kopyala" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem ile Karşıya Yükle…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Tek Kerelik Monitörler" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "&İstemi İzle" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "&Etkinliği İzle" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "&Sessizliği İzle" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Süreç Sonlanmasını İzle" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" -msgstr "Yazıtipi Boyutunu Büyüt" +msgstr "Yazıtipi Puntosunu Büyüt" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" -msgstr "Yazıtipi Boyutunu Küçült" +msgstr "Yazıtipi Puntosunu Küçült" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" -msgstr "Yazıtipi Boyutunu Sıfırla" +msgstr "Yazıtipi Puntosunu Sıfırla" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Sinyal Gönder" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Görevi Askıya Al" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Görevi Sürdür" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Engelle" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Görevi Kes" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "Görevi &Sonlandır" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "G&örevi Öldür" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Kullanıcı Sinyali &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Kullanıcı Sinyali &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Yeni Profil Oluştur…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Geçerli Profili Düzenle…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "Bu oturumda bir uygulama açık. Kapatmak istediğinizden emin misiniz?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2424,55 +2509,55 @@ msgid "" msgstr "" "“%1” uygulaması bu oturumda çalışıyor. Kapatmak istediğinizden emin misiniz?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Kapatmayı Doğrula" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Programı Kapat" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "Bu oturumda bir uygulama kapatılamadı. Zorla kapatmak ister misiniz?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "“%1” uygulaması bu oturumda sonlandırılamadı. Zorla kapatmak istediğinizden " "emin misiniz?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Programı Öldür" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "Kabuk istemi, “%1” oturumunda görüntülenir" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Geçerli Klasörü Şununla Aç" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "ZModem İndirmesini Şuraya Kaydet…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2482,14 +2567,14 @@ msgstr "" "

              Bir ZModem dosya aktarım isteği algılandı; ancak uygun ZModem yazılımı " "bulunamadı.

              “rzsz” veya “lrzsz” paketini kurmak isteyebilirsiniz.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" "

              Geçerli oturumda, halihazırda süren bir ZModem dosya aktarımı var.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2498,7 +2583,7 @@ msgstr "" "

              Uygun ZModem yazılımı bulunamadı.

              “rzsz” veya “lrzsz” paketini " "kurmak isteyebilirsiniz.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem Yüklemesi için Dosyalar Seç" @@ -2521,144 +2606,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Yapılandır" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Ara:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Menü ivmelendiricilerini etkinleştir" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Etkin ise profil ayarları yok sayılır" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Pencere boyutunu anımsa" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Başlık çubuğunda pencere başlığını göster" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Fare işaretçisi üzerine getirildiğinde uçbirimlere odaklan" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Düzenli ifade kullanarak eşleştir" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Olanaklıysa Konsole çalıştırılırken var olan süreci yeniden kullan" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Tüm Konsole pencerelerini tek süreçte çalıştır" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Tüm eşleşmeleri vurgula" +msgid "If enabled, profile settings will be ignored" +msgstr "Etkin ise profil ayarları yok sayılır" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Aramanın BÜYÜK/küçük harf duyarlı olup olmayacağını ayarlar" +msgid "Remember window size" +msgstr "Pencere boyutunu anımsa" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "BÜYÜK/küçük harf duyarlı" +msgid "Force new tabs" +msgstr "Yeni sekmeleri zorla" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Pencere başlık çubuğunu ve çerçeveyi kaldır" +msgid "Listen for ZModem terminal codes" +msgstr "ZModem uçbirim kodları için dinle" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Süreç ve pencere:" +msgid "Show progress in taskbar" +msgstr "Görev çubuğunda ilerlemeyi göster" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Bildirimler:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Tüm pencereler tekrar gösterilecek" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Tüm “Bir Daha Sorma” İletilerini Etkinleştir" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Aramanın aşağıdan başlayıp başlamayacağını ayarlar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Geriye doğru ara" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Aramanın BÜYÜK/küçük harf duyarlı olup olmayacağını ayarlar" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "BÜYÜK/küçük harf duyarlı" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Süreç ve pencere:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Tüm eşleşmeleri vurgula" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Ara:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Aramanın sardırmak yerine durup durmaması gerektiğini ayarlar" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Sardırma yok" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Menü ivmelendiricilerini etkinleştir" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Fare işaretçisi üzerine getirildiğinde uçbirimlere odaklan" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Tüm iletişim kutuları yeniden gösterilecek" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "“Bir Daha Sorma” İletilerini Etkinleştir" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Başlık çubuğunda pencere başlığını göster" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "DBus API’sinin güvenliğe duyarlı kısımlarını etkinleştir" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Pencere başlık çubuğunu ve çerçevesini kaldır" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Düzenli ifade kullanarak eşleştir" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2684,65 +2795,105 @@ msgstr "Sonraki başlangıçta geçerli pencere boyutunu kullan" msgid "The window size will be saved upon exiting Konsole" msgstr "Konsole’dan çıkarken pencere boyutu kaydedilecek" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" +"Konsole’yi başlatırken olanaklıysa yeni pencereler yerine yeni sekmeler " +"oluştur" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Görev çubuğunda ilerlemeyi göster" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "Betikler ilerlemelerini bildirirlerse bu, görev çubuğunda yansıtılır" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "DBus API’sine benzer runCommand etkinleştirilecektir" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "ZModem uçbirim kodları için dinle" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "Seri bağlantılar üzerinden kendiliğinden dosya alımı/gönderimi" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Küçük Görsel Genişliği" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Küçük resmin genişliğini ayarlar" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Bir küçük görsel görüntülemek için Üst Karakter düğmesini kullan" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Bir küçük görsel görüntülemek için Seçenek düğmesini kullan" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Bir küçük görsel görüntülemek için Kontrol düğmesini kullan" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Arama BÜYÜK/küçük harf duyarlı" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Tüm eşleşenleri vurgula" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Eşleşen metnin vurgulanıp vurgulanmayacağını ayarlar" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Sardırma yerine arama durdurulur" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" @@ -2750,7 +2901,7 @@ msgstr "" "denetle" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2758,91 +2909,97 @@ msgstr "Kısma işleminin başlayacağı bellek tüketimi düzeyini belirler" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Tüm sekme çubuğunun görünürlüğünü denetle" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Paneller arasındaki tutamacın boyutunu denetle" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Sekme çubuğunun konumunu denetle" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Sekme çubuğunun görsel biçemini denetle" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Sekme çubuğu için kullanıcı tanımlı bir .css dosyası kullan" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Sekme çubuk biçeminde kullanılmak üzere .css dosyası" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Açık sekmeleri kapatmak için orta tıklamaya izin ver" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Sekme çubuğunda “Yeni Sekme” düğmesinin görünürlüğünü denetle" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Sekme çubuğunda “Sekmeler Ara” düğmesinin görünürlüğünü denetle" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "“Sekmeyi Kapat” düğmesinin nerede görüntüleneceğini denetle" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Yeni sekmenin nereye konulacağını denetle" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Sekme genişliklerini genişlet" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Geçmiş dosyaları için sistem genelindeki dosya konumunu kullan" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Geçmiş dosyaları için kullanıcı ev tanımlı klasör konumunu kullan" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Geçmiş dosyaları için belirtilen klasör konumunu kullan" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Geçmiş dosyaları için bu klasörü kullan" @@ -2854,35 +3011,30 @@ msgid "Enable memory monitoring:" msgstr "Bellek izlemeyi etkinleştir:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Değişiklikler yeniden başlatıldığında etkili olacaktır. Etkinleştirilirse " -"Konsole’nin\n" -"belirtilen değeri aşan sürekli bellek tüketimi, systemd-oomd’un bellek yoğun " -"işlemleri\n" -"içeren sekmeleri ortadan kaldırmasına neden olur. Not: Etkinleştirme, yüksek " -"bellek\n" -"tüketimi sırasında daha büyük yavaşlamalara neden olabilir ve aşırı düşük " -"değerlerin\n" -"belirtilmesi yine de Konsole’nin sonlandırılmasına neden olabilir." +"Konsole’nin belirtilen değeri aşan sürekli bellek tüketimi, systemd-oomd’un " +"bellek yoğun işlemleri içeren sekmeleri ortadan kaldırmasına neden olur. " +"Not: Etkinleştirme, yüksek bellek tüketimi sırasında daha büyük " +"yavaşlamalara neden olabilir ve aşırı düşük değerlerin belirtilmesi yine de " +"Konsole’nin sonlandırılmasına neden olabilir." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Bellek sınırı:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -3042,125 +3194,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Yok" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Sekmeler Ara düğmesini göster:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Her zaman" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Asla" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Diğer:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "“Yeni Sekme” düğmesini göster" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Bireysel sekme genişliklerini tam pencereye genişlet" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Kullanıcı tanımlı biçem sayfası kullan:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(yok)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Davranış" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Yeni sekmeleri şuraya koy:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "&Sona" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "&Geçerli sekmeden sonra" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Orta tık ile sekmeyi kapat" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Bölmeler" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Üstbilgiyi göster:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Gerektiğinde" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Asla" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Sürükleme tutacı boyutu:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Küçük" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Orta" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Büyük" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3212,13 +3382,12 @@ msgstr " pks" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Bu özelliği kullanmak için profil ayarlarınızda Fare → Diğer → Dosyaların altını çiz özelliğini etkinleştirin

              " +"style=\" font-weight:600;\">“Fare → Diğer → Dosyaların altını çiz” " +"özelliğini etkinleştirin

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3256,64 +3425,64 @@ msgstr "Kontrol" msgid "Enable thumbnails generation" msgstr "Küçük görsel oluşturmayı etkinleştir" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Boyut: %1 × %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "%1 karakter yapıştırmak istediğinizden emin misiniz?" msgstr[1] "%1 karakter yapıştırmak istediğinizden emin misiniz?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Yapıştırmayı Doğrula" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Metnin sonu/Kesinti: Geçerli süreçten çıkabilir" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "İletimin sonu: Geçerli süreçten çıkılabilir" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Zil: sesli bir uyarı vermeye çalışacak" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" -msgstr "Geri silme" +msgstr "Geri sil" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "Aygıt Denetimi Üç/XOFF: Çıktıyı askıya alır" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Yerine koy/Askıya al: Geçerli süreci askıya alabilir" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Vazgeç: Uçbirim durumunu değiştirmek için kullanılır" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Dosya ayırıcısı/Çık: Geçerli süreci iptal edebilir" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3322,31 +3491,31 @@ msgstr "" "Yapıştırmaya çalıştığınız metin gizli denetim karakterleri içeriyor, bunları " "süzmek ister misiniz?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Yapıştırmayı Doğrula" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Denetim karakterleri olmadan &yapıştır" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "Her şeyi &yapıştır" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "İ&ptal et" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
              askıya alındı. Sürdürmek için Kontrol+Q’ya basın." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Bu uçbirim saltokunurdur." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "&Dizini Bu Adresle Değiştir" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "Konumu &Yapıştır" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Görünümü Böl" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Görünümü Sol/Sağ Şeklinde Böl" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Görünümü Üst/Alt Şeklinde Böl" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Görünümü Kendiliğinden Böl" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Sonraki Sekmeden Görünümü Sol/Sağ Şeklinde Böl" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Sonraki Sekmeden Görünümü Üst/Alt Şeklinde Böl" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Sonraki Sekmeden Görünümü Kendiliğinden Böl" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "2 × 2 Uçbirimli Yeni Bir Sekme Yükle" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "2 × 1 Uçbirimli Yeni Bir Sekme Yükle" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "1 × 2 Uçbirimli Yeni Bir Sekme Yükle" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Görünümü Genişlet" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Görünümü Küçült" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Geçerli &Görünümü Ayır" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Geçerli &Sekmeyi Ayır" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Sonraki Sekme" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Önceki Sekme" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Yukarıdaki Uçbirime Odaklan" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Aşağıdaki Uçbirime Odaklan" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Sol Uçbirime Odaklan" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Sağ Uçbirime Odaklan" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Sonraki Uçbirime Odaklan" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Önceki Uçbirime Odaklan" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Son Sekmeye Geç" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Son Kullanılan Sekmeler" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "İki Sekme Arasında Geçiş Yap" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Son Kullanılan Sekmeler (Ters)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Geçerli Görünümü Büyüt/Küçült" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Geçerli Görünümü Büyüt/Küçült" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Geçerli Görünümü Yakınlaştır/Büyüt" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Geçerli Görünümü Yakınlaştır/Büyüt" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Sekmeyi Sağa Taşı" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Sekmeyi Sola Taşı" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Anlamsal Tümleşimi Ayarla (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Anlamsal İpuçları Görünümünü Aç/Kapat" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Satır Numaraları Görünümünü Aç/Kapat" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Tüm Görünümlere Eşit Boyut" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "%1. Sekmeye Seç" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Anlamsal ipuçları " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Satır numaraları" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Sekme Yerleşimini Kaydet…" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole Görünüm Yerleşimi (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3614,7 +3795,7 @@ msgstr "" "Yerleşim kaydedilirken bir sorun oluştu.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3624,13 +3805,13 @@ msgstr "" "Yerleşim yüklenirken bir sorun oluştu.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Sekme Yerleşimi Yükle" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3728,28 +3909,40 @@ msgstr "Ö&ntanımlı karakter kodlaması:" msgid "Shortcut for peeking the primary screen:" msgstr "Birincil ekrana göz atmak için kısayol:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Kayıtlar arası aralığı ayarla:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " ms" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Satır numaraları:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Asla" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "&URL ipuçları gösterildiğinde" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3785,7 +3978,7 @@ msgstr "Seçilen renk şemasını düzenle" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3839,14 +4032,20 @@ msgstr "Yoğun renkleri koyu yazıtipiyle çiz" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "Yerleşik kod yerine satır karakterleri için seçili yazıtipini kullan" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "Yazıtipindeki satır karakterlerini kullan" +msgstr "Yazıtipindeki çizgi karakterlerini kullan" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3966,29 +4165,43 @@ msgid "Make the cursor blink regularly" msgstr "İmleci düzenli olarak yanıp–sönen olarak ayarla" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Etkin" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Canlandırma:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "İmlecin pürüzsüz biçimde hareketli olmasını sağla" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Diğer" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Pencere:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3998,144 +4211,144 @@ msgstr "" "sütun ve satır olarak göster" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Yeniden boyutlandırıldıktan sonra uçbirim boyutu ipucunu göster" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Her zaman seçili metnin renklerini ters çevir" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Karartma gücü:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Renk:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Kenarlığı çizmek için kullanılacak rengi seç" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Etkin olmayan uçbirimler:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Etkin uçbirimler:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Uçbirim İçeriği" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Satır aralıklandırması:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "İki satır arasındaki piksel sayısı" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " pks" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Boşluklar:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Merkeze hizala:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Renkleri karartarak pencerenin etkin olup olmadığını belirt" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Karart" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Bir kenarlık çizerek pencerenin etkin olup olmadığını belirt" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Kenarlık" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Dikey çizgiyi sütunda görüntüle:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Karmaşık Metin Yerleşimi

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Karmaşık Metin Yerleşimi" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Sözcük kipi metin sunumunu etkinleştir" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Sözcük kipi" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4145,59 +4358,59 @@ msgstr "" "değişiklikleri, sunum sırasında sözcüğü bozar)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Tüm sözcük için aynı öznitelikleri kullan" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "ASCII karakterlerden oluşan sözcükleri birlikte sun" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII karakterler " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Brahmi yazısı sözcüklerini birlikte sun" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Brahmi yazısı karakterleri" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Emoji yazıtipi:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " "Hebrew only)" msgstr "" -"Uçbirimlerde çift yönlü görünümü etkinleştir (Arapça, Farsça ve İbranice " +"Uçbirimlerde çift yönlü görünümü etkinleştir (Arapça, Farsça ve İbrânîce " "için geçerlidir)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Çift yönlü metin sunumu" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" @@ -4205,83 +4418,83 @@ msgstr "" "sağadır" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "Soldan sağa satır yönü zorla" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Tablo çizim karakterlerine güçlü soldan sağa düzen olarak davran." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Tablo karakterlerinde çift yönlü kipi geçersiz kıl" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Sorunlu karakterlerin wcwidth’ini yok say" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "wcwidth’i geçersiz kıl" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profili Düzenle" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Genel" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Sekmeler" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Görünüş" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Sarma" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Klavye" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" -msgstr "Düğme bağıntıları" +msgstr "Düğme Bağıntıları" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Fare" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Gelişmiş" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4293,49 +4506,54 @@ msgstr "" "dosyanın izinlerini değiştirin ya da ayarları yeni bir profile kaydetmek " "için yeni bir ad girin." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" "Profil Adı boştu; ayarları kaydedebilmek için lütfen bir ad belirleyin." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "“%1” adında bir profil halihazırda var." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Profil adı, izin verilen uzunluğu aştı (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Profil adlarında vurgulanan karakterler geçersiz: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Profil düzenleniyor: %2" msgstr[1] "%1 profil düzenleniyor: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Yeni Profil Oluştur" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "“%1” Profilini Düzenle" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Yok" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4345,52 +4563,52 @@ msgid_plural " columns" msgstr[0] " sütun" msgstr[1] " sütun" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " "separate it from the number value." msgid " row" msgid_plural " rows" -msgstr[0] " sıra" -msgstr[1] " sıra" +msgstr[0] " satır" +msgstr[1] " satır" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Sistem Zili" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Sistem Bildirimleri" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Görsel Zil" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Zil Olaylarını Yok Say" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "%1 içindeki yeni uçbirim oturumları için öntanımlı profil" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Çevreyi Düzenle" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Her satıra bir çevre değişkeni" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4398,23 +4616,23 @@ msgid_plural " seconds" msgstr[0] " saniye" msgstr[1] " saniye" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Başlangıç Dizinini Seç" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Yeni Al…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "%1 şeması yüklenemedi." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4423,7 +4641,7 @@ msgstr "" "Bu renk şeması, masaüstünüzde desteklenmeyen gibi görünen bir saydam arka " "plan kullanıyor" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4432,12 +4650,12 @@ msgstr "" "Konsole masaüstü efektleri etkinleştirilmeden önce başlatıldı. Saydam arka " "planı görebilmek için Konsole uygulamasını yeniden başlatmalısınız." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Dosya türü için öntanımlı" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4466,7 +4684,7 @@ msgstr "" "ve dosya öntanımlı metin düzenleyicisi tarafından\n" "açılır." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Metin Düzenleyici Özel Komutu" @@ -4557,26 +4775,57 @@ msgstr "Başlangıç dizinini seç" msgid "Start in same directory as current session" msgstr "Geçerli oturum ile aynı dizinde başlat" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"Yeni bir sekme veya bölünmüş görünüm açıldığında, geçerli oturumla aynı " +"kapsayıcıyı (Toolbox, Distrobox) kendiliğinden kullan" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Geçerli oturumla aynı kapsayıcıya gir" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Her zaman şu kapsayıcıda başlat:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Yeni oturumları her zaman seçili kapsayıcının içindeki bu profili kullanarak " +"başlat" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Çevre:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Çevresel değişkenler ve ilgili değerler listesini düzenle" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Baş&langıç uçbirim boyutu:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4589,31 +4838,31 @@ msgstr "" "boyutunu anımsa devre dışı bırakılmış olmalıdır.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Uç&birim zili kipi:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Anlamsal Tümleşim" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Yukarı/Aşağı okları öykünmesi" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Girdi satırında fare tıklaması imleci taşır" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Anlamsal ipuçları:" @@ -4623,9 +4872,9 @@ msgstr "Anlamsal ipuçları:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4636,9 +4885,9 @@ msgstr "Asla" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4649,34 +4898,34 @@ msgstr "URL ipuçları gösterildiğinde" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Her zaman" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Kırmızı hata çubukları:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Kırmızı hata arka planı:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Rengi değişken çubuklar:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Rengi değişken arka plan:" @@ -5000,8 +5249,8 @@ msgid "" "When positioning the mouse over a hexadecimal color it will be displayed in " "a frame next to the mouse pointer" msgstr "" -"Fareyi onaltılık bir rengin üzerine getirdiğinizde, renk, fare işaretçisinin " -"yanında bir çerçeve içinde görüntülenecektir" +"Fareyi onaltılık bir rengin üzerine getirdiğinizde renk, fare işaretçisinin " +"yanında bir çerçeve içinde görüntülenir" #. i18n: ectx: property (text), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:438 @@ -5032,115 +5281,127 @@ msgid "Scrollback:" msgstr "Geçmiş:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Sayfayı yukarı/aşağı sar:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Görünüme gelen çizgileri vurgulayın" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "%" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Gizli" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Her bir imleyicinin boyutu (sarma çubuğu uzunluğu yüzdesi):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Vurgulama:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Sayfayı pencerenin yarı yüksekliği kadar sar" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Yarı&m ekran yüksekliği" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Sarma çubuğu imleyicileri rengi:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Sarma çubuğu arama vurgusu çizgisi rengi:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Satırları yenile:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Sayfayı pencerenin tam yüksekliği kadar sar" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Tam e&kran yüksekliği" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Sarma çubuğu konumu:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Sarma çubuğunu uçbirim penceresinin sağında göster" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "Sağ tara&f" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Sarma çubuğunu uçbirim penceresinin solunda göster" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "S&ol taraf" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Gizli" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Vurgulama:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Görünüme gelen çizgileri vurgulayın" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Satırları yenile:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Uçbirim yeniden boyutlandırıldığında satırları yenile" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Sarma çubuğu imleyicileri rengi:" +msgid "Scrollbar position:" +msgstr "Sarma çubuğu konumu:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Her bir imleyicinin boyutu (sarma çubuğu uzunluğu yüzdesi):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr "%" +msgid "Search highlighting line opacity:" +msgstr "Arama vurgusu çizgisi matlığı:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5246,37 +5507,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Yok" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Bul…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Aranacak metni buraya girin" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Sonraki" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Geçerli arama ifadesi ile eşleşen sonraki sonucu bul" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Önceki" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5284,77 +5545,77 @@ msgstr "Geçerli arama ifadesi ile eşleşen önceki sonucu bul" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Seçenekler menüsünü göster" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Arama çubuğunu kapat" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "BÜYÜK/küçük harf duyarlı" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Aramanın BÜYÜK/küçük harf duyarlı olup olmayacağını ayarlar" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Seçenekler menüsünü göster" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Arama çubuğunu kapat" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Düzenli ifadeleri eşleştir" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Tüm eşleşenleri vurgula" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Eşleşen metnin vurgulanıp vurgulanmayacağını ayarlar" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Geriye doğru ara" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Aramanın sondan başlayıp başlamayacağını ayarlar" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Sardırma yok" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Aramanın sardırmak yerine durup durmaması gerektiğini ayarlar" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Geçerli arama ifadesini alttan başlayarak ara" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5365,7 +5626,7 @@ msgstr "Geçerli arama ifadesini yukarıdan başlayarak ara" msgid "Print Shell" msgstr "Kabuğu Yazdır" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5405,6 +5666,12 @@ msgstr "Normal sekme başlığı biçimi" msgid "Tab Co&lor:" msgstr "Sekme ren&gi:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "&Etkinlik sekmesi rengi:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5498,36 +5765,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Uçbirimi geri yükle" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Yeni bir sekme aç" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Sekmeler ara" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Bu sekmeyi kapat" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Sekmeyi &Ayır" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Sekmeyi Yapılandır/&Yeniden Adlandır…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Sekmeyi Kapat" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "D-Bus yöntemleri olan sendText/runCommand kullanıldı. Bu yöntemlerin " +#~ "genele açık olması konusunda güvenlik endişeleri bulunmaktadır. " +#~ "Dilerseniz Konsole yeniden derlenerek bu yöntemler yalnızca içsel olarak " +#~ "kullanılmak üzere değiştirilebilir.

              Bu uyarı yalnızca bu Konsole örneği " +#~ "için bir kez gösterilecek.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "BÜYÜK/küçük harf duyarlı" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Yok" diff --git a/local/recipes/kde/konsole/source/po/ug/konsole.po b/local/recipes/kde/konsole/source/po/ug/konsole.po index 0e7ee94b0c..d0b734807c 100644 --- a/local/recipes/kde/konsole/source/po/ug/konsole.po +++ b/local/recipes/kde/konsole/source/po/ug/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2013-09-08 07:04+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -49,7 +49,7 @@ msgstr "كۆرۈنۈش" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "كۆرۈنۈشنى پارچىلا" @@ -85,7 +85,7 @@ msgid "S&crollback" msgstr "" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "" @@ -170,34 +170,46 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "سۈزۈك تەگلىك ئىقتىدارىنى سىستېما قوللىسا، ئۇنى ئىناۋەتسىز قىل." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "بار بولغان profile لارنىڭ تىزىمى" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -205,13 +217,13 @@ msgstr "" "بارلىق profile خاسلىقنىڭ ئاتىنى ۋە ئۇلارنىڭ تىپىنى كۆرسىتىدۇ(-p نىڭ بىلەن " "بىرگە ئىشلىتىش ئۈچۈن)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "profile خاسلىقىنىڭ قىممىتىنى ئۆزگەرتىدۇ." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -219,7 +231,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -227,13 +239,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "بۇيرۇققا بېرىدىغان ئارگۇمېنتلار" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -253,107 +265,107 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "ئالدى كۆرۈنۈش" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "تەگلىك" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "رەڭ 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "رەڭ 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "رەڭ 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "رەڭ 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "رەڭ 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "رەڭ 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "رەڭ 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "رەڭ 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ئالدى كۆرۈنۈش(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "تەگلىك(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "رەڭ 1(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "رەڭ 2(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "رەڭ 3(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "رەڭ 4(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "رەڭ 5(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "رەڭ 6(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "رەڭ 8(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "رەڭ 8(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Foreground (Intense)" @@ -361,7 +373,7 @@ msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ئالدى كۆرۈنۈش(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Background (Intense)" @@ -369,7 +381,7 @@ msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "تەگلىك(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 1 (Intense)" @@ -377,7 +389,7 @@ msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "رەڭ 1(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 2 (Intense)" @@ -385,7 +397,7 @@ msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "رەڭ 2(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 3 (Intense)" @@ -393,7 +405,7 @@ msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "رەڭ 3(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 4 (Intense)" @@ -401,7 +413,7 @@ msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "رەڭ 4(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 5 (Intense)" @@ -409,7 +421,7 @@ msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "رەڭ 5(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 6 (Intense)" @@ -417,7 +429,7 @@ msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "رەڭ 6(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 7 (Intense)" @@ -425,7 +437,7 @@ msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "رەڭ 8(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgctxt "@item:intable palette" #| msgid "Color 8 (Intense)" @@ -433,7 +445,7 @@ msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "رەڭ 8(كۈچلۈك)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -697,6 +709,39 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "&Set as Default" +msgid " [default]" +msgstr "كۆڭۈلدىكى قىلىپ بەلگىلە(&S)" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -741,7 +786,7 @@ msgstr "" msgid "Copy Location" msgstr "كىرىشنى كۆچۈر" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -773,14 +818,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "خەت نۇسخا تاللاش…" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "سىلىق خەت نۇسخىلىرى" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -817,17 +862,17 @@ msgstr "كۇنۇپكا بىرىكمىسى" msgid "Output" msgstr "چىقار" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "يېڭى كۇنۇپكا باغلىنىش تىزىمى" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "كۇنۇپكا باغلىنىش تىزىمىنى تەھرىرلە" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -835,7 +880,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -869,68 +914,68 @@ msgstr "كىرگۈز:" msgid "Output:" msgstr "چىقار:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "تېرمىنال تەقلىدلىگۈ" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "ئەسلى ئاپتور" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -938,56 +983,56 @@ msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "كەمتۈكلەرنى تۈزىتىش ۋە ئادەتتىكى ياخشىلاش" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "كەمتۈكلەرنى تۈزىتىش ۋە ئادەتتىكى ياخشىلاش" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Bug fixes and general improvements" @@ -995,7 +1040,7 @@ msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "كەمتۈكلەرنى تۈزىتىش ۋە ئادەتتىكى ياخشىلاش" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Thomas Dreibholz" @@ -1003,98 +1048,98 @@ msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "ئادەتتىكى ياخشىلاش" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "كەمتۈكلەرنى تۈزىتىش" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris قوللاش ۋە تارىخ" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "كەمتۈك تۈزىتىش ۋە باشلىنىش تېزلىكىنى ياخشىلاش" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "ياخشىلىنىشلارنى خاتىرىلەش" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,13 +1149,13 @@ msgstr "" "سىڭدۈرمە Konsole\n" "قورال بالداق ۋە ئەڭگىمە ئاتلىرى" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1120,25 +1165,25 @@ msgstr "" "سىڭدۈرمە Konsole\n" "ئادەتتىكى ياخشىلاش" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "كۆرۈنۈش ئۈنۈملىرى" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1148,121 +1193,121 @@ msgstr "" "kvt قۇرۇلۇشىدىن كەلگەن كودلار\n" "ئادەتتىكى ياخشىلاش" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "لايىھە ۋە تېكىست تاللاشنى ياخشىلاش" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI غا كۆچۈرۈش" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD غا كۆچۈرۈش" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "باشقىلارغىمۇ تەشەككۈر.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "يېڭى بەتكۈچ(&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "يېڭى كۆزنەك(&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "كۆزنەك ياپ" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "خەتكۈچلەر(&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "يېڭى رەڭ لايىھىسى" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "سەپلەكلەرنى باشقۇرۇش…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "تىزىملىكنى ئاكتىپلا" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -1270,13 +1315,13 @@ msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "بەتكۈچنى سولغا يۆتكە" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " @@ -1288,25 +1333,25 @@ msgid_plural "" msgstr[0] "" "نۆۋەتتىكى ئەڭگىمە ئىچىدە پروگرامما«%1» ئىجرا بولۇۋاتىدۇ. ئۇنى ياپقۇڭىز بارمۇ؟" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "يېپىشنى جەزملە" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "The program '%1' is currently running in this session. Are you sure you " @@ -1316,7 +1361,7 @@ msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" "نۆۋەتتىكى ئەڭگىمە ئىچىدە پروگرامما«%1» ئىجرا بولۇۋاتىدۇ. ئۇنى ياپقۇڭىز بارمۇ؟" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" @@ -1324,37 +1369,37 @@ msgctxt "@title Preferences page name" msgid "Profiles" msgstr "يېڭى سەپلىمە ھۆججەت" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "ئادەتتىكى" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1448,7 +1493,7 @@ msgstr "ھۆججەت باشقۇرغۇچنى ئاچ" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1460,29 +1505,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "بۇيرۇق:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "بۇيرۇق:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1526,7 +1571,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1585,11 +1630,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1652,94 +1697,94 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgctxt "@info:shell" #| msgid "Do not close the initial session automatically when it ends." msgid "You can't delete an automatically added entry." msgstr "دەسلەپكى ئەڭگىمە ئاخىرلاشقاندا ئۇنى ياپمايدۇ." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -1941,25 +1986,25 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "كۆڭۈلدىكى Profile" @@ -2024,17 +2069,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "%1 نىڭ نەتىجىسىنى ساقلا" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 بولسا خاتا تور ئاتىدۇر(URL)، ئۇنىڭ نەتىجىسى ساقلىغىلى بولمايدۇ." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2070,434 +2136,461 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "قارىنىڭ ئۈستىدە يېشىل" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux رەڭلىرى" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "قارىنىڭ ئۈستىدە ئاق" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "كۆڭۈلدىكى(XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "لىنۇكىس تىزگىن سۇپىسى" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris تىزگىن سۇپىسى" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "ئىزدەيدىغان تېكىستنى بۇ يەرگە كىرگۈزۈڭ" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "ئەڭگىمە «%1» نىڭدا قوڭغۇراق" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "ئىككىلىك(binary) نى تاپالمىدى: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "ئاگاھلاندۇرۇش: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "«%1» تېپىلمىدى، شۇڭا «%2» نى باشلاڭ. profile تەڭشىكىڭىزنى تەكشۈرۈڭ." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "پروگرامما «%1» نى «%2» ئارگۇمېنت بىلەن باشلىغىلى بولمىدى." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "ئەڭگىمە «%1» نىڭدا جىمجىتلىق" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "تاماملاندى" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "پروگرامما «%1» غۇلىدى." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "پروگرامما «%1» ئاخىرلاشتى. ھالىتى %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem ئىجراسى" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "ئەڭگىمە «%1» نىڭدا پائالىيەت" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "خەتكۈشنى قانداق ئېچىشنى Konsole بىلمەيدۇ: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "'%1' نى ئىزدەش ئۇسۇلى" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "تور تېزلەتمىلىرىنى سەپلەش…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "ھۆججەت باشقۇرغۇچنى ئاچ" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "كۆرۈنۈشنى پارچىلاش سول/ئوڭ" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "كۆرۈنۈشنى پارچىلاش ئۇستى/ئاستى" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "كىرىشنى كۆچۈر" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "كىرىشنى كۆچۈر" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "تاللانغاننى چاپلا" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "ھەممىنى تاللا(&S)" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Mode" msgstr "تاللا" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgctxt "@action:button Pick an encoding" #| msgid "Select" msgid "Select &Line" msgstr "تاللا" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "نەتىجىنى باشقا ئاتتا ساقلا" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output &As..." +msgid "Auto Save Output As..." +msgstr "نەتىجىنى باشقا ئاتتا ساقلا" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Scrollback نى تازىلاش" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Scrollback نى تازىلايدۇ ۋە ئەسلىگە قايتۇرىدۇ" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Profile تەھرىر" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgctxt "@action:button Go to the previous phrase" #| msgid "Previous" msgid "Previous Profile" msgstr "ئالدىنقى" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "كود تەڭشەك(&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "بەتكۈچ ئاتىنى ئۆزگەرت(&R)" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "نۆۋەتتىكى كۆزنەكتىكى بارلىق بەتكۈچ(&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "بەتكۈچلەرنى تاللا(&S)…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "يوق(&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "كىرىشنى كۆچۈر" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ZModem يۈكلەش(&Z)…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "پائالىيەتنى كۆزەت(&A)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "پائالىيەتنى كۆزەت(&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "جىمجىتلىقنى كۆزەت(&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "پائالىيەتنى كۆزەت(&A)" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "خەت نۇسخا چوڭايت" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "خەت نۇسخا كىچىكلەت" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "سىگنال ئەۋەت" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile..." msgstr "يېڭى سەپلىمە ھۆججەت" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " @@ -2505,7 +2598,7 @@ msgid "" msgstr "" "نۆۋەتتىكى ئەڭگىمە ئىچىدە بىر پروگرامما ئىجرا بولۇۋاتىدۇ. ئۇنى ياپقۇڭىز بارمۇ؟" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " @@ -2513,55 +2606,59 @@ msgid "" msgstr "" "نۆۋەتتىكى ئەڭگىمە ئىچىدە پروگرامما«%1» ئىجرا بولۇۋاتىدۇ. ئۇنى ياپقۇڭىز بارمۇ؟" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "يېپىشنى جەزملە" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "بەتكۈچنى ياپ(&C)" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 -#, kde-format +#: session/SessionController.cpp:1196 +#, fuzzy, kde-format +#| msgid "" +#| "The program '%1' is currently running in this session. Are you sure you " +#| "want to close it?" msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" +"نۆۋەتتىكى ئەڭگىمە ئىچىدە پروگرامما«%1» ئىجرا بولۇۋاتىدۇ. ئۇنى ياپقۇڭىز بارمۇ؟" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "Save ZModem Download to..." msgid "Save ZModem Download to..." msgstr "ZModem دا چۈشۈرگەننى ساقلا…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2572,14 +2669,14 @@ msgstr "" "ZModem يۇمشاق دېتالى يوق ئىكەن.

              'rzsz' ياكى 'lrzsz' بوغچىسىنى " "قاچىلىسىڭىز بولارمىكىن.

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" "

              نۆۋەتتىكى ئەڭگىمەدە ZModem ھۆججەت يوللاش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ.

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2588,7 +2685,7 @@ msgstr "" "

              سىستېمىدا مۇۋاپىق ZModem يۇمشاق دېتالى يوق ئىكەن.

              'rzsz' ياكى " "'lrzsz' بوغچىسىنى قاچىلىسىڭىز بولارمىكىن.

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "ZModem دا يۈكلەيدىغان ھۆججەتلەرنى تاللا" @@ -2612,80 +2709,76 @@ msgctxt "@title:window" msgid "Configure" msgstr "يېپىشنى جەزملە" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "مۇنتىزىم ئىپادە بويىچە ماسلاشتۇر" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Highlight all matches" -msgid "Highlight all matches" -msgstr "ماس كەلگەن تۈرنى يورۇت" +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgid "Force new tabs" +msgstr "بەتكۈچنى ئاجرات(&D)" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2695,61 +2788,37 @@ msgstr "" "بېكىتىدۇ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Case sensitive" msgid "Case sensitive" msgstr "چوڭ كىچىك يېزىلىشنى پەرقلەندۈر" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, kde-format -msgid "Notifications:" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Highlight all matches" +msgid "Highlight all matches" +msgstr "ماس كەلگەن تۈرنى يورۇت" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 #, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" +msgctxt "@item:intext Search options" +msgid "Search:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2759,11 +2828,67 @@ msgstr "" "بېكىتىدۇ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "مۇنتىزىم ئىپادە بويىچە ماسلاشتۇر" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2788,41 +2913,79 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -2832,7 +2995,7 @@ msgstr "" "بېكىتىدۇ" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgctxt "@item:inmenu" #| msgid "Highlight all matches" @@ -2840,7 +3003,7 @@ msgid "Highlight all search matches" msgstr "ماس كەلگەن تۈرنى يورۇت" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether matching text should be highlighted" @@ -2848,19 +3011,19 @@ msgid "Sets whether matching text should be highlighted" msgstr "ماس كەلگەن تېكىستنى يورۇتۇپ كۆرسىتەمدۇ قانداق بەلگىلەيدۇ" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2868,92 +3031,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "نۇربەلگە ئۈچۈن ئىختىيارى، مۇقىم رەڭ ئىشلىتىدۇ" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2966,26 +3135,24 @@ msgid "Enable memory monitoring:" msgstr "قوش يۆنىلىش بويىچە تېكىست كۆرسىتىشنى ئىناۋەتلىك قىل" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3161,9 +3328,28 @@ msgctxt "Do not show a close button" msgid "None" msgstr "يوق(&N)" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "بەتكۈچنى ياپ(&C)" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "@item:intext Miscellaneous Options" @@ -3171,34 +3357,34 @@ msgid "Miscellaneous:" msgstr "باشقىلار" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "بەتكۈچنى ياپ(&C)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "نۇربەلگە ئۈچۈن ئىختىيارى، مۇقىم رەڭ ئىشلىتىدۇ" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, fuzzy, kde-format #| msgid "Behavior" msgctxt "@title:tab Tab bar settings" @@ -3206,19 +3392,19 @@ msgid "Behavior" msgstr "ھەرىكەت" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Close current tab" @@ -3226,20 +3412,20 @@ msgid "After current &tab" msgstr "نۆۋەتتىكى بەتكۈچنى ياپ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "كۆرۈنۈشنى پارچىلا" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgctxt "@title:column Display profile in file menu" #| msgid "Show in Menu" @@ -3247,27 +3433,27 @@ msgid "Show Header:" msgstr "تىزىملىكتە كۆرسىتىش" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgctxt "@item:inrange Minimum Size" #| msgid "Small" @@ -3276,14 +3462,14 @@ msgid "Small" msgstr "كىچىك" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgctxt "@item:inrange Maximum Size" #| msgid "Large" @@ -3292,7 +3478,7 @@ msgid "Large" msgstr "چوڭ" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3345,8 +3531,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3387,97 +3573,97 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "چوڭلۇقى: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "يېپىشنى جەزملە" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "نۇربەلگىنىڭ رەڭگىنى نۆۋەتتىكى ھەرپ رەڭگىگە ماسلاشتۇر" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "تاللانغاننى چاپلا" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been نەتىجە Ctrl+S ئارقىلىق توڭلىتىلدى. Ctrl+Q نى باسسىڭىز داۋام ئېتىدۇ." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "كۆرۈنۈشنى پارچىلا" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "كۆرۈنۈشنى پارچىلاش سول/ئوڭ" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "كۆرۈنۈشنى پارچىلاش ئۇستى/ئاستى" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3532,7 +3718,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "كۆرۈنۈشنى پارچىلاش ئۇستى/ئاستى" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3540,7 +3726,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "كۆرۈنۈشنى پارچىلاش سول/ئوڭ" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3548,7 +3734,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "كۆرۈنۈشنى پارچىلاش ئۇستى/ئاستى" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3556,37 +3742,37 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "كۆرۈنۈشنى پارچىلاش ئۇستى/ئاستى" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "كۆرۈنۈشنى يېيىش" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "كۆرۈنۈشنى قىسقارتىش" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3594,7 +3780,7 @@ msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "نۆۋەتتىكى بەتكۈچنى ئاجرات(&A)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "D&etach Current Tab" @@ -3602,91 +3788,107 @@ msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "نۆۋەتتىكى بەتكۈچنى ئاجرات(&A)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "كېيىنكى بەتكۈچ" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "ئالدىنقى بەتكۈچ" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgctxt "@info:tooltip" +#| msgid "Close tab" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "بەتكۈچ ياپ" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgctxt "@action Shortcut entry" +#| msgid "Previous Tab" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "ئالدىنقى بەتكۈچ" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Right" @@ -3694,7 +3896,7 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "بەتكۈچنى ئوڭغا يۆتكە" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3702,49 +3904,49 @@ msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "بەتكۈچنى سولغا يۆتكە" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "بەتكۈچ %1 غا ئالماشتۇر" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "چاشقىنەك تەسىرلىنىشى" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "مۇقىم قۇر سانى: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgctxt "@action Shortcut entry" #| msgid "Move Tab Left" @@ -3752,13 +3954,13 @@ msgctxt "@title:window" msgid "Save Tab Layout" msgstr "بەتكۈچنى سولغا يۆتكە" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3771,7 +3973,7 @@ msgstr "" "نەتىجىنى ساقلاۋاتقاندا مەسىلە كۆرۈلدى.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3784,13 +3986,13 @@ msgstr "" "نەتىجىنى ساقلاۋاتقاندا مەسىلە كۆرۈلدى.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3891,29 +4093,41 @@ msgstr "كۆڭۈلدىكى ھەرپ كودلىشى:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "مۇقىم قۇر سانى: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3950,7 +4164,7 @@ msgstr "تاللانغان رەڭ لايىھىسىنى تەھرىرلەيدۇ" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4007,12 +4221,18 @@ msgstr "توم خەت نۇسخىلىرىنى كۈچلۈك رەڭدە سىز" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4145,16 +4365,33 @@ msgid "Make the cursor blink regularly" msgstr "نۇربەلگە ئۈزلۈكسىز لىپىلدىسۇن" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "تىزىملىكنى ئاكتىپلا" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "نۇربەلگە ئۈزلۈكسىز لىپىلدىسۇن" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, fuzzy, kde-format #| msgid "Miscellaneous" msgctxt "Items that do not fit in other categories" @@ -4162,14 +4399,14 @@ msgid "Miscellaneous" msgstr "باشقىلار" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "كۆزنەك" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4177,25 +4414,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgctxt "@label:listbox Column header text for the actual colors" #| msgid "Color" @@ -4204,28 +4441,28 @@ msgid "Color:" msgstr "رەڭ" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "نۇربەلگىنى سىزىشتا ئىشلىتىدىغان رەڭنى تاللايدۇ" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "تېرمىنال ئالاھىدىلىكلىرى" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "تېرمىنال ئالاھىدىلىكلىرى" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4233,96 +4470,96 @@ msgid "Terminal contents" msgstr "تېرمىنال ئالاھىدىلىكلىرى" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Line Spacing:" msgid "Line spacing:" msgstr "قۇر ئارىلىقى:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Enable word mode text rendering" msgstr "قوش يۆنىلىش بويىچە تېكىست كۆرسىتىشنى ئىناۋەتلىك قىل" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4330,45 +4567,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "نۇربەلگىنىڭ رەڭگىنى نۆۋەتتىكى ھەرپ رەڭگىگە ماسلاشتۇر" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "خەت نۇسخا" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4378,98 +4615,98 @@ msgstr "" "ئۇيغۇرچىلارنى كۆرسەتكەندە)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, fuzzy, kde-format #| msgid "Enable Bi-Directional text rendering" msgid "Bi-Directional text rendering" msgstr "قوش يۆنىلىش بويىچە تېكىست كۆرسىتىشنى ئىناۋەتلىك قىل" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "نۇربەلگىنىڭ رەڭگىنى نۆۋەتتىكى ھەرپ رەڭگىگە ماسلاشتۇر" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profile تەھرىر" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "ئادەتتىكى" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "بەتكۈچلەر" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "كۆرۈنۈشى" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "سىيرىش" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "ھەرپتاختا" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "كۇنۇپكا باغلىنىشى" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "چاشقىنەك" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "ئالىي" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4478,49 +4715,56 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "%1 Profile نى تەھرىرلەۋاتىدۇ: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgctxt "@item This will be used as part of the file name" #| msgid "New Profile" msgid "Create New Profile" msgstr "يېڭى سەپلىمە ھۆججەت" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Profile «%1» نى تەھرىرلە" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu Do not select any tabs" +#| msgid "&None" +msgid "None" +msgstr "يوق(&N)" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4529,7 +4773,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4538,71 +4782,71 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgctxt "@info:credit" #| msgid "Visual effects" msgid "Visual Bell" msgstr "كۆرۈنۈش ئۈنۈملىرى" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "" "تاللانغان profile نى يېڭى كۆزنەك ئەڭگىمەسى ئۈچۈن كۆڭۈلدىكى قىلىپ ئىشلىتىدۇ" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "مۇھىتنى تەھرىرلە" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] " سېكۇنت" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "دەسلەپكى مۇندەرىجىنى تاللا" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgctxt "@action:button Create an alternate color scheme" #| msgid "New..." msgid "Get New..." msgstr "يېڭى…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4611,20 +4855,20 @@ msgstr "" "بۇ رەڭ لايىھىسىدە سىزنىڭ ئۈستەلئۈستىڭىز قوللىمايدىغان سۈزۈك تەگلىك " "ئىشلىتىلگەن" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Default profile" msgid "Default for file type" msgstr "كۆڭۈلدىكى Profile" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4641,7 +4885,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4735,27 +4979,55 @@ msgstr "" msgid "Start in same directory as current session" msgstr "ئوخشاش مۇندەرىجە ئىچىدە نۆۋەتتىكى بەتكۈچ قىلىپ باشلا" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, fuzzy, kde-format +#| msgid "Start in same directory as current tab" +msgid "Enter same container as current session" +msgstr "ئوخشاش مۇندەرىجە ئىچىدە نۆۋەتتىكى بەتكۈچ قىلىپ باشلا" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "مۇھىت:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "مۇھىت ئۆزگەرگۈچىلىرى ۋە ئۇلارنىڭ قىممىتىنى تەھرىرلەيدۇ" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "تېرمىنال ئالاھىدىلىكلىرى" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4765,7 +5037,7 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgctxt "@title" #| msgid "Terminal emulator" @@ -4773,26 +5045,26 @@ msgid "&Terminal bell mode:" msgstr "تېرمىنال تەقلىدلىگۈ" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "چاشقىنەك تەسىرلىنىشى" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4802,9 +5074,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4815,9 +5087,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4828,22 +5100,22 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -4851,13 +5123,13 @@ msgid "Red error background:" msgstr "تەگلىك" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgctxt "@item:intable palette" #| msgid "Background" @@ -5221,72 +5493,25 @@ msgid "Scrollback:" msgstr "كەينىگە سىيرىل" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 #, kde-format -msgid "Scroll the page the half height of window" +msgid "Highlight the lines coming into view" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 -#, kde-format -msgid "Half screen heigh&t" +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" msgstr "" -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 -#, kde-format -msgid "Scroll the page the full height of window" -msgstr "" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 -#, kde-format -msgid "F&ull screen height" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "بەتكۈچ بالداقنىڭ ئورنى:" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 -#, kde-format -msgid "Show the scroll bar on the right side of the terminal window" -msgstr "سىيرىغۇچ بالداقنى تېرمىنال كۆزنىكىنىڭ ئوڭ يېنىدا كۆرسىتىدۇ" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 -#, fuzzy, kde-format -#| msgid "Show on right side" -msgctxt "@option:radio Show scrollbar on the right side" -msgid "Ri&ght side" -msgstr "ئوڭ ياندا كۆرسەت" - -#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 -#, kde-format -msgid "Show the scroll bar on the left side of the terminal window" -msgstr "سىيرىغۇچ بالداقنى تېرمىنال كۆزنىكىنىڭ سول يېنىدا كۆرسىتىدۇ" - -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 -#, fuzzy, kde-format -#| msgid "Text size:" -msgctxt "@option:radio Show scrollbar on the left side" -msgid "&Left side" -msgstr "تېكىست چوڭلۇقى:" - #. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 +#: widgets/EditProfileScrollingPage.ui:74 #, fuzzy, kde-format #| msgctxt "@option:radio Conceal the scroll bar" #| msgid "Hidden" @@ -5294,46 +5519,105 @@ msgctxt "@option:radio Hide the scroll bar" msgid "Hidden" msgstr "يوشۇرۇن" -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 -#, kde-format -msgid "Reflow lines when terminal resizes" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#: widgets/EditProfileScrollingPage.ui:84 #, kde-format msgid "Size of each marker (as a percentage of scrollbar length):" msgstr "" -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:129 +#, kde-format +msgid "Scroll the page the half height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) +#: widgets/EditProfileScrollingPage.ui:132 +#, kde-format +msgid "Half screen heigh&t" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:191 +#, kde-format +msgid "Scroll the page the full height of window" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) +#: widgets/EditProfileScrollingPage.ui:194 +#, kde-format +msgid "F&ull screen height" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:215 +#, kde-format +msgid "Show the scroll bar on the right side of the terminal window" +msgstr "سىيرىغۇچ بالداقنى تېرمىنال كۆزنىكىنىڭ ئوڭ يېنىدا كۆرسىتىدۇ" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) +#: widgets/EditProfileScrollingPage.ui:218 +#, fuzzy, kde-format +#| msgid "Show on right side" +msgctxt "@option:radio Show scrollbar on the right side" +msgid "Ri&ght side" +msgstr "ئوڭ ياندا كۆرسەت" + +#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:238 +#, kde-format +msgid "Show the scroll bar on the left side of the terminal window" +msgstr "سىيرىغۇچ بالداقنى تېرمىنال كۆزنىكىنىڭ سول يېنىدا كۆرسىتىدۇ" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) +#: widgets/EditProfileScrollingPage.ui:241 +#, fuzzy, kde-format +#| msgid "Text size:" +msgctxt "@option:radio Show scrollbar on the left side" +msgid "&Left side" +msgstr "تېكىست چوڭلۇقى:" + +#. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) +#: widgets/EditProfileScrollingPage.ui:251 +#, kde-format +msgid "Reflow lines when terminal resizes" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "بەتكۈچ بالداقنىڭ ئورنى:" + +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 +#, kde-format +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5438,7 +5722,7 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "يوق(&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Find:" @@ -5446,55 +5730,45 @@ msgctxt "@label:textbox" msgid "Find..." msgstr "ئىزدە:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "ئىزدەيدىغان تېكىستنى بۇ يەرگە كىرگۈزۈڭ" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "كېيىنكى" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "ھازىرقى ئىبارىگە ماس كېلىدىغان كېيىنكى ماسلىقنى ئىزدەيدۇ" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "ئالدىنقى" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "ھازىرقى ئىبارىگە ماس كېلىدىغان ئالدىنقى ماسلىقنى ئىزدەيدۇ" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "تاللانما تىزىملىكىنى كۆرسىتىدۇ" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "ئىزدەش بالدىقىنى ياپىدۇ" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +#, fuzzy, kde-format +#| msgctxt "@item:inmenu" +#| msgid "Case sensitive" +msgctxt "@action:button" msgid "Case sensitive" msgstr "چوڭ كىچىك يېزىلىشنى پەرقلەندۈر" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" @@ -5502,43 +5776,55 @@ msgstr "" "ئىزدىگەندە ھەرپلەرنىڭ چوڭ كىچىك يېزىلىشىغا قارايدىغان قارىمايدىغانلىقىنى " "بېكىتىدۇ" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "تاللانما تىزىملىكىنى كۆرسىتىدۇ" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "ئىزدەش بالدىقىنى ياپىدۇ" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "مۇنتىزىم ئىپادە بويىچە ماسلاشتۇر" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "ماس كەلگەن تۈرنى يورۇت" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "ماس كەلگەن تېكىستنى يورۇتۇپ كۆرسىتەمدۇ قانداق بەلگىلەيدۇ" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Sets whether the search is case sensitive" @@ -5548,7 +5834,7 @@ msgstr "" "ئىزدىگەندە ھەرپلەرنىڭ چوڭ كىچىك يېزىلىشىغا قارايدىغان قارىمايدىغانلىقىنى " "بېكىتىدۇ" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5556,7 +5842,7 @@ msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "ھازىرقى ئىبارىگە ماس كېلىدىغان كېيىنكى ماسلىقنى ئىزدەيدۇ" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "Find the next match for the current search phrase" @@ -5569,7 +5855,7 @@ msgstr "ھازىرقى ئىبارىگە ماس كېلىدىغان كېيىنكى msgid "Print Shell" msgstr "" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgctxt "@action:inmenu Do not select any tabs" #| msgid "&None" @@ -5614,6 +5900,14 @@ msgstr "نورمال بەتكۈچ ماۋزۇسىنىڭ پىچىمى" msgid "Tab Co&lor:" msgstr "رەڭ" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgctxt "@label:listbox Column header text for the actual colors" +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "رەڭ" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5715,7 +6009,7 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "بەتكۈچ ياپ" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "&Detach Tab" @@ -5723,33 +6017,45 @@ msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "بەتكۈچنى ئاجرات(&D)" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgctxt "@action:inmenu" +#| msgid "&Detach Tab" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "بەتكۈچنى ئاجرات(&D)" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "بەتكۈچنى ياپ(&C)" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "بەتكۈچنى ئاجرات(&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "بەتكۈچ ئاتىنى ئۆزگەرت(&R)" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "بەتكۈچنى ياپ(&C)" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "چوڭ كىچىك يېزىلىشنى پەرقلەندۈر" + #, fuzzy #~| msgctxt "@action:inmenu Do not select any tabs" #~| msgid "&None" diff --git a/local/recipes/kde/konsole/source/po/uk/konsole.po b/local/recipes/kde/konsole/source/po/uk/konsole.po index 8fd4397709..f4b8818445 100644 --- a/local/recipes/kde/konsole/source/po/uk/konsole.po +++ b/local/recipes/kde/konsole/source/po/uk/konsole.po @@ -7,15 +7,15 @@ # Eugene Onischenko , 2002, 2003, 2004, 2005. # Andriy Rysin , 2002, 2003, 2004, 2006. # Ivan Petrouchtchak , 2005, 2006, 2007, 2008. -# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. +# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026. msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-07-18 09:36+0300\n" -"Last-Translator: Fracture dept \n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-02-20 07:43+0200\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Перегляд" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Розділений перегляд" @@ -92,7 +92,7 @@ msgid "S&crollback" msgstr "Го&ртання" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "Панель інструментів сеансу" @@ -178,34 +178,46 @@ msgstr "Приховати панель меню, перевизначивши #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "Показати усі панелі інструментів, перевизначивши типову поведінку" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "Приховати усі панелі інструментів, перевизначивши типову поведінку" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "Показати панель вкладок, перевизначивши типову поведінку" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "Приховати панель вкладок, перевизначивши типову поведінку" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "Запустити Konsole у повноекранному режимі" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "Вимкнути прозорість тла, навіть якщо система її підтримує." -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Список наявних профілів" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" @@ -213,13 +225,13 @@ msgstr "" "Показати список всіх властивостей профілю та тих цих властивостей (для " "використання разом з -p)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Змінити значення властивості профілю." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,7 +241,7 @@ msgstr "" "Команда, яку слід виконати. У разі використання цього параметра буде взято " "до уваги всі наступні параметри, отже його слід використовувати останнім." -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -239,13 +251,13 @@ msgstr "" "Примусово використати наявний екземпляр, навіть якщо це обмежить " "функціональні можливості, наприклад --new-tab. Здебільшого для діагностики." -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Параметри, що передаються команді" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -263,157 +275,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "Текст" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "Тло" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "Колір 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "Колір 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "Колір 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "Колір 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "Колір 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "Колір 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "Колір 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "Колір 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Текст (інтенсивно)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Тло (інтенсивно)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Колір 1 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Колір 2 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Колір 3 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Колір 4 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Колір 5 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Колір 6 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Колір 7 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Колір 8 (інтенсивний)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Текст (тьмяно)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Тло (тьмяно)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Колір 1 (тьмяний)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Колір 2 (тьмяний)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Колір 3 (тьмяний)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Колір 4 (тьмяний)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Колір 5 (тьмяний)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Колір 6 (тьмяний)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Колір 7 (тьмяний)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Колір 8 (тьмяний)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -670,6 +682,40 @@ msgstr "Вгорі" msgid "AaZz09..." msgstr "AaZz09…" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Вузол" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" +"Якщо Konsole запущено у Flatpak, не вдасться скористатися підтримкою " +"контейнерів." + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [типовий]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -715,7 +761,7 @@ msgstr "" msgid "Copy Location" msgstr "Копіювати адресу" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "Створюємо мініатюру" @@ -746,13 +792,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Вибір шрифту" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "Показати усі шрифти" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -793,17 +839,17 @@ msgstr "Комбінація клавіш" msgid "Output" msgstr "Вивід" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Новий список прив'язок клавіш" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Змінити список прив'язок клавіш" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "Схему прив'язок клавіш не можна зберігати із порожнім описом." @@ -811,7 +857,7 @@ msgstr "Схему прив'язок клавіш не можна зберіга #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -845,225 +891,225 @@ msgstr "Ввід:" msgid "Output:" msgstr "Вивід:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "Емулятор термінала" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "© Розробники Konsole, 1997–2022" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Курт Гінденбурґ" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Загальний супровід, виправлення вад і загальні вдосконалення" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Роберт Найт" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "Попередній супровідник, портування на KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Ларс Делле" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "Автор програми" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ахмад Самір" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Загальне перепланування, виправлення вад і основні вдосконалення" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Калос Альвес" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Томаз Канабрава" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Густаво Карнейро" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Едвін Пуйолс" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Виправлення вад і загальні вдосконалення" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Мартін Т. Г. Сандсмарк" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Нейт Грем" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Маріуш Ґлебоцький" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Виправлення вад і основні вдосконалення" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Томас Суррел" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Джекілл Ву" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Вальдо Бастіан" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Штефан Біннер" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Томас Драйбгольц" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "Загальні вдосконалення" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Кріс Махмер" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "Виправлення помилок" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Франческо Цеццоні" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Стефан Кулов" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Підтримка історії і роботи на Solaris" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Александр Нойндорф" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Виправлення помилок і покращення швидкодії запуску" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Петер Сілва" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "Покращення позначення" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Лотці Болоні" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1073,13 +1119,13 @@ msgstr "" "Вбудована Konsole\n" "Панель інструментів і назви сеансів" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "Давид Фауре" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1089,25 +1135,25 @@ msgstr "" "Вбудована Konsole\n" "Загальні покращення" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Антоніо Ларроса" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "Візуальні ефекти" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Маттіас Еттріх" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1117,132 +1163,132 @@ msgstr "" "Код з проєкту kvt\n" "Загальні покращення" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Варвік Аллісон" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Покращення схеми і вибору тексту" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Дан Пілоне" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "Портування SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Кевін Стріт" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Порт на FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Свен Фішер" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Дейл М. Флейвн" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Мартін Джонс" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Ларс Нолл" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Подяка багатьом іншим.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Н&ова вкладка" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Клонувати вкладку" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Нове ві&кно" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "Закрити вікно" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Закладки" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "Схема кольорів в&ікна" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Керування профілями…" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "Задіяти меню" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Зберегти компонування вкладок…" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "Завантажити компонування вкладок…" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1253,67 +1299,67 @@ msgstr[1] "У цьому вікні працюють %1 процеси. Ви с msgstr[2] "У цьому вікні працюють %1 процесів. Ви справді хочете його закрити?" msgstr[3] "У цьому вікні працює процес. Ви справді хочете його закрити?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "Підтвердження закриття" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "Закрити в&ікно" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Закрити поточну в&кладку" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "У цьому вікні відкрито %1 терміналів. Ви справді хочете його закрити?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Профілі" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "Загальне" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "Пам'ять" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Вкладки/Поділ на панелі" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "Тимчасові файли" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "Мініатюри" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1397,7 +1443,7 @@ msgstr "Зберегти" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "Оновити" @@ -1409,29 +1455,29 @@ msgid "Cancel" msgstr "Скасувати" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "Швидкі команди" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "Показати швидкий доступ" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" "Не знайдено швидких команд. Ви можете додати команди за допомогою сторінки " "«Додатки -> Швидкі команди»" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "Додатки — Швидкі команди" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "Показати швидкі команди" @@ -1475,7 +1521,7 @@ msgstr "" " де зберігається декілька наборів налаштувань. Ви справді цього хочете?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "Ви наказали програмі вилучити %1. Ви справді цього хочете?" @@ -1528,11 +1574,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 є текою для записів SSH" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "Налаштування SSH" @@ -1597,24 +1643,24 @@ msgstr "" "bash, zsh, sh)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "Ключ SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Вилучити" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "Не змінювати" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1623,71 +1669,71 @@ msgstr "" "Ви наказали програмі вилучити теку %1,\n" " де зберігається декілька наборів налаштувань SSH. Ви справді цього хочете?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Вилучення налаштувань SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" "Імпортовано профіль SSH
              Деякі з параметрів призначено лише для читання." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "Не вказано назви вузла" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "Не вказано назви" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" "Якщо встановлено використання налаштувань SSH, не слід вказувати ключ SSH " "або ім'я користувача." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "Слід встановити або ім'я користувача, або ключ SSH" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "Не вказано теки" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "Сеанс SSH повинен мати профіль" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "Не вдалося вилучити цю теку" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "Вилучити теку і увесь її вміст" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "Двічі клацніть лівою кнопкою миші, щоб змінити назву теки." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "Не можна вилучати автоматично доданий запис." -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "Вилучити позначений запис" @@ -1879,25 +1925,25 @@ msgstr "Параметри виведення" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Оптимізувати для друку (чорний текст без зображень на тлі)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "&Масштабувати результат" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "Вбудований" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "Типовий профіль" @@ -1956,17 +2002,42 @@ msgstr "Двічі клацніть лівою кнопкою миші, щоб msgid "Tab Properties" msgstr "Властивості вкладки" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Зберегти вивід з %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 не є коректною адресою URL, не вдалося зберегти вивід." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "Не вдалося створити файл автоматичного збереження у %1." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "Припиняємо автоматичне збереження через перемикання екранів." + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" +"До файла автоматично збережених даних було внесено зміни сторонньою " +"програмою — це унеможливлює подальше автоматичне збереження." + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" +"Не вдалося оновити стан автоматичного збереження у відповідь на зміни " +"виведення." + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2002,81 +2073,98 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Темні пастелі" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Зелений на чорному" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Кольори Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "Червоний на чорному" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Засвічена" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Засвічена світла" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Білий на чорному" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Типовий (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Консоль Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Консоль Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Шукати…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Введіть назву вкладки, щоб виконати пошук" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Дзвінок у сеансі «%1» (сеанс «%2»)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Не вдалося знайти файл програми: " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Попередження: " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "Не вдалося знайти для запуску інтерактивної оболонки." -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " @@ -2085,362 +2173,366 @@ msgstr "" "Не вдалося знайти «%1», замість неї запущено «%2». Будь ласка, перевірте " "параметри вашого профілю." -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "Не вдалося запустити програму «%1» з параметрами «%2»." -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Тиша у «%1» (сеанс «%2»)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "Показати сеанс" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"Щойно було використано методи D-Bus sendText/runCommand. Із відкриттям цих " -"методів для загального використання пов'язано певні проблеми із захистом. " -"Якщо потрібно, ці методи можна зробити методами для внутрішнього " -"використання (internal) перезбиранням Konsole.

              Для цього екземпляра " -"Konsole це попередження буде показано лише одного разу.

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Завершено" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Програма «%1» завершила роботу у аварійному режимі." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Програма «%1» завершилась зі станом %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Поступ ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "Діяльність у «%1» (сеанс «%2»)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" +"Програмний інтерфейс DBus, який може зашкодити захисту, вимкнено у " +"параметрах програми." + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "Процес «%1» завершив роботу у сеансі «%2»" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole невідомо про те, як відкрити закладку: " -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "Шукати «%1» за допомогою" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "Налаштувати вебскорочення…" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "&Завершити сеанс" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Відкрити менеджер файлів" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "Копіювати" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "Розділений перегляд: ліворуч/праворуч" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "Розділений перегляд: вгорі/внизу" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "Копіювати без рядка запиту" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "Копіювати введене користувачем" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "Копіювати виведення команди" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Вставити вибір" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "Пошук у інтернеті" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "&Позначити все" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "Режим п&означення" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "Позначити &рядок" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "Зберегти виведене &як…" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "Автоматично зберегти виведене як…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "Припинити автозбереження" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Надрукувати зображення з екрана…" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "Виправити гортання…" -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Спорожнити буфер гортання" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "Спорожнити буфер гортання і відновити початковий стан" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "Наступний профіль" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "Попередній профіль" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "Перемкнути профіль" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "Встановити &кодування" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "Дозволити стеження за мишею" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "Лише читання" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "&Налаштувати або перейменувати вкладку…" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "&Всіх вкладок у поточному вікні" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "Ви&брати вкладки…" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Жодної" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Копіювати введене до" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "В&ивантаження ZModem…" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "Одноразові спостереження" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "Спостерігати за &запитом" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Слідкувати за &діяльністю" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Слідкувати за &бездіяльністю" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "Слідкувати за завершенням процесу" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Збільшити шрифт" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "Зменшити шрифт" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "Відновити розмір шрифту" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "Надіслати сигнал" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Призупинити завдання" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Про&довжити завдання" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Від'&єднатися" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "П&ерервати завдання" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "П&рипинити завдання" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Завершити завдання" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Сигнал користувача &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Сигнал користувача &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "Створити профіль…" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Редагувати поточний профіль…" -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "В цьому сеансі в даний час виконується програма. Дійсно закрити?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "В цьому сеансі в даний час виконується програма «%1». Дійсно закрити?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Підтвердження закриття" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "Закрити програму" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " @@ -2449,37 +2541,37 @@ msgstr "" "Програма у цьому сеансі не бажає завершувати роботу. Хочете завершити її " "роботу у примусовому режимі?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" "Програма «%1» у цьому сеансі не бажає завершувати роботу. Хочете завершити " "її роботу у примусовому режимі?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "Завершити роботу програми" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "У командній оболонці показано запит у сеансі «%1»" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "Відкрити поточну теку за допомогою" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "Зберегти отримання ZModem до…" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2490,7 +2582,7 @@ msgstr "" "програмного забезпечення ZModem.

              Вам, ймовірно, слід встановити " "пакунок «rzsz» або «lrzsz».

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " @@ -2498,7 +2590,7 @@ msgstr "" "

              У поточному сеансі вже виконується передавання файлів за допомогою ZModem." "

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2507,7 +2599,7 @@ msgstr "" "

              У системі не виявлено програмного забезпечення ZModem.

              Вам, " "ймовірно, слід встановити пакунок «rzsz» або «lrzsz».

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "Оберіть файли для вивантаження за допомогою ZModem" @@ -2530,144 +2622,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "Налаштування" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "Пошук:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "Увімкнути клавіатурні скорочення у меню" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "Якщо позначено, параметри профілю буде проігноровано" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "Запам’ятовувати розмір вікна" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "Показувати заголовок вікна на смужці заголовка" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "Фокусувати термінал, на який переведено вказівник миші" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "Збіг з формальним виразом" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "Використовувати вже запущений процес Konsole, якщо це можливо" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "Використовувати для усіх вікон Konsole один процес" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "Підсвітити всі відповідники" +msgid "If enabled, profile settings will be ignored" +msgstr "Якщо позначено, параметри профілю буде проігноровано" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "Встановлює регістрозалежність пошуку" +msgid "Remember window size" +msgstr "Запам’ятовувати розмір вікна" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "З врахуванням регістру" +msgid "Force new tabs" +msgstr "Примусово нові вкладки" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "Вилучити смужку меню і рамку вікна" +msgid "Listen for ZModem terminal codes" +msgstr "Очікувати на коди термінала ZModem" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "Процес і вікно:" +msgid "Show progress in taskbar" +msgstr "Показувати поступ на панелі задач" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "Сповіщення:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "Усі діалогові вікна буде показано знову" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "Увімкнути усі повідомлення «Більше не питати»" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "Визначає, чи має пошук виконуватися від нижньої частини даних" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "Пошук назад" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "Встановлює регістрозалежність пошуку" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "З врахуванням регістру" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "Процес і вікно:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "Підсвітити всі відповідники" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "Пошук:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "Визначає, чи має пошук зупинятися замість повторення циклу" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "Без повторення" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "Увімкнути клавіатурні скорочення у меню" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "Фокусувати термінал, на який переведено вказівник миші" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "Усі діалогові вікна буде показано знову" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "Увімкнути усі повідомлення «Більше не питати»" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "Показувати заголовок вікна на смужці заголовка" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "Увімкнути пов'язані із захистом частини програмного інтерфейсу DBus" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "Вилучити смужку меню і рамку вікна" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "Збіг з формальним виразом" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2696,65 +2814,106 @@ msgstr "Використовувати поточні розміри вікна msgid "The window size will be saved upon exiting Konsole" msgstr "Розмір вікна Konsole буде збережено під час виходу" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "При запуску Konsole створювати вкладку, а не вікно, якщо це можливо" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "Показувати поступ на панелі задач" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" +"Коли скрипт повідомляє про поступ обробки, дані щодо поступу буде показано " +"на панелі задач" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "Буде увімкнено програмний інтерфейс DBus, подібний до runCommand" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "Очікувати на коди термінала ZModem" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" +"Автоматичне надсилання і отримання файлів за допомогою послідовних з'єднань" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "Ширина мініатюри" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "Встановлює ширину мініатюри" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "Користуватися Shift для показу мініатюри" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "Користуватися Alt для показу мініатюри" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "Користуватися Ctrl для показу мініатюри" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "Шукати з урахуванням регістру" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "Підсвітити усі відповідники" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "Чи підсвічувати знайдений текст" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "Пошук зупиняється замість повторення" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" @@ -2762,7 +2921,7 @@ msgstr "" "вкладок" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2770,91 +2929,97 @@ msgstr "Визначає рівень споживання пам'яті до в #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "Керування видимістю всієї панелі вкладок" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "Керування розміром засобу розмежування панелей" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "Керування розташуванням панелі вкладок" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "Керування візуальним форматом панелі вкладок" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "Використовувати власний файл .css для панелі вкладок" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "Файл .css, який слід використовувати для стилю панелі вкладок" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "Дозволити закриття вкладок клацанням середньою кнопкою" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "Керування видимістю кнопки «Нова вкладка» на смужці вкладок" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "Керує видимістю кнопки «Шукати вкладки» на панелі вкладок" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "Керування тим, де буде показано кнопку «Закрити вкладку»" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "Керування місцем для нових вкладок" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "Розгортання ширин вкладок" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "Для файлів буфера гортання використовувати загальносистемну теку" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "Для файлів буфера гортання використовувати вказану користувачем теку" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "Для файлів буфера гортання використовувати вказану теку" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "Для файлів буфера гортання використовувати цю теку" @@ -2866,34 +3031,30 @@ msgid "Enable memory monitoring:" msgstr "Увімкнути спостереження за пам'яттю:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "Зміни набудуть чинності після перезапуску. Якщо увімкнено, тривале " -"перевищення встановленого для споживання пам'яті Konsole\n" -"значення призведе до знищення за допомогою systemd-oomd вкладок,\n" -"у яких працюють процеси із інтенсивним споживанням пам'яті. Зауваження: " -"вмикання\n" -"може призвести до значеного сповільнення роботи при високому споживанні " -"пам'яті, а визначення\n" +"перевищення встановленого для споживання пам'яті Konsole значення призведе " +"до знищення за допомогою systemd-oomd вкладок, у яких працюють процеси із " +"інтенсивним споживанням пам'яті. Зауваження: вмикання може призвести до " +"значеного сповільнення роботи при високому споживанні пам'яті, а визначення " "надто малих значень може призвести до завершення усього процесу Konsole." #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "Обмеження пам'яті:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " МБ" @@ -3053,125 +3214,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "Не показувати" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "Показувати кнопку «Шукати вкладки»:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "Завжди" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "Ніколи" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "Інше:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "Показувати кнопку «Нова вкладка»" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "Розгортання окремих вкладок на усю ширину вікна" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "Використовувати таблицю стилів користувача:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(немає)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "Поведінка" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "Розташовувати нові вкладки:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "У &кінці" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "Після п&оточної вкладки" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "Закривати вкладку клацанням середньою" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "Поділені панелі" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "Показ заголовка:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "Якщо потрібно" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "Ніколи" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "Розмір засобу перетягування:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "Малий" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "Середній" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "Великий" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3223,13 +3402,12 @@ msgstr "пк" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              Щоб мати змогу скористатися цією можливістю, позначте " -"пункт Миша->Інше->Підкреслювати файли у параметрах вашого " -"профілю.

              " +"пункт Миша->Інше->Підкреслювати " +"файли у параметрах вашого профілю.

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3267,12 +3445,12 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "Увімкнути створення мініатюр" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Розмір: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" @@ -3281,53 +3459,53 @@ msgstr[1] "Ви справді хочете вставити %1 символи?" msgstr[2] "Ви справді хочете вставити %1 символів?" msgstr[3] "Ви справді хочете вставити один символ?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "Підтвердження закриття" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "Кінець тексту/Переривання: може перервати роботу поточного процесу" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" "Кінець переданих даних: може призвести до завершення роботи поточного процесу" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "Гудок: намагається попередити звуком" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "3-й код керування пристроєм/XOFF: призупиняє виведення даних" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "Заміна/Призупинення: може призупинити виконання поточного процесу" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Escape: використовується для керування станом термінала" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "Роздільник файлів/Вихід: може перервати роботу поточного процесу" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " @@ -3336,31 +3514,31 @@ msgstr "" "У тексті, який ви намагаєтеся вставити, містяться приховані керівні символи. " "Хочете виконати фільтрування таких символів?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "Підтвердження вставлення" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Вставити &без керівних символів" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Вставити усе" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "&Скасувати" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been призупинено натисканням Ctrl+S. Натисніть Ctrl" "+Q, щоб його поновити." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "Термінал відкрито лише для читання." -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "Змінити &каталог" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "&Вставити адресу" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Розділений перегляд" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Розділений перегляд: ліворуч/праворуч" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Розділений перегляд: вгорі/внизу" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Розділити перегляд автоматично" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Розділений перегляд: ліворуч/праворуч від наступної вкладки" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Розділений перегляд: вгорі/внизу від наступної вкладки" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Розділити перегляд автоматично від наступної вкладки" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "Завантажити нову вкладку із компонуванням 2x2 термінали" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "Завантажити нову вкладку із компонуванням 1x2 термінали" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "Завантажити нову вкладку із компонуванням 1x2 термінали" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Розгорнути перегляд" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Згорнути перегляд" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Відокремити &поточну панель" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Від&окремити поточну вкладку" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Наступна вкладка" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Попередня вкладка" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Фокус на верхній термінал" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Фокус на нижній термінал" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "Фокус на лівий термінал" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "Фокус на правий термінал" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Фокус на наступний термінал" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Фокус на попередній термінал" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Перемкнутися на останню вкладку" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "Останні використані вкладки" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "Перемкнутися з однієї вкладки на іншу" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "Останні використані вкладки (у зв. порядку)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "Перемкнути максимізацію поточної панелі" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "Перемкнути максимізацію поточної панелі" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "Перемкнути максимізацію поточної панелі" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "Перемкнути максимізацію поточної панелі" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Пересунути вкладку праворуч" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Пересунути вкладку ліворуч" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "Налаштувати семантичну інтеграцію (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "Перемкнути показ семантичних підказок" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "Перемкнути показ номерів рядків" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "Однаковий розмір усіх панелей" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Перемкнутися на вкладку %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "Семантичні підказки " -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "Номери рядків " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Збереження компонування вкладок" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "компонування перегляду Konsole (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3628,7 +3818,7 @@ msgstr "" "Під час спроби збереження компонування сталася помилка.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3638,13 +3828,13 @@ msgstr "" "Під час спроби завантажити компонування сталася помилка.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "Завантаження компонування вкладок" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3743,28 +3933,40 @@ msgstr "&Типове кодування символів:" msgid "Shortcut for peeking the primary screen:" msgstr "Скорочення для вибору основного екрана:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "Встановити інтервал між автозбереженнями:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " мс" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "Номери рядків:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "&Ніколи" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "Якщо показано підказки щодо &адрес" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3800,7 +4002,7 @@ msgstr "Змінити вибрану схему кольорів" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3854,6 +4056,9 @@ msgstr "Збільшувати інтенсивність для напівжи #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" "Використовувати вибраний шрифт для символів лінії замість вбудованого коду" @@ -3861,6 +4066,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "Використовувати символи лінії зі шрифту" @@ -3981,29 +4189,43 @@ msgid "Make the cursor blink regularly" msgstr "Блимання курсора" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "Увімкнено" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "Анімація:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "Плавне анімування курсора" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "Інше" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "Вікно:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4012,144 +4234,144 @@ msgstr "" "Показувати новий розмір термінала у стовпчиках і рядках тексту після зміни" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "Показувати підказку щодо розміру термінала після зміни" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "Завжди інвертувати кольори позначеного тексту" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "Потужність затемнення:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "Колір:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "Виберіть колір для малювання рамки" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "Неактивні термінали:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "Активні термінали:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "Вміст термінала" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "Міжрядковий проміжок:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "Кількість пікселів між двома рядками" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " пк" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "Поля:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "Вирівнювання до центра:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "Позначати неактивне вікно притлумленням кольорів" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "Затемнення" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "Вказувати, чи є вікно активним, шляхом малювання рамки" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "Рамка" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "Показувати вертикальну лінію у позиції:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              Складне компонування тексту

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "Складне компонування тексту" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "Увімкнути обробку тексту у режимі слів" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "Режим слів" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4159,43 +4381,43 @@ msgstr "" "атрибутів заважатимуть показу слів)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "Використовувати ті самі атрибути для усього слова" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "Обробляти слова символами ASCII разом" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "Символи ASCII " #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "Обробляти слова символами брахмічних писемностей разом" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "Символи брахмічних писемностей" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "Шрифт емодзі:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4205,96 +4427,96 @@ msgstr "" "єврейської)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "Показ тексту у двох напрямках" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" "Рядки завжди формуються зліва праворуч, а не за першим непробільним символом" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "примусовий напрямок зліва праворуч" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "Вважати символи малювання таблиці непробільними символами лівопису." #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "Перевизначення режиму табличних символів BiDi" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "Ігнорувати wcwidth проблемних символів" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "Перевизначити wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Змінити профіль" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Загальні" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Вкладки" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Вигляд" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Гортання" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "Клавіатура" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "Прив'язки клавіш" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "Миша" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Додатково" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4306,7 +4528,7 @@ msgstr "" "filename>.Або змініть права доступу до цього файла або вкажіть іншу " "назву для збереження параметрів до нового профілю." -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." @@ -4314,25 +4536,25 @@ msgstr "" "Назва профілю порожня. Будь ласка, вкажіть назву, щоб мати змогу зберегти " "параметри." -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "Профіль із назвою «%1» вже існує." -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "Назва профілю перевищує максимальну дозволену (%1)." -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "Підсвічені символи є некоректними для назв профілів: %1." -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" @@ -4341,17 +4563,22 @@ msgstr[1] "Редагування %1 профілів: %2" msgstr[2] "Редагування %1 профілів: %2" msgstr[3] "Редагування профілю: %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "Створення профілю" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Змінити профіль «%1»" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "Немає" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4363,7 +4590,7 @@ msgstr[1] " стовпчики" msgstr[2] " стовпчиків" msgstr[3] " стовпчик" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4375,42 +4602,42 @@ msgstr[1] " рядки" msgstr[2] " рядків" msgstr[3] " рядок" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "Системний дзвінок" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "Системні сповіщення" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "Видимий дзвінок" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "Ігнорувати події дзвінка" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Типовий профіль для нових сеансів термінала у %1" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Змінити середовище" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "Одна змінна середовища на рядок" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4420,23 +4647,23 @@ msgstr[1] " секунди" msgstr[2] " секунд" msgstr[3] " секунда" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Виберіть початковий каталог" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "Отримати нову…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "Не вдалося завантажити схему %1." -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4445,7 +4672,7 @@ msgstr "" "Ця схема кольорів використовує прозоре тло, яке, здається, не підтримується " "на вашій стільниці" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4454,12 +4681,12 @@ msgstr "" "Konsole було запущено до вмикання стільничних ефектів. Щоб побачити прозоре " "тло, вам слід перезапустити Konsole." -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "Типова для типу файлів" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4489,7 +4716,7 @@ msgstr "" "буде проігноровано — файл буде відкрито у типовому текстовому\n" "редакторі." -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "Нетипова команда текстового редактора:" @@ -4578,26 +4805,57 @@ msgstr "Вибрати початковий каталог" msgid "Start in same directory as current session" msgstr "Запускати у теці поточного сеансу" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"При відкритті нової вкладки або панелі автоматично входити до того самого " +"контейнера (Toolbox, Distrobox), що і у поточному сеансі" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "Входити до того самого контейнера, що і у поточному сеансі" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "Завжди запускати у контейнері:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" +"Завжди починати нові сеанси з використанням цього профілю у вибраному " +"контейнері" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Середовище:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Змінити список змінних середовища і відповідних їм значень" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "Початковий роз&мір термінала:" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4610,31 +4868,31 @@ msgstr "" "Загальне → Запам'ятовувати розмір вікна.

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "Режим дзвінка у &терміналі:" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "Семантична інтеграція" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "Емуляція стрілок вгору-вниз" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "Клацання на рядку введення пересуває курсор" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "Семантичні підказки:" @@ -4644,9 +4902,9 @@ msgstr "Семантичні підказки:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4657,9 +4915,9 @@ msgstr "Ніколи" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4670,34 +4928,34 @@ msgstr "Якщо показано підказки щодо адрес" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "Завжди" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "Червоні смужки помилок:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "Червоне тло помилок:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "Почергові смужки:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "Почергове тло:" @@ -5061,115 +5319,127 @@ msgid "Scrollback:" msgstr "Гортання:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "Гортання Page Up/Down:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "Підсвічувати рядки, які виводяться на панель перегляду" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Приховано" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "Розмір кожної позначки (у відсотках до довжини смужки гортання):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "Підсвічування:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "Гортати на половину висоти вікна" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "Половина вис&оти вікна" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "Колір позначок смужки гортання:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "Колір підсвічування рядків пошуку на смужці гортання:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "Перерозбиття рядків:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "Гортати на всю висоту вікна" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "Вс&я висота вікна" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "Розташування смужки гортання:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Показувати смугу прокручування на правій стороні вікна термінала" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "П&равий бік" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Показувати смугу прокручування на лівій стороні вікна термінала" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "&Лівий бік" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Приховано" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "Підсвічування:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "Підсвічувати рядки, які виводяться на панель перегляду" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "Перерозбиття рядків:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "Перерозбиття рядків після зміни розмірів термінала" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "Колір позначок смужки гортання:" +msgid "Scrollbar position:" +msgstr "Розташування смужки гортання:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "Розмір кожної позначки (у відсотках до довжини смужки гортання):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "Непрозорість підсвічення рядка при пошуку:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5278,37 +5548,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "Ні&чого" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "Знайти…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Введіть сюди текст, за яким шукати" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Далі" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Знайти наступний збіг для фрази пошуку" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Назад" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5316,77 +5586,77 @@ msgstr "Знайти попередній збіг для фрази пошук #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "Показати меню параметрів" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Закрити панель пошуку" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "З врахуванням регістру" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "Встановлює регістрозалежність пошуку" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "Показати меню параметрів" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Закрити панель пошуку" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Збіг з формальним виразом" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Підсвітити всі відповідники" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Чи підсвічувати знайдений текст" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "Пошук назад" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "Визначає, чи має пошук виконуватися від нижньої частини даних" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "Без повторення" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Визначає, чи має пошук зупинятися замість повторення циклу" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Шукати вказану ключову фразу, починаючи з нижньої частини даних" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5397,7 +5667,7 @@ msgstr "Шукати вказану ключову фразу, починаюч msgid "Print Shell" msgstr "Друк даних з командної оболонки" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5437,6 +5707,12 @@ msgstr "Формат заголовка звичайної вкладки" msgid "Tab Co&lor:" msgstr "Ко&лір вкладки:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "Колір &активної вкладки:" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5530,36 +5806,64 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Відновити термінал" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Відкрити нову вкладку" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Шукати вкладки" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Закрити цю вкладку" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "В&ідокремити вкладку" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Налаштувати або перейменувати вкладку…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Закрити вкладку" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox: %1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox: %1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "Щойно було використано методи D-Bus sendText/runCommand. Із відкриттям " +#~ "цих методів для загального використання пов'язано певні проблеми із " +#~ "захистом. Якщо потрібно, ці методи можна зробити методами для " +#~ "внутрішнього використання (internal) перезбиранням Konsole.

              Для цього " +#~ "екземпляра Konsole це попередження буде показано лише одного разу.

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "З врахуванням регістру" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "Немає" diff --git a/local/recipes/kde/konsole/source/po/uz/konsole.po b/local/recipes/kde/konsole/source/po/uz/konsole.po index 65acf467d9..76aa8d8969 100644 --- a/local/recipes/kde/konsole/source/po/uz/konsole.po +++ b/local/recipes/kde/konsole/source/po/uz/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2008-06-04 01:01+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -53,7 +53,7 @@ msgstr "&Koʻrinish" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Split &View" msgid "Split View" @@ -93,7 +93,7 @@ msgid "S&crollback" msgstr "Varaqlash panelini bekitish" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -173,47 +173,59 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Mavjud profillarning roʻyxatini koʻrsatish" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -221,7 +233,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,14 +241,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments for 'command'" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "'buyruq' uchun argument" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "transparency" msgctxt "@item" @@ -257,201 +269,201 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Oldin fon" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Orqa fon" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Rang 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Rang 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Rang 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Rang 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Rang 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Rang 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Rang 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Rang 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Shaffoflik" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Shaffoflik" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Shaffoflik" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Shaffoflik" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Rang 1" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Rang 2" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Rang 3" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Rang 4" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Rang 5" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Rang 6" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Rang 7" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Rang 8" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -715,6 +727,39 @@ msgstr "Yuq&origa" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Xost:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Terminal andozasi" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -759,7 +804,7 @@ msgstr "" msgid "Copy Location" msgstr "Belgilanganni qoʻyish" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -791,13 +836,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Shriftni tahrirlash..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -836,17 +881,17 @@ msgstr "Yopishni tasdiqlash" msgid "Output" msgstr "Tarixni saqlash" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -854,7 +899,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -888,235 +933,235 @@ msgstr "" msgid "Output:" msgstr "Tarixni saqlash" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Terminal" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Terminal emulyatori" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Terminal emulyatori" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Xatolarni tuzatish" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Tarixni saqlab boʻlmadi." -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "xatolarni tuzatish va yaxshilash" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1124,13 +1169,13 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" @@ -1139,25 +1184,25 @@ msgid "" "General improvements" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" @@ -1166,144 +1211,144 @@ msgid "" "General improvements" msgstr "Xatolarni tuzatish va yaxshilash" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "qolip va tanlashni yaxshilash" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI'ga oʻtkazish" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD'ga oʻtkazish" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Qolgan boshqalarga ham rahmat.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Yangi tab" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Tabni &yopish" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Yangi oyna" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Terminal" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Xatchoʻplar" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "List the available profiles" msgid "&Window Color Scheme" msgstr "Mavjud profillarning roʻyxatini koʻrsatish" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Profillarni boshqarish" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Menyuni aktivlashtirish" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Seansni chapga s&urish" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1311,73 +1356,73 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Yopishni tasdiqlash" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Terminal" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Joriy tabni yopish" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Yangi profil" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Umumiy" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format #| msgid "Tab &Options" msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Tab ¶metrlari" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1465,7 +1510,7 @@ msgstr "Bogʻni ochish" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1477,29 +1522,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Buyruq:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Buyruq:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1539,7 +1584,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1595,11 +1640,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1661,93 +1706,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Oʻlchamni moslash" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "List the available profiles" msgid "Delete selected entry" @@ -1948,25 +1993,25 @@ msgstr "Tab ¶metrlari" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Printer uchun qulay usul (kora matn, orqa fonsiz)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2028,17 +2073,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Tarixni saqlash" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Faylga yozib boʻlmadi." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2074,506 +2141,531 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Qorada yashil" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux ranglari" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Qorada oq" -#: schemas.cpp:10 +#: schemas.cpp:11 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized" msgstr "Solaris" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized Light" msgstr "Solaris" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Qorada oq" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Andoza (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux terminali" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris terminali" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Tarixni &boʻshatish" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Tarixni saqlab boʻlmadi." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Yangi seans" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Tugadi" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Session '%1' exited unexpectedly." msgid "Program '%1' crashed." msgstr "Seans \"%1\" kutilmaganda tugadi." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "'%1' dasturi %2 holati bilan tugadi." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Terminal" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Matn (%1) topilmadi." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Profillarni boshqarish..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "Seansni &yopish" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Nusxa olish" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Left-Right" msgstr "Shriftni kichiklashtirish" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Top-Bottom" msgstr "Shriftni kichiklashtirish" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Belgilanganni qoʻyish" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Hammasini tanlash" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Tanlash" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Tanlash" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "Tarixni saqlash" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "Tarixni saqlash" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Ekranni bosib chiqarish" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Profillarni boshqarish..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Do not display scrollbar" msgid "Clear Scrollback" msgstr "Varaqlash panelini bekitish" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear &History" msgid "Clear Scrollback and Reset" msgstr "Tarixni &boʻshatish" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Profilni tahrirlash" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous" msgid "Previous Profile" msgstr "Oldingi" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Profilni tahrirlash" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Set &Encoding" msgstr "&Kodlash usuli" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "Tabning &nomini oʻzgartirish..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "Select &Tab Color..." msgid "&Select Tabs..." msgstr "Tabning &rangini tanlash" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Yoʻq" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ZModem yo&zib qoʻyish" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Shriftni kattalashtirish" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgid "&Shrink Font" msgid "Shrink Font" msgstr "Shriftni &kichiklashtirish" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Shriftni kattalashtirish" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "&Signal joʻnatish" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Vazifani &davom etish" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Vazifani q&aytadan yuklash" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, fuzzy, kde-format #| msgid "&Continue Task" msgid "&Interrupt Task" msgstr "Vazifani &davom etish" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminate Task" msgstr "Terminal e&mulyatorni yopish" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Foydalanuvchining signali &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Foydalanuvchining signali &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Yangi profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Joriy profilni tahrirlash..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Yopishni tasdiqlash" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "Tabni &yopish" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "ZModem yo&zib qoʻyish" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

              A ZModem file transfer attempt has been detected, but no suitable " @@ -2588,7 +2680,7 @@ msgstr "" "topilmadi.\n" "

              \"rzsz\" yoki \"lrzsz\" dasturini oʻrnatishingiz kerak.\n" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, fuzzy, kde-format #| msgid "" #| "

              The current session already has a ZModem file transfer in progress." @@ -2596,7 +2688,7 @@ msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Joriy seansda ZModem fayl uzatishi allaqachon davom etayapti." -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

              No suitable ZModem software was found on the system.\n" @@ -2608,7 +2700,7 @@ msgstr "" "

              Tizimda kerak boʻlgan ZModem dasturi topilmadi.\n" "

              \"rzsz\" yoki \"lrzsz\" dasturini oʻrnatishingiz kerak.\n" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, fuzzy, kde-format #| msgid "Select Files to Upload" msgid "Select Files for ZModem Upload" @@ -2635,148 +2727,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "Yopishni tasdiqlash" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Oynaning sarlavhasini aniqlash" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "&Doimiy ifoda sifatida" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" -msgstr "Seansni &yopish" +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Oynaning sarlavhasini aniqlash" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgid "Force new tabs" +msgstr "Seansni &ajratish" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "Tizimning &xabarnomasi" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "Seansni &yopish" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "&Doimiy ifoda sifatida" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2801,72 +2920,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "Seansni &yopish" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2874,91 +3031,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2970,26 +3133,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3159,108 +3320,127 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Yoʻq" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "Tabni &yopish" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "Tabni &yopish" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Joriy tabni yopish" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split &View" msgid "Splits" msgstr "Koʻr&inishni boʻlish" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Menyular panelini koʻrsatish" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3268,14 +3448,14 @@ msgid "Small" msgstr "Kichik" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3283,7 +3463,7 @@ msgid "Large" msgstr "Katta" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3336,8 +3516,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3377,97 +3557,97 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Oʻlcham: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, fuzzy, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Joriy seansni yopishga ishonchingiz komilmi?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Yopishni tasdiqlash" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Yopishni tasdiqlash" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Belgilanganni qoʻyish" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Belgilanganni qoʻyish" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split &View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Koʻr&inishni boʻlish" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Shriftni kichiklashtirish" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Shriftni kichiklashtirish" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Shriftni kichiklashtirish" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Shriftni kichiklashtirish" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Shriftni kichiklashtirish" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Shriftni kichiklashtirish" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Shriftni kichiklashtirish" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Joriy tabni yopish" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Joriy tabni yopish" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&Yangi tab" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Oldingi" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Terminal emulyatori" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Terminal emulyatori" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Terminal emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Terminal emulyatori" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Terminal emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Terminal emulyatori" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Tabga oʻtish" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "M&ove Session Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Sea&nsni oʻngga surish" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Seansni chapga s&urish" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Tabga oʻtish" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic hints " msgstr "Soʻzlarni bogʻlovchilar" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line numbers " msgstr "Sa&trlar soni: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Seansni chapga s&urish" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3752,7 +3946,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3760,13 +3954,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3863,29 +4057,41 @@ msgstr "Kodlash usuli" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line Numbers:" msgstr "Sa&trlar soni: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3923,7 +4129,7 @@ msgstr "Mavjud profillarning roʻyxatini koʻrsatish" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3980,12 +4186,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4107,31 +4319,46 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "Yoq&ish" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Menyuni aktivlashtirish" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Oyna" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4139,25 +4366,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4165,27 +4392,27 @@ msgid "Color:" msgstr "Rang" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "Terminalning oʻlchamini oʻzgartirib boʻlmaydi" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "Terminalning oʻlchamini oʻzgartirib boʻlmaydi" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title:group" @@ -4193,95 +4420,95 @@ msgid "Terminal contents" msgstr "Terminal e&mulyatorni yopish" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "&Satrlar orasidagi masofa" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4289,44 +4516,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Shrift" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4334,99 +4561,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Profilni tahrirlash" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Umumiy" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Tablar" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Koʻrinishi" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Varaqlash" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "&Tugmatag" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Key bindings" msgstr "&Kodlash usuli" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Qoʻshimcha" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4435,13 +4662,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4452,37 +4679,43 @@ msgstr "" "Bunday nomli fayl allaqachon mavjud.\n" "Uni almashtirishni istaysizmi?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "\"%1\" profilini tahrirlash" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Yangi profil..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" profilini tahrirlash" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "N&one" +msgid "None" +msgstr "&Yoʻq" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4491,7 +4724,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4500,90 +4733,90 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "&Tizim tovush signali" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "Tizimning &xabarnomasi" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "&Koʻrinadigan signal" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "List the available profiles" msgid "Default profile for new terminal sessions in %1" msgstr "Mavjud profillarning roʻyxatini koʻrsatish" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Muhitni tahrirlash" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Boshlangʻich direktoriyani tanlash" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Yangi..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Profilni oʻchirish" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4600,7 +4833,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4692,27 +4925,54 @@ msgstr "Boshlangʻich direktoriya:" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Muhit:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "Terminalning oʻlchamini oʻzgartirib boʻlmaydi" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4722,33 +4982,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Terminal emulyatori" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic Integration" msgstr "Soʻzlarni bogʻlovchilar" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4758,9 +5018,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4771,9 +5031,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4784,35 +5044,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Orqa fon" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5158,44 +5418,87 @@ msgid "Scrollback:" msgstr "Varaqlash panelini bekitish" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Bekitish" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab &Options" -msgid "Scrollbar position:" -msgstr "Tab ¶metrlari" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" @@ -5203,7 +5506,7 @@ msgstr "" "koʻrsatiladi" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5211,7 +5514,7 @@ msgid "Ri&ght side" msgstr "Oʻng tarafda koʻrsatish" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" @@ -5219,61 +5522,30 @@ msgstr "" "koʻrsatiladi" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Matnning oʻlchami:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Bekitish" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab &Options" +msgid "Scrollbar position:" +msgstr "Tab ¶metrlari" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5375,121 +5647,121 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Yoʻq" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Qidirish:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Keyingi" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Oldingi" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Seansni &yopish" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Seansni &yopish" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Seansni &yopish" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "&Doimiy ifoda sifatida" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5501,7 +5773,7 @@ msgstr "" msgid "Print Shell" msgstr "&Sarlavhani bosib chiqarish" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@label:listbox No color selected" @@ -5541,6 +5813,13 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Rang" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Tabning &rangini tanlash" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5648,41 +5927,54 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Terminalni &tozalash" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Seansni &ajratish" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Seansni &ajratish" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Tabni &yopish" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Seansni &ajratish" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Tabning &nomini oʻzgartirish..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Tabni &yopish" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Seansni &yopish" + #, fuzzy #~| msgid "N&one" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6040,11 +6332,6 @@ msgstr "Tabni &yopish" #~ msgid "Decrease Text Size" #~ msgstr "Shriftni kattalashtirish" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "Tarixni &boʻshatish" - #~ msgid "Find Next" #~ msgstr "Keyingini qidirish" @@ -6065,9 +6352,6 @@ msgstr "Tabni &yopish" #~ msgid "New" #~ msgstr "Yangi" -#~ msgid "Select &Tab Color" -#~ msgstr "Tabning &rangini tanlash" - #, fuzzy #~| msgid "Transparent, Dark Background" #~ msgid "Enable transparent backgrounds" @@ -6409,9 +6693,6 @@ msgstr "Tabni &yopish" #~ msgid "Overwrite" #~ msgstr "Almashtirish" -#~ msgid "Unable to write to file." -#~ msgstr "Faylga yozib boʻlmadi." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/uz@cyrillic/konsole.po b/local/recipes/kde/konsole/source/po/uz@cyrillic/konsole.po index 0b71d041bc..775fc44056 100644 --- a/local/recipes/kde/konsole/source/po/uz@cyrillic/konsole.po +++ b/local/recipes/kde/konsole/source/po/uz@cyrillic/konsole.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2008-06-04 01:01+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -53,7 +53,7 @@ msgstr "&Кўриниш" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Split &View" msgid "Split View" @@ -93,7 +93,7 @@ msgid "S&crollback" msgstr "Варақлаш панелини бекитиш" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -173,47 +173,59 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Мавжуд профилларнинг рўйхатини кўрсатиш" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -221,7 +233,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,14 +241,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments for 'command'" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "'буйруқ' учун аргумент" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "transparency" msgctxt "@item" @@ -257,201 +269,201 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Олдин фон" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Орқа фон" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Ранг 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Ранг 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Ранг 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Ранг 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Ранг 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Ранг 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Ранг 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Ранг 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Шаффофлик" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Шаффофлик" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Шаффофлик" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Шаффофлик" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Ранг 1" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Ранг 2" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Ранг 3" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Ранг 4" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Ранг 5" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Ранг 6" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Ранг 7" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Ранг 8" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -715,6 +727,39 @@ msgstr "Юқ&орига" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Хост:" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Терминал андозаси" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -759,7 +804,7 @@ msgstr "" msgid "Copy Location" msgstr "Белгиланганни қўйиш" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -791,13 +836,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Шрифтни таҳрирлаш..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -836,17 +881,17 @@ msgstr "Ёпишни тасдиқлаш" msgid "Output" msgstr "Тарихни сақлаш" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -854,7 +899,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -888,235 +933,235 @@ msgstr "" msgid "Output:" msgstr "Тарихни сақлаш" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Терминал" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Терминал эмулятори" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Терминал эмулятори" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Хатоларни тузатиш" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Тарихни сақлаб бўлмади." -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "хатоларни тузатиш ва яхшилаш" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1124,13 +1169,13 @@ msgid "" "Toolbar and session names" msgstr "" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" @@ -1139,25 +1184,25 @@ msgid "" "General improvements" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" @@ -1166,144 +1211,144 @@ msgid "" "General improvements" msgstr "Хатоларни тузатиш ва яхшилаш" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "қолип ва танлашни яхшилаш" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "SGI'га ўтказиш" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD'га ўтказиш" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Қолган бошқаларга ҳам раҳмат.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Янги таб" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Табни &ёпиш" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Янги ойна" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Терминал" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Хатчўплар" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "List the available profiles" msgid "&Window Color Scheme" msgstr "Мавжуд профилларнинг рўйхатини кўрсатиш" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Профилларни бошқариш" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Менюни активлаштириш" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Сеансни чапга с&уриш" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1311,73 +1356,73 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Ёпишни тасдиқлаш" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Терминал" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Жорий табни ёпиш" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Янги профил" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Умумий" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, fuzzy, kde-format #| msgid "Tab &Options" msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "Таб &параметрлари" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1465,7 +1510,7 @@ msgstr "Боғни очиш" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1477,29 +1522,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Буйруқ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Буйруқ:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1539,7 +1584,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1595,11 +1640,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1661,93 +1706,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Ўлчамни мослаш" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "List the available profiles" msgid "Delete selected entry" @@ -1948,25 +1993,25 @@ msgstr "Таб &параметрлари" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Принтер учун қулай усул (кора матн, орқа фонсиз)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2028,17 +2073,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Тарихни сақлаш" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Файлга ёзиб бўлмади." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2074,506 +2141,531 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Қорада яшил" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux ранглари" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Қорада оқ" -#: schemas.cpp:10 +#: schemas.cpp:11 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized" msgstr "Solaris" -#: schemas.cpp:11 +#: schemas.cpp:12 #, fuzzy, kde-format #| msgid "Solaris" msgid "Solarized Light" msgstr "Solaris" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Қорада оқ" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Андоза (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux терминали" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris терминали" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Тарихни &бўшатиш" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Тарихни сақлаб бўлмади." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Янги сеанс" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Тугади" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Session '%1' exited unexpectedly." msgid "Program '%1' crashed." msgstr "Сеанс \"%1\" кутилмаганда тугади." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "'%1' дастури %2 ҳолати билан тугади." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Терминал" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Матн (%1) топилмади." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Профилларни бошқариш..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "Сеансни &ёпиш" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Нусха олиш" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Left-Right" msgstr "Шрифтни кичиклаштириш" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Shrink Font" msgid "Split View Top-Bottom" msgstr "Шрифтни кичиклаштириш" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Белгиланганни қўйиш" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Ҳаммасини танлаш" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Танлаш" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Танлаш" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "Тарихни сақлаш" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "Тарихни сақлаш" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "&Экранни босиб чиқариш" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Профилларни бошқариш..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Do not display scrollbar" msgid "Clear Scrollback" msgstr "Варақлаш панелини бекитиш" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear &History" msgid "Clear Scrollback and Reset" msgstr "Тарихни &бўшатиш" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Профилни таҳрирлаш" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous" msgid "Previous Profile" msgstr "Олдинги" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Профилни таҳрирлаш" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Set &Encoding" msgstr "&Кодлаш усули" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "Табнинг &номини ўзгартириш..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "Select &Tab Color..." msgid "&Select Tabs..." msgstr "Табнинг &рангини танлаш" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Йўқ" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ZModem ё&зиб қўйиш" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "Шрифтни катталаштириш" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgid "&Shrink Font" msgid "Shrink Font" msgstr "Шрифтни &кичиклаштириш" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Шрифтни катталаштириш" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "&Сигнал жўнатиш" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "Вазифани &давом этиш" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "Вазифани қ&айтадан юклаш" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, fuzzy, kde-format #| msgid "&Continue Task" msgid "&Interrupt Task" msgstr "Вазифани &давом этиш" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminate Task" msgstr "Терминал э&муляторни ёпиш" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Фойдаланувчининг сигнали &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Фойдаланувчининг сигнали &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Янги профил..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Жорий профилни таҳрирлаш..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Ёпишни тасдиқлаш" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "Табни &ёпиш" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "ZModem ё&зиб қўйиш" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, fuzzy, kde-format #| msgid "" #| "

              A ZModem file transfer attempt has been detected, but no suitable " @@ -2588,7 +2680,7 @@ msgstr "" "топилмади.\n" "

              \"rzsz\" ёки \"lrzsz\" дастурини ўрнатишингиз керак.\n" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, fuzzy, kde-format #| msgid "" #| "

              The current session already has a ZModem file transfer in progress." @@ -2596,7 +2688,7 @@ msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              Жорий сеансда ZModem файл узатиши аллақачон давом этаяпти." -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, fuzzy, kde-format #| msgid "" #| "

              No suitable ZModem software was found on the system.\n" @@ -2608,7 +2700,7 @@ msgstr "" "

              Тизимда керак бўлган ZModem дастури топилмади.\n" "

              \"rzsz\" ёки \"lrzsz\" дастурини ўрнатишингиз керак.\n" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, fuzzy, kde-format #| msgid "Select Files to Upload" msgid "Select Files for ZModem Upload" @@ -2635,148 +2727,175 @@ msgctxt "@title:window" msgid "Configure" msgstr "Ёпишни тасдиқлаш" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Ойнанинг сарлавҳасини аниқлаш" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "&Доимий ифода сифатида" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" -msgstr "Сеансни &ёпиш" +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Ойнанинг сарлавҳасини аниқлаш" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgid "Force new tabs" +msgstr "Сеансни &ажратиш" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, fuzzy, kde-format #| msgid "System &Notification" msgid "Notifications:" msgstr "Тизимнинг &хабарномаси" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "Сеансни &ёпиш" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "&Доимий ифода сифатида" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2801,72 +2920,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "Сеансни &ёпиш" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2874,91 +3031,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2970,26 +3133,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3159,108 +3320,127 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Йўқ" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "Табни &ёпиш" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "Табни &ёпиш" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Жорий табни ёпиш" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split &View" msgid "Splits" msgstr "Кўр&инишни бўлиш" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Менюлар панелини кўрсатиш" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3268,14 +3448,14 @@ msgid "Small" msgstr "Кичик" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3283,7 +3463,7 @@ msgid "Large" msgstr "Катта" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3336,8 +3516,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3377,97 +3557,97 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Ўлчам: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, fuzzy, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Жорий сеансни ёпишга ишончингиз комилми?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Ёпишни тасдиқлаш" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Ёпишни тасдиқлаш" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Белгиланганни қўйиш" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
              to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Белгиланганни қўйиш" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split &View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Кўр&инишни бўлиш" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Шрифтни кичиклаштириш" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Шрифтни кичиклаштириш" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Шрифтни кичиклаштириш" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Шрифтни кичиклаштириш" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Шрифтни кичиклаштириш" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Шрифтни кичиклаштириш" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format #| msgid "Shrink Font" msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Шрифтни кичиклаштириш" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Жорий табни ёпиш" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Жорий табни ёпиш" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&Янги таб" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Олдинги" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Терминал эмулятори" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Терминал эмулятори" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Terminal emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Терминал эмулятори" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Terminal emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Терминал эмулятори" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Табга ўтиш" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "M&ove Session Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Сеа&нсни ўнгга суриш" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Сеансни чапга с&уриш" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Табга ўтиш" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic hints " msgstr "Сўзларни боғловчилар" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line numbers " msgstr "Са&трлар сони: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Сеансни чапга с&уриш" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3752,7 +3946,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3760,13 +3954,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3863,29 +4057,41 @@ msgstr "Кодлаш усули" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "&Number of lines: " msgid "Line Numbers:" msgstr "Са&трлар сони: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3923,7 +4129,7 @@ msgstr "Мавжуд профилларнинг рўйхатини кўрсат #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3980,12 +4186,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4107,31 +4319,46 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "Ёқ&иш" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Менюни активлаштириш" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Ойна" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4139,25 +4366,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4165,27 +4392,27 @@ msgid "Color:" msgstr "Ранг" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Inactive Terminals:" msgstr "Терминалнинг ўлчамини ўзгартириб бўлмайди" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Active Terminals:" msgstr "Терминалнинг ўлчамини ўзгартириб бўлмайди" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title:group" @@ -4193,95 +4420,95 @@ msgid "Terminal contents" msgstr "Терминал э&муляторни ёпиш" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "&Сатрлар орасидаги масофа" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4289,44 +4516,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Шрифт" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4334,99 +4561,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Профилни таҳрирлаш" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Умумий" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Таблар" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Кўриниши" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Варақлаш" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "&Тугматаг" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "&Encoding" msgid "Key bindings" msgstr "&Кодлаш усули" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Қўшимча" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4435,13 +4662,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4452,37 +4679,43 @@ msgstr "" "Бундай номли файл аллақачон мавжуд.\n" "Уни алмаштиришни истайсизми?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "\"%1\" профилини таҳрирлаш" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Янги профил..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "\"%1\" профилини таҳрирлаш" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "N&one" +msgid "None" +msgstr "&Йўқ" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4491,7 +4724,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4500,90 +4733,90 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Bell" msgid "System Bell" msgstr "&Тизим товуш сигнали" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "System &Notification" msgid "System Notifications" msgstr "Тизимнинг &хабарномаси" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "&Кўринадиган сигнал" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "List the available profiles" msgid "Default profile for new terminal sessions in %1" msgstr "Мавжуд профилларнинг рўйхатини кўрсатиш" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Муҳитни таҳрирлаш" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Бошланғич директорияни танлаш" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Янги..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Профилни ўчириш" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4600,7 +4833,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4692,27 +4925,54 @@ msgstr "Бошланғич директория:" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Муҳит:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal size is fixed" msgid "Initial terminal si&ze:" msgstr "Терминалнинг ўлчамини ўзгартириб бўлмайди" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4722,33 +4982,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Терминал эмулятори" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic Integration" msgstr "Сўзларни боғловчилар" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4758,9 +5018,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4771,9 +5031,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4784,35 +5044,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Орқа фон" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5158,51 +5418,94 @@ msgid "Scrollback:" msgstr "Варақлаш панелини бекитиш" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Бекитиш" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab &Options" -msgid "Scrollbar position:" -msgstr "Таб &параметрлари" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" "Агар белгиланса, варақлаш панели терминал ойнанинг ўнг тарафида кўрсатилади" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5210,68 +5513,37 @@ msgid "Ri&ght side" msgstr "Ўнг тарафда кўрсатиш" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" "Агар белгиланса, варақлаш панели терминал ойнанинг чап тарафида кўрсатилади" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Матннинг ўлчами:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Бекитиш" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab &Options" +msgid "Scrollbar position:" +msgstr "Таб &параметрлари" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5373,121 +5645,121 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Йўқ" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Қидириш:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Кейинги" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Олдинги" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Сеансни &ёпиш" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Сеансни &ёпиш" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Сеансни &ёпиш" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "&Доимий ифода сифатида" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5499,7 +5771,7 @@ msgstr "" msgid "Print Shell" msgstr "&Сарлавҳани босиб чиқариш" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "N&one" msgctxt "@label:listbox No color selected" @@ -5539,6 +5811,13 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Ранг" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Табнинг &рангини танлаш" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5646,41 +5925,54 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Терминални &тозалаш" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "Сеансни &ажратиш" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "Сеансни &ажратиш" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Табни &ёпиш" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "Сеансни &ажратиш" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Табнинг &номини ўзгартириш..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Табни &ёпиш" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Сеансни &ёпиш" + #, fuzzy #~| msgid "N&one" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6037,11 +6329,6 @@ msgstr "Табни &ёпиш" #~ msgid "Decrease Text Size" #~ msgstr "Шрифтни катталаштириш" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "Тарихни &бўшатиш" - #~ msgid "Find Next" #~ msgstr "Кейингини қидириш" @@ -6062,9 +6349,6 @@ msgstr "Табни &ёпиш" #~ msgid "New" #~ msgstr "Янги" -#~ msgid "Select &Tab Color" -#~ msgstr "Табнинг &рангини танлаш" - #, fuzzy #~| msgid "Transparent, Dark Background" #~ msgid "Enable transparent backgrounds" @@ -6403,9 +6687,6 @@ msgstr "Табни &ёпиш" #~ msgid "Overwrite" #~ msgstr "Алмаштириш" -#~ msgid "Unable to write to file." -#~ msgstr "Файлга ёзиб бўлмади." - #~ msgid "" #~ "A ZModem file transfer attempt has been detected.\n" #~ "Please specify the folder you want to store the file(s):" diff --git a/local/recipes/kde/konsole/source/po/vi/konsole.po b/local/recipes/kde/konsole/source/po/vi/konsole.po index 768262299a..27ee9e49d3 100644 --- a/local/recipes/kde/konsole/source/po/vi/konsole.po +++ b/local/recipes/kde/konsole/source/po/vi/konsole.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2007-06-24 15:01+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -53,7 +53,7 @@ msgstr "Xem kế" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format #| msgid "Shrink View" msgid "Split View" @@ -91,7 +91,7 @@ msgid "S&crollback" msgstr "Không cuộn ngược" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Name" msgid "Session Toolbar" @@ -178,22 +178,34 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "" #| "The background transparency setting will not be used because your desktop " @@ -204,27 +216,27 @@ msgstr "" "Thiết lập độ trong suốt của nền sẽ không được dùng vì môi trường của bạn có " "vẻ là không hỗ trợ cửa sổ trong suốt." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Liệt kê các hồ sơ sẵn sàng" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the shape of the cursor" msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Thay đổi hình của con chạy" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -232,7 +244,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -240,13 +252,13 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background transparency:" msgctxt "@item" @@ -267,201 +279,201 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Background color:" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Màu nền:" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background color:" msgctxt "@item:intable palette" msgid "Background" msgstr "Màu nền:" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Background transparency:" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Độ trong suốt của nền:" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background transparency:" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Độ trong suốt của nền:" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Background transparency:" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Độ trong suốt của nền:" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background transparency:" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Độ trong suốt của nền:" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Màu" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -733,6 +745,39 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "Làm mặc định" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, fuzzy, kde-format #| msgid "Input" @@ -780,7 +825,7 @@ msgstr "" msgid "Copy Location" msgstr "Tuỳ chọn con chạy" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -812,13 +857,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "Sửa phông..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -856,17 +901,17 @@ msgstr "Tổ hợp phím" msgid "Output" msgstr "Kết xuất" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Danh sách tổ hợp phím mới" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Sửa danh sách tổ hợp phím" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -874,7 +919,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -909,237 +954,237 @@ msgstr "Vào:" msgid "Output:" msgstr "Ra:" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Bộ mô phỏng thiết bị cuối" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "Sửa chữa lỗi và cải tiến chung" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Bộ mô phỏng thiết bị cuối" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "Sửa chữa lỗi và cải tiến chung" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "Sửa chữa lỗi và cải tiến chung" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "Sửa chữa lỗi và cải tiến chung" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Sửa chữa lỗi và cải tiến chung" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Sửa chữa lỗi" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Hỗ trợ Solaris và lịch sử" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Sửa chữa lỗi và cải tiến hiệu suất khởi chạy" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "Cải tiến đánh dấu" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1152,13 +1197,13 @@ msgstr "" "Konsole nhúng\n" "Tên thanh công cụ và phiên chạy" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1171,26 +1216,26 @@ msgstr "" "Konsole nhúng\n" "Cải tiến chung" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Hiệu ứng hiển thị" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1203,144 +1248,144 @@ msgstr "" "Mã từ dự án kvt\n" "Cải tiến chung" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Cải tiến giản đồ và cách chọn văn bản" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "Chuyển sang SGI" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Chuyển sang FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Cám ơn rất nhiều người khác.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Thẻ mới" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "Đón&g thẻ" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "&Cửa sổ mới" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Liên kết lưu" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Giản đồ màu mới" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Quản lí hồ sơ" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move Here" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Chuyển vào đây" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1348,71 +1393,71 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Đón&g thẻ" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Hồ sơ mới" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Chung" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1501,7 +1546,7 @@ msgstr "Tựa thẻ" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1513,29 +1558,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Lệnh:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Lệnh:" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1575,7 +1620,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1630,11 +1675,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1695,92 +1740,92 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile" msgid "Delete selected entry" @@ -1981,25 +2026,25 @@ msgstr "Tuỳ chọn" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "&Chế độ máy in thân thiện (chữ đen, không nền)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2063,18 +2108,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format #| msgid "Save Output from %1" msgid "Save Output From %1" msgstr "Lưu kết xuất từ %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 là địa chỉ URL không hợp lệ nên không thể lưu kết xuất." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2112,515 +2178,540 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 +#, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 #, fuzzy, kde-format #| msgid "White on Black" msgid "Green on Black" msgstr "Trắng trên đen" # msgid "linux console" -#: schemas.cpp:8 +#: schemas.cpp:9 #, fuzzy, kde-format #| msgid "Linux console" msgid "Linux Colors" msgstr "Bàn giao tiếp Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Trắng trên đen" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Trắng trên đen" # msgid "XTerm (XFree 4.x.x)" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Mặc định (XFree 4)" # msgid "linux console" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Bàn giao tiếp Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" # msgid "linux console" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Bàn giao tiếp Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Tiếng chuông trong phiên chạy '%1'" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Không có hoạt động trong phiên chạy '%1'" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgid "Session '%1' exited unexpectedly." msgid "Program '%1' crashed." msgstr "Phiên chạy '%1' thoát ra bất ngờ." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, fuzzy, kde-format #| msgid "Session '%1' exited with status %2." msgid "Program '%1' exited with status %2." msgstr "Phiên chạy '%1' thoát ra với trạng thái %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Tiến trình ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Hoạt động trong phiên chạy '%1'" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Quản lí hồ sơ..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Chép" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Chia ô xem trái/phải" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Chia ô xem trên/xuống" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Input" msgid "Copy user input" msgstr "Kết nhập" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Input" msgid "Copy command output" msgstr "Kết nhập" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select" msgid "&Select All" msgstr "Chọn" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Chọn" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Chọn" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "Lưu kết xuất..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "Lưu kết xuất..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Quản lí hồ sơ..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Xoá vùng cuộn ngược" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "Xoá vùng cuộn ngược và đặt lại" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Sửa hồ sơ" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous" msgid "Previous Profile" msgstr "Lùi" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Sửa hồ sơ" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Bảng mã" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "Tha&y tên thẻ..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Select Tabs..." msgstr "Tha&y tên thẻ..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, fuzzy, kde-format #| msgid "Input" msgid "Copy Input To" msgstr "Kết nhập" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Theo dõi các &hoạt động" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Theo dõi các &hoạt động" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Theo dõi sự &nghỉ" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Theo dõi các &hoạt động" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgid "Shrink View" msgid "Shrink Font" msgstr "Thu nhỏ ô xem" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Tăng cỡ văn bản" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "Đón&g thẻ" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Tính năng thiết bị cuối" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Hồ sơ mới..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Sửa hồ sơ hiện thời..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "Đón&g thẻ" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2628,20 +2719,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2666,147 +2757,174 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Theo biểu thức chính quy" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Tô sáng tất cả" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Sets whether the search is case sensitive" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, fuzzy, kde-format -#| msgid "Close Active" -msgid "Case sensitive" -msgstr "Đóng điều hoạt động" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Remember window size" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Nhập vào tên thẻ mới:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Process and window:" +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "Close Active" +msgid "Case sensitive" +msgstr "Đóng điều hoạt động" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Tô sáng tất cả" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Theo biểu thức chính quy" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2831,73 +2949,111 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Close Active" msgid "Search is case sensitive" msgstr "Đóng điều hoạt động" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Tô sáng tất cả" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2905,92 +3061,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Dùng màu riêng cố định cho con chạy" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3002,26 +3164,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3189,110 +3349,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "Đón&g thẻ" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "Đón&g thẻ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Use a custom, fixed color for the cursor" msgid "Use user-defined stylesheet:" msgstr "Dùng màu riêng cố định cho con chạy" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Nhập vào tên thẻ mới:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "After current &tab" msgstr "Đón&g thẻ" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Shrink View" msgid "Splits" msgstr "Thu nhỏ ô xem" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Hiện thanh trình đơn" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3300,14 +3479,14 @@ msgid "Small" msgstr "Nhỏ" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3315,7 +3494,7 @@ msgid "Large" msgstr "Lớn" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3368,8 +3547,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3409,96 +3588,96 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Cỡ: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgctxt "@action:button" msgid "Paste &without control characters" msgstr "Đặt con chạy để khớp với màu của kí tự hiện thời" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "&Paste" msgctxt "@action:button" msgid "&Paste everything" msgstr "&Dán" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been
              Kết xuất bị ngưng bằng " "cách bấm tổ hợp phím Ctrl+S. Hãy bấm Ctrl+Q để tiếp tục lại." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format #| msgid "Change Directory" msgid "Change &Directory To" msgstr "Đổi thư mục" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "&Paste" msgid "&Paste Location" msgstr "&Dán" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Shrink View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Thu nhỏ ô xem" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format #| msgid "Split View Left/Right" msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Chia ô xem trái/phải" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format #| msgid "Split View Top/Bottom" msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Chia ô xem trên/xuống" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgid "Split View Top/Bottom" msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Chia ô xem trên/xuống" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgid "Split View Left/Right" msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Chia ô xem trái/phải" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgid "Split View Top/Bottom" msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Chia ô xem trên/xuống" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgid "Split View Top/Bottom" msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Chia ô xem trên/xuống" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, fuzzy, kde-format #| msgid "Expand View" msgctxt "@action:inmenu" msgid "Expand View" msgstr "Phóng to ô xem" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format #| msgid "Shrink View" msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Thu nhỏ ô xem" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Đón&g thẻ" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Đón&g thẻ" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&Thẻ mới" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Lùi" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above terminal displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Bên trên cửa sổ dòng lệnh" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below terminal displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Bên dưới cửa sổ dòng lệnh" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above terminal displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Bên trên cửa sổ dòng lệnh" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below terminal displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Bên dưới cửa sổ dòng lệnh" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Split View Left/Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Chia ô xem trái/phải" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move Here" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Chuyển vào đây" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Interaction Options" msgid "Semantic hints " msgstr "Tuỳ chọn tương tác" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move Here" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Chuyển vào đây" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3792,7 +3985,7 @@ msgstr "" "Gặp lỗi khi lưu kết xuất.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3805,13 +3998,13 @@ msgstr "" "Gặp lỗi khi lưu kết xuất.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3910,29 +4103,41 @@ msgstr "Bảng mã kí tự mặc định:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Name" msgid "Line Numbers:" msgstr "Tên" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3970,7 +4175,7 @@ msgstr "Sửa giản đồ màu đã chọn" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4027,12 +4232,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4161,30 +4372,46 @@ msgid "Make the cursor blink regularly" msgstr "Làm cho con chạy chớp đều đặn" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "Mô tả:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Làm cho con chạy chớp đều đặn" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "New &Window" msgid "Window:" msgstr "&Cửa sổ mới" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4192,25 +4419,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4218,28 +4445,28 @@ msgid "Color:" msgstr "Màu" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Chọn màu dùng để vẽ con chạy" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "Tính năng thiết bị cuối" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "Tính năng thiết bị cuối" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4247,94 +4474,94 @@ msgid "Terminal contents" msgstr "Tính năng thiết bị cuối" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4342,45 +4569,45 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Brahmic scripts characters" msgstr "Đặt con chạy để khớp với màu của kí tự hiện thời" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Phông" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4388,99 +4615,99 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, fuzzy, kde-format #| msgid "Set cursor color to match current character" msgid "Ignore wcwidth of problematic characters" msgstr "Đặt con chạy để khớp với màu của kí tự hiện thời" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Sửa hồ sơ" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Chung" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Thẻ" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Diện mạo" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Cuộn qua" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Tổ hợp phím" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Cấp cao" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4489,49 +4716,54 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Edit Profile \"%1\"" msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Sửa hồ sơ « %1 »" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Hồ sơ mới..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Sửa hồ sơ « %1 »" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4540,7 +4772,7 @@ msgid " column" msgid_plural " columns" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4549,89 +4781,89 @@ msgid " row" msgid_plural " rows" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Paste" msgid "System Notifications" msgstr "&Dán" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "Hiệu ứng hiển thị" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" msgstr "Đặt hồ sơ đã chọn làm mặc định cho các phiên chạy thiết bị cuối mới" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Sửa môi trường" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Chọn thư mục đầu tiên" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Mới..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Xoá hồ sơ" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4648,7 +4880,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4741,27 +4973,54 @@ msgstr "Duyệt tới thư mục đầu tiên" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Môi trường:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Tính năng thiết bị cuối" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4771,33 +5030,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Bộ mô phỏng thiết bị cuối" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Interaction Options" msgid "Semantic Integration" msgstr "Tuỳ chọn tương tác" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4807,9 +5066,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4820,9 +5079,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4833,35 +5092,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background color:" msgid "Red error background:" msgstr "Màu nền:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background color:" msgid "Alternating background:" @@ -5217,50 +5476,93 @@ msgid "Scrollback:" msgstr "Không cuộn ngược" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Ẩn" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Vị trí thanh thẻ:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Hiển thị thanh cuộn bên phải cửa sổ thiết bị cuối" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5268,67 +5570,36 @@ msgid "Ri&ght side" msgstr "Hiện bên phải" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Hiển thị thanh cuộn bên trái cửa sổ thiết bị cuối" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Cỡ văn bản:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Ẩn" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Vị trí thanh thẻ:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5430,122 +5701,122 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Tìm:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Kế" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Lùi" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "Close Active" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "Đóng điều hoạt động" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "Close Others" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "Đóng các điều khác" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "Close Active" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "Đóng điều hoạt động" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Theo biểu thức chính quy" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Tô sáng tất cả" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5557,7 +5828,7 @@ msgstr "" msgid "Print Shell" msgstr "Đầu đọ&c in" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5603,6 +5874,13 @@ msgstr "Định dạng tựa thẻ chuẩn" msgid "Tab Co&lor:" msgstr "Màu" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Color" +msgid "&Activity Tab Color:" +msgstr "Màu" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program name" @@ -5717,41 +5995,54 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "Đón&g thẻ" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Gỡ ra ô xem" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Gỡ ra ô xem" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Đón&g thẻ" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Gỡ ra ô xem" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "Tha&y tên thẻ..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "Đón&g thẻ" +#, fuzzy +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Đóng điều hoạt động" + #, fuzzy #~| msgid "Tab Titles" #~ msgctxt "@title:window" diff --git a/local/recipes/kde/konsole/source/po/wa/konsole.po b/local/recipes/kde/konsole/source/po/wa/konsole.po index ab4faf3ed3..8182e4be3a 100644 --- a/local/recipes/kde/konsole/source/po/wa/konsole.po +++ b/local/recipes/kde/konsole/source/po/wa/konsole.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2010-01-22 15:02+0100\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" @@ -52,7 +52,7 @@ msgstr "Vey" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "Dispårti l' vuwe" @@ -88,7 +88,7 @@ msgid "S&crollback" msgstr "&Erôlaedje en erî" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session Number" msgid "Session Toolbar" @@ -183,22 +183,34 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 +#, kde-format +msgctxt "@info:shell" +msgid "Hide the tabbar, overriding the default setting" +msgstr "" + +#: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 #, fuzzy, kde-format #| msgid "" #| "The background transparency setting will not be used because your desktop " @@ -209,27 +221,27 @@ msgstr "" "L' apontiaedje pol fond k' on voet houte ni serè nén eployî la ki vosse " "sicribanne ni sopoite nén les purneas k' on voet houte." -#: Application.cpp:72 +#: Application.cpp:74 #, fuzzy, kde-format #| msgid "List the available profiles" msgctxt "@info:shell" msgid "List the available profiles" msgstr "Djivêye des profils k' i gn a" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, fuzzy, kde-format #| msgid "Change the value of a profile property." msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "Candjî l' valixhance d' ene prôpieté do profil." -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -237,7 +249,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -245,14 +257,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments passed to command" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Årgumints passés al comande" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "Background (Intense)" msgctxt "@item" @@ -273,217 +285,217 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 #, fuzzy #| msgid "Foreground" msgctxt "@item:intable palette" msgid "Foreground" msgstr "Divant" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "Background" msgctxt "@item:intable palette" msgid "Background" msgstr "Fond" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "Color 1" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Coleur 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "Color 2" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Coleur 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "Color 3" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Coleur 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "Color 4" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Coleur 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "Color 5" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Coleur 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "Color 6" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Coleur 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "Color 7" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Coleur 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "Color 8" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Coleur 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "Divant (intinse)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "Fond (intinse)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "Coleur 1 (intinse)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "Coleur 2 (intinse)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "Coleur 3 (intinse)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "Coleur 4 (intinse)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "Coleur 5 (intinse)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "Coleur 6 (intinse)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "Coleur 7 (intinse)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "Coleur 8 (intinse)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "Foreground (Intense)" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "Divant (intinse)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "Background (Intense)" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "Fond (intinse)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "Color 1 (Intense)" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Coleur 1 (intinse)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "Color 2 (Intense)" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Coleur 2 (intinse)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "Color 3 (Intense)" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Coleur 3 (intinse)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "Color 4 (Intense)" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Coleur 4 (intinse)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "Color 5 (Intense)" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Coleur 5 (intinse)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "Color 6 (Intense)" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Coleur 6 (intinse)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "Color 7 (Intense)" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Coleur 7 (intinse)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "Color 8 (Intense)" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Coleur 8 (intinse)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, fuzzy, kde-format #| msgid "Un-named Color Scheme" msgctxt "@item" @@ -753,6 +765,40 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, fuzzy, kde-format +#| msgid "Host:" +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "Lodjoe :" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +#| msgid "Set as Default" +msgid " [default]" +msgstr "Mete come prémetou" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -797,7 +843,7 @@ msgstr "" msgid "Copy Location" msgstr "Tchuzes do cursoe" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -829,14 +875,14 @@ msgctxt "@title:window" msgid "Select font" msgstr "Candjî l' fonte..." -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, fuzzy, kde-format #| msgid "Smooth fonts" msgctxt "@action:button" msgid "Show all fonts" msgstr "Fontes radoûceyes" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -874,17 +920,17 @@ msgstr "Combinåcion d' tapes" msgid "Output" msgstr "Rexhowe" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "Novele djivêye d' assoçnaedje di tapes" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "Candjî l' djivêye d' assoçnaedje di tapes" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -892,7 +938,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -926,249 +972,249 @@ msgstr "Intrêye :" msgid "Output:" msgstr "Rexhowe :" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "Emulateu d' terminå" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, fuzzy, kde-format #| msgid "Kurt V. Hindenburg" msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt V. Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "coridjaedje di bugs ey amidraedjes di totes sôres" -#: main.cpp:346 +#: main.cpp:374 #, fuzzy, kde-format #| msgid "Robert Knight" msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Lars Doelle" msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "Terminal emulator" msgctxt "@info:credit" msgid "Original author" msgstr "Emulateu d' terminå" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "coridjaedje di bugs ey amidraedjes di totes sôres" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "coridjaedje di bugs ey amidraedjes di totes sôres" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format #| msgid "Bug fixes and general improvements" msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "coridjaedje di bugs ey amidraedjes di totes sôres" -#: main.cpp:372 +#: main.cpp:400 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Dreibholz" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, fuzzy, kde-format #| msgid "Waldo Bastian" msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, fuzzy, kde-format #| msgid "Stephan Binner" msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "Thomas Dreibholz" msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format #| msgid "General improvements" msgctxt "@info:credit" msgid "General improvements" msgstr "Amidraedjes di totes sôres" -#: main.cpp:379 +#: main.cpp:407 #, fuzzy, kde-format #| msgid "Chris Machemer" msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Bug fixes" msgctxt "@info:credit" msgid "Bug fixes" msgstr "Coridjaedje di bugs" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Stephan Kulow" msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format #| msgid "Solaris support and history" msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Sopoirt po Solaris ey ovraedjes so l' istwere" -#: main.cpp:382 +#: main.cpp:410 #, fuzzy, kde-format #| msgid "Alexander Neundorf" msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format #| msgid "Bug fixes and improved startup performance" msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "Coridjaedje di bugs eyet amidraedje del performance d' enondaedje" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Peter Silva" msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format #| msgid "Marking improvements" msgctxt "@info:credit" msgid "Marking improvements" msgstr "Ramidraedjes" -#: main.cpp:386 +#: main.cpp:414 #, fuzzy, kde-format #| msgid "Lotzi Boloni" msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1181,14 +1227,14 @@ msgstr "" "Ravalêye Konsole\n" "Bår ås usteyes et nos d' sessions" -#: main.cpp:391 +#: main.cpp:419 #, fuzzy, kde-format #| msgid "David Faure" msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format #| msgid "" #| "Embedded Konsole\n" @@ -1201,28 +1247,28 @@ msgstr "" "Embedded Konsole\n" "Amidraedjes di totes sôres" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Antonio Larrosa" msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, fuzzy, kde-format #| msgid "Visual effects" msgctxt "@info:credit" msgid "Visual effects" msgstr "Efets vizuwels" -#: main.cpp:397 +#: main.cpp:425 #, fuzzy, kde-format #| msgid "Matthias Ettrich" msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format #| msgid "" #| "Code from the kvt project\n" @@ -1235,151 +1281,151 @@ msgstr "" "Côde do pordjet kvt\n" "Amidraedjes di totes sôres" -#: main.cpp:402 +#: main.cpp:430 #, fuzzy, kde-format #| msgid "Warwick Allison" msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format #| msgid "Schema and text selection improvements" msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "Schema eyet amidraedje pol tchuze di tecse" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "Dan Pilone" msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format #| msgid "SGI port" msgctxt "@info:credit" msgid "SGI port" msgstr "Poirtaedje so SGI" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "Kevin Street" msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Poirtaedje so FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, fuzzy, kde-format #| msgid "Sven Fischer" msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, fuzzy, kde-format #| msgid "Dale M. Flaven" msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, fuzzy, kde-format #| msgid "Martin Jones" msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, fuzzy, kde-format #| msgid "Lars Knoll" msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, fuzzy, kde-format #| msgid "Thanks to many others.\n" msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "Gråces a co bén ds ôtes.\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action:inmenu" msgid "&New Tab" msgstr "Novele &linwete" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Clôre linwete" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format #| msgid "New &Window" msgctxt "@action:inmenu" msgid "New &Window" msgstr "Novea &purnea" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "Konsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format #| msgid "&Bookmarks" msgctxt "@title:menu" msgid "&Bookmarks" msgstr "&Rimåkes" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format #| msgid "New Color Scheme" msgid "&Window Color Scheme" msgstr "Novea djeu d' coleurs" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Manage Profiles" msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Manaedjî les profils" -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "Potchî al vuwe di hintche" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1390,28 +1436,28 @@ msgid_plural "" msgstr[0] "Vos avoz sacwantès linwetes e ç' purnea ci, voloz cwiter podbon?" msgstr[1] "Vos avoz sacwantès linwetes e ç' purnea ci, voloz cwiter podbon?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Close" msgstr "Racertiner cloyaedje" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "Konsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:button" msgid "Close Current &Tab" msgstr "Clôre li linwete do moumint" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, fuzzy, kde-format #| msgid "" #| "You have multiple tabs in this window, are you sure you want to quit?" @@ -1419,45 +1465,45 @@ msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "Vos avoz sacwantès linwetes e ç' purnea ci, voloz cwiter podbon?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "New Profile" msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Novea profil" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, fuzzy, kde-format #| msgid "General" msgctxt "@title Preferences page name" msgid "General" msgstr "Djenerå" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1548,7 +1594,7 @@ msgstr "Drovi l' manaedjeu des fitchîs" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1560,29 +1606,29 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, fuzzy, kde-format #| msgid "Command:" msgid "Quick Commands" msgstr "Comande :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, fuzzy, kde-format #| msgid "Command:" msgid "Plugins - Quick Commands" msgstr "Comande :" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1624,7 +1670,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1683,11 +1729,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "SSH Config" @@ -1750,93 +1796,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Remote Connection" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Raloyaedje å lon" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format #| msgid "Edit the selected profile(s)" msgid "Delete selected entry" @@ -2041,25 +2087,25 @@ msgstr "Tchuzes do purnea" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default profile" @@ -2123,17 +2169,38 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "Schaper l' rexhowe di %1" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 est ene hårdêye nén valide, li rexhowe èn pout nén esse schapêye." -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2170,511 +2237,538 @@ msgstr "" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "Pastels foncés" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "Vete so noer" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Coleurs Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Blanc so noer" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Blanc so noer" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "Prémetou (XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Conzôle Linux" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Conzôle Solaris" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Search Output..." +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Rizultat do cweraedje..." + +#: searchtabs/SearchTabs.cpp:128 +#, fuzzy, kde-format +#| msgid "Enter the text to search for here" +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "Dinez chal li tecse cachî après" + +#: session/Session.cpp:131 #, fuzzy, kde-format #| msgid "Bell in session '%1'" msgid "Bell in '%1' (Session '%2')" msgstr "Xhuflet el session «%1»" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "Dji n' a savou trover l' binaire : " -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, fuzzy, kde-format #| msgid "Warning: " msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "Adviertixhmint : " -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format #| msgid "Silence in session '%1'" msgid "Silence in '%1' (Session '%2')" msgstr "Silince el session «%1»" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "Konsole" msgid "Show session" msgstr "Konsole" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "Finished" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "Fini" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "Li programe « %1 » a tcheyou e rak." -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "Li programe « %1 » a moussî foû avou l' estat %2." -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "Avançmint di ZModem" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, fuzzy, kde-format #| msgid "Activity in session '%1'" msgid "Activity in '%1' (Session '%2')" msgstr "Activité el session «%1»" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Configure Web Shortcuts..." msgstr "Manaedjî les profils..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format #| msgid "Konsole" msgid "&Close Session" msgstr "Konsole" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "Drovi l' manaedjeu des fitchîs" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, fuzzy, kde-format #| msgid "&Copy" msgid "Copy" msgstr "&Copyî" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" msgid "Split View Left-Right" msgstr "Dispårti l' vuwe hintche/droete" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" msgid "Split View Top-Bottom" msgstr "Dispårti l' vuwe dizeu/dzo" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy user input" msgstr "Intrêye del copeye" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, fuzzy, kde-format #| msgid "Copy Input" msgid "Copy command output" msgstr "Intrêye del copeye" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "Aclaper l' tchoes" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "Select All" msgid "&Select All" msgstr "Tchoezi totafwait" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Mode" msgstr "Tchoezi" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "Select" msgid "Select &Line" msgstr "Tchoezi" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format #| msgid "Save Output..." msgid "Save Output &As..." msgstr "Schaper rexhowe..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +#| msgid "Save Output..." +msgid "Auto Save Output As..." +msgstr "Schaper rexhowe..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Manage Profiles..." msgid "Adjust Scrollback..." msgstr "Manaedjî les profils..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "Netyî l' erôlaedje en erî" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear Scrollback && Reset" msgid "Clear Scrollback and Reset" msgstr "Netyî l' erôlaedje et rmete a zero" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Next Profile" msgstr "Candjî l' profil" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Previous View" msgid "Previous Profile" msgstr "Vuwe di dvant" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Edit Profile" msgid "Switch Profile" msgstr "Candjî l' profil" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, fuzzy, kde-format #| msgid "Encoding" msgid "Set &Encoding" msgstr "Ecôdaedje" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgid "&Configure or Rename Tab..." msgstr "&Rilomer linwete..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "&Tchoezi linwetes..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format #| msgid "&None" msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Nole" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "Copyî intrêye viè" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "Eberwetaedje &ZModem..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Corwaitaedje di l' &activité" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Corwaitaedje di l' &activité" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Corwaitaedje do &silince" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Corwaitaedje di l' &activité" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Shrink View" msgid "Shrink Font" msgstr "Raptiti vuwe" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, fuzzy, kde-format #| msgid "Increase Text Size" msgid "Reset Font Size" msgstr "Ragrandi l' fonte" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "&Continue Task" msgstr "&Clôre linwete" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "&Terminate Task" msgstr "Fonccionålités do terminå" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile..." msgstr "Novea profil..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "Candjî l' profil do moumint..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "Racertiner cloyaedje" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:button" msgid "Close Program" msgstr "&Clôre linwete" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, fuzzy, kde-format #| msgid "&ZModem Upload..." msgid "Save ZModem Download to..." msgstr "Eberwetaedje &ZModem..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2682,20 +2776,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2721,78 +2815,75 @@ msgctxt "@title:window" msgid "Configure" msgstr "Racertiner cloyaedje" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "Match regular expression" -msgid "Match using regular expressions" -msgstr "Erîlêye ratourneure" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 +#, kde-format +msgid "If enabled, profile settings will be ignored" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 +#, kde-format +msgid "Remember window size" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, fuzzy, kde-format -#| msgid "Highlight all" -msgid "Highlight all matches" -msgstr "Mete tot e sorbriyance" +#| msgid "Enter new tab text:" +msgid "Force new tabs" +msgstr "Dinez on novea tecse pol linwete:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 +#, kde-format +msgid "Listen for ZModem terminal codes" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 +#, kde-format +msgid "Show progress in taskbar" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: settings/GeneralSettings.ui:112 +#, kde-format +msgid "Notifications:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 +#, kde-format +msgid "Sets whether search should start from the bottom" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) +#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 +#, kde-format +msgid "Search backwards" +msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) #. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Sets whether the search is case sensitive" @@ -2801,72 +2892,102 @@ msgstr "" "grandès letes" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#: settings/GeneralSettings.ui:144 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" msgid "Case sensitive" msgstr "Clôre li ci do moumint" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "" - #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#: settings/GeneralSettings.ui:151 #, kde-format msgid "Process and window:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 -#, kde-format -msgid "Notifications:" -msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, fuzzy, kde-format +#| msgid "Highlight all" +msgid "Highlight all matches" +msgstr "Mete tot e sorbriyance" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 #, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 -#, kde-format -msgid "Sets whether search should start from the bottom" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) -#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 -#, kde-format -msgid "Search backwards" +msgctxt "@item:intext Search options" +msgid "Search:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgid "Sets whether search should stop instead of wrapping" msgstr "Trover l' ocurince shuvante pol tchinne di cweraedje do moumint" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "Match regular expression" +msgid "Match using regular expressions" +msgstr "Erîlêye ratourneure" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2891,41 +3012,79 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgid "Search is case sensitive" @@ -2934,33 +3093,33 @@ msgstr "" "grandès letes" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, fuzzy, kde-format #| msgid "Highlight all" msgid "Highlight all search matches" msgstr "Mete tot e sorbriyance" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgid "Sets whether matching text should be highlighted" msgstr "Definixhe si l' tecse ki corespond doet esse emtou e sorbriyance" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2968,92 +3127,98 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Use a user-defined .css file for the tab bar" msgstr "Tchoezixhoz l' coleur eployeye po dessiner l' cursoe" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -3065,26 +3230,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3257,110 +3420,129 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Nole" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +#| msgid "&Close Tab" +msgid "Show Search Tabs button:" +msgstr "&Clôre linwete" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format #| msgid "&Close Tab" msgid "Show 'New Tab' button" msgstr "&Clôre linwete" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Use user-defined stylesheet:" msgstr "Tchoezixhoz l' coleur eployeye po dessiner l' cursoe" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, fuzzy, kde-format #| msgid "Enter new tab text:" msgid "Put new tabs:" msgstr "Dinez on novea tecse pol linwete:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format #| msgid "Close Current Tab" msgid "After current &tab" msgstr "Clôre li linwete do moumint" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format #| msgid "Split View" msgid "Splits" msgstr "Dispårti l' vuwe" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Menu Bar" msgid "Show Header:" msgstr "Mostrer bår di menu" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "Small" msgctxt "@option:radio Small height/width of splitter widget" @@ -3368,14 +3550,14 @@ msgid "Small" msgstr "Pitit" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, fuzzy, kde-format #| msgid "Large" msgctxt "@option:radio Large height/width of splitter widget" @@ -3383,7 +3565,7 @@ msgid "Large" msgstr "Grand" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3436,8 +3618,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3477,98 +3659,98 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Grandeu: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "" msgstr[1] "" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, fuzzy, kde-format #| msgid "Confirm Close" msgid "Confirm Paste" msgstr "Racertiner cloyaedje" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, fuzzy, kde-format #| msgid "Confirm Close" msgctxt "@title" msgid "Confirm Paste" msgstr "Racertiner cloyaedje" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format #| msgid "Paste Selection" msgctxt "@action:button" msgid "&Paste everything" msgstr "Aclaper l' tchoes" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, fuzzy, kde-format #| msgid "" #| "Output has been djokêye tot tchôcant l' tape Ctrl+S. Tchôkîz so Ctrl+Q po " "rataker." -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "&Paste Location" msgstr "Aclaper l' tchoes" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format #| msgid "Split View" msgctxt "@action:inmenu" msgid "Split View" msgstr "Dispårti l' vuwe" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Dispårti l' vuwe hintche/droete" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Dispårti l' vuwe dizeu/dzo" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3625,7 +3807,7 @@ msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Dispårti l' vuwe dizeu/dzo" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Left/Right" @@ -3633,7 +3815,7 @@ msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Dispårti l' vuwe hintche/droete" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3641,7 +3823,7 @@ msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Dispårti l' vuwe dizeu/dzo" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format #| msgctxt "@action:inmenu" #| msgid "Split View Top/Bottom" @@ -3649,210 +3831,224 @@ msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Dispårti l' vuwe dizeu/dzo" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "Ragrandi vuwe" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Raptiti vuwe" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "Clôre li linwete do moumint" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format #| msgid "Close Current Tab" msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "Clôre li linwete do moumint" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format #| msgid "New &Tab" msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "Novele &linwete" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Di dvant" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "Above Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "Å dzo do terminå" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "Below Terminal Displays" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "Å dzeu do terminå" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "Above Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "Å dzo do terminå" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "Below Terminal Displays" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "Å dzeu do terminå" + +#: ViewManager.cpp:298 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Passer al linwete %1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "Move View Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Potchî al vuwe di droete" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "Potchî al vuwe di hintche" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format #| msgid "Switch to Tab %1" msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Passer al linwete %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic hints " msgstr "Interactivité del sori" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line numbers " msgstr "Nombe di royes ficse: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "Move View Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "Potchî al vuwe di hintche" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3865,7 +4061,7 @@ msgstr "" "Åk n' a nén stî tot schapant l' rexhowe.\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, fuzzy, kde-format #| msgid "" #| "A problem occurred when saving the output.\n" @@ -3878,13 +4074,13 @@ msgstr "" "Åk n' a nén stî tot schapant l' rexhowe.\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3986,29 +4182,41 @@ msgstr "Prémetou ecôdaedje:" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format #| msgid "Fixed number of lines: " msgid "Line Numbers:" msgstr "Nombe di royes ficse: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -4046,7 +4254,7 @@ msgstr "Candjî l' djeu d' coleurs tchoezi" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -4103,12 +4311,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4239,30 +4453,46 @@ msgid "Make the cursor blink regularly" msgstr "Fwait clignoter l' cursoe" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Description:" +msgid "Animation:" +msgstr "Discrijhaedje:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, fuzzy, kde-format +#| msgid "Make the cursor blink regularly" +msgid "Make the cursor animate smoothly" +msgstr "Fwait clignoter l' cursoe" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format #| msgid "Window" msgid "Window:" msgstr "Purnea" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4270,25 +4500,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "Color" msgctxt "Border color options" @@ -4296,28 +4526,28 @@ msgid "Color:" msgstr "Coleur" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, fuzzy, kde-format #| msgid "Select the color used to draw the cursor" msgid "Select the color used to draw the border" msgstr "Tchoezixhoz l' coleur eployeye po dessiner l' cursoe" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Inactive Terminals:" msgstr "Fonccionålités do terminå" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Active Terminals:" msgstr "Fonccionålités do terminå" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "Terminal Features" msgctxt "@title:group" @@ -4325,94 +4555,94 @@ msgid "Terminal contents" msgstr "Fonccionålités do terminå" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4420,44 +4650,44 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, fuzzy, kde-format #| msgid "Font" msgid "Emoji Font:" msgstr "Fonte" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4465,98 +4695,98 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "Candjî l' profil" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, fuzzy, kde-format #| msgid "General" msgctxt "@title:tab Generic, common options" msgid "General" msgstr "Djenerå" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "Linwetes" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "Rivnance" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "Erôlaedje" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format #| msgid "Key Bindings" msgid "Key bindings" msgstr "Assoçnaedje di tapes" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, fuzzy, kde-format #| msgid "Advanced" msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "Sipepieus" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4565,49 +4795,55 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "Dji candje li profil : %2" msgstr[1] "Dji candje les %1 profils : %2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "New Profile..." msgid "Create New Profile" msgstr "Novea profil..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "Candjî l' profil « %1 »" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +#| msgid "&None" +msgid "None" +msgstr "&Nole" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4617,7 +4853,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4627,29 +4863,29 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Paste Selection" msgid "System Notifications" msgstr "Aclaper l' tchoes" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "Visual effects" msgid "Visual Bell" msgstr "Efets vizuwels" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format #| msgid "Set the selected profile as the default for new terminal sessions" msgid "Default profile for new terminal sessions in %1" @@ -4657,17 +4893,17 @@ msgstr "" "Mete li profil tchoezi come li prémetou profile po les novelès sessions " "d' terminå" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "Candjî l' evironmint" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4675,24 +4911,24 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "Tchoezixhoz l' ridant di cmince" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format #| msgid "New..." msgid "Get New..." msgstr "Novea..." -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " @@ -4701,20 +4937,20 @@ msgstr "" "Ci djeu d' coleurs ci eploye on fond k' on voet houte ki n' shonne nén esse " "sopoirté på scribanne da vosse." -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Delete Profile" msgid "Default for file type" msgstr "Disfacer profil" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4731,7 +4967,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4827,27 +5063,54 @@ msgstr "Foyter pol ridant di cmince" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "Evironmint:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "Candjî l' djivêye des variåves d' evironmint eyet leus valixhances" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format #| msgid "Terminal Features" msgid "Initial terminal si&ze:" msgstr "Fonccionålités do terminå" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4857,33 +5120,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "Terminal emulator" msgid "&Terminal bell mode:" msgstr "Emulateu d' terminå" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Mouse Interaction" msgid "Semantic Integration" msgstr "Interactivité del sori" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4893,9 +5156,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4906,9 +5169,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4919,35 +5182,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "Background" msgid "Red error background:" msgstr "Fond" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "Background" msgid "Alternating background:" @@ -5306,50 +5569,93 @@ msgid "Scrollback:" msgstr "&Erôlaedje en erî" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "Hidden" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "Catchî" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Tab bar position:" -msgid "Scrollbar position:" -msgstr "Eplaeçmint del bår ås linwetes :" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "Håynêye li bår d' acinseur sol droete do purnea do terminå" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "Show on right side" msgctxt "@option:radio Show scrollbar on the right side" @@ -5357,67 +5663,36 @@ msgid "Ri&ght side" msgstr "Håyner sol droete" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "Håynêye li bår d' acinseur sol hintche do purnea do terminå" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, fuzzy, kde-format #| msgid "Text size:" msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "Grandeu do tecse:" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "Hidden" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "Catchî" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Tab bar position:" +msgid "Scrollbar position:" +msgstr "Eplaeçmint del bår ås linwetes :" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5521,42 +5796,42 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Nole" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find:" msgctxt "@label:textbox" msgid "Find..." msgstr "Trover:" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, fuzzy, kde-format #| msgid "Enter the text to search for here" msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "Dinez chal li tecse cachî après" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Next" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Shuvant" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "Trover l' ocurince shuvante pol tchinne di cweraedje do moumint" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Previous" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Di dvant" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, fuzzy, kde-format #| msgid "Find the previous match for the current search phrase" msgctxt "@info:tooltip" @@ -5564,27 +5839,14 @@ msgid "Find the previous match for the current search phrase" msgstr "Trover l' ocurince di dvant pol tchinne di cweraedje do moumint" #: widgets/IncrementalSearchBar.cpp:102 -#, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:109 -#, fuzzy, kde-format -#| msgid "Close the search bar" -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "Clôre li bår di cweraedje" - -#: widgets/IncrementalSearchBar.cpp:119 #, fuzzy, kde-format #| msgctxt "@action:inmenu Close Active View" #| msgid "Close Active" -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "Clôre li ci do moumint" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, fuzzy, kde-format #| msgid "Sets whether the search is case sensitive" msgctxt "@info:tooltip" @@ -5593,61 +5855,74 @@ msgstr "" "Definixhe si l' cweraedje doet fé l' diferince inte les ptites et les " "grandès letes" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:121 +#, fuzzy, kde-format +#| msgid "Close the search bar" +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "Clôre li bår di cweraedje" + +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "Match regular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Erîlêye ratourneure" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, fuzzy, kde-format #| msgid "Highlight all" msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "Mete tot e sorbriyance" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, fuzzy, kde-format #| msgid "Sets whether matching text should be highlighted" msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "Definixhe si l' tecse ki corespond doet esse emtou e sorbriyance" -#: widgets/IncrementalSearchBar.cpp:133 -#, kde-format -msgctxt "@item:inmenu" -msgid "Search backwards" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:135 -#, fuzzy, kde-format -#| msgid "Find the next match for the current search phrase" -msgctxt "@info:tooltip" -msgid "Sets whether search should start from the bottom" -msgstr "Trover l' ocurince shuvante pol tchinne di cweraedje do moumint" - #: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" -msgid "No wrap" +msgid "Search backwards" msgstr "" #: widgets/IncrementalSearchBar.cpp:142 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" +msgid "Sets whether search should start from the bottom" +msgstr "Trover l' ocurince shuvante pol tchinne di cweraedje do moumint" + +#: widgets/IncrementalSearchBar.cpp:147 +#, kde-format +msgctxt "@item:inmenu" +msgid "No wrap" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:149 +#, fuzzy, kde-format +#| msgid "Find the next match for the current search phrase" +msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "Trover l' ocurince shuvante pol tchinne di cweraedje do moumint" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "Trover l' ocurince shuvante pol tchinne di cweraedje do moumint" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, fuzzy, kde-format #| msgid "Find the next match for the current search phrase" msgctxt "@info:tooltip" @@ -5660,7 +5935,7 @@ msgstr "Trover l' ocurince shuvante pol tchinne di cweraedje do moumint" msgid "Print Shell" msgstr "Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format #| msgid "&None" msgctxt "@label:listbox No color selected" @@ -5703,6 +5978,13 @@ msgstr "Cogne normåle do tite del linwete" msgid "Tab Co&lor:" msgstr "Coleur" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "Select &Tab Color" +msgid "&Activity Tab Color:" +msgstr "Tchoezi l' coleur del &linwete" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgid "Program Name" @@ -5817,41 +6099,55 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Clôre linwete" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Distaetchî vuwe" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach View" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Distaetchî vuwe" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format #| msgid "Close the search bar" msgctxt "@info:tooltip" msgid "Close this tab" msgstr "Clôre li bår di cweraedje" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach View" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Distaetchî vuwe" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Rename Tab..." msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Rilomer linwete..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format #| msgid "&Close Tab" msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Clôre linwete" +#, fuzzy +#~| msgctxt "@action:inmenu Close Active View" +#~| msgid "Close Active" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "Clôre li ci do moumint" + #, fuzzy #~| msgid "&None" #~ msgctxt "Do not save any lines to the scrollback history" @@ -6294,9 +6590,6 @@ msgstr "&Clôre linwete" #~ msgid "Decrease Text Size" #~ msgstr "Raptiti l' fonte" -#~ msgid "Search Output..." -#~ msgstr "Rizultat do cweraedje..." - #~ msgid "Find Next" #~ msgstr "Trover shuvant" @@ -6322,9 +6615,6 @@ msgstr "&Clôre linwete" #~ msgid "New" #~ msgstr "Novea" -#~ msgid "Select &Tab Color" -#~ msgstr "Tchoezi l' coleur del &linwete" - #~ msgid "TextLabel" #~ msgstr "Etikete tecse" diff --git a/local/recipes/kde/konsole/source/po/xh/konsole.po b/local/recipes/kde/konsole/source/po/xh/konsole.po index ece9dd51ea..0353acab16 100644 --- a/local/recipes/kde/konsole/source/po/xh/konsole.po +++ b/local/recipes/kde/konsole/source/po/xh/konsole.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2002-11-04 09:23SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" @@ -57,7 +57,7 @@ msgstr "Ubu&ngakanani" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, fuzzy, kde-format msgid "Split View" msgstr "Umgca Omncincane" @@ -95,7 +95,7 @@ msgid "S&crollback" msgstr "Sukubonisa ibar yokurola" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, fuzzy, kde-format #| msgid "Session" msgid "Session Toolbar" @@ -174,46 +174,58 @@ msgstr "" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" -msgid "Show the tabbar, overriding the default setting" +msgid "Show all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:69 #, kde-format msgctxt "@info:shell" -msgid "Hide the tabbar, overriding the default setting" +msgid "Hide all the toolbars, overriding the default setting" msgstr "" #: Application.cpp:70 #, kde-format msgctxt "@info:shell" -msgid "Start Konsole in fullscreen mode" +msgid "Show the tabbar, overriding the default setting" msgstr "" #: Application.cpp:71 #, kde-format msgctxt "@info:shell" -msgid "Disable transparent backgrounds, even if the system supports them." +msgid "Hide the tabbar, overriding the default setting" msgstr "" #: Application.cpp:72 +#, kde-format +msgctxt "@info:shell" +msgid "Start Konsole in fullscreen mode" +msgstr "" + +#: Application.cpp:73 +#, kde-format +msgctxt "@info:shell" +msgid "Disable transparent backgrounds, even if the system supports them." +msgstr "" + +#: Application.cpp:74 #, fuzzy, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "Qala ngemboniselo yabucala yeentlanganiso" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -221,7 +233,7 @@ msgid "" "it as the last option." msgstr "" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -229,14 +241,14 @@ msgid "" "--new-tab. Mostly for debugging." msgstr "" -#: Application.cpp:86 +#: Application.cpp:88 #, fuzzy, kde-format #| msgid "Arguments for 'command'" msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "Iimposiso zo'myalelo'" -#: Application.cpp:516 +#: Application.cpp:546 #, fuzzy, kde-format #| msgid "transparency" msgctxt "@item" @@ -257,199 +269,199 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background" msgstr "ebonisa ngaphaya" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "ebonisa ngaphaya" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "ebonisa ngaphaya" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "ebonisa ngaphaya" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 #, fuzzy #| msgid "transparency" msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "ebonisa ngaphaya" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 #, fuzzy #| msgid "VIM Colors" msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "Imibala ye VIM" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -711,6 +723,38 @@ msgstr "" msgid "AaZz09..." msgstr "" +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "" + +#: containers/KapsuleDetector.cpp:79 +#, fuzzy, kde-format +msgid " [default]" +msgstr "Okwendalo kwe Konsole" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -756,7 +800,7 @@ msgstr "" msgid "Copy Location" msgstr "&Isaziso Sendlela" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "" @@ -788,13 +832,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "&Yenza isiphelo Somsebenzi" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -832,17 +876,17 @@ msgstr "Uqwalaselo Lobungakanani" msgid "Output" msgstr "Gcina Imbali" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "" @@ -850,7 +894,7 @@ msgstr "" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -884,228 +928,228 @@ msgstr "" msgid "Output:" msgstr "Gcina Imbali" -#: main.cpp:186 +#: main.cpp:189 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@title" msgid "Konsole" msgstr "iKonsole" -#: main.cpp:188 +#: main.cpp:191 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@title" msgid "Terminal emulator" msgstr "&Vala Umlinganisi wesiphelo sendlela" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "" -#: main.cpp:343 +#: main.cpp:371 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "" -#: main.cpp:349 +#: main.cpp:377 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@info:credit" msgid "Original author" msgstr "&Vala Umlinganisi wesiphelo sendlela" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "" -#: main.cpp:370 +#: main.cpp:398 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "" -#: main.cpp:378 +#: main.cpp:406 #, fuzzy, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "ulungiso lwebug" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "" -#: main.cpp:381 +#: main.cpp:409 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "inkxaso yokhanyiso ngelanga kunye nomsebenzi wembali" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "" -#: main.cpp:383 +#: main.cpp:411 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "" -#: main.cpp:385 +#: main.cpp:413 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "" -#: main.cpp:388 +#: main.cpp:416 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1115,13 +1159,13 @@ msgstr "" "inxaxheba\n" "Ibar yesixhobo kunye namagama entlanganiso" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "" -#: main.cpp:393 +#: main.cpp:421 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1129,25 +1173,25 @@ msgid "" "General improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "" -#: main.cpp:399 +#: main.cpp:427 #, fuzzy, kde-format msgctxt "@info:credit" msgid "" @@ -1155,137 +1199,137 @@ msgid "" "General improvements" msgstr "ulungiso lebug nezenyuselo" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "" -#: main.cpp:403 +#: main.cpp:431 #, fuzzy, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "isidweliso kunye nonyuselo lokhetho" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "" -#: main.cpp:405 +#: main.cpp:433 #, fuzzy, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI Izibuko" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "" -#: main.cpp:406 +#: main.cpp:434 #, fuzzy, kde-format #| msgid "FreeBSD port" msgctxt "@info:credit" msgid "FreeBSD port" msgstr "Izibuko le FreeBSD" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "&Vala Intlanganiso" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "&Vala Intlanganiso" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "Intlanganiso Ents&ha" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:inmenu" msgid "Close Window" msgstr "iKonsole" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, fuzzy, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "Iqokobhe Kwinqaku lencwadi" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, fuzzy, kde-format msgid "&Window Color Scheme" msgstr "Qala ngemboniselo yabucala yeentlanganiso" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, fuzzy, kde-format #| msgid "Activate Menu" msgctxt "@item" msgid "Activate Menu" msgstr "Yenza i Menu isebenze" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "&Yisa Intlanganiso Ekhohlo" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1294,69 +1338,69 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, fuzzy, kde-format #| msgid "Konsole" msgctxt "@action:button" msgid "Close &Window" msgstr "iKonsole" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "&Vala Intlanganiso" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgctxt "@title Preferences page name" msgid "Profiles" msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1442,7 +1486,7 @@ msgstr "Ubu&ngakanani" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "" @@ -1454,27 +1498,27 @@ msgid "Cancel" msgstr "" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "" @@ -1514,7 +1558,7 @@ msgid "" msgstr "" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "" @@ -1570,11 +1614,11 @@ msgid "%1 is a folder for SSH entries" msgstr "" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "" @@ -1635,93 +1679,93 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" " with multiple SSH Configurations, are you sure?" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, fuzzy, kde-format #| msgid "Size Configuration" msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "Uqwalaselo Lobungakanani" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, fuzzy, kde-format msgid "Delete selected entry" msgstr "Qala ngemboniselo yabucala yeentlanganiso" @@ -1921,25 +1965,25 @@ msgstr "Uqwalaselo lweMbali" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default profile" @@ -2002,17 +2046,39 @@ msgstr "" msgid "Tab Properties" msgstr "" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, fuzzy, kde-format msgid "Save Output From %1" msgstr "Gcina Imbali" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, fuzzy, kde-format +#| msgid "Unable to write to file." +msgid "Failed to create autosave file at %1." +msgstr "Ayikwazi ukubhala kwifayile." + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -2048,500 +2114,525 @@ msgstr "" #: schemas.cpp:6 #, kde-format -msgid "Dark Pastels" +msgid "Campbell" msgstr "" #: schemas.cpp:7 #, kde-format +msgid "Dark Pastels" +msgstr "" + +#: schemas.cpp:8 +#, kde-format msgid "Green on Black" msgstr "Luhlaza kokuMnyama (okwengca)" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Imibala ye Linux" -#: schemas.cpp:9 +#: schemas.cpp:10 #, fuzzy, kde-format #| msgid "White on Black" msgid "Red on Black" msgstr "Mhlophe kweMnyama" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "Mhlophe kweMnyama" -#: schemas.cpp:13 +#: schemas.cpp:14 #, fuzzy, kde-format #| msgid "XTerm (XFree 4.x.x)" msgid "Default (XFree 4)" msgstr "XTerm (XFree 4.x.x)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, fuzzy, kde-format #| msgid "linux console" msgid "Linux console" msgstr "linux console" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "" -#: schemas.cpp:16 +#: schemas.cpp:17 #, fuzzy, kde-format #| msgid "linux console" msgid "Solaris console" msgstr "linux console" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgctxt "@label:textbox" +msgid "Search..." +msgstr "Cacisa &Imbali" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "" + +#: session/Session.cpp:131 #, fuzzy, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "Tshintsha Kwisiqendu 1" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, fuzzy, kde-format #| msgid "Could not save history." msgid "Could not find binary: " msgstr "Ayinakugcina imbali." -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, fuzzy, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "Tshintsha Kwisiqendu 1" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, fuzzy, kde-format #| msgid "New Session" msgid "Show session" msgstr "Intlanganiso Entsha" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, fuzzy, kde-format #| msgid "" msgctxt "@info:shell This session is done" msgid "Finished" msgstr "" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, fuzzy, kde-format #| msgctxt "NAME OF TRANSLATORS" #| msgid "Your names" msgid "Program '%1' crashed." msgstr "Lwandle Mgidlana" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "iKonsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, fuzzy, kde-format #| msgid "Search string '%1' not found." msgid "Search for '%1' with" msgstr "Umtya wophendlo '%1' akafumaneki." -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "" -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, fuzzy, kde-format msgid "&Close Session" msgstr "&Vala Intlanganiso" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, fuzzy, kde-format msgid "Split View Left-Right" msgstr "Umgca Omncincane" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, fuzzy, kde-format msgid "Split View Top-Bottom" msgstr "Umgca Omncincane" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Select All" msgstr "&Yenza isiphelo Somsebenzi" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "Select &Mode" msgstr "&Yenza isiphelo Somsebenzi" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "Select &Line" msgstr "&Yenza isiphelo Somsebenzi" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, fuzzy, kde-format msgid "Save Output &As..." msgstr "Gcina Imbali" -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, fuzzy, kde-format +msgid "Auto Save Output As..." +msgstr "Gcina Imbali" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "" -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Adjust Scrollback..." msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, fuzzy, kde-format #| msgid "Do not display scrollbar" msgid "Clear Scrollback" msgstr "Sukubonisa ibar yokurola" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, fuzzy, kde-format #| msgid "Clear &History" msgid "Clear Scrollback and Reset" msgstr "Cacisa &Imbali" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Next Profile" msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgid "Previous Profile" msgstr "Fumana Okudl&ulileyo" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Switch Profile" msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Configure or Rename Tab..." msgstr "&Yenza isiphelo Somsebenzi" -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Select Tabs..." msgstr "&Yenza isiphelo Somsebenzi" -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, fuzzy, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "&Akukho nanye" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "" -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for &Prompt" msgstr "Umphathi wo &Mdlalo" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "Umphathi wo &Mdlalo" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "Umphathi wo &Kuthula" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, fuzzy, kde-format #| msgid "Monitor for &Activity" msgid "Monitor for Process Finishing" msgstr "Umphathi wo &Mdlalo" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, fuzzy, kde-format msgid "Enlarge Font" msgstr "Ubukhulu bamagama Obukhulu" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, fuzzy, kde-format msgid "Shrink Font" msgstr "Umgca Omncincane" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, fuzzy, kde-format #| msgid "&Send Signal" msgid "Send Signal" msgstr "&Thumela Uphawu" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "&Gxotha Umsebenzi" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "&Qhubeka Nomsebenzi" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "&Xhoma" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "&Phazamisa Umsebenzi" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, fuzzy, kde-format #| msgid "&Terminate Task" msgid "&Terminate Task" msgstr "&Yenza isiphelo Somsebenzi" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "&Bulala Umsebenzi" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "Umsebenzisi Wophawu &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "Umsebenzisi Wophawu &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile..." msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Current Profile..." msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, fuzzy, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "&Vala Intlanganiso" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" msgstr "" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "" -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2549,20 +2640,20 @@ msgid "" "or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "" -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " "to install the 'rzsz' or 'lrzsz' package.

              " msgstr "" -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "" @@ -2587,147 +2678,174 @@ msgctxt "@title:window" msgid "Configure" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, fuzzy, kde-format -#| msgid "Set the window title" -msgid "Remember window size" -msgstr "Cwangcisa iwonga le window" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, fuzzy, kde-format -#| msgid "As ®ular expression" -msgid "Match using regular expressions" -msgstr "Njengokuthe &rhoqo ukuzichaza" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" +msgid "If enabled, profile settings will be ignored" msgstr "" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, fuzzy, kde-format -#| msgid "C&lose Session" -msgid "Case sensitive" +#| msgid "Set the window title" +msgid "Remember window size" +msgstr "Cwangcisa iwonga le window" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgid "Force new tabs" msgstr "&Vala Intlanganiso" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" +msgid "Listen for ZModem terminal codes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" +msgid "Show progress in taskbar" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgid "Case sensitive" +msgstr "&Vala Intlanganiso" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, fuzzy, kde-format +#| msgid "As ®ular expression" +msgid "Match using regular expressions" +msgstr "Njengokuthe &rhoqo ukuzichaza" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2752,72 +2870,110 @@ msgstr "" msgid "The window size will be saved upon exiting Konsole" msgstr "" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, fuzzy, kde-format #| msgid "C&lose Session" msgid "Search is case sensitive" msgstr "&Vala Intlanganiso" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2825,91 +2981,97 @@ msgstr "" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "" @@ -2921,26 +3083,24 @@ msgid "Enable memory monitoring:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr "" @@ -3099,105 +3259,123 @@ msgctxt "Do not show a close button" msgid "None" msgstr "&Akukho nanye" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, fuzzy, kde-format +msgid "Show Search Tabs button:" +msgstr "&Vala Intlanganiso" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, fuzzy, kde-format msgid "Show 'New Tab' button" msgstr "&Vala Intlanganiso" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, fuzzy, kde-format msgid "After current &tab" msgstr "&Vala Intlanganiso" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, fuzzy, kde-format msgid "Splits" msgstr "Umgca Omncincane" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, fuzzy, kde-format #| msgid "Show Fr&ame" msgid "Show Header:" msgstr "Bonisa &Isakhelo" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, fuzzy, kde-format #| msgid "&Bell" msgctxt "@option:radio Small height/width of splitter widget" @@ -3205,21 +3383,21 @@ msgid "Small" msgstr "&Intsimbi" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3273,8 +3451,8 @@ msgstr "" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) @@ -3314,95 +3492,95 @@ msgstr "" msgid "Enable thumbnails generation" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "Ubungakanani: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, fuzzy, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "Uqinisekile ukuba ufuna ukuyeka?" msgstr[1] "Uqinisekile ukuba ufuna ukuyeka?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, fuzzy, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "&Isaziso Sendlela" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been to resume." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, fuzzy, kde-format msgid "Change &Directory To" msgstr "Tshintshela ulawulo lokusebenza lwe konsole kwi 'dir'" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, fuzzy, kde-format msgid "&Paste Location" msgstr "&Isaziso Sendlela" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "Umgca Omncincane" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "Umgca Omncincane" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "Umgca Omncincane" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "Umgca Omncincane" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "Umgca Omncincane" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "Umgca Omncincane" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "Umgca Omncincane" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "Umgca Omncincane" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "&Vala Intlanganiso" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "&Vala Intlanganiso" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "&Vala Intlanganiso" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "Fumana Okudl&ulileyo" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "&Vala Umlinganisi wesiphelo sendlela" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "&Vala Umlinganisi wesiphelo sendlela" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "&Vala Umlinganisi wesiphelo sendlela" + +#: ViewManager.cpp:292 +#, fuzzy, kde-format +#| msgid "&Close Terminal Emulator" +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "&Vala Umlinganisi wesiphelo sendlela" + +#: ViewManager.cpp:298 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "Tshintsha Kwisiqendu 1" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, fuzzy, kde-format #| msgid "M&ove Session Right" msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "Yi&sa Intlanganiso Ekunene" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "&Yisa Intlanganiso Ekhohlo" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, fuzzy, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "Tshintsha Kwisiqendu 1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic hints " msgstr "Abadiibanisi begama" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, fuzzy, kde-format msgid "Line numbers " msgstr "Inani leelayini: " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, fuzzy, kde-format #| msgid "&Move Session Left" msgctxt "@title:window" msgid "Save Tab Layout" msgstr "&Yisa Intlanganiso Ekhohlo" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3672,7 +3864,7 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3680,13 +3872,13 @@ msgid "" "%1" msgstr "" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3782,28 +3974,40 @@ msgstr "" msgid "Shortcut for peeking the primary screen:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 +#, kde-format +msgid "Set interval between autosaves:" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 #, fuzzy, kde-format msgid "Line Numbers:" msgstr "Inani leelayini: " #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3839,7 +4043,7 @@ msgstr "Qala ngemboniselo yabucala yeentlanganiso" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, fuzzy, kde-format msgid "Edit..." @@ -3893,12 +4097,18 @@ msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" msgstr "" @@ -4021,30 +4231,45 @@ msgid "Make the cursor blink regularly" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, fuzzy, kde-format #| msgid "&Enable" msgid "Enabled" msgstr "&Yenza" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, fuzzy, kde-format +#| msgid "Activate Menu" +msgid "Animation:" +msgstr "Yenza i Menu isebenze" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, fuzzy, kde-format msgid "Window:" msgstr "Intlanganiso Ents&ha" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -4052,25 +4277,25 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, fuzzy, kde-format #| msgid "VIM Colors" msgctxt "Border color options" @@ -4078,25 +4303,25 @@ msgid "Color:" msgstr "Imibala ye VIM" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, fuzzy, kde-format msgid "Inactive Terminals:" msgstr "Isiphelo sendlela sobungakanani bemihlathi belayini ze x" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, fuzzy, kde-format msgid "Active Terminals:" msgstr "Isiphelo sendlela sobungakanani bemihlathi belayini ze x" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@title:group" @@ -4104,95 +4329,95 @@ msgid "Terminal contents" msgstr "&Yenza isiphelo Somsebenzi" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, fuzzy, kde-format #| msgid "Li&ne Spacing" msgid "Line spacing:" msgstr "Uniko sithuba se&layini" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4200,43 +4425,43 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4244,98 +4469,98 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile" msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, fuzzy, kde-format #| msgid "Sc&rollbar" msgid "Scrolling" msgstr "&Ibar yorolelo" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, fuzzy, kde-format #| msgid "&Keyboard" msgid "Keyboard" msgstr "&Ibhodi yezitshixo" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, fuzzy, kde-format msgid "Key bindings" msgstr "Uqwalaselo Lobungakanani" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4344,13 +4569,13 @@ msgid "" "the settings to a new profile." msgstr "" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, fuzzy, kde-format #| msgid "" #| "A file with this name already exists.\n" @@ -4361,19 +4586,19 @@ msgstr "" "Ifayile eneligama sele ikhona\n" "Ufuna ukuyibhala ngaphezulu?" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Editing profile: %2" @@ -4381,19 +4606,24 @@ msgid_plural "Editing %1 profiles: %2" msgstr[0] "Gcina Intlanganiso &Yemboniselo yabucala..." msgstr[1] "Gcina Intlanganiso &Yemboniselo yabucala..." -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Create New Profile" msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Edit Profile \"%1\"" msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, fuzzy, kde-format +msgid "None" +msgstr "&Akukho nanye" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4403,7 +4633,7 @@ msgid_plural " columns" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4413,43 +4643,43 @@ msgid_plural " rows" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format msgid "System Bell" msgstr "Imibala Yendlela yokwenza" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format msgid "System Notifications" msgstr "&Isaziso Sendlela" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, fuzzy, kde-format #| msgid "&Visible Bell" msgid "Visual Bell" msgstr "&Intsimbi Ebonakalayo" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, fuzzy, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "Qala ngemboniselo yabucala yeentlanganiso" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" @@ -4457,43 +4687,43 @@ msgid_plural " seconds" msgstr[0] "" msgstr[1] "" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, fuzzy, kde-format msgid "Get New..." msgstr "Entsha " -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, fuzzy, kde-format #| msgid "Save Sessions &Profile..." msgid "Default for file type" msgstr "Gcina Intlanganiso &Yemboniselo yabucala..." -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4510,7 +4740,7 @@ msgid "" "editor." msgstr "" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "" @@ -4600,26 +4830,53 @@ msgstr "Tshintshela ulawulo lokusebenza lwe konsole kwi 'dir'" msgid "Start in same directory as current session" msgstr "" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, fuzzy, kde-format msgid "Initial terminal si&ze:" msgstr "Isiphelo sendlela sobungakanani bemihlathi belayini ze x" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4629,33 +4886,33 @@ msgid "" msgstr "" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, fuzzy, kde-format #| msgid "&Close Terminal Emulator" msgid "&Terminal bell mode:" msgstr "&Vala Umlinganisi wesiphelo sendlela" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, fuzzy, kde-format #| msgid "Word Connectors" msgid "Semantic Integration" msgstr "Abadiibanisi begama" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "" @@ -4665,9 +4922,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4678,9 +4935,9 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4691,35 +4948,35 @@ msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, fuzzy, kde-format #| msgid "transparency" msgid "Red error background:" msgstr "ebonisa ngaphaya" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, fuzzy, kde-format #| msgid "transparency" msgid "Alternating background:" @@ -5057,50 +5314,93 @@ msgid "Scrollback:" msgstr "Sukubonisa ibar yokurola" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr "" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, fuzzy, kde-format +#| msgid "&Hide" +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "&Fihla" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, fuzzy, kde-format -#| msgid "Clear &History" -msgid "Scrollbar position:" -msgstr "Cacisa &Imbali" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, fuzzy, kde-format #| msgid "&Right" msgctxt "@option:radio Show scrollbar on the right side" @@ -5108,66 +5408,35 @@ msgid "Ri&ght side" msgstr "&Ekunene" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, fuzzy, kde-format -#| msgid "&Hide" -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "&Fihla" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 -#, kde-format -msgid "Color of scrollbar markers:" -msgstr "" +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 +#, fuzzy, kde-format +#| msgid "Clear &History" +msgid "Scrollbar position:" +msgstr "Cacisa &Imbali" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" +msgid "Search highlighting line opacity:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) @@ -5269,121 +5538,121 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "&Akukho nanye" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, fuzzy, kde-format #| msgid "Find" msgctxt "@label:textbox" msgid "Find..." msgstr "Fumana" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, fuzzy, kde-format #| msgid "Find" msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "Fumana" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, fuzzy, kde-format #| msgid "Find Pre&vious" msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "Fumana Okudl&ulileyo" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" msgstr "" #: widgets/IncrementalSearchBar.cpp:102 +#, fuzzy, kde-format +#| msgid "C&lose Session" +msgctxt "@action:button" +msgid "Case sensitive" +msgstr "&Vala Intlanganiso" + +#: widgets/IncrementalSearchBar.cpp:103 +#, kde-format +msgctxt "@info:tooltip" +msgid "Sets whether the search is case sensitive" +msgstr "" + +#: widgets/IncrementalSearchBar.cpp:114 #, kde-format msgctxt "@info:tooltip" msgid "Display the options menu" msgstr "" -#: widgets/IncrementalSearchBar.cpp:109 +#: widgets/IncrementalSearchBar.cpp:121 #, fuzzy, kde-format #| msgid "C&lose Session" msgctxt "@info:tooltip" msgid "Close the search bar" msgstr "&Vala Intlanganiso" -#: widgets/IncrementalSearchBar.cpp:119 -#, fuzzy, kde-format -#| msgid "C&lose Session" -msgctxt "@item:inmenu" -msgid "Case sensitive" -msgstr "&Vala Intlanganiso" - -#: widgets/IncrementalSearchBar.cpp:121 -#, kde-format -msgctxt "@info:tooltip" -msgid "Sets whether the search is case sensitive" -msgstr "" - -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:131 #, fuzzy, kde-format #| msgid "As ®ular expression" msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "Njengokuthe &rhoqo ukuzichaza" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5395,7 +5664,7 @@ msgstr "" msgid "Print Shell" msgstr "&Intsimbi" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, fuzzy, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5434,6 +5703,13 @@ msgstr "" msgid "Tab Co&lor:" msgstr "Imibala ye VIM" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, fuzzy, kde-format +#| msgid "VIM Colors" +msgid "&Activity Tab Color:" +msgstr "Imibala ye VIM" + #: widgets/TabTitleFormatButton.cpp:21 #, fuzzy, c-format #| msgctxt "NAME OF TRANSLATORS" @@ -5545,39 +5821,52 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "&Cwangcisa kwakhona && Isiphelo sendlela Esicacileyo" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "&Vala Intlanganiso" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, fuzzy, kde-format +#| msgid "&Detach Session" +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "&Vala Intlanganiso" + +#: widgets/ViewContainer.cpp:70 #, fuzzy, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "&Vala Intlanganiso" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, fuzzy, kde-format #| msgid "&Detach Session" msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "&Vala Intlanganiso" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, fuzzy, kde-format #| msgid "&Terminate Task" msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "&Yenza isiphelo Somsebenzi" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, fuzzy, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "&Vala Intlanganiso" +#, fuzzy +#~| msgid "C&lose Session" +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "&Vala Intlanganiso" + #, fuzzy #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" @@ -5854,11 +6143,6 @@ msgstr "&Vala Intlanganiso" #~ msgid "&Detach View" #~ msgstr "&Vala Intlanganiso" -#, fuzzy -#~| msgid "Clear &History" -#~ msgid "Search Output..." -#~ msgstr "Cacisa &Imbali" - #, fuzzy #~| msgid "Find Pre&vious" #~ msgid "Find Previous" @@ -6330,9 +6614,6 @@ msgstr "&Vala Intlanganiso" #~ "Isiqalo sembali sifumanekile.\n" #~ "Qhubekeka ukusukas emva?" -#~ msgid "Unable to write to file." -#~ msgstr "Ayikwazi ukubhala kwifayile." - #~ msgid "Number of columns:" #~ msgstr "Inani lemihlathi:" diff --git a/local/recipes/kde/konsole/source/po/zh_CN/konsole.po b/local/recipes/kde/konsole/source/po/zh_CN/konsole.po index ad81c93a3a..b89824c474 100644 --- a/local/recipes/kde/konsole/source/po/zh_CN/konsole.po +++ b/local/recipes/kde/konsole/source/po/zh_CN/konsole.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -22,7 +22,7 @@ msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "" "KDE China, Albert Lew, Feng Chao, Funda Wang, Guo Yunhe, Liang Qi, Lie Ex, " -"Ni Hui, Rongfeng Ge, Wang Jian, Weng Xuetian, Xiong Jiang" +"Ni Hui, Rongfeng Ge, Tyson Tan, Wang Jian, Weng Xuetian, Xiong Jiang" #, kde-format msgctxt "EMAIL OF TRANSLATORS" @@ -30,8 +30,8 @@ msgid "Your emails" msgstr "" "kde-china@kde.org, albert_lew2002@eyou.com, chaofeng111@gmail.com, " "fundawang@en2china.com, i@guoyunhe.me, cavendish.qi@gmail.com, lilith." -"ex@gmail.com, shuizhuyuanluo@126.com, stellarpurr@gmail.com, lark@linux.ustc." -"edu.cn, wengxt@gmail.com, jxiong@offtopic.org" +"ex@gmail.com, shuizhuyuanluo@126.com, stellarpurr@gmail.com, tds00@qq.com, " +"lark@linux.ustc.edu.cn, wengxt@gmail.com, jxiong@offtopic.org" #. i18n: ectx: Menu (file) #: ../desktop/konsoleui.rc:6 @@ -55,7 +55,7 @@ msgstr "视图" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "拆分视图" @@ -91,7 +91,7 @@ msgid "S&crollback" msgstr "回滚历史(&C)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "会话工具栏" @@ -172,46 +172,58 @@ msgstr "隐藏菜单栏,覆盖默认设置" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "显示所有工具栏,覆盖默认设置" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "隐藏所有工具栏,覆盖默认设置" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "显示标签页栏,覆盖默认设置" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "隐藏标签页栏,覆盖默认设置" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "以全屏模式启动 Konsole" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "即使系统支持,也禁用半透明背景。" -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "列出可用的配置方案" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "列出配置方案的所有属性名称和它们的值 (用于配合 -p 参数使用)" -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "更改配置方案属性的值。" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -219,7 +231,7 @@ msgid "" "it as the last option." msgstr "要执行的命令。此选项将捕获所有后续的参数,故使用于最后一个选项。" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -228,13 +240,13 @@ msgid "" msgstr "" "强制重新使用现有实例,即使它会破坏某些功能,例如 --new-tab。主要用于调试。" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "传递给命令的参数" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -252,157 +264,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "前景" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "背景" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "颜色 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "颜色 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "颜色 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "颜色 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "颜色 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "颜色 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "颜色 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "颜色 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "前景 (强烈)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "背景 (强烈)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "颜色 1 (强烈)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "颜色 2 (强烈)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "颜色 3 (强烈)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "颜色 4 (强烈)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "颜色 5 (强烈)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "颜色 6 (强烈)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "颜色 7 (强烈)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "颜色 8 (强烈)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "前景 (黯淡)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "背景 (黯淡)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "颜色 1 (黯淡)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "颜色 2 (黯淡)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "颜色 3 (黯淡)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "颜色 4 (黯淡)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "颜色 5 (黯淡)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "颜色 6 (黯淡)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "颜色 7 (黯淡)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "颜色 8 (黯淡)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -654,6 +666,38 @@ msgstr "上" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "主机" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "当 Konsole 在 Flatpak 中运行时,容器支持不可用。" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [默认]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -698,7 +742,7 @@ msgstr "" msgid "Copy Location" msgstr "复制地址" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "正在生成缩略图" @@ -729,13 +773,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "选择字体" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "显示所有字体" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -774,17 +818,17 @@ msgstr "按键组合" msgid "Output" msgstr "输出" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "新建按键绑定列表" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "编辑按键绑定列表" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "无法用空描述保存按键绑定方案。" @@ -792,7 +836,7 @@ msgstr "无法用空描述保存按键绑定方案。" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -826,225 +870,225 @@ msgstr "输入:" msgid "Output:" msgstr "输出:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "终端模拟器" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, The Konsole Developers" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "常规维护者、错误修正和常规改进" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "前任维护者,移植到 KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "原作者" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "重大重构、错误修复和重大改进" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "错误修正和常规改进" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "错误修复及重大改进" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "常规改进" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "错误修正" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "Solaris 支持和历史" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "错误修正和启动性能改进" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "改进" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1054,13 +1098,13 @@ msgstr "" "嵌入式 Konsole\n" "工具栏和会话名称" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1070,25 +1114,25 @@ msgstr "" "嵌入式 Konsole\n" "常规改进" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "视觉效果" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1098,132 +1142,132 @@ msgstr "" "来自 kvt 项目的代码\n" "常规改进" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "配色方案和文本选择改进" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI 移植" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD 移植" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "非常感谢其他很多的朋友。\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "新建标签页(&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "克隆标签页(&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "新建窗口(&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "关闭窗口" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "书签(&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "窗口配色方案(&W)" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "管理配置方案..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "激活菜单" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "保存标签页布局..." -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "加载标签页布局..." -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1231,67 +1275,67 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "此窗口中有 %1 个正在运行的进程,您确定要退出吗?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "确认关闭" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "关闭窗口(&W)" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "关闭当前标签页(&T)" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "此窗口中有 %1 个打开的终端,您确定要退出吗?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "配置方案" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "常规" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "内存" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "标签页栏和拆分视图" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "临时文件" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "缩略图" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1375,7 +1419,7 @@ msgstr "保存" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "更新" @@ -1387,27 +1431,27 @@ msgid "Cancel" msgstr "取消" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "快速命令" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "显示快速访问" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "找不到快速命令。您可以通过菜单栏的:插件 -> 快速命令 添加一个" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "插件 - 快速命令" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "显示快速命令" @@ -1449,7 +1493,7 @@ msgstr "" " 它包含多个配置,您确定要继续吗?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "您将要删除 %1,您确定吗?" @@ -1502,11 +1546,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 是 SSH 条目的文件夹" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH 配置" @@ -1566,24 +1610,24 @@ msgid "" msgstr "无法在外壳应用程序之外发出 SSH 命令 (例如 bash、zsh、sh 等)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH 密钥" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "删除" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "保持不变" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1592,68 +1636,68 @@ msgstr "" "您将要删除文件夹 %1,\n" " 它包含多组 SSH 配置,您确定要继续吗?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "删除 SSH 配置" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "已导入 SSH 配置文件
              有一些设置是只读的。" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "缺少主机名" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "缺少名称" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "如果勾选了“为密钥使用 ~/.ssh/config”,请不要指定 SSH 密钥或用户名。" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "必须至少设置用户名或 SSHKey 的其中一个" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "缺少文件夹" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "SSH 会话必须具备配置方案" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "无法删除此文件夹" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "删除文件夹及其所有内容" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "双击更改文件夹名称。" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "您不能删除自动添加的条目。" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "删除选中条目" @@ -1845,25 +1889,25 @@ msgstr "输出选项" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "打印友好模式,黑文本、无背景(&F)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "缩放输出(&S)" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "内建" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "默认配置方案" @@ -1915,24 +1959,45 @@ msgstr "内置配置方案总是可用" #, kde-format msgctxt "@info:tooltip" msgid "Double click to change shortcut" -msgstr "双击更改快捷方式" +msgstr "双击更改快捷键" #: RenameTabDialog.cpp:25 #, kde-format msgid "Tab Properties" msgstr "标签页属性" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "保存 %1 的输出" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 是无效 URL,输出无法保存。" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "创建自动保存文件于 %1 失败。" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "停止自动保存,因为屏幕发生了切换。" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "自动保存文件已被外部修改,在这之后的自动保存因此被阻止。" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "输出发生变化时更新自动保存状态失败。" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1968,476 +2033,497 @@ msgstr "Breeze 微风" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "深色淡雅" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "黑底绿字" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux 颜色" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "黑底红字" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "过度曝光" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "过度曝光" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "黑底白字" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "默认(XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux 控制台" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "macOS" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris 控制台" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "搜索..." + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "在此输入要搜索的标签页名称" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "“%1”中的系统提示 (会话“%2”)" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "找不到二进制文件:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "警告:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "找不到可启动的交互式 shell。" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "找不到“%1”,已使用“%2”替代启动。请检查配置方案的设置。" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "无法以参数“%2”启动程序“%1”。" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "“%1“中的静止 (会话”%2“)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "显示会话" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"D-Bus 的 sendText/runCommand 方法刚刚被使用。允许这些方法成为公开方法将导致安" -"全风险。如果愿意,可以重新编译 Konsole ,将这些方法更改为只允许内部使用。

              " -"此警告在此 Konsole 实例中只显示一次。

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "已完成" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "程序“%1”崩溃。" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "程序“%1”以状态 %2 退出。" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem 进度" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "“%1“中的活动 (会话”%2“)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "安全敏感的 DBus API 在设置中已禁用。" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "运行于会话“%2”中的进程“%1”已经运行完成" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole 不知道如何打开该书签:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "搜索“%1”于" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "配置网页快捷方式..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "关闭会话(&C)" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "打开文件管理器" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "复制" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "拆分视图 (左右)" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "拆分视图 (上下)" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "复制 - 不包含提示" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "复制用户输入" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "复制命令输出" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" -msgstr "粘贴选中范围" +msgstr "粘贴选中内容" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "网页搜索" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "全部选择(&S)" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "选择模式 (&M)" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "选择行(&L)" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "输出保存为(&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "自动保存输出为..." + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "停止自动保存" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "打印屏幕(&P)..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." msgstr "调整回滚历史..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" msgstr "清除回滚历史" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" msgstr "清除回滚历史并重置" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "下一个配置方案" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "上一个配置方案" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "切换配置方案" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "设定编码(&E)" -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "允许鼠标跟踪" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "只读" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "配置或者重命名标签页(&C)..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "当前窗口中的全部标签页(&A)" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "选择标签页(&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "无(&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "输入复制到" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "&ZModem 上传..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "单次监视器" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "提示监视器(&P)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "活动监视器(&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "静止监视器(&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "进程结束监视器" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "放大字体" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "缩小字体" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "重置字体大小" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "发送信号" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "暂停任务(&S)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "继续任务(&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "挂起(&H)" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "中断任务(&I)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "终止任务(&T)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "杀死任务(&K)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "用户信号 &1" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "用户信号 &2" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "新建配置方案..." -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "编辑当前配置方案..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "当前会话内已有一个程序在运行,您确定要关闭它吗?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "当前会话内已有程序“%1”在运行,您确定要关闭它吗?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "确认关闭" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "关闭程序" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "当前会话内有一个程序在不会退出,您确定要强制杀死它吗?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" -msgstr "当前会话内的程序“%1”不会退出,您想要强制杀死它吗?" +msgstr "当前会话中的“%1”程序无法退出,您想要强制中止它吗?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "杀死程序" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "外壳程序的提示显示在会话“%1”" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "打开当前文件夹方式" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "保存 ZModem 下载数据到..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2447,13 +2533,13 @@ msgstr "" "

              检测到一个 ZModem 文件传输尝试,但是在此系统上找不到合适的 ZModem 软件。

              您可能需要安装“rzsz”或“lrzsz”软件包。

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              当前会话已经有一个 ZModem 文件传输在进行中。

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2462,7 +2548,7 @@ msgstr "" "

              在此系统上找不到合适的 ZModem 软件。

              您可能需要安装“rzsz”或“lrzsz”软" "件包。

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "选择要通过 ZModem 上传的文件" @@ -2485,144 +2571,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "配置" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 -#, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "搜索:" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 -#, kde-format -msgid "Enable menu accelerators" -msgstr "启用菜单快捷键" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 -#, kde-format -msgid "If enabled, profile settings will be ignored" -msgstr "如果启用,配置方案中的设置将被忽略" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 -#, kde-format -msgid "Remember window size" -msgstr "记住窗口大小" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 -#, kde-format -msgid "Show window title on the titlebar" -msgstr "在标题栏显示窗口标题" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 -#, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "鼠标光标途径终端时获取焦点" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 -#, kde-format -msgid "Match using regular expressions" -msgstr "匹配正则表达式" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format msgid "When launching Konsole re-use existing process if possible" msgstr "当启动 Konsole 尽量重用已有进程" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) #. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format msgid "Run all Konsole windows in a single process" msgstr "在同一个进程内运行所有 Konsole 窗口" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:81 #, kde-format -msgid "Highlight all matches" -msgstr "高亮全部匹配" +msgid "If enabled, profile settings will be ignored" +msgstr "如果启用,配置方案中的设置将被忽略" -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) +#: settings/GeneralSettings.ui:84 #, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "设定搜索是否区分大小写" +msgid "Remember window size" +msgstr "记住窗口大小" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Case sensitive" -msgstr "区分大小写" +msgid "Force new tabs" +msgstr "强制新建标签页" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Remove window titlebar and frame" -msgstr "移除窗口标题栏和框架" +msgid "Listen for ZModem terminal codes" +msgstr "监听 ZModem 终端代码" -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Process and window:" -msgstr "进程和窗口:" +msgid "Show progress in taskbar" +msgstr "在任务栏中显示进度" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "通知:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "全部对话框都会重新显示" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "启用所有设置为“不再询问”的消息" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "设置搜索是否从末尾开始" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "反向查找" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "设定搜索是否区分大小写" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "区分大小写" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "进程和窗口:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "高亮全部匹配" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "搜索:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "设置查找是否应该在到达末尾后停止而不是从头开始查找" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "不从头开始查找" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "启用菜单快捷键" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "鼠标指针途径终端时获取焦点" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "全部对话框都会重新显示" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "启用所有设置为“不再询问”的消息" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "在标题栏显示窗口标题" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "启用 DBus API 中的安全敏感部分" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "移除窗口标题栏和框架" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "匹配正则表达式" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2647,71 +2759,109 @@ msgstr "下次启动时使用当前窗口大小" msgid "The window size will be saved upon exiting Konsole" msgstr "退出时将保存窗口大小" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "启动 Konsole 时,新建标签页而不是新建窗口 (如果可能)" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "在任务栏中显示进度" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "当脚本报告它的进度时,在任务栏中显示进度" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "像 runCommand 这样的 DBus API 将会被启用" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "监听 ZModem 终端代码" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "自动通过串口连接发送/接收文件" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "缩略图宽度" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "设置缩略图宽度" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "使用 Shift 来显示缩略图" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "使用 Alt 来显示缩略图" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "使用 Ctrl 来显示缩略图" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "搜索区分大小写" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "高亮全部搜索匹配" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "设置匹配的文本是否被高亮显示" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "查找在到达末尾后停止而不是从头开始查找" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "控制是否为单独的标签页创建子 cgroups" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2719,91 +2869,97 @@ msgstr "指定内存消耗级别上限,超过此上限则开始限流。" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "控制整个标签页栏的显示/隐藏状态" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "控制面板之间拖拽柄的大小" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "控制标签页栏的位置" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "控制标签页栏的外观样式" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "标签页栏使用用户自定义的 .css 文件" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "标签页栏的外观样式使用的 .css 文件" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "允许中键点击关闭已打开的标签页" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" msgstr "控制标签页栏上“新建标签页”按钮的显示/隐藏状态" +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "控制标签页栏上“搜索标签页”按钮的显示/隐藏状态" + #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "控制“关闭标签页”按钮的显示位置" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "控制新标签页的位置" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "扩展标签页宽度" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" msgstr "回滚历史文件保存到系统全局文件夹位置" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" msgstr "回滚历史文件使用用户指定文件夹" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" msgstr "回滚历史文件保存到指定的文件夹" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" msgstr "回滚历史文件保存到此文件夹" @@ -2815,31 +2971,27 @@ msgid "Enable memory monitoring:" msgstr "启用内存监视:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" -"更改将在重启后生效。\n" -"如果启用此项,当 Konsole 的持续内存消耗量超过指定值时,\n" -"systemd-oomd 将清理那些包含大幅消耗内存的进程的标签页。\n" -"提示:如果启用此项,高内存消耗的场景可能会造成更严重的拖慢。\n" -"而如果指定值太低,则可能会导致 Konsole 本身的进程被系统清理。" +"更改将在重启后生效。启用此项时,如果 Konsole 的持续内存消耗超过指定上限," +"systemd-oomd 将清理包含消耗大量内存的进程的标签页。注意:启用此项时,高内存消" +"耗时可能造成更严重的拖慢。如果上限太低,可导致 Konsole 本身被系统终止。" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "内存上限:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -2928,19 +3080,19 @@ msgstr "显示:" #: settings/TabBarSettings.ui:63 #, kde-format msgid "When needed" -msgstr "当需要时" +msgstr "需要时显示" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowTabBar) #: settings/TabBarSettings.ui:73 #, kde-format msgid "Alwa&ys" -msgstr "总是(&Y)" +msgstr "总是显示(&Y)" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideTabBar) #: settings/TabBarSettings.ui:83 #, kde-format msgid "&Never" -msgstr "永不(&N)" +msgstr "不显示(&N)" #. i18n: ectx: property (text), widget (QLabel, positionLabel) #: settings/TabBarSettings.ui:109 @@ -2952,174 +3104,192 @@ msgstr "位置:" #: settings/TabBarSettings.ui:119 #, kde-format msgid "Above terminal area" -msgstr "在终端上方" +msgstr "终端上方" #. i18n: ectx: property (text), widget (QRadioButton, Bottom) #: settings/TabBarSettings.ui:129 #, kde-format msgid "Be&low terminal area" -msgstr "在终端下方" +msgstr "终端下方(&L)" #. i18n: ectx: property (text), widget (QRadioButton, Left) #: settings/TabBarSettings.ui:139 #, kde-format msgid "To the left of terminal area" -msgstr "在终端左侧" +msgstr "终端左侧" #. i18n: ectx: property (text), widget (QRadioButton, Right) #: settings/TabBarSettings.ui:149 #, kde-format msgid "To the &right of terminal area" -msgstr "在终端右侧(&R)" +msgstr "终端右侧(&R)" #. i18n: ectx: property (text), widget (QLabel, showCloseTabButtonLabel) #: settings/TabBarSettings.ui:175 #, kde-format msgid "Show Close Tab button:" -msgstr "显示关闭标签页按钮:" +msgstr "关闭标签页按钮:" #. i18n: ectx: property (text), widget (QRadioButton, OnEachTab) #: settings/TabBarSettings.ui:185 #, kde-format msgid "On ea&ch tab" -msgstr "在每个标签页上(&C)" +msgstr "每个标签页(&C)" #. i18n: ectx: property (text), widget (QRadioButton, OnTabBar) #: settings/TabBarSettings.ui:195 #, kde-format msgid "On &the tab bar" -msgstr "在整条标签页栏上(&T)" +msgstr "标签页栏(&T)" #. i18n: ectx: property (text), widget (QRadioButton, None) #: settings/TabBarSettings.ui:205 #, kde-format msgctxt "Do not show a close button" msgid "None" -msgstr "无" +msgstr "不显示" + +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "搜索标签页按钮:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "总是显示" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "不显示" #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" -msgstr "杂项:" +msgstr "其他:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "显示“新建标签页”按钮" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" -msgstr "扩展单个标签页宽度到全窗口" +msgstr "单个标签页拉伸到窗口宽度" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "使用用户定义的样式表:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(无)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "行为" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "新标签页位置:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" -msgstr "在最后(&T)" +msgstr "最后(&T)" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" -msgstr "在当前标签页之后(&T)" +msgstr "当前标签页之后(&T)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "中键点击关闭标签页" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "拆分视图" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "显示标题:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" -msgstr "当需要时" +msgstr "需要时显示" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" -msgstr "从不" +msgstr "不显示" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "拖动柄大小:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "小" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "中" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "大" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" -msgstr "总是" +msgstr "总是显示" #: settings/TemporaryFilesSettings.cpp:31 #, kde-format @@ -3167,11 +3337,11 @@ msgstr "像素" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" "

              要使用此特性,请在配置方案的设置中启用鼠标->杂项->文件加下划线

              " +"font-weight:600;\">鼠标->其他->文件加下划线。

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3209,94 +3379,94 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "启用缩略图生成" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "大小:%1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "您确定要粘贴 %1 个字符吗?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "确认粘贴" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" -msgstr "结束文字/中断:可退出当前进程" +msgstr "结束文本/中断:可退出当前进程" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "传输结束:可退出当前进程" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "系统提示:尝试发出声音警告" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "退格" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "设备控制3/XOFF:暂停输出" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "替代/暂停:可暂停当前进程" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "退出(Esc):用于操纵终端状态" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "文件分隔符/退出:可中止当前进程" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "您试图粘贴的文本包含隐藏的控制字符,是否要将其过滤掉?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "确认粘贴" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "不带控制字符粘贴(&W)" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "全部粘贴(&P)" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "取消(&C)" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been
              已经按下 Ctrl+S,输出正被挂起。可以按下 Ctrl+Q 继续。" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "此终端为只读。" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "目录切换到(&D)" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "粘贴位置(&P)" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "拆分视图" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "拆分视图 (左右)" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "拆分视图 (上下)" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "拆分视图 (自动)" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "拆分视图 (左右) (与后一个标签页一组)" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "拆分视图 (上下) (与后一个标签页一组)" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "拆分视图 (自动) (与后一个标签页一组)" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "加载新标签页 (使用 2x2 终端布局)" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "加载新标签页 (使用 2x1 终端布局)" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "加载新标签页 (使用 1x2 终端布局)" -#: ViewManager.cpp:205 +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" msgstr "扩大视图" -#: ViewManager.cpp:213 +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" msgstr "缩小视图" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "分离当前视图(&V)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "分离当前标签页(&T)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "下一个标签页" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" msgstr "上一个标签页" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "聚焦上部终端" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "聚焦下部终端" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "聚焦左侧终端" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "聚焦右侧终端" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "聚焦下一个终端" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "聚焦上一个终端" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "切换到最后一个标签页" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "最近使用的标签页" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "在两个标签页之间切换" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "最近使用的标签页 (反向)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "切换最大化当前视图" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "切换最大化当前视图" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "切换缩放-最大化当前视图" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "切换缩放-最大化当前视图" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "移动标签页至右侧" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "移动标签页至左侧" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "设置语义集成 (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "语义提示显示开关" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "行号显示开关" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "与所有视图相同的大小" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "切换到标签页 %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "语义提示" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "行号 " -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "保存标签页布局" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole 视图布局 (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3563,7 +3745,7 @@ msgstr "" "保存布局时发生问题。\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3573,13 +3755,13 @@ msgstr "" "加载布局时发生问题。\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "加载标签页布局" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3625,7 +3807,7 @@ msgstr "Meta" #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous:" -msgstr "杂项:" +msgstr "其他:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableReverseUrlHints) #: widgets/EditProfileAdvancedPage.ui:164 @@ -3675,28 +3857,40 @@ msgstr "默认字符编码(&D):" msgid "Shortcut for peeking the primary screen:" msgstr "暂时显示主屏幕快捷键:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "设置自动保存间隔:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " 毫秒" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "行号:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "永不(&N)" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "当显示 &URL 提示时" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3732,7 +3926,7 @@ msgstr "编辑选中的配色方案" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3786,14 +3980,20 @@ msgstr "用粗体绘制强烈颜色" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" -msgstr "使用选中字体的行字符而不是内置代码" +msgstr "使用所选字体来显示线条字符,而非内置代码" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "使用字体中包含的行字符" +msgstr "使用字体中包含的线条字符" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3910,29 +4110,43 @@ msgid "Make the cursor blink regularly" msgstr "让光标定时闪烁" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "已启用" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "动效:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "平滑渲染光标动效" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" -msgstr "杂项" +msgstr "其他" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "窗口:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3940,144 +4154,144 @@ msgid "" msgstr "调整窗口大小后在窗口中央显示终端的行数和列数" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "调整大小后显示终端大小提示" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "总是反转选中文本的颜色" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "黑暗强度:" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "颜色:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "选择用于绘制边框的颜色" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "非活动终端:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "活动终端:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "终端内容" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "行距:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "两行间的像素数量" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " 像素" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "边距:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "居中对齐:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "通过黯淡颜色来反映窗口是否处于活动状态" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "变暗" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "通过绘制边框来反映窗口是否处于活动状态" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "边框" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "显示竖线于列:" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              复杂文本布局

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "复杂文本布局" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "启用单词模式文本渲染方式" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "单词模式" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4085,43 +4299,43 @@ msgid "" msgstr "忽略单词中间的属性更改 (否则,渲染时遇到属性更改会中断单词)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "对整个单词使用相同的属性" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "将 ASCII 字符的单词合并渲染" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII 字符" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "将婆罗米系文字字符合并渲染" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "婆罗米系文字字符" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "表情符号字体:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4129,95 +4343,95 @@ msgid "" msgstr "在终端内启用双向显示 (只对阿拉伯语、波斯语或希伯莱语有效)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" -msgstr "双向文字渲染" +msgstr "双向文本渲染" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" -msgstr "文字总是从左向右,忽略相关控制字符。" +msgstr "文本总是从左向右排列,忽略相关控制字符。" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "强制从左向右" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "将表格绘制字符视为强从左向右。" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "表格字符双向模式覆盖" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "忽略有问题字符的 wcwidth" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "覆盖 wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "编辑配置方案" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "常规" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "标签页" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "外观" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "滚动" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "键盘" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "按键绑定" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "鼠标" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "高级" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4228,47 +4442,52 @@ msgstr "" "保存设置到此位置时权限不足:%1请修改该文件的权" "限,或更换配置方案文件名称以将配置方案保存到新的文件。" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "配置方案名称为空,请设置名称以存储设置。" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "同名的配置方案“%1”已存在。" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "配置方案文件名超过了所允许的最大长度 (%1)。" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "高亮显示的字符在配置方案文件名中无效:%1。" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "正在编辑 %1 个配置方案:%2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "新建配置方案" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "编辑配置方案“%1”" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "无" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4277,7 +4496,7 @@ msgid " column" msgid_plural " columns" msgstr[0] " 列" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4286,84 +4505,84 @@ msgid " row" msgid_plural " rows" msgstr[0] " 行" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "系统提示" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "系统通知" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "视觉提示" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "忽略系统提示事件" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "%1 中的新建终端会话的默认方案" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "编辑环境" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "每个环境变量一行" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] " 秒" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "选择初始目录" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "获取新方案…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "方案 %1 加载失败。" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "这个配色方案中使用了透明背景,您的桌面不支持此特性" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " "Konsole to see transparent background." msgstr "Konsole 在桌面特效启用前启动。您需要重启 Konsole 来显示透明背景。" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "文件类型默认值" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4391,7 +4610,7 @@ msgstr "" "如果 PATH 或者 LINE 任何一个没有出现在命令行中,那么这个设定会被直接忽略,文" "件会用默认的文本编辑器打开。" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "自定义的文本编辑器命令" @@ -4478,26 +4697,54 @@ msgstr "选择初始目录" msgid "Start in same directory as current session" msgstr "在当前会话相同目录下开始" +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"打开新标签页或拆分视图时,自动输入当前会话的同一个容器 (Toolbox、Distrobox)" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "输入当前会话的同一个容器" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "总是在容器中启动:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "总是使用此配置在选定的容器中启动新会话" + #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "环境:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "编辑环境变量以及对应值的列表" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "初始终端尺寸(&Z):" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4510,31 +4757,31 @@ msgstr "" "body>" #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "终端系统提示方式(&T):" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "语义集成" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "向上/向上箭头模拟" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "鼠标点击输入行移动光标" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "语义提示:" @@ -4544,9 +4791,9 @@ msgstr "语义提示:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4557,9 +4804,9 @@ msgstr "从不" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4570,34 +4817,34 @@ msgstr "当显示 URL 提示时" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "总是" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "红色错误栏:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "红色错误背景色:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "交替颜色栏:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "交替背景色:" @@ -4666,7 +4913,7 @@ msgstr "双击选择时,被当作词的一部分的非字母表字符。" #: widgets/EditProfileMousePage.ui:53 #, kde-format msgid "Word characters:" -msgstr "文字字符:" +msgstr "单词字符:" #. i18n: ectx: property (text), widget (QLabel, label_17) #: widgets/EditProfileMousePage.ui:94 @@ -4696,13 +4943,13 @@ msgstr "中键单击粘贴:" #: widgets/EditProfileMousePage.ui:150 #, kde-format msgid "From clipboard" -msgstr "从剪贴板" +msgstr "来自剪贴板" #. i18n: ectx: property (text), widget (QRadioButton, pasteFromX11SelectionButton) #: widgets/EditProfileMousePage.ui:160 #, kde-format msgid "From selection" -msgstr "从选区" +msgstr "来自选中的内容" #. i18n: ectx: property (text), widget (QLabel, label) #: widgets/EditProfileMousePage.ui:186 @@ -4778,7 +5025,7 @@ msgstr "链接加下划线" msgid "" "Text recognized as a file will be underlined when hovered by the mouse " "pointer." -msgstr "识别为文件的文本将在鼠标光标悬停时添加下划线。" +msgstr "识别为文件的文本将在鼠标指针悬停时添加下划线。" #. i18n: ectx: property (text), widget (QCheckBox, underlineFilesButton) #: widgets/EditProfileMousePage.ui:279 @@ -4888,13 +5135,13 @@ msgstr "禁用文件和 URL 的拖放菜单" #: widgets/EditProfileMousePage.ui:425 #, kde-format msgid "Pressing Ctrl+scrollwheel will increase/decrease the text size." -msgstr "按下 Ctrl 并滚动鼠标滚轮将增大/减小文字大小。" +msgstr "按下 Ctrl 并滚动鼠标滚轮将增大/减小文本大小。" #. i18n: ectx: property (text), widget (QCheckBox, enableMouseWheelZoomButton) #: widgets/EditProfileMousePage.ui:428 #, kde-format msgid "Allow Ctrl+scrollwheel to zoom text size" -msgstr "允许 Ctrl+滚轮 缩放文字大小" +msgstr "允许 Ctrl+滚轮 缩放文本大小" #. i18n: ectx: property (toolTip), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:435 @@ -4902,7 +5149,7 @@ msgstr "允许 Ctrl+滚轮 缩放文字大小" msgid "" "When positioning the mouse over a hexadecimal color it will be displayed in " "a frame next to the mouse pointer" -msgstr "鼠标在十六进制颜色上悬停时,它将显示到鼠标光标旁边的框中" +msgstr "鼠标在十六进制颜色上悬停时,它将显示到鼠标指针旁边的框中" #. i18n: ectx: property (text), widget (QCheckBox, allowColorFilters) #: widgets/EditProfileMousePage.ui:438 @@ -4933,115 +5180,127 @@ msgid "Scrollback:" msgstr "回滚历史:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "向上/下滚动页面:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "高亮显示刚刚进入视图的行" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "隐藏" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "每个标记的大小 (滚动条长度的百分比):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "高亮:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "滚动半个窗口" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "半屏高度(&T)" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "滚动条标记的颜色:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "查找时滚动条高亮显示行的颜色:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "重排行:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "滚动整个页面高度" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "全屏高度(&U)" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "滚动条位置:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "在终端窗口的右侧显示滚动条" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "右侧(&G)" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "在终端窗口的左侧显示滚动条" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "左侧(&L)" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "隐藏" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "高亮:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "高亮显示刚刚进入视图的行" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "重排行:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "终端调整大小时重排行" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "滚动条标记的颜色:" +msgid "Scrollbar position:" +msgstr "滚动条位置:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "每个标记的大小 (滚动条长度的百分比):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "查找高亮行不透明度:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5143,37 +5402,37 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "无(&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "查找..." -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "在此输入要搜索的文本" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "后一个" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "查找后一个和搜索字串匹配的文本" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" msgstr "前一个" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" @@ -5181,77 +5440,77 @@ msgstr "查找前一个和搜索字串匹配的文本" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "显示选项菜单" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "关闭搜索栏" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "区分大小写" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "设定搜索是否区分大小写" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "显示选项菜单" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "关闭搜索栏" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "匹配正则表达式" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "高亮全部匹配" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "设置匹配的文本是否被高亮显示" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "反向搜索" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "设置搜索是否从末尾开始" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "不从头开始查找" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "设置查找是否应该在到达末尾后停止而不是从头开始查找" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "从末尾查找搜索字串" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5262,7 +5521,7 @@ msgstr "从开头查找搜索字串" msgid "Print Shell" msgstr "打印 Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5300,6 +5559,12 @@ msgstr "正常标签页标题格式" msgid "Tab Co&lor:" msgstr "标签页颜色(&L):" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "活动标签页颜色(&A):" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5393,31 +5658,37 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "还原终端" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "打开新标签页" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "搜索标签页" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "关闭此标签页" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "分离标签页(&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "配置或者重命名标签页(&C)..." -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" diff --git a/local/recipes/kde/konsole/source/po/zh_TW/konsole.po b/local/recipes/kde/konsole/source/po/zh_TW/konsole.po index 9c2c9b7287..5c5e027f68 100644 --- a/local/recipes/kde/konsole/source/po/zh_TW/konsole.po +++ b/local/recipes/kde/konsole/source/po/zh_TW/konsole.po @@ -1,7 +1,7 @@ # translation of konsole.po to Chinese Traditional # Copyright (C) 2001-2002, 2006, 2007, 2008 Free Software Foundation, Inc. # -# SPDX-FileCopyrightText: 2023, 2024 Kisaragi Hiu +# SPDX-FileCopyrightText: 2023, 2024, 2025, 2026 Kisaragi Hiu # Jouston Huang (Huang, Jiun-Jeng) , 2001. # Roy Hiu-yeung Chan (voidoo) , 2002. # Kenduest Lee , 2002. @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: konsole\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-10-11 02:43+0000\n" -"PO-Revision-Date: 2024-08-25 01:54+0900\n" +"POT-Creation-Date: 2026-06-23 02:43+0000\n" +"PO-Revision-Date: 2026-03-02 05:38+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Traditional Chinese \n" "Language: zh_TW\n" @@ -25,7 +25,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 24.04.70\n" +"X-Generator: Lokalize 25.11.70\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -61,7 +61,7 @@ msgstr "檢視" #. i18n: ectx: Menu (view-split) #: ../desktop/konsoleui.rc:20 ../desktop/partui.rc:12 -#: ../desktop/sessionui.rc:62 +#: ../desktop/sessionui.rc:64 #, kde-format msgid "Split View" msgstr "分割檢視" @@ -94,10 +94,10 @@ msgstr "主工具列" #: ../desktop/partui.rc:20 #, kde-format msgid "S&crollback" -msgstr "往回捲軸(&C)" +msgstr "回捲歷史(&C)" #. i18n: ectx: ToolBar (sessionToolbar) -#: ../desktop/sessionui.rc:78 +#: ../desktop/sessionui.rc:80 #, kde-format msgid "Session Toolbar" msgstr "工作階段工具列" @@ -177,46 +177,58 @@ msgstr "隱藏選單列,覆蓋預設的設定" #: Application.cpp:68 #, kde-format msgctxt "@info:shell" +msgid "Show all the toolbars, overriding the default setting" +msgstr "顯示所有工具列,覆蓋預設的設定" + +#: Application.cpp:69 +#, kde-format +msgctxt "@info:shell" +msgid "Hide all the toolbars, overriding the default setting" +msgstr "隱藏所有工具列,覆蓋預設的設定" + +#: Application.cpp:70 +#, kde-format +msgctxt "@info:shell" msgid "Show the tabbar, overriding the default setting" msgstr "顯示分頁列,覆蓋預設的設定" -#: Application.cpp:69 +#: Application.cpp:71 #, kde-format msgctxt "@info:shell" msgid "Hide the tabbar, overriding the default setting" msgstr "隱藏分頁列,覆蓋預設的設定" -#: Application.cpp:70 +#: Application.cpp:72 #, kde-format msgctxt "@info:shell" msgid "Start Konsole in fullscreen mode" msgstr "以全螢幕模式開啟 Konsole" -#: Application.cpp:71 +#: Application.cpp:73 #, kde-format msgctxt "@info:shell" msgid "Disable transparent backgrounds, even if the system supports them." msgstr "關閉透明背景,即使系統有支援" -#: Application.cpp:72 +#: Application.cpp:74 #, kde-format msgctxt "@info:shell" msgid "List the available profiles" msgstr "可用的設定檔清單" -#: Application.cpp:73 +#: Application.cpp:75 #, kde-format msgctxt "@info:shell" msgid "List all the profile properties names and their type (for use with -p)" msgstr "列出所有設定檔屬性名稱與型態(以便與 -p 使用) " -#: Application.cpp:74 +#: Application.cpp:76 #, kde-format msgctxt "@info:shell" msgid "Change the value of a profile property." msgstr "改變設定檔內容的值。" -#: Application.cpp:76 +#: Application.cpp:78 #, kde-format msgctxt "@info:shell" msgid "" @@ -224,7 +236,7 @@ msgid "" "it as the last option." msgstr "要執行的指令。此選項會將所有後面的字串都視為參數,所以不得已不要使用。" -#: Application.cpp:79 +#: Application.cpp:81 #, kde-format msgctxt "@info:shell" msgid "" @@ -233,13 +245,13 @@ msgid "" msgstr "" "強制重複使用已存在的實體(就算功能會被破壞),例如 --new-tab。主要用於除錯。" -#: Application.cpp:86 +#: Application.cpp:88 #, kde-format msgctxt "@info:shell" msgid "Arguments passed to command" msgstr "要傳給指令的參數" -#: Application.cpp:516 +#: Application.cpp:546 #, kde-format msgctxt "@item" msgid "Toggle Background Window" @@ -257,157 +269,157 @@ msgctxt "@item:inmenu The host the user is connected to via ssh" msgid "%1" msgstr "%1" -#: colorscheme/ColorScheme.cpp:123 +#: colorscheme/ColorScheme.cpp:124 msgctxt "@item:intable palette" msgid "Foreground" msgstr "前景" -#: colorscheme/ColorScheme.cpp:124 +#: colorscheme/ColorScheme.cpp:125 msgctxt "@item:intable palette" msgid "Background" msgstr "背景" -#: colorscheme/ColorScheme.cpp:125 +#: colorscheme/ColorScheme.cpp:126 msgctxt "@item:intable palette" msgid "Color 1" msgstr "顏色 1" -#: colorscheme/ColorScheme.cpp:126 +#: colorscheme/ColorScheme.cpp:127 msgctxt "@item:intable palette" msgid "Color 2" msgstr "顏色 2" -#: colorscheme/ColorScheme.cpp:127 +#: colorscheme/ColorScheme.cpp:128 msgctxt "@item:intable palette" msgid "Color 3" msgstr "顏色 3" -#: colorscheme/ColorScheme.cpp:128 +#: colorscheme/ColorScheme.cpp:129 msgctxt "@item:intable palette" msgid "Color 4" msgstr "顏色 4" -#: colorscheme/ColorScheme.cpp:129 +#: colorscheme/ColorScheme.cpp:130 msgctxt "@item:intable palette" msgid "Color 5" msgstr "顏色 5" -#: colorscheme/ColorScheme.cpp:130 +#: colorscheme/ColorScheme.cpp:131 msgctxt "@item:intable palette" msgid "Color 6" msgstr "顏色 6" -#: colorscheme/ColorScheme.cpp:131 +#: colorscheme/ColorScheme.cpp:132 msgctxt "@item:intable palette" msgid "Color 7" msgstr "顏色 7" -#: colorscheme/ColorScheme.cpp:132 +#: colorscheme/ColorScheme.cpp:133 msgctxt "@item:intable palette" msgid "Color 8" msgstr "顏色 8" -#: colorscheme/ColorScheme.cpp:133 +#: colorscheme/ColorScheme.cpp:134 msgctxt "@item:intable palette" msgid "Foreground (Intense)" msgstr "前景(強烈)" -#: colorscheme/ColorScheme.cpp:134 +#: colorscheme/ColorScheme.cpp:135 msgctxt "@item:intable palette" msgid "Background (Intense)" msgstr "背景(強烈)" -#: colorscheme/ColorScheme.cpp:135 +#: colorscheme/ColorScheme.cpp:136 msgctxt "@item:intable palette" msgid "Color 1 (Intense)" msgstr "顏色 1 (強烈)" -#: colorscheme/ColorScheme.cpp:136 +#: colorscheme/ColorScheme.cpp:137 msgctxt "@item:intable palette" msgid "Color 2 (Intense)" msgstr "顏色 2 (強烈)" -#: colorscheme/ColorScheme.cpp:137 +#: colorscheme/ColorScheme.cpp:138 msgctxt "@item:intable palette" msgid "Color 3 (Intense)" msgstr "顏色 3 (強烈)" -#: colorscheme/ColorScheme.cpp:138 +#: colorscheme/ColorScheme.cpp:139 msgctxt "@item:intable palette" msgid "Color 4 (Intense)" msgstr "顏色 4 (強烈)" -#: colorscheme/ColorScheme.cpp:139 +#: colorscheme/ColorScheme.cpp:140 msgctxt "@item:intable palette" msgid "Color 5 (Intense)" msgstr "顏色 5 (強烈)" -#: colorscheme/ColorScheme.cpp:140 +#: colorscheme/ColorScheme.cpp:141 msgctxt "@item:intable palette" msgid "Color 6 (Intense)" msgstr "顏色 6 (強烈)" -#: colorscheme/ColorScheme.cpp:141 +#: colorscheme/ColorScheme.cpp:142 msgctxt "@item:intable palette" msgid "Color 7 (Intense)" msgstr "顏色 7 (強烈)" -#: colorscheme/ColorScheme.cpp:142 +#: colorscheme/ColorScheme.cpp:143 msgctxt "@item:intable palette" msgid "Color 8 (Intense)" msgstr "顏色 8 (強烈)" -#: colorscheme/ColorScheme.cpp:143 +#: colorscheme/ColorScheme.cpp:144 msgctxt "@item:intable palette" msgid "Foreground (Faint)" msgstr "前景(暗淡)" -#: colorscheme/ColorScheme.cpp:144 +#: colorscheme/ColorScheme.cpp:145 msgctxt "@item:intable palette" msgid "Background (Faint)" msgstr "背景(暗淡)" -#: colorscheme/ColorScheme.cpp:145 +#: colorscheme/ColorScheme.cpp:146 msgctxt "@item:intable palette" msgid "Color 1 (Faint)" msgstr "顏色 1(暗淡)" -#: colorscheme/ColorScheme.cpp:146 +#: colorscheme/ColorScheme.cpp:147 msgctxt "@item:intable palette" msgid "Color 2 (Faint)" msgstr "顏色 2(暗淡)" -#: colorscheme/ColorScheme.cpp:147 +#: colorscheme/ColorScheme.cpp:148 msgctxt "@item:intable palette" msgid "Color 3 (Faint)" msgstr "顏色 3(暗淡)" -#: colorscheme/ColorScheme.cpp:148 +#: colorscheme/ColorScheme.cpp:149 msgctxt "@item:intable palette" msgid "Color 4 (Faint)" msgstr "顏色 4(暗淡)" -#: colorscheme/ColorScheme.cpp:149 +#: colorscheme/ColorScheme.cpp:150 msgctxt "@item:intable palette" msgid "Color 5 (Faint)" msgstr "顏色 5(暗淡)" -#: colorscheme/ColorScheme.cpp:150 +#: colorscheme/ColorScheme.cpp:151 msgctxt "@item:intable palette" msgid "Color 6 (Faint)" msgstr "顏色 6(暗淡)" -#: colorscheme/ColorScheme.cpp:151 +#: colorscheme/ColorScheme.cpp:152 msgctxt "@item:intable palette" msgid "Color 7 (Faint)" msgstr "顏色 7(暗淡)" -#: colorscheme/ColorScheme.cpp:152 +#: colorscheme/ColorScheme.cpp:153 msgctxt "@item:intable palette" msgid "Color 8 (Faint)" msgstr "顏色 8(暗淡)" -#: colorscheme/ColorScheme.cpp:451 +#: colorscheme/ColorScheme.cpp:452 #, kde-format msgctxt "@item" msgid "Un-named Color Scheme" @@ -660,6 +672,38 @@ msgstr "頂端" msgid "AaZz09..." msgstr "AaZz09..." +#: containers/ContainerList.cpp:78 +#, kde-format +msgctxt "@title:group section header in new-tab menu" +msgid "Host" +msgstr "主機" + +#: containers/ContainerRegistry.cpp:43 +#, kde-format +msgid "" +"Container support is not available when Konsole is running inside Flatpak." +msgstr "Konsole 作為 Flatpak 執行時無法使用容器功能。" + +#: containers/DistroboxDetector.cpp:72 +#, kde-format +msgid "Distrobox" +msgstr "Distrobox" + +#: containers/KapsuleDetector.cpp:33 +#, kde-format +msgid "Kapsule" +msgstr "Kapsule" + +#: containers/KapsuleDetector.cpp:79 +#, kde-format +msgid " [default]" +msgstr " [預設]" + +#: containers/ToolboxDetector.cpp:29 +#, kde-format +msgid "Toolbox" +msgstr "Toolbox" + #: CopyInputDialog.cpp:30 #, kde-format msgid "Copy Input" @@ -704,7 +748,7 @@ msgstr "" msgid "Copy Location" msgstr "複製檔案位置" -#: filterHotSpots/FileFilterHotspot.cpp:280 +#: filterHotSpots/FileFilterHotspot.cpp:285 #, kde-format msgid "Generating Thumbnail" msgstr "縮圖產生中" @@ -735,13 +779,13 @@ msgctxt "@title:window" msgid "Select font" msgstr "選擇字型" -#: FontDialog.cpp:38 +#: FontDialog.cpp:37 #, kde-format msgctxt "@action:button" msgid "Show all fonts" msgstr "顯示所有字型" -#: FontDialog.cpp:67 +#: FontDialog.cpp:66 #, kde-format msgctxt "@info:status" msgid "" @@ -756,7 +800,7 @@ msgstr "" #, kde-format msgctxt "@title:window" msgid "Adjust Scrollback" -msgstr "調整捲軸" +msgstr "調整回捲歷史" #: HistorySizeDialog.cpp:46 #, kde-format @@ -780,17 +824,17 @@ msgstr "熱鍵組合" msgid "Output" msgstr "輸出" -#: KeyBindingEditor.cpp:219 KeyBindingEditor.cpp:220 +#: KeyBindingEditor.cpp:220 KeyBindingEditor.cpp:221 #, kde-format msgid "New Key Binding List" msgstr "新增熱鍵組合清單" -#: KeyBindingEditor.cpp:223 +#: KeyBindingEditor.cpp:224 #, kde-format msgid "Edit Key Binding List" msgstr "編輯熱鍵組合清單" -#: KeyBindingEditor.cpp:286 +#: KeyBindingEditor.cpp:287 #, kde-format msgid "A key bindings scheme cannot be saved with an empty description." msgstr "組合鍵方案不能在沒有說明的情況下儲存。" @@ -798,7 +842,7 @@ msgstr "組合鍵方案不能在沒有說明的情況下儲存。" #. i18n: ectx: property (text), widget (QPushButton, addEntryButton) #. i18n: ectx: property (text), widget (QPushButton, btnAdd) #: KeyBindingEditor.ui:65 plugins/QuickCommands/qcwidget.ui:246 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:350 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:342 #: plugins/SSHManager/sshwidget.ui:310 #, kde-format msgid "Add" @@ -832,225 +876,225 @@ msgstr "輸入:" msgid "Output:" msgstr "輸出:" -#: main.cpp:186 +#: main.cpp:189 #, kde-format msgctxt "@title" msgid "Konsole" msgstr "Konsole" -#: main.cpp:188 +#: main.cpp:191 #, kde-format msgctxt "@title" msgid "Terminal emulator" msgstr "終端機模擬程式" -#: main.cpp:190 +#: main.cpp:193 #, kde-format msgctxt "@info:credit" msgid "(c) 1997-2022, The Konsole Developers" msgstr "(c) 1997-2022, Konsole 開發團隊" -#: main.cpp:341 +#: main.cpp:369 #, kde-format msgctxt "@info:credit" msgid "Kurt Hindenburg" msgstr "Kurt Hindenburg" -#: main.cpp:343 +#: main.cpp:371 #, kde-format msgctxt "@info:credit" msgid "General maintainer, bug fixes and general improvements" msgstr "一般維護者,錯誤修正與一般改進" -#: main.cpp:346 +#: main.cpp:374 #, kde-format msgctxt "@info:credit" msgid "Robert Knight" msgstr "Robert Knight" -#: main.cpp:347 +#: main.cpp:375 #, kde-format msgctxt "@info:credit" msgid "Previous maintainer, ported to KDE4" msgstr "前任維護者,移植到 KDE4" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Lars Doelle" msgstr "Lars Doelle" -#: main.cpp:349 +#: main.cpp:377 #, kde-format msgctxt "@info:credit" msgid "Original author" msgstr "原始作者" -#: main.cpp:350 +#: main.cpp:378 #, kde-format msgctxt "@info:credit" msgid "Ahmad Samir" msgstr "Ahmad Samir" -#: main.cpp:351 main.cpp:354 main.cpp:357 main.cpp:360 +#: main.cpp:379 main.cpp:382 main.cpp:385 main.cpp:388 #, kde-format msgctxt "@info:credit" msgid "Major refactoring, bug fixes and major improvements" msgstr "主力重構、除蟲,與主力改善" -#: main.cpp:353 +#: main.cpp:381 #, kde-format msgctxt "@info:credit" msgid "Carlos Alves" msgstr "Carlos Alves" -#: main.cpp:356 +#: main.cpp:384 #, kde-format msgctxt "@info:credit" msgid "Tomaz Canabrava" msgstr "Tomaz Canabrava" -#: main.cpp:359 +#: main.cpp:387 #, kde-format msgctxt "@info:credit" msgid "Gustavo Carneiro" msgstr "Gustavo Carneiro" -#: main.cpp:362 +#: main.cpp:390 #, kde-format msgctxt "@info:credit" msgid "Edwin Pujols" msgstr "Edwin Pujols" -#: main.cpp:363 main.cpp:366 main.cpp:368 main.cpp:373 main.cpp:375 -#: main.cpp:376 main.cpp:377 +#: main.cpp:391 main.cpp:394 main.cpp:396 main.cpp:401 main.cpp:403 +#: main.cpp:404 main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and general improvements" msgstr "錯誤修正與一般改進" -#: main.cpp:365 +#: main.cpp:393 #, kde-format msgctxt "@info:credit" msgid "Martin T. H. Sandsmark" msgstr "Martin T. H. Sandsmark" -#: main.cpp:368 +#: main.cpp:396 #, kde-format msgctxt "@info:credit" msgid "Nate Graham" msgstr "Nate Graham" -#: main.cpp:369 +#: main.cpp:397 #, kde-format msgctxt "@info:credit" msgid "Mariusz Glebocki" msgstr "Mariusz Glebocki" -#: main.cpp:370 +#: main.cpp:398 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and major improvements" msgstr "錯誤修正與主力改進" -#: main.cpp:372 +#: main.cpp:400 #, kde-format msgctxt "@info:credit" msgid "Thomas Surrel" msgstr "Thomas Surrel" -#: main.cpp:375 +#: main.cpp:403 #, kde-format msgctxt "@info:credit" msgid "Jekyll Wu" msgstr "Jekyll Wu" -#: main.cpp:376 +#: main.cpp:404 #, kde-format msgctxt "@info:credit" msgid "Waldo Bastian" msgstr "Waldo Bastian" -#: main.cpp:377 +#: main.cpp:405 #, kde-format msgctxt "@info:credit" msgid "Stephan Binner" msgstr "Stephan Binner" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "Thomas Dreibholz" msgstr "Thomas Dreibholz" -#: main.cpp:378 +#: main.cpp:406 #, kde-format msgctxt "@info:credit" msgid "General improvements" msgstr "一般改進" -#: main.cpp:379 +#: main.cpp:407 #, kde-format msgctxt "@info:credit" msgid "Chris Machemer" msgstr "Chris Machemer" -#: main.cpp:379 main.cpp:380 main.cpp:407 main.cpp:408 main.cpp:409 -#: main.cpp:410 +#: main.cpp:407 main.cpp:408 main.cpp:435 main.cpp:436 main.cpp:437 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Bug fixes" msgstr "錯誤修正" -#: main.cpp:380 +#: main.cpp:408 #, kde-format msgctxt "@info:credit" msgid "Francesco Cecconi" msgstr "Francesco Cecconi" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Stephan Kulow" msgstr "Stephan Kulow" -#: main.cpp:381 +#: main.cpp:409 #, kde-format msgctxt "@info:credit" msgid "Solaris support and history" msgstr "支援 Solaris 和歷史紀錄" -#: main.cpp:382 +#: main.cpp:410 #, kde-format msgctxt "@info:credit" msgid "Alexander Neundorf" msgstr "Alexander Neundorf" -#: main.cpp:383 +#: main.cpp:411 #, kde-format msgctxt "@info:credit" msgid "Bug fixes and improved startup performance" msgstr "錯誤修正與啟動效能改進" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Peter Silva" msgstr "Peter Silva" -#: main.cpp:385 +#: main.cpp:413 #, kde-format msgctxt "@info:credit" msgid "Marking improvements" msgstr "標記改進" -#: main.cpp:386 +#: main.cpp:414 #, kde-format msgctxt "@info:credit" msgid "Lotzi Boloni" msgstr "Lotzi Boloni" -#: main.cpp:388 +#: main.cpp:416 #, kde-format msgctxt "@info:credit" msgid "" @@ -1060,13 +1104,13 @@ msgstr "" "嵌入式 Konsole\n" "工作列和工作階段名稱" -#: main.cpp:391 +#: main.cpp:419 #, kde-format msgctxt "@info:credit" msgid "David Faure" msgstr "David Faure" -#: main.cpp:393 +#: main.cpp:421 #, kde-format msgctxt "@info:credit" msgid "" @@ -1076,25 +1120,25 @@ msgstr "" "嵌入式 Konsole\n" "一般改進" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Antonio Larrosa" msgstr "Antonio Larrosa" -#: main.cpp:396 +#: main.cpp:424 #, kde-format msgctxt "@info:credit" msgid "Visual effects" msgstr "視覺效果" -#: main.cpp:397 +#: main.cpp:425 #, kde-format msgctxt "@info:credit" msgid "Matthias Ettrich" msgstr "Matthias Ettrich" -#: main.cpp:399 +#: main.cpp:427 #, kde-format msgctxt "@info:credit" msgid "" @@ -1104,132 +1148,132 @@ msgstr "" "從 kvt 專案移植源碼\n" "一般改進" -#: main.cpp:402 +#: main.cpp:430 #, kde-format msgctxt "@info:credit" msgid "Warwick Allison" msgstr "Warwick Allison" -#: main.cpp:403 +#: main.cpp:431 #, kde-format msgctxt "@info:credit" msgid "Schema and text selection improvements" msgstr "架構和文字選擇改進" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "Dan Pilone" msgstr "Dan Pilone" -#: main.cpp:405 +#: main.cpp:433 #, kde-format msgctxt "@info:credit" msgid "SGI port" msgstr "SGI 移植" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "Kevin Street" msgstr "Kevin Street" -#: main.cpp:406 +#: main.cpp:434 #, kde-format msgctxt "@info:credit" msgid "FreeBSD port" msgstr "FreeBSD 移植" -#: main.cpp:407 +#: main.cpp:435 #, kde-format msgctxt "@info:credit" msgid "Sven Fischer" msgstr "Sven Fischer" -#: main.cpp:408 +#: main.cpp:436 #, kde-format msgctxt "@info:credit" msgid "Dale M. Flaven" msgstr "Dale M. Flaven" -#: main.cpp:409 +#: main.cpp:437 #, kde-format msgctxt "@info:credit" msgid "Martin Jones" msgstr "Martin Jones" -#: main.cpp:410 +#: main.cpp:438 #, kde-format msgctxt "@info:credit" msgid "Lars Knoll" msgstr "Lars Knoll" -#: main.cpp:411 +#: main.cpp:439 #, kde-format msgctxt "@info:credit" msgid "Thanks to many others.\n" msgstr "感謝其他許多人。\n" -#: MainWindow.cpp:327 +#: MainWindow.cpp:391 #, kde-format msgctxt "@action:inmenu" msgid "&New Tab" msgstr "新增分頁(&N)" -#: MainWindow.cpp:337 +#: MainWindow.cpp:401 #, kde-format msgctxt "@action:inmenu" msgid "&Clone Tab" msgstr "複製分頁(&C)" -#: MainWindow.cpp:344 +#: MainWindow.cpp:408 #, kde-format msgctxt "@action:inmenu" msgid "New &Window" msgstr "新增視窗(&W)" -#: MainWindow.cpp:351 +#: MainWindow.cpp:415 #, kde-format msgctxt "@action:inmenu" msgid "Close Window" msgstr "關閉視窗" -#: MainWindow.cpp:356 +#: MainWindow.cpp:420 #, kde-format msgctxt "@title:menu" msgid "&Bookmarks" msgstr "書籤(&B)" -#: MainWindow.cpp:379 +#: MainWindow.cpp:447 #, kde-format msgid "&Window Color Scheme" msgstr "視窗配色(&W)" -#: MainWindow.cpp:391 +#: MainWindow.cpp:459 #, kde-format msgctxt "@action:inmenu" msgid "Manage Profiles..." msgstr "管理設定檔..." -#: MainWindow.cpp:397 +#: MainWindow.cpp:465 #, kde-format msgctxt "@item" msgid "Activate Menu" msgstr "啟動選單" -#: MainWindow.cpp:403 +#: MainWindow.cpp:471 #, kde-format msgctxt "@action:inmenu" msgid "Save Tab Layout..." msgstr "儲存分頁佈局……" -#: MainWindow.cpp:412 +#: MainWindow.cpp:480 #, kde-format msgctxt "@action:inmenu" msgid "Load Tab Layout..." msgstr "載入分頁佈局……" -#: MainWindow.cpp:726 MainWindow.cpp:743 +#: MainWindow.cpp:827 MainWindow.cpp:844 #, kde-format msgctxt "@info" msgid "There is a process running in this window. Do you still want to quit?" @@ -1237,67 +1281,67 @@ msgid_plural "" "There are %1 processes running in this window. Do you still want to quit?" msgstr[0] "此視窗中目前有 %1 個行程執行中。您確定要離開嗎?" -#: MainWindow.cpp:732 MainWindow.cpp:749 MainWindow.cpp:763 +#: MainWindow.cpp:833 MainWindow.cpp:850 MainWindow.cpp:864 #, kde-format msgctxt "@title" msgid "Confirm Close" msgstr "確認關閉" -#: MainWindow.cpp:733 MainWindow.cpp:750 MainWindow.cpp:764 +#: MainWindow.cpp:834 MainWindow.cpp:851 MainWindow.cpp:865 #, kde-format msgctxt "@action:button" msgid "Close &Window" msgstr "關閉視窗(&W)" -#: MainWindow.cpp:751 MainWindow.cpp:765 +#: MainWindow.cpp:852 MainWindow.cpp:866 #, kde-format msgctxt "@action:button" msgid "Close Current &Tab" msgstr "關閉目前的分頁(&T)" -#: MainWindow.cpp:760 +#: MainWindow.cpp:861 #, kde-format msgctxt "@info" msgid "There are %1 open terminals in this window. Do you still want to quit?" msgstr "此視窗中目前有 %1 個開啟的終端機。您確定要離開嗎?" -#: MainWindow.cpp:867 Part.cpp:297 +#: MainWindow.cpp:1001 Part.cpp:317 #, kde-format msgctxt "@title Preferences page name" msgid "Profiles" msgstr "設定檔" -#: MainWindow.cpp:884 +#: MainWindow.cpp:1019 #, kde-format msgctxt "@title Preferences page name" msgid "General" msgstr "一般" -#: MainWindow.cpp:896 +#: MainWindow.cpp:1031 #, kde-format msgctxt "@title Preferences page name" msgid "Memory" msgstr "記憶體" -#: MainWindow.cpp:902 +#: MainWindow.cpp:1037 #, kde-format msgctxt "@title Preferences page name" msgid "Tab Bar / Splitters" msgstr "分頁列/界線" -#: MainWindow.cpp:907 +#: MainWindow.cpp:1042 #, kde-format msgctxt "@title Preferences page name" msgid "Temporary Files" msgstr "暫存檔" -#: MainWindow.cpp:912 +#: MainWindow.cpp:1047 #, kde-format msgctxt "@title Preferences page name" msgid "Thumbnails" msgstr "縮圖" -#: Part.cpp:300 +#: Part.cpp:320 #, kde-format msgctxt "@title Preferences page name" msgid "Part Info" @@ -1381,7 +1425,7 @@ msgstr "儲存" #. i18n: ectx: property (text), widget (QPushButton, btnUpdate) #: plugins/QuickCommands/qcwidget.ui:266 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:281 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:273 #, kde-format msgid "Update" msgstr "更新" @@ -1393,27 +1437,27 @@ msgid "Cancel" msgstr "取消(&C)" #: plugins/QuickCommands/quickcommandsplugin.cpp:46 -#: plugins/QuickCommands/quickcommandsplugin.cpp:113 +#: plugins/QuickCommands/quickcommandsplugin.cpp:130 #, kde-format msgid "Quick Commands" msgstr "快捷指令" -#: plugins/QuickCommands/quickcommandsplugin.cpp:71 +#: plugins/QuickCommands/quickcommandsplugin.cpp:75 #, kde-format msgid "Show Quick Access" msgstr "顯示快速存取" -#: plugins/QuickCommands/quickcommandsplugin.cpp:106 +#: plugins/QuickCommands/quickcommandsplugin.cpp:123 #, kde-format msgid "No quick commands found. You can add one on Plugins -> Quick Commands" msgstr "沒有找到快捷指令。您可以在擴充元件 → 快捷指令裡新增一個" -#: plugins/QuickCommands/quickcommandsplugin.cpp:107 +#: plugins/QuickCommands/quickcommandsplugin.cpp:124 #, kde-format msgid "Plugins - Quick Commands" msgstr "擴充元件 - 快捷指令" -#: plugins/QuickCommands/quickcommandsplugin.cpp:125 +#: plugins/QuickCommands/quickcommandsplugin.cpp:140 #, kde-format msgid "Show Quick Commands" msgstr "顯示快捷指令" @@ -1455,7 +1499,7 @@ msgstr "" "內含多個設定檔,確定移除?" #: plugins/QuickCommands/quickcommandswidget.cpp:243 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:231 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:223 #, kde-format msgid "You are about to delete %1, are you sure?" msgstr "您將要刪除 %1 ,確定嗎?" @@ -1508,11 +1552,11 @@ msgid "%1 is a folder for SSH entries" msgstr "%1 是儲存 SSH 設定檔的資料夾" #: plugins/SSHManager/sshmanagermodel.cpp:79 -#: plugins/SSHManager/sshmanagermodel.cpp:318 -#: plugins/SSHManager/sshmanagermodel.cpp:386 -#: plugins/SSHManager/sshmanagermodel.cpp:419 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:102 -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:437 +#: plugins/SSHManager/sshmanagermodel.cpp:322 +#: plugins/SSHManager/sshmanagermodel.cpp:391 +#: plugins/SSHManager/sshmanagermodel.cpp:424 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:94 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:429 #, kde-format msgid "SSH Config" msgstr "SSH 設定" @@ -1571,24 +1615,24 @@ msgid "" msgstr "無法在殼層應用程式(如: bash, zsh, sh)外下達 SSH 命令" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:78 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:70 #: plugins/SSHManager/sshwidget.ui:133 #, kde-format msgid "SSH Key" msgstr "SSH 金鑰" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:117 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:109 #, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "刪除" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:159 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:151 #, kde-format msgid "Don't Change" msgstr "不要變更" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:222 #, kde-format msgid "" "You are about to delete the folder %1,\n" @@ -1597,68 +1641,68 @@ msgstr "" "您將要刪除 %1 資料夾,\n" "其中有多個 SSH 設定值,確認刪除?" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:238 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:230 #, kde-format msgctxt "@title:window" msgid "Delete SSH Configurations" msgstr "刪除 SSH 設定" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:292 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:284 #, kde-format msgid "Imported SSH Profile
              Some settings are read only." msgstr "已匯入 SSH 設定檔
              有些設定是唯讀的。" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:387 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:379 #, kde-format msgid "Missing Hostname" msgstr "未指定主機名稱" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:392 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:384 #, kde-format msgid "Missing Name" msgstr "未指定名稱" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:399 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:391 #, kde-format msgid "If Use Ssh Config is set, do not specify sshkey or username." msgstr "啟用「使用 SSH 設定檔」後,請勿再自行指定 SSH 金鑰或使用者名稱。" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:404 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:396 #, kde-format msgid "At least Username or SSHKey must be set" msgstr "至少需指定使用者名稱或 SSH 金鑰" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:410 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:402 #, kde-format msgid "Missing Folder" msgstr "找不到資料夾" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:415 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:407 #, kde-format msgid "An SSH session must have a profile" msgstr "所有 SSH 工作階段都必須指定設定值" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:439 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:431 #, kde-format msgid "Cannot delete this folder" msgstr "無法刪除本資料夾" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:442 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:434 #, kde-format msgid "Delete folder and all of its contents" msgstr "刪除資料夾及所有其內容" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:446 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:438 #, kde-format msgid "Double click to change the folder name." msgstr "按兩下以重新命名資料夾" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "You can't delete an automatically added entry." msgstr "您無法刪除自動加入的條目。" -#: plugins/SSHManager/sshmanagerpluginwidget.cpp:453 +#: plugins/SSHManager/sshmanagerpluginwidget.cpp:445 #, kde-format msgid "Delete selected entry" msgstr "刪除選定條目" @@ -1849,25 +1893,25 @@ msgstr "輸出選項" #. i18n: ectx: property (text), widget (QCheckBox, printerFriendly) #. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions) -#: PrintOptions.ui:39 settings/konsole.kcfg:182 +#: PrintOptions.ui:39 settings/konsole.kcfg:210 #, kde-format msgid "Printer &friendly mode (black text, no background)" msgstr "便於列印模式 (黑色文字,不列印背景)(&F)" #. i18n: ectx: property (text), widget (QCheckBox, scaleOutput) #. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions) -#: PrintOptions.ui:46 settings/konsole.kcfg:186 +#: PrintOptions.ui:46 settings/konsole.kcfg:214 #, kde-format msgid "&Scale output" msgstr "調整輸出(&S)" -#: profile/Profile.cpp:266 +#: profile/Profile.cpp:272 #, kde-format msgctxt "Name of the built-in profile" msgid "Built-in" msgstr "內建" -#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:537 +#: profile/ProfileList.cpp:37 widgets/EditProfileDialog.cpp:572 #, kde-format msgid "Default profile" msgstr "預設設定檔" @@ -1926,17 +1970,38 @@ msgstr "雙擊以變更快捷鍵" msgid "Tab Properties" msgstr "分頁列設定值" -#: SaveHistoryTask.cpp:71 +#: SaveHistoryAutoTask.cpp:63 SaveHistoryTask.cpp:71 #, kde-format msgid "Save Output From %1" msgstr "儲存 %1 的輸出" -#: SaveHistoryTask.cpp:83 +#: SaveHistoryAutoTask.cpp:75 SaveHistoryTask.cpp:83 #, kde-format msgid "%1 is an invalid URL, the output could not be saved." msgstr "%1 是不合法的網址,輸出將無法被儲存。" -#: SaveHistoryTask.cpp:173 +#: SaveHistoryAutoTask.cpp:88 +#, kde-format +msgid "Failed to create autosave file at %1." +msgstr "無法於 %1 建立自動儲存檔案。" + +#: SaveHistoryAutoTask.cpp:102 +#, kde-format +msgid "Stopping autosave due to switching of screens." +msgstr "自動儲存因切換螢幕而停止中。" + +#: SaveHistoryAutoTask.cpp:116 +#, kde-format +msgid "" +"Autosave file has been modified externally, preventing further autosaves." +msgstr "自動儲存檔案已由外部修改,而無法進行更多自動儲存。" + +#: SaveHistoryAutoTask.cpp:173 +#, kde-format +msgid "Failed to update autosave state on output changes." +msgstr "在輸出更新後更新自動儲存狀態時失敗。" + +#: SaveHistoryTask.cpp:174 #, kde-format msgid "" "A problem occurred when saving the output.\n" @@ -1972,476 +2037,497 @@ msgstr "Breeze" #: schemas.cpp:6 #, kde-format +msgid "Campbell" +msgstr "Campbell" + +#: schemas.cpp:7 +#, kde-format msgid "Dark Pastels" msgstr "深粉色" -#: schemas.cpp:7 +#: schemas.cpp:8 #, kde-format msgid "Green on Black" msgstr "黑底綠字" -#: schemas.cpp:8 +#: schemas.cpp:9 #, kde-format msgid "Linux Colors" msgstr "Linux 顏色" -#: schemas.cpp:9 +#: schemas.cpp:10 #, kde-format msgid "Red on Black" msgstr "黑底紅字" -#: schemas.cpp:10 +#: schemas.cpp:11 #, kde-format msgid "Solarized" msgstr "Solarized" -#: schemas.cpp:11 +#: schemas.cpp:12 #, kde-format msgid "Solarized Light" msgstr "Solarized Light" -#: schemas.cpp:12 +#: schemas.cpp:13 #, kde-format msgid "White on Black" msgstr "黑底白字" -#: schemas.cpp:13 +#: schemas.cpp:14 #, kde-format msgid "Default (XFree 4)" msgstr "預設(XFree 4)" -#: schemas.cpp:14 +#: schemas.cpp:15 #, kde-format msgid "Linux console" msgstr "Linux 主控台" -#: schemas.cpp:15 +#: schemas.cpp:16 #, kde-format msgid "macOS" msgstr "麥金塔作業系統" -#: schemas.cpp:16 +#: schemas.cpp:17 #, kde-format msgid "Solaris console" msgstr "Solaris 主控台" -#: session/Session.cpp:109 +#: searchtabs/SearchTabs.cpp:127 +#, kde-format +msgctxt "@label:textbox" +msgid "Search..." +msgstr "搜尋…" + +#: searchtabs/SearchTabs.cpp:128 +#, kde-format +msgctxt "@info:tooltip" +msgid "Enter a tab name to search for here" +msgstr "在此輸入要搜尋的分頁名稱" + +#: session/Session.cpp:131 #, kde-format msgid "Bell in '%1' (Session '%2')" msgstr "工作階段「%2」的響鈴 %1" -#: session/Session.cpp:417 +#: session/Session.cpp:434 #, kde-format msgid "Could not find binary: " msgstr "找不到執行檔:" -#: session/Session.cpp:426 +#: session/Session.cpp:443 #, kde-format msgctxt "@info:shell Alert the user with red color text" msgid "Warning: " msgstr "警告:" -#: session/Session.cpp:520 +#: session/Session.cpp:538 #, kde-format msgid "Could not find an interactive shell to start." msgstr "找不到要啟動的互動式 shell。" -#: session/Session.cpp:526 session/Session.cpp:528 +#: session/Session.cpp:544 session/Session.cpp:547 #, kde-format msgid "" "Could not find '%1', starting '%2' instead. Please check your profile " "settings." msgstr "找不到 %1,改啟動 %2。請檢查您的設定檔。" -#: session/Session.cpp:593 +#: session/Session.cpp:640 #, kde-format msgid "Could not start program '%1' with arguments '%2'." msgstr "無法啟動程式 %1,參數為 %2。" -#: session/Session.cpp:741 +#: session/Session.cpp:816 #, kde-format msgid "Silence in '%1' (Session '%2')" msgstr "分頁 %1 目前靜默中(於工作階段 %2)" -#: session/Session.cpp:742 session/Session.cpp:2080 -#: session/SessionController.cpp:354 session/SessionController.cpp:1846 -#: terminalDisplay/TerminalBell.cpp:43 Vt102Emulation.cpp:1156 +#: session/Session.cpp:817 session/Session.cpp:2249 +#: session/SessionController.cpp:381 session/SessionController.cpp:1926 +#: terminalDisplay/TerminalBell.cpp:44 Vt102Emulation.cpp:1255 +#: Vt102Emulation.cpp:1510 #, kde-format msgid "Show session" msgstr "顯示工作階段" -#: session/Session.cpp:1026 -#, kde-format -msgid "" -"The D-Bus methods sendText/runCommand were just used. There are security " -"concerns about allowing these methods to be public. If desired, these " -"methods can be changed to internal use only by re-compiling Konsole.

              This " -"warning will only show once for this Konsole instance.

              " -msgstr "" -"使用了 D-Bus 傳送文字/執行指令。允許這些方法公開可能會造成安全性問題。如果需" -"要的話,這些方法只能由重新編譯 Konsole 來變更為內部使用。

              這個警告將只會在" -"這個Konsole 實體中顯示一次。

              " - -#: session/Session.cpp:1066 +#: session/Session.cpp:1133 #, kde-format msgctxt "@info:shell This session is done" msgid "Finished" msgstr "已完成" -#: session/Session.cpp:1080 session/Session.cpp:1096 +#: session/Session.cpp:1147 session/Session.cpp:1163 #, kde-format msgid "Program '%1' crashed." msgstr "程式 %1 當掉了。" -#: session/Session.cpp:1082 +#: session/Session.cpp:1149 #, kde-format msgid "Program '%1' exited with status %2." msgstr "程式 %1 以 %2 狀態結束。" -#: session/Session.cpp:1608 +#: session/Session.cpp:1700 #, kde-format msgid "ZModem Progress" msgstr "ZModem 進度" -#: session/Session.cpp:2079 +#: session/Session.cpp:2248 #, kde-format msgid "Activity in '%1' (Session '%2')" msgstr "分頁 %1 目前活躍中(於工作階段 %2)" -#: session/SessionController.cpp:139 +#: session/Session.cpp:2411 +#, kde-format +msgid "Security sensitive DBus API is disabled in the settings." +msgstr "安全性敏感的 DBus API 已在設定中被停用。" + +#: session/SessionController.cpp:143 #, kde-format msgid "Konsole" msgstr "Konsole" -#: session/SessionController.cpp:353 +#: session/SessionController.cpp:380 #, kde-format msgid "The process '%1' has finished running in session '%2'" msgstr "程序 %1 已在工作階段 %2 中完成執行" -#: session/SessionController.cpp:436 +#: session/SessionController.cpp:463 #, kde-format msgid "Konsole does not know how to open the bookmark: " msgstr "Konsole 不知道如何開啟此書籤:" -#: session/SessionController.cpp:515 +#: session/SessionController.cpp:541 #, kde-format msgid "Search for '%1' with" msgstr "搜尋 %1 於" -#: session/SessionController.cpp:531 +#: session/SessionController.cpp:557 #, kde-format msgid "Configure Web Shortcuts..." msgstr "設定網頁捷徑..." -#: session/SessionController.cpp:641 +#: session/SessionController.cpp:668 #, kde-format msgid "&Close Session" msgstr "關閉工作階段(&C)" -#: session/SessionController.cpp:648 +#: session/SessionController.cpp:675 #, kde-format msgid "Open File Manager" msgstr "開啟檔案管理員" -#: session/SessionController.cpp:660 +#: session/SessionController.cpp:690 #, kde-format msgid "Copy" msgstr "複製" -#: session/SessionController.cpp:667 +#: session/SessionController.cpp:697 #, kde-format msgid "Split View Left-Right" msgstr "左右分割檢視" -#: session/SessionController.cpp:672 +#: session/SessionController.cpp:702 #, kde-format msgid "Split View Top-Bottom" msgstr "上下分割檢視" -#: session/SessionController.cpp:676 +#: session/SessionController.cpp:706 #, kde-format msgid "Copy except prompts" msgstr "複製除了提示字元以外的內容" -#: session/SessionController.cpp:682 +#: session/SessionController.cpp:712 #, kde-format msgid "Copy user input" msgstr "複製使用者輸入" -#: session/SessionController.cpp:688 +#: session/SessionController.cpp:718 #, kde-format msgid "Copy command output" msgstr "複製命令輸入" -#: session/SessionController.cpp:703 +#: session/SessionController.cpp:733 #, kde-format msgid "Paste Selection" msgstr "貼上選擇區" -#: session/SessionController.cpp:710 +#: session/SessionController.cpp:740 #, kde-format msgid "Web Search" msgstr "網頁搜尋" -#: session/SessionController.cpp:716 +#: session/SessionController.cpp:746 #, kde-format msgid "&Select All" msgstr "全部選取(&S)" -#: session/SessionController.cpp:720 +#: session/SessionController.cpp:750 #, kde-format msgid "Select &Mode" msgstr "選取模式(&M)" -#: session/SessionController.cpp:725 +#: session/SessionController.cpp:755 #, kde-format msgid "Select &Line" msgstr "選擇行(&L)" -#: session/SessionController.cpp:728 +#: session/SessionController.cpp:758 #, kde-format msgid "Save Output &As..." msgstr "儲存輸出為(&A)..." -#: session/SessionController.cpp:734 +#: session/SessionController.cpp:764 +#, kde-format +msgid "Auto Save Output As..." +msgstr "自動儲存輸出為…" + +#: session/SessionController.cpp:768 +#, kde-format +msgid "Stop Auto Save" +msgstr "停止自動儲存" + +#: session/SessionController.cpp:772 #, kde-format msgid "&Print Screen..." msgstr "列印螢幕(&P)..." -#: session/SessionController.cpp:738 +#: session/SessionController.cpp:776 #, kde-format msgid "Adjust Scrollback..." -msgstr "調整捲軸..." +msgstr "調整回捲歷史..." -#: session/SessionController.cpp:742 +#: session/SessionController.cpp:780 #, kde-format msgid "Clear Scrollback" -msgstr "清除歷史內容" +msgstr "清除回捲歷史" -#: session/SessionController.cpp:746 +#: session/SessionController.cpp:784 #, kde-format msgid "Clear Scrollback and Reset" -msgstr "清除歷史內容並重設" +msgstr "清除回捲歷史並重設" -#: session/SessionController.cpp:757 +#: session/SessionController.cpp:795 #, kde-format msgid "Next Profile" msgstr "下一個設定檔" -#: session/SessionController.cpp:762 +#: session/SessionController.cpp:800 #, kde-format msgid "Previous Profile" msgstr "上一個設定檔" -#: session/SessionController.cpp:765 +#: session/SessionController.cpp:803 #, kde-format msgid "Switch Profile" msgstr "切換設定檔" -#: session/SessionController.cpp:790 +#: session/SessionController.cpp:828 #, kde-format msgid "Set &Encoding" msgstr "設定編碼(&E)..." -#: session/SessionController.cpp:812 +#: session/SessionController.cpp:848 #, kde-format msgctxt "@item:inmenu Allows terminal applications to request mouse tracking" msgid "Allow Mouse Tracking" msgstr "允許追蹤滑鼠" -#: session/SessionController.cpp:821 +#: session/SessionController.cpp:857 #, kde-format msgctxt "@item:inmenu A read only (locked) session" msgid "Read-Only" msgstr "唯讀" -#: session/SessionController.cpp:832 +#: session/SessionController.cpp:868 #, kde-format msgid "&Configure or Rename Tab..." msgstr "重新命名分頁(&C)..." -#: session/SessionController.cpp:838 +#: session/SessionController.cpp:874 #, kde-format msgid "&All Tabs in Current Window" msgstr "目前視窗中的所有分頁" -#: session/SessionController.cpp:845 +#: session/SessionController.cpp:881 #, kde-format msgid "&Select Tabs..." msgstr "選取分頁(&S)..." -#: session/SessionController.cpp:851 +#: session/SessionController.cpp:887 #, kde-format msgctxt "@action:inmenu Do not select any tabs" msgid "&None" msgstr "無(&N)" -#: session/SessionController.cpp:859 +#: session/SessionController.cpp:895 #, kde-format msgid "Copy Input To" msgstr "複製輸入到" -#: session/SessionController.cpp:867 +#: session/SessionController.cpp:903 #, kde-format msgid "&ZModem Upload..." msgstr "ZModem 上傳(&Z)..." -#: session/SessionController.cpp:872 +#: session/SessionController.cpp:908 #, kde-format msgid "One-Shot Monitors" msgstr "單次監控" -#: session/SessionController.cpp:877 +#: session/SessionController.cpp:913 #, kde-format msgid "Monitor for &Prompt" msgstr "監視提示字元(&P)" -#: session/SessionController.cpp:884 +#: session/SessionController.cpp:920 #, kde-format msgid "Monitor for &Activity" msgstr "監視有回應視窗(&A)" -#: session/SessionController.cpp:890 +#: session/SessionController.cpp:926 #, kde-format msgid "Monitor for &Silence" msgstr "監視靜默的分頁(&S)" -#: session/SessionController.cpp:896 +#: session/SessionController.cpp:932 #, kde-format msgid "Monitor for Process Finishing" msgstr "監視完成中的程序" -#: session/SessionController.cpp:903 +#: session/SessionController.cpp:939 #, kde-format msgid "Enlarge Font" msgstr "增大字型" -#: session/SessionController.cpp:911 +#: session/SessionController.cpp:947 #, kde-format msgid "Shrink Font" msgstr "縮小字型" -#: session/SessionController.cpp:916 +#: session/SessionController.cpp:952 #, kde-format msgid "Reset Font Size" msgstr "重設字型大小" -#: session/SessionController.cpp:922 +#: session/SessionController.cpp:958 #, kde-format msgid "Send Signal" msgstr "送出訊號" -#: session/SessionController.cpp:926 +#: session/SessionController.cpp:962 #, kde-format msgid "&Suspend Task" msgstr "暫停工作(&S)" -#: session/SessionController.cpp:931 +#: session/SessionController.cpp:967 #, kde-format msgid "&Continue Task" msgstr "繼續工作(&C)" -#: session/SessionController.cpp:936 +#: session/SessionController.cpp:972 #, kde-format msgid "&Hangup" msgstr "掛斷(&H)" -#: session/SessionController.cpp:941 +#: session/SessionController.cpp:977 #, kde-format msgid "&Interrupt Task" msgstr "中斷工作(&I)" -#: session/SessionController.cpp:946 +#: session/SessionController.cpp:982 #, kde-format msgid "&Terminate Task" msgstr "結束工作(&T)" -#: session/SessionController.cpp:951 +#: session/SessionController.cpp:987 #, kde-format msgid "&Kill Task" msgstr "砍掉工作(&K)" -#: session/SessionController.cpp:956 +#: session/SessionController.cpp:992 #, kde-format msgid "User Signal &1" msgstr "使用者訊號 1(&1)" -#: session/SessionController.cpp:961 +#: session/SessionController.cpp:997 #, kde-format msgid "User Signal &2" msgstr "使用者訊號 2(&2)" -#: session/SessionController.cpp:979 +#: session/SessionController.cpp:1015 #, kde-format msgid "Create New Profile..." msgstr "新增設定檔" -#: session/SessionController.cpp:981 +#: session/SessionController.cpp:1017 #, kde-format msgid "Edit Current Profile..." msgstr "編輯目前的設定檔..." -#: session/SessionController.cpp:1112 +#: session/SessionController.cpp:1157 #, kde-format msgid "" "A program is currently running in this session. Are you sure you want to " "close it?" msgstr "有程式正在此工作階段中執行。您確定要將它關閉嗎?" -#: session/SessionController.cpp:1116 +#: session/SessionController.cpp:1161 #, kde-format msgid "" "The program '%1' is currently running in this session. Are you sure you " "want to close it?" msgstr "程式 %1 正在此工作階段中執行。您確定要將它關閉嗎?" -#: session/SessionController.cpp:1123 session/SessionController.cpp:1158 +#: session/SessionController.cpp:1168 session/SessionController.cpp:1203 #, kde-format msgid "Confirm Close" msgstr "確認關閉" -#: session/SessionController.cpp:1124 +#: session/SessionController.cpp:1169 #, kde-format msgctxt "@action:button" msgid "Close Program" msgstr "關閉程式" -#: session/SessionController.cpp:1147 +#: session/SessionController.cpp:1192 #, kde-format msgid "" "A program in this session would not die. Are you sure you want to kill it " "by force?" msgstr "有程式正在此工作階段中執行。您確定要將它強制關閉嗎?" -#: session/SessionController.cpp:1151 +#: session/SessionController.cpp:1196 #, kde-format msgid "" -"The program '%1' is in this session would not die. Are you sure you want to " +"The program '%1' in this session would not die. Are you sure you want to " "kill it by force?" -msgstr "程式 %1 正在此工作階段中執行。您確定要將它強制關閉嗎?" +msgstr "工作階段中的程式 '%1' 並沒有退出。您確定要將它強制關閉嗎?" -#: session/SessionController.cpp:1159 +#: session/SessionController.cpp:1204 #, kde-format msgctxt "@action:button" msgid "Kill Program" msgstr "砍除程式" -#: session/SessionController.cpp:1845 +#: session/SessionController.cpp:1925 #, kde-format msgid "The shell prompt is displayed in session '%1'" msgstr "shell 提示字元會顯示在工作階段「%1」" -#: session/SessionController.cpp:2038 +#: session/SessionController.cpp:2155 #, kde-format msgid "Open Current Folder With" msgstr "以…開啟目前資料夾" -#: session/SessionController.cpp:2108 +#: session/SessionController.cpp:2225 #, kde-format msgid "Save ZModem Download to..." msgstr "儲存 ZModem 下載檔到..." -#: session/SessionController.cpp:2118 +#: session/SessionController.cpp:2235 #, kde-format msgid "" "

              A ZModem file transfer attempt has been detected, but no suitable ZModem " @@ -2451,13 +2537,13 @@ msgstr "" "

              偵測到要使用 ZModem 做檔案傳輸,但是此系統上找不到適合的 ZModem 軟體。

              您可能需要安裝 rzsz 或 lrzsz 等軟體包。

              " -#: session/SessionController.cpp:2128 +#: session/SessionController.cpp:2245 #, kde-format msgid "" "

              The current session already has a ZModem file transfer in progress.

              " msgstr "

              目前的工作階段已經有一個 ZModem 檔案傳輸在進行中。

              " -#: session/SessionController.cpp:2141 +#: session/SessionController.cpp:2258 #, kde-format msgid "" "

              No suitable ZModem software was found on this system.

              You may wish " @@ -2466,7 +2552,7 @@ msgstr "" "

              此系統上找不到適合的 ZModem 軟體。

              您可能需要安裝 rzsz 或 lrzsz 等軟" "體包。

              " -#: session/SessionController.cpp:2146 +#: session/SessionController.cpp:2263 #, kde-format msgid "Select Files for ZModem Upload" msgstr "選擇要用 ZModem 上傳的檔案" @@ -2489,144 +2575,170 @@ msgctxt "@title:window" msgid "Configure" msgstr "設定" -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/GeneralSettings.ui:43 +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:49 settings/konsole.kcfg:33 #, kde-format -msgctxt "@item:intext Search options" -msgid "Search:" -msgstr "搜尋:" +msgid "When launching Konsole re-use existing process if possible" +msgstr "啟動 Konsole 時,可以的話重複利用既存的行程" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) -#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) -#: settings/GeneralSettings.ui:56 settings/konsole.kcfg:22 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) +#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) +#: settings/GeneralSettings.ui:52 settings/konsole.kcfg:32 #, kde-format -msgid "Enable menu accelerators" -msgstr "開啟選單加速器" +msgid "Run all Konsole windows in a single process" +msgstr "在單一行程中執行所有的 Konsole 視窗" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:69 +#: settings/GeneralSettings.ui:81 #, kde-format msgid "If enabled, profile settings will be ignored" msgstr "開啟此選項的話,設定檔將會被忽略" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberWindowSize) -#: settings/GeneralSettings.ui:72 +#: settings/GeneralSettings.ui:84 #, kde-format msgid "Remember window size" msgstr "記住視窗大小" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) -#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) -#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:17 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ForceNewTabs) +#. i18n: ectx: label, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/GeneralSettings.ui:91 settings/konsole.kcfg:37 #, kde-format -msgid "Show window title on the titlebar" -msgstr "在標題列顯示視窗標題" +msgid "Force new tabs" +msgstr "強制使用新分頁" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) -#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) -#: settings/GeneralSettings.ui:92 settings/konsole.kcfg:13 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListenForZModemTerminalCodes) +#: settings/GeneralSettings.ui:98 #, kde-format -msgid "Focus terminals when the mouse pointer is moved over them" -msgstr "當滑鼠游標經過時,聚焦至該終端機視窗" +msgid "Listen for ZModem terminal codes" +msgstr "聆聽 ZModem 終端機控制字元" -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) -#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) -#: settings/GeneralSettings.ui:105 settings/konsole.kcfg:69 +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowProgressInTaskBar) +#: settings/GeneralSettings.ui:105 #, kde-format -msgid "Match using regular expressions" -msgstr "使用正則表達式尋找符合項目" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:118 settings/konsole.kcfg:33 -#, kde-format -msgid "When launching Konsole re-use existing process if possible" -msgstr "當執行 Konsole 時,若可以的話就重新使用既存的行程" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance) -#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow) -#: settings/GeneralSettings.ui:121 settings/konsole.kcfg:32 -#, kde-format -msgid "Run all Konsole windows in a single process" -msgstr "在單一行程中執行所有的 Konsole 視窗" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) -#: settings/GeneralSettings.ui:134 -#, kde-format -msgid "Highlight all matches" -msgstr "標示所有符合項目" - -#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) -#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/GeneralSettings.ui:163 settings/konsole.kcfg:65 -#, kde-format -msgid "Sets whether the search is case sensitive" -msgstr "設定搜尋時是否要區分大小寫" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) -#: settings/GeneralSettings.ui:166 -#, kde-format -msgid "Case sensitive" -msgstr "區分大小寫" - -#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) -#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) -#: settings/GeneralSettings.ui:173 settings/konsole.kcfg:9 -#, kde-format -msgid "Remove window titlebar and frame" -msgstr "移除視窗標題列與邊框" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: settings/GeneralSettings.ui:196 -#, kde-format -msgid "Process and window:" -msgstr "程式及視窗:" +msgid "Show progress in taskbar" +msgstr "在工作列中顯示進度" #. i18n: ectx: property (text), widget (QLabel, label_3) -#: settings/GeneralSettings.ui:206 +#: settings/GeneralSettings.ui:112 #, kde-format msgid "Notifications:" msgstr "通知:" -#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:224 -#, kde-format -msgid "All dialogs will be shown again" -msgstr "所有通知對話框都會重新再顯示" - -#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) -#: settings/GeneralSettings.ui:227 -#, kde-format -msgid "Enable all \"Don't Ask Again\" messages" -msgstr "打開所有「不要再問我」的訊息" - #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:255 settings/konsole.kcfg:79 +#: settings/GeneralSettings.ui:125 settings/konsole.kcfg:99 #, kde-format msgid "Sets whether search should start from the bottom" msgstr "設定是否要從底端開始搜尋" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch) #. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings) -#: settings/GeneralSettings.ui:258 settings/konsole.kcfg:78 +#: settings/GeneralSettings.ui:128 settings/konsole.kcfg:98 #, kde-format msgid "Search backwards" msgstr "向後尋找" +#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive) +#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings) +#: settings/GeneralSettings.ui:141 settings/konsole.kcfg:85 +#, kde-format +msgid "Sets whether the search is case sensitive" +msgstr "設定搜尋時是否要區分大小寫" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive) +#: settings/GeneralSettings.ui:144 +#, kde-format +msgid "Case sensitive" +msgstr "區分大小寫" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: settings/GeneralSettings.ui:151 +#, kde-format +msgid "Process and window:" +msgstr "行程及視窗:" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches) +#: settings/GeneralSettings.ui:167 +#, kde-format +msgid "Highlight all matches" +msgstr "標示所有符合項目" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: settings/GeneralSettings.ui:174 +#, kde-format +msgctxt "@item:intext Search options" +msgid "Search:" +msgstr "搜尋:" + #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchNoWrap) #. i18n: ectx: tooltip, entry (SearchNoWrap), group (SearchSettings) -#: settings/GeneralSettings.ui:271 settings/konsole.kcfg:84 +#: settings/GeneralSettings.ui:203 settings/konsole.kcfg:104 #, kde-format msgid "Sets whether search should stop instead of wrapping" msgstr "設定搜尋是否應該停止,而非從另一頭繼續" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchNoWrap) -#: settings/GeneralSettings.ui:274 +#: settings/GeneralSettings.ui:206 #, kde-format msgid "No wrap" msgstr "不從另一頭繼續" +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators) +#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow) +#: settings/GeneralSettings.ui:219 settings/konsole.kcfg:22 +#, kde-format +msgid "Enable menu accelerators" +msgstr "開啟選單加速器" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusFollowsMouse) +#. i18n: ectx: label, entry (FocusFollowsMouse), group (KonsoleWindow) +#: settings/GeneralSettings.ui:226 settings/konsole.kcfg:13 +#, kde-format +msgid "Focus terminals when the mouse pointer is moved over them" +msgstr "當滑鼠游標經過時,聚焦至該終端機視窗" + +#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:244 +#, kde-format +msgid "All dialogs will be shown again" +msgstr "所有通知對話框都會重新再顯示" + +#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton) +#: settings/GeneralSettings.ui:247 +#, kde-format +msgid "Enable all \"Don't Ask Again\" messages" +msgstr "打開所有「不要再問我」的訊息" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar) +#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) +#: settings/GeneralSettings.ui:275 settings/konsole.kcfg:17 +#, kde-format +msgid "Show window title on the titlebar" +msgstr "在標題列顯示視窗標題" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSecuritySensitiveDBusAPI) +#. i18n: ectx: label, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/GeneralSettings.ui:282 settings/konsole.kcfg:47 +#, kde-format +msgid "Enable the security sensitive parts of the DBus API" +msgstr "啟用 DBus API 當中安全性敏感的部分" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RemoveWindowTitleBarAndFrame) +#. i18n: ectx: label, entry (RemoveWindowTitleBarAndFrame), group (KonsoleWindow) +#: settings/GeneralSettings.ui:289 settings/konsole.kcfg:9 +#, kde-format +msgid "Remove window titlebar and frame" +msgstr "移除視窗標題列與邊框" + +#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression) +#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings) +#: settings/GeneralSettings.ui:302 settings/konsole.kcfg:89 +#, kde-format +msgid "Match using regular expressions" +msgstr "使用正則表達式尋找符合項目" + #. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow) #: settings/konsole.kcfg:18 #, kde-format @@ -2651,71 +2763,109 @@ msgstr "下次啟動時使用目前的視窗大小" msgid "The window size will be saved upon exiting Konsole" msgstr "離開 Konsole 時會儲存視窗大小" -#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#. i18n: ectx: tooltip, entry (ForceNewTabs), group (KonsoleWindow) +#: settings/konsole.kcfg:38 +#, kde-format +msgid "" +"When launching Konsole create a new tab instead of creating new windows if " +"possible" +msgstr "啟動 Konsole 時,可以的話在現有視窗內建立新分頁而不是建立新視窗" + +#. i18n: ectx: label, entry (ShowProgressInTaskBar), group (KonsoleWindow) #: settings/konsole.kcfg:42 #, kde-format +msgid "Show progress in task bar" +msgstr "在工作列中顯示進度" + +#. i18n: ectx: tooltip, entry (ShowProgressInTaskBar), group (KonsoleWindow) +#: settings/konsole.kcfg:43 +#, kde-format +msgid "When a script reports its progress, it will be shown in the task bar" +msgstr "指令稿回報進度時,將進度資訊顯示於工具列" + +#. i18n: ectx: tooltip, entry (EnableSecuritySensitiveDBusAPI), group (KonsoleWindow) +#: settings/konsole.kcfg:48 +#, kde-format +msgid "DBus API like runCommand will be enabled" +msgstr "會啟用 runCommand(執行命令)這種 DBus API" + +#. i18n: ectx: label, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:52 +#, kde-format +msgid "Listen for ZModem Terminal codes" +msgstr "聆聽 ZModem 終端機控制字元" + +#. i18n: ectx: tooltip, entry (ListenForZModemTerminalCodes), group (KonsoleWindow) +#: settings/konsole.kcfg:53 +#, kde-format +msgid "Automatic send/receive files over serial connections" +msgstr "自動透過序列連線傳送/接受檔案" + +#. i18n: ectx: label, entry (ThumbnailSize), group (ThumbnailsSettings) +#: settings/konsole.kcfg:62 +#, kde-format msgid "Thumbnail Width" msgstr "縮圖寬度" #. i18n: ectx: tooltip, entry (ThumbnailSize), group (ThumbnailsSettings) -#: settings/konsole.kcfg:43 +#: settings/konsole.kcfg:63 #, kde-format msgid "Sets the width of the thumbnail" msgstr "選擇縮圖的寬度" #. i18n: ectx: label, entry (ThumbnailShift), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailShift), group (ThumbnailsSettings) -#: settings/konsole.kcfg:47 settings/konsole.kcfg:48 +#: settings/konsole.kcfg:67 settings/konsole.kcfg:68 #, kde-format msgid "Use Shift to display a thumbnail" msgstr "使用 Shift 鍵顯示縮圖" #. i18n: ectx: label, entry (ThumbnailAlt), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailAlt), group (ThumbnailsSettings) -#: settings/konsole.kcfg:52 settings/konsole.kcfg:53 +#: settings/konsole.kcfg:72 settings/konsole.kcfg:73 #, kde-format msgid "Use Alt to display a thumbnail" msgstr "使用 Alt 鍵顯示縮圖" #. i18n: ectx: label, entry (ThumbnailCtrl), group (ThumbnailsSettings) #. i18n: ectx: tooltip, entry (ThumbnailCtrl), group (ThumbnailsSettings) -#: settings/konsole.kcfg:57 settings/konsole.kcfg:58 +#: settings/konsole.kcfg:77 settings/konsole.kcfg:78 #, kde-format msgid "Use Ctrl to display a thumbnail" msgstr "使用 Ctrl 鍵顯示縮圖" #. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings) -#: settings/konsole.kcfg:64 +#: settings/konsole.kcfg:84 #, kde-format msgid "Search is case sensitive" msgstr "區分大小寫搜尋" #. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:73 +#: settings/konsole.kcfg:93 #, kde-format msgid "Highlight all search matches" msgstr "突顯所有的搜尋符合" #. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings) -#: settings/konsole.kcfg:74 +#: settings/konsole.kcfg:94 #, kde-format msgid "Sets whether matching text should be highlighted" msgstr "設定符合的文字是否要突顯出來" #. i18n: ectx: label, entry (SearchNoWrap), group (SearchSettings) -#: settings/konsole.kcfg:83 +#: settings/konsole.kcfg:103 #, kde-format msgid "Search stops instead of wrapping" msgstr "搜尋會停止而非從另一頭繼續" #. i18n: ectx: label, entry (EnableMemoryMonitoring), group (MemorySettings) -#: settings/konsole.kcfg:90 +#: settings/konsole.kcfg:110 #, kde-format msgid "Control whether child cgroups are created for individual tabs" msgstr "控制是否要為個別分頁建立子 cgroup" #. i18n: ectx: label, entry (MemoryLimitValue), group (MemorySettings) -#: settings/konsole.kcfg:94 +#: settings/konsole.kcfg:114 #, kde-format msgid "" "Determines the memory consumption level above which throttling will start" @@ -2723,94 +2873,100 @@ msgstr "決定記憶體用量超過多少時要開始限制用量" #. i18n: ectx: label, entry (SplitViewVisibility), group (SplitView) #. i18n: ectx: label, entry (TabBarVisibility), group (TabBar) -#: settings/konsole.kcfg:100 settings/konsole.kcfg:120 +#: settings/konsole.kcfg:120 settings/konsole.kcfg:140 #, kde-format msgid "Control the visibility of the whole tab bar" msgstr "控制整個分頁列的可見度" #. i18n: ectx: label, entry (SplitDragHandleSize), group (SplitView) -#: settings/konsole.kcfg:109 +#: settings/konsole.kcfg:129 #, kde-format msgid "Control the size of the handle between panels" msgstr "改變面板控制器的尺寸" #. i18n: ectx: label, entry (TabBarPosition), group (TabBar) -#: settings/konsole.kcfg:129 +#: settings/konsole.kcfg:149 #, kde-format msgid "Control the position of the tab bar" msgstr "控制分頁列的位置" #. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar) -#: settings/konsole.kcfg:139 +#: settings/konsole.kcfg:159 #, kde-format msgid "Control the visual style of the tab bar" msgstr "控制分頁列的可見樣式" #. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar) -#: settings/konsole.kcfg:143 +#: settings/konsole.kcfg:163 #, kde-format msgid "Use a user-defined .css file for the tab bar" msgstr "在分頁列使用自定義的 .css 檔" #. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar) -#: settings/konsole.kcfg:147 +#: settings/konsole.kcfg:167 #, kde-format msgid "The .css file to use for the tab bar style" msgstr "用於分頁列樣式的 .css 檔" #. i18n: ectx: label, entry (CloseTabOnMiddleMouseButton), group (TabBar) -#: settings/konsole.kcfg:151 +#: settings/konsole.kcfg:171 #, kde-format msgid "Allow middle-clicking on open tabs to close them" msgstr "允許透過按下中鍵來關閉開啟的分頁" #. i18n: ectx: label, entry (NewTabButton), group (TabBar) -#: settings/konsole.kcfg:155 +#: settings/konsole.kcfg:175 #, kde-format msgid "Control the visibility of 'New Tab' button on the tab bar" -msgstr "控制分頁欄上「新增分頁」按鈕的可見度" +msgstr "控制分頁列上「新增分頁」按鈕的可見度" + +#. i18n: ectx: label, entry (SearchTabsButton), group (TabBar) +#: settings/konsole.kcfg:179 +#, kde-format +msgid "Control the visibility of 'Search Tabs' button on the tab bar" +msgstr "控制分頁列上「搜尋分頁」按鈕的可見度" #. i18n: ectx: label, entry (CloseTabButton), group (TabBar) -#: settings/konsole.kcfg:159 +#: settings/konsole.kcfg:187 #, kde-format msgid "Control where the \"Close tab\" button will be displayed" msgstr "控制要顯示「關閉分頁」按鈕的位置" #. i18n: ectx: label, entry (NewTabBehavior), group (TabBar) -#: settings/konsole.kcfg:168 +#: settings/konsole.kcfg:196 #, kde-format msgid "Control where to put the new tab" msgstr "控制新分頁要放在哪裡" #. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar) -#: settings/konsole.kcfg:176 +#: settings/konsole.kcfg:204 #, kde-format msgid "Expand the tab widths" msgstr "展開分頁寬度" #. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation) -#: settings/konsole.kcfg:192 +#: settings/konsole.kcfg:220 #, kde-format msgid "For scrollback files, use system-wide folder location" -msgstr "捲軸歷史檢視檔案使用系統指定的位置" +msgstr "對於回捲歷史檔案,使用系統指定的資料夾位置" #. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation) -#: settings/konsole.kcfg:196 +#: settings/konsole.kcfg:224 #, kde-format msgid "For scrollback files, use user's specific folder location" -msgstr "使用者自己指定捲軸歷史檢視檔案的位置" +msgstr "對於回捲歷史檔案,使用使用者特定的資料夾位置" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation) -#: settings/konsole.kcfg:200 +#: settings/konsole.kcfg:228 #, kde-format msgid "For scrollback files, use specified folder location" -msgstr "歷史檢視檔案使用指定的資料夾位置" +msgstr "對於回捲歷史檔案,使用指定的資料夾位置" #. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation) -#: settings/konsole.kcfg:204 +#: settings/konsole.kcfg:232 #, kde-format msgid "For scrollback files, use this folder" -msgstr "歷史檢視檔案使用這個資料夾" +msgstr "對於回捲歷史檔案,使用這個資料夾" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableMemoryMonitoring) #: settings/MemorySettings.ui:17 @@ -2819,31 +2975,28 @@ msgid "Enable memory monitoring:" msgstr "啟用記憶體監控:" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/MemorySettings.ui:28 +#: settings/MemorySettings.ui:24 #, kde-format msgid "" "Changes will take effect upon restart. If enabled, sustained memory " -"consumption by Konsole\n" -"exceeding the specified value will cause systemd-oomd to eliminate the " -"tab(s)\n" -"containing the memory-intensive process(es). Note: enabling\n" -"might cause greater slowdowns during high memory consumption and specifying\n" -"excessively low values might still cause Konsole to be killed." +"consumption by Konsole exceeding the specified value will cause systemd-oomd " +"to eliminate the tab(s) containing the memory-intensive process(es). Note: " +"enabling might cause greater slowdowns during high memory consumption and " +"specifying excessively low values might still cause Konsole to be killed." msgstr "" "變更將在重新啟動後生效。若啟用,Konsole 持續使用超過指定量的記憶體時將會使 " -"systemd-oomd \n" -"強制中止包含使用大量記憶體的程序的分頁。\n" -"請注意:啟用這個選項可能會在記憶體用量大的時候造成更嚴重的效能下降,\n" -"並且若是指定的數值太低 Konsole 本身可能還是會被強制中止。" +"systemd-oomd 強制中止包含使用大量記憶體的程序的分頁。請注意:啟用這個選項可能" +"會在記憶體用量大的時候造成更嚴重的效能下降,並且若是指定的數值太低 Konsole 本" +"身可能還是會被強制中止。" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/MemorySettings.ui:41 +#: settings/MemorySettings.ui:37 #, kde-format msgid "Memory limit:" msgstr "記憶體限制:" #. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_MemoryLimitValue) -#: settings/MemorySettings.ui:48 +#: settings/MemorySettings.ui:44 #, kde-format msgid " MB" msgstr " MB" @@ -2992,7 +3145,7 @@ msgstr "在每個分頁顯示(&C)" #: settings/TabBarSettings.ui:195 #, kde-format msgid "On &the tab bar" -msgstr "只在分頁欄顯示(&T)" +msgstr "只在分頁列顯示(&T)" #. i18n: ectx: property (text), widget (QRadioButton, None) #: settings/TabBarSettings.ui:205 @@ -3001,125 +3154,143 @@ msgctxt "Do not show a close button" msgid "None" msgstr "無" +#. i18n: ectx: property (text), widget (QLabel, showSearchTabsButtonLabel) +#: settings/TabBarSettings.ui:231 +#, kde-format +msgid "Show Search Tabs button:" +msgstr "顯示「搜尋分頁」按鈕:" + +#. i18n: ectx: property (text), widget (QRadioButton, ShowSearchTabsButton) +#: settings/TabBarSettings.ui:241 +#, kde-format +msgid "Always" +msgstr "永遠" + +#. i18n: ectx: property (text), widget (QRadioButton, HideSearchTabsButton) +#: settings/TabBarSettings.ui:251 +#, kde-format +msgid "Never" +msgstr "永不" + #. i18n: ectx: property (text), widget (QLabel, miscellaneousAppearanceLabel) #. i18n: ectx: property (text), widget (QLabel, miscellaneousBehaviorLabel) -#: settings/TabBarSettings.ui:231 settings/TabBarSettings.ui:364 +#: settings/TabBarSettings.ui:277 settings/TabBarSettings.ui:410 #, kde-format msgctxt "@item:intext Miscellaneous Options" msgid "Miscellaneous:" msgstr "雜項:" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_NewTabButton) -#: settings/TabBarSettings.ui:241 +#: settings/TabBarSettings.ui:287 #, kde-format msgid "Show 'New Tab' button" msgstr "顯示「新增分頁」按鈕" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth) -#: settings/TabBarSettings.ui:248 +#: settings/TabBarSettings.ui:294 #, kde-format msgid "Expand individual tab widths to full window" msgstr "將個別分頁寬度擴展到整個視窗" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet) -#: settings/TabBarSettings.ui:255 +#: settings/TabBarSettings.ui:301 #, kde-format msgid "Use user-defined stylesheet:" msgstr "使用使用者自訂的樣式表:" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile) -#: settings/TabBarSettings.ui:281 +#: settings/TabBarSettings.ui:327 #, kde-format msgctxt "@item:intext Optional file path is empty" msgid "(none)" msgstr "(無)" #. i18n: ectx: attribute (title), widget (QWidget, behaviorTab) -#: settings/TabBarSettings.ui:304 +#: settings/TabBarSettings.ui:350 #, kde-format msgctxt "@title:tab Tab bar settings" msgid "Behavior" msgstr "行為" #. i18n: ectx: property (text), widget (QLabel, putNewTabsLabel) -#: settings/TabBarSettings.ui:318 +#: settings/TabBarSettings.ui:364 #, kde-format msgid "Put new tabs:" msgstr "放入新分頁:" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAtTheEnd) -#: settings/TabBarSettings.ui:328 +#: settings/TabBarSettings.ui:374 #, kde-format msgid "At &the end" msgstr "放在結尾(&T)" #. i18n: ectx: property (text), widget (QRadioButton, PutNewTabAfterCurrentTab) -#: settings/TabBarSettings.ui:338 +#: settings/TabBarSettings.ui:384 #, kde-format msgid "After current &tab" msgstr "在目前分頁之後(&T)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_CloseTabOnMiddleMouseButton) -#: settings/TabBarSettings.ui:374 +#: settings/TabBarSettings.ui:420 #, kde-format msgid "Close tab on middle-click" msgstr "按中鍵關閉分頁" #. i18n: ectx: attribute (title), widget (QWidget, splitTab) -#: settings/TabBarSettings.ui:397 +#: settings/TabBarSettings.ui:443 #, kde-format msgid "Splits" msgstr "分離檢視" #. i18n: ectx: property (text), widget (QLabel, label) -#: settings/TabBarSettings.ui:403 +#: settings/TabBarSettings.ui:449 #, kde-format msgid "Show Header:" msgstr "顯示標頭:" #. i18n: ectx: property (text), widget (QRadioButton, ShowSplitHeaderWhenNeeded) -#: settings/TabBarSettings.ui:410 +#: settings/TabBarSettings.ui:456 #, kde-format msgctxt "@option:radio When needed show the split header" msgid "When needed" msgstr "需要時" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysHideSplitHeader) -#: settings/TabBarSettings.ui:420 +#: settings/TabBarSettings.ui:466 #, kde-format msgctxt "@option:radio Never show the split header" msgid "Never" msgstr "永不(&N)" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: settings/TabBarSettings.ui:446 +#: settings/TabBarSettings.ui:492 #, kde-format msgid "Drag Handle Size:" msgstr "拖曳感應區大小:" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleSmall) -#: settings/TabBarSettings.ui:456 +#: settings/TabBarSettings.ui:502 #, kde-format msgctxt "@option:radio Small height/width of splitter widget" msgid "Small" msgstr "小" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleMedium) -#: settings/TabBarSettings.ui:466 +#: settings/TabBarSettings.ui:512 #, kde-format msgctxt "@option:radio Medium height/width of splitter widget" msgid "Medium" msgstr "中" #. i18n: ectx: property (text), widget (QRadioButton, SplitDragHandleLarge) -#: settings/TabBarSettings.ui:476 +#: settings/TabBarSettings.ui:522 #, kde-format msgctxt "@option:radio Large height/width of splitter widget" msgid "Large" msgstr "大" #. i18n: ectx: property (text), widget (QRadioButton, AlwaysShowSplitHeader) -#: settings/TabBarSettings.ui:499 +#: settings/TabBarSettings.ui:545 #, kde-format msgctxt "@option:radio Always show the split header" msgid "Always" @@ -3145,7 +3316,7 @@ msgstr "使用者快取目錄 (%1)" #: settings/TemporaryFilesSettings.ui:25 #, kde-format msgid "Scrollback file location:" -msgstr "捲回(顯示歷史)檔案位置:" +msgstr "回捲歷史檔案位置:" #. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseSpecifiedLocation) #: settings/TemporaryFilesSettings.ui:64 @@ -3171,12 +3342,11 @@ msgstr " 像素(px)" #, kde-format msgid "" "

              To use this feature, enable Mouse->Miscellaneous->Underline files in your profile settings

              " +"weight:600;\">Mouse->Miscellaneous->Underline files in your " +"profile settings.

              " msgstr "" -"

              本功能需先啟用檔案底線,相關功能請至編輯設定檔中的 滑" -"鼠→雜項→在檔案下加底線 啟用

              " +"

              此功能需要先至設定檔的設定頁面中啟用 滑鼠→雜項→在檔案下加底線 功能。

              " #. i18n: ectx: property (text), widget (QLabel, label_2) #: settings/ThumbnailsSettings.ui:53 @@ -3217,94 +3387,94 @@ msgstr "Ctrl" msgid "Enable thumbnails generation" msgstr "開啟縮圖產生器" -#: terminalDisplay/TerminalDisplay.cpp:663 +#: terminalDisplay/TerminalDisplay.cpp:702 #, kde-format msgid "Size: %1 x %2" msgstr "大小: %1 x %2" -#: terminalDisplay/TerminalDisplay.cpp:2259 +#: terminalDisplay/TerminalDisplay.cpp:2319 #, kde-format msgid "Are you sure you want to paste %1 character?" msgid_plural "Are you sure you want to paste %1 characters?" msgstr[0] "您確定要貼上這 %1 個字元嗎?" -#: terminalDisplay/TerminalDisplay.cpp:2260 +#: terminalDisplay/TerminalDisplay.cpp:2320 #, kde-format msgid "Confirm Paste" msgstr "確認貼上" -#: terminalDisplay/TerminalDisplay.cpp:2293 +#: terminalDisplay/TerminalDisplay.cpp:2353 #, kde-format msgid "End Of Text/Interrupt: may exit the current process" msgstr "文字結尾/中止:可能會退出目前程序" -#: terminalDisplay/TerminalDisplay.cpp:2294 +#: terminalDisplay/TerminalDisplay.cpp:2354 #, kde-format msgid "End Of Transmission: may exit the current process" msgstr "傳輸結尾:可能會退出目前程序" -#: terminalDisplay/TerminalDisplay.cpp:2295 +#: terminalDisplay/TerminalDisplay.cpp:2355 #, kde-format msgid "Bell: will try to emit an audible warning" msgstr "鈴響 (Bell):將嘗試發出聲音警告" -#: terminalDisplay/TerminalDisplay.cpp:2296 +#: terminalDisplay/TerminalDisplay.cpp:2356 #, kde-format msgid "Backspace" msgstr "Backspace 鍵" -#: terminalDisplay/TerminalDisplay.cpp:2297 +#: terminalDisplay/TerminalDisplay.cpp:2357 #, kde-format msgid "Device Control Three/XOFF: suspends output" msgstr "裝置控制 3 / XOFF: 暫停輸出" -#: terminalDisplay/TerminalDisplay.cpp:2298 +#: terminalDisplay/TerminalDisplay.cpp:2358 #, kde-format msgid "Substitute/Suspend: may suspend current process" msgstr "替代字元/暫停:可能會暫停目前程序" -#: terminalDisplay/TerminalDisplay.cpp:2299 +#: terminalDisplay/TerminalDisplay.cpp:2359 #, kde-format msgid "Escape: used for manipulating terminal state" msgstr "Esc 鍵:用來控制終端機狀態" -#: terminalDisplay/TerminalDisplay.cpp:2300 +#: terminalDisplay/TerminalDisplay.cpp:2360 #, kde-format msgid "File Separator/Quit: may abort the current process" msgstr "檔案分隔符/退出:可能會中止目前程序" -#: terminalDisplay/TerminalDisplay.cpp:2323 +#: terminalDisplay/TerminalDisplay.cpp:2383 #, kde-format msgid "" "The text you're trying to paste contains hidden control characters, do you " "want to filter them out?" msgstr "您嘗試貼上的文字有隱藏控制字元。是否過濾出這些字元?" -#: terminalDisplay/TerminalDisplay.cpp:2326 +#: terminalDisplay/TerminalDisplay.cpp:2386 #, kde-format msgctxt "@title" msgid "Confirm Paste" msgstr "確認貼上" -#: terminalDisplay/TerminalDisplay.cpp:2327 +#: terminalDisplay/TerminalDisplay.cpp:2387 #, kde-format msgctxt "@action:button" msgid "Paste &without control characters" msgstr "去除控制字元後貼上(&W)" -#: terminalDisplay/TerminalDisplay.cpp:2328 +#: terminalDisplay/TerminalDisplay.cpp:2388 #, kde-format msgctxt "@action:button" msgid "&Paste everything" msgstr "全部貼上(&P)" -#: terminalDisplay/TerminalDisplay.cpp:2329 +#: terminalDisplay/TerminalDisplay.cpp:2389 #, kde-format msgctxt "@action:button" msgid "&Cancel" msgstr "取消(&C)" -#: terminalDisplay/TerminalDisplay.cpp:2560 +#: terminalDisplay/TerminalDisplay.cpp:2620 #, kde-format msgid "" "Output has been 輸出已經被 Ctrl+S 暫停。按下 Ctrl+Q 回復。" -#: terminalDisplay/TerminalDisplay.cpp:2615 +#: terminalDisplay/TerminalDisplay.cpp:2675 #, kde-format msgid "This terminal is read-only." msgstr "此終端器為唯讀狀態。" -#: terminalDisplay/TerminalDisplay.cpp:3010 +#: terminalDisplay/TerminalDisplay.cpp:3081 #, kde-format msgid "Change &Directory To" msgstr "變更目錄為(&D)" -#: terminalDisplay/TerminalDisplay.cpp:3043 +#: terminalDisplay/TerminalDisplay.cpp:3116 #, kde-format msgid "&Paste Location" msgstr "貼上位置(&P)" -#: ViewManager.cpp:120 +#: ViewManager.cpp:124 #, kde-format msgctxt "@action:inmenu" msgid "Split View" msgstr "分割檢視" -#: ViewManager.cpp:127 +#: ViewManager.cpp:131 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right" msgstr "左右分割檢視" -#: ViewManager.cpp:135 +#: ViewManager.cpp:139 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom" msgstr "上下分割檢視" -#: ViewManager.cpp:143 +#: ViewManager.cpp:147 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically" msgstr "自動分割檢視" -#: ViewManager.cpp:153 +#: ViewManager.cpp:157 #, kde-format msgctxt "@action:inmenu" msgid "Split View Left/Right from next tab" msgstr "從下一個分頁左右分割檢視" -#: ViewManager.cpp:161 +#: ViewManager.cpp:165 #, kde-format msgctxt "@action:inmenu" msgid "Split View Top/Bottom from next tab" msgstr "從下一個分頁上下分割檢視" -#: ViewManager.cpp:169 +#: ViewManager.cpp:173 #, kde-format msgctxt "@action:inmenu" msgid "Split View Automatically from next tab" msgstr "從下一個分頁自動分割檢視" -#: ViewManager.cpp:179 +#: ViewManager.cpp:183 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x2 terminals" msgstr "新增四分割的分頁" -#: ViewManager.cpp:188 +#: ViewManager.cpp:192 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 2x1 terminals" msgstr "新增上二下一的分頁" -#: ViewManager.cpp:197 +#: ViewManager.cpp:201 #, kde-format msgctxt "@action:inmenu" msgid "Load a new tab with layout 1x2 terminals" msgstr "新增上一下二版面的分頁" -#: ViewManager.cpp:205 +# This makes the split view bigger. +# --Kisaragi +#: ViewManager.cpp:209 #, kde-format msgctxt "@action:inmenu" msgid "Expand View" -msgstr "展開樹狀檢視" +msgstr "展開檢視" -#: ViewManager.cpp:213 +# This makes the split view smaller. +# --Kisaragi +#: ViewManager.cpp:217 #, kde-format msgctxt "@action:inmenu" msgid "Shrink View" -msgstr "縮回樹狀檢視" +msgstr "縮回檢視" -#: ViewManager.cpp:223 +#: ViewManager.cpp:227 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &View" msgstr "在獨立視窗顯示目前檢視(&V)" -#: ViewManager.cpp:235 +#: ViewManager.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Detach Current &Tab" msgstr "在獨立視窗顯示目前分頁(&T)" -#: ViewManager.cpp:240 +#: ViewManager.cpp:244 #, kde-format msgctxt "@action Shortcut entry" msgid "Next Tab" msgstr "下一個分頁" -#: ViewManager.cpp:248 +#: ViewManager.cpp:252 #, kde-format msgctxt "@action Shortcut entry" msgid "Previous Tab" -msgstr "前一個分頁" +msgstr "上一個分頁" -#: ViewManager.cpp:256 +#: ViewManager.cpp:260 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Above Terminal" msgstr "將焦點移至上方終端機" -#: ViewManager.cpp:263 +#: ViewManager.cpp:267 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Below Terminal" msgstr "將焦點移至下方終端機" -#: ViewManager.cpp:270 +#: ViewManager.cpp:274 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Left Terminal" msgstr "將焦點移至左方終端機" -#: ViewManager.cpp:276 +#: ViewManager.cpp:280 #, kde-format msgctxt "@action Shortcut entry" msgid "Focus Right Terminal" msgstr "將焦點移至右方終端機" -#: ViewManager.cpp:282 +#: ViewManager.cpp:286 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Next Terminal" +msgstr "將焦點移至下一個終端機" + +#: ViewManager.cpp:292 +#, kde-format +msgctxt "@action Shortcut entry" +msgid "Focus Previous Terminal" +msgstr "將焦點移至上一個終端機" + +#: ViewManager.cpp:298 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Last Tab" msgstr "切換到最後一個分頁" -#: ViewManager.cpp:287 +#: ViewManager.cpp:303 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs" msgstr "上次使用分頁" -#: ViewManager.cpp:292 +#: ViewManager.cpp:308 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle Between Two Tabs" msgstr "在兩個分頁中切換" -#: ViewManager.cpp:297 +#: ViewManager.cpp:313 #, kde-format msgctxt "@action Shortcut entry" msgid "Last Used Tabs (Reverse)" msgstr "上次使用分頁 (倒序)" -#: ViewManager.cpp:302 +#: ViewManager.cpp:318 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle maximize current view" msgstr "切換最大化目前檢視" -#: ViewManager.cpp:303 +#: ViewManager.cpp:319 #, kde-format msgctxt "@action:inmenu" msgid "Toggle maximize current view" msgstr "切換最大化目前檢視" -#: ViewManager.cpp:311 +#: ViewManager.cpp:327 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle zoom-maximize current view" msgstr "切換縮放最大化目前檢視" -#: ViewManager.cpp:312 +#: ViewManager.cpp:328 #, kde-format msgctxt "@action:inmenu" msgid "Toggle zoom-maximize current view" msgstr "切換縮放最大化目前檢視" -#: ViewManager.cpp:320 +#: ViewManager.cpp:336 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the right" msgstr "將分頁右移" -#: ViewManager.cpp:327 +#: ViewManager.cpp:343 #, kde-format msgctxt "@action Shortcut entry" msgid "Move tab to the left" msgstr "將分頁左移" -#: ViewManager.cpp:334 +#: ViewManager.cpp:350 #, kde-format msgctxt "@action Shortcut entry" msgid "Setup semantic integration (bash)" msgstr "設定語意整合 (bash)" -#: ViewManager.cpp:340 +#: ViewManager.cpp:356 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle semantic hints display" msgstr "切換語意提示顯示" -#: ViewManager.cpp:346 +#: ViewManager.cpp:362 #, kde-format msgctxt "@action Shortcut entry" msgid "Toggle line numbers display" msgstr "切換行數顯示" -#: ViewManager.cpp:353 +#: ViewManager.cpp:369 #, kde-format msgctxt "@action:inmenu" msgid "Equal size to all views" msgstr "所有檢視區域大小相等" -#: ViewManager.cpp:363 +#: ViewManager.cpp:379 #, kde-format msgctxt "@action Shortcut entry" msgid "Switch to Tab %1" msgstr "切換到分頁 %1" -#: ViewManager.cpp:576 +#: ViewManager.cpp:602 #, kde-format msgid "Semantic hints " msgstr "語意提示" -#: ViewManager.cpp:592 +#: ViewManager.cpp:618 #, kde-format msgid "Line numbers " msgstr "行數" -#: ViewManager.cpp:1177 +#: ViewManager.cpp:1239 #, kde-format msgctxt "@title:window" msgid "Save Tab Layout" msgstr "儲存分頁佈局" -#: ViewManager.cpp:1179 ViewManager.cpp:1266 +#: ViewManager.cpp:1241 ViewManager.cpp:1362 #, kde-format msgctxt "@item:inlistbox" msgid "Konsole View Layout (*.json)" msgstr "Konsole 檢視佈局 (*.json)" -#: ViewManager.cpp:1192 +#: ViewManager.cpp:1257 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3571,7 +3757,7 @@ msgstr "" "儲存佈局時發生問題。\n" "%1" -#: ViewManager.cpp:1253 +#: ViewManager.cpp:1349 #, kde-format msgctxt "@label:textbox" msgid "" @@ -3581,13 +3767,13 @@ msgstr "" "載入佈局時發生問題。\n" "%1" -#: ViewManager.cpp:1264 +#: ViewManager.cpp:1360 #, kde-format msgctxt "@title:window" msgid "Load Tab Layout" msgstr "載入分頁佈局" -#: Vt102Emulation.cpp:2478 +#: Vt102Emulation.cpp:3281 #, kde-format msgid "" "No keyboard translator available. The information needed to convert key " @@ -3683,28 +3869,40 @@ msgstr "預設字元編碼(&D):" msgid "Shortcut for peeking the primary screen:" msgstr "快速瀏覽主螢幕的快捷鍵:" -#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#. i18n: ectx: property (text), widget (QLabel, autoSaveIntervalLabel) #: widgets/EditProfileAdvancedPage.ui:255 #, kde-format +msgid "Set interval between autosaves:" +msgstr "設定自動儲存之間的間隔:" + +#. i18n: ectx: property (suffix), widget (QSpinBox, autoSaveIntervalWidget) +#: widgets/EditProfileAdvancedPage.ui:262 +#, kde-format +msgid " ms" +msgstr " 毫秒" + +#. i18n: ectx: property (text), widget (QLabel, label_linenums) +#: widgets/EditProfileAdvancedPage.ui:275 +#, kde-format msgid "Line Numbers:" msgstr "行號:" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsNever) -#: widgets/EditProfileAdvancedPage.ui:265 +#: widgets/EditProfileAdvancedPage.ui:285 #, kde-format msgctxt "Never" msgid "&Never" msgstr "永不(&N)" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsURL) -#: widgets/EditProfileAdvancedPage.ui:275 +#: widgets/EditProfileAdvancedPage.ui:295 #, kde-format msgctxt "When showing URL hints" msgid "When &URL hints show" msgstr "顯示 &URL 提示時" #. i18n: ectx: property (text), widget (QRadioButton, lineNumsAlways) -#: widgets/EditProfileAdvancedPage.ui:285 +#: widgets/EditProfileAdvancedPage.ui:305 #, kde-format msgctxt "Always" msgid "A&lways" @@ -3740,7 +3938,7 @@ msgstr "編輯所選取的配色" #. i18n: ectx: property (text), widget (QPushButton, textEditorCustomBtn) #. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton) #: widgets/EditProfileAppearancePage.ui:82 -#: widgets/EditProfileGeneralPage.ui:227 widgets/EditProfileKeyboardPage.ui:73 +#: widgets/EditProfileGeneralPage.ui:276 widgets/EditProfileKeyboardPage.ui:73 #: widgets/EditProfileMousePage.ui:320 #, kde-format msgid "Edit..." @@ -3794,14 +3992,20 @@ msgstr "以粗體字型繪製強烈的顏色" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:188 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use the selected font for line characters instead of the builtin code" -msgstr "使用選定的字型來顯示行字元而不是內建的代碼" +msgstr "使用選定的字型來顯示線條字元而不是內建的代碼" #. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton) #: widgets/EditProfileAppearancePage.ui:191 #, kde-format +msgctxt "" +"Characters for drawing lines for a frame or box in TUI programs. Not a row " +"of characters." msgid "Use line characters contained in font" -msgstr "使用包含在字型內的行字元" +msgstr "使用包含在字型內的線條字元" #. i18n: ectx: property (toolTip), widget (QCheckBox, useFontBrailleCharactersButton) #: widgets/EditProfileAppearancePage.ui:198 @@ -3918,29 +4122,43 @@ msgid "Make the cursor blink regularly" msgstr "讓游標定時閃動" #. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton) +#. i18n: ectx: property (text), widget (QCheckBox, enableAnimatingCursorButton) #. i18n: ectx: property (text), widget (QCheckBox, alignToCenterButton) #: widgets/EditProfileAppearancePage.ui:450 -#: widgets/EditProfileAppearancePage.ui:733 +#: widgets/EditProfileAppearancePage.ui:476 +#: widgets/EditProfileAppearancePage.ui:759 #, kde-format msgid "Enabled" msgstr "啟用" +#. i18n: ectx: property (text), widget (QLabel, label_12) +#: widgets/EditProfileAppearancePage.ui:457 +#, kde-format +msgid "Animation:" +msgstr "動畫:" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, enableAnimatingCursorButton) +#: widgets/EditProfileAppearancePage.ui:473 +#, kde-format +msgid "Make the cursor animate smoothly" +msgstr "讓游標有順暢的動態效果" + #. i18n: ectx: attribute (title), widget (QWidget, tab_2) #. i18n: ectx: attribute (title), widget (QWidget, miscTab) -#: widgets/EditProfileAppearancePage.ui:473 widgets/EditProfileMousePage.ui:252 +#: widgets/EditProfileAppearancePage.ui:499 widgets/EditProfileMousePage.ui:252 #, kde-format msgctxt "Items that do not fit in other categories" msgid "Miscellaneous" msgstr "雜項" #. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileAppearancePage.ui:484 +#: widgets/EditProfileAppearancePage.ui:510 #, kde-format msgid "Window:" msgstr "視窗:" #. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:491 +#: widgets/EditProfileAppearancePage.ui:517 #, kde-format msgid "" "Show terminal size in columns and lines in the center of window after " @@ -3948,144 +4166,144 @@ msgid "" msgstr "調整大小之後在終端機中央顯示欄數與行數" #. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton) -#: widgets/EditProfileAppearancePage.ui:494 +#: widgets/EditProfileAppearancePage.ui:520 #, kde-format msgid "Show hint for terminal size after resizing" msgstr "調整大小之後顯示終端機大小" #. i18n: ectx: property (text), widget (QCheckBox, invertSelectionColorsCheckbox) -#: widgets/EditProfileAppearancePage.ui:501 +#: widgets/EditProfileAppearancePage.ui:527 #, kde-format msgid "Always invert the colors of selected text" msgstr "總是反轉選取文字的顏色" #. i18n: ectx: property (text), widget (QLabel, dimLabel) -#: widgets/EditProfileAppearancePage.ui:510 +#: widgets/EditProfileAppearancePage.ui:536 #, kde-format msgid "Darkening strength:" msgstr "黯淡程度" #. i18n: ectx: property (text), widget (QLabel, borderLabel) -#: widgets/EditProfileAppearancePage.ui:543 +#: widgets/EditProfileAppearancePage.ui:569 #, kde-format msgctxt "Border color options" msgid "Color:" msgstr "顏色:" #. i18n: ectx: property (toolTip), widget (KColorButton, focusBorderColor) -#: widgets/EditProfileAppearancePage.ui:559 +#: widgets/EditProfileAppearancePage.ui:585 #, kde-format msgid "Select the color used to draw the border" msgstr "選擇要用於繪製邊框的顏色" #. i18n: ectx: property (text), widget (QLabel, label_10) -#: widgets/EditProfileAppearancePage.ui:581 +#: widgets/EditProfileAppearancePage.ui:607 #, kde-format msgid "Inactive Terminals:" msgstr "不活躍的終端機:" #. i18n: ectx: property (text), widget (QLabel, label_11) -#: widgets/EditProfileAppearancePage.ui:591 +#: widgets/EditProfileAppearancePage.ui:617 #, kde-format msgid "Active Terminals:" msgstr "活躍的終端機:" #. i18n: ectx: property (title), widget (QGroupBox, contentsGroup) -#: widgets/EditProfileAppearancePage.ui:601 +#: widgets/EditProfileAppearancePage.ui:627 #, kde-format msgctxt "@title:group" msgid "Terminal contents" msgstr "終端機內容" #. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel) -#: widgets/EditProfileAppearancePage.ui:613 +#: widgets/EditProfileAppearancePage.ui:639 #, kde-format msgid "Line spacing:" msgstr "行間距:" #. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner) -#: widgets/EditProfileAppearancePage.ui:631 +#: widgets/EditProfileAppearancePage.ui:657 #, kde-format msgid "The number of pixels between two lines" msgstr "兩行間的間距,單位為像素" #. i18n: ectx: property (suffix), widget (QSpinBox, lineSpacingSpinner) #. i18n: ectx: property (suffix), widget (QSpinBox, marginsSpinner) -#: widgets/EditProfileAppearancePage.ui:634 -#: widgets/EditProfileAppearancePage.ui:686 +#: widgets/EditProfileAppearancePage.ui:660 +#: widgets/EditProfileAppearancePage.ui:712 #, kde-format msgctxt "(pixels) visual size unit" msgid " px" msgstr " 像素(px)" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileAppearancePage.ui:668 +#: widgets/EditProfileAppearancePage.ui:694 #, kde-format msgid "Margins:" msgstr "外邊距:" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileAppearancePage.ui:720 +#: widgets/EditProfileAppearancePage.ui:746 #, kde-format msgid "Align to center:" msgstr "對齊中央:" #. i18n: ectx: property (toolTip), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:743 +#: widgets/EditProfileAppearancePage.ui:769 #, kde-format msgid "Indicate whether the window is active by dimming the colors" msgstr "透過調暗顏色來指示視窗是否處於作用中的狀態" #. i18n: ectx: property (text), widget (QCheckBox, dimWhenInactiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:746 +#: widgets/EditProfileAppearancePage.ui:772 #, kde-format msgid "Darken" msgstr "調暗" #. i18n: ectx: property (toolTip), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:753 +#: widgets/EditProfileAppearancePage.ui:779 #, kde-format msgid "Indicate whether the window is active by drawing a border" msgstr "透過繪製邊框來指示視窗是否處於作用中的狀態" #. i18n: ectx: property (text), widget (QCheckBox, borderWhenActiveCheckbox) -#: widgets/EditProfileAppearancePage.ui:756 +#: widgets/EditProfileAppearancePage.ui:782 #, kde-format msgid "Border" msgstr "邊框" #. i18n: ectx: property (text), widget (QCheckBox, displayVerticalLine) -#: widgets/EditProfileAppearancePage.ui:798 +#: widgets/EditProfileAppearancePage.ui:824 #, kde-format msgid "Display Vertical line at column:" msgstr "在此欄位上標注垂直線" #. i18n: ectx: property (toolTip), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:843 +#: widgets/EditProfileAppearancePage.ui:869 #, kde-format msgid "

              Complex Text Layout

              " msgstr "

              複合文字佈局

              " #. i18n: ectx: attribute (title), widget (QWidget, CTLtab) -#: widgets/EditProfileAppearancePage.ui:846 +#: widgets/EditProfileAppearancePage.ui:872 #, kde-format msgid "Complex Text Layout" msgstr "複合文字佈局" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:861 +#: widgets/EditProfileAppearancePage.ui:887 #, kde-format msgid "Enable word mode text rendering" msgstr "啟用字詞模式文字繪製" #. i18n: ectx: property (text), widget (QCheckBox, wordMode) -#: widgets/EditProfileAppearancePage.ui:864 +#: widgets/EditProfileAppearancePage.ui:890 #, kde-format msgid "Word mode" msgstr "字詞模式" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:877 +#: widgets/EditProfileAppearancePage.ui:903 #, kde-format msgid "" "Ignore attribute changes mid-word (otherwise, attribute changes break word " @@ -4093,43 +4311,43 @@ msgid "" msgstr "忽略中間詞的屬性變化(否則屬性變更會在繪製時斷字)" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAttr) -#: widgets/EditProfileAppearancePage.ui:880 +#: widgets/EditProfileAppearancePage.ui:906 #, kde-format msgid "Use the same attributes for whole word" msgstr "對整個字詞使用相同的屬性" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:893 +#: widgets/EditProfileAppearancePage.ui:919 #, kde-format msgid "Render words of ASCII characters together" msgstr "一起繪製 ASCII 字元的字詞" #. i18n: ectx: property (text), widget (QCheckBox, wordModeAscii) -#: widgets/EditProfileAppearancePage.ui:896 +#: widgets/EditProfileAppearancePage.ui:922 #, kde-format msgid "ASCII characters " msgstr "ASCII 字元" #. i18n: ectx: property (toolTip), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:909 +#: widgets/EditProfileAppearancePage.ui:935 #, kde-format msgid "Render words of Brahmic scripts characters together" msgstr "一起繪製印度系文字字元的字詞" #. i18n: ectx: property (text), widget (QCheckBox, wordModeBrahmic) -#: widgets/EditProfileAppearancePage.ui:912 +#: widgets/EditProfileAppearancePage.ui:938 #, kde-format msgid "Brahmic scripts characters" msgstr "印度系文字字元" #. i18n: ectx: property (text), widget (QLabel, label_17) -#: widgets/EditProfileAppearancePage.ui:925 +#: widgets/EditProfileAppearancePage.ui:951 #, kde-format msgid "Emoji Font:" msgstr "表情符號字型:" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:951 +#: widgets/EditProfileAppearancePage.ui:977 #, kde-format msgid "" "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or " @@ -4137,95 +4355,95 @@ msgid "" msgstr "在終端機中開啟雙向顯示(只有在阿拉伯語、波斯語與希伯來語系中有效)" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton) -#: widgets/EditProfileAppearancePage.ui:954 +#: widgets/EditProfileAppearancePage.ui:980 #, kde-format msgid "Bi-Directional text rendering" msgstr "雙向文字繪製" #. i18n: ectx: property (toolTip), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:967 +#: widgets/EditProfileAppearancePage.ui:993 #, kde-format msgid "Lines are always LTR, rather than determined by first strong character" msgstr "線條一律為左到右,而非由第一個強調字元決定" #. i18n: ectx: property (text), widget (QCheckBox, bidiLineLTR) -#: widgets/EditProfileAppearancePage.ui:970 +#: widgets/EditProfileAppearancePage.ui:996 #, kde-format msgid "force LTR line direction" msgstr "強制左到右線條方向" #. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:983 +#: widgets/EditProfileAppearancePage.ui:1009 #, kde-format msgid "Treat table drawing characters as strong LTR." msgstr "將表格繪製字元視為強左到右。" #. i18n: ectx: property (text), widget (QCheckBox, enableBidiTableDirOverrideButton) -#: widgets/EditProfileAppearancePage.ui:986 +#: widgets/EditProfileAppearancePage.ui:1012 #, kde-format msgid "Table characters BiDi mode override" msgstr "表格字元 BiDi 模式覆寫" #. i18n: ectx: property (toolTip), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:999 +#: widgets/EditProfileAppearancePage.ui:1025 #, kde-format msgid "Ignore wcwidth of problematic characters" msgstr "忽略易造成問題的字元的 wcwidth" #. i18n: ectx: property (text), widget (QCheckBox, ignoreWcWidth) -#: widgets/EditProfileAppearancePage.ui:1002 +#: widgets/EditProfileAppearancePage.ui:1028 #, kde-format msgid "Override wcwidth" msgstr "覆寫 wcwidth" -#: widgets/EditProfileDialog.cpp:66 +#: widgets/EditProfileDialog.cpp:70 #, kde-format msgid "Edit Profile" msgstr "編輯設定檔" -#: widgets/EditProfileDialog.cpp:93 +#: widgets/EditProfileDialog.cpp:97 #, kde-format msgctxt "@title:tab Generic, common options" msgid "General" msgstr "一般" -#: widgets/EditProfileDialog.cpp:104 +#: widgets/EditProfileDialog.cpp:108 #, kde-format msgid "Tabs" msgstr "分頁" -#: widgets/EditProfileDialog.cpp:121 +#: widgets/EditProfileDialog.cpp:125 #, kde-format msgid "Appearance" msgstr "外觀" -#: widgets/EditProfileDialog.cpp:137 +#: widgets/EditProfileDialog.cpp:141 #, kde-format msgid "Scrolling" msgstr "捲動列" -#: widgets/EditProfileDialog.cpp:151 +#: widgets/EditProfileDialog.cpp:155 #, kde-format msgid "Keyboard" msgstr "鍵盤" -#: widgets/EditProfileDialog.cpp:152 +#: widgets/EditProfileDialog.cpp:156 #, kde-format msgid "Key bindings" msgstr "按鍵組合" -#: widgets/EditProfileDialog.cpp:163 +#: widgets/EditProfileDialog.cpp:167 #, kde-format msgid "Mouse" msgstr "滑鼠" -#: widgets/EditProfileDialog.cpp:179 +#: widgets/EditProfileDialog.cpp:183 #, kde-format msgctxt "@title:tab Complex options" msgid "Advanced" msgstr "進階" -#: widgets/EditProfileDialog.cpp:287 +#: widgets/EditProfileDialog.cpp:291 #, kde-kuit-format msgctxt "@info" msgid "" @@ -4236,47 +4454,52 @@ msgstr "" "權限不足,無法儲存設定至: %1修改該檔案的權限或者" "使用不同的名稱來另存新設定檔。" -#: widgets/EditProfileDialog.cpp:304 +#: widgets/EditProfileDialog.cpp:308 #, kde-format msgctxt "@info" msgid "Profile Name was empty; please set a name to be able to save settings." msgstr "設定檔名稱不能留白,請指定名稱以利儲存。" -#: widgets/EditProfileDialog.cpp:312 +#: widgets/EditProfileDialog.cpp:316 #, kde-format msgctxt "@info" msgid "A profile with the name \"%1\" already exists." msgstr "名為「%1」的設定檔已存在。" -#: widgets/EditProfileDialog.cpp:342 +#: widgets/EditProfileDialog.cpp:346 #, kde-format msgctxt "@info" msgid "Profile name exceeded maximum allowed length (%1)." msgstr "設定檔名稱超過了最大長度 (%1)。" -#: widgets/EditProfileDialog.cpp:380 +#: widgets/EditProfileDialog.cpp:384 #, kde-format msgctxt "@info" msgid "The highlighted characters are invalid in profile names: %1." msgstr "以下突顯的字元無法用於設定檔名稱中:%1。" -#: widgets/EditProfileDialog.cpp:416 +#: widgets/EditProfileDialog.cpp:420 #, kde-format msgid "Editing profile: %2" msgid_plural "Editing %1 profiles: %2" msgstr[0] "編輯 %1 個設定檔:%2" -#: widgets/EditProfileDialog.cpp:420 +#: widgets/EditProfileDialog.cpp:424 #, kde-format msgid "Create New Profile" msgstr "新增設定檔" -#: widgets/EditProfileDialog.cpp:423 +#: widgets/EditProfileDialog.cpp:427 #, kde-format msgid "Edit Profile \"%1\"" msgstr "編輯設定檔 %1" -#: widgets/EditProfileDialog.cpp:514 +#: widgets/EditProfileDialog.cpp:529 +#, kde-format +msgid "None" +msgstr "無" + +#: widgets/EditProfileDialog.cpp:549 #, kde-format msgctxt "" "Suffix of the number of columns (N columns). The leading space is needed to " @@ -4285,7 +4508,7 @@ msgid " column" msgid_plural " columns" msgstr[0] " 欄" -#: widgets/EditProfileDialog.cpp:516 +#: widgets/EditProfileDialog.cpp:551 #, kde-format msgctxt "" "Suffix of the number of rows (N rows). The leading space is needed to " @@ -4294,72 +4517,72 @@ msgid " row" msgid_plural " rows" msgstr[0] " 行" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Bell" msgstr "系統響鈴" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "System Notifications" msgstr "系統通知" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Visual Bell" msgstr "視覺響鈴" -#: widgets/EditProfileDialog.cpp:526 +#: widgets/EditProfileDialog.cpp:561 #, kde-format msgid "Ignore Bell Events" msgstr "忽略響鈴事件" -#: widgets/EditProfileDialog.cpp:535 +#: widgets/EditProfileDialog.cpp:570 #, kde-format msgid "Default profile for new terminal sessions in %1" msgstr "作為新終端機工作階段 %1 的預設設定檔" -#: widgets/EditProfileDialog.cpp:640 +#: widgets/EditProfileDialog.cpp:677 #, kde-format msgid "Edit Environment" msgstr "編輯環境變數" -#: widgets/EditProfileDialog.cpp:641 +#: widgets/EditProfileDialog.cpp:678 #, kde-format msgid "One environment variable per line" msgstr "每一個環境變數佔一行" -#: widgets/EditProfileDialog.cpp:672 +#: widgets/EditProfileDialog.cpp:711 #, kde-format msgctxt "Unit of time" msgid " second" msgid_plural " seconds" msgstr[0] " 秒" -#: widgets/EditProfileDialog.cpp:786 +#: widgets/EditProfileDialog.cpp:841 #, kde-format msgid "Select Initial Directory" msgstr "選擇起始目錄" -#: widgets/EditProfileDialog.cpp:946 +#: widgets/EditProfileDialog.cpp:1003 #, kde-format msgid "Get New..." msgstr "取得更多…" -#: widgets/EditProfileDialog.cpp:1342 +#: widgets/EditProfileDialog.cpp:1406 #, kde-kuit-format msgctxt "@info" msgid "Scheme %1 failed to load." msgstr "配色 %1 無法載入。" -#: widgets/EditProfileDialog.cpp:1521 +#: widgets/EditProfileDialog.cpp:1588 #, kde-format msgid "" "This color scheme uses a transparent background which does not appear to be " "supported on your desktop" msgstr "此配色中含有透明背景,您的桌面似乎不支援。" -#: widgets/EditProfileDialog.cpp:1527 +#: widgets/EditProfileDialog.cpp:1594 #, kde-format msgid "" "Konsole was started before desktop effects were enabled. You need to restart " @@ -4368,12 +4591,12 @@ msgstr "" "在啟用桌面效果前 Konsole 就已經開啟,您需要重新啟動 Konsole 才能看到透明背" "景。" -#: widgets/EditProfileDialog.cpp:1913 +#: widgets/EditProfileDialog.cpp:1995 #, kde-format msgid "Default for file type" msgstr "檔案類型的預設" -#: widgets/EditProfileDialog.cpp:1939 +#: widgets/EditProfileDialog.cpp:2021 #, kde-format msgid "" "The format is e.g. 'editorExec PATH:LINE:COLUMN'\n" @@ -4400,7 +4623,7 @@ msgstr "" "指令未包含「路徑」或「行」的情況,將自動忽略本設定\n" "並以預設的文字編輯器開啟。" -#: widgets/EditProfileDialog.cpp:1952 +#: widgets/EditProfileDialog.cpp:2034 #, kde-format msgid "Text Editor Custom Command" msgstr "文字編輯器自訂命令" @@ -4485,28 +4708,57 @@ msgstr "選擇啟始目錄" #: widgets/EditProfileGeneralPage.ui:193 #, kde-format msgid "Start in same directory as current session" -msgstr "以目前階段所在的目錄開始" +msgstr "以目前工作階段所在的目錄開始" + +#. i18n: ectx: property (toolTip), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:200 +#, kde-format +msgid "" +"When opening a new tab or split, automatically enter the same container " +"(Toolbox, Distrobox) as the current session" +msgstr "" +"建立新分頁或分割檢視時,自動進入與目前工作階段相同的容器(Toolbox、" +"Distrobox)" + +#. i18n: ectx: property (text), widget (QCheckBox, inheritContainerButton) +#: widgets/EditProfileGeneralPage.ui:203 +#, kde-format +msgid "Enter same container as current session" +msgstr "進入目前工作階段所用的容器" + +#. i18n: ectx: property (text), widget (QLabel, containerLabel) +#: widgets/EditProfileGeneralPage.ui:229 +#, kde-format +msgid "Always start in container:" +msgstr "總是以容器啟動:" + +#. i18n: ectx: property (toolTip), widget (QComboBox, containerCombo) +#: widgets/EditProfileGeneralPage.ui:242 +#, kde-format +msgid "" +"Always start new sessions using this profile inside the selected container" +msgstr "使用這個設定檔時,總是在所選容器當中啟動新工作階段" #. i18n: ectx: property (text), widget (QLabel, label_4) -#: widgets/EditProfileGeneralPage.ui:206 +#: widgets/EditProfileGeneralPage.ui:255 #, kde-format msgid "Environment:" msgstr "環境:" #. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton) -#: widgets/EditProfileGeneralPage.ui:224 +#: widgets/EditProfileGeneralPage.ui:273 #, kde-format msgid "Edit the list of environment variables and associated values" msgstr "編輯環境變數清單" #. i18n: ectx: property (text), widget (QLabel, label_5) -#: widgets/EditProfileGeneralPage.ui:271 +#: widgets/EditProfileGeneralPage.ui:320 #, kde-format msgid "Initial terminal si&ze:" msgstr "終端機初始大小(&Z):" #. i18n: ectx: property (text), widget (QLabel, useCurrentWindowSizeNote) -#: widgets/EditProfileGeneralPage.ui:346 +#: widgets/EditProfileGeneralPage.ui:395 #, kde-format msgctxt "@info" msgid "" @@ -4521,31 +4773,31 @@ msgstr "" "

              " #. i18n: ectx: property (text), widget (QLabel, terminalBellLabel) -#: widgets/EditProfileGeneralPage.ui:359 +#: widgets/EditProfileGeneralPage.ui:411 #, kde-format msgid "&Terminal bell mode:" msgstr "終端機響鈴模式(&T):" #. i18n: ectx: attribute (title), widget (QWidget, semantic) -#: widgets/EditProfileGeneralPage.ui:377 +#: widgets/EditProfileGeneralPage.ui:429 #, kde-format msgid "Semantic Integration" msgstr "語意整合" #. i18n: ectx: property (text), widget (QCheckBox, semanticUpDown) -#: widgets/EditProfileGeneralPage.ui:383 +#: widgets/EditProfileGeneralPage.ui:435 #, kde-format msgid "Up/Down Arrows emulation" msgstr "上/下方向鍵模擬" #. i18n: ectx: property (text), widget (QCheckBox, semanticInputClick) -#: widgets/EditProfileGeneralPage.ui:390 +#: widgets/EditProfileGeneralPage.ui:442 #, kde-format msgid "Mouse click in input line moves cursor" msgstr "滑鼠點擊輸入行移動游標" #. i18n: ectx: property (text), widget (QLabel, label_8) -#: widgets/EditProfileGeneralPage.ui:403 +#: widgets/EditProfileGeneralPage.ui:455 #, kde-format msgid "Semantic hints:" msgstr "語意提示:" @@ -4555,9 +4807,9 @@ msgstr "語意提示:" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsNever) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundNever) -#: widgets/EditProfileGeneralPage.ui:413 widgets/EditProfileGeneralPage.ui:459 -#: widgets/EditProfileGeneralPage.ui:505 widgets/EditProfileGeneralPage.ui:551 -#: widgets/EditProfileGeneralPage.ui:597 +#: widgets/EditProfileGeneralPage.ui:465 widgets/EditProfileGeneralPage.ui:511 +#: widgets/EditProfileGeneralPage.ui:557 widgets/EditProfileGeneralPage.ui:603 +#: widgets/EditProfileGeneralPage.ui:649 #, kde-format msgctxt "Never" msgid "Never" @@ -4568,9 +4820,9 @@ msgstr "永不" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsURL) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundURL) -#: widgets/EditProfileGeneralPage.ui:423 widgets/EditProfileGeneralPage.ui:469 -#: widgets/EditProfileGeneralPage.ui:515 widgets/EditProfileGeneralPage.ui:561 -#: widgets/EditProfileGeneralPage.ui:607 +#: widgets/EditProfileGeneralPage.ui:475 widgets/EditProfileGeneralPage.ui:521 +#: widgets/EditProfileGeneralPage.ui:567 widgets/EditProfileGeneralPage.ui:613 +#: widgets/EditProfileGeneralPage.ui:659 #, kde-format msgctxt "When showing URL hints" msgid "When URL hints show" @@ -4581,34 +4833,34 @@ msgstr "當 URL 提示顯示時" #. i18n: ectx: property (text), widget (QRadioButton, errorBackgroundAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBarsAlways) #. i18n: ectx: property (text), widget (QRadioButton, alternatingBackgroundAlways) -#: widgets/EditProfileGeneralPage.ui:433 widgets/EditProfileGeneralPage.ui:479 -#: widgets/EditProfileGeneralPage.ui:525 widgets/EditProfileGeneralPage.ui:571 -#: widgets/EditProfileGeneralPage.ui:617 +#: widgets/EditProfileGeneralPage.ui:485 widgets/EditProfileGeneralPage.ui:531 +#: widgets/EditProfileGeneralPage.ui:577 widgets/EditProfileGeneralPage.ui:623 +#: widgets/EditProfileGeneralPage.ui:669 #, kde-format msgctxt "Always" msgid "Always" msgstr "永遠" #. i18n: ectx: property (text), widget (QLabel, label_20) -#: widgets/EditProfileGeneralPage.ui:449 +#: widgets/EditProfileGeneralPage.ui:501 #, kde-format msgid "Red error bars:" msgstr "紅色錯誤列:" #. i18n: ectx: property (text), widget (QLabel, label_30) -#: widgets/EditProfileGeneralPage.ui:495 +#: widgets/EditProfileGeneralPage.ui:547 #, kde-format msgid "Red error background:" msgstr "紅色錯誤背景:" #. i18n: ectx: property (text), widget (QLabel, label_40) -#: widgets/EditProfileGeneralPage.ui:541 +#: widgets/EditProfileGeneralPage.ui:593 #, kde-format msgid "Alternating bars:" msgstr "交錯列:" #. i18n: ectx: property (text), widget (QLabel, label_50) -#: widgets/EditProfileGeneralPage.ui:587 +#: widgets/EditProfileGeneralPage.ui:639 #, kde-format msgid "Alternating background:" msgstr "交錯背景:" @@ -4823,13 +5075,13 @@ msgstr "被認為是檔案、連結或電子郵件地址的文字,在滑鼠點 #: widgets/EditProfileMousePage.ui:338 #, kde-format msgid "Open files/links by direct click" -msgstr "直接點選底線文字即開啟檔案/連結" +msgstr "直接點選檔案/連結來開啟它們" #. i18n: ectx: property (text), widget (QCheckBox, allowLinkEscapeSequenceButton) #: widgets/EditProfileMousePage.ui:349 #, kde-format msgid "Allow escape sequences for links" -msgstr "允許連結中的跳脫字元" +msgstr "允許跳脫字元建立連結" #. i18n: ectx: property (text), widget (QLabel, allowLinkEscapeSequenceButtonWarning) #: widgets/EditProfileMousePage.ui:356 @@ -4940,118 +5192,130 @@ msgstr "允許終端機程式處理敲擊與拖曳" #: widgets/EditProfileScrollingPage.ui:25 #, kde-format msgid "Scrollback:" -msgstr "往回捲動:" +msgstr "回捲歷史:" #. i18n: ectx: property (text), widget (QLabel, label_2) -#: widgets/EditProfileScrollingPage.ui:67 +#: widgets/EditProfileScrollingPage.ui:41 #, kde-format msgid "Scroll Page Up/Down:" msgstr "往上下頁捲動:" +#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) +#: widgets/EditProfileScrollingPage.ui:51 +#, kde-format +msgid "Highlight the lines coming into view" +msgstr "在捲軸對側標注目前捲動的位置所看見的終端機輸出" + +#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) +#: widgets/EditProfileScrollingPage.ui:58 +#, no-c-format, kde-format +msgid " %" +msgstr " %" + +#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) +#: widgets/EditProfileScrollingPage.ui:74 +#, kde-format +msgctxt "@option:radio Hide the scroll bar" +msgid "Hidden" +msgstr "隱藏" + +#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) +#: widgets/EditProfileScrollingPage.ui:84 +#, kde-format +msgid "Size of each marker (as a percentage of scrollbar length):" +msgstr "標記的大小(單位為捲軸列長度的百分比):" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: widgets/EditProfileScrollingPage.ui:97 +#, kde-format +msgid "Highlighting:" +msgstr "標注:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:83 +#: widgets/EditProfileScrollingPage.ui:129 #, kde-format msgid "Scroll the page the half height of window" msgstr "捲動視窗高度的一半" #. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage) -#: widgets/EditProfileScrollingPage.ui:86 +#: widgets/EditProfileScrollingPage.ui:132 #, kde-format msgid "Half screen heigh&t" msgstr "半個頁面高度(&T)" +#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) +#: widgets/EditProfileScrollingPage.ui:142 +#, kde-format +msgid "Color of scrollbar markers:" +msgstr "捲軸列標記的顏色:" + +#. i18n: ectx: property (text), widget (QLabel, labelSearhcHighlighterColor) +#: widgets/EditProfileScrollingPage.ui:168 +#, kde-format +msgid "Color of scrollbar search highlighting lines:" +msgstr "捲軸列搜尋標記的顏色:" + +#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) +#: widgets/EditProfileScrollingPage.ui:181 +#, kde-format +msgid "Reflow Lines:" +msgstr "重新捲動:" + #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:96 +#: widgets/EditProfileScrollingPage.ui:191 #, kde-format msgid "Scroll the page the full height of window" msgstr "捲動整個視窗高度" #. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage) -#: widgets/EditProfileScrollingPage.ui:99 +#: widgets/EditProfileScrollingPage.ui:194 #, kde-format msgid "F&ull screen height" msgstr "整個頁面高度(&U)" -#. i18n: ectx: property (text), widget (QLabel, labelSize) -#: widgets/EditProfileScrollingPage.ui:131 -#, kde-format -msgid "Scrollbar position:" -msgstr "捲動條位置:" - #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:141 +#: widgets/EditProfileScrollingPage.ui:215 #, kde-format msgid "Show the scroll bar on the right side of the terminal window" msgstr "在終端機視窗右側顯示捲動列" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton) -#: widgets/EditProfileScrollingPage.ui:144 +#: widgets/EditProfileScrollingPage.ui:218 #, kde-format msgctxt "@option:radio Show scrollbar on the right side" msgid "Ri&ght side" msgstr "右側(&G)" #. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:154 +#: widgets/EditProfileScrollingPage.ui:238 #, kde-format msgid "Show the scroll bar on the left side of the terminal window" msgstr "在終端機視窗左側顯示捲動列" #. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton) -#: widgets/EditProfileScrollingPage.ui:157 +#: widgets/EditProfileScrollingPage.ui:241 #, kde-format msgctxt "@option:radio Show scrollbar on the left side" msgid "&Left side" msgstr "左側(&L)" -#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton) -#: widgets/EditProfileScrollingPage.ui:167 -#, kde-format -msgctxt "@option:radio Hide the scroll bar" -msgid "Hidden" -msgstr "隱藏" - -#. i18n: ectx: property (text), widget (QLabel, label) -#: widgets/EditProfileScrollingPage.ui:199 -#, kde-format -msgid "Highlighting:" -msgstr "標注:" - -#. i18n: ectx: property (text), widget (QCheckBox, highlightScrolledLinesButton) -#: widgets/EditProfileScrollingPage.ui:209 -#, kde-format -msgid "Highlight the lines coming into view" -msgstr "在捲軸對側標注目前捲動的位置所看見的終端機輸出" - -#. i18n: ectx: property (text), widget (QLabel, labelReflowLines) -#: widgets/EditProfileScrollingPage.ui:222 -#, kde-format -msgid "Reflow Lines:" -msgstr "重新捲動:" - #. i18n: ectx: property (text), widget (QCheckBox, reflowLinesButton) -#: widgets/EditProfileScrollingPage.ui:232 +#: widgets/EditProfileScrollingPage.ui:251 #, kde-format msgid "Reflow lines when terminal resizes" msgstr "調整視窗大小後重新捲動排版" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerColor) -#: widgets/EditProfileScrollingPage.ui:239 +#. i18n: ectx: property (text), widget (QLabel, labelSize) +#: widgets/EditProfileScrollingPage.ui:280 #, kde-format -msgid "Color of scrollbar markers:" -msgstr "捲軸列標記的顏色:" +msgid "Scrollbar position:" +msgstr "捲動條位置:" -#. i18n: ectx: property (text), widget (QLabel, labelMarkerSize) -#: widgets/EditProfileScrollingPage.ui:250 +#. i18n: ectx: property (text), widget (QLabel, lableSearchHighlighterOpacity) +#: widgets/EditProfileScrollingPage.ui:290 #, kde-format -msgid "Size of each marker (as a percentage of scrollbar length):" -msgstr "標記的大小(單位為捲軸列長度的百分比):" - -#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, markerSizeWidget) -#: widgets/EditProfileScrollingPage.ui:266 -#, no-c-format, kde-format -msgid " %" -msgstr " %" +msgid "Search highlighting line opacity:" +msgstr "搜尋時突顯行的不透明度:" #. i18n: ectx: property (title), widget (QGroupBox, groupBox_5) #: widgets/EditProfileTabsPage.ui:43 @@ -5092,8 +5356,8 @@ msgid "" "choose a huge value, your system may run out of free RAM and cause serious " "issues with your system." msgstr "" -"當使用此選項時,捲軸的資料將會儲存至 RAM 中。若您選擇一個很大的值,您的系統可" -"能會耗盡剩餘的 RAM 並可能造成嚴重的問題。" +"當使用此選項時,回捲歷史資料將會儲存至 RAM 中。若您選擇一個很大的值,您的系統" +"可能會耗盡剩餘的 RAM 並可能造成嚴重的問題。" #: widgets/HistorySizeWidget.cpp:69 #, kde-kuit-format @@ -5105,9 +5369,9 @@ msgid "" "Konsole → Temporary Files to select the location of the temporary " "files." msgstr "" -"使用此選項的話,回捲資料會以不加密的方式寫入暫存檔中。這些暫存檔會在 Konsole " -"正常關閉時被刪除。使用「設定」→「設定 Konsole」→「暫存檔」來選擇暫存檔的位置。" +"當使用此選項時,回捲歷史資料會以不加密的方式寫入暫存檔中。這些暫存檔會在 " +"Konsole 正常關閉時被刪除。使用「設定」→「設定 Konsole」→「暫存" +"檔」來選擇暫存檔的位置。" #. i18n: ectx: property (toolTip), widget (QRadioButton, fixedSizeHistoryButton) #: widgets/HistorySizeWidget.ui:60 @@ -5153,115 +5417,115 @@ msgctxt "Do not save any lines to the scrollback history" msgid "&None" msgstr "無(&N)" -#: widgets/IncrementalSearchBar.cpp:49 +#: widgets/IncrementalSearchBar.cpp:50 #, kde-format msgctxt "@label:textbox" msgid "Find..." msgstr "尋找…" -#: widgets/IncrementalSearchBar.cpp:51 +#: widgets/IncrementalSearchBar.cpp:52 #, kde-format msgctxt "@info:tooltip" msgid "Enter the text to search for here" msgstr "在此輸入要搜尋的文字" -#: widgets/IncrementalSearchBar.cpp:75 +#: widgets/IncrementalSearchBar.cpp:74 #, kde-format msgctxt "@action:button Go to the next phrase" msgid "Next" msgstr "下一個" -#: widgets/IncrementalSearchBar.cpp:78 +#: widgets/IncrementalSearchBar.cpp:77 #, kde-format msgctxt "@info:tooltip" msgid "Find the next match for the current search phrase" msgstr "尋找下一筆符合的結果" -#: widgets/IncrementalSearchBar.cpp:85 +#: widgets/IncrementalSearchBar.cpp:84 #, kde-format msgctxt "@action:button Go to the previous phrase" msgid "Previous" -msgstr "前一個" +msgstr "上一個" -#: widgets/IncrementalSearchBar.cpp:87 +#: widgets/IncrementalSearchBar.cpp:86 #, kde-format msgctxt "@info:tooltip" msgid "Find the previous match for the current search phrase" -msgstr "尋找前一筆符合的結果" +msgstr "尋找上一筆符合的結果" #: widgets/IncrementalSearchBar.cpp:102 #, kde-format -msgctxt "@info:tooltip" -msgid "Display the options menu" -msgstr "顯示選項選單" - -#: widgets/IncrementalSearchBar.cpp:109 -#, kde-format -msgctxt "@info:tooltip" -msgid "Close the search bar" -msgstr "關閉搜尋列" - -#: widgets/IncrementalSearchBar.cpp:119 -#, kde-format -msgctxt "@item:inmenu" +msgctxt "@action:button" msgid "Case sensitive" msgstr "區分大小寫" -#: widgets/IncrementalSearchBar.cpp:121 +#: widgets/IncrementalSearchBar.cpp:103 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether the search is case sensitive" msgstr "設定搜尋時是否要區分大小寫" -#: widgets/IncrementalSearchBar.cpp:124 +#: widgets/IncrementalSearchBar.cpp:114 +#, kde-format +msgctxt "@info:tooltip" +msgid "Display the options menu" +msgstr "顯示選項選單" + +#: widgets/IncrementalSearchBar.cpp:121 +#, kde-format +msgctxt "@info:tooltip" +msgid "Close the search bar" +msgstr "關閉搜尋列" + +#: widgets/IncrementalSearchBar.cpp:131 #, kde-format msgctxt "@item:inmenu" msgid "Match regular expression" msgstr "符合正則表達式" -#: widgets/IncrementalSearchBar.cpp:128 +#: widgets/IncrementalSearchBar.cpp:135 #, kde-format msgctxt "@item:inmenu" msgid "Highlight all matches" msgstr "突顯所有的符合" -#: widgets/IncrementalSearchBar.cpp:130 +#: widgets/IncrementalSearchBar.cpp:137 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether matching text should be highlighted" msgstr "設定符合的文字是否要突顯出來" -#: widgets/IncrementalSearchBar.cpp:133 +#: widgets/IncrementalSearchBar.cpp:140 #, kde-format msgctxt "@item:inmenu" msgid "Search backwards" msgstr "向後尋找" -#: widgets/IncrementalSearchBar.cpp:135 +#: widgets/IncrementalSearchBar.cpp:142 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should start from the bottom" msgstr "設定是否要從底端開始搜尋" -#: widgets/IncrementalSearchBar.cpp:140 +#: widgets/IncrementalSearchBar.cpp:147 #, kde-format msgctxt "@item:inmenu" msgid "No wrap" msgstr "不從另一頭繼續" -#: widgets/IncrementalSearchBar.cpp:142 +#: widgets/IncrementalSearchBar.cpp:149 #, kde-format msgctxt "@info:tooltip" msgid "Sets whether search should stop instead of wrapping" msgstr "設定搜尋是否應該停止,而非從另一頭繼續" -#: widgets/IncrementalSearchBar.cpp:171 +#: widgets/IncrementalSearchBar.cpp:184 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the bottom" msgstr "從底端開始搜尋目前的搜尋字串" -#: widgets/IncrementalSearchBar.cpp:176 +#: widgets/IncrementalSearchBar.cpp:189 #, kde-format msgctxt "@info:tooltip" msgid "Search for the current search phrase from the top" @@ -5272,7 +5536,7 @@ msgstr "從頂端開始搜尋目前的搜尋字串" msgid "Print Shell" msgstr "列印 Shell" -#: widgets/RenameTabWidget.cpp:37 +#: widgets/RenameTabWidget.cpp:37 widgets/RenameTabWidget.cpp:40 #, kde-format msgctxt "@label:listbox No color selected" msgid "None" @@ -5310,6 +5574,12 @@ msgstr "一般分頁標題格式" msgid "Tab Co&lor:" msgstr "分頁色彩:" +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: widgets/RenameTabWidget.ui:128 +#, kde-format +msgid "&Activity Tab Color:" +msgstr "活動分頁色彩(&A):" + #: widgets/TabTitleFormatButton.cpp:21 #, c-format msgid "Program Name: %n" @@ -5403,36 +5673,62 @@ msgctxt "@info:tooltip" msgid "Restore terminal" msgstr "復原終端機" -#: widgets/ViewContainer.cpp:56 +#: widgets/ViewContainer.cpp:60 #, kde-format msgctxt "@info:tooltip" msgid "Open a new tab" msgstr "開啟新分頁" -#: widgets/ViewContainer.cpp:61 +#: widgets/ViewContainer.cpp:65 +#, kde-format +msgctxt "@info:tooltip" +msgid "Search Tabs" +msgstr "搜尋分頁" + +#: widgets/ViewContainer.cpp:70 #, kde-format msgctxt "@info:tooltip" msgid "Close this tab" msgstr "關閉本分頁" -#: widgets/ViewContainer.cpp:94 +#: widgets/ViewContainer.cpp:106 #, kde-format msgctxt "@action:inmenu" msgid "&Detach Tab" msgstr "在獨立視窗顯示分頁(&D)" -#: widgets/ViewContainer.cpp:100 +#: widgets/ViewContainer.cpp:112 #, kde-format msgctxt "@action:inmenu" msgid "&Configure or Rename Tab..." msgstr "設定或重新命名分頁(&C)…" -#: widgets/ViewContainer.cpp:105 +#: widgets/ViewContainer.cpp:117 #, kde-format msgctxt "@action:inmenu" msgid "Close Tab" msgstr "關閉分頁" +#~ msgid "Distrobox: %1" +#~ msgstr "Distrobox:%1" + +#~ msgid "Toolbox: %1" +#~ msgstr "Toolbox:%1" + +#~ msgid "" +#~ "The D-Bus methods sendText/runCommand were just used. There are security " +#~ "concerns about allowing these methods to be public. If desired, these " +#~ "methods can be changed to internal use only by re-compiling Konsole. " +#~ "

              This warning will only show once for this Konsole instance.

              " +#~ msgstr "" +#~ "使用了 D-Bus 傳送文字/執行指令。允許這些方法公開可能會造成安全性問題。如果" +#~ "需要的話,這些方法只能由重新編譯 Konsole 來變更為內部使用。

              這個警告將只" +#~ "會在這個Konsole 實體中顯示一次。

              " + +#~ msgctxt "@item:inmenu" +#~ msgid "Case sensitive" +#~ msgstr "區分大小寫" + #~ msgctxt "Do not save any lines to the scrollback history" #~ msgid "None" #~ msgstr "無" diff --git a/local/recipes/kde/konsole/source/src/Application.cpp b/local/recipes/kde/konsole/source/src/Application.cpp index 28fd9d6531..fd3be8d79b 100644 --- a/local/recipes/kde/konsole/source/src/Application.cpp +++ b/local/recipes/kde/konsole/source/src/Application.cpp @@ -65,6 +65,8 @@ void Application::populateCommandLineParser(QCommandLineParser *parser) {{QStringLiteral("separate"), QStringLiteral("nofork")}, i18nc("@info:shell", "Run in a separate process")}, {{QStringLiteral("show-menubar")}, i18nc("@info:shell", "Show the menubar, overriding the default setting")}, {{QStringLiteral("hide-menubar")}, i18nc("@info:shell", "Hide the menubar, overriding the default setting")}, + {{QStringLiteral("show-toolbars")}, i18nc("@info:shell", "Show all the toolbars, overriding the default setting")}, + {{QStringLiteral("hide-toolbars")}, i18nc("@info:shell", "Hide all the toolbars, overriding the default setting")}, {{QStringLiteral("show-tabbar")}, i18nc("@info:shell", "Show the tabbar, overriding the default setting")}, {{QStringLiteral("hide-tabbar")}, i18nc("@info:shell", "Hide the tabbar, overriding the default setting")}, {{QStringLiteral("fullscreen")}, i18nc("@info:shell", "Start Konsole in fullscreen mode")}, @@ -140,10 +142,19 @@ MainWindow *Application::newMainWindow() return window; } -void Application::createWindow(const Profile::Ptr &profile, const QString &directory) +void Application::createWindow(const Profile::Ptr &profile, const QString &directory, const ContainerInfo &container) { MainWindow *window = newMainWindow(); - window->createSession(profile, directory); + Session *session = window->createSession(profile, directory); + + // Apply inherited container context for the new window. + // Inheritance takes priority over the profile's ContainerName setting. + // ViewManager::createSession already handles in-process inheritance, + // but for new windows _pluggedController is null, so we apply it here. + if (container.isValid()) { + session->setContainerContext(container); + } + window->show(); } @@ -308,7 +319,8 @@ void Application::createTabFromArgs(MainWindow *window, const QHashsetHidden(true); + newProfile->setProperty(Profile::Name, ProfileManager::instance()->generateUniqueName()); // FIXME: the method of determining whether to use newProfile does not // scale well when we support more fields in the future @@ -339,8 +352,14 @@ void Application::createTabFromArgs(MainWindow *window, const QHashsetProperty(Profile::TabColor, color); + if (!color.isEmpty() && QColor::isValidColorName(color)) { + newProfile->setProperty(Profile::TabColor, QColor::fromString(color)); + shouldUseNewProfile = true; + } + + // For tab color support + if (!activityColor.isEmpty() && QColor::isValidColorName(activityColor)) { + newProfile->setProperty(Profile::TabActivityColor, QColor::fromString(activityColor)); shouldUseNewProfile = true; } @@ -378,7 +397,7 @@ MainWindow *Application::processWindowArgs(bool &createdNewMainWindow) { MainWindow *window = nullptr; - if (m_parser->isSet(QStringLiteral("new-tab"))) { + if (Konsole::KonsoleSettings::forceNewTabs() || m_parser->isSet(QStringLiteral("new-tab"))) { const QList list = QApplication::topLevelWidgets(); for (auto it = list.crbegin(), endIt = list.crend(); it != endIt; ++it) { window = qobject_cast(*it); @@ -399,14 +418,25 @@ MainWindow *Application::processWindowArgs(bool &createdNewMainWindow) if (m_parser->isSet(QStringLiteral("hide-menubar"))) { window->setMenuBarInitialVisibility(false); } - if (m_parser->isSet(QStringLiteral("fullscreen"))) { - window->viewFullScreen(true); + + // override default toolbars visibility + if (m_parser->isSet(QStringLiteral("show-toolbars"))) { + window->setToolBarsInitialVisibility(true); } + if (m_parser->isSet(QStringLiteral("hide-toolbars"))) { + window->setToolBarsInitialVisibility(false); + } + + // override default tabbar visibility if (m_parser->isSet(QStringLiteral("show-tabbar"))) { window->viewManager()->setNavigationVisibility(ViewManager::AlwaysShowNavigation); } else if (m_parser->isSet(QStringLiteral("hide-tabbar"))) { window->viewManager()->setNavigationVisibility(ViewManager::AlwaysHideNavigation); } + + if (m_parser->isSet(QStringLiteral("fullscreen"))) { + window->viewFullScreen(true); + } } return window; } @@ -543,7 +573,8 @@ void Application::slotActivateRequested(QStringList args, const QString & /*work m_customCommand = getCustomCommand(args); - // We can't re-use QCommandLineParser instances, it preserves earlier parsed values + // We can't reuse QCommandLineParser instances, it preserves earlier + // parsed values auto parser = new QCommandLineParser; populateCommandLineParser(parser); parser->parse(args); diff --git a/local/recipes/kde/konsole/source/src/Application.h b/local/recipes/kde/konsole/source/src/Application.h index 84bbe0aa27..afd36b573b 100644 --- a/local/recipes/kde/konsole/source/src/Application.h +++ b/local/recipes/kde/konsole/source/src/Application.h @@ -11,6 +11,7 @@ #include // Konsole +#include "containers/ContainerInfo.h" #include "konsoleapp_export.h" #include "pluginsystem/PluginManager.h" #include "profile/Profile.h" @@ -59,7 +60,7 @@ public: MainWindow *newMainWindow(); private Q_SLOTS: - void createWindow(const QExplicitlySharedDataPointer &profile, const QString &directory); + void createWindow(const QExplicitlySharedDataPointer &profile, const QString &directory, const ContainerInfo &container); void detachTerminals(MainWindow *currentWindow, ViewSplitter *splitter, const QHash &sessionsMap); void toggleBackgroundInstance(); diff --git a/local/recipes/kde/konsole/source/src/CMakeLists.txt b/local/recipes/kde/konsole/source/src/CMakeLists.txt index 81f5d4641c..8b132959be 100644 --- a/local/recipes/kde/konsole/source/src/CMakeLists.txt +++ b/local/recipes/kde/konsole/source/src/CMakeLists.txt @@ -15,6 +15,21 @@ include(ECMAddAppIcon) configure_file(config-konsole.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-konsole.h) +if(CMAKE_SYSTEM_NAME STREQUAL "Linux") + find_package(PkgConfig QUIET) + if(PkgConfig_FOUND) + pkg_check_modules(XKBCOMMON QUIET xkbcommon) + endif() + if(XKBCOMMON_FOUND) + message(STATUS "Found xkbcommon, enabling win32-input-mode support") + set(KONSOLE_HAVE_XKBCOMMON TRUE) + else() + message(STATUS "xkbcommon not found — building without win32-input-mode support") + endif() +else() + message(STATUS "Not on Linux — building without win32-input-mode support") +endif() + ### Tests if(BUILD_TESTING) find_package(Qt6Test ${QT_MIN_VERSION} CONFIG REQUIRED) @@ -22,10 +37,6 @@ if(BUILD_TESTING) add_subdirectory(tests) endif() - -### Security concerns about sendText and runCommand dbus methods being public -option(REMOVE_SENDTEXT_RUNCOMMAND_DBUS_METHODS "Konsole: remove sendText and runCommand dbus methods" OFF) - ### Security concerns about reading arbitrary screen positions option(ENABLE_DECRQCRA "Konsole: enable DEC request checksum rectangular area" OFF) @@ -65,6 +76,8 @@ endif() set(konsole_LIBS KF6::XmlGui + Qt::Multimedia + Qt::PrintSupport Qt::Xml KF6::Notifications KF6::WindowSystem @@ -77,14 +90,6 @@ set(konsole_LIBS KF6::NewStuffCore ) -if(TARGET Qt6::Multimedia) - list(APPEND konsole_LIBS Qt::Multimedia) -endif() - -if(TARGET Qt6::PrintSupport) - list(APPEND konsole_LIBS Qt::PrintSupport) -endif() - if(NOT WIN32) list(APPEND konsole_LIBS KF6::Pty @@ -103,6 +108,10 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") list(APPEND konsole_LIBS util) endif() +if(HAIKU) + list(APPEND konsole_LIBS network) # for undefined reference to `inet_aton' +endif() + # TODO: Move this to an internal folder if it grows too much. # This konsoleprivate_core is the "core" library that depends in nothing from konsole itself # so we can start to detangle the codebase. @@ -141,6 +150,7 @@ add_subdirectory(colorscheme) add_subdirectory(keyboardtranslator) add_subdirectory(characters) add_subdirectory(decoders) +add_subdirectory(containers) add_subdirectory(plugins) if(WIN32) set(ptyqt_srcs ptyqt/iptyprocess.cpp ptyqt/conptyprocess.cpp) @@ -164,6 +174,7 @@ set(konsoleprivate_SRCS ${windowadaptors_SRCS} RenameTabDialog.cpp SSHProcessInfo.cpp SaveHistoryTask.cpp + SaveHistoryAutoTask.cpp Screen.cpp ScreenWindow.cpp ScrollState.cpp @@ -174,6 +185,7 @@ set(konsoleprivate_SRCS ${windowadaptors_SRCS} ViewProperties.cpp Vt102Emulation.cpp WindowSystemInfo.cpp + WinKeys.h ZModemDialog.cpp filterHotSpots/EscapeSequenceUrlFilter.cpp filterHotSpots/EscapeSequenceUrlFilterHotSpot.cpp @@ -202,9 +214,13 @@ set(konsoleprivate_SRCS ${windowadaptors_SRCS} widgets/EditProfileDialog.cpp widgets/HistorySizeWidget.cpp widgets/IncrementalSearchBar.cpp + widgets/IncrementalSearchBarSizeGrip.cpp widgets/RenameTabWidget.cpp widgets/TabTitleFormatButton.cpp + searchtabs/SearchTabs.cpp + searchtabs/SearchTabsModel.cpp + terminalDisplay/extras/CompositeWidgetFocusWatcher.cpp terminalDisplay/extras/AutoScrollHandler.cpp terminalDisplay/extras/HighlightScrolledLines.cpp @@ -240,16 +256,13 @@ set(konsoleprivate_SRCS ${windowadaptors_SRCS} widgets/TerminalHeaderBar.cpp widgets/ViewContainer.cpp widgets/ViewSplitter.cpp + widgets/KonsolePrintManager.cpp ${dbus_xml_srcs} ../data/data.qrc ../desktop/konsole.qrc) -if(TARGET Qt6::PrintSupport) - list(APPEND konsoleprivate_SRCS widgets/KonsolePrintManager.cpp) -endif() - kconfig_add_kcfg_files(konsoleprivate_SRCS settings/KonsoleSettings.kcfgc) ### Konsole Application @@ -283,6 +296,12 @@ generate_export_header(konsoleprivate BASE_NAME konsoleprivate) find_package(ZLIB) +if(KONSOLE_HAVE_XKBCOMMON) + target_compile_definitions(konsoleprivate PUBLIC HAVE_XKBCOMMON) + target_include_directories(konsoleprivate PUBLIC ${XKBCOMMON_INCLUDE_DIRS}) + target_link_libraries(konsoleprivate PRIVATE ${XKBCOMMON_LIBRARIES}) +endif() + target_link_libraries(konsoleprivate PUBLIC konsoleprivate_core @@ -291,6 +310,7 @@ target_link_libraries(konsoleprivate konsolehelpers konsolecharacters konsoledecoders + konsolecontainers KF6::NewStuffCore KF6::NewStuffWidgets ${konsole_LIBS} @@ -300,8 +320,6 @@ target_link_libraries(konsoleprivate ) target_link_libraries(konsoleprivate - PUBLIC - Qt6::Core5Compat PRIVATE KF6::IconWidgets KF6::BookmarksWidgets @@ -417,3 +435,4 @@ if(COVERAGE_GENERATE_HTML) COMMAND ${GENHTML} --ignore-errors source --demangle-cpp -o coverage coverage.info WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) endif() + diff --git a/local/recipes/kde/konsole/source/src/Emulation.cpp b/local/recipes/kde/konsole/source/src/Emulation.cpp index dd3ff4b353..c45d24ff20 100644 --- a/local/recipes/kde/konsole/source/src/Emulation.cpp +++ b/local/recipes/kde/konsole/source/src/Emulation.cpp @@ -13,6 +13,7 @@ #include // Konsole +#include "KonsoleSettings.h" #include "Screen.h" #include "ScreenWindow.h" #include "keyboardtranslator/KeyboardTranslator.h" @@ -33,6 +34,7 @@ Emulation::Emulation() // listen for mouse status changes connect(this, &Konsole::Emulation::programRequestsMouseTracking, this, &Konsole::Emulation::setUsesMouseTracking); connect(this, &Konsole::Emulation::programBracketedPasteModeChanged, this, &Konsole::Emulation::bracketedPasteModeChanged); + connect(this, &Konsole::Emulation::programRequestedSynchronizedUpdate, this, &Konsole::Emulation::synchronizedUpdateChanged); } bool Emulation::programUsesMouseTracking() const @@ -55,6 +57,23 @@ void Emulation::bracketedPasteModeChanged(bool bracketedPasteMode) _bracketedPasteMode = bracketedPasteMode; } +void Emulation::synchronizedUpdateChanged(bool inProgress) +{ + showBulk(); + + bool old = _synchronizedUpdate; + _synchronizedUpdate = inProgress; + + if (!old && inProgress) { + static const int SYNCHRONIZED_TIMEOUT = 1000; + + _bulkTimer1.stop(); + + _bulkTimer2.setSingleShot(true); + _bulkTimer2.start(SYNCHRONIZED_TIMEOUT); + } +} + ScreenWindow *Emulation::createWindow() { auto window = new ScreenWindow(_currentScreen); @@ -129,6 +148,10 @@ void Emulation::setScreenInternal(int index) void Emulation::clearHistory() { + if (_currentScreen == _screen[0]) { + Q_EMIT updateDroppedLines(_screen[0]->getHistLines()); + } + _screen[0]->setScroll(_screen[0]->getScroll(), false); } @@ -144,29 +167,38 @@ const HistoryType &Emulation::history() const return _screen[0]->getScroll(); } -void Emulation::setCodec(const QTextCodec *codec) +bool Emulation::setCodec(const QByteArray &name) { - if (codec != nullptr) { - _codec = codec; - - _decoder.reset(_codec->makeDecoder()); - - Q_EMIT useUtf8Request(utf8()); - } else { -#if defined(Q_OS_WIN) - setCodec(Utf8Codec); -#else - setCodec(LocaleCodec); -#endif + // if we requested a specific codec, only try that one + if (!name.isEmpty()) { + QStringDecoder decoder(name.constData()); + QStringEncoder encoder(name.constData()); + if (decoder.isValid() && encoder.isValid()) { + _decoder = std::move(decoder); + _encoder = std::move(encoder); + Q_EMIT useUtf8Request(utf8()); + return true; + } + return false; } + + // try with a fallback if no name given +#if defined(Q_OS_WIN) + setCodec(Utf8Codec); +#else + setCodec(LocaleCodec); +#endif + + // fallback always works + return true; } void Emulation::setCodec(EmulationCodec codec) { if (codec == Utf8Codec) { - setCodec(QTextCodec::codecForName("utf8")); + setCodec(QStringConverter::nameForEncoding(QStringConverter::Utf8)); } else if (codec == LocaleCodec) { - setCodec(QTextCodec::codecForLocale()); + setCodec(QStringConverter::nameForEncoding(QStringConverter::System)); } } @@ -224,14 +256,19 @@ void Emulation::sendKeyEvent(QKeyEvent *ev) void Emulation::receiveData(const char *text, int length) { - Q_ASSERT(_decoder); + Q_ASSERT(_decoder.isValid()); bufferedUpdate(); // send characters to terminal emulator - const QVector chars = _decoder->toUnicode(text, length).toUcs4(); + const QString readString = _decoder.decode(QByteArrayView(text, length)); + const QVector chars = readString.toUcs4(); receiveChars(chars); + if (KonsoleSettings::listenForZModemTerminalCodes() == false) { + return; + } + // look for z-modem indicator //-- someone who understands more about z-modems that I do may be able to move // this check into the above for loop? @@ -266,9 +303,12 @@ int Emulation::lineCount() const void Emulation::showBulk() { + _synchronizedUpdate = false; + _bulkTimer1.stop(); _bulkTimer2.stop(); + Q_EMIT updateDroppedLines(_currentScreen->fastDroppedLines() + _currentScreen->droppedLines()); Q_EMIT outputChanged(); _currentScreen->resetScrolledLines(); @@ -277,6 +317,9 @@ void Emulation::showBulk() void Emulation::bufferedUpdate() { + if (_synchronizedUpdate) + return; + static const int BULK_TIMEOUT1 = 10; static const int BULK_TIMEOUT2 = 40; @@ -331,4 +374,9 @@ QSize Emulation::imageSize() const return {_currentScreen->getColumns(), _currentScreen->getLines()}; } +QList Emulation::getCurrentScreenCharacterCounts() const +{ + return _currentScreen->getCharacterCounts(); +} + #include "moc_Emulation.cpp" diff --git a/local/recipes/kde/konsole/source/src/Emulation.h b/local/recipes/kde/konsole/source/src/Emulation.h index ed1ca08c1e..99230dea30 100644 --- a/local/recipes/kde/konsole/source/src/Emulation.h +++ b/local/recipes/kde/konsole/source/src/Emulation.h @@ -10,7 +10,8 @@ // Qt #include -#include +#include +#include #include // Konsole @@ -135,14 +136,20 @@ public: */ virtual void writeToStream(TerminalCharacterDecoder *decoder, int startLine, int endLine); - /** Returns the codec used to decode incoming characters. See setCodec() */ - const QTextCodec *codec() const + /** Returns the decoder used to decode incoming characters. See setCodec() */ + const QStringDecoder &decoder() const { - return _codec; + return _decoder; + } + + /** Returns the encoder used to encode characters send to the terminal. See setCodec() */ + const QStringEncoder &encoder() const + { + return _encoder; } /** Sets the codec used to decode incoming characters. */ - void setCodec(const QTextCodec *); + bool setCodec(const QByteArray &name); /** * Convenience method. @@ -151,8 +158,13 @@ public: */ bool utf8() const { - Q_ASSERT(_codec); - return _codec->mibEnum() == 106; + Q_ASSERT(_decoder.isValid()); + const std::optional encoding = QStringConverter::encodingForName(_decoder.name()); +#if defined(Q_OS_WIN) + return encoding == QStringConverter::Utf8; +#else + return encoding == QStringConverter::Utf8 || encoding == QStringConverter::System; +#endif } /** Returns the special character used for erasing character. */ @@ -194,6 +206,8 @@ public: bool programBracketedPasteMode() const; + QList getCurrentScreenCharacterCounts() const; + public Q_SLOTS: /** Change the size of the emulation's image */ @@ -217,6 +231,8 @@ public Q_SLOTS: */ virtual void sendMouseEvent(int buttons, int column, int line, int eventType) = 0; + virtual void sendExactMouseEvent(int buttons, int x, int y, int eventType) = 0; + /** * Sends a string of characters to the foreground terminal process. * @@ -291,6 +307,8 @@ Q_SIGNALS: void programBracketedPasteModeChanged(bool bracketedPasteMode); + void programRequestedSynchronizedUpdate(bool start); + /** * Emitted when the contents of the screen image change. * The emulation buffers the updates from successive image changes, @@ -395,9 +413,11 @@ Q_SIGNALS: * to the terminal. * @p shape cursor shape * @p isBlinking if true, the cursor will be set to blink + * @p isAnimating if true, the cursor will be set to animate * @p customColor custom cursor color */ - void setCursorStyleRequest(Enum::CursorShapeEnum shape = Enum::BlockCursor, bool isBlinking = false, const QColor &customColor = {}); + void + setCursorStyleRequest(Enum::CursorShapeEnum shape = Enum::BlockCursor, bool isBlinking = false, bool isAnimating = false, const QColor &customColor = {}); /** * Emitted when reset() is called to reset the cursor style to the @@ -407,6 +427,43 @@ Q_SIGNALS: void toggleUrlExtractionRequest(); + /** + * Emitted when an OSC 777 (notification/extension) escape sequence is received. + * The params list contains the semicolon-separated values after "777;". + * + * This is a generic signal that allows external handlers to process + * OSC 777 extensions like: + * - notify;title;body - Desktop notifications (handled internally) + * - container;push;name;type - Enter container context + * - container;pop;; - Exit container context + * - precmd;; - Shell is about to show prompt + * - preexec;; - Shell is about to execute command + * + * @param params The parameters from the OSC sequence, split by semicolons + */ + void osc777Received(const QStringList ¶ms); + + /** + * Mainly used to communicate dropped lines to active autosave tasks. + * Takes into account lines dropped by Screen::addHistLine and Screen::fastAddHistLine. + * Also includes lines dropped by clearing scrollback and resetting the screen. + */ + void updateDroppedLines(int droppedLines); + + /** + * Emitted after receiving the escape sequence which asks to + * display progress. + * + * @param progress The progress in percent (0-100) + */ + void progressChanged(int progress); + + /** + * Emitted after receiving the escape sequence which asks to + * hide progress. + */ + void progressHidden(); + protected: virtual void setMode(int mode) = 0; virtual void resetMode(int mode) = 0; @@ -444,9 +501,12 @@ protected: // scrollbars are not enabled in this mode ) // decodes an incoming C-style character stream into a unicode QString using - // the current text codec. (this allows for rendering of non-ASCII characters in text files etc.) - const QTextCodec *_codec = nullptr; - std::unique_ptr _decoder; + QStringDecoder _decoder; + + // the current text encoder to send unicode to the terminal + // (this allows for rendering of non-ASCII characters in text files etc.) + QStringEncoder _encoder; + const KeyboardTranslator *_keyTranslator = nullptr; // the keyboard layout protected Q_SLOTS: @@ -472,12 +532,15 @@ private Q_SLOTS: void bracketedPasteModeChanged(bool bracketedPasteMode); + void synchronizedUpdateChanged(bool inProgress); + private: void setScreenInternal(int index); Q_DISABLE_COPY(Emulation) bool _usesMouseTracking = false; bool _bracketedPasteMode = false; + bool _synchronizedUpdate = false; QTimer _bulkTimer1{this}; QTimer _bulkTimer2{this}; bool _imageSizeInitialized = false; diff --git a/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.cpp b/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.cpp index 9f085f7b40..57d8d297df 100644 --- a/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.cpp +++ b/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.cpp @@ -8,6 +8,7 @@ #include "EscapeSequenceUrlExtractor.h" #include "Screen.h" +#include #include namespace Konsole @@ -33,14 +34,24 @@ void EscapeSequenceUrlExtractor::appendUrlText_impl(uint c) const int realCcolumn = _screen->getCursorY() + _screen->getHistLines(); _currentUrl.begin = Coordinate{realCcolumn, _screen->getCursorX() - 1}; } - const auto codepoint = static_cast(c); - _currentUrl.text += QString::fromUcs4(&codepoint, 1); + _currentUrl.text += QString::fromUcs4(&c, 1); } void EscapeSequenceUrlExtractor::setUrl(const QString &url) { - if (_allowedUriSchemas.contains(QUrl(url).scheme() + QLatin1String("://"))) { - _currentUrl.url = url; + QUrl qUrl = QUrl(url); + + if (_allowedUriSchemas.contains(qUrl.scheme() + QLatin1String("://"))) { + if (qUrl.scheme() == QLatin1String("file") && !qUrl.host().isEmpty()) { + if (qUrl.host() != QHostInfo::localHostName() && qUrl.host() != QLatin1String("localhost")) { + abortUrlInput(); + return; + } + + qUrl.setHost(QString()); + } + + _currentUrl.url = qUrl.toString(); } else { abortUrlInput(); } @@ -71,6 +82,16 @@ void EscapeSequenceUrlExtractor::clear() _history.clear(); } +void EscapeSequenceUrlExtractor::clearBetween(int loca, int loce) +{ + _history.removeIf([&](const ExtractedUrl &url) { + int beginLoc = url.begin.row * _screen->getColumns() + url.begin.col; + int endLoc = url.end.row * _screen->getColumns() + url.end.col; + + return (loca <= beginLoc && beginLoc <= loce) || (loca <= endLoc && endLoc <= loce); + }); +} + void EscapeSequenceUrlExtractor::setAllowedLinkSchema(const QStringList &schema) { _allowedUriSchemas = schema; diff --git a/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.h b/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.h index e60b58d2f6..55203c0014 100644 --- a/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.h +++ b/local/recipes/kde/konsole/source/src/EscapeSequenceUrlExtractor.h @@ -117,6 +117,9 @@ public: /* Clear all the URL's, this is triggered when the Screen is cleared. */ void clear(); + /* Clear all the URL's between the given locations. Triggered when parts of the Screen are cleared. */ + void clearBetween(int loca, int loce); + /* Iterates through all the URL's and remove the ones that are currently * out of bounds because we removed lines in the History */ diff --git a/local/recipes/kde/konsole/source/src/FontDialog.cpp b/local/recipes/kde/konsole/source/src/FontDialog.cpp index 4f5d5478e4..5adac63052 100644 --- a/local/recipes/kde/konsole/source/src/FontDialog.cpp +++ b/local/recipes/kde/konsole/source/src/FontDialog.cpp @@ -29,7 +29,6 @@ FontDialog::FontDialog(QWidget *parent, bool emoji, const QFont font) _fontChooser = new KFontChooser(onlyFixed, this); if (_emoji) { - QStringList list = KFontChooser::createFontList(0).filter(QStringLiteral("emoji"), Qt::CaseInsensitive); _fontChooser->setFont(font); _fontChooser->setFontListItems(KFontChooser::createFontList(0).filter(QStringLiteral("emoji"), Qt::CaseInsensitive)); _fontChooser->setFont(font); diff --git a/local/recipes/kde/konsole/source/src/KeyBindingEditor.cpp b/local/recipes/kde/konsole/source/src/KeyBindingEditor.cpp index 3b7bfc344d..6cb1158abd 100644 --- a/local/recipes/kde/konsole/source/src/KeyBindingEditor.cpp +++ b/local/recipes/kde/konsole/source/src/KeyBindingEditor.cpp @@ -91,7 +91,8 @@ void KeyBindingEditor::filterRows(const QString &text) QList matchedRows; - for (QTableWidgetItem *matchedItem : _ui->keyBindingTable->findItems(text, Qt::MatchContains)) { + const auto items = _ui->keyBindingTable->findItems(text, Qt::MatchContains); + for (QTableWidgetItem *matchedItem : items) { matchedRows.append(matchedItem->row()); } diff --git a/local/recipes/kde/konsole/source/src/MainWindow.cpp b/local/recipes/kde/konsole/source/src/MainWindow.cpp index ec1bbdb2cd..713898d30c 100644 --- a/local/recipes/kde/konsole/source/src/MainWindow.cpp +++ b/local/recipes/kde/konsole/source/src/MainWindow.cpp @@ -6,6 +6,7 @@ // Own #include "MainWindow.h" +#include "config-konsole.h" // Qt #include @@ -13,6 +14,10 @@ #include #include #include +#if HAVE_DBUS +#include +#include +#endif // KDE #include @@ -48,6 +53,9 @@ #include "profile/ProfileList.h" #include "profile/ProfileManager.h" +#include "containers/ContainerList.h" +#include "containers/ContainerRegistry.h" + #include "session/Session.h" #include "session/SessionController.h" #include "session/SessionManager.h" @@ -63,6 +71,8 @@ #include "terminalDisplay/TerminalDisplay.h" #include "widgets/ViewContainer.h" +#include "pluginsystem/IKonsolePlugin.h" + #include using namespace Konsole; @@ -95,6 +105,7 @@ MainWindow::MainWindow() connect(_viewManager, &Konsole::ViewManager::updateWindowIcon, this, &Konsole::MainWindow::updateWindowIcon); connect(_viewManager, &Konsole::ViewManager::newViewWithProfileRequest, this, &Konsole::MainWindow::newFromProfile); + connect(_viewManager, &Konsole::ViewManager::newViewInContainerRequest, this, &Konsole::MainWindow::newInContainer); connect(_viewManager, &Konsole::ViewManager::newViewRequest, this, &Konsole::MainWindow::newTab); connect(_viewManager, &Konsole::ViewManager::terminalsDetached, this, &Konsole::MainWindow::terminalsDetached); connect(_viewManager, &Konsole::ViewManager::activationRequest, this, &Konsole::MainWindow::activationRequest); @@ -111,6 +122,12 @@ MainWindow::MainWindow() // The "Create" flag will make it call createGUI() setupGUI(guiOpts, xmlFile); + // Hamburger menu for when the menubar is hidden + _hamburgerMenu = KStandardAction::hamburgerMenu(nullptr, nullptr, actionCollection()); + _hamburgerMenu->setShowMenuBarAction(_toggleMenuBarAction); + _hamburgerMenu->setMenuBar(menuBar()); + connect(_hamburgerMenu, &KHamburgerMenu::aboutToShowMenu, this, &MainWindow::updateHamburgerMenu); + // remember the original menu accelerators for later use rememberMenuAccelerators(); @@ -119,6 +136,7 @@ MainWindow::MainWindow() correctStandardShortcuts(); setProfileList(new ProfileList(true, this)); + setContainerList(new ContainerList(this)); // this must come at the end applyKonsoleSettings(); @@ -205,6 +223,12 @@ void MainWindow::correctStandardShortcuts() if (helpAction != nullptr) { actionCollection()->setDefaultShortcut(helpAction, QKeySequence()); } + + // replace F10 shortcut for main menu to pass F10 key to the console application + QAction *openMenu = actionCollection()->action(QStringLiteral("hamburger_menu")); + if (openMenu != nullptr) { + actionCollection()->setDefaultShortcut(openMenu, QKeySequence(Qt::SHIFT | Qt::Key_F10)); + } } ViewManager *MainWindow::viewManager() const @@ -217,6 +241,7 @@ void MainWindow::disconnectController(SessionController *controller) disconnect(controller, &Konsole::SessionController::titleChanged, this, &Konsole::MainWindow::activeViewTitleChanged); disconnect(controller, &Konsole::SessionController::rawTitleChanged, this, &Konsole::MainWindow::updateWindowCaption); disconnect(controller, &Konsole::SessionController::iconChanged, this, &Konsole::MainWindow::updateWindowIcon); + disconnect(controller, &Konsole::SessionController::progressChanged, this, &Konsole::MainWindow::updateProgress); if (auto view = controller->view()) { view->removeEventFilter(this); @@ -263,6 +288,7 @@ void MainWindow::activeViewChanged(SessionController *controller) connect(controller, &Konsole::SessionController::titleChanged, this, &Konsole::MainWindow::activeViewTitleChanged); connect(controller, &Konsole::SessionController::rawTitleChanged, this, &Konsole::MainWindow::updateWindowCaption); connect(controller, &Konsole::SessionController::iconChanged, this, &Konsole::MainWindow::updateWindowIcon); + connect(controller, &Konsole::SessionController::progressChanged, this, &Konsole::MainWindow::updateProgress); // to prevent shortcuts conflict if (auto hamburgerMenu = _hamburgerMenu->menu()) { @@ -275,8 +301,9 @@ void MainWindow::activeViewChanged(SessionController *controller) // update session title to match newly activated session activeViewTitleChanged(controller); - // Update window icon to newly activated session's icon + // Update window icon and progress to newly activated session's icon updateWindowIcon(); + updateProgress(); for (IKonsolePlugin *plugin : _plugins) { plugin->activeViewChanged(controller, this); @@ -319,6 +346,43 @@ void MainWindow::updateWindowIcon() } } +void MainWindow::updateProgress() +{ +#if HAVE_DBUS + std::optional progress; + if (KonsoleSettings::showProgressInTaskBar() && _pluggedController) { + progress = _pluggedController->progress(); + } + + if (_progress == progress) { + return; + } + + _progress = progress; + + QString launcherId; + launcherId.append(QLatin1String("application://")); + launcherId.append(qApp->desktopFileName()); + if (constexpr QLatin1String suffix{".desktop"}; !launcherId.endsWith(suffix)) { + launcherId.append(suffix); + } + + QVariantMap properties; + if (progress.has_value()) { + properties.insert(QStringLiteral("progress"), progress.value() / 100.0); + properties.insert(QStringLiteral("progress-visible"), true); + } else { + properties.insert(QStringLiteral("progress-visible"), false); + } + + QDBusMessage message = QDBusMessage::createSignal(QStringLiteral("/org/kde/konsole/UnityLauncher"), + QStringLiteral("com.canonical.Unity.LauncherEntry"), + QStringLiteral("Update")); + message.setArguments({launcherId, properties}); + QDBusConnection::sessionBus().send(message); +#endif +} + void MainWindow::setupActions() { KActionCollection *collection = actionCollection(); @@ -370,7 +434,11 @@ void MainWindow::setupActions() }); // Set up themes +#if KCOLORSCHEME_VERSION < QT_VERSION_CHECK(6, 6, 0) + auto *manager = new KColorSchemeManager(actionCollection()); +#else auto *manager = KColorSchemeManager::instance(); +#endif manager->setAutosaveChanges(true); KActionMenu *selectionMenu = KColorSchemeMenu::createMenu(manager, this); auto winColorSchemeMenu = new QAction(this); @@ -415,12 +483,6 @@ void MainWindow::setupActions() viewManager()->loadLayoutFile(); } }); - - // Hamburger menu for when the menubar is hidden - _hamburgerMenu = KStandardAction::hamburgerMenu(nullptr, nullptr, collection); - _hamburgerMenu->setShowMenuBarAction(_toggleMenuBarAction); - _hamburgerMenu->setMenuBar(menuBar()); - connect(_hamburgerMenu, &KHamburgerMenu::aboutToShowMenu, this, &MainWindow::updateHamburgerMenu); } void MainWindow::updateHamburgerMenu() @@ -462,32 +524,35 @@ void MainWindow::updateHamburgerMenu() menu->addSeparator(); - auto monitorMenu = - menu->addMenu(QIcon::fromTheme(QStringLiteral("visibility")), static_cast(factory()->container(QStringLiteral("view"), nullptr))->title()); - monitorMenu->addAction(controllerCollection->action(QStringLiteral("monitor-silence"))); - monitorMenu->addAction(controllerCollection->action(QStringLiteral("monitor-activity"))); - monitorMenu->addAction(controllerCollection->action(QStringLiteral("monitor-process-finish"))); - menu->addMenu(monitorMenu); - _hamburgerMenu->hideActionsOf(monitorMenu); + if (auto viewMenu = static_cast(factory()->container(QStringLiteral("view"), nullptr))) { + auto monitorMenu = menu->addMenu(QIcon::fromTheme(QStringLiteral("visibility")), viewMenu->title()); + monitorMenu->addAction(controllerCollection->action(QStringLiteral("monitor-silence"))); + monitorMenu->addAction(controllerCollection->action(QStringLiteral("monitor-activity"))); + monitorMenu->addAction(controllerCollection->action(QStringLiteral("monitor-process-finish"))); + menu->addMenu(monitorMenu); + _hamburgerMenu->hideActionsOf(monitorMenu); + } auto bookmarkMenu = collection->action(QStringLiteral("bookmark")); bookmarkMenu->setIcon(QIcon::fromTheme(QStringLiteral("bookmarks"))); // Icon will be removed again when the menu bar is enabled. menu->addAction(bookmarkMenu); - auto pluginsMenu = static_cast(factory()->container(QStringLiteral("plugins"), this)); - pluginsMenu->setIcon(QIcon::fromTheme(QStringLiteral("plugins"))); // Icon will be removed again when the menu bar is enabled. - menu->addMenu(pluginsMenu); + if (auto pluginsMenu = static_cast(factory()->container(QStringLiteral("plugins"), this))) { + pluginsMenu->setIcon(QIcon::fromTheme(QStringLiteral("plugins"))); // Icon will be removed again when the menu bar is enabled. + menu->addMenu(pluginsMenu); + } - auto configureMenu = - menu->addMenu(QIcon::fromTheme(QStringLiteral("configure")), static_cast(factory()->container(QStringLiteral("settings"), nullptr))->title()); - configureMenu->addAction(toolBarMenuAction()); - configureMenu->addSeparator(); - configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::SwitchApplicationLanguage))); - configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::KeyBindings))); - configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::ConfigureToolbars))); - configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::ConfigureNotifications))); - configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::Preferences))); - _hamburgerMenu->hideActionsOf(configureMenu); + if (auto settingsMenu = static_cast(factory()->container(QStringLiteral("settings"), nullptr))) { + auto configureMenu = menu->addMenu(QIcon::fromTheme(QStringLiteral("configure")), settingsMenu->title()); + configureMenu->addAction(toolBarMenuAction()); + configureMenu->addSeparator(); + configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::SwitchApplicationLanguage))); + configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::KeyBindings))); + configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::ConfigureToolbars))); + configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::ConfigureNotifications))); + configureMenu->addAction(collection->action(KStandardAction::name(KStandardAction::Preferences))); + _hamburgerMenu->hideActionsOf(configureMenu); + } _hamburgerMenu->hideActionsOf(toolBar()); } @@ -506,8 +571,15 @@ void MainWindow::applyMainWindowSettings(const KConfigGroup &config) KMainWindow::applyMainWindowSettings(config); // Override the menubar state from the config file - if (_windowArgsMenuBarVisible.enabled) { - menuBar()->setVisible(_windowArgsMenuBarVisible.showMenuBar); + if (_windowArgsShowMenuBar.has_value()) { + menuBar()->setVisible(_windowArgsShowMenuBar.value()); + } + + // Override the toolbar state from the config file + if (_windowArgsShowToolBars.has_value()) { + for (const auto &name : toolBarNames()) { + setToolBarVisible(name, _windowArgsShowToolBars.value()); + } } _toggleMenuBarAction->setChecked(menuBar()->isVisibleTo(this)); @@ -520,34 +592,43 @@ BookmarkHandler *MainWindow::bookmarkHandler() const void MainWindow::setProfileList(ProfileList *list) { - profileListChanged(list->actions()); - + _profileList = list; connect(list, &Konsole::ProfileList::profileSelected, this, &MainWindow::newFromProfile); - connect(list, &Konsole::ProfileList::actionsChanged, this, &Konsole::MainWindow::profileListChanged); + connect(list, &Konsole::ProfileList::actionsChanged, this, &Konsole::MainWindow::rebuildNewTabMenu); + rebuildNewTabMenu(); } -void MainWindow::profileListChanged(const QList &sessionActions) +void MainWindow::rebuildNewTabMenu() { - // Update the 'New Tab' KActionMenu - _newTabMenuAction->menu()->clear(); - for (QAction *sessionAction : sessionActions) { - _newTabMenuAction->menu()->addAction(sessionAction); + QMenu *menu = _newTabMenuAction->menu(); + menu->clear(); - auto setActionFontBold = [sessionAction](bool isBold) { - QFont actionFont = sessionAction->font(); - actionFont.setBold(isBold); - sessionAction->setFont(actionFont); - }; + if (_profileList) { + const auto profileActions = _profileList->actions(); + for (QAction *sessionAction : profileActions) { + menu->addAction(sessionAction); - Profile::Ptr profile = ProfileManager::instance()->defaultProfile(); - if (profile && profile->name() == sessionAction->text().remove(QLatin1Char('&'))) { - QIcon icon = KIconUtils::addOverlay(QIcon::fromTheme(profile->icon()), QIcon::fromTheme(QStringLiteral("emblem-favorite")), Qt::BottomRightCorner); - sessionAction->setIcon(icon); - setActionFontBold(true); - } else { - setActionFontBold(false); + auto setActionFontBold = [sessionAction](bool isBold) { + QFont actionFont = sessionAction->font(); + actionFont.setBold(isBold); + sessionAction->setFont(actionFont); + }; + + Profile::Ptr profile = ProfileManager::instance()->defaultProfile(); + if (profile && profile->name() == sessionAction->text().remove(QLatin1Char('&'))) { + QIcon icon = + KIconUtils::addOverlay(QIcon::fromTheme(profile->icon()), QIcon::fromTheme(QStringLiteral("emblem-favorite")), Qt::BottomRightCorner); + sessionAction->setIcon(icon); + setActionFontBold(true); + } else { + setActionFontBold(false); + } } } + + if (_containerList) { + _containerList->addContainerSections(menu); + } } QString MainWindow::activeSessionDir() const @@ -666,8 +747,26 @@ void MainWindow::setFocus() void MainWindow::newWindow() { - Profile::Ptr defaultProfile = ProfileManager::instance()->defaultProfile(); - Q_EMIT newWindowRequest(defaultProfile, activeSessionDir()); + // Use the active session's profile for container inheritance check, + // since the user might have a different profile with inheritance enabled + Profile::Ptr profile = ProfileManager::instance()->defaultProfile(); + if (_pluggedController && _pluggedController->session()) { + profile = SessionManager::instance()->sessionProfile(_pluggedController->session()); + } + + // Pass inherited container context for the new window. + // The profile's ContainerName setting is handled automatically by + // ViewManager::createSession(), but inheritance needs explicit passing + // since the new window won't have a _pluggedController yet. + ContainerInfo container; + if (profile->inheritContainerContext() && _pluggedController) { + Session *activeSession = _pluggedController->session(); + if (activeSession && activeSession->isInContainer()) { + container = activeSession->containerContext(); + } + } + + Q_EMIT newWindowRequest(profile, activeSessionDir(), container); } bool MainWindow::queryClose() @@ -715,8 +814,10 @@ bool MainWindow::queryClose() #if WITH_X11 // make sure the window is shown on current desktop and is not minimized - KX11Extras::setOnDesktop(winId(), KX11Extras::currentDesktop()); + if (KWindowSystem::isPlatformX11()) + KX11Extras::setOnDesktop(winId(), KX11Extras::currentDesktop()); #endif + int result; if (!processesRunning.isEmpty()) { @@ -856,6 +957,39 @@ void MainWindow::newFromProfile(const Profile::Ptr &profile) createSession(profile, activeSessionDir()); } +void MainWindow::newInContainer(const ContainerInfo &container) +{ + Profile::Ptr defaultProfile = ProfileManager::instance()->defaultProfile(); + Session *session = createSession(defaultProfile, activeSessionDir()); + if (session) { + // Always set the container context: a valid ContainerInfo enters + // that container, an invalid one (host selected) clears any + // auto-applied default from the profile. + session->setContainerContext(container); + } +} + +void MainWindow::setContainerList(ContainerList *list) +{ + if (_containerList) { + disconnect(_containerList, &ContainerList::containerSelected, this, &MainWindow::newInContainer); + } + + _containerList = list; + connect(list, &ContainerList::containerSelected, this, &MainWindow::newInContainer); + + // Refresh container data whenever the menu is about to show, + // then rebuild so the user always sees up-to-date containers + connect(_newTabMenuAction->menu(), &QMenu::aboutToShow, this, [this]() { + if (_containerList) { + _containerList->refreshContainers(); + } + rebuildNewTabMenu(); + }); + + rebuildNewTabMenu(); +} + void MainWindow::showManageProfilesDialog() { showSettingsDialog(true); @@ -868,7 +1002,8 @@ void MainWindow::showSettingsDialog(const bool showProfilePage) if (confDialog != nullptr) { if (showProfilePage) { - for (auto page : confDialog->findChildren()) { + const auto items = confDialog->findChildren(); + for (const auto page : items) { if (page->name().contains(profilePageName)) { confDialog->setCurrentPage(page); break; @@ -936,6 +1071,7 @@ void MainWindow::applyKonsoleSettings() setAutoSaveSettings(); updateWindowCaption(); + updateProgress(); } void MainWindow::activateMenuBar() @@ -987,8 +1123,12 @@ void MainWindow::setBlur(bool blur) void MainWindow::setMenuBarInitialVisibility(bool showMenuBar) { - _windowArgsMenuBarVisible.enabled = true; - _windowArgsMenuBarVisible.showMenuBar = showMenuBar; + _windowArgsShowMenuBar = showMenuBar; +} + +void MainWindow::setToolBarsInitialVisibility(bool showToolbars) +{ + _windowArgsShowToolBars = showToolbars; } void MainWindow::setRemoveWindowTitleBarAndFrame(bool frameless) @@ -1116,6 +1256,16 @@ bool MainWindow::focusNextPrevChild(bool v) return QMainWindow::focusNextPrevChild(v); } +QWidget *MainWindow::createContainer(QWidget *parent, int index, const QDomElement &element, QAction *&containerAction) +{ + // ensure we don't have toolbar accelerators that clash with other stuff + QWidget *createdContainer = KXmlGuiWindow::createContainer(parent, index, element, containerAction); + if (element.tagName() == QLatin1String("ToolBar")) { + KAcceleratorManager::setNoAccel(createdContainer); + } + return createdContainer; +} + void MainWindow::saveNewToolbarConfig() { KXmlGuiWindow::saveNewToolbarConfig(); diff --git a/local/recipes/kde/konsole/source/src/MainWindow.h b/local/recipes/kde/konsole/source/src/MainWindow.h index 990904d659..f310b3ade4 100644 --- a/local/recipes/kde/konsole/source/src/MainWindow.h +++ b/local/recipes/kde/konsole/source/src/MainWindow.h @@ -13,16 +13,16 @@ #include #include +// STL +#include + // KDE #include // Konsole -#include "widgets/ViewSplitter.h" - -#include "pluginsystem/IKonsolePlugin.h" - #include "konsoleapp_export.h" +#include #include class KActionMenu; @@ -33,11 +33,16 @@ namespace Konsole { class ViewManager; class ViewProperties; +class ViewSplitter; +class TerminalDisplay; class Session; class SessionController; class Profile; class ProfileList; +class ContainerList; +class IKonsolePlugin; class BookmarkHandler; +struct ContainerInfo; /** * The main window. This contains the menus and an area which contains the terminal displays. @@ -93,6 +98,11 @@ public: */ void setMenuBarInitialVisibility(bool showMenuBar); + /** + * Set the initial visibility of the toolbars. + */ + void setToolBarsInitialVisibility(bool showToolbars); + /** * @brief Set the frameless state * @@ -126,8 +136,9 @@ Q_SIGNALS: * @param directory Initial working directory for the new window or empty * if the default working directory associated with the profile should * be used. + * @param container Container context to inherit, or invalid ContainerInfo if none. */ - void newWindowRequest(const QExplicitlySharedDataPointer &profile, const QString &directory); + void newWindowRequest(const QExplicitlySharedDataPointer &profile, const QString &directory, const ContainerInfo &container); /** * Emitted when a view for one session is detached from this window @@ -149,6 +160,9 @@ protected: // reimplemented from QWidget bool focusNextPrevChild(bool next) override; + // reimplemented from KXMLGUIBuilder + QWidget *createContainer(QWidget *parent, int index, const QDomElement &element, QAction *&containerAction) override; + protected Q_SLOTS: void saveNewToolbarConfig() override; @@ -160,21 +174,26 @@ private Q_SLOTS: void showSettingsDialog(bool showProfilePage = false); void showShortcutsDialog(); void newFromProfile(const QExplicitlySharedDataPointer &profile); + void newInContainer(const ContainerInfo &container); void activeViewChanged(SessionController *controller); void disconnectController(SessionController *controller); void activeViewTitleChanged(ViewProperties *); - void profileListChanged(const QList &sessionActions); + void rebuildNewTabMenu(); void configureNotifications(); void setBlur(bool blur); void updateWindowIcon(); void updateWindowCaption(); + void updateProgress(); void openUrls(const QList &urls); // Sets the list of profiles to be displayed under the "New Tab" action void setProfileList(ProfileList *list); + // Sets up the container submenu in the "New Tab" dropdown + void setContainerList(ContainerList *list); + void applyKonsoleSettings(); // Ask the window manager to show this application window @@ -218,17 +237,19 @@ private: KToggleAction *_toggleMenuBarAction; KActionMenu *_newTabMenuAction; KHamburgerMenu *_hamburgerMenu; + ContainerList *_containerList = nullptr; + ProfileList *_profileList = nullptr; QPointer _pluggedController; std::vector _plugins; QList _pluginsActions; + std::optional _progress; bool _blurEnabled = false; bool _firstShowEvent = true; - struct { - bool enabled = false; // indicates that we got a command line argument for menubar - bool showMenuBar = true; - } _windowArgsMenuBarVisible; + // indicates that we got a command line argument that overwrites showing/hidding + std::optional _windowArgsShowMenuBar; + std::optional _windowArgsShowToolBars; }; } diff --git a/local/recipes/kde/konsole/source/src/Part.cpp b/local/recipes/kde/konsole/source/src/Part.cpp index ec0c005b55..5cb2a4d7f0 100644 --- a/local/recipes/kde/konsole/source/src/Part.cpp +++ b/local/recipes/kde/konsole/source/src/Part.cpp @@ -8,6 +8,7 @@ #include "Part.h" // Qt +#include #include #include #include @@ -19,12 +20,12 @@ #include #include #include -#include // Konsole #include "Emulation.h" #include "KonsoleSettings.h" #include "ViewManager.h" +#include "konsoledebug.h" #include "profile/ProfileManager.h" #include "session/SessionController.h" #include "session/SessionManager.h" @@ -190,6 +191,11 @@ QVariant Part::profileProperty(const QString &profileProperty) const return SessionManager::instance()->sessionProfile(activeSession())->property(p); } +void Part::setContextMenuAdditionalActions(const QList &extension) +{ + _viewManager->setContextMenuAdditionalActions(extension); +} + QStringList Part::availableProfiles() const { return ProfileManager::instance()->availableProfileNames(); @@ -203,7 +209,8 @@ QString Part::currentProfileName() const bool Part::setCurrentProfile(const QString &profileName) { Profile::Ptr profile; - for (auto p : ProfileManager::instance()->allProfiles()) { + const auto profiles = ProfileManager::instance()->allProfiles(); + for (const auto& p : profiles) { if (p->name() == profileName) { profile = p; break; @@ -229,6 +236,19 @@ void Part::createSession(const QString &profileName, const QString &directory) Session *session = SessionManager::instance()->createSession(profile); + // Inherit container context from active session if enabled in profile + if (profile->inheritContainerContext() && _pluggedController) { + Session *activeSession = _pluggedController->session(); + if (activeSession && activeSession->isInContainer()) { + session->setContainerContext(activeSession->containerContext()); + } else { + qDebug(KonsoleDebug) << "Active session is not in a container, cannot inherit container context."; + } + } else { + qDebug(KonsoleDebug) << "Not inheriting container context because" + << (profile->inheritContainerContext() ? "no plugged controller." : "inheritance is disabled in profile."); + } + // override the default directory specified in the profile if (!directory.isEmpty() && profile->startInCurrentSessionDir()) { session->setInitialWorkingDirectory(directory); diff --git a/local/recipes/kde/konsole/source/src/Part.h b/local/recipes/kde/konsole/source/src/Part.h index 22d2976a78..9f27a758a7 100644 --- a/local/recipes/kde/konsole/source/src/Part.h +++ b/local/recipes/kde/konsole/source/src/Part.h @@ -28,7 +28,7 @@ class ViewManager; class ViewProperties; /** - * A re-usable terminal emulator component using the KParts framework which can + * A reusable terminal emulator component using the KParts framework which can * be used to embed terminal emulators into other applications. */ class Part : public KParts::ReadOnlyPart, public TerminalInterface @@ -71,6 +71,8 @@ public: /** Reimplemented from TerminalInterfaceV2 */ QVariant profileProperty(const QString &profileProperty) const override; + Q_INVOKABLE void setContextMenuAdditionalActions(const QList &extension); + public Q_SLOTS: /** * creates and run a session using the specified profile and directory diff --git a/local/recipes/kde/konsole/source/src/ProcessInfo.cpp b/local/recipes/kde/konsole/source/src/ProcessInfo.cpp index e42055ea61..8cede8e0f7 100644 --- a/local/recipes/kde/konsole/source/src/ProcessInfo.cpp +++ b/local/recipes/kde/konsole/source/src/ProcessInfo.cpp @@ -11,6 +11,7 @@ #include "NullProcessInfo.h" #include "ProcessInfo.h" #include "UnixProcessInfo.h" +#include "konsoledebug.h" // Unix #ifndef Q_OS_WIN @@ -26,6 +27,7 @@ // Qt #include #include +#include #include #include #include @@ -33,6 +35,7 @@ // KDE #include +#include #include #include @@ -411,7 +414,10 @@ public: } if (_createdAppCGroupPath.isEmpty() && !_cGroupCreationFailed) { - _cGroupCreationFailed = KonsoleSettings::enableMemoryMonitoring() && !initCGroupHierachy(pid); + _cGroupCreationFailed = !initCGroupHierachy(pid); + if (KonsoleSettings::enableMemoryMonitoring() && !_cGroupCreationFailed) { + setUnitMemLimit(KonsoleSettings::memoryLimitValue()); + } return; } @@ -602,10 +608,20 @@ private: return ok; } - QDBusMessage callSmdDBus(const QString &objectPath, const QString &interfaceName, const QString &methodName, const QList &args) + QDBusMessage callSmdDBus(const QString &objectPath, + const QString &interfaceName, + const QString &methodName, + const QList &args, + const QString &interfacePrefix = QString{}) { const QString service(QStringLiteral("org.freedesktop.systemd1")); - const QString interface(service + QLatin1Char('.') + interfaceName); + QString interface; + if (interfacePrefix.isEmpty()) { + interface = service + u"." + interfaceName; + } else { + interface = interfacePrefix + u"." + interfaceName; + } + auto methodCall = QDBusMessage::createMethodCall(service, objectPath, interface, methodName); methodCall.setArguments(args); @@ -618,9 +634,9 @@ private: qDBusRegisterMetaType(); qDBusRegisterMetaType>(); qDBusRegisterMetaType(); + const pid_t selfPid = getpid(); const QString managerObjPath(QStringLiteral("/org/freedesktop/systemd1")); - const QString appUnitName(QStringLiteral("transientKonsole.scope")); // check if systemd dbus services exist if (!QDBusConnection::sessionBus().interface()->isServiceRegistered(QStringLiteral("org.freedesktop.systemd1"))) { @@ -628,11 +644,14 @@ private: } // get current application cgroup path - const QString oldAppCGroupPath(getProcCGroup(getpid())); + const QString oldAppCGroupPath(getProcCGroup(selfPid)); + + auto appUnitName = QStringLiteral("app-%1-%2.scope").arg(QGuiApplication::desktopFileName()).arg(selfPid); + qCDebug(KonsoleDebug) << "Creating scope" << appUnitName; // create application unit VariantList properties; - const QList mainPid({static_cast(getpid())}); + const QList mainPid({static_cast(selfPid)}); properties.append(VariantPair({QStringLiteral("Delegate"), QDBusVariant(QVariant::fromValue(true))})); properties.append(VariantPair({QStringLiteral("ManagedOOMMemoryPressure"), QDBusVariant(QVariant::fromValue(QStringLiteral("kill")))})); @@ -643,14 +662,15 @@ private: } // get created app cgroup path - while (getProcCGroup(getpid()) == oldAppCGroupPath) { - QThread::msleep(100); // wait for new unit to be created + QString newAppCGroupPath = getProcCGroup(selfPid); + if (newAppCGroupPath == oldAppCGroupPath) { + return false; } - _createdAppCGroupPath = getProcCGroup(getpid()); + _createdAppCGroupPath = newAppCGroupPath; // create sub cgroups - if (!createCGroup(QStringLiteral("main.scope"), getpid()) || !createCGroup(QStringLiteral("tab(%1).scope").arg(pid), pid)) { + if (!createCGroup(QStringLiteral("main.scope"), selfPid) || !createCGroup(QStringLiteral("tab(%1).scope").arg(pid), pid)) { return false; } @@ -675,7 +695,7 @@ private: appCGroupSTContsFile.write(contsToEnable.toLocal8Bit()); - return setUnitMemLimit(KonsoleSettings::memoryLimitValue()); + return true; } QString getProcCGroup(const int pid) @@ -689,18 +709,52 @@ private: } const QString data = QString::fromUtf8(cGroupFile.readAll()); + const qsizetype lastColonPos = data.lastIndexOf(QLatin1Char(':')); + if (lastColonPos < 0) { + return QString(); + } - const QString cGroupPath(data.mid(data.lastIndexOf(QLatin1Char(':')) + 1)); - - return QString(QStringLiteral("/sys/fs/cgroup") + cGroupPath).trimmed(); + QStringView cGroupPath(QStringView(data).mid(lastColonPos + 1).trimmed()); + return QString(QStringLiteral("/sys/fs/cgroup") + cGroupPath); } bool createSystemdUnit(const QString &name, const VariantList &propList) { - const QList args({name, QStringLiteral("fail"), QVariant::fromValue(propList), QVariant::fromValue(EmptyArray())}); + using namespace Qt::StringLiterals; - return callSmdDBus(QStringLiteral("/org/freedesktop/systemd1"), QStringLiteral("Manager"), QStringLiteral("StartTransientUnit"), args).type() - != QDBusMessage::ErrorMessage; + const QList args({name, u"fail"_s, QVariant::fromValue(propList), QVariant::fromValue(EmptyArray())}); + + auto message = callSmdDBus(u"/org/freedesktop/systemd1"_s, u"Manager"_s, u"StartTransientUnit"_s, args); + if (message.type() == QDBusMessage::ErrorMessage) { + return false; + } + + auto reply = QDBusReply(message); + if (!reply.isValid()) { + return false; + } + + auto path = reply.value(); + + // Wait for the job to finish + // We really should be listening for the "JobRemoved" signal of systemd's Manager object, + // but that is hard as it makes things async, so instead just wait for the job object to + // disappear and if it does, assume the job finished successfully. + int tries = 10; + bool jobExists = true; + while (tries > 0) { + const auto jobArgs = QList{u"org.freedesktop.systemd1.Job"_s, u"State"_s}; + auto jobReply = callSmdDBus(path.path(), u"Properties"_s, u"Get"_s, jobArgs, u"org.freedesktop.DBus"_s); + if (jobReply.type() == QDBusMessage::ErrorMessage) { + jobExists = false; + break; + } + + QThread::sleep(std::chrono::milliseconds(10)); + tries--; + } + + return !jobExists; } bool createCGroup(const QString &name, int initialPid) @@ -734,6 +788,85 @@ private: QString LinuxProcessInfo::_createdAppCGroupPath = QString(); bool LinuxProcessInfo::_cGroupCreationFailed = false; +class FlatpakProcessInfo : public ProcessInfo +{ +public: + FlatpakProcessInfo(int pid, QByteArrayView tty) + : ProcessInfo(pid) + { + QProcess proc; + proc.setProgram(QStringLiteral("ps")); + proc.setArguments({ + QStringLiteral("-o"), + QStringLiteral("%U\t%p\t%c"), + QStringLiteral("--tty"), + QString::fromLatin1(tty.data()), + QStringLiteral("--no-headers"), + }); + + KSandbox::startHostProcess(proc, QProcess::ReadOnly); + + proc.waitForStarted(); + proc.waitForFinished(); + + const QString out = QString::fromUtf8(proc.readAllStandardOutput()); + for (QStringView line : QStringTokenizer(out, u'\n', Qt::SkipEmptyParts)) { + using Container = QVarLengthArray; + const Container tokens = QStringTokenizer(line, u'\t', Qt::SkipEmptyParts).toContainer(); + if (tokens[1].toInt() == pid) { + setUserName(tokens[0].trimmed().toString()); + setPid(tokens[1].trimmed().toInt()); + setName(tokens[2].trimmed().toString()); + } + } + } + + void readProcessInfo(int) override + { + /* done in ctor */ + } + + bool readProcessName(int) override + { + return true; + } + + bool readCurrentDir(int) override + { + bool ok = false; + QString pidString = QString::number(pid(&ok)); + if (!ok) { + return false; + } + + QProcess proc; + proc.setProgram(QStringLiteral("pwdx")); + proc.setArguments({pidString}); + KSandbox::startHostProcess(proc, QProcess::ReadOnly); + if (proc.waitForStarted() && proc.waitForFinished()) { + proc.setReadChannel(QProcess::StandardOutput); + char buffer[4096]; + int readCount = proc.readLine(buffer, sizeof(buffer)); + auto line = readCount > 0 ? QByteArrayView(buffer, readCount).trimmed() : QByteArrayView(); + if (int colon = line.indexOf(": "); colon != -1) { + setCurrentDir(QString::fromUtf8(line.mid(colon + 2))); + return true; + } + } + return false; + } + + bool readArguments(int) override + { + return false; + } + + void readUserName(void) override + { + /* done in ctor */ + } +}; + #elif defined(Q_OS_FREEBSD) class FreeBSDProcessInfo : public UnixProcessInfo { @@ -1258,11 +1391,19 @@ private: }; #endif -ProcessInfo *ProcessInfo::newInstance(int pid, int sessionPid) +ProcessInfo *ProcessInfo::newInstance(int pid, int sessionPid, QByteArrayView tty) { ProcessInfo *info; #if defined(Q_OS_LINUX) - info = new LinuxProcessInfo(pid, sessionPid); + if (KSandbox::isFlatpak()) { + if (tty.isEmpty()) { + info = new NullProcessInfo(pid); + } else { + info = new FlatpakProcessInfo(pid, tty); + } + } else { + info = new LinuxProcessInfo(pid, sessionPid); + } #elif defined(Q_OS_SOLARIS) info = new SolarisProcessInfo(pid); #elif defined(Q_OS_MACOS) @@ -1272,7 +1413,6 @@ ProcessInfo *ProcessInfo::newInstance(int pid, int sessionPid) #elif defined(Q_OS_OPENBSD) info = new OpenBSDProcessInfo(pid); #else - Q_UNUSED(sessionPid); info = new NullProcessInfo(pid); #endif info->readProcessInfo(pid); diff --git a/local/recipes/kde/konsole/source/src/ProcessInfo.h b/local/recipes/kde/konsole/source/src/ProcessInfo.h index d100ae352a..2676e920e2 100644 --- a/local/recipes/kde/konsole/source/src/ProcessInfo.h +++ b/local/recipes/kde/konsole/source/src/ProcessInfo.h @@ -68,8 +68,9 @@ public: * @param pid The pid of the process to examine * @param sessionPid -1 if examined process is session process, * else will be pid of session process of the tab housing examined process + * @param tty the current tty, used by flatpak */ - static ProcessInfo *newInstance(int pid, int sessionPid = -1); + static ProcessInfo *newInstance(int pid, int sessionPid = -1, QByteArrayView tty = QByteArrayView()); virtual ~ProcessInfo() { diff --git a/local/recipes/kde/konsole/source/src/Pty.cpp b/local/recipes/kde/konsole/source/src/Pty.cpp index b22d435d82..a5d494cae5 100644 --- a/local/recipes/kde/konsole/source/src/Pty.cpp +++ b/local/recipes/kde/konsole/source/src/Pty.cpp @@ -23,9 +23,34 @@ // KDE #include +#include using Konsole::Pty; +static int getShellProcessId(QLatin1String tty) +{ + if (!KSandbox::isFlatpak()) { + qFatal("Shouldn't be called in non flatpak world"); + } + QProcess proc; + proc.setProgram(QStringLiteral("ps")); + proc.setArguments({QStringLiteral("-o"), QStringLiteral("pid"), QStringLiteral("-t"), QStringLiteral("%1").arg(tty), QStringLiteral("--no-headers")}); + KSandbox::startHostProcess(proc, QProcess::ReadOnly); + if (proc.waitForStarted() && proc.waitForFinished()) { + proc.setReadChannel(QProcess::StandardOutput); + char buffer[256]; + int readCount = proc.readLine(buffer, sizeof(buffer)); + auto line = readCount > 0 ? QByteArrayView(buffer, readCount).trimmed() : QByteArrayView(); + bool ok; + auto pid = line.toInt(&ok); + if (ok) { + return pid; + } + } + qWarning("Unable to get shell process id"); + return 0; +} + Pty::Pty(QObject *aParent) : Pty(-1, aParent) { @@ -59,11 +84,11 @@ Pty::Pty(int masterFd, QObject *aParent) _windowWidth = 0; _windowHeight = 0; _eraseChar = 0; - _xonXoff = true; + _xon = true; _utf8 = true; setEraseChar(_eraseChar); - setFlowControlEnabled(_xonXoff); + setFlowControlEnabled(_xon); setUtf8Mode(_utf8); setWindowSize(_windowColumns, _windowLines, _windowWidth, _windowHeight); @@ -122,15 +147,18 @@ QSize Pty::pixelSize() const void Pty::setFlowControlEnabled(bool enable) { - _xonXoff = enable; + // Only set IXON flow control ^S ^Q capabilities on the master + // side. IXOFF flow control is not used by PTYs, that's for + // hardware terminals such as those working over RS232. + _xon = enable; if (pty()->masterFd() >= 0) { struct ::termios ttmode; pty()->tcGetAttr(&ttmode); if (enable) { - ttmode.c_iflag |= (IXOFF | IXON); + ttmode.c_iflag |= IXON; } else { - ttmode.c_iflag &= ~(IXOFF | IXON); + ttmode.c_iflag &= ~IXON; } if (!pty()->tcSetAttr(&ttmode)) { @@ -144,12 +172,10 @@ bool Pty::flowControlEnabled() const if (pty()->masterFd() >= 0) { struct ::termios ttmode; pty()->tcGetAttr(&ttmode); - // Check only IXON (flow control on output) on master fd, which corresponds to - // IXOFF (flow control on input) on slave side. return ((ttmode.c_iflag & IXON) != 0U); } else { qCDebug(KonsoleDebug) << "Unable to get flow control status, terminal not connected."; - return _xonXoff; + return _xon; } } @@ -271,6 +297,9 @@ int Pty::start(const QString &programName, const QStringList &programArguments, KProcess::start(); if (waitForStarted()) { + if (KSandbox::isFlatpak()) { + _shellProcessId = getShellProcessId(QLatin1String(pty()->ttyName())); + } return 0; } else { return -1; @@ -302,6 +331,37 @@ void Pty::closePty() int Pty::foregroundProcessGroup() const { + if (KSandbox::isFlatpak()) { + QProcess proc; + proc.setProgram(QStringLiteral("ps")); + proc.setArguments({QStringLiteral("-o"), + QStringLiteral("%p\t"), + QStringLiteral("-o"), + QStringLiteral("stat"), + QStringLiteral("--tty"), + QString::fromLatin1(pty()->ttyName()), + QStringLiteral("--no-headers")}); + + KSandbox::startHostProcess(proc, QProcess::ReadOnly); + if (proc.waitForStarted() && proc.waitForFinished()) { + while (proc.canReadLine()) { + char buffer[256]; + int readCount = proc.readLine(buffer, sizeof(buffer)); + auto line = readCount > 0 ? QByteArrayView(buffer, readCount) : QByteArrayView(); + int i = line.indexOf('\t'); + if (i == -1) { + return 0; + } + QByteArrayView pid = line.mid(0, i); + QByteArrayView stat = line.mid(i + 1); + if (stat.contains("+")) { + return pid.trimmed().toInt(); + } + } + } + return 0; + } + const int master_fd = pty()->masterFd(); if (master_fd >= 0) { @@ -319,6 +379,20 @@ int Pty::foregroundProcessGroup() const return 0; } +int Pty::shellProcessId() const +{ + return KSandbox::isFlatpak() ? _shellProcessId : processId(); +} + +int Pty::flatpakSpawnProcessId() const +{ + if (KSandbox::isFlatpak()) { + return processId(); + } + qFatal("Shouldn't be called, we are not in flatpak"); + return processId(); +} + #else // Windows backend #include "ptyqt/conptyprocess.h" @@ -345,7 +419,7 @@ Pty::Pty(int masterFd, QObject *aParent) _windowWidth = 0; _windowHeight = 0; _eraseChar = 0; - _xonXoff = true; + _xon = true; _utf8 = true; setEraseChar(_eraseChar); @@ -390,7 +464,7 @@ QSize Pty::pixelSize() const void Pty::setFlowControlEnabled(bool enable) { - _xonXoff = enable; + _xon = enable; } bool Pty::flowControlEnabled() const @@ -457,6 +531,14 @@ int Pty::foregroundProcessGroup() const return 0; } +int Pty::shellProcessId() const +{ + if (m_proc && m_proc->isAvailable()) { + return m_proc->pid(); + } + return 0; +} + #endif #include "moc_Pty.cpp" diff --git a/local/recipes/kde/konsole/source/src/Pty.h b/local/recipes/kde/konsole/source/src/Pty.h index fafda01c53..ca9649a1fb 100644 --- a/local/recipes/kde/konsole/source/src/Pty.h +++ b/local/recipes/kde/konsole/source/src/Pty.h @@ -154,18 +154,18 @@ public: */ void closePty(); + /** + * Returns the shell process id + */ + int shellProcessId() const; + + int flatpakSpawnProcessId() const; + #ifdef Q_OS_WIN - int processId() const - { - if (m_proc && m_proc->isAvailable()) { - return m_proc->pid(); - } - return 0; - } bool isRunning() const { - return processId() > 0; + return shellProcessId() > 0; } QString errorString() const @@ -235,10 +235,14 @@ private: int _windowWidth; int _windowHeight; char _eraseChar; - bool _xonXoff; + bool _xon; bool _utf8; + int _shellProcessId = 0; #ifdef Q_OS_WIN std::unique_ptr m_proc; +#else + // Use shellProcessId() instead + using ParentClass::processId; #endif }; } diff --git a/local/recipes/kde/konsole/source/src/RenameTabDialog.cpp b/local/recipes/kde/konsole/source/src/RenameTabDialog.cpp index f1ac3a1409..0cdc720c09 100644 --- a/local/recipes/kde/konsole/source/src/RenameTabDialog.cpp +++ b/local/recipes/kde/konsole/source/src/RenameTabDialog.cpp @@ -70,6 +70,11 @@ void RenameTabDialog::setColor(const QColor &color) _ui->renameTabWidget->setColor(color); } +void RenameTabDialog::setActivityColor(const QColor &color) +{ + _ui->renameTabWidget->setActivityColor(color); +} + QString RenameTabDialog::tabTitleText() const { return _ui->renameTabWidget->tabTitleText(); @@ -85,4 +90,9 @@ QColor RenameTabDialog::color() const return _ui->renameTabWidget->color(); } +QColor RenameTabDialog::activityColor() const +{ + return _ui->renameTabWidget->activityColor(); +} + #include "moc_RenameTabDialog.cpp" diff --git a/local/recipes/kde/konsole/source/src/RenameTabDialog.h b/local/recipes/kde/konsole/source/src/RenameTabDialog.h index bb567fbef9..f336dacd89 100644 --- a/local/recipes/kde/konsole/source/src/RenameTabDialog.h +++ b/local/recipes/kde/konsole/source/src/RenameTabDialog.h @@ -32,6 +32,8 @@ public: void setTabTitleText(const QString &); void setRemoteTabTitleText(const QString &); void setColor(const QColor &); + void setActivityColor(const QColor &); + QColor activityColor() const; void focusTabTitleText(); void focusRemoteTabTitleText(); diff --git a/local/recipes/kde/konsole/source/src/SaveHistoryAutoTask.cpp b/local/recipes/kde/konsole/source/src/SaveHistoryAutoTask.cpp new file mode 100644 index 0000000000..10080f488c --- /dev/null +++ b/local/recipes/kde/konsole/source/src/SaveHistoryAutoTask.cpp @@ -0,0 +1,260 @@ +/* + SPDX-FileCopyrightText: 2024 Theodore Wang + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#include "SaveHistoryAutoTask.h" + +#include +#include +#include +#include + +#include + +#include +#include +#include +#include +#include + +#include "Emulation.h" +#include "session/SessionManager.h" + +namespace Konsole +{ +QString SaveHistoryAutoTask::_saveDialogRecentURL; + +SaveHistoryAutoTask::SaveHistoryAutoTask(QObject *parent) + : SessionTask(parent) + , _droppedBytes(0) + , _bytesLines(0) + , _pendingChanges(false) +{ +} + +SaveHistoryAutoTask::~SaveHistoryAutoTask() = default; + +bool SaveHistoryAutoTask::execute() +{ + QFileDialog *dialog = new QFileDialog(QApplication::activeWindow()); + dialog->setAcceptMode(QFileDialog::AcceptSave); + + QStringList mimeTypes{QStringLiteral("text/plain")}; + dialog->setMimeTypeFilters(mimeTypes); + + KSharedConfigPtr konsoleConfig = KSharedConfig::openConfig(); + auto group = konsoleConfig->group(QStringLiteral("SaveHistory Settings")); + + if (_saveDialogRecentURL.isEmpty()) { + const auto list = group.readPathEntry("Recent URLs", QStringList()); + if (list.isEmpty()) { + dialog->setDirectory(QDir::homePath()); + } else { + dialog->setDirectoryUrl(QUrl(list.at(0))); + } + } else { + dialog->setDirectoryUrl(QUrl(_saveDialogRecentURL)); + } + + Q_ASSERT(sessions().size() == 1); + + dialog->setWindowTitle(i18n("Save Output From %1", session()->title(Session::NameRole))); + + int result = dialog->exec(); + + if (result != QDialog::Accepted) { + return false; + } + + QUrl url = (dialog->selectedUrls()).at(0); + + if (!url.isValid()) { + // UI: Can we make this friendlier? + KMessageBox::error(nullptr, i18n("%1 is an invalid URL, the output could not be saved.", url.url())); + return false; + } + + // Save selected URL for next time + _saveDialogRecentURL = url.adjusted(QUrl::RemoveFilename | QUrl::StripTrailingSlash).toString(); + group.writePathEntry("Recent URLs", _saveDialogRecentURL); + + const QString path = url.path(); + + _destinationFile.setFileName(path); + + if (!_destinationFile.open(QFile::ReadWrite)) { + KMessageBox::error(nullptr, i18n("Failed to create autosave file at %1.", url.url())); + return false; + } + + _watcher.addPath(path); + + connect(&_watcher, &QFileSystemWatcher::fileChanged, this, &SaveHistoryAutoTask::fileModified); + connect(&_timer, &QTimer::timeout, this, &SaveHistoryAutoTask::linesChanged); + connect(session()->emulation(), &Emulation::outputChanged, this, [&]() { + _pendingChanges = true; + }); + connect(session()->emulation(), &Emulation::imageSizeChanged, this, &SaveHistoryAutoTask::imageResized); + connect(session()->emulation(), &Emulation::updateDroppedLines, this, &SaveHistoryAutoTask::linesDropped); + connect(session()->emulation(), &Emulation::primaryScreenInUse, this, [&]() { + KMessageBox::error(nullptr, i18n("Stopping autosave due to switching of screens.")); + stop(); + }); + + _timer.setSingleShot(true); + + readLines(); + dialog->deleteLater(); + return true; +} + +void SaveHistoryAutoTask::fileModified() +{ + stop(); + KMessageBox::error(nullptr, i18n("Autosave file has been modified externally, preventing further autosaves.")); +} + +void SaveHistoryAutoTask::linesDropped(int linesDropped) +{ + if (linesDropped > 0) { + if (linesDropped > _bytesLines.count()) { + readLines(); + } + + if (linesDropped == _bytesLines.size()) { + _droppedBytes = _destinationFile.size(); + } else { + _droppedBytes = _bytesLines[linesDropped]; + } + + for (int i = 0; i < linesDropped; ++i) { + _bytesLines.pop_front(); + } + } +} + +void SaveHistoryAutoTask::stop() +{ + Q_EMIT completed(true); + disconnect(); + + if (autoDelete()) { + deleteLater(); + } +} + +void SaveHistoryAutoTask::imageResized(int /*rows*/, int /*columns*/) +{ + updateByteLineAnchors(); +} + +void SaveHistoryAutoTask::linesChanged() +{ + if (_pendingChanges) { + readLines(); + } else { + _timer.start(timerInterval()); + } +} + +void SaveHistoryAutoTask::readLines() +{ + if (session().isNull()) { + stop(); + return; + } + + _timer.stop(); + + if (!updateArchive()) { + stop(); + KMessageBox::error(nullptr, i18n("Failed to update autosave state on output changes.")); + return; + } + + updateByteLineAnchors(); + + _pendingChanges = false; + _timer.start(timerInterval()); +} + +bool SaveHistoryAutoTask::updateArchive() +{ + _watcher.removePath(_destinationFile.fileName()); + + QTextStream stream(&_destinationFile); + + if (!_destinationFile.resize(_droppedBytes) || !stream.seek(_destinationFile.size())) { + return false; + } + + _decoder.begin(&stream); + session()->emulation()->writeToStream(&_decoder, 0, session()->emulation()->lineCount() - 1); + _decoder.end(); + stream.flush(); + + if (stream.status() != QTextStream::Ok) { + return false; + } + + _watcher.addPath(_destinationFile.fileName()); + + return true; +} + +void SaveHistoryAutoTask::updateByteLineAnchors() +{ + if (session().isNull()) { + stop(); + return; + } + + qint64 currentByte = _droppedBytes; + QList lineLengths = session()->emulation()->getCurrentScreenCharacterCounts(); + + _bytesLines.resize(lineLengths.size()); + _destinationFile.seek(currentByte); + + for (int i = 0; i < lineLengths.size(); ++i) { + _bytesLines[i] = currentByte; + QString line; + + int lineNumChars = lineLengths[i]; + + for (int j = 0; j < lineNumChars; ++j) { + char c; + + if (!_destinationFile.getChar(&c)) { + qDebug() << "LINE " << (i + 1) << " (" << lineNumChars << ") : " << line; + qDebug() << "INVALID"; + return; + } + + line.append(QLatin1Char(c)); + } + + currentByte = _destinationFile.pos(); + qDebug() << "LINE " << (i + 1) << " (" << lineNumChars << ") : " << line; + } + + if (_destinationFile.atEnd()) + qDebug() << "VALID"; + else + qDebug() << "INVALID"; +} + +const QPointer &SaveHistoryAutoTask::session() const +{ + return sessions()[0]; +} + +int SaveHistoryAutoTask::timerInterval() const +{ + return SessionManager::instance()->sessionProfile(session().data())->property(Profile::AutoSaveInterval); +} + +} + +#include "moc_SaveHistoryAutoTask.cpp" diff --git a/local/recipes/kde/konsole/source/src/SaveHistoryAutoTask.h b/local/recipes/kde/konsole/source/src/SaveHistoryAutoTask.h new file mode 100644 index 0000000000..15d7c4857c --- /dev/null +++ b/local/recipes/kde/konsole/source/src/SaveHistoryAutoTask.h @@ -0,0 +1,119 @@ +/* + SPDX-FileCopyrightText: 2024 Theodore Wang + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef SAVEHISTORYAUTOTASK_H +#define SAVEHISTORYAUTOTASK_H + +#include +#include +#include + +#include "../decoders/PlainTextDecoder.h" +#include "konsoleprivate_export.h" +#include "session/SessionTask.h" + +namespace Konsole +{ +/** + * A task which prompts for a URL for each session and saves that session's output + * to the given URL + */ +class KONSOLEPRIVATE_EXPORT SaveHistoryAutoTask : public SessionTask +{ + Q_OBJECT + +public: + /** Constructs a new task to save session output to URLs */ + explicit SaveHistoryAutoTask(QObject *parent = nullptr); + ~SaveHistoryAutoTask() override; + + /** + * Opens a save file dialog for each session in the group and begins saving + * each session's history to the given URL. + * + * The data transfer is performed asynchronously and will continue after execute() returns. + */ + bool execute() override; + +public Q_SLOTS: + // Stops the autosave process. + void stop(); + +private Q_SLOTS: + /** + * Increases _droppedBytes using info in _bytesLines when lines + * have been dropped from the screen and history. + */ + void linesDropped(int linesDropped); + + /** + * Resets _bytesLines since the lines on the screen changes when + * the screen is resized. + */ + void imageResized(int rows, int columns); + + // Called when Emulation::outputChanged() is emitted. + void linesChanged(); + + /** + * If the QFileSystemWatcher::fileChanged() signal is emitted, + * this is called which terminates the autosave process with an error. + */ + void fileModified(); + +private: + // Reads the session output. + void readLines(); + + bool updateArchive(); + + // Updates _bytesLines. + void updateByteLineAnchors(); + + const QPointer &session() const; + + /** + * The number of milliseconds to wait after an autosave before + * checking if another is needed. + */ + int timerInterval() const; + + // File object used to store the autosaved contents. + QFile _destinationFile; + + /** + * Since the autosave process relies on the files not being modified + * externally, this keeps watch on the autosave destination file. + */ + QFileSystemWatcher _watcher; + + // Number of bytes used to accommodate dropped content in the autosave file. + qint64 _droppedBytes; + + /** + * A list of byte offsets in _destinationFile. + * Each offset corresponds to the first of a series of bytes + * containing content of a line on the emulation's current screen and history. + */ + QList _bytesLines; + + PlainTextDecoder _decoder; + + // Used to time how often the output should be re-read. + QTimer _timer; + + /** + * Determines whether the output is re-read at the end + * of the current timer internal. + */ + bool _pendingChanges; + + static QString _saveDialogRecentURL; +}; + +} + +#endif diff --git a/local/recipes/kde/konsole/source/src/SaveHistoryTask.cpp b/local/recipes/kde/konsole/source/src/SaveHistoryTask.cpp index 23e8394c75..bb2aef21b0 100644 --- a/local/recipes/kde/konsole/source/src/SaveHistoryTask.cpp +++ b/local/recipes/kde/konsole/source/src/SaveHistoryTask.cpp @@ -37,7 +37,7 @@ SaveHistoryTask::SaveHistoryTask(QObject *parent) SaveHistoryTask::~SaveHistoryTask() = default; -void SaveHistoryTask::execute() +bool SaveHistoryTask::execute() { // TODO - think about the UI when saving multiple history sessions, if there are more than two or // three then providing a URL for each one will be tedious @@ -122,7 +122,7 @@ void SaveHistoryTask::execute() std::copy_n(ColorScheme::defaultTable, TABLE_COLORS, colorTable); } - jobInfo.decoder = new HTMLDecoder(colorTable, profile->font()); + jobInfo.decoder = new HTMLDecoder(colorTable); } else { jobInfo.decoder = new PlainTextDecoder(); } @@ -134,6 +134,7 @@ void SaveHistoryTask::execute() } dialog->deleteLater(); + return true; } void SaveHistoryTask::jobDataRequested(KIO::Job *job, QByteArray &data) diff --git a/local/recipes/kde/konsole/source/src/SaveHistoryTask.h b/local/recipes/kde/konsole/source/src/SaveHistoryTask.h index d31cf884e3..69bba23c37 100644 --- a/local/recipes/kde/konsole/source/src/SaveHistoryTask.h +++ b/local/recipes/kde/konsole/source/src/SaveHistoryTask.h @@ -36,7 +36,7 @@ public: * * The data transfer is performed asynchronously and will continue after execute() returns. */ - void execute() override; + bool execute() override; private Q_SLOTS: void jobDataRequested(KIO::Job *job, QByteArray &data); diff --git a/local/recipes/kde/konsole/source/src/Screen.cpp b/local/recipes/kde/konsole/source/src/Screen.cpp index eaf4fa6e62..1b59c6151f 100644 --- a/local/recipes/kde/konsole/source/src/Screen.cpp +++ b/local/recipes/kde/konsole/source/src/Screen.cpp @@ -50,7 +50,12 @@ using namespace Konsole; #define loc(X, Y) ((Y)*_columns + (X)) #endif -const Character Screen::DefaultChar = +const Character Screen::DefaultChar = Character(' ', + CharacterColor(COLOR_SPACE_DEFAULT, DEFAULT_FORE_COLOR), + CharacterColor(COLOR_SPACE_DEFAULT, DEFAULT_BACK_COLOR), + DEFAULT_RENDITION | RE_TRANSPARENT, + 0); +const Character Screen::VisibleChar = Character(' ', CharacterColor(COLOR_SPACE_DEFAULT, DEFAULT_FORE_COLOR), CharacterColor(COLOR_SPACE_DEFAULT, DEFAULT_BACK_COLOR), DEFAULT_RENDITION, 0); Screen::Screen(int lines, int columns) @@ -62,6 +67,7 @@ Screen::Screen(int lines, int columns) , _scrolledLines(0) , _lastScrolledRegion(QRect()) , _droppedLines(0) + , _fastDroppedLines(0) , _oldTotalLines(0) , _isResize(false) , _enableReflowLines(false) @@ -285,7 +291,7 @@ int Screen::selSetSelectionEnd(int mode) } } setSelectionEnd(x, y, false); - Q_EMIT _currentTerminalDisplay->screenWindow()->selectionChanged(); + Q_EMIT currentTerminalDisplay()->screenWindow()->selectionChanged(); return 0; } @@ -633,10 +639,10 @@ void Screen::resizeImage(int new_lines, int new_columns) if (_enableReflowLines && new_columns != _columns) { int cursorLineCorrection = 0; - if (_currentTerminalDisplay) { + if (currentTerminalDisplay()) { // The 'zsh' works different from other shells when writing the command line. // It needs to identify the 'zsh' and calculate the new command line. - auto sessionController = _currentTerminalDisplay->sessionController(); + auto sessionController = currentTerminalDisplay()->sessionController(); auto terminal = sessionController->session()->foregroundProcessName(); if (terminal == QLatin1String("zsh")) { while (cursorLine + cursorLineCorrection > 0 && (linePropertiesAt(cursorLine + cursorLineCorrection).flags.f.prompt_start) == 0) { @@ -961,7 +967,7 @@ void Screen::reset(bool softReset, bool preservePrompt) _cuY = 0; if (_hasGraphics) { delPlacements(); - _currentTerminalDisplay->update(); + currentTerminalDisplay()->update(); } } else { clearEntireScreen(); @@ -1338,9 +1344,14 @@ int Screen::droppedLines() const { return _droppedLines; } +int Screen::fastDroppedLines() const +{ + return _fastDroppedLines; +} void Screen::resetDroppedLines() { _droppedLines = 0; + _fastDroppedLines = 0; } void Screen::resetScrolledLines() { @@ -1489,7 +1500,7 @@ void Screen::clearImage(int loca, int loce, char c, bool resetLineRendition) // if the character being used to clear the area is the same as the // default character, the affected _lines can simply be shrunk. - const bool isDefaultCh = (clearCh == Screen::DefaultChar); + const bool isDefaultCh = (clearCh == Screen::DefaultChar || clearCh == Screen::VisibleChar); for (int y = topLine; y <= bottomLine; ++y) { const int endCol = (y == bottomLine) ? loce % _columns : _columns - 1; @@ -1527,6 +1538,10 @@ void Screen::clearImage(int loca, int loce, char c, bool resetLineRendition) } } } + + if (_escapeSequenceUrlExtractor) { + _escapeSequenceUrlExtractor->clearBetween(loca, loce); + } } void Screen::moveImage(int dest, int sourceBegin, int sourceEnd) @@ -1629,7 +1644,7 @@ void Screen::clearEntireScreen() clearImage(loc(0, 0), loc(_columns - 1, _lines - 1), ' '); if (_hasGraphics) { delPlacements(); - _currentTerminalDisplay->update(); + currentTerminalDisplay()->update(); } } @@ -1830,31 +1845,13 @@ void Screen::setSelectionEnd(const int x, const int y, const bool trimTrailingWh } } else { size_t line = bottomRow - _history->getLines(); - const int lastColumn = (line < _lineProperties.size() && _lineProperties[line].flags.f.doublewidth) ? _columns / 2 : _columns; - const auto *data = _screenLines[line].data(); - - // This should never happen, but it's happening. this is just to gather some information - // about the crash. - // Do not let this code go to a release. - if (_screenLines.size() < line) { - QFile konsoleInfo(QStringLiteral("~/konsole_info_crash_array_out_of_bounds.txt")); - if (konsoleInfo.open(QIODevice::WriteOnly)) { - QTextStream messages(&konsoleInfo); - - messages << "_selBegin" << _selBegin << "\n"; - messages << "endPos" << endPos << "\n"; - messages << "_selBottomRight" << _selBottomRight << "\n"; - messages << "bottomRow Calculation: (_selBottomRight / _columns) = " << _selBottomRight << "/" << _columns << "\n"; - messages << "line Calculation: (bottomRow - _history->getLines()) = " << bottomRow << "-" << _history->getLines() << "\n"; - messages << "_screenLines.count()" << _screenLines.size() << "\n"; - messages << "line" << line << "\n"; - } - } - - // HACK: do not crash. - if (_screenLines.size() < line) { + // Ensure we are never out of bounds, which can happen if history->getLines is desynced + // when there is rapidly moving text. + if (line >= _screenLines.size()) { line = _screenLines.size() - 1; } + const int lastColumn = (line < _lineProperties.size() && _lineProperties[line].flags.f.doublewidth) ? _columns / 2 : _columns; + const auto *data = _screenLines[line].data(); const int length = _screenLines.at(line).count(); for (int k = bottomColumn; k < lastColumn && k < length; k++) { @@ -1890,6 +1887,7 @@ Character Screen::getCharacter(int col, int row) const _history->getCells(row, col, 1, &ch); } else { ch = Character(); + ch.rendition.f.transparent = 1; } } return ch; @@ -1901,7 +1899,7 @@ void Screen::selectReplContigious(const int x, const int y) if (_replMode == REPL_INPUT && _replModeStart <= std::pair(y, x) && std::pair(y, x) <= _replModeEnd) { setSelectionStart(_replModeStart.second, _replModeStart.first, false); setSelectionEnd(_replModeEnd.second, _replModeEnd.first, true); - Q_EMIT _currentTerminalDisplay->screenWindow()->selectionChanged(); + Q_EMIT currentTerminalDisplay()->screenWindow()->selectionChanged(); return; } int col = x; @@ -1974,7 +1972,7 @@ void Screen::selectReplContigious(const int x, const int y) } setSelectionStart(startX, startY, false); setSelectionEnd(endX, endY, true); - Q_EMIT _currentTerminalDisplay->screenWindow()->selectionChanged(); + Q_EMIT currentTerminalDisplay()->screenWindow()->selectionChanged(); } QString Screen::selectedText(const DecodingOptions options) const @@ -2091,6 +2089,78 @@ Character *Screen::getCharacterBuffer(const int size) return characterBuffer.data(); } +QList Screen::getCharacterCounts() const +{ + QList counts; + int totalLines = _history->getLines() + getLines(); + + for (int line = 0; line < totalLines; ++line) { + int count = getLineLength(line); + bool lineIsWrapped = false; + Character *characterBuffer = getCharacterBuffer(count - 1); + + Q_ASSERT(count >= 0); + + if (line < _history->getLines()) { + // safety checks + Q_ASSERT(count <= _history->getLineLen(line)); + + _history->getCells(line, 0, count, characterBuffer); + + // Exclude trailing empty cells from count and don't bother processing them further. + // See the comment on the similar case for screen lines for an explanation. + while (count > 0 && (characterBuffer[count - 1].flags & EF_REAL) == 0) { + count--; + } + + if (_history->isWrappedLine(line)) { + lineIsWrapped = true; + } + } else { + int screenLine = line - _history->getLines(); + + Q_ASSERT(screenLine <= _screenLinesSize); + + screenLine = qMin(screenLine, _screenLinesSize); + + auto *data = _screenLines[screenLine].data(); + int length = _screenLines.at(screenLine).count(); + + // Exclude trailing empty cells from count and don't bother processing them further. + // This is necessary because a newline gets added to the last line when + // the selection extends beyond the last character (last non-whitespace + // character when TrimTrailingWhitespace is true), so the returned + // count from this function must not include empty cells beyond that + // last character. + while (length > 0 && (data[length - 1].flags & EF_REAL) == 0) { + length--; + } + + if (_lineProperties.at(screenLine).flags.f.wrapped == 1) { + lineIsWrapped = true; + } + + // count cannot be any greater than length + count = qBound(0, length, count); + } + + // If the last character is wide, account for it + if (Character::width(characterBuffer[count - 1].character, _ignoreWcWidth) == 2) + count++; + + // When users ask not to preserve the linebreaks, they usually mean: + // `treat LINEBREAK as SPACE, thus joining multiple _lines into + // single line in the same way as 'J' does in VIM.` + if (_blockSelectionMode || !lineIsWrapped) { + ++count; + } + + counts.append(count); + } + + return counts; +} + int Screen::copyLineToStream(int line, int start, int count, @@ -2190,8 +2260,10 @@ int Screen::copyLineToStream(int line, } // If the last character is wide, account for it - if (Character::width(characterBuffer[count - 1].character, _ignoreWcWidth) == 2) + if (Character::width(characterBuffer[count - 1].character, _ignoreWcWidth) == 2) { + characterBuffer[count].setRightHalfOfDoubleWide(); count++; + } if (appendNewLine) { // When users ask not to preserve the linebreaks, they usually mean: @@ -2262,8 +2334,12 @@ void Screen::fastAddHistLine() // If _history size > max history size it will drop a line from _history. // We need to verify if we need to remove a URL. - if (removeLine && _escapeSequenceUrlExtractor) { - _escapeSequenceUrlExtractor->historyLinesRemoved(1); + if (removeLine) { + if (_escapeSequenceUrlExtractor) { + _escapeSequenceUrlExtractor->historyLinesRemoved(1); + } + + _fastDroppedLines++; } // Rotate left + clear the last line std::rotate(_screenLines.begin(), _screenLines.begin() + 1, _screenLines.end()); @@ -2292,7 +2368,7 @@ void Screen::addHistLine() if (newHistLines <= oldHistLines) { _droppedLines += oldHistLines - newHistLines + 1; - _currentTerminalDisplay->removeLines(oldHistLines - newHistLines + 1); + currentTerminalDisplay()->removeLines(oldHistLines - newHistLines + 1); // We removed some lines, we need to verify if we need to remove a URL. if (_escapeSequenceUrlExtractor) { _escapeSequenceUrlExtractor->historyLinesRemoved(oldHistLines - newHistLines + 1); @@ -2353,7 +2429,7 @@ void Screen::setScroll(const HistoryType &t, bool copyPreviousScroll) // As 't' can be '_history' pointer, move it to a temporary smart pointer // making _history = nullptr auto oldHistory = std::move(_history); - _currentTerminalDisplay->removeLines(oldHistory->getLines()); + currentTerminalDisplay()->removeLines(oldHistory->getLines()); t.scroll(_history); } _graphicsPlacements.clear(); @@ -2404,7 +2480,7 @@ void Screen::setReplMode(int mode) } if (mode == REPL_PROMPT) { if (_replHadOutput) { - _currentTerminalDisplay->sessionController()->notifyPrompt(); + currentTerminalDisplay()->sessionController()->notifyPrompt(); _replHadOutput = false; } } @@ -2418,18 +2494,18 @@ void Screen::setReplMode(int mode) if (mode != REPL_None) { if (!_hasRepl) { _hasRepl = true; - _currentTerminalDisplay->sessionController()->setVisible(QStringLiteral("monitor-prompt"), true); + currentTerminalDisplay()->sessionController()->setVisible(QStringLiteral("monitor-prompt"), true); } - Q_EMIT _currentTerminalDisplay->screenWindow()->selectionChanged(); // Enable copy action + Q_EMIT currentTerminalDisplay()->screenWindow()->selectionChanged(); // Enable copy action setLineProperty(LINE_PROMPT_START << (mode - REPL_PROMPT), true); } } -void Screen::setExitCode(int /*exitCode*/) +void Screen::setExitCode(int exitCode) { int y = _cuY - 1; while (y >= 0) { - _lineProperties[y].flags.f.error = 1; + _lineProperties[y].flags.f.error = (exitCode != 0); if (_lineProperties[y].flags.f.prompt_start) { return; } @@ -2476,6 +2552,7 @@ void Screen::addPlacement(QPixmap pixmap, int &cols, int row, int col, + enum TerminalGraphicsPlacement_t::source source, bool scrolling, int moveCursor, bool leaveText, @@ -2499,10 +2576,10 @@ void Screen::addPlacement(QPixmap pixmap, col = _cuX; } if (rows == -1) { - rows = (pixmap.height() - 1) / _currentTerminalDisplay->terminalFont()->fontHeight() + 1; + rows = (pixmap.height() - 1) / currentTerminalDisplay()->terminalFont()->fontHeight() + 1; } if (cols == -1) { - cols = (pixmap.width() - 1) / _currentTerminalDisplay->terminalFont()->fontWidth() + 1; + cols = (pixmap.width() - 1) / currentTerminalDisplay()->terminalFont()->fontWidth() + 1; } p->pixmap = pixmap; @@ -2517,6 +2594,7 @@ void Screen::addPlacement(QPixmap pixmap, p->scrolling = scrolling; p->X = X; p->Y = Y; + p->source = source; if (!leaveText) { eraseBlock(row, col, rows, cols); @@ -2524,7 +2602,13 @@ void Screen::addPlacement(QPixmap pixmap, addPlacement(p); int needScroll = qBound(0, row + rows - _lines, rows); if (moveCursor && scrolling && needScroll > 0) { - scrollUp(needScroll); + while (needScroll > 0) { + scrollUp(qMin(needScroll, _lines)); + if (!leaveText) { + eraseBlock(qMax(0, _lines - needScroll - 1), col, needScroll + 1, cols); + } + needScroll -= _lines; + } } if (moveCursor) { if (rows - needScroll - 1 > 0) { @@ -2663,3 +2747,13 @@ void Screen::delPlacements(int del, qint64 id, qint64 pid, int x, int y, int z) } } } + +void Screen::setCurrentTerminalDisplay(TerminalDisplay *display) +{ + _currentTerminalDisplay = display; +} + +TerminalDisplay *Screen::currentTerminalDisplay() +{ + return static_cast(_currentTerminalDisplay.data()); +} diff --git a/local/recipes/kde/konsole/source/src/Screen.h b/local/recipes/kde/konsole/source/src/Screen.h index 37dafef14a..ab00f775d7 100644 --- a/local/recipes/kde/konsole/source/src/Screen.h +++ b/local/recipes/kde/konsole/source/src/Screen.h @@ -13,6 +13,7 @@ // Qt #include +#include #include #include #include @@ -44,6 +45,7 @@ struct TerminalGraphicsPlacement_t { int z, X, Y, col, row, cols, rows; qreal opacity; bool scrolling; + enum source { Sixel, iTerm, Kitty } source; }; namespace Konsole @@ -634,6 +636,8 @@ public: */ int droppedLines() const; + int fastDroppedLines() const; + /** * Resets the count of the number of lines dropped from * the history. @@ -646,15 +650,9 @@ public: */ static void fillWithDefaultChar(Character *dest, int count); - void setCurrentTerminalDisplay(TerminalDisplay *display) - { - _currentTerminalDisplay = display; - } + void setCurrentTerminalDisplay(TerminalDisplay *display); - TerminalDisplay *currentTerminalDisplay() - { - return _currentTerminalDisplay; - } + TerminalDisplay *currentTerminalDisplay(); QSet usedExtendedChars() const { @@ -673,6 +671,7 @@ public: void setEnableUrlExtractor(const bool enable); static const Character DefaultChar; + static const Character VisibleChar; // Return the total number of lines before resize (fix scroll glitch) int getOldTotalLines(); @@ -687,6 +686,7 @@ public: int &cols, int row = -1, int col = -1, + enum TerminalGraphicsPlacement_t::source source = TerminalGraphicsPlacement_t::Sixel, bool scrolling = true, int moveCursor = 1, bool leaveText = false, @@ -705,6 +705,8 @@ public: } void setIgnoreWcWidth(bool ignore); + QList getCharacterCounts() const; + private: // copies a line of text from the screen or history into a stream using a // specified character decoder. Returns the number of lines actually copied, @@ -747,7 +749,9 @@ private: void scrollDown(int from, int n); // when we handle scroll commands, we need to know which screenwindow will scroll - TerminalDisplay *_currentTerminalDisplay; + // use QPointer to track life time of this object, see crashes in bug 508721 + // via Konsole::Vt102Emulation::resetMode that checks for currentTerminalDisplay() + QPointer _currentTerminalDisplay; void addHistLine(); // add lines from _screen to _history and remove from _screen the added lines (used to resize lines and columns) @@ -804,6 +808,7 @@ private: QRect _lastScrolledRegion; int _droppedLines; + int _fastDroppedLines; int _oldTotalLines; bool _isResize; diff --git a/local/recipes/kde/konsole/source/src/SearchHistoryTask.cpp b/local/recipes/kde/konsole/source/src/SearchHistoryTask.cpp index d9da1a1bd6..5460c21666 100644 --- a/local/recipes/kde/konsole/source/src/SearchHistoryTask.cpp +++ b/local/recipes/kde/konsole/source/src/SearchHistoryTask.cpp @@ -20,7 +20,7 @@ void SearchHistoryTask::addScreenWindow(Session *session, ScreenWindow *searchWi _windows.insert(session, searchWindow); } -void SearchHistoryTask::execute() +bool SearchHistoryTask::execute() { auto iter = QMapIterator, ScreenWindowPtr>(_windows); @@ -32,6 +32,7 @@ void SearchHistoryTask::execute() if (autoDelete()) { deleteLater(); } + return true; } void SearchHistoryTask::executeOnScreenWindow(const QPointer &session, const ScreenWindowPtr &window) @@ -42,7 +43,6 @@ void SearchHistoryTask::executeOnScreenWindow(const QPointer &session, Emulation *emulation = session->emulation(); if (!_regExp.pattern().isEmpty()) { - int pos = -1; bool forwards = (_direction == Enum::ForwardsSearch); const int lastLine = window->lineCount() - 1; @@ -78,10 +78,36 @@ void SearchHistoryTask::executeOnScreenWindow(const QPointer &session, int delta = forwards ? maxDelta : -maxDelta; int endLine = line; + bool continueLoop = true; + bool invertDirection = false; bool hasWrapped = false; // set to true when we reach the top/bottom // of the output and continue from the other // end + QSet matchPositions; + + decoder.begin(&searchStream); + emulation->writeToStream(&decoder, 0, lastLine); + decoder.end(); + const QList linePositions = decoder.linePositions(); + + QRegularExpressionMatchIterator matchIterator = _regExp.globalMatch(string); + while (matchIterator.hasNext()) { + const QRegularExpressionMatch match = matchIterator.next(); + const qsizetype startPos = match.capturedStart(); + if (startPos != -1) { + const auto lineMatch = std::upper_bound(linePositions.begin(), linePositions.end(), startPos); + if (lineMatch != linePositions.end()) { + const auto lineIdx = qMin(0ll, lastLine) + std::distance(linePositions.begin(), lineMatch) - 1; + matchPositions.insert(static_cast(lineIdx)); + } + } + } + + Q_EMIT searchResults(matchPositions, window->lineCount()); + + string.clear(); + // loop through history in blocks of lines. do { // ensure that application does not appear to hang @@ -99,9 +125,15 @@ void SearchHistoryTask::executeOnScreenWindow(const QPointer &session, endLine += delta; if (forwards) { - endLine = qMin(startLine, endLine); + if (endLine >= startLine) { + endLine = startLine; + continueLoop = false; + } } else { - endLine = qMax(startLine, endLine); + if (endLine <= startLine) { + endLine = startLine; + continueLoop = false; + } } } else { endLine += delta; @@ -122,11 +154,7 @@ void SearchHistoryTask::executeOnScreenWindow(const QPointer &session, // line number search below assumes that the buffer ends with a new-line string.append(QLatin1Char('\n')); - if (forwards) { - pos = string.indexOf(_regExp); - } else { - pos = string.lastIndexOf(_regExp); - } + const auto pos = forwards ? string.indexOf(_regExp) : string.lastIndexOf(_regExp); // if a match is found, position the cursor on that line and update the screen if (pos != -1) { @@ -150,7 +178,11 @@ void SearchHistoryTask::executeOnScreenWindow(const QPointer &session, // if noWrap is checked and we wrapped, set cursor at last match if (hasWrapped && _noWrap) { - // invert search direction + // one chance to invert search direction + if (invertDirection) { + continueLoop = false; + } + invertDirection = true; forwards = !forwards; delta = -delta; endLine += (forwards ? 1 : -1); @@ -160,11 +192,13 @@ void SearchHistoryTask::executeOnScreenWindow(const QPointer &session, // clear the current block of text and move to the next one string.clear(); line = endLine; - } while (startLine != endLine); + } while (continueLoop); if (!session->getSelectMode()) { // if no match was found, clear selection to indicate this, window->clearSelection(); window->notifyOutputChanged(); + + Q_EMIT searchResults(QSet{}, window->lineCount()); } } diff --git a/local/recipes/kde/konsole/source/src/SearchHistoryTask.h b/local/recipes/kde/konsole/source/src/SearchHistoryTask.h index 2bd76020b2..8c5fa5209c 100644 --- a/local/recipes/kde/konsole/source/src/SearchHistoryTask.h +++ b/local/recipes/kde/konsole/source/src/SearchHistoryTask.h @@ -76,7 +76,7 @@ public: * * To continue the search looking for further matches, call execute() again. */ - void execute() override; + bool execute() override; private: using ScreenWindowPtr = QPointer; @@ -89,6 +89,9 @@ private: Enum::SearchDirection _direction; bool _noWrap; int _startLine; + +Q_SIGNALS: + void searchResults(const QSet&, int); }; } diff --git a/local/recipes/kde/konsole/source/src/ShellCommand.cpp b/local/recipes/kde/konsole/source/src/ShellCommand.cpp index 450da3ebb4..7f524a4803 100644 --- a/local/recipes/kde/konsole/source/src/ShellCommand.cpp +++ b/local/recipes/kde/konsole/source/src/ShellCommand.cpp @@ -37,10 +37,10 @@ QString ShellCommand::fullCommand() const } } if (hasSpace) { - quotedArgs[i] = QLatin1Char('\"') + arg + QLatin1Char('\"'); + quotedArgs[i] = QStringLiteral(u"\"") + arg + QStringLiteral(u"\""); } } - return quotedArgs.join(QLatin1Char(' ')); + return quotedArgs.join(QStringLiteral(u" ")); } QString ShellCommand::command() const @@ -98,7 +98,7 @@ bool ShellCommand::expandEnv(QString &text) const QLatin1Char dollarChar('$'); const QLatin1Char backslashChar('\\'); - int dollarPos = 0; + qsizetype dollarPos = 0; bool expanded = false; // find and expand all environment variables beginning with '$' @@ -120,13 +120,13 @@ bool ShellCommand::expandEnv(QString &text) continue; } - int endPos = dollarPos + 1; + qsizetype endPos = dollarPos + 1; Q_ASSERT(endPos < text.length()); while (endPos < text.length() && isValidEnvCharacter(text.at(endPos))) { endPos++; } - const int len = endPos - dollarPos; + const qsizetype len = endPos - dollarPos; const QString key = text.mid(dollarPos + 1, len - 1); const QString value = QString::fromLocal8Bit(qgetenv(key.toLocal8Bit().constData())); diff --git a/local/recipes/kde/konsole/source/src/UnixProcessInfo.cpp b/local/recipes/kde/konsole/source/src/UnixProcessInfo.cpp index 080c6e6b19..43ba758725 100644 --- a/local/recipes/kde/konsole/source/src/UnixProcessInfo.cpp +++ b/local/recipes/kde/konsole/source/src/UnixProcessInfo.cpp @@ -21,7 +21,7 @@ #include #include -#if defined(Q_OS_FREEBSD) || defined(Q_OS_OPEN_BSD) || defined(Q_OS_MACOS) +#if defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) || defined(Q_OS_MACOS) #include #include #endif diff --git a/local/recipes/kde/konsole/source/src/ViewManager.cpp b/local/recipes/kde/konsole/source/src/ViewManager.cpp index 924a96c777..318ed31759 100644 --- a/local/recipes/kde/konsole/source/src/ViewManager.cpp +++ b/local/recipes/kde/konsole/source/src/ViewManager.cpp @@ -8,6 +8,7 @@ #include "ViewManager.h" #include "config-konsole.h" +#include "konsoledebug.h" // Qt #include @@ -40,6 +41,8 @@ #include "profile/ProfileManager.h" +#include "containers/ContainerRegistry.h" + #include "session/Session.h" #include "session/SessionController.h" #include "session/SessionManager.h" @@ -64,6 +67,7 @@ ViewManager::ViewManager(QObject *parent, KActionCollection *collection) , _navigationVisibility(NavigationNotSet) , _managerId(0) , _terminalDisplayHistoryIndex(-1) + , contextMenuAdditionalActions({}) { #if HAVE_DBUS qDBusRegisterMetaType>(); @@ -279,6 +283,18 @@ void ViewManager::setupActions() collection->addAction(QStringLiteral("focus-view-right"), action); _multiSplitterOnlyActions << action; + action = new QAction(i18nc("@action Shortcut entry", "Focus Next Terminal"), this); + collection->setDefaultShortcut(action, Qt::CTRL | Qt::Key_F11); + connect(action, &QAction::triggered, this, &ViewManager::focusNext); + collection->addAction(QStringLiteral("focus-view-next"), action); + _multiSplitterOnlyActions << action; + + action = new QAction(i18nc("@action Shortcut entry", "Focus Previous Terminal"), this); + collection->setDefaultShortcut(action, Qt::CTRL | Qt::SHIFT | Qt::Key_F11); + connect(action, &QAction::triggered, this, &ViewManager::focusPrev); + collection->addAction(QStringLiteral("focus-view-prev"), action); + _multiSplitterOnlyActions << action; + action = new QAction(i18nc("@action Shortcut entry", "Switch to Last Tab"), this); connect(action, &QAction::triggered, this, &ViewManager::lastView); collection->addAction(QStringLiteral("last-tab"), action); @@ -439,6 +455,16 @@ void ViewManager::focusRight() _viewContainer->activeViewSplitter()->focusRight(); } +void ViewManager::focusNext() +{ + _viewContainer->activeViewSplitter()->focusNext(); +} + +void ViewManager::focusPrev() +{ + _viewContainer->activeViewSplitter()->focusPrev(); +} + void ViewManager::moveActiveViewLeft() { _viewContainer->moveActiveView(TabbedViewContainer::MoveViewLeft); @@ -619,6 +645,12 @@ Session *ViewManager::forgetTerminal(TerminalDisplay *terminal) return session; } +void ViewManager::setContextMenuAdditionalActions(const QList &extension) +{ + contextMenuAdditionalActions = extension; + Q_EMIT contextMenuAdditionalActionsChanged(extension); +} + Session *ViewManager::createSession(const Profile::Ptr &profile, const QString &directory) { Session *session = SessionManager::instance()->createSession(profile); @@ -627,6 +659,27 @@ Session *ViewManager::createSession(const Profile::Ptr &profile, const QString & session->setInitialWorkingDirectory(directory); } session->addEnvironmentEntry(QStringLiteral("KONSOLE_DBUS_WINDOW=/Windows/%1").arg(managerId())); + + // Determine container context for the new session. + // Priority: 1) Inherit from active session (if enabled) + // 2) "Always start in container" profile setting + if (profile && profile->inheritContainerContext() && _pluggedController) { + Session *activeSession = _pluggedController->session(); + if (activeSession && activeSession->isInContainer()) { + session->setContainerContext(activeSession->containerContext()); + } + } + + if (!session->isInContainer()) { + const QString configuredContainer = profile ? profile->containerName() : QString(); + if (!configuredContainer.isEmpty() && ContainerRegistry::instance()->isEnabled()) { + const ContainerInfo container = ContainerRegistry::instance()->containerInfoFromKey(configuredContainer); + if (container.isValid()) { + session->setContainerContext(container); + } + } + } + return session; } @@ -692,8 +745,8 @@ void ViewManager::focusAnotherTerminal(ViewSplitter *toplevelSplitter) if (tabTterminalDisplays.count() > 1) { // Give focus to the last used terminal in this tab - for (auto *historyItem : _terminalDisplayHistory) { - for (auto *terminalDisplay : tabTterminalDisplays) { + for (const auto *historyItem : std::as_const(_terminalDisplayHistory)) { + for (auto *terminalDisplay : std::as_const(tabTterminalDisplays)) { if (terminalDisplay == historyItem) { terminalDisplay->setFocus(Qt::OtherFocusReason); return; @@ -845,13 +898,18 @@ SessionController *ViewManager::createController(Session *session, TerminalDispl connect(view, &Konsole::TerminalDisplay::destroyed, controller, &Konsole::SessionController::deleteLater); connect(controller, &Konsole::SessionController::viewDragAndDropped, this, &Konsole::ViewManager::forgetController); connect(controller, &Konsole::SessionController::requestSplitViewLeftRight, this, &Konsole::ViewManager::splitLeftRight); - connect(controller, &Konsole::SessionController::requestSplitViewTopBotton, this, &Konsole::ViewManager::splitTopBottom); + connect(controller, &Konsole::SessionController::requestSplitViewTopBottom, this, &Konsole::ViewManager::splitTopBottom); + connect(this, &Konsole::ViewManager::contextMenuAdditionalActionsChanged, controller, &Konsole::SessionController::setContextMenuAdditionalActions); // if this is the first controller created then set it as the active controller if (_pluggedController.isNull()) { controllerChanged(controller); } + if (!contextMenuAdditionalActions.isEmpty()) { + controller->setContextMenuAdditionalActions(contextMenuAdditionalActions); + } + return controller; } @@ -936,7 +994,8 @@ TerminalDisplay *ViewManager::createView(Session *session) // // Use Qt::UniqueConnection to avoid duplicate connection connect(session, &Konsole::Session::finished, this, &Konsole::ViewManager::sessionFinished, Qt::UniqueConnection); - TerminalDisplay *display = createTerminalDisplay(session); + TerminalDisplay *display = createTerminalDisplay(); + createController(session, display); const Profile::Ptr profile = SessionManager::instance()->sessionProfile(session); applyProfileToView(display, profile); @@ -945,7 +1004,6 @@ TerminalDisplay *ViewManager::createView(Session *session) const QSize &preferredSize = session->preferredSize(); display->setSize(preferredSize.width(), preferredSize.height()); - createController(session, display); _sessionMap[display] = session; session->addView(display); @@ -976,6 +1034,7 @@ TabbedViewContainer *ViewManager::createContainer() connect(container, &TabbedViewContainer::newViewRequest, this, &ViewManager::newViewRequest); connect(container, &Konsole::TabbedViewContainer::newViewWithProfileRequest, this, &Konsole::ViewManager::newViewWithProfileRequest); + connect(container, &Konsole::TabbedViewContainer::newViewInContainerRequest, this, &Konsole::ViewManager::newViewInContainerRequest); connect(container, &Konsole::TabbedViewContainer::activeViewChanged, this, &Konsole::ViewManager::activateView); return container; @@ -1061,10 +1120,9 @@ void ViewManager::viewDestroyed(QWidget *view) // Q_EMIT unplugController(_pluggedController); } -TerminalDisplay *ViewManager::createTerminalDisplay(Session *session) +TerminalDisplay *ViewManager::createTerminalDisplay() { auto display = new TerminalDisplay(nullptr); - display->setRandomSeed(session->sessionId() | (qApp->applicationPid() << 10)); registerTerminal(display); return display; @@ -1127,10 +1185,10 @@ QList ViewManager::viewProperties() const return {}; } - auto terminalContainers = _viewContainer->findChildren(); + const auto terminalContainers = _viewContainer->findChildren(); list.reserve(terminalContainers.size()); - for (auto terminalDisplay : _viewContainer->findChildren()) { + for (auto terminalDisplay : terminalContainers) { list.append(terminalDisplay->sessionController()); } @@ -1145,6 +1203,10 @@ QJsonObject saveSessionTerminal(TerminalDisplay *terminalDisplay) auto terminalSession = terminalDisplay->sessionController()->session(); const int sessionRestoreId = SessionManager::instance()->getRestoreId(terminalSession); thisTerminal.insert(QStringLiteral("SessionRestoreId"), sessionRestoreId); + thisTerminal.insert(QStringLiteral("Columns"), terminalDisplay->columns()); + thisTerminal.insert(QStringLiteral("Lines"), terminalDisplay->lines()); + thisTerminal.insert(QStringLiteral("WorkingDirectory"), terminalDisplay->session()->currentWorkingDirectory()); + thisTerminal.insert(QStringLiteral("Command"), QStringLiteral("")); return thisTerminal; } @@ -1173,11 +1235,14 @@ QJsonObject saveSessionsRecurse(QSplitter *splitter) void ViewManager::saveLayoutFile() { - QString fileName(QFileDialog::getSaveFileName(this->widget(), - i18nc("@title:window", "Save Tab Layout"), - QStringLiteral("~/"), - i18nc("@item:inlistbox", "Konsole View Layout (*.json)"))); + saveLayout(QFileDialog::getSaveFileName(this->widget(), + i18nc("@title:window", "Save Tab Layout"), + QStringLiteral("~/"), + i18nc("@item:inlistbox", "Konsole View Layout (*.json)"))); +} +void ViewManager::saveLayout(QString fileName) +{ // User pressed cancel in dialog if (fileName.isEmpty()) { return; @@ -1225,12 +1290,43 @@ ViewSplitter *restoreSessionsSplitterRecurse(const QJsonObject &jsonSplitter, Vi for (const auto widgetJsonValue : splitterWidgets) { const auto widgetJsonObject = widgetJsonValue.toObject(); const auto sessionIterator = widgetJsonObject.constFind(QStringLiteral("SessionRestoreId")); + const auto columnsIterator = widgetJsonObject.constFind(QStringLiteral("Columns")); + const auto linesIterator = widgetJsonObject.constFind(QStringLiteral("Lines")); + const auto commandIterator = widgetJsonObject.constFind(QStringLiteral("Command")); + const auto cwdIterator = widgetJsonObject.constFind(QStringLiteral("WorkingDirectory")); if (sessionIterator != widgetJsonObject.constEnd()) { Session *session = useSessionId ? SessionManager::instance()->idToSession(sessionIterator->toInt()) : SessionManager::instance()->createSession(); auto newView = manager->createView(session); currentSplitter->addWidget(newView); + + int columns = newView->columns(); + int lines = newView->lines(); + if (columnsIterator != widgetJsonObject.constEnd()) { + columns = columnsIterator->toInt(); + } + if (linesIterator != widgetJsonObject.constEnd()) { + lines = linesIterator->toInt(); + } + newView->setSize(columns, lines); + + // Set the current working directory if the key is not empty + if (cwdIterator != widgetJsonObject.constEnd()) { + auto cwd = cwdIterator->toString(); + if (!cwd.isEmpty()) { + newView->session()->setInitialWorkingDirectory(cwd); + } + } + + if (commandIterator != widgetJsonObject.constEnd()) { + auto command = commandIterator->toString(); + // Don't open a program that is already running, such as bash + if (!command.isEmpty() && command != newView->session()->program()) { + newView->session()->runCommandFromLayout(command); + } + } + } else { auto nextSplitter = restoreSessionsSplitterRecurse(widgetJsonObject, manager, useSessionId); currentSplitter->addWidget(nextSplitter); @@ -1334,7 +1430,7 @@ QStringList ViewManager::sessionList() QStringList ids; for (int i = 0; i < _viewContainer->count(); i++) { - auto terminaldisplayList = _viewContainer->widget(i)->findChildren(); + const auto terminaldisplayList = _viewContainer->widget(i)->findChildren(); for (auto *terminaldisplay : terminaldisplayList) { ids.append(QString::number(terminaldisplay->sessionController()->session()->sessionId())); } @@ -1462,21 +1558,22 @@ QStringList ViewManager::viewHierarchy() QList ViewManager::getSplitProportions(int splitterId) { - auto splitter = _viewContainer->findSplitter(splitterId); + const auto *splitter = _viewContainer->findSplitter(splitterId); if (splitter == nullptr) return QList(); + const QList sizes = splitter->sizes(); int totalSize = 0; - QList percentages; - for (auto size : splitter->sizes()) { + for (const auto &size : sizes) { totalSize += size; } + QList percentages; if (totalSize == 0) - return QList(); + return percentages; - for (auto size : splitter->sizes()) { + for (auto size : sizes) { percentages.append((size / static_cast(totalSize)) * 100); } @@ -1514,7 +1611,7 @@ bool ViewManager::createSplitWithExisting(int targetSplitterId, QStringList widg forbiddenSplitters.append(splitter->id()); } - // to make positioning clearer by avoiding situtations where + // to make positioning clearer by avoiding situations where // e.g. splitter to be created is at index x of targetSplitter // and some direct children of targetSplitter are used as // children of created splitter, causing the final position @@ -1562,7 +1659,7 @@ bool ViewManager::createSplitWithExisting(int targetSplitterId, QStringList widg ViewSplitter *createdSplitter = new ViewSplitter(); createdSplitter->setOrientation(horizontalSplit ? Qt::Horizontal : Qt::Vertical); - for (auto widget : linearLayout) { + for (auto widget : std::as_const(linearLayout)) { if (auto s = qobject_cast(widget)) createdSplitter->addSplitter(s); else @@ -1607,7 +1704,8 @@ bool ViewManager::resizeSplits(int splitterId, QList percentages) int sum = 0; QList newSizes; - for (int size : splitter->sizes()) { + const auto sizes = splitter->sizes(); + for (int size : sizes) { sum += size; } diff --git a/local/recipes/kde/konsole/source/src/ViewManager.h b/local/recipes/kde/konsole/source/src/ViewManager.h index f1f9de810d..1ffca06efb 100644 --- a/local/recipes/kde/konsole/source/src/ViewManager.h +++ b/local/recipes/kde/konsole/source/src/ViewManager.h @@ -13,6 +13,7 @@ #include #include +#include "containers/ContainerInfo.h" #include "konsoleprivate_export.h" // Konsole @@ -194,6 +195,8 @@ public: */ Session *createSession(const QExplicitlySharedDataPointer &profile, const QString &directory = QString()); + void setContextMenuAdditionalActions(const QList &extension); + Q_SIGNALS: /** Emitted when the last view is removed from the view manager */ void empty(); @@ -234,8 +237,13 @@ Q_SIGNALS: /** Requests creation of a new view, with the selected profile. */ void newViewWithProfileRequest(const QExplicitlySharedDataPointer &profile); + /** Requests creation of a new view inside the given container. */ + void newViewInContainerRequest(const ContainerInfo &container); + void activationRequest(const QString &xdgActivationToken); + void contextMenuAdditionalActionsChanged(const QList &extension); + public Q_SLOTS: /** DBus slot that returns the number of sessions in the current view. */ Q_SCRIPTABLE int sessionCount(); @@ -311,6 +319,7 @@ public Q_SLOTS: // Creates json file with split config Q_SCRIPTABLE void saveLayoutFile(); + void saveLayout(QString fileName); // For testing Q_SCRIPTABLE void loadLayoutFile(); Q_SCRIPTABLE void loadLayout(QString File); @@ -409,6 +418,9 @@ private Q_SLOTS: void focusLeft(); void focusRight(); + void focusNext(); + void focusPrev(); + // called when "Next View" shortcut is activated void nextView(); @@ -488,9 +500,7 @@ private: TabbedViewContainer *createContainer(); // creates a new terminal display - // the 'session' is used so that the terminal display's random seed - // can be set to something which depends uniquely on that session - TerminalDisplay *createTerminalDisplay(Session *session = nullptr); + TerminalDisplay *createTerminalDisplay(); // creates a new controller for a session/display pair which provides the menu // actions associated with that view, and exposes basic information @@ -528,6 +538,10 @@ private: // containers open QList _multiTabOnlyActions; QList _multiSplitterOnlyActions; + + QList contextMenuAdditionalActions; + + friend class ViewManagerTest; }; } diff --git a/local/recipes/kde/konsole/source/src/ViewProperties.cpp b/local/recipes/kde/konsole/source/src/ViewProperties.cpp index b57781e4c4..a31c8f1e7b 100644 --- a/local/recipes/kde/konsole/source/src/ViewProperties.cpp +++ b/local/recipes/kde/konsole/source/src/ViewProperties.cpp @@ -75,6 +75,14 @@ void ViewProperties::setColor(const QColor &color) } } +void ViewProperties::setActivityColor(const QColor &color) +{ + if (color != _activityColor) { + _activityColor = color; + Q_EMIT activityColorChanged(this); + } +} + void ViewProperties::setIdentifier(int id) { if (_viewProperties.contains(_identifier)) { @@ -86,6 +94,14 @@ void ViewProperties::setIdentifier(int id) _viewProperties.insert(id, this); } +void ViewProperties::setProgress(const std::optional &progress) +{ + if (_progress != progress) { + _progress = progress; + Q_EMIT progressChanged(this); + } +} + QString ViewProperties::title() const { return _title; @@ -106,4 +122,14 @@ QColor ViewProperties::color() const return _color; } +std::optional ViewProperties::progress() const +{ + return _progress; +} + +QColor ViewProperties::activityColor() const +{ + return _activityColor; +} + #include "moc_ViewProperties.cpp" diff --git a/local/recipes/kde/konsole/source/src/ViewProperties.h b/local/recipes/kde/konsole/source/src/ViewProperties.h index b31b9a3039..c551ca7ca7 100644 --- a/local/recipes/kde/konsole/source/src/ViewProperties.h +++ b/local/recipes/kde/konsole/source/src/ViewProperties.h @@ -14,6 +14,9 @@ #include #include +// STL +#include + // Konsole #include "konsoleprivate_export.h" #include "session/Session.h" @@ -41,6 +44,10 @@ public: QString title() const; /** Returns the color associated with a view */ QColor color() const; + /** Returns the progress associated with a view */ + std::optional progress() const; + /** Returns the activity color associated with a view */ + QColor activityColor() const; /** * Returns the URL current associated with a view. @@ -81,6 +88,8 @@ Q_SIGNALS: void titleChanged(ViewProperties *properties); /** Emitted when the color for a view changes */ void colorChanged(ViewProperties *properties); + /** Emitted when the color for a view changes */ + void activityColorChanged(ViewProperties *properties); /** Emitted when activity has occurred in this view. */ void activity(ViewProperties *item); /** Emitted when notification for a view changes */ @@ -89,6 +98,8 @@ Q_SIGNALS: void readOnlyChanged(ViewProperties *item); /** Emitted when "copy input" state changes */ void copyInputChanged(ViewProperties *item); + /** Emitted when the progress changes */ + void progressChanged(ViewProperties *item); public Q_SLOTS: /** @@ -117,8 +128,15 @@ protected: * a colorChanged() signal to be emitted */ void setColor(const QColor &color); + /** + * Subclasses may call this method to change the activity color. This causes + * a activityColorChanged() signal to be emitted + */ + void setActivityColor(const QColor &color); /** Subclasses may call this method to change the identifier. */ void setIdentifier(int id); + /** Subclass may call this method to change the progress. */ + void setProgress(const std::optional &progress); private: Q_DISABLE_COPY(ViewProperties) @@ -126,8 +144,9 @@ private: QIcon _icon; QString _title; QColor _color; + QColor _activityColor; int _identifier; - + std::optional _progress; static QHash _viewProperties; }; } diff --git a/local/recipes/kde/konsole/source/src/Vt102Emulation.cpp b/local/recipes/kde/konsole/source/src/Vt102Emulation.cpp index 618143e300..39cef21901 100644 --- a/local/recipes/kde/konsole/source/src/Vt102Emulation.cpp +++ b/local/recipes/kde/konsole/source/src/Vt102Emulation.cpp @@ -12,10 +12,10 @@ #include // Qt -#if HAVE_QTMULTIMEDIA +#include #include -#endif #include +#include #include #include #include @@ -29,9 +29,16 @@ #include "EscapeSequenceUrlExtractor.h" #include "session/SessionController.h" #include "session/SessionManager.h" +#include "terminalDisplay/TerminalColor.h" #include "terminalDisplay/TerminalDisplay.h" #include "terminalDisplay/TerminalFonts.h" +// win32-input-mode +#include "WinKeys.h" +#ifdef HAVE_XKBCOMMON +#include +#endif + #include using Konsole::Vt102Emulation; @@ -51,7 +58,7 @@ using Konsole::Vt102Emulation; // assert for i in [0..31] : vt100extended(vt100_graphics[i]) == i. /* clang-format off */ -unsigned short Konsole::vt100_graphics[32] = { +static const quint16 vt100_graphics[32] = { // 0/8 1/9 2/10 3/11 4/12 5/13 6/14 7/15 0x0020, 0x25C6, 0x2592, 0x2409, 0x240c, 0x240d, 0x240a, 0x00b0, 0x00b1, 0x2424, 0x240b, 0x2518, 0x2510, 0x250c, 0x2514, 0x253c, @@ -72,9 +79,7 @@ Vt102Emulation::Vt102Emulation() , _pendingSessionAttributesUpdates(QHash()) , _sessionAttributesUpdateTimer(new QTimer(this)) , _reportFocusEvents(false) -#if HAVE_QTMULTIMEDIA , player(nullptr) -#endif { _sessionAttributesUpdateTimer->setSingleShot(true); QObject::connect(_sessionAttributesUpdateTimer, &QTimer::timeout, this, &Konsole::Vt102Emulation::updateSessionAttributes); @@ -88,10 +93,42 @@ Vt102Emulation::Vt102Emulation() for (int i = 0; i < 256; i++) { colorTable[i] = QColor(); } + +#ifdef HAVE_XKBCOMMON + _xkbData.context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); + if (!_xkbData.context) { + qCDebug(KonsoleDebug) << "win32-input-mode: FAILED to create xkb_context."; + _win32InputModeAvailable = false; + } else { + struct xkb_rule_names rules = { nullptr, nullptr, "us", nullptr, nullptr }; + _xkbData.keymap_us = xkb_keymap_new_from_names(_xkbData.context, &rules, XKB_KEYMAP_COMPILE_NO_FLAGS); + if (!_xkbData.keymap_us) { + qCDebug(KonsoleDebug) << "win32-input-mode: FAILED to create US keymap."; + _win32InputModeAvailable = false; + } else { + _xkbData.state_us = xkb_state_new(_xkbData.keymap_us); + if (!_xkbData.state_us) { + qCDebug(KonsoleDebug) << "win32-input-mode: FAILED to create xkb_state."; + _win32InputModeAvailable = false; + } + } + } +#endif } Vt102Emulation::~Vt102Emulation() { +#ifdef HAVE_XKBCOMMON + if (_xkbData.state_us) { + xkb_state_unref(_xkbData.state_us); + } + if (_xkbData.keymap_us) { + xkb_keymap_unref(_xkbData.keymap_us); + } + if (_xkbData.context) { + xkb_context_unref(_xkbData.context); + } +#endif } void Vt102Emulation::clearEntireScreen() @@ -109,9 +146,11 @@ void Vt102Emulation::clearHistory() void Vt102Emulation::reset(bool softReset, bool preservePrompt) { + Q_EMIT updateDroppedLines(_currentScreen->getLines()); + // Save the current codec so we can set it later. // Ideally we would want to use the profile setting - const QTextCodec *currentCodec = codec(); + const QByteArray currentCodec(encoder().name()); resetTokenizer(); if (softReset) { @@ -273,6 +312,10 @@ constexpr int token_apc(int a) { return token_construct(15, a, 0); } +constexpr int token_csi_pl(int a) +{ + return token_construct(16, a, 0); +} const int MAX_ARGUMENT = 40960; @@ -358,7 +401,7 @@ void Vt102Emulation::initTokenizer() for (i = 0x20; i < 0x30; ++i) { charClass[i] |= INT; } - for (s = (quint8 *)"@ABCDEFGHILMPSTXZbcdfry"; *s != 0U; ++s) { + for (s = (quint8 *)"`@ABCDEFGHILMPSTXZabcdefry"; *s != 0U; ++s) { charClass[*s] |= CPN; } // resize = \e[8;;t @@ -523,6 +566,8 @@ void Vt102Emulation::csi_dispatch(const uint cc) for (int i = 0; i <= params.count; i++) { if (tokenBufferPos != 0 && tokenBuffer[0] == '?') { processToken(token_csi_pr(cc, params.value[i]), i, 0); + } else if (tokenBufferPos != 0 && tokenBuffer[0] == '<') { + processToken(token_csi_pl(cc), 0, 0); } else if (tokenBufferPos != 0 && tokenBuffer[0] == '=') { processToken(token_csi_pq(cc), 0, 0); } else if (tokenBufferPos != 0 && tokenBuffer[0] == '>') { @@ -961,6 +1006,31 @@ void Vt102Emulation::receiveChars(const QVector &chars) } } +static QString resolveIcon(QList icons) +{ + if (icons.isEmpty()) + return QString(); + for (QString iconName : icons) { + if (iconName == QLatin1String("error")) + return QLatin1String("dialog-error"); + if (iconName == QLatin1String("warn") || iconName == QLatin1String("warning")) + return QLatin1String("dialog-warning"); + if (iconName == QLatin1String("info")) + return QLatin1String("dialog-info"); + if (iconName == QLatin1String("question")) + return QLatin1String("dialog-question"); + if (iconName == QLatin1String("help")) + return QLatin1String("help-about"); + if (iconName == QLatin1String("file-manager")) + return QLatin1String("system-file-manager"); + if (iconName == QLatin1String("system-monitor")) + return QLatin1String("utilities-system-monitor"); + if (iconName == QLatin1String("text-editor")) + return QLatin1String("accessories-text-editor"); + } + return icons[0]; +} + void Vt102Emulation::processChecksumRequest([[maybe_unused]] int crargc, int crargv[]) { int checksum = 0; @@ -1029,6 +1099,12 @@ void Vt102Emulation::processChecksumRequest([[maybe_unused]] int crargc, int cra sendString(tmp); } +static bool isIdentifier(QString const &value) +{ + static const QRegularExpression IDENTIFIER_RE = QRegularExpression(QStringLiteral("^[-a-zA-Z0-9_+.]*$")); + return IDENTIFIER_RE.match(value).hasMatch(); +} + void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const uint terminator) { // Describes the window or terminal session attribute to change @@ -1053,8 +1129,12 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u colorTable[i] = QColor(); } break; + case ResetCursorColor: // 112 clears the cursor color and has no arguments. + _currentScreen->currentTerminalDisplay()->terminalColor()->setCursorColor(QColor()); + break; default: - reportDecodingError(token_osc(terminator)); + _pendingSessionAttributesUpdates[attribute] = QString(); + _sessionAttributesUpdateTimer->start(20); break; } @@ -1074,6 +1154,17 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u return; } + if (attribute == CursorColor) { + int j = i; + while (j < tokenSize && tokenBuffer[j] != ';') { + j++; + } + QColor color = QColor::fromString(QString::fromUcs4(&tokenBuffer[i], j - i)); + if (color.isValid()) { + _currentScreen->currentTerminalDisplay()->terminalColor()->setCursorColor(color); + } + return; + } if (attribute == SemanticPrompts) { if (value[0] == QLatin1Char('A') || value[0] == QLatin1Char('N') || value[0] == QLatin1Char('P')) { _currentScreen->setReplMode(REPL_PROMPT); @@ -1142,8 +1233,11 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u } } if (attribute == Notification) { - // Notification + // OSC 777 - Emit generic signal first for external handlers auto params = value.split(QLatin1Char(';')); + Q_EMIT osc777Received(params); + + // Handle "notify" command internally for backward compatibility if (params.length() < 1 || params[0] != QLatin1String("notify")) { return; } @@ -1151,8 +1245,9 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u const auto hasFocus = _currentScreen->currentTerminalDisplay()->hasFocus(); KNotification *notification = nullptr; if (params.length() >= 3) { - notification = - KNotification::event(hasFocus ? QStringLiteral("ProcessNotification") : QStringLiteral("ProcessNotificationHidden"), params[1], params[2]); + notification = KNotification::event(hasFocus ? QStringLiteral("ProcessNotification") : QStringLiteral("ProcessNotificationHidden"), + params[1], + params[2].toHtmlEscaped()); } else { notification = KNotification::event(hasFocus ? QStringLiteral("ProcessNotification") : QStringLiteral("ProcessNotificationHidden"), params[1]); } @@ -1161,6 +1256,297 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u connect(action, &KNotificationAction::activated, this, [this, notification]() { _currentScreen->currentTerminalDisplay()->notificationClicked(notification->xdgActivationToken()); }); + } + if (attribute == Clipboard) { + // Clipboard + QStringList params = value.split(QLatin1Char(';')); + if (params.length() == 0) { + return; + } + + bool clipboard = false; + bool selection = false; + if (params[0].isEmpty() || params[0].contains(QLatin1Char('c')) || params[0].contains(QLatin1Char('s'))) { + clipboard = true; + } + if (params[0].contains(QLatin1Char('p'))) { + selection = true; + } + + if (params.length() == 2) { + // Copy to clipboard + if (clipboard) { + QApplication::clipboard()->setText(QString::fromUtf8(QByteArray::fromBase64(params[1].toUtf8())), QClipboard::Clipboard); + } + if (selection) { + QApplication::clipboard()->setText(QString::fromUtf8(QByteArray::fromBase64(params[1].toUtf8())), QClipboard::Selection); + } + } else { + // Clear clipboard + if (clipboard) { + QApplication::clipboard()->clear(QClipboard::Clipboard); + } + if (selection) { + QApplication::clipboard()->clear(QClipboard::Selection); + } + } + + return; + } + + // See https://sw.kovidgoyal.net/kitty/desktop-notifications/ + // Example: "\x1b]99;i=1:d=0;TITLE\x1b\\\x1b]99;i=1:d=1:p=body;BODY\x1b\\" + if (attribute == KittyNotification) { + int pos = value.indexOf(QLatin1Char(';')); + if (pos == -1) + return; + QString notificationId = QString::fromLatin1("0"); + int complete = 1; + int encoding = 0; + enum PayloadType { + Unknown, + Title, + Body, + Query, + Buttons, + } payloadType = PayloadType::Title; + QString payload = value.mid(pos + 1); + QStringList params = value.mid(0, pos).split(u':'); + KittyNotificationOption option = KittyNotificationOption::None; + int addedActions = NotificationActionNone; + int removedActions = NotificationActionNone; + QList iconNames; + int urgency = -1; + int closeSignal = -1; + QString applicationName; + + for (QString param: std::as_const(params)) { + if (param.startsWith(QString::fromLatin1("i="))) { + // Notification ID: + QString payloadValue = param.mid(2); + if (isIdentifier(payloadValue)) + notificationId = payloadValue; + } else if (param.startsWith(QString::fromLatin1("c="))) { + // Whether the notification is complete: + bool parseOk; + int parsedCloseSignal = param.mid(2).toInt(&parseOk); + if (parseOk && parsedCloseSignal >= 0 && parsedCloseSignal < 2) + closeSignal = parsedCloseSignal; + } else if (param.startsWith(QString::fromLatin1("d="))) { + // Whether the notification is complete: + bool parseOk; + int parsedComplete = param.mid(2).toInt(&parseOk); + if (parseOk && parsedComplete >=0 && parsedComplete < 2) + complete = parsedComplete; + } else if (param.startsWith(QString::fromLatin1("e="))) { + // Escape (whether the paylaod is Base64 encoded): + bool parseOk; + int parsedEncoding = param.mid(2).toInt(&parseOk); + if (parseOk && parsedEncoding >=0 && parsedEncoding < 2) + encoding = parsedEncoding; + } else if (param.startsWith(QString::fromLatin1("a="))) { + // Parse a comma-separated of actions with optional "-" (eg. "-focus,report"): + QString payloadValue = param.mid(2); + QStringList tokens = payloadValue.split(u','); + for (QString token : std::as_const(tokens)) { + int tokenValue = NotificationActionNone; + bool removed = false; + if (token.startsWith(QString::fromLatin1("-"))) { + removed = true; + token = token.mid(1); + } + if (token == QString::fromLatin1("report")) { + tokenValue = NotificationActionReport; + } else if (token == QString::fromLatin1("focus")) { + tokenValue = NotificationActionFocus; + } + if (removed) { + removedActions |= tokenValue; + } else { + addedActions |= tokenValue; + } + } + } else if (param.startsWith(QString::fromLatin1("p="))) { + // Whether the payload is the notification title or body: + QString payloadValue = param.mid(2); + if (payloadValue == QString::fromLatin1("title")) { + payloadType = PayloadType::Title; + } else if (payloadValue == QString::fromLatin1("body")) { + payloadType = PayloadType::Body; + } else if (payloadValue == QString::fromLatin1("buttons")) { + payloadType = PayloadType::Buttons; + } else if (payloadValue == QString::fromLatin1("?")) { + payloadType = PayloadType::Query; + } else { + payloadType = PayloadType::Unknown; + } + } else if (param.startsWith(QString::fromLatin1("o="))) { + QString payloadValue = param.mid(2); + if (payloadValue == QString::fromLatin1("always")) { + option = KittyNotificationOption::Always; + } else if (payloadValue == QString::fromLatin1("unfocused")) { + option = KittyNotificationOption::Unfocused; + } else if (payloadValue == QString::fromLatin1("invisible")) { + option = KittyNotificationOption::Invisible; + } + } else if (param.startsWith(QString::fromLatin1("n="))) { + QString payloadValue = param.mid(2); + iconNames.append(QString::fromUtf8(QByteArray::fromBase64(payloadValue.toUtf8()))); + } else if (param.startsWith(QString::fromLatin1("f="))) { + QString payloadValue = param.mid(2); + applicationName = QString::fromUtf8(QByteArray::fromBase64(payloadValue.toUtf8())); + } else if (param.startsWith(QString::fromLatin1("u="))) { + QString payloadValue = param.mid(2); + bool parseOk; + int parsedUrgency = param.mid(2).toInt(&parseOk); + if (parseOk && parsedUrgency >= 0 && parsedUrgency < 3) { + urgency = parsedUrgency; + } + } + } + + KittyNotificationState* notificationState = nullptr; + KittyNotificationState notificationValue; + auto notificationIterator = _kittyNotifications.find(notificationId); + if (notificationIterator != _kittyNotifications.end()) { + notificationState = &*notificationIterator; + } else if (complete) { + notificationState = ¬ificationValue; + } else { + notificationState = &_kittyNotifications[notificationId]; + notificationState->serial = _kittyNotificationSerial++; + } + if (closeSignal >= 0) { + notificationState->closeSignal = closeSignal; + } + + if (option != KittyNotificationOption::None) { + notificationState->option = option; + } + notificationState->action = (notificationState->action | addedActions) & (~removedActions); + for (QString iconName : iconNames) { + if (notificationState->iconNames.length() >= 10) + continue; + notificationState->iconNames.append(iconName); + } + if (urgency >= 0) + notificationState->urgency = urgency; + if (!applicationName.isEmpty()) + notificationState->applicationName = applicationName; + + if (encoding == 1) { + payload = QString::fromUtf8(QByteArray::fromBase64(payload.toUtf8())); + } + constexpr qsizetype max_notification_size = 1024; + switch (payloadType) { + case Unknown: + break; + case Query: + _kittyNotifications.remove(notificationId); + sendString((QStringLiteral("\033]99;i=") + notificationId + + QStringLiteral(";p=?;p=title,body,buttons:a=report,focus:o=always,unfocus,invisible:u=0,1,2:c=1\033\\")) + .toLatin1()); + return; + case Title: + notificationState->title += payload.left(max_notification_size - notificationState->title.size()); + break; + case Body: + notificationState->body += payload.left(max_notification_size - notificationState->body.size()); + break; + case Buttons: + notificationState->buttons = payload.split(QString::fromUtf8(u8"\u2028")); + break; + } + + if (complete) { + const auto hasFocus = _currentScreen->currentTerminalDisplay()->hasFocus(); + + bool enabled; + switch (notificationState->option) { + default: + case KittyNotificationOption::None: + case KittyNotificationOption::Always: + enabled = true; + break; + case KittyNotificationOption::Unfocused: + enabled = !hasFocus; + break; + case KittyNotificationOption::Invisible: + // We might want to check if the tab is active, the window visible, etc. + enabled = !hasFocus; + break; + } + + if (enabled) { + KNotification *notification; + QString iconName = resolveIcon(notificationState->iconNames); + + // KNotification does not support application name, add it to the title instead: + QString fullTitle = notificationState->applicationName; + if (!notificationState->title.isEmpty()) { + if (!fullTitle.isEmpty()) + fullTitle += QStringLiteral(": "); + fullTitle += notificationState->title; + } + + notification = KNotification::event(hasFocus ? QStringLiteral("ProcessNotification") : QStringLiteral("ProcessNotificationHidden"), + fullTitle, + notificationState->body.toHtmlEscaped(), + iconName); + + KNotification::Urgency resultUrgency = KNotification::Urgency::NormalUrgency; + switch (notificationState->urgency) { + case 0: + resultUrgency = KNotification::Urgency::LowUrgency; + break; + case 1: + resultUrgency = KNotification::Urgency::NormalUrgency; + break; + case 2: + resultUrgency = KNotification::Urgency::CriticalUrgency; + break; + } + notification->setUrgency(resultUrgency); + auto action = notification->addDefaultAction(i18n("Show session")); + + if (notificationState->closeSignal) { + connect(notification, &KNotification::closed, this, [this, notificationId]() { + sendString((QStringLiteral("\033]99;i=") + notificationId + QStringLiteral(":p=close;\033\\")).toLatin1()); + }); + } + + int notificationAction = notificationState->action; + if (notificationAction != 0) { + connect(action, &KNotificationAction::activated, this, [this, notification, notificationAction, notificationId]() { + if (notificationAction & NotificationActionReport) { + sendString((QStringLiteral("\033]99;i=") + notificationId + QStringLiteral(";\033\\")).toLatin1()); + } + if (notificationAction & NotificationActionFocus) { + _currentScreen->currentTerminalDisplay()->notificationClicked(notification->xdgActivationToken()); + } + }); + } + + for (int i = 0; i < notificationState->buttons.size(); ++i) { + KNotificationAction *action = notification->addAction(notificationState->buttons[i]); + connect(action, &KNotificationAction::activated, this, [this, notificationId, i]() { + sendString((QStringLiteral("\033]99;i=") + notificationId + QStringLiteral(";") + QString::number(i + 1) + QStringLiteral("\033\\")) + .toLatin1()); + }); + } + } + + _kittyNotifications.remove(notificationId); + } + + if (_kittyNotifications.size() >= 10) { + auto toRemote = std::min_element( + _kittyNotifications.begin(), _kittyNotifications.end(), + [](KittyNotificationState const& first, KittyNotificationState const& second) { + return first.serial < second.serial; + }); + _kittyNotifications.erase(toRemote); + } return; } @@ -1175,6 +1561,7 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u if (attribute == Session::ProfileChange) { bool styleChanged = false; bool isBlinking = false; + bool isAnimating = false; Enum::CursorShapeEnum shape = Enum::BlockCursor; QColor customColor; @@ -1191,6 +1578,7 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u const QLatin1String cursorShapeStr("CursorShape="); const QLatin1String blinkingCursorStr("BlinkingCursorEnabled="); + const QLatin1String animatingCursorStr("AnimatingCursorEnabled="); const QLatin1String customCursorColorStr("CustomCursorColor="); QString newValue; @@ -1217,7 +1605,22 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u styleChanged = true; } } - + } else if (item.startsWith(animatingCursorStr)) { + const auto str = item.mid(animatingCursorStr.size()); + if (str.compare(QString::fromLatin1("true"), Qt::CaseInsensitive) == 0) { + isAnimating = true; + styleChanged = true; + } else if (str.compare(QString::fromLatin1("false"), Qt::CaseInsensitive) == 0) { + isAnimating = false; + styleChanged = true; + } else { + bool ok = false; + bool newIsAnimating = str.toInt(&ok); + if (ok) { + isAnimating = newIsAnimating; + styleChanged = true; + } + } } else if (item.startsWith(customCursorColorStr)) { const auto colorStr = item.mid(customCursorColorStr.size()); customColor = QColor(colorStr); @@ -1231,7 +1634,7 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u } if (styleChanged) { - Q_EMIT setCursorStyleRequest(shape, isBlinking, customColor); + Q_EMIT setCursorStyleRequest(shape, isBlinking, isAnimating, customColor); } if (newValue.isEmpty()) { @@ -1257,7 +1660,7 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u int scaledWidth = 0; int scaledHeight = 0; bool moveCursor = true; - for (const auto &p : params) { + for (const auto &p : std::as_const(params)) { int eq = p.indexOf(QLatin1Char('=')); if (eq > 0) { QString var = p.mid(0, eq); @@ -1299,7 +1702,6 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u } } if (inlineMedia) { -#if HAVE_QTMULTIMEDIA if (player == nullptr) { player = new QMediaPlayer(this); player->setAudioOutput(new QAudioOutput(player)); @@ -1311,7 +1713,6 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u delete (QIODevice *)(player->sourceDevice()); player->setSourceDevice(buffer); player->play(); -#endif return; } if (!inlineImage) { @@ -1333,13 +1734,130 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u } } int rows = -1, cols = -1; - _currentScreen->addPlacement(pixmap, rows, cols, -1, -1, true, moveCursor); + _currentScreen->addPlacement(pixmap, rows, cols, -1, -1, TerminalGraphicsPlacement_t::iTerm, true, moveCursor); } + + if (attribute == PointerShape) { + static QMap cursorShapes = { + // CSS shapes + {QLatin1String("default"), Qt::ArrowCursor}, + + {QLatin1String("context-menu"), Qt::ArrowCursor}, // no exact match + {QLatin1String("help"), Qt::WhatsThisCursor}, + {QLatin1String("pointer"), Qt::PointingHandCursor}, + {QLatin1String("progress"), Qt::BusyCursor}, + {QLatin1String("wait"), Qt::WaitCursor}, + + {QLatin1String("cell"), Qt::ArrowCursor}, // no exact match + {QLatin1String("crosshair"), Qt::CrossCursor}, + {QLatin1String("text"), Qt::IBeamCursor}, + {QLatin1String("vertical-text"), Qt::IBeamCursor}, // no exact match + + {QLatin1String("alias"), Qt::DragLinkCursor}, + {QLatin1String("copy"), Qt::DragCopyCursor}, + {QLatin1String("move"), Qt::DragMoveCursor}, + {QLatin1String("no-drop"), Qt::ForbiddenCursor}, // no exact match + {QLatin1String("not-allowed"), Qt::ForbiddenCursor}, + {QLatin1String("grab"), Qt::OpenHandCursor}, + {QLatin1String("grabbing"), Qt::ClosedHandCursor}, + + {QLatin1String("all-scroll"), Qt::ArrowCursor}, // no exact match + {QLatin1String("col-resize"), Qt::ArrowCursor}, // no exact match + {QLatin1String("row-resize"), Qt::ArrowCursor}, // no exact match + + {QLatin1String("n-resize"), Qt::SizeVerCursor}, // no exact match + {QLatin1String("e-resize"), Qt::SizeHorCursor}, // no exact match + {QLatin1String("s-resize"), Qt::SizeVerCursor}, // no exact match + {QLatin1String("w-resize"), Qt::SizeHorCursor}, // no exact match + {QLatin1String("ne-resize"), Qt::SizeBDiagCursor}, // no exact match + {QLatin1String("nw-resize"), Qt::SizeFDiagCursor}, // no exact match + {QLatin1String("se-resize"), Qt::SizeFDiagCursor}, // no exact match + {QLatin1String("sw-resize"), Qt::SizeBDiagCursor}, // no exact match + + {QLatin1String("ew-resize"), Qt::SizeHorCursor}, + {QLatin1String("ns-resize"), Qt::SizeVerCursor}, + {QLatin1String("nesw-resize"), Qt::SizeBDiagCursor}, + {QLatin1String("nwse-resize"), Qt::SizeFDiagCursor}, + + {QLatin1String("zoom-in"), Qt::ArrowCursor}, // no exact match + {QLatin1String("zoom-out"), Qt::ArrowCursor}, // no exact match + + // XCursor shapes, taken from the Qt docs + {QLatin1String("left_ptr"), Qt::ArrowCursor}, + {QLatin1String("up_arrow"), Qt::UpArrowCursor}, + {QLatin1String("cross"), Qt::CrossCursor}, + {QLatin1String("ibeam"), Qt::IBeamCursor}, + {QLatin1String("wait"), Qt::WaitCursor}, + {QLatin1String("left_ptr_watch"), Qt::BusyCursor}, + {QLatin1String("forbidden"), Qt::ForbiddenCursor}, + {QLatin1String("pointing_hand"), Qt::PointingHandCursor}, + {QLatin1String("whats_this"), Qt::WhatsThisCursor}, + {QLatin1String("dnd-move"), Qt::DragMoveCursor}, + {QLatin1String("move"), Qt::DragMoveCursor}, + {QLatin1String("dnd-link"), Qt::DragLinkCursor}, + {QLatin1String("link"), Qt::DragLinkCursor}, + {QLatin1String("size_ver"), Qt::SizeVerCursor}, + {QLatin1String("size_hor"), Qt::SizeHorCursor}, + {QLatin1String("size_bdiag"), Qt::SizeBDiagCursor}, + {QLatin1String("size_fdiag"), Qt::SizeFDiagCursor}, + {QLatin1String("size_all"), Qt::SizeAllCursor}, + {QLatin1String("split_v"), Qt::SplitVCursor}, + {QLatin1String("split_h"), Qt::SplitHCursor}, + {QLatin1String("openhand"), Qt::OpenHandCursor}, + {QLatin1String("closedhand"), Qt::ClosedHandCursor}, + {QLatin1String("dnd-copy"), Qt::DragCopyCursor}, + {QLatin1String("copy"), Qt::DragCopyCursor}, + }; + + if (!cursorShapes.contains(value)) { + _currentScreen->currentTerminalDisplay()->resetCursor(); + } else { + _currentScreen->currentTerminalDisplay()->setPointerShape(cursorShapes[value]); + } + + return; + } + + if (attribute == ConEmu) { + const auto list = QStringView(value).split(QLatin1Char(';')); + if (list.size() >= 2) { + // Progress indicator. + if (list.at(0) == QLatin1Char('4')) { + bool ok; + const int st = list.at(1).toInt(&ok); + if (ok) { + switch (st) { + case 0: + Q_EMIT progressHidden(); + break; + case 1: + if (list.size() >= 3) { + const int pr = list.at(2).toInt(&ok); + if (ok && pr >= 0 && pr <= 100) { + Q_EMIT progressChanged(pr); + } + } + break; + case 2: + // TODO error state. + break; + case 3: + // TODO indeterminate state. + Q_EMIT progressHidden(); + break; + case 4: + // TODO paused state. + break; + } + } + } + } + } + _pendingSessionAttributesUpdates[attribute] = value; _sessionAttributesUpdateTimer->start(20); } -#if HAVE_QTMULTIMEDIA void Vt102Emulation::deletePlayer(QMediaPlayer::MediaStatus mediaStatus) { if (mediaStatus == QMediaPlayer::EndOfMedia || mediaStatus == QMediaPlayer::InvalidMedia) { @@ -1349,7 +1867,6 @@ void Vt102Emulation::deletePlayer(QMediaPlayer::MediaStatus mediaStatus) player = nullptr; } } -#endif void Vt102Emulation::updateSessionAttributes() { @@ -1602,6 +2119,7 @@ void Vt102Emulation::processToken(int token, int p, int q) case token_csi_ps('x', 0) : reportTerminalParms ( 2); break; //VT100 case token_csi_ps('x', 1) : reportTerminalParms ( 3); break; //VT100 + case token_csi_pn('`' ) : _currentScreen->setCursorX (p ); break; case token_csi_pn('@' ) : _currentScreen->insertChars (p ); break; case token_csi_pn('A' ) : _currentScreen->cursorUp (p ); break; //VT100 case token_csi_pn('B' ) : _currentScreen->cursorDown (p ); break; //VT100 @@ -1619,9 +2137,21 @@ void Vt102Emulation::processToken(int token, int p, int q) case token_csi_pn('T' ) : _currentScreen->scrollDown (p ); break; case token_csi_pn('X' ) : _currentScreen->eraseChars (p ); break; case token_csi_pn('Z' ) : _currentScreen->backtab (p ); break; + case token_csi_pn('a' ) : + if (p == 0) { + ++p; + } + _currentScreen->setCursorX(_currentScreen->getCursorX()+1+p); + break; case token_csi_pn('b' ) : _currentScreen->repeatChars (p ); break; case token_csi_pn('c' ) : reportTerminalType ( ); break; //VT100 case token_csi_pn('d' ) : _currentScreen->setCursorY (p ); break; //LINUX + case token_csi_pn('e' ) : + if (p == 0) { + ++p; + } + _currentScreen->setCursorY(_currentScreen->getCursorY()+1+p); + break; case token_csi_pn('f' ) : _currentScreen->setCursorYX (p, q); break; //VT100 case token_csi_pn('r' ) : setMargins (p, q); break; //VT100 case token_csi_pn('y' ) : /* IGNORED: Confidence test */ break; //VT100 @@ -1750,6 +2280,11 @@ void Vt102Emulation::processToken(int token, int p, int q) case token_csi_pr('s', 1015) : saveMode (MODE_Mouse1015); break; //URXVT case token_csi_pr('r', 1015) : restoreMode (MODE_Mouse1015); break; //URXVT + case token_csi_pr('h', 1016) : setMode (MODE_Mouse1016); break; //XTERM + case token_csi_pr('l', 1016) : resetMode (MODE_Mouse1016); break; //XTERM + case token_csi_pr('s', 1016) : saveMode (MODE_Mouse1016); break; //XTERM + case token_csi_pr('r', 1016) : restoreMode (MODE_Mouse1016); break; //XTERM + case token_csi_pr('h', 1034) : /* IGNORED: 8bitinput activation */ break; //XTERM case token_csi_pr('h', 1047) : setMode (MODE_AppScreen); break; //XTERM @@ -1773,6 +2308,12 @@ void Vt102Emulation::processToken(int token, int p, int q) case token_csi_pr('s', 2004) : saveMode (MODE_BracketedPaste); break; //XTERM case token_csi_pr('r', 2004) : restoreMode (MODE_BracketedPaste); break; //XTERM + case token_csi_pr('h', 9001) : setMode (MODE_Win32Input); break; // win32-input-mode + case token_csi_pr('l', 9001) : resetMode (MODE_Win32Input); break; // win32-input-mode + + case token_csi_pr('h', 2026): setMode (MODE_SynchronizedUpdate); break; //ITERM2 + case token_csi_pr('l', 2026): resetMode (MODE_SynchronizedUpdate); break; //ITERM2 + case token_csi_pr('S', 1) : if(!p) sixelQuery (1 ); break; case token_csi_pr('S', 2) : if(!p) sixelQuery (2 ); break; // Set Cursor Style (DECSCUSR), VT520, with the extra xterm sequences @@ -1979,6 +2520,7 @@ void Vt102Emulation::processGraphicsToken(int tokenSize) cols, -1, -1, + TerminalGraphicsPlacement_t::Kitty, true, keys['C'] == 0, true, @@ -2192,6 +2734,10 @@ void Vt102Emulation::reportAnswerBack() void Vt102Emulation::sendMouseEvent(int cb, int cx, int cy, int eventType) { + if (getMode(MODE_Mouse1016)) { + return; + } + if (cx < 1 || cy < 1) { return; } @@ -2299,6 +2845,39 @@ void Vt102Emulation::sendMouseEvent(int cb, int cx, int cy, int eventType) sendString(command); } +void Vt102Emulation::sendExactMouseEvent(int cb, int x, int y, int eventType) +{ + if (!getMode(MODE_Mouse1016)) + return; + + // Don't send move/drag events if only press and release requested + if (eventType == 1 && getMode(MODE_Mouse1000)) { + return; + } + + // Don't send move with no button pressed if button-motion requested + if ((cb & 3) == 3 && getMode(MODE_Mouse1002)) { + return; + } + + // With the exception of the 1006 mode, button release is encoded in cb. + // Note that if multiple extensions are enabled, the 1006 is used, so it's okay to check for only that. + if (eventType == 2 && !getMode(MODE_Mouse1006)) { + cb &= ~3; + cb |= 3; + } + + // Mouse motion handling + if ((getMode(MODE_Mouse1002) || getMode(MODE_Mouse1003)) && eventType == 1) { + cb += 0x20; // add 32 to signify motion event + } + char command[40]; + command[0] = '\0'; + snprintf(command, sizeof(command), "\033[<%d;%d;%d%c", cb, x, y, eventType == 2 ? 'm' : 'M'); + + sendString(command); +} + void Vt102Emulation::emulateUpDown(int up, KeyboardTranslator::Entry entry, QByteArray &textToSend, int toCol) { if (up == 0) @@ -2328,7 +2907,7 @@ void Vt102Emulation::emulateUpDown(int up, KeyboardTranslator::Entry entry, QByt lineProperties.removeLast(); } int num = up > 0 ? cuX - targetCol : targetCol - cuX; - for (LineProperty i : lineProperties) { + for (LineProperty i : std::as_const(lineProperties)) { num += i.length + 1 - i.flags.f.wrapped; } for (int i = 0; i < num; i++) { @@ -2361,15 +2940,231 @@ void Vt102Emulation::sendText(const QString &text) void Vt102Emulation::sendKeyEvent(QKeyEvent *event) { - const Qt::KeyboardModifiers modifiers = event->modifiers(); - KeyboardTranslator::States states = KeyboardTranslator::NoState; - TerminalDisplay *currentView = _currentScreen->currentTerminalDisplay(); bool isReadOnly = false; if (currentView != nullptr) { isReadOnly = currentView->getReadOnly(); } +#ifdef HAVE_XKBCOMMON + if (getMode(MODE_Win32Input) && _win32InputModeAvailable && + event->nativeScanCode() && !isReadOnly && (event->text().length() <= 1)) { + + bool is_key_down = (event->type() == QEvent::KeyPress); + + // X11 keycodes are offset by 8 from evdev and Wayland scancodes. + const xkb_keycode_t keycode = event->nativeScanCode() + + (QGuiApplication::platformName() == QLatin1String("xcb") ? 8 : 0); + + /* To correctly determine the Virtual Key Code (which represents a physical key, + * e.g. VK_1 regardless of whether '1' or '!' is produced), we need the base keysym. + * We achieve this by checking the keysym first, and if it is a Shift key, + * we do NOT update the US state. This keeps the state "Shift-less", so subsequent + * lookups for '1' return '1' instead of '!'. CapsLock etc. are still updated. */ + xkb_keysym_t keysym_us = xkb_state_key_get_one_sym(_xkbData.state_us, keycode); + + if (keysym_us != XKB_KEY_Shift_L && keysym_us != XKB_KEY_Shift_R) { + xkb_state_update_key(_xkbData.state_us, keycode, + is_key_down ? XKB_KEY_DOWN : XKB_KEY_UP); + /* Re-fetch in case a modifier (like CapsLock) changed the result */ + keysym_us = xkb_state_key_get_one_sym(_xkbData.state_us, keycode); + } + + quint16 virtualKeyCode = 0; + quint16 scanCode = 0; + quint32 controlKeyState = 0; + bool modifier = false; + + switch (keysym_us) { + case XKB_KEY_BackSpace: virtualKeyCode = VK_BACK; break; + case XKB_KEY_Tab: virtualKeyCode = VK_TAB; break; + case XKB_KEY_Return: virtualKeyCode = VK_RETURN; break; + case XKB_KEY_Pause: virtualKeyCode = VK_PAUSE; break; + case XKB_KEY_Scroll_Lock: virtualKeyCode = VK_SCROLL; break; + case XKB_KEY_Escape: virtualKeyCode = VK_ESCAPE; break; + case XKB_KEY_Shift_L: + virtualKeyCode = VK_SHIFT; + scanCode = LEFT_SHIFT_SCAN_CODE; + if (is_key_down) controlKeyState |= SHIFT_PRESSED; + modifier = true; + break; + case XKB_KEY_Shift_R: + virtualKeyCode = VK_SHIFT; + scanCode = RIGHT_SHIFT_SCAN_CODE; + if (is_key_down) controlKeyState |= SHIFT_PRESSED; + modifier = true; + break; + case XKB_KEY_Control_L: + virtualKeyCode = VK_CONTROL; + if (is_key_down) controlKeyState |= LEFT_CTRL_PRESSED; + modifier = true; + break; + case XKB_KEY_Control_R: + virtualKeyCode = VK_CONTROL; + _isRightCtrlPressed = is_key_down; + if (is_key_down) controlKeyState |= RIGHT_CTRL_PRESSED; + controlKeyState |= ENHANCED_KEY; + modifier = true; + break; + case XKB_KEY_Alt_L: + virtualKeyCode = VK_MENU; + if (is_key_down) controlKeyState |= LEFT_ALT_PRESSED; + modifier = true; + break; + case XKB_KEY_Alt_R: + virtualKeyCode = VK_MENU; + _isRightAltPressed = is_key_down; + if (is_key_down) controlKeyState |= RIGHT_ALT_PRESSED; + controlKeyState |= ENHANCED_KEY; + modifier = true; + break; + case XKB_KEY_Caps_Lock: virtualKeyCode = VK_CAPITAL; break; + case XKB_KEY_Num_Lock: virtualKeyCode = VK_NUMLOCK; break; + case XKB_KEY_Meta_L: virtualKeyCode = VK_LWIN; break; + case XKB_KEY_Meta_R: virtualKeyCode = VK_RWIN; break; + case XKB_KEY_Page_Up: virtualKeyCode = VK_PRIOR; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Page_Down: virtualKeyCode = VK_NEXT; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_End: virtualKeyCode = VK_END; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Home: virtualKeyCode = VK_HOME; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Left: virtualKeyCode = VK_LEFT; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Up: virtualKeyCode = VK_UP; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Right: virtualKeyCode = VK_RIGHT; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Down: virtualKeyCode = VK_DOWN; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Insert: virtualKeyCode = VK_INSERT; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Delete: virtualKeyCode = VK_DELETE; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_Print: virtualKeyCode = VK_PRINT; break; + case XKB_KEY_KP_Page_Up: virtualKeyCode = VK_PRIOR; break; + case XKB_KEY_KP_Page_Down: virtualKeyCode = VK_NEXT; break; + case XKB_KEY_KP_End: virtualKeyCode = VK_END; break; + case XKB_KEY_KP_Home: virtualKeyCode = VK_HOME; break; + case XKB_KEY_KP_Left: virtualKeyCode = VK_LEFT; break; + case XKB_KEY_KP_Up: virtualKeyCode = VK_UP; break; + case XKB_KEY_KP_Right: virtualKeyCode = VK_RIGHT; break; + case XKB_KEY_KP_Down: virtualKeyCode = VK_DOWN; break; + case XKB_KEY_KP_Insert: virtualKeyCode = VK_INSERT; break; + case XKB_KEY_KP_Delete: virtualKeyCode = VK_DELETE; break; + case XKB_KEY_KP_Begin: virtualKeyCode = VK_NUMPAD5; break; + case XKB_KEY_KP_0: virtualKeyCode = VK_NUMPAD0; break; + case XKB_KEY_KP_1: virtualKeyCode = VK_NUMPAD1; break; + case XKB_KEY_KP_2: virtualKeyCode = VK_NUMPAD2; break; + case XKB_KEY_KP_3: virtualKeyCode = VK_NUMPAD3; break; + case XKB_KEY_KP_4: virtualKeyCode = VK_NUMPAD4; break; + case XKB_KEY_KP_5: virtualKeyCode = VK_NUMPAD5; break; + case XKB_KEY_KP_6: virtualKeyCode = VK_NUMPAD6; break; + case XKB_KEY_KP_7: virtualKeyCode = VK_NUMPAD7; break; + case XKB_KEY_KP_8: virtualKeyCode = VK_NUMPAD8; break; + case XKB_KEY_KP_9: virtualKeyCode = VK_NUMPAD9; break; + case XKB_KEY_KP_Decimal: virtualKeyCode = VK_DECIMAL; break; + case XKB_KEY_KP_Add: virtualKeyCode = VK_ADD; break; + case XKB_KEY_KP_Subtract: virtualKeyCode = VK_SUBTRACT; break; + case XKB_KEY_KP_Multiply: virtualKeyCode = VK_MULTIPLY; break; + case XKB_KEY_KP_Divide: virtualKeyCode = VK_DIVIDE; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_KP_Enter: virtualKeyCode = VK_RETURN; controlKeyState |= ENHANCED_KEY; break; + case XKB_KEY_a: case XKB_KEY_A: virtualKeyCode = 'A'; break; + case XKB_KEY_b: case XKB_KEY_B: virtualKeyCode = 'B'; break; + case XKB_KEY_c: case XKB_KEY_C: virtualKeyCode = 'C'; break; + case XKB_KEY_d: case XKB_KEY_D: virtualKeyCode = 'D'; break; + case XKB_KEY_e: case XKB_KEY_E: virtualKeyCode = 'E'; break; + case XKB_KEY_f: case XKB_KEY_F: virtualKeyCode = 'F'; break; + case XKB_KEY_g: case XKB_KEY_G: virtualKeyCode = 'G'; break; + case XKB_KEY_h: case XKB_KEY_H: virtualKeyCode = 'H'; break; + case XKB_KEY_i: case XKB_KEY_I: virtualKeyCode = 'I'; break; + case XKB_KEY_j: case XKB_KEY_J: virtualKeyCode = 'J'; break; + case XKB_KEY_k: case XKB_KEY_K: virtualKeyCode = 'K'; break; + case XKB_KEY_l: case XKB_KEY_L: virtualKeyCode = 'L'; break; + case XKB_KEY_m: case XKB_KEY_M: virtualKeyCode = 'M'; break; + case XKB_KEY_n: case XKB_KEY_N: virtualKeyCode = 'N'; break; + case XKB_KEY_o: case XKB_KEY_O: virtualKeyCode = 'O'; break; + case XKB_KEY_p: case XKB_KEY_P: virtualKeyCode = 'P'; break; + case XKB_KEY_q: case XKB_KEY_Q: virtualKeyCode = 'Q'; break; + case XKB_KEY_r: case XKB_KEY_R: virtualKeyCode = 'R'; break; + case XKB_KEY_s: case XKB_KEY_S: virtualKeyCode = 'S'; break; + case XKB_KEY_t: case XKB_KEY_T: virtualKeyCode = 'T'; break; + case XKB_KEY_u: case XKB_KEY_U: virtualKeyCode = 'U'; break; + case XKB_KEY_v: case XKB_KEY_V: virtualKeyCode = 'V'; break; + case XKB_KEY_w: case XKB_KEY_W: virtualKeyCode = 'W'; break; + case XKB_KEY_x: case XKB_KEY_X: virtualKeyCode = 'X'; break; + case XKB_KEY_y: case XKB_KEY_Y: virtualKeyCode = 'Y'; break; + case XKB_KEY_z: case XKB_KEY_Z: virtualKeyCode = 'Z'; break; + case XKB_KEY_0: virtualKeyCode = '0'; break; + case XKB_KEY_1: virtualKeyCode = '1'; break; + case XKB_KEY_2: virtualKeyCode = '2'; break; + case XKB_KEY_3: virtualKeyCode = '3'; break; + case XKB_KEY_4: virtualKeyCode = '4'; break; + case XKB_KEY_5: virtualKeyCode = '5'; break; + case XKB_KEY_6: virtualKeyCode = '6'; break; + case XKB_KEY_7: virtualKeyCode = '7'; break; + case XKB_KEY_8: virtualKeyCode = '8'; break; + case XKB_KEY_9: virtualKeyCode = '9'; break; + case XKB_KEY_F1: virtualKeyCode = VK_F1; break; + case XKB_KEY_F2: virtualKeyCode = VK_F2; break; + case XKB_KEY_F3: virtualKeyCode = VK_F3; break; + case XKB_KEY_F4: virtualKeyCode = VK_F4; break; + case XKB_KEY_F5: virtualKeyCode = VK_F5; break; + case XKB_KEY_F6: virtualKeyCode = VK_F6; break; + case XKB_KEY_F7: virtualKeyCode = VK_F7; break; + case XKB_KEY_F8: virtualKeyCode = VK_F8; break; + case XKB_KEY_F9: virtualKeyCode = VK_F9; break; + case XKB_KEY_F10: virtualKeyCode = VK_F10; break; + case XKB_KEY_F11: virtualKeyCode = VK_F11; break; + case XKB_KEY_F12: virtualKeyCode = VK_F12; break; + case XKB_KEY_space: virtualKeyCode = VK_SPACE; break; + case XKB_KEY_grave: virtualKeyCode = VK_OEM_3; break; + case XKB_KEY_minus: virtualKeyCode = VK_OEM_MINUS; break; + case XKB_KEY_equal: virtualKeyCode = VK_OEM_PLUS; break; + case XKB_KEY_bracketleft: virtualKeyCode = VK_OEM_4; break; + case XKB_KEY_bracketright: virtualKeyCode = VK_OEM_6; break; + case XKB_KEY_semicolon: virtualKeyCode = VK_OEM_1; break; + case XKB_KEY_apostrophe: virtualKeyCode = VK_OEM_7; break; + case XKB_KEY_backslash: virtualKeyCode = VK_OEM_5; break; + case XKB_KEY_comma: virtualKeyCode = VK_OEM_COMMA; break; + case XKB_KEY_period: virtualKeyCode = VK_OEM_PERIOD; break; + case XKB_KEY_slash: virtualKeyCode = VK_OEM_2; break; + } + + if (!modifier) { + if (event->modifiers() & Qt::ShiftModifier) { controlKeyState |= SHIFT_PRESSED; } + if (event->modifiers() & Qt::ControlModifier) { controlKeyState |= _isRightCtrlPressed ? RIGHT_CTRL_PRESSED : LEFT_CTRL_PRESSED; } + if (event->modifiers() & Qt::AltModifier) { controlKeyState |= _isRightAltPressed ? RIGHT_ALT_PRESSED : LEFT_ALT_PRESSED; } + } + + if (xkb_state_mod_name_is_active(_xkbData.state_us, XKB_MOD_NAME_CAPS, XKB_STATE_MODS_EFFECTIVE)) { controlKeyState |= CAPSLOCK_ON; } + if (xkb_state_mod_name_is_active(_xkbData.state_us, XKB_MOD_NAME_NUM, XKB_STATE_MODS_EFFECTIVE)) { controlKeyState |= NUMLOCK_ON; } + if (xkb_state_led_name_is_active(_xkbData.state_us, XKB_LED_NAME_SCROLL)) { controlKeyState |= SCROLLLOCK_ON; } + + uint uchar = 0; + if (!event->text().isEmpty()) + uchar = event->text().at(0).unicode(); + + char seq_buffer[128]; + + if (uchar > 0xFFFF) { + quint32 u_prime = uchar - 0x10000; + quint16 high_surrogate = (u_prime >> 10) + 0xD800; + quint16 low_surrogate = (u_prime & 0x3FF) + 0xDC00; + + int len1 = snprintf(seq_buffer, sizeof(seq_buffer), "\x1B[%d;%d;%d;%d;%d;%d_", + 0, 0, high_surrogate, is_key_down, controlKeyState, 1); + sendString(QByteArray(seq_buffer, len1)); + + int len2 = snprintf(seq_buffer, sizeof(seq_buffer), "\x1B[%d;%d;%d;%d;%d;%d_", + 0, 0, low_surrogate, is_key_down, controlKeyState, 1); + sendString(QByteArray(seq_buffer, len2)); + + } else { + int len = snprintf(seq_buffer, sizeof(seq_buffer), "\x1B[%d;%d;%d;%d;%d;%d_", + virtualKeyCode, scanCode, uchar, is_key_down, controlKeyState, 1); + sendString(QByteArray(seq_buffer, len)); + } + return; + } +#endif + + if (event->type() != QEvent::KeyPress) return; + + const Qt::KeyboardModifiers modifiers = event->modifiers(); + KeyboardTranslator::States states = KeyboardTranslator::NoState; + // get current states if (getMode(MODE_NewLine)) { states |= KeyboardTranslator::NewLineState; @@ -2427,7 +3222,7 @@ void Vt102Emulation::sendKeyEvent(QKeyEvent *event) } emulateUpDown(up ? 1 : -1, entry, textToSend, _targetCol); } else { - _targetCol = -1; // Any non Up/Down key clears the taget column for emulated movement. + _targetCol = -1; // Any non Up/Down key clears the target column for emulated movement. // special handling for the Alt (aka. Meta) modifier. pressing // Alt+[Character] results in Esc+[Character] being sent @@ -2470,8 +3265,8 @@ void Vt102Emulation::sendKeyEvent(QKeyEvent *event) } else if (!entry.text().isEmpty()) { textToSend += entry.text(true, modifiers); } else { - Q_ASSERT(_codec); - textToSend += _codec->fromUnicode(event->text()); + Q_ASSERT(_encoder.isValid()); + textToSend += _encoder.encode(event->text()); } } @@ -2645,6 +3440,8 @@ void Vt102Emulation::resetModes() saveMode(MODE_Mouse1006); resetMode(MODE_Mouse1015); saveMode(MODE_Mouse1015); + resetMode(MODE_Mouse1016); + saveMode(MODE_Mouse1016); resetMode(MODE_BracketedPaste); saveMode(MODE_BracketedPaste); @@ -2686,9 +3483,11 @@ void Vt102Emulation::setMode(int m) case MODE_Mouse1005: case MODE_Mouse1006: case MODE_Mouse1015: + case MODE_Mouse1016: _currentModes.mode[MODE_Mouse1005] = false; _currentModes.mode[MODE_Mouse1006] = false; _currentModes.mode[MODE_Mouse1015] = false; + _currentModes.mode[MODE_Mouse1016] = false; _currentModes.mode[m] = true; break; @@ -2696,6 +3495,10 @@ void Vt102Emulation::setMode(int m) Q_EMIT programBracketedPasteModeChanged(true); break; + case MODE_SynchronizedUpdate: + Q_EMIT programRequestedSynchronizedUpdate(true); + break; + case MODE_AppScreen: _screen[1]->setDefaultRendition(); _screen[1]->clearSelection(); @@ -2743,6 +3546,10 @@ void Vt102Emulation::resetMode(int m) Q_EMIT programBracketedPasteModeChanged(false); break; + case MODE_SynchronizedUpdate: + Q_EMIT programRequestedSynchronizedUpdate(false); + break; + case MODE_AppScreen: _screen[0]->clearSelection(); setScreen(0); @@ -2950,7 +3757,7 @@ void Vt102Emulation::SixelModeDisable() pixmap = pixmap.scaled(pixmap.width(), m_aspect.first * pixmap.height() / m_aspect.second); } int rows = -1, cols = -1; - _currentScreen->addPlacement(pixmap, rows, cols, row, col, m_SixelScrolling, m_SixelScrolling * 2, false); + _currentScreen->addPlacement(pixmap, rows, cols, row, col, TerminalGraphicsPlacement_t::Sixel, m_SixelScrolling, m_SixelScrolling * 2, false); } void Vt102Emulation::SixelColorChangeRGB(const int index, int red, int green, int blue) diff --git a/local/recipes/kde/konsole/source/src/Vt102Emulation.h b/local/recipes/kde/konsole/source/src/Vt102Emulation.h index 3784d60f64..3f9e2f9a1c 100644 --- a/local/recipes/kde/konsole/source/src/Vt102Emulation.h +++ b/local/recipes/kde/konsole/source/src/Vt102Emulation.h @@ -9,12 +9,9 @@ #define VT102EMULATION_H // Qt -#include "config-konsole.h" #include #include -#if HAVE_QTMULTIMEDIA #include -#endif #include #include #include @@ -25,6 +22,10 @@ #include "Screen.h" #include "keyboardtranslator/KeyboardTranslator.h" +#ifdef HAVE_XKBCOMMON +#include +#endif + class QTimer; class QKeyEvent; @@ -38,17 +39,18 @@ class QKeyEvent; #define MODE_Mouse1006 (MODES_SCREEN + 7) // 2nd Xterm-style extended coordinates #define MODE_Mouse1007 (MODES_SCREEN + 8) // XTerm Alternate Scroll mode; also check AlternateScrolling profile property #define MODE_Mouse1015 (MODES_SCREEN + 9) // Urxvt-style extended coordinates -#define MODE_Ansi (MODES_SCREEN + 10) // Use US Ascii for character sets G0-G3 (DECANM) -#define MODE_132Columns (MODES_SCREEN + 11) // 80 <-> 132 column mode switch (DECCOLM) -#define MODE_Allow132Columns (MODES_SCREEN + 12) // Allow DECCOLM mode -#define MODE_BracketedPaste (MODES_SCREEN + 13) // Xterm-style bracketed paste mode -#define MODE_Sixel (MODES_SCREEN + 14) // Xterm-style bracketed paste mode -#define MODE_total (MODES_SCREEN + 15) +#define MODE_Mouse1016 (MODES_SCREEN + 10) // 2nd Xterm-style extended coordinates (in pixels) +#define MODE_Ansi (MODES_SCREEN + 11) // Use US Ascii for character sets G0-G3 (DECANM) +#define MODE_132Columns (MODES_SCREEN + 12) // 80 <-> 132 column mode switch (DECCOLM) +#define MODE_Allow132Columns (MODES_SCREEN + 13) // Allow DECCOLM mode +#define MODE_BracketedPaste (MODES_SCREEN + 14) // Xterm-style bracketed paste mode +#define MODE_Sixel (MODES_SCREEN + 15) // Xterm-style bracketed paste mode +#define MODE_SynchronizedUpdate (MODES_SCREEN + 16) // Synchronized update in progress +#define MODE_Win32Input (MODES_SCREEN + 17) +#define MODE_total (MODES_SCREEN + 18) namespace Konsole { -extern unsigned short vt100_graphics[32]; - struct CharCodes { // coding info char charset[4]; // @@ -89,6 +91,7 @@ public Q_SLOTS: void sendText(const QString &text) override; void sendKeyEvent(QKeyEvent *) override; void sendMouseEvent(int buttons, int column, int line, int eventType) override; + void sendExactMouseEvent(int buttons, int x, int y, int eventType) override; void focusChanged(bool focused) override; void clearHistory() override; @@ -103,9 +106,7 @@ private Q_SLOTS: // pair in _pendingSessionAttributesUpdates. // Used to buffer multiple attribute updates in the current session void updateSessionAttributes(); -#if HAVE_QTMULTIMEDIA void deletePlayer(QMediaPlayer::MediaStatus); -#endif private: unsigned int applyCharset(uint c); @@ -131,7 +132,6 @@ private: void resetModes(); void resetTokenizer(); -#define MAX_TOKEN_LENGTH 256 // Max length of tokens (e.g. window title) void addToCurrentToken(uint cc); int tokenBufferPos; @@ -188,12 +188,19 @@ private: enum osc { // https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h2-Operating-System-Commands ReportColors = 4, + CursorColor = 12, + PointerShape = 22, + Clipboard = 52, + KittyNotification = 99, ResetColors = 104, + ResetCursorColor = 112, // https://gitlab.freedesktop.org/Per_Bothner/specifications/blob/master/proposals/semantic-prompts.md SemanticPrompts = 133, // https://chromium.googlesource.com/apps/libapps/+/master/hterm/doc/ControlSequences.md#OSC Notification = 777, Image = 1337, + // https://conemu.github.io/en/AnsiEscapeCodes.html#ConEmu_specific_OSC + ConEmu = 9, }; ParserStates _state = Ground; @@ -234,6 +241,18 @@ private: quint32 imageId; QMap savedKeys; +#ifdef HAVE_XKBCOMMON + struct XkbData { + struct xkb_context *context = nullptr; + struct xkb_keymap *keymap_us = nullptr; + struct xkb_state *state_us = nullptr; + }; + XkbData _xkbData; +#endif + bool _win32InputModeAvailable = true; + bool _isRightCtrlPressed = false; + bool _isRightAltPressed = false; + protected: virtual void reportDecodingError(int token); @@ -279,6 +298,33 @@ private: bool mode[MODE_total]; }; + static constexpr int NotificationActionNone = 0; + static constexpr int NotificationActionReport = 1; + static constexpr int NotificationActionFocus = 2; + + enum class KittyNotificationOption { + None, + Always, + Unfocused, + Invisible, + }; + + struct KittyNotificationState { + qint64 serial; + QString applicationName; + QString body; + QString title; + QList iconNames; + KittyNotificationOption option = KittyNotificationOption::Always; + int urgency = 1; + int action = NotificationActionNone; + int closeSignal = 0; + QList buttons; + }; + + qint64 _kittyNotificationSerial = 0; + QMap _kittyNotifications; + TerminalState _currentModes; TerminalState _savedModes; @@ -320,9 +366,7 @@ private: // For kitty graphics protocol - image cache int getFreeGraphicsImageId(); -#if HAVE_QTMULTIMEDIA QMediaPlayer *player; -#endif }; } diff --git a/local/recipes/kde/konsole/source/src/WinKeys.h b/local/recipes/kde/konsole/source/src/WinKeys.h new file mode 100644 index 0000000000..f9e04922fa --- /dev/null +++ b/local/recipes/kde/konsole/source/src/WinKeys.h @@ -0,0 +1,242 @@ + +/*** Constants required for win32-input-mode */ + +// Shift keys scan codes from https://aeb.win.tue.nl/linux/kbd/scancodes-1.html + +#define LEFT_SHIFT_SCAN_CODE 0x2A +#define RIGHT_SHIFT_SCAN_CODE 0x36 + +// dwControlKeyState bitmask values from https://github.com/wine-mirror/wine/blob/master/include/wincontypes.h + +#define RIGHT_ALT_PRESSED 0x0001 +#define LEFT_ALT_PRESSED 0x0002 +#define RIGHT_CTRL_PRESSED 0x0004 +#define LEFT_CTRL_PRESSED 0x0008 +#define SHIFT_PRESSED 0x0010 +#define NUMLOCK_ON 0x0020 +#define SCROLLLOCK_ON 0x0040 +#define CAPSLOCK_ON 0x0080 +#define ENHANCED_KEY 0x0100 + +// Virtual key codes from https://github.com/wine-mirror/wine/blob/master/include/winuser.rh + +/*** Virtual key codes ***/ +#define VK_LBUTTON 0x01 +#define VK_RBUTTON 0x02 +#define VK_CANCEL 0x03 +#define VK_MBUTTON 0x04 +#define VK_XBUTTON1 0x05 +#define VK_XBUTTON2 0x06 +/* 0x07 Undefined */ +#define VK_BACK 0x08 +#define VK_TAB 0x09 +/* 0x0A-0x0B Undefined */ +#define VK_CLEAR 0x0C +#define VK_RETURN 0x0D +/* 0x0E-0x0F Undefined */ +#define VK_SHIFT 0x10 +#define VK_CONTROL 0x11 +#define VK_MENU 0x12 +#define VK_PAUSE 0x13 +#define VK_CAPITAL 0x14 + +#define VK_KANA 0x15 +#define VK_HANGEUL VK_KANA +#define VK_HANGUL VK_KANA +/* 0x16 Undefined */ +#define VK_JUNJA 0x17 +#define VK_FINAL 0x18 +#define VK_HANJA 0x19 +#define VK_KANJI VK_HANJA + +/* 0x1A Undefined */ +#define VK_ESCAPE 0x1B + +#define VK_CONVERT 0x1C +#define VK_NONCONVERT 0x1D +#define VK_ACCEPT 0x1E +#define VK_MODECHANGE 0x1F + +#define VK_SPACE 0x20 +#define VK_PRIOR 0x21 +#define VK_NEXT 0x22 +#define VK_END 0x23 +#define VK_HOME 0x24 +#define VK_LEFT 0x25 +#define VK_UP 0x26 +#define VK_RIGHT 0x27 +#define VK_DOWN 0x28 +#define VK_SELECT 0x29 +#define VK_PRINT 0x2A /* OEM specific in Windows 3.1 SDK */ +#define VK_EXECUTE 0x2B +#define VK_SNAPSHOT 0x2C +#define VK_INSERT 0x2D +#define VK_DELETE 0x2E +#define VK_HELP 0x2F +/* VK_0 - VK-9 0x30-0x39 Use ASCII instead */ +/* 0x3A-0x40 Undefined */ +/* VK_A - VK_Z 0x41-0x5A Use ASCII instead */ +#define VK_LWIN 0x5B +#define VK_RWIN 0x5C +#define VK_APPS 0x5D +/* 0x5E Unassigned */ +#define VK_SLEEP 0x5F +#define VK_NUMPAD0 0x60 +#define VK_NUMPAD1 0x61 +#define VK_NUMPAD2 0x62 +#define VK_NUMPAD3 0x63 +#define VK_NUMPAD4 0x64 +#define VK_NUMPAD5 0x65 +#define VK_NUMPAD6 0x66 +#define VK_NUMPAD7 0x67 +#define VK_NUMPAD8 0x68 +#define VK_NUMPAD9 0x69 +#define VK_MULTIPLY 0x6A +#define VK_ADD 0x6B +#define VK_SEPARATOR 0x6C +#define VK_SUBTRACT 0x6D +#define VK_DECIMAL 0x6E +#define VK_DIVIDE 0x6F +#define VK_F1 0x70 +#define VK_F2 0x71 +#define VK_F3 0x72 +#define VK_F4 0x73 +#define VK_F5 0x74 +#define VK_F6 0x75 +#define VK_F7 0x76 +#define VK_F8 0x77 +#define VK_F9 0x78 +#define VK_F10 0x79 +#define VK_F11 0x7A +#define VK_F12 0x7B +#define VK_F13 0x7C +#define VK_F14 0x7D +#define VK_F15 0x7E +#define VK_F16 0x7F +#define VK_F17 0x80 +#define VK_F18 0x81 +#define VK_F19 0x82 +#define VK_F20 0x83 +#define VK_F21 0x84 +#define VK_F22 0x85 +#define VK_F23 0x86 +#define VK_F24 0x87 +#define VK_NAVIGATION_VIEW 0x88 +#define VK_NAVIGATION_MENU 0x89 +#define VK_NAVIGATION_UP 0x8A +#define VK_NAVIGATION_DOWN 0x8B +#define VK_NAVIGATION_LEFT 0x8C +#define VK_NAVIGATION_RIGHT 0x8D +#define VK_NAVIGATION_ACCEPT 0x8E +#define VK_NAVIGATION_CANCEL 0x8F +#define VK_NUMLOCK 0x90 +#define VK_SCROLL 0x91 +#define VK_OEM_NEC_EQUAL 0x92 +#define VK_OEM_FJ_JISHO 0x92 +#define VK_OEM_FJ_MASSHOU 0x93 +#define VK_OEM_FJ_TOUROKU 0x94 +#define VK_OEM_FJ_LOYA 0x95 +#define VK_OEM_FJ_ROYA 0x96 +/* 0x97-0x9F Unassigned */ +/* + * differencing between right and left shift/control/alt key. + * Used only by GetAsyncKeyState() and GetKeyState(). + */ +#define VK_LSHIFT 0xA0 +#define VK_RSHIFT 0xA1 +#define VK_LCONTROL 0xA2 +#define VK_RCONTROL 0xA3 +#define VK_LMENU 0xA4 +#define VK_RMENU 0xA5 + +#define VK_BROWSER_BACK 0xA6 +#define VK_BROWSER_FORWARD 0xA7 +#define VK_BROWSER_REFRESH 0xA8 +#define VK_BROWSER_STOP 0xA9 +#define VK_BROWSER_SEARCH 0xAA +#define VK_BROWSER_FAVORITES 0xAB +#define VK_BROWSER_HOME 0xAC +#define VK_VOLUME_MUTE 0xAD +#define VK_VOLUME_DOWN 0xAE +#define VK_VOLUME_UP 0xAF +#define VK_MEDIA_NEXT_TRACK 0xB0 +#define VK_MEDIA_PREV_TRACK 0xB1 +#define VK_MEDIA_STOP 0xB2 +#define VK_MEDIA_PLAY_PAUSE 0xB3 +#define VK_LAUNCH_MAIL 0xB4 +#define VK_LAUNCH_MEDIA_SELECT 0xB5 +#define VK_LAUNCH_APP1 0xB6 +#define VK_LAUNCH_APP2 0xB7 + +/* 0xB8-0xB9 Unassigned */ +#define VK_OEM_1 0xBA +#define VK_OEM_PLUS 0xBB +#define VK_OEM_COMMA 0xBC +#define VK_OEM_MINUS 0xBD +#define VK_OEM_PERIOD 0xBE +#define VK_OEM_2 0xBF +#define VK_OEM_3 0xC0 +/* 0xC1-0xC2 Unassigned */ +#define VK_GAMEPAD_A 0xC3 +#define VK_GAMEPAD_B 0xC4 +#define VK_GAMEPAD_X 0xC5 +#define VK_GAMEPAD_Y 0xC6 +#define VK_GAMEPAD_RIGHT_SHOULDER 0xC7 +#define VK_GAMEPAD_LEFT_SHOULDER 0xC8 +#define VK_GAMEPAD_LEFT_TRIGGER 0xC9 +#define VK_GAMEPAD_RIGHT_TRIGGER 0xCA +#define VK_GAMEPAD_DPAD_UP 0xCB +#define VK_GAMEPAD_DPAD_DOWN 0xCC +#define VK_GAMEPAD_DPAD_LEFT 0xCD +#define VK_GAMEPAD_DPAD_RIGHT 0xCE +#define VK_GAMEPAD_MENU 0xCF +#define VK_GAMEPAD_VIEW 0xD0 +#define VK_GAMEPAD_LEFT_THUMBSTICK_BUTTON 0xD1 +#define VK_GAMEPAD_RIGHT_THUMBSTICK_BUTTON 0xD2 +#define VK_GAMEPAD_LEFT_THUMBSTICK_UP 0xD3 +#define VK_GAMEPAD_LEFT_THUMBSTICK_DOWN 0xD4 +#define VK_GAMEPAD_LEFT_THUMBSTICK_RIGHT 0xD5 +#define VK_GAMEPAD_LEFT_THUMBSTICK_LEFT 0xD6 +#define VK_GAMEPAD_RIGHT_THUMBSTICK_UP 0xD7 +#define VK_GAMEPAD_RIGHT_THUMBSTICK_DOWN 0xD8 +#define VK_GAMEPAD_RIGHT_THUMBSTICK_RIGHT 0xD9 +#define VK_GAMEPAD_RIGHT_THUMBSTICK_LEFT 0xDA +#define VK_OEM_4 0xDB +#define VK_OEM_5 0xDC +#define VK_OEM_6 0xDD +#define VK_OEM_7 0xDE +#define VK_OEM_8 0xDF +/* 0xE0 OEM specific */ +#define VK_OEM_AX 0xE1 /* "AX" key on Japanese AX keyboard */ +#define VK_OEM_102 0xE2 /* "<>" or "\|" on RT 102-key keyboard */ +#define VK_ICO_HELP 0xE3 /* Help key on ICO */ +#define VK_ICO_00 0xE4 /* 00 key on ICO */ +#define VK_PROCESSKEY 0xE5 +#define VK_ICO_CLEAR 0xE6 + +#define VK_PACKET 0xE7 +/* 0xE8 Unassigned */ + +#define VK_OEM_RESET 0xE9 +#define VK_OEM_JUMP 0xEA +#define VK_OEM_PA1 0xEB +#define VK_OEM_PA2 0xEC +#define VK_OEM_PA3 0xED +#define VK_OEM_WSCTRL 0xEE +#define VK_OEM_CUSEL 0xEF +#define VK_OEM_ATTN 0xF0 +#define VK_OEM_FINISH 0xF1 +#define VK_OEM_COPY 0xF2 +#define VK_OEM_AUTO 0xF3 +#define VK_OEM_ENLW 0xF4 +#define VK_OEM_BACKTAB 0xF5 +#define VK_ATTN 0xF6 +#define VK_CRSEL 0xF7 +#define VK_EXSEL 0xF8 +#define VK_EREOF 0xF9 +#define VK_PLAY 0xFA +#define VK_ZOOM 0xFB +#define VK_NONAME 0xFC +#define VK_PA1 0xFD +#define VK_OEM_CLEAR 0xFE +/* 0xFF Unassigned */ diff --git a/local/recipes/kde/konsole/source/src/autotests/CMakeLists.txt b/local/recipes/kde/konsole/source/src/autotests/CMakeLists.txt index df4221219e..ccf388d01f 100644 --- a/local/recipes/kde/konsole/source/src/autotests/CMakeLists.txt +++ b/local/recipes/kde/konsole/source/src/autotests/CMakeLists.txt @@ -1,8 +1,18 @@ include(ECMAddTests) +if(KONSOLE_HAVE_XKBCOMMON) + add_compile_definitions(HAVE_XKBCOMMON) + + list(APPEND KONSOLE_TEST_LIBS ${XKBCOMMON_LIBRARIES}) +endif() + set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}) -set(KONSOLE_TEST_LIBS Qt::Test konsoleprivate konsolecharacters konsoledecoders) +set(KONSOLE_TEST_LIBS Qt::Test konsoleprivate konsolecharacters konsoledecoders konsoleapp) + +if (CMAKE_SYSTEM_NAME MATCHES "OpenBSD") + set(KONSOLE_TEST_LIBS ${KONSOLE_TEST_LIBS} kvm) +endif() # Temporary bypass for BKO 432379 if(BUILD_SHARED_LIBS) @@ -43,5 +53,6 @@ ecm_add_tests( SessionTest.cpp TerminalInterfaceTest.cpp TerminalTest.cpp + ViewManagerTest.cpp LINK_LIBRARIES ${KONSOLE_TEST_LIBS} KF6::Parts ) diff --git a/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.cpp b/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.cpp index 48473c06d0..417c351f0a 100644 --- a/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.cpp @@ -5,6 +5,7 @@ */ #include "HotSpotFilterTest.h" +#include "filterHotSpots/HotSpot.h" #include QTEST_GUILESS_MAIN(HotSpotFilterTest) @@ -95,6 +96,8 @@ void HotSpotFilterTest::testUrlFilterRegex_data() QTest::newRow("query_with_question_marks") << "ldap://[2001:db8::7]/c=GB?objectClass?one" << "ldap://[2001:db8::7]/c=GB?objectClass?one" << true; + QTest::newRow("two_fragments") << "https://example.com#1#2" + << "https://example.com#1" << true; QTest::newRow("path_with_parens") << "https://en.wikipedia.org/wiki/C_(programming_language)" << "https://en.wikipedia.org/wiki/C_(programming_language)" << true; @@ -122,4 +125,78 @@ void HotSpotFilterTest::testUrlFilterRegex() } } +void HotSpotFilterTest::testUrlFilter_data() +{ + QTest::addColumn("url"); + QTest::addColumn("expectedUrl"); + QTest::addColumn("matchResult"); + + // If no invalid character is found at the end, the resultUrl should equal the FullUrlRegExp match. + QTest::newRow("url_simple") << " https://api.kde.org" + << "https://api.kde.org" << true; + QTest::newRow("url_with_port") << "\nhttps://api.kde.org:2098" + << "https://api.kde.org:2098" << true; + QTest::newRow("empty_query") << "http://example.com/?" + << "http://example.com/?" << true; + QTest::newRow("empty_fragment") << "http://example.com/#" + << "http://example.com/#" << true; + QTest::newRow("url_all_bells") << " https://user:pass@api.kde.org:2098/path/to/somewhere?somequery=foo#fragment" + << "https://user:pass@api.kde.org:2098/path/to/somewhere?somequery=foo#fragment" << true; + + // with an invalid character at the end + QTest::newRow("url_with_single_quote_end") << "https://example.com'" + << "https://example.com" << true; + QTest::newRow("url_with_comma_end") << "https://example.com," + << "https://example.com" << true; + QTest::newRow("url_with_dot_end") << "https://example.com." + << "https://example.com" << true; + QTest::newRow("url_with_colon_end") << "https://example.com/:" + << "https://example.com/" << true; + QTest::newRow("url_with_semicolon_end") << "https://example.com;" + << "https://example.com" << true; + + // complex cases + QTest::newRow("url_with_double_dot_end") << "https://example.com.." + << "https://example.com" << true; + QTest::newRow("url_with_dot_start_and_end") << ".https://example.com." + << "https://example.com" << true; + QTest::newRow("url_with_single_quote_comma_end") << "'https://example.com'," + << "https://example.com" << true; + QTest::newRow("url_with_double_quote_comma_end") << "\"https://example.com\"," + << "https://example.com" << true; + QTest::newRow("url_with_single_quote_inside") << "'https://en.wikipedia.org/wiki/Earth's_rotation'," + << "https://en.wikipedia.org/wiki/Earth's_rotation" << true; +} + +void HotSpotFilterTest::testUrlFilter() +{ + QFETCH(QString, url); + QFETCH(QString, expectedUrl); + QFETCH(bool, matchResult); + + const QRegularExpression ®ex = Konsole::UrlFilter::FullUrlRegExp; + const QRegularExpressionMatch match = regex.match(url); + // qDebug() << match; + + QCOMPARE(match.hasMatch(), matchResult); + if (matchResult) { + auto capturedText = match.capturedTexts()[0]; + + // The capturedText is placed at the location from (0, 0) to (0, length). + // After processing, the resulting position is extracted to obtain resultUrl. + int startLine = 0; + int startColumn = 0; + int endLine = 0; + int endColumn = capturedText.length(); + + QSharedPointer hotSpot = Konsole::UrlFilter().newHotSpot(startLine, startColumn, endLine, endColumn, match.capturedTexts()); + + int resultStartColumn = hotSpot->startColumn(); + int resultEndColumn = hotSpot->endColumn(); + + QString resultUrl = capturedText.mid(resultStartColumn, resultEndColumn - resultStartColumn); + QCOMPARE(resultUrl, expectedUrl); + } +} + #include "moc_HotSpotFilterTest.cpp" diff --git a/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.h b/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.h index 728ebbe40b..a207b0d540 100644 --- a/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.h +++ b/local/recipes/kde/konsole/source/src/autotests/HotSpotFilterTest.h @@ -16,6 +16,9 @@ class HotSpotFilterTest : public QObject private Q_SLOTS: void testUrlFilterRegex_data(); void testUrlFilterRegex(); + + void testUrlFilter_data(); + void testUrlFilter(); }; #endif // HOTSPOTFILTERTEST_H diff --git a/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.cpp b/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.cpp index 8dc18c27f4..a75c06307d 100644 --- a/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.cpp @@ -7,7 +7,6 @@ // Own #include "KeyboardTranslatorTest.h" -#include "keyboardtranslator/FallbackKeyboardTranslator.h" #include "keyboardtranslator/KeyboardTranslatorReader.h" // KDE @@ -88,31 +87,6 @@ void KeyboardTranslatorTest::testEntryTextWildcards() QCOMPARE(entry.text(wildcards, modifiers), result); } -// Use FallbackKeyboardTranslator to test basic functionality -void KeyboardTranslatorTest::testFallback() -{ - auto fallback = std::unique_ptr(new FallbackKeyboardTranslator()); - - QCOMPARE(QStringLiteral("fallback"), fallback->name()); - QCOMPARE(QStringLiteral("Fallback Keyboard Translator"), fallback->description()); - - auto entries = fallback->entries(); - QCOMPARE(1, entries.size()); - auto entry = fallback->findEntry(Qt::Key_Tab, Qt::NoModifier); - QVERIFY(!entry.isNull()); - QCOMPARE(FallbackKeyboardTranslator::Command::NoCommand, entry.command()); - QCOMPARE(int(Qt::Key_Tab), entry.keyCode()); - QCOMPARE(QByteArray("\t"), entry.text()); - QCOMPARE(QByteArray("\\t"), entry.escapedText()); - QCOMPARE(Qt::KeyboardModifiers(Qt::NoModifier), entry.modifiers()); - QCOMPARE(Qt::KeyboardModifiers(Qt::NoModifier), entry.modifierMask()); - QCOMPARE(KeyboardTranslator::States(KeyboardTranslator::NoState), entry.state()); - QCOMPARE(QStringLiteral("Tab"), entry.conditionToString()); - QCOMPARE(QStringLiteral("\\t"), entry.resultToString()); - QVERIFY(entry.matches(Qt::Key_Tab, Qt::NoModifier, KeyboardTranslator::NoState)); - QVERIFY(entry == fallback->findEntry(Qt::Key_Tab, Qt::NoModifier)); -} - void KeyboardTranslatorTest::testHexKeys() { QFile linuxkeytab(QFINDTESTDATA(QStringLiteral("data/test.keytab"))); @@ -137,7 +111,6 @@ void KeyboardTranslatorTest::testHexKeys() auto entry = translator->findEntry(Qt::Key_Backspace, Qt::NoModifier); QVERIFY(!entry.isNull()); - QCOMPARE(FallbackKeyboardTranslator::Command::NoCommand, entry.command()); QCOMPARE(int(Qt::Key_Backspace), entry.keyCode()); QCOMPARE(QByteArray("\x7F"), entry.text()); QCOMPARE(QByteArray("\\x7f"), entry.escapedText()); @@ -151,7 +124,6 @@ void KeyboardTranslatorTest::testHexKeys() entry = translator->findEntry(Qt::Key_Delete, Qt::NoModifier); QVERIFY(!entry.isNull()); - QCOMPARE(FallbackKeyboardTranslator::Command::NoCommand, entry.command()); QCOMPARE(int(Qt::Key_Delete), entry.keyCode()); QCOMPARE(QByteArray("\x08"), entry.text()); QCOMPARE(QByteArray("\\b"), entry.escapedText()); @@ -166,7 +138,6 @@ void KeyboardTranslatorTest::testHexKeys() entry = translator->findEntry(Qt::Key_Space, Qt::NoModifier); QVERIFY(!entry.isNull()); - QCOMPARE(FallbackKeyboardTranslator::Command::NoCommand, entry.command()); QCOMPARE(int(Qt::Key_Space), entry.keyCode()); QEXPECT_FAIL("", "Several keytabs use x00 as Space +Control; text() fails", Continue); QCOMPARE(QByteArray("\x00"), entry.text()); diff --git a/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.h b/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.h index be295b6763..b558ab16da 100644 --- a/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.h +++ b/local/recipes/kde/konsole/source/src/autotests/KeyboardTranslatorTest.h @@ -19,7 +19,6 @@ class KeyboardTranslatorTest : public QObject private Q_SLOTS: void testEntryTextWildcards(); void testEntryTextWildcards_data(); - void testFallback(); void testHexKeys(); }; diff --git a/local/recipes/kde/konsole/source/src/autotests/ProfileTest.cpp b/local/recipes/kde/konsole/source/src/autotests/ProfileTest.cpp index 37b382f62c..2c603e83a4 100644 --- a/local/recipes/kde/konsole/source/src/autotests/ProfileTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/ProfileTest.cpp @@ -38,7 +38,7 @@ void ProfileTest::initTestCase() void ProfileTest::testProfile() { // create a new profile - Profile *parent = new Profile; + Profile::Ptr parent(new Profile); parent->setProperty(Profile::Name, QStringLiteral("Parent")); parent->setProperty(Profile::Path, QStringLiteral("FakePath")); @@ -55,7 +55,7 @@ void ProfileTest::testProfile() QCOMPARE(parent->customCursorTextColor(), QColor()); // create a child profile - Profile *child = new Profile(Profile::Ptr(parent)); + Profile::Ptr child(new Profile(parent)); child->setProperty(Profile::StartInCurrentSessionDir, true); // check which properties are set @@ -83,8 +83,6 @@ void ProfileTest::testProfile() QVERIFY(!parent->startInCurrentSessionDir()); QVERIFY(child->startInCurrentSessionDir()); - - delete child; } void ProfileTest::testClone() diff --git a/local/recipes/kde/konsole/source/src/autotests/PtyTest.cpp b/local/recipes/kde/konsole/source/src/autotests/PtyTest.cpp index ec9f2b5df4..e904d0c16a 100644 --- a/local/recipes/kde/konsole/source/src/autotests/PtyTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/PtyTest.cpp @@ -73,15 +73,13 @@ void PtyTest::testRunProgram() const int result = pty.start(program, arguments, environments); QCOMPARE(result, 0); - auto fpg = pty.foregroundProcessGroup(); - auto pid = pty.processId(); - // FIXME: This often fails on FreeBSD CI + // FIXME: This often fails on multiple CIs + // auto fpg = pty.foregroundProcessGroup(); + // auto pid = pty.processId(); // Actual (fpg): 100000; Expected (pid): 28534 -#if defined(Q_OS_FREEBSD) - QSKIP("This often fails on CI FreeBSD CI", SkipSingle); -#else - QCOMPARE(fpg, pid); -#endif + // Actual (fpg): 0; Expected (pid): 3487 + // QSKIP("This often fails on multiple CIs", SkipSingle); + //QCOMPARE(fpg, pid); pty.close(); } diff --git a/local/recipes/kde/konsole/source/src/autotests/ScreenTest.cpp b/local/recipes/kde/konsole/source/src/autotests/ScreenTest.cpp index 6cb9310b33..1816eea17e 100644 --- a/local/recipes/kde/konsole/source/src/autotests/ScreenTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/ScreenTest.cpp @@ -63,7 +63,6 @@ void ScreenTest::testBlockSelection() // ... // I'm selecting the first two lines of the first column of strings, // so, abcd ijkl. - const QString selectedText = screen.selectedText(Screen::PlainText); QCOMPARE(screen.selectedText(Screen::PlainText), QStringLiteral("abcd ijkl")); } diff --git a/local/recipes/kde/konsole/source/src/autotests/TerminalCharacterDecoderTest.cpp b/local/recipes/kde/konsole/source/src/autotests/TerminalCharacterDecoderTest.cpp index 98f2a553e1..192ea2c8a9 100644 --- a/local/recipes/kde/konsole/source/src/autotests/TerminalCharacterDecoderTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/TerminalCharacterDecoderTest.cpp @@ -89,11 +89,22 @@ void TerminalCharacterDecoderTest::testHTMLDecoder_data() // The below is wrong; only the first rendition is used (eg ignores the |) QTest::newRow("simple text with underline and italic rendition") << "hello" << QVector(6).fill(RE_UNDERLINE_BIT | RE_ITALIC) - << R"(hello
              )"; + << R"(hello
              )"; QTest::newRow("text with &") << "hello &there" << QVector(6).fill(DEFAULT_RENDITION) << R"(hello &there
              )"; + + // In test input, '\n' marks line breaks to represent multi-line cases. + QString inputLine1 = QString(40, QLatin1Char('A')); + QString inputLine2 = QString(10, QLatin1Char('B')); + QString inputText = inputLine1 + QLatin1Char('\n') + inputLine2; + + QTest::newRow("multi-line with bold style") + << inputText << QVector(51).fill(RE_BOLD) + << QStringLiteral( + R"(%1
              %2
              )") + .arg(inputLine1, inputLine2); } void TerminalCharacterDecoderTest::testHTMLDecoder() @@ -108,10 +119,26 @@ void TerminalCharacterDecoderTest::testHTMLDecoder() QString outputString; QTextStream outputStream(&outputString); decoder->begin(&outputStream); - decoder->decodeLine(testCharacters, text.size(), /* ignored */ LineProperty()); + + // Split input text into multiple lines at '\n', and decode each line. + QStringList lines = text.split(QLatin1Char('\n')); + int pos = 0; + for (const QString &line : lines) { + decoder->decodeLine(testCharacters + pos, line.size(), /* ignored */ LineProperty()); + pos += line.size() + 1; // +1 for the '\n' + } + decoder->end(); delete[] testCharacters; delete decoder; + + // ensure we exported the encoding, bug 500515 + QVERIFY(outputString.contains(QStringLiteral(""))); + + // strip HTML document + outputString.replace(QRegularExpression(QStringLiteral("^.*\\n"), QRegularExpression::DotMatchesEverythingOption), QString()); + outputString.replace(QRegularExpression(QStringLiteral(".*$"), QRegularExpression::DotMatchesEverythingOption), QString()); + QCOMPARE(outputString, result); } diff --git a/local/recipes/kde/konsole/source/src/autotests/TerminalInterfaceTest.cpp b/local/recipes/kde/konsole/source/src/autotests/TerminalInterfaceTest.cpp index 1ed6189fd2..1bfb5affb4 100644 --- a/local/recipes/kde/konsole/source/src/autotests/TerminalInterfaceTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/TerminalInterfaceTest.cpp @@ -21,6 +21,7 @@ #if defined(Q_OS_LINUX) #include #elif defined(Q_OS_OPENBSD) +#include #include #include #include @@ -93,8 +94,6 @@ void TerminalInterfaceTest::testTerminalInterfaceNoShell() // Test with default shell running void TerminalInterfaceTest::testTerminalInterface() { - QString currentDirectory; - // create a Konsole part and attempt to connect to it _terminalPart = createPart(); if (_terminalPart == nullptr) { @@ -114,8 +113,8 @@ void TerminalInterfaceTest::testTerminalInterface() // terminalProcessId() is the user's default shell // FIXME: find a way to verify this - int terminalProcessId = terminal->terminalProcessId(); #if defined(Q_OS_LINUX) + int terminalProcessId = terminal->terminalProcessId(); const int uid = getuid(); QFile passwdFile(QStringLiteral("/etc/passwd")); QString defaultExePath; @@ -134,7 +133,11 @@ void TerminalInterfaceTest::testTerminalInterface() QFile procExeTarget(QStringLiteral("/proc/%1/exe").arg(terminalProcessId)); if (procExeTarget.exists()) { - QCOMPARE(procExeTarget.symLinkTarget(), defaultExePath.trimmed()); + const auto procExeTargetNormalized = QFileInfo(procExeTarget.symLinkTarget()).canonicalFilePath(); + const auto defaultExePathNormalized = QFileInfo(defaultExePath.trimmed()).canonicalFilePath(); + QVERIFY(!procExeTargetNormalized.isEmpty()); + QVERIFY(!defaultExePathNormalized.isEmpty()); + QCOMPARE(procExeTargetNormalized, defaultExePathNormalized); } #endif @@ -234,11 +237,11 @@ void TerminalInterfaceTest::testTerminalInterfaceUsingSpy() QVERIFY(procExeTarget.open(QIODevice::ReadOnly)); QCOMPARE(QStringLiteral(procExeTarget.readAll()), command); #elif defined(Q_OS_OPENBSD) - kvm_t *kd = kvm_openfiles(NULL, NULL, NULL, O_RD_ONLY, NULL); + kvm_t *kd = kvm_openfiles(NULL, NULL, NULL, O_RDONLY, NULL); int count; - auto kProcStruct = ::kvm_getprocs(kd, KERN_PROC_PID, foregroundProcessId, &count); + auto kProcStruct = ::kvm_getprocs(kd, KERN_PROC_PID, foregroundProcessId, sizeof(struct kinfo_proc), &count); QCOMPARE(count, 1); - QCOMPARE(QStringLiteral(kProcStruct->p_comm), command); + QCOMPARE(QString::fromUtf8(kProcStruct->p_comm), command); kvm_close(kd); #endif diff --git a/local/recipes/kde/konsole/source/src/autotests/ViewManagerTest.cpp b/local/recipes/kde/konsole/source/src/autotests/ViewManagerTest.cpp new file mode 100644 index 0000000000..5b760aa4f9 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/autotests/ViewManagerTest.cpp @@ -0,0 +1,62 @@ +/* + SPDX-FileCopyrightText: 2025 Akseli Lahtinen + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#include "ViewManagerTest.h" +#include +#include + +#include "../MainWindow.h" +#include "../ViewManager.h" +#include "../widgets/ViewContainer.h" +#include + +using namespace Konsole; + +void ViewManagerTest::initTestCase() +{ + m_testDir = new QTemporaryDir(QDir::tempPath() + QDir::separator() + QStringLiteral("konsoleviewmanagertest-XXXXXX")); +} + +void ViewManagerTest::testSaveLayout() +{ + // Single tab: + // - Horizontally split view, with one view that is vertically split + // The numeric values mean the view number, which is not relevant for this test, since we create new views + QStringList expectedHierarchy = {QStringLiteral("(0)[0|(1){1|2}]")}; + + auto mw = MainWindow(); + mw.viewManager()->newSession(mw.viewManager()->defaultProfile(), m_testDir->path()); + mw.viewManager()->splitLeftRight(); + mw.viewManager()->splitTopBottom(); + + mw.viewManager()->saveLayout(m_testDir->filePath(QStringLiteral("test.json"))); + QCOMPARE(mw.viewManager()->viewHierarchy(), expectedHierarchy); + + QFile layoutFile(m_testDir->filePath(QStringLiteral("test.json"))); + QVERIFY(layoutFile.exists()); +} + +void ViewManagerTest::testLoadLayout() +{ + // Two tabs: + // - First tab: Has only single view. We expect the layout to be opened in new tab. + // - Second tab: Horizontally split view, with one view that is vertically split + // The numeric values mean the view number, which is not relevant for this test, since we create new views + QStringList expectedHierarchy = {QStringLiteral("(2)[3]"), QStringLiteral("(3)[4|(4){5|6}]")}; + + auto mw = MainWindow(); + mw.viewManager()->newSession(mw.viewManager()->defaultProfile(), m_testDir->path()); + + QFile layoutFile(m_testDir->filePath(QStringLiteral("test.json"))); + QVERIFY(layoutFile.exists()); + + mw.viewManager()->loadLayout(m_testDir->filePath(QStringLiteral("test.json"))); + QCOMPARE(mw.viewManager()->viewHierarchy(), expectedHierarchy); +} + +QTEST_MAIN(ViewManagerTest) + +#include "moc_ViewManagerTest.cpp" diff --git a/local/recipes/kde/konsole/source/src/autotests/ViewManagerTest.h b/local/recipes/kde/konsole/source/src/autotests/ViewManagerTest.h new file mode 100644 index 0000000000..ea3ea5d17f --- /dev/null +++ b/local/recipes/kde/konsole/source/src/autotests/ViewManagerTest.h @@ -0,0 +1,30 @@ +/* + SPDX-FileCopyrightText: 2025 Akseli Lahtinen + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef VIEWMANAGERTEST_H +#define VIEWMANAGERTEST_H + +#include +#include + +namespace Konsole +{ +class ViewManagerTest : public QObject +{ + Q_OBJECT + +private Q_SLOTS: + void initTestCase(); + void testSaveLayout(); + void testLoadLayout(); + +private: + QTemporaryDir *m_testDir; +}; + +} + +#endif // VIEWMANAGERTEST_H diff --git a/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.cpp b/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.cpp index f564cf808f..0de7afee1d 100644 --- a/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.cpp +++ b/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.cpp @@ -7,6 +7,7 @@ // Own #include "Vt102EmulationTest.h" +#include #include // The below is to verify the old #defines match the new constexprs @@ -432,6 +433,36 @@ void Vt102EmulationTest::testTokenFunctions() QCOMPARE(token_vt52('>'), TY_VT52('>')); } +void Vt102EmulationTest::testBufferedUpdates() +{ + TestEmulation em; + em.reset(); + + QSignalSpy outputChangedSpy(&em, &TestEmulation::outputChanged); + + // Test the normal buffered update behaviour. + em.receiveChars({'h', 'e', 'l', 'l', 'o', '!'}); + + QCOMPARE(outputChangedSpy.count(), 0); + QVERIFY(outputChangedSpy.wait(15)); + outputChangedSpy.clear(); + + const uint ESC = '\033'; + + // Test that synchronized updates can time out. + em.receiveChars({ESC, '[', '?', '2', '0', '2', '6', 'h'}); + + QVERIFY(!outputChangedSpy.wait(900)); + QVERIFY(outputChangedSpy.wait(150)); + outputChangedSpy.clear(); + + // Test that synchronized updates work. + em.receiveChars({ESC, '[', '?', '2', '0', '2', '6', 'h'}); + em.receiveChars({ESC, '[', '?', '2', '0', '2', '6', 'l'}); + + QCOMPARE(outputChangedSpy.count(), 2); +} + QTEST_GUILESS_MAIN(Vt102EmulationTest) #include "moc_Vt102EmulationTest.cpp" diff --git a/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.h b/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.h index 745ee30d04..6bb92dcfd3 100644 --- a/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.h +++ b/local/recipes/kde/konsole/source/src/autotests/Vt102EmulationTest.h @@ -32,6 +32,8 @@ private Q_SLOTS: void testTokenizingVT52_data(); void testTokenizingVT52(); + void testBufferedUpdates(); + private: static void sendAndCompare(TestEmulation *em, const char *input, size_t inputLen, const QString &expectedPrint, const QByteArray &expectedSent); }; diff --git a/local/recipes/kde/konsole/source/src/characters/Character.h b/local/recipes/kde/konsole/source/src/characters/Character.h index 18c79e9704..b907f1f048 100644 --- a/local/recipes/kde/konsole/source/src/characters/Character.h +++ b/local/recipes/kde/konsole/source/src/characters/Character.h @@ -166,7 +166,7 @@ public: explicit constexpr Character(uint _c = ' ', CharacterColor _f = CharacterColor(COLOR_SPACE_DEFAULT, DEFAULT_FORE_COLOR), CharacterColor _b = CharacterColor(COLOR_SPACE_DEFAULT, DEFAULT_BACK_COLOR), - RenditionFlags _r = DEFAULT_RENDITION, + RenditionFlags _r = DEFAULT_RENDITION | RE_TRANSPARENT, ExtraFlags _flags = EF_REAL) : character(_c) , rendition({_r}) diff --git a/local/recipes/kde/konsole/source/src/characters/Hangul.h b/local/recipes/kde/konsole/source/src/characters/Hangul.h index 7fbf6dbf6f..0a8c45d4aa 100644 --- a/local/recipes/kde/konsole/source/src/characters/Hangul.h +++ b/local/recipes/kde/konsole/source/src/characters/Hangul.h @@ -36,7 +36,7 @@ public: }; static int width(uint c, int widthFromTable, enum SyllablePos &syllablePos); - static bool combinesWith(Character prev, uint c); + static bool combinesWith(Character prevChar, uint c); static bool isHangul(const uint c) { diff --git a/local/recipes/kde/konsole/source/src/characters/LineBlockCharacters.cpp b/local/recipes/kde/konsole/source/src/characters/LineBlockCharacters.cpp index 6c14cbd5a1..ded4e10f26 100644 --- a/local/recipes/kde/konsole/source/src/characters/LineBlockCharacters.cpp +++ b/local/recipes/kde/konsole/source/src/characters/LineBlockCharacters.cpp @@ -782,7 +782,6 @@ static inline bool drawLegacyCharacter(QPainter &paint, int x, int y, int w, int }; // Default rect fills entire cell - QRectF rect(x, y, w, h); if (code <= 0x13f) { const QRectF upperLeft(x, y, w / 2.0, h / 3.0); const QRectF upperRight(center.x(), y, w / 2.0, h / 3.0); diff --git a/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.cpp b/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.cpp index 0c60a08cee..b7f7c40dc6 100644 --- a/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.cpp +++ b/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.cpp @@ -12,6 +12,7 @@ #include "hsluv.h" // Qt +#include #include // KDE @@ -249,13 +250,13 @@ void ColorScheme::setColorTableEntry(int index, const QColor &entry) } } -QColor ColorScheme::colorEntry(int index, uint randomSeed) const +QColor ColorScheme::colorEntry(int index, uint sessionId) const { Q_ASSERT(index >= 0 && index < TABLE_COLORS); QColor entry = colorTable()[index]; - if (!_colorRandomization || randomSeed == 0 || _randomTable == nullptr || _randomTable[index].isNull()) { + if (!_colorRandomization || sessionId == 0 || _randomTable == nullptr || _randomTable[index].isNull()) { return entry; } @@ -269,7 +270,7 @@ QColor ColorScheme::colorEntry(int index, uint randomSeed) const // 32-bit Mersenne Twister // Can't use default_random_engine, because in GCC this maps to // minstd_rand0 which always gives us 0 on the first number. - std::mt19937 randomEngine(randomSeed); + std::mt19937 randomEngine(sessionId | qApp->applicationPid() << 10); // Use hues located around base color's hue. // H=0 [|= =] H=128 [ =|= ] H=360 [= =|] @@ -332,10 +333,10 @@ QColor ColorScheme::colorEntry(int index, uint randomSeed) const return {qRound(red * 255), qRound(green * 255), qRound(blue * 255)}; } -void ColorScheme::getColorTable(QColor *table, uint randomSeed) const +void ColorScheme::getColorTable(QColor *table, uint sessionId) const { for (int i = 0; i < TABLE_COLORS; i++) { - table[i] = colorEntry(i, randomSeed); + table[i] = colorEntry(i, sessionId); } } diff --git a/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.h b/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.h index 9083520249..9780f1223b 100644 --- a/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.h +++ b/local/recipes/kde/konsole/source/src/colorscheme/ColorScheme.h @@ -70,17 +70,15 @@ public: * * @param table Array into which the color entries for this color scheme * are copied. - * @param randomSeed Color schemes may allow certain colors in their - * palette to be randomized. The seed is used to pick the random color. */ - void getColorTable(QColor *table, uint randomSeed = 0) const; + void getColorTable(QColor *table, uint sessionId = 0) const; /** * Retrieves a single color entry from the table. * * See getColorTable() */ - QColor colorEntry(int index, uint randomSeed = 0) const; + QColor colorEntry(int index, uint sessionId = 0) const; /** * Convenience method. Returns the diff --git a/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeManager.cpp b/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeManager.cpp index 72cf26d073..988c1333cd 100644 --- a/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeManager.cpp +++ b/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeManager.cpp @@ -38,7 +38,8 @@ QList> ColorSchemeManager::allColorSchemes() int failed = 0; QList> ret; - for (const QString &name : listColorSchemes()) { + const auto schemes = listColorSchemes(); + for (const QString &name : schemes) { std::shared_ptr scheme = findColorScheme(colorSchemeNameFromPath(name)); if (!scheme) { failed++; diff --git a/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.cpp b/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.cpp index bbbbb23b64..075a62033f 100644 --- a/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.cpp +++ b/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.cpp @@ -98,7 +98,7 @@ bool ColorSchemeWallpaper::isNull() const return _path.isEmpty(); } -bool ColorSchemeWallpaper::draw(QPainter &painter, const QRect rect, qreal bgColorOpacity, const QColor &backgroundColor) +bool ColorSchemeWallpaper::draw(QPainter &painter, const QRect& rect, qreal bgColorOpacity, const QColor &backgroundColor) { if ((_picture == nullptr) || _picture->isNull()) { return false; @@ -163,7 +163,7 @@ qreal ColorSchemeWallpaper::opacity() const return _opacity; } -QRectF ColorSchemeWallpaper::ScaledRect(const QSize viewportSize, const QSize pictureSize, const QRect rect) +QRectF ColorSchemeWallpaper::ScaledRect(const QSize &viewportSize, const QSize &pictureSize, const QRect &rect) { QRectF scaledRect = QRectF(); QSize scaledSize = _style == NoScaling ? pictureSize : pictureSize.scaled(viewportSize, RatioMode()); @@ -197,15 +197,15 @@ Qt::AspectRatioMode ColorSchemeWallpaper::RatioMode() } } -QImage ColorSchemeWallpaper::FlipImage(const QImage image, const ColorSchemeWallpaper::FlipType flipType) +QImage ColorSchemeWallpaper::FlipImage(const QImage &image, const ColorSchemeWallpaper::FlipType flipType) { switch (flipType) { case Horizontal: - return image.flipped(Qt::Horizontal); + return image.mirrored(true, false); case Vertical: - return image.flipped(Qt::Vertical); + return image.mirrored(false, true); case Both: - return image.flipped(Qt::Horizontal | Qt::Vertical); + return image.mirrored(true, true); default: return image; } diff --git a/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.h b/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.h index eddcc21c62..a80419cf63 100644 --- a/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.h +++ b/local/recipes/kde/konsole/source/src/colorscheme/ColorSchemeWallpaper.h @@ -61,7 +61,7 @@ public: void load(); /** Returns true if wallpaper available and drawn */ - bool draw(QPainter &painter, const QRect rect, qreal bgColorOpacity, const QColor &backgroundColor); + bool draw(QPainter &painter, const QRect& rect, qreal bgColorOpacity, const QColor &backgroundColor); bool isNull() const; @@ -93,9 +93,9 @@ private: bool _isAnimated; int _frameDelay; - QRectF ScaledRect(const QSize viewportSize, const QSize pictureSize, const QRect rect); + QRectF ScaledRect(const QSize &viewportSize, const QSize &pictureSize, const QRect &rect); Qt::AspectRatioMode RatioMode(); - QImage FlipImage(const QImage image, const ColorSchemeWallpaper::FlipType flipType); + QImage FlipImage(const QImage &image, const ColorSchemeWallpaper::FlipType flipType); }; } diff --git a/local/recipes/kde/konsole/source/src/config-konsole.h.cmake b/local/recipes/kde/konsole/source/src/config-konsole.h.cmake index 3550fe171c..7f8bb91d01 100644 --- a/local/recipes/kde/konsole/source/src/config-konsole.h.cmake +++ b/local/recipes/kde/konsole/source/src/config-konsole.h.cmake @@ -7,9 +7,6 @@ #cmakedefine01 HAVE_DBUS -/* If defined, remove public access to dbus sendInput/runCommand */ -#cmakedefine01 REMOVE_SENDTEXT_RUNCOMMAND_DBUS_METHODS - /* If defined, can checksum rectangular areas of the screen */ #cmakedefine01 ENABLE_DECRQCRA @@ -18,6 +15,5 @@ /* Defined if system has the malloc_trim function, which is a GNU extension */ #cmakedefine01 HAVE_MALLOC_TRIM -#cmakedefine01 HAVE_QTMULTIMEDIA - -#cmakedefine01 HAVE_QTPRINTSUPPORT +/* Defined if libkapsule-qt is available for Kapsule container support */ +#cmakedefine01 HAVE_KAPSULE diff --git a/local/recipes/kde/konsole/source/src/containers/CMakeLists.txt b/local/recipes/kde/konsole/source/src/containers/CMakeLists.txt new file mode 100644 index 0000000000..4d78fddb17 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/CMakeLists.txt @@ -0,0 +1,38 @@ +# Container detection and management for Konsole +# Provides support for Toolbox, Distrobox, and other container types + +set(konsolecontainers_SRCS + ContainerList.cpp + ContainerRegistry.cpp + IContainerDetector.cpp + ToolboxDetector.cpp + DistroboxDetector.cpp +) + +if(HAVE_KAPSULE) + list(APPEND konsolecontainers_SRCS KapsuleDetector.cpp) +endif() + +add_library(konsolecontainers STATIC ${konsolecontainers_SRCS}) + +set_target_properties(konsolecontainers PROPERTIES POSITION_INDEPENDENT_CODE ON) + +target_compile_features(konsolecontainers PUBLIC cxx_std_20) + +target_link_libraries(konsolecontainers + PUBLIC + Qt::Core + Qt::Widgets + KF6::I18n + KF6::CoreAddons # For KSandbox +) + +if(HAVE_KAPSULE) + target_link_libraries(konsolecontainers PUBLIC Kapsule::KapsuleQt) +endif() + +target_include_directories(konsolecontainers + PUBLIC + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_BINARY_DIR}/src # For config-konsole.h +) diff --git a/local/recipes/kde/konsole/source/src/containers/ContainerInfo.h b/local/recipes/kde/konsole/source/src/containers/ContainerInfo.h new file mode 100644 index 0000000000..98567f2cfe --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/ContainerInfo.h @@ -0,0 +1,69 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef CONTAINERINFO_H +#define CONTAINERINFO_H + +#include +#include + +#include + +namespace Konsole +{ + +class IContainerDetector; + +/** + * Represents information about a container environment (Toolbox, Distrobox, etc.) + */ +struct ContainerInfo { + /** + * Pointer to the detector for this container type. + * Null for invalid/empty containers. + */ + const IContainerDetector *detector = nullptr; + + /** Container name/identifier */ + QString name; + + /** Human-readable display name (e.g., "fedora-39") */ + QString displayName; + + /** Icon name for UI display */ + QString iconName; + + /** + * The foreground PID at the time the container was entered via OSC 777. + * Only set for OSC 777-detected containers; nullopt for polling-detected containers. + * Used to: + * - detect when the user has exited the container (foreground returns to this PID). + * - avoid polling-based detectors clearing OSC 777-detected contexts. + */ + std::optional hostPid; + + /** Returns true if this represents a valid container */ + bool isValid() const + { + return detector != nullptr; + } + + bool operator==(const ContainerInfo &other) const + { + return detector == other.detector && name == other.name; + } + + bool operator!=(const ContainerInfo &other) const + { + return !(*this == other); + } +}; + +} // namespace Konsole + +Q_DECLARE_METATYPE(Konsole::ContainerInfo) + +#endif // CONTAINERINFO_H diff --git a/local/recipes/kde/konsole/source/src/containers/ContainerList.cpp b/local/recipes/kde/konsole/source/src/containers/ContainerList.cpp new file mode 100644 index 0000000000..7101bdc91b --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/ContainerList.cpp @@ -0,0 +1,105 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +// Own +#include "ContainerList.h" + +// Qt +#include +#include +#include +#include + +// KF +#include + +// Konsole +#include "ContainerInfo.h" +#include "ContainerRegistry.h" +#include "IContainerDetector.h" + +using Konsole::ContainerList; + +ContainerList::ContainerList(QObject *parent) + : QObject(parent) + , _group(new QActionGroup(this)) +{ + connect(_group, &QActionGroup::triggered, this, &ContainerList::triggered); + refreshContainers(); +} + +bool ContainerList::hasContainers() const +{ + return !_containers.isEmpty(); +} + +void ContainerList::refreshContainers() +{ + // Remove old actions + qDeleteAll(_group->actions()); + _containers.clear(); + + auto *registry = ContainerRegistry::instance(); + if (!registry->isEnabled()) { + return; + } + + // Use the already-cached list — returns immediately, never blocks. + _containers = registry->cachedContainers(); + + for (const ContainerInfo &info : _containers) { + auto *action = new QAction(_group); + action->setText(info.displayName); + + if (!info.iconName.isEmpty()) { + action->setIcon(QIcon::fromTheme(info.iconName)); + } + + action->setData(QVariant::fromValue(info)); + } + + // Kick off a background refresh so the *next* call picks up any + // changes (new/removed containers). If a refresh is already in + // progress this is a no-op. + registry->refreshContainers(); +} + +void ContainerList::addContainerSections(QMenu *menu) +{ + if (_containers.isEmpty()) { + return; + } + + // Add a "Host" entry so the user can easily open a plain host + // session even when a container is set as the default. + menu->addSection(i18nc("@title:group section header in new-tab menu", "Host")); + auto *hostAction = menu->addAction(QIcon::fromTheme(QStringLiteral("computer")), QSysInfo::machineHostName()); + connect(hostAction, &QAction::triggered, this, [this]() { + Q_EMIT containerSelected(ContainerInfo{}); + }); + + const IContainerDetector *currentDetector = nullptr; + const auto actions = _group->actions(); + + for (QAction *action : actions) { + const auto info = action->data().value(); + if (info.detector != currentDetector) { + currentDetector = info.detector; + menu->addSection(currentDetector->displayName()); + } + menu->addAction(action); + } +} + +void ContainerList::triggered(QAction *action) +{ + const auto info = action->data().value(); + if (info.isValid()) { + Q_EMIT containerSelected(info); + } +} + +#include "moc_ContainerList.cpp" diff --git a/local/recipes/kde/konsole/source/src/containers/ContainerList.h b/local/recipes/kde/konsole/source/src/containers/ContainerList.h new file mode 100644 index 0000000000..37530fe4e8 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/ContainerList.h @@ -0,0 +1,105 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef CONTAINERLIST_H +#define CONTAINERLIST_H + +// Qt +#include +#include + +// Konsole +#include "ContainerInfo.h" + +class QAction; +class QActionGroup; +class QMenu; + +namespace Konsole +{ + +/** + * ContainerList provides a list of actions representing available containers + * (Toolbox, Distrobox, etc.) that can be used to open a new tab directly + * inside a container. + * + * Unlike a submenu, this class is designed to add its actions inline into + * an existing menu using addSection() headers grouped by detector type, + * e.g.: + * + * ── Distrobox ────── + * fedora-39 + * ── Toolbox ──────── + * ubuntu-22 + * + * When no containers are available, nothing is added and the menu appears + * unchanged (no section headers, no empty state). + */ +class ContainerList : public QObject +{ + Q_OBJECT + +public: + /** + * Constructs a new container list. + * + * @param parent The parent object + */ + explicit ContainerList(QObject *parent); + + /** + * Returns true if container support is enabled and at least one + * container is available. + */ + bool hasContainers() const; + + /** + * Refresh the cached container list from ContainerRegistry. + * + * This returns immediately using cached data from ContainerRegistry, + * and also triggers an asynchronous refresh in the background so + * that the next call will have up-to-date results. + * + * Call this before hasContainers() / addContainerSections() to + * ensure the data is up-to-date. + */ + void refreshContainers(); + + /** + * Adds a host section followed by per-detector container sections + * to the given menu. + * + * The host section contains a single action showing the local + * hostname, allowing the user to open a plain host session even + * when a container is set as default. Each detector's containers + * are preceded by an addSection() header using the detector's + * display name (e.g., "Distrobox", "Toolbox"). + * + * Does nothing if no containers are available. + */ + void addContainerSections(QMenu *menu); + +Q_SIGNALS: + /** + * Emitted when the user selects a container from the list. + * + * @param container The selected container's info + */ + void containerSelected(const ContainerInfo &container); + +private Q_SLOTS: + void triggered(QAction *action); + +private: + Q_DISABLE_COPY(ContainerList) + + QActionGroup *_group; + QList _containers; +}; + +} // namespace Konsole + +#endif // CONTAINERLIST_H diff --git a/local/recipes/kde/konsole/source/src/containers/ContainerRegistry.cpp b/local/recipes/kde/konsole/source/src/containers/ContainerRegistry.cpp new file mode 100644 index 0000000000..315e4da559 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/ContainerRegistry.cpp @@ -0,0 +1,213 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#include "ContainerRegistry.h" +#include "ContainerInfo.h" +#include "DistroboxDetector.h" +#include "ToolboxDetector.h" +#include "src/konsoledebug.h" + +#include "config-konsole.h" + +#if HAVE_KAPSULE +#include "KapsuleDetector.h" +#endif + +#include +#include +#include +#include + +namespace Konsole +{ +Q_GLOBAL_STATIC(ContainerRegistry, registry) + +ContainerRegistry *ContainerRegistry::instance() +{ + return registry; +} + +ContainerRegistry::ContainerRegistry() +{ + qDebug(KonsoleDebug) << "ContainerRegistry created"; + // Check for Flatpak environment - disable container support if detected + // Note: this can do a blocking operation that checks for a `/.flatpak-info` + // file, which is less than ideal to do in a constructor. + // But Q_GLOBAL_STATIC only constructs on first use, so it should be + // cached long before container detection is needed. + if (KSandbox::isFlatpak()) { + _enabled = false; + _disabledReason = i18n("Container support is not available when Konsole is running inside Flatpak."); + return; + } + + // Register built-in detectors + // Order matters - first match wins + registerDetector(std::make_unique()); + registerDetector(std::make_unique()); +#if HAVE_KAPSULE + registerDetector(std::make_unique()); +#endif + + // Kick off the initial container list fetch so that the cache is + // likely populated before the user ever opens a menu. + refreshContainers(); +} + +void ContainerRegistry::registerDetector(std::unique_ptr detector) +{ + if (detector) { + qDebug(KonsoleDebug) << "Registering container detector:" << detector->typeId(); + connect(detector.get(), &IContainerDetector::listContainersFinished, this, &ContainerRegistry::onDetectorFinished); + connect(detector.get(), &IContainerDetector::containersChanged, this, &ContainerRegistry::refreshContainers); + _detectors.push_back(std::move(detector)); + } +} + +void ContainerRegistry::refreshContainers() +{ + if (!_enabled || _pendingDetectors > 0) { + return; + } + + if (_detectors.empty()) { + return; + } + + _pendingDetectors = static_cast(_detectors.size()); + _pendingResults.clear(); + + for (const auto &detector : _detectors) { + detector->startListContainers(); + } +} + +void ContainerRegistry::onDetectorFinished(const QList &containers) +{ + _pendingResults.append(containers); + _pendingDetectors--; + + if (_pendingDetectors > 0) { + return; + } + + _cachedContainers = _pendingResults; + _pendingResults.clear(); + Q_EMIT containersUpdated(); +} + +QList ContainerRegistry::cachedContainers() const +{ + return _cachedContainers; +} + +ContainerInfo ContainerRegistry::detectContainer(int pid) const +{ + if (!_enabled || pid <= 0) { + return ContainerInfo{}; + } + + for (const auto &detector : _detectors) { + auto result = detector->detect(pid); + if (result.has_value()) { + return result.value(); + } + } + + return ContainerInfo{}; +} + +QStringList ContainerRegistry::entryCommand(const ContainerInfo &container) const +{ + if (!_enabled || !container.isValid()) { + return QStringList{}; + } + + return container.detector->entryCommand(container.name); +} + +std::optional ContainerRegistry::containerInfoFromOsc777(const QStringList ¶ms) const +{ + // Check for container command: container;push;NAME;TYPE or container;pop;; + if (params.isEmpty() || params[0] != QLatin1String("container")) { + return std::nullopt; + } + + if (params.size() < 2) { + return std::nullopt; + } + + const QString &command = params[1]; + + if (command == QLatin1String("pop")) { + qCDebug(KonsoleDebug) << "OSC 777 container pop"; + return ContainerInfo{}; + } + + if (command != QLatin1String("push") || params.size() < 4) { + return std::nullopt; + } + + // container;push;NAME;TYPE + const QString &containerName = params[2]; + const QString &containerType = params[3]; + + qCDebug(KonsoleDebug) << "OSC 777 container push:" << containerName << "type:" << containerType; + + // Find a detector with matching typeId to build a proper ContainerInfo + for (const auto &detector : _detectors) { + if (detector->typeId() == containerType) { + return ContainerInfo{.detector = detector.get(), + .name = containerName, + .displayName = containerName, + .iconName = detector->iconName(), + // will get populated in Session::handleOsc777() + .hostPid = std::nullopt}; + } + } + + // No matching detector found, meaning we can't do anything useful with this info + return ContainerInfo{}; +} + +QString ContainerRegistry::keyFromContainerInfo(const ContainerInfo &container) +{ + if (!container.isValid()) { + return QString(); + } + return container.detector->typeId() + QLatin1Char(':') + container.name; +} + +ContainerInfo ContainerRegistry::containerInfoFromKey(const QString &key) const +{ + if (!_enabled || key.isEmpty()) { + return ContainerInfo{}; + } + + const int separatorIndex = key.indexOf(QLatin1Char(':')); + if (separatorIndex <= 0) { + return ContainerInfo{}; + } + + const QString containerType = key.left(separatorIndex); + const QString containerName = key.mid(separatorIndex + 1); + + for (const auto &detector : _detectors) { + if (detector->typeId() == containerType) { + return ContainerInfo{.detector = detector.get(), + .name = containerName, + .displayName = containerName, + .iconName = detector->iconName(), + .hostPid = std::nullopt}; + } + } + + return ContainerInfo{}; +} + +} // namespace Konsole + +#include "moc_ContainerRegistry.cpp" diff --git a/local/recipes/kde/konsole/source/src/containers/ContainerRegistry.h b/local/recipes/kde/konsole/source/src/containers/ContainerRegistry.h new file mode 100644 index 0000000000..770d7adf53 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/ContainerRegistry.h @@ -0,0 +1,180 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef CONTAINERREGISTRY_H +#define CONTAINERREGISTRY_H + +#include "ContainerInfo.h" +#include "IContainerDetector.h" + +#include +#include +#include +#include + +#include +#include + +namespace Konsole +{ + +/** + * Singleton registry for container detection and management. + * + * Manages registered container detectors and provides a unified interface + * for detecting containers, getting entry commands, and listing available + * containers. + * + * Container listing is asynchronous. Call refreshContainers() to start a + * background refresh; when all detectors have reported back, the + * containersUpdated() signal is emitted and cachedContainers() returns + * the new results. A refresh is also triggered automatically at startup. + * + * Container support is automatically disabled when running inside Flatpak, + * as the sandboxing prevents reliable process inspection. + */ +class ContainerRegistry : public QObject +{ + Q_OBJECT + +public: + /** + * Get the singleton instance. + */ + static ContainerRegistry *instance(); + + /** + * Returns true if container support is enabled. + * Container support is disabled when running inside Flatpak. + */ + bool isEnabled() const + { + return _enabled; + } + + /** + * Returns a user-friendly explanation of why container support is disabled. + * Empty string if container support is enabled. + */ + QString disabledReason() const + { + return _disabledReason; + } + + /** + * Register a container detector. + * Detectors are tried in registration order when detecting containers. + */ + void registerDetector(std::unique_ptr detector); + + /** + * Detect if the given process is running inside a container. + * + * Tries all registered detectors in order and returns the first match. + * Returns an invalid ContainerInfo if not in any container or if + * container support is disabled. + * + * @param pid Process ID to check + * @return ContainerInfo (check isValid() for success) + */ + ContainerInfo detectContainer(int pid) const; + + /** + * Get the command to enter a specific container. + * + * @param container Container to enter + * @return Command and arguments, or empty list if not found + */ + QStringList entryCommand(const ContainerInfo &container) const; + + /** + * Returns the most recently cached list of all containers. + * + * This returns immediately without blocking. The list may be empty + * if no refresh has completed yet. + */ + QList cachedContainers() const; + + /** + * Start an asynchronous refresh of the container list. + * + * Each registered detector is asked to list its containers in the + * background. When all detectors have finished, the cached list is + * updated and containersUpdated() is emitted. + * + * If a refresh is already in progress, this call is ignored. + */ + void refreshContainers(); + + /** + * Parse OSC 777 container parameters and return appropriate ContainerInfo. + * + * Handles container;push;NAME;TYPE and container;pop;; commands + * emitted by toolbox, distrobox, and similar tools via vte.sh. + * + * For "push" commands, iterates through registered detectors to find + * one with matching typeId() and uses it to build a proper ContainerInfo. + * If no detector matches, returns a basic ContainerInfo with the provided values. + * + * For "pop" commands, returns an invalid (empty) ContainerInfo to clear context. + * + * For non-container OSC 777 commands (notify, precmd, etc.), returns nullopt + * to indicate no container context change is needed. + * + * @param params The OSC 777 parameters split by semicolons + * @return ContainerInfo if context should be updated, nullopt otherwise + */ + std::optional containerInfoFromOsc777(const QStringList ¶ms) const; + + /** + * Build a storage key from a ContainerInfo (e.g., "toolbox:fedora-39"). + * Use containerInfoFromKey() to reconstruct. + * + * @param container The container to build a key for + * @return Key string in "type:name" format, or empty if container is invalid + */ + static QString keyFromContainerInfo(const ContainerInfo &container); + + /** + * Build a ContainerInfo from a "type:name" key string. + * + * Parses the key to extract the container type and name, then looks up + * the matching registered detector to build a proper ContainerInfo. + * This works even before the async container list refresh has completed, + * since it only depends on the registered detectors (not the cached list). + * + * @param key Container identifier in "type:name" format, as returned by keyFromContainerInfo() + * @return A valid ContainerInfo if a matching detector was found, invalid otherwise + * @see keyFromContainerInfo() + */ + ContainerInfo containerInfoFromKey(const QString &key) const; + + ContainerRegistry(); + ~ContainerRegistry() override = default; + +Q_SIGNALS: + /** + * Emitted when an asynchronous refresh has completed and the + * cached container list has been updated. + */ + void containersUpdated(); + +private: + void onDetectorFinished(const QList &containers); + + bool _enabled = true; + int _pendingDetectors = 0; + QString _disabledReason; + std::vector> _detectors; + QList _cachedContainers; + QList _pendingResults; + + Q_DISABLE_COPY(ContainerRegistry) +}; + +} // namespace Konsole + +#endif // CONTAINERREGISTRY_H diff --git a/local/recipes/kde/konsole/source/src/containers/DistroboxDetector.cpp b/local/recipes/kde/konsole/source/src/containers/DistroboxDetector.cpp new file mode 100644 index 0000000000..86b522628d --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/DistroboxDetector.cpp @@ -0,0 +1,225 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#include "DistroboxDetector.h" +#include "src/konsoledebug.h" + +#include + +#include +#include +#include +#include + +bool isContainerRuntime(const QList &args) +{ + for (const QByteArray &arg : args) { + if (arg.endsWith("podman") || arg.endsWith("docker") || arg == "podman" || arg == "docker") { + return true; + } + } + return false; +} + +std::tuple parseDistroboxArgs(const QList &args) +{ + QString containerName; + bool isDistrobox = false; + + for (const QByteArray &arg : args) { + if (arg.startsWith("--env=DISTROBOX_ENTER_PATH=")) { + isDistrobox = true; + } + if (arg.startsWith("--env=CONTAINER_ID=")) { + containerName = QString::fromUtf8(arg.mid(19)); // Skip "--env=CONTAINER_ID=" + } + if (arg.startsWith("--env=DBX_CONTAINER_NAME=")) { + containerName = QString::fromUtf8(arg.mid(25)); // Skip "--env=DBX_CONTAINER_NAME=" + } + } + + return {containerName, isDistrobox}; +} + +const QString getContainerHostname(const QList &args) +{ + for (const QByteArray &arg : args) { + if (arg.startsWith("--env=HOSTNAME=")) { + return QString::fromUtf8(arg.mid(15)); + } + } + return QString(); +} + +namespace Konsole +{ + +DistroboxDetector::DistroboxDetector(QObject *parent) + : IContainerDetector(parent) +{ +} + +QString DistroboxDetector::typeId() const +{ + return QStringLiteral("distrobox"); +} + +QString DistroboxDetector::displayName() const +{ + return i18n("Distrobox"); +} + +QString DistroboxDetector::iconName() const +{ + // TODO: Find appropriate icon + return QStringLiteral("utilities-terminal"); +} + +std::optional DistroboxDetector::detect(int pid) const +{ + if (pid <= 0) { + return std::nullopt; + } + + // The distrobox-enter script spawns podman/docker with --env= arguments + // We need to find the deepest child process (podman/docker) and parse its cmdline + int containerPid = findDeepestChild(pid); + if (containerPid <= 0) { + return std::nullopt; + } + + return detectFromCmdline(containerPid); +} + +std::optional DistroboxDetector::detectFromCmdline(int pid) const +{ + const QString cmdlinePath = QStringLiteral("/proc/%1/cmdline").arg(pid); + QFile cmdlineFile(cmdlinePath); + + if (!cmdlineFile.open(QIODevice::ReadOnly)) { + return std::nullopt; + } + + // Command line arguments are null-separated in /proc/pid/cmdline + const QByteArray cmdlineData = cmdlineFile.readAll(); + const QList args = cmdlineData.split('\0'); + + if (!isContainerRuntime(args)) { + return std::nullopt; + } + + auto [containerName, isDistrobox] = parseDistroboxArgs(args); + + if (!isDistrobox) { + return std::nullopt; + } + + if (containerName.isEmpty()) { + qDebug(KonsoleDebug) << "Distrobox detector: container name not found in arguments. Checking HOSTNAME..."; + containerName = getContainerHostname(args); + } + + if (containerName.isEmpty()) { + qDebug(KonsoleDebug) << "Distrobox detector: container name still not found. Detection failed."; + return std::nullopt; + } + + qDebug(KonsoleDebug) << "Distrobox container detected (from HOSTNAME):" << containerName; + return buildContainerInfo(containerName); +} + +int DistroboxDetector::findDeepestChild(int pid) const +{ + // Read /proc//task//children to find child processes + // We traverse down the tree to find the deepest child (usually podman/docker) + const QString childrenPath = QStringLiteral("/proc/%1/task/%1/children").arg(pid); + QFile childrenFile(childrenPath); + + if (!childrenFile.open(QIODevice::ReadOnly | QIODevice::Text)) { + return -1; + } + + const QString content = QString::fromUtf8(childrenFile.readAll()).trimmed(); + if (content.isEmpty()) { + // No children, this is the deepest process + return pid; + } + + // Children are space-separated PIDs + const QStringList childPids = content.split(QLatin1Char(' '), Qt::SkipEmptyParts); + if (childPids.isEmpty()) { + return pid; + } + + // Take the first child and recurse (distrobox typically has a linear process tree) + bool ok; + int childPid = childPids.first().toInt(&ok); + if (!ok || childPid <= 0) { + return pid; + } + + int deepest = findDeepestChild(childPid); + return (deepest > 0) ? deepest : childPid; +} + +ContainerInfo DistroboxDetector::buildContainerInfo(const QString &name) const +{ + return ContainerInfo{.detector = this, + .name = name, + .displayName = name, + .iconName = iconName(), + // only used when entering via OSC777 + .hostPid = std::nullopt}; +} + +QStringList DistroboxDetector::entryCommand(const QString &containerName) const +{ + return {QStringLiteral("distrobox"), QStringLiteral("enter"), containerName}; +} + +void DistroboxDetector::startListContainers() +{ + auto *process = new QProcess(this); + process->setProgram(QStringLiteral("distrobox")); + process->setArguments({QStringLiteral("list"), QStringLiteral("--no-color")}); + + connect(process, &QProcess::finished, this, [this, process](int exitCode, QProcess::ExitStatus exitStatus) { + QList containers; + process->deleteLater(); + + if (exitStatus != QProcess::NormalExit || exitCode != 0) { + Q_EMIT listContainersFinished(containers); + return; + } + + // Parse output - format is typically: + // ID | NAME | STATUS | IMAGE + // abc123def456 | ubuntu-22 | Up 2 hours | ubuntu:22.04 + const QString output = QString::fromUtf8(process->readAllStandardOutput()); + const QStringList lines = output.split(QLatin1Char('\n'), Qt::SkipEmptyParts); + + // Skip header line + for (int i = 1; i < lines.size(); ++i) { + const QString &line = lines[i]; + // Split by |, container name is second column + const QStringList columns = line.split(QLatin1Char('|')); + if (columns.size() >= 2) { + const QString containerName = columns[1].trimmed(); + if (!containerName.isEmpty()) { + containers.append(buildContainerInfo(containerName)); + } + } + } + + Q_EMIT listContainersFinished(containers); + }); + + process->start(); +} + +} // namespace Konsole + +#include "moc_DistroboxDetector.cpp" diff --git a/local/recipes/kde/konsole/source/src/containers/DistroboxDetector.h b/local/recipes/kde/konsole/source/src/containers/DistroboxDetector.h new file mode 100644 index 0000000000..477eadf82f --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/DistroboxDetector.h @@ -0,0 +1,58 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef DISTROBOXDETECTOR_H +#define DISTROBOXDETECTOR_H + +#include "IContainerDetector.h" + +namespace Konsole +{ + +/** + * Detector for Distrobox containers (https://distrobox.it/) + * + * Detection methods (in order of preference): + * 1. Traverse /proc//children to find podman/docker process and parse --env= args + * 2. Check for /run/.containerenv marker file via /proc//root/ + * (Note: This file is also used by Podman, so we check content for distrobox specifics) + */ +class DistroboxDetector : public IContainerDetector +{ + Q_OBJECT + +public: + explicit DistroboxDetector(QObject *parent = nullptr); + + QString typeId() const override; + QString displayName() const override; + QString iconName() const override; + + std::optional detect(int pid) const override; + QStringList entryCommand(const QString &containerName) const override; + void startListContainers() override; + +private: + /** + * Try to detect container from podman/docker command line --env= arguments + */ + std::optional detectFromCmdline(int pid) const; + + /** + * Find the deepest child process by traversing /proc//task//children + * This is used to find the podman/docker process spawned by distrobox-enter + */ + int findDeepestChild(int pid) const; + + /** + * Build a ContainerInfo for the given container name + */ + ContainerInfo buildContainerInfo(const QString &name) const; +}; + +} // namespace Konsole + +#endif // DISTROBOXDETECTOR_H diff --git a/local/recipes/kde/konsole/source/src/containers/IContainerDetector.cpp b/local/recipes/kde/konsole/source/src/containers/IContainerDetector.cpp new file mode 100644 index 0000000000..882a47d4d7 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/IContainerDetector.cpp @@ -0,0 +1,9 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#include "IContainerDetector.h" + +#include "moc_IContainerDetector.cpp" diff --git a/local/recipes/kde/konsole/source/src/containers/IContainerDetector.h b/local/recipes/kde/konsole/source/src/containers/IContainerDetector.h new file mode 100644 index 0000000000..afd4529a93 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/IContainerDetector.h @@ -0,0 +1,101 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef ICONTAINERDETECTOR_H +#define ICONTAINERDETECTOR_H + +#include "ContainerInfo.h" + +#include +#include +#include +#include + +#include + +namespace Konsole +{ + +/** + * Interface for container type detectors. + * + * Each implementation handles detection and entry for a specific container + * technology (Toolbox, Distrobox, systemd-nspawn, etc.) + * + * Container listing is asynchronous: call startListContainers() and connect + * to the listContainersFinished() signal to receive results. + */ +class IContainerDetector : public QObject +{ + Q_OBJECT + +public: + explicit IContainerDetector(QObject *parent = nullptr) + : QObject(parent) + { + } + + ~IContainerDetector() override = default; + + /** + * Unique identifier for this container type (e.g., "toolbox", "distrobox") + */ + virtual QString typeId() const = 0; + + /** + * Human-readable name for display in UI (e.g., "Toolbox", "Distrobox") + */ + virtual QString displayName() const = 0; + + /** + * Icon name for UI representation + */ + virtual QString iconName() const = 0; + + /** + * Detect if the given process is running inside this container type. + * + * @param pid Process ID to check + * @return ContainerInfo if detected, std::nullopt otherwise + */ + virtual std::optional detect(int pid) const = 0; + + /** + * Get the command and arguments needed to enter a specific container. + * + * @param containerName Name of the container to enter + * @return Command and arguments (e.g., ["toolbox", "enter", "fedora-39"]) + */ + virtual QStringList entryCommand(const QString &containerName) const = 0; + + /** + * Start an asynchronous listing of all available containers of this type. + * + * When complete, the listContainersFinished() signal is emitted with the + * results. If the tool is not installed or fails, the signal is emitted + * with an empty list. + */ + virtual void startListContainers() = 0; + +Q_SIGNALS: + /** + * Emitted when startListContainers() has finished. + * + * @param containers The list of discovered containers (may be empty) + */ + void listContainersFinished(const QList &containers); + + /** + * Emitted when this detector has determined that its containers have + * changed (e.g. by listening to a docker socket) and the list should + * be refreshed. + */ + void containersChanged(); +}; + +} // namespace Konsole + +#endif // ICONTAINERDETECTOR_H diff --git a/local/recipes/kde/konsole/source/src/containers/KapsuleDetector.cpp b/local/recipes/kde/konsole/source/src/containers/KapsuleDetector.cpp new file mode 100644 index 0000000000..dc3211032e --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/KapsuleDetector.cpp @@ -0,0 +1,91 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#include "KapsuleDetector.h" + +#include + +#include + +#include +#include + +namespace Konsole +{ + +KapsuleDetector::KapsuleDetector(QObject *parent) + : IContainerDetector(parent) + , _client(new Kapsule::KapsuleClient(this)) +{ + connect(_client, &Kapsule::KapsuleClient::containersChanged, this, &KapsuleDetector::containersChanged); +} + +QString KapsuleDetector::typeId() const +{ + return QStringLiteral("kapsule"); +} + +QString KapsuleDetector::displayName() const +{ + return i18n("Kapsule"); +} + +QString KapsuleDetector::iconName() const +{ + return QStringLiteral("utilities-terminal"); +} + +std::optional KapsuleDetector::detect(int pid) const +{ + Q_UNUSED(pid) + return std::nullopt; +} + +ContainerInfo KapsuleDetector::buildContainerInfo(const QString &name, const QString &displayName, const QString &icon) const +{ + return ContainerInfo{.detector = this, .name = name, .displayName = displayName, .iconName = icon.isEmpty() ? iconName() : icon, .hostPid = std::nullopt}; +} + +QStringList KapsuleDetector::entryCommand(const QString &containerName) const +{ + return {QStringLiteral("kapsule"), QStringLiteral("enter"), containerName}; +} + +void KapsuleDetector::startListContainers() +{ + fetchContainerList(); +} + +constexpr QLatin1StringView DEFAULT_CONTAINER_KEY("default_container"); + +QCoro::Task KapsuleDetector::fetchContainerList() +{ + QList results; + const auto containers = co_await _client->listContainers(); + + for (const auto &c : containers) { + results.append(buildContainerInfo(c.name(), c.name())); + } + + if (results.isEmpty()) { + auto def = QStringLiteral("default"); + auto config = co_await _client->config(); + if (config.contains(DEFAULT_CONTAINER_KEY)) { + const QString defaultContainer = config[DEFAULT_CONTAINER_KEY].toString(); + if (!defaultContainer.isEmpty()) { + def = defaultContainer % i18n(" [default]"); + } + } + + results.append(buildContainerInfo(QString(), def, QStringLiteral("list-add"))); + } + + Q_EMIT listContainersFinished(results); +} + +} // namespace Konsole + +#include "moc_KapsuleDetector.cpp" diff --git a/local/recipes/kde/konsole/source/src/containers/KapsuleDetector.h b/local/recipes/kde/konsole/source/src/containers/KapsuleDetector.h new file mode 100644 index 0000000000..c17f46ec07 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/KapsuleDetector.h @@ -0,0 +1,41 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef KAPSULEDETECTOR_H +#define KAPSULEDETECTOR_H + +#include "IContainerDetector.h" + +#include + +namespace Kapsule +{ +class KapsuleClient; +} + +namespace Konsole +{ +class KapsuleDetector : public IContainerDetector +{ + Q_OBJECT +public: + explicit KapsuleDetector(QObject *parent = nullptr); + + QString typeId() const override; + QString displayName() const override; + QString iconName() const override; + std::optional detect(int pid) const override; + QStringList entryCommand(const QString &containerName) const override; + void startListContainers() override; + +private: + QCoro::Task fetchContainerList(); + ContainerInfo buildContainerInfo(const QString &name, const QString &displayName, const QString &icon = {}) const; + Kapsule::KapsuleClient *_client = nullptr; +}; +} // namespace Konsole + +#endif // KAPSULEDETECTOR_H diff --git a/local/recipes/kde/konsole/source/src/containers/ToolboxDetector.cpp b/local/recipes/kde/konsole/source/src/containers/ToolboxDetector.cpp new file mode 100644 index 0000000000..21b5a6463d --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/ToolboxDetector.cpp @@ -0,0 +1,99 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#include "ToolboxDetector.h" + +#include + +#include +#include + +namespace Konsole +{ + +ToolboxDetector::ToolboxDetector(QObject *parent) + : IContainerDetector(parent) +{ +} + +QString ToolboxDetector::typeId() const +{ + return QStringLiteral("toolbox"); +} + +QString ToolboxDetector::displayName() const +{ + return i18n("Toolbox"); +} + +QString ToolboxDetector::iconName() const +{ + // TODO: Find appropriate icon, perhaps "utilities-terminal" or custom + return QStringLiteral("utilities-terminal"); +} + +std::optional ToolboxDetector::detect(int pid) const +{ + Q_UNUSED(pid) + // Detection is handled via OSC 777 escape sequences (container;push/pop) + // emitted by toolbox/vte.sh when entering/exiting containers. + // Since toolbox has been emitting these for a while, it didn't make + // sense to build a process inspection-based detection here. + return std::nullopt; +} + +ContainerInfo ToolboxDetector::buildContainerInfo(const QString &name) const +{ + return ContainerInfo{.detector = this, .name = name, .displayName = name, .iconName = iconName(), .hostPid = std::nullopt}; +} + +QStringList ToolboxDetector::entryCommand(const QString &containerName) const +{ + return {QStringLiteral("toolbox"), QStringLiteral("enter"), containerName}; +} + +void ToolboxDetector::startListContainers() +{ + auto *process = new QProcess(this); + process->setProgram(QStringLiteral("toolbox")); + process->setArguments({QStringLiteral("list"), QStringLiteral("--containers")}); + + connect(process, &QProcess::finished, this, [this, process](int exitCode, QProcess::ExitStatus exitStatus) { + QList containers; + process->deleteLater(); + + if (exitStatus != QProcess::NormalExit || exitCode != 0) { + Q_EMIT listContainersFinished(containers); + return; + } + + // Parse output - format is typically: + // CONTAINER ID CONTAINER NAME CREATED STATUS IMAGE NAME + // abc123def456 fedora-39 2 weeks ago running registry.fedoraproject.org/fedora-toolbox:39 + const QString output = QString::fromUtf8(process->readAllStandardOutput()); + const QStringList lines = output.split(QLatin1Char('\n'), Qt::SkipEmptyParts); + + // Skip header line + for (int i = 1; i < lines.size(); ++i) { + const QString &line = lines[i]; + // Split by whitespace, container name is second column + static QRegularExpression whitespace(QStringLiteral("\\s+")); + const QStringList columns = line.split(whitespace, Qt::SkipEmptyParts); + if (columns.size() >= 2) { + const QString containerName = columns[1]; + containers.append(buildContainerInfo(containerName)); + } + } + + Q_EMIT listContainersFinished(containers); + }); + + process->start(); +} + +} // namespace Konsole + +#include "moc_ToolboxDetector.cpp" diff --git a/local/recipes/kde/konsole/source/src/containers/ToolboxDetector.h b/local/recipes/kde/konsole/source/src/containers/ToolboxDetector.h new file mode 100644 index 0000000000..4d49863df7 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/containers/ToolboxDetector.h @@ -0,0 +1,55 @@ +/* + SPDX-FileCopyrightText: 2026 Konsole Developers + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef TOOLBOXDETECTOR_H +#define TOOLBOXDETECTOR_H + +#include "IContainerDetector.h" + +namespace Konsole +{ + +/** + * Detector for Toolbox containers (https://containertoolbx.org/) + * + * Container detection is handled via OSC 777 escape sequences + * (container;push/pop) emitted by toolbox and vte.sh when entering/exiting + * containers. The detect() method is deprecated and returns nullopt. + * + * This class still provides: + * - startListContainers() - Asynchronously lists available toolbox containers + * - entryCommand() - Returns the command to enter a container + */ +class ToolboxDetector : public IContainerDetector +{ + Q_OBJECT + +public: + explicit ToolboxDetector(QObject *parent = nullptr); + + QString typeId() const override; + QString displayName() const override; + QString iconName() const override; + + /** + * @deprecated Detection now uses OSC 777 escape sequences. + * This method always returns nullopt. + */ + std::optional detect(int pid) const override; + + QStringList entryCommand(const QString &containerName) const override; + void startListContainers() override; + +private: + /** + * Build a ContainerInfo for the given container name + */ + ContainerInfo buildContainerInfo(const QString &name) const; +}; + +} // namespace Konsole + +#endif // TOOLBOXDETECTOR_H diff --git a/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.cpp b/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.cpp index 3da953f7b4..de783565ef 100644 --- a/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.cpp +++ b/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.cpp @@ -15,14 +15,12 @@ using namespace Konsole; -HTMLDecoder::HTMLDecoder(const QColor *colorTable, const QFont &profileFont) +HTMLDecoder::HTMLDecoder(const QColor *colorTable) : _output(nullptr) - , _profileFont(profileFont) , _innerSpanOpen(false) , _lastRendition(DEFAULT_RENDITION) , _lastForeColor(CharacterColor()) , _lastBackColor(CharacterColor()) - , _validProfile(false) { Q_ASSERT(colorTable); std::copy_n(colorTable, TABLE_COLORS, _colorTable); @@ -32,40 +30,31 @@ void HTMLDecoder::begin(QTextStream *output) { _output = output; - if (_validProfile) { - QString style; + // open html document & body, ensure right encoding set, bug 500515 + *_output << "\n"; + *_output << "\n"; + *_output << "\n"; + *_output << "\n"; + *_output << "\n"; + *_output << "\n"; + *_output << "\n"; - style.append(QStringLiteral("font-family:'%1',monospace;").arg(_profileFont.family())); - - // Prefer point size if set - if (_profileFont.pointSizeF() > 0) { - style.append(QStringLiteral("font-size:%1pt;").arg(_profileFont.pointSizeF())); - } else { - style.append(QStringLiteral("font-size:%1px;").arg(_profileFont.pixelSize())); - } - - style.append(QStringLiteral("color:%1;").arg(_colorTable[DEFAULT_FORE_COLOR].name())); - style.append(QStringLiteral("background-color:%1;").arg(_colorTable[DEFAULT_BACK_COLOR].name())); - - *output << QStringLiteral("").arg(style); - } else { - QString text; - openSpan(text, QStringLiteral("font-family:monospace")); - *output << text; - } + QString text; + openSpan(text, QStringLiteral("font-family:monospace")); + *output << text; } void HTMLDecoder::end() { Q_ASSERT(_output); - if (_validProfile) { - *_output << QStringLiteral(""); - } else { - QString text; - closeSpan(text); - *_output << text; - } + QString text; + closeSpan(text); + *_output << text; + + // close body & html document + *_output << "\n"; + *_output << "\n"; _output = nullptr; } @@ -101,15 +90,18 @@ void HTMLDecoder::decodeLine(const Character *const characters, int count, LineP } if ((_lastRendition & RE_UNDERLINE_MASK) != 0) { - style.append(QLatin1String("font-decoration:underline;")); + style.append(QLatin1String("text-decoration:underline;")); } style.append(QStringLiteral("color:%1;").arg(_lastForeColor.color(_colorTable).name())); - style.append(QStringLiteral("background-color:%1;").arg(_lastBackColor.color(_colorTable).name())); + _style = style; // open the span with the current style - openSpan(text, style); + openSpan(text, _style); + _innerSpanOpen = true; + } else if (i == 0) { + openSpan(text, _style); _innerSpanOpen = true; } @@ -137,6 +129,8 @@ void HTMLDecoder::decodeLine(const Character *const characters, int count, LineP text.append(QLatin1String(">")); } else if (ch == U'&') { text.append(QLatin1String("&")); + } else if (ch == U'\0') { + // do nothing for the right half of double-width character } else { text.append(QString::fromUcs4(&characters[i].character, 1)); } diff --git a/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.h b/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.h index 340d23bb09..5272ed8b19 100644 --- a/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.h +++ b/local/recipes/kde/konsole/source/src/decoders/HTMLDecoder.h @@ -24,7 +24,7 @@ public: /** * Constructs an HTML decoder using a default black-on-white color scheme. */ - explicit HTMLDecoder(const QColor *colorTable, const QFont &profileFont = QFont()); + explicit HTMLDecoder(const QColor *colorTable); void decodeLine(const Character *const characters, int count, LineProperty properties) override; @@ -36,13 +36,12 @@ private: void closeSpan(QString &text); QTextStream *_output; - QFont _profileFont; QColor _colorTable[TABLE_COLORS]; bool _innerSpanOpen; RenditionFlags _lastRendition; CharacterColor _lastForeColor; CharacterColor _lastBackColor; - bool _validProfile; + QString _style; }; } diff --git a/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.cpp b/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.cpp index 01466e546d..77ceb8e7de 100644 --- a/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.cpp +++ b/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.cpp @@ -18,23 +18,11 @@ using namespace Konsole; PlainTextDecoder::PlainTextDecoder() : _output(nullptr) - , _includeLeadingWhitespace(true) - , _includeTrailingWhitespace(true) , _recordLinePositions(false) , _linePositions(QList()) { } -void PlainTextDecoder::setLeadingWhitespace(bool enable) -{ - _includeLeadingWhitespace = enable; -} - -void PlainTextDecoder::setTrailingWhitespace(bool enable) -{ - _includeTrailingWhitespace = enable; -} - void PlainTextDecoder::begin(QTextStream *output) { _output = output; @@ -61,6 +49,7 @@ QList PlainTextDecoder::linePositions() const void PlainTextDecoder::decodeLine(const Character *const characters, int count, LineProperty /*properties*/) { Q_ASSERT(_output); + // TODO: This entire method is convoluted and needs a rewrite. if (_recordLinePositions && (_output->string() != nullptr)) { int pos = _output->string()->length(); @@ -69,28 +58,13 @@ void PlainTextDecoder::decodeLine(const Character *const characters, int count, // TODO should we ignore or respect the LINE_WRAPPED line property? - // If we should remove leading whitespace find the first non-space character int start = 0; - if (!_includeLeadingWhitespace) { - while (start < count && characters[start].isSpace()) { - start++; - } - } - int outputCount = count - start; if (outputCount <= 0) { return; } - // if inclusion of trailing whitespace is disabled then find the end of the - // line - if (!_includeTrailingWhitespace) { - while (outputCount > 0 && characters[start + outputCount - 1].isSpace()) { - outputCount--; - } - } - // find out the last technically real character in the line int realCharacterGuard = -1; for (int i = count - 1; i >= start; i--) { diff --git a/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.h b/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.h index cbd3683f54..112b96547d 100644 --- a/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.h +++ b/local/recipes/kde/konsole/source/src/decoders/PlainTextDecoder.h @@ -25,18 +25,6 @@ class PlainTextDecoder : public TerminalCharacterDecoder public: PlainTextDecoder(); - /** - * Set whether leading whitespace at the end of lines should be included - * in the output. - * Defaults to true. - */ - void setLeadingWhitespace(bool enable); - /** - * Set whether trailing whitespace at the end of lines should be included - * in the output. - * Defaults to true. - */ - void setTrailingWhitespace(bool enable); /** * Returns of character positions in the output stream * at which new lines where added. Returns an empty if setTrackLinePositions() is false or if @@ -53,8 +41,6 @@ public: private: QTextStream *_output; - bool _includeLeadingWhitespace; - bool _includeTrailingWhitespace; bool _recordLinePositions; QList _linePositions; diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/ColorFilterHotSpot.h b/local/recipes/kde/konsole/source/src/filterHotSpots/ColorFilterHotSpot.h index 581bc8790e..400208edd1 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/ColorFilterHotSpot.h +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/ColorFilterHotSpot.h @@ -27,7 +27,7 @@ private: void tooltipRequested(); QColor _color; - QPoint _toolPos; + QPoint _toolPos = QPoint(0, 0); static bool _canGenerateTooltip; }; } diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.cpp b/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.cpp index 41414930ff..8d51900c34 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.cpp +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.cpp @@ -34,3 +34,17 @@ void EscapeSequenceUrlHotSpot::activate(QObject *obj) job->setUiDelegate(KIO::createDefaultJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, QApplication::activeWindow())); job->start(); } + +void EscapeSequenceUrlHotSpot::mouseEnterEvent(TerminalDisplay *td, QMouseEvent *ev) +{ + HotSpot::mouseEnterEvent(td, ev); + + td->setHoverLinkIndicator(this->_url); +} + +void EscapeSequenceUrlHotSpot::mouseLeaveEvent(TerminalDisplay *td, QMouseEvent *ev) +{ + HotSpot::mouseLeaveEvent(td, ev); + + td->setHoverLinkIndicator(QStringLiteral("")); +} diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.h b/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.h index c3c4306f6e..71e798e18d 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.h +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/EscapeSequenceUrlFilterHotSpot.h @@ -17,6 +17,8 @@ class KONSOLEPRIVATE_EXPORT EscapeSequenceUrlHotSpot : public HotSpot public: EscapeSequenceUrlHotSpot(int startLine, int startColumn, int endLine, int endColumn, const QString &text, const QString &url); void activate(QObject *obj) override; + void mouseEnterEvent(TerminalDisplay *td, QMouseEvent *ev) override; + void mouseLeaveEvent(TerminalDisplay *td, QMouseEvent *ev) override; private: QString _text; diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilter.cpp b/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilter.cpp index 2e14114927..6a00c558c5 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilter.cpp +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilter.cpp @@ -93,7 +93,7 @@ QSharedPointer FileFilter::newHotSpot(int startLine, int startColumn, i // '.' and '..' could be valid hotspots, but '..................' most likely isn't static const QRegularExpression allDotRe{QRegularExpression::anchoredPattern(QStringLiteral("\\.{3}"))}; - if (allDotRe.matchView(filename).hasMatch()) { + if (allDotRe.match(filename).hasMatch()) { return nullptr; } diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.cpp b/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.cpp index 62a2bcf010..73d1460e9a 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.cpp +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.cpp @@ -77,9 +77,9 @@ void FileFilterHotSpot::activate(QObject *) // Output of e.g.: // - grep with line numbers: "path/to/some/file:123:" // grep with long lines e.g. "path/to/some/file:123:void blah" i.e. no space after 123: - // - compiler errors with line/column numbers: "/path/to/file.cpp:123:123:" + // - compiler errors with line/column numbers: "/path/to/file.cpp:123:123:" or "/path/to/file.cpp:123:123" // - ctest failing unit tests: "/path/to/file(204)" - static const QRegularExpression re(QStringLiteral(R"foo([:\(](\d+)(?:\)\])?(?::(\d+):|:[^\d]*)?$)foo")); + static const QRegularExpression re(QStringLiteral(R"foo([:\(](\d+)(?:\)\])?(?::(\d+):?|:[^\d]*)?$)foo")); const QRegularExpressionMatch match = re.match(_filePath); if (match.hasMatch()) { // The file path without the ":123" ... etc part @@ -271,6 +271,11 @@ void FileFilterHotSpot::thumbnailRequested() _thumbnailFinished = false; + const auto fileItem = this->fileItem(); + if (!fileItem.exists()) { + return; + } + // Show a "Loading" if Preview takes a long time. QTimer::singleShot(10, this, [this] { if (_previewJob == nullptr) { @@ -281,7 +286,7 @@ void FileFilterHotSpot::thumbnailRequested() } }); - _previewJob = new KIO::PreviewJob(KFileItemList({fileItem()}), QSize(size, size)); + _previewJob = new KIO::PreviewJob(KFileItemList({fileItem}), QSize(size, size)); connect(_previewJob, &KIO::PreviewJob::gotPreview, this, &FileFilterHotSpot::showThumbnail); connect(_previewJob, &KIO::PreviewJob::failed, this, [] { qCDebug(KonsoleDebug) << "Error generating the preview" << _previewJob->errorString(); diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.h b/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.h index a2b57055e6..183c3176ec 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.h +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/FileFilterHotspot.h @@ -66,16 +66,16 @@ private: void openWithEditorFromProfile(const QString &fullCmd, const QString &path) const; void showThumbnail(const KFileItem &item, const QPixmap &preview); - QString _filePath; + QString _filePath = QString(); Session *_session = nullptr; // This is a pointer for performance reasons // constructing KFileItemActions is super expensive KFileItemActions *_menuActions = nullptr; - QPoint _eventPos; - QPoint _thumbnailPos; - Qt::KeyboardModifiers _eventModifiers; + QPoint _eventPos = QPoint(0, 0); + QPoint _thumbnailPos = QPoint(0, 0); + Qt::KeyboardModifiers _eventModifiers = Qt::NoModifier; bool _thumbnailFinished; /* This variable stores the pointer of the active HotSpot that diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/FilterChain.cpp b/local/recipes/kde/konsole/source/src/filterHotSpots/FilterChain.cpp index 584d08d83e..e891b45ac6 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/FilterChain.cpp +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/FilterChain.cpp @@ -45,21 +45,21 @@ void FilterChain::removeFilter(Filter *filter) void FilterChain::reset() { - for (auto *filter : _filters) { + for (auto *filter : std::as_const(_filters)) { filter->reset(); } } void FilterChain::setBuffer(const QString *buffer, const QList *linePositions) { - for (auto *filter : _filters) { + for (auto *filter : std::as_const(_filters)) { filter->setBuffer(buffer, linePositions); } } void FilterChain::process() { - for (auto *filter : _filters) { + for (auto *filter : std::as_const(_filters)) { filter->process(); } } @@ -92,7 +92,8 @@ QList> FilterChain::hotSpots() const QRegion FilterChain::hotSpotRegion() const { QRegion region; - for (const auto &hotSpot : hotSpots()) { + const auto _hotSpots = hotSpots(); + for (const auto &hotSpot : _hotSpots) { QRect r; r.setLeft(hotSpot->startColumn()); r.setTop(hotSpot->startLine()); @@ -131,7 +132,8 @@ int FilterChain::count(HotSpot::Type type) const QList> FilterChain::filterBy(HotSpot::Type type) const { QList> hotspots; - for (const auto &spot : hotSpots()) { + const auto _hotSpots = hotSpots(); + for (const auto &spot : _hotSpots) { if (spot->type() == type) { hotspots.append(spot); } diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/HotSpot.cpp b/local/recipes/kde/konsole/source/src/filterHotSpots/HotSpot.cpp index fb642fcbe7..d88be75bb2 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/HotSpot.cpp +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/HotSpot.cpp @@ -185,3 +185,5 @@ bool Konsole::HotSpot::hasDragOperation() const void Konsole::HotSpot::startDrag() { } + +#include "moc_HotSpot.cpp" diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/TerminalImageFilterChain.cpp b/local/recipes/kde/konsole/source/src/filterHotSpots/TerminalImageFilterChain.cpp index c5d7be2aed..d0ec266542 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/TerminalImageFilterChain.cpp +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/TerminalImageFilterChain.cpp @@ -34,8 +34,6 @@ void TerminalImageFilterChain::setImage(const Character *const image, int lines, reset(); PlainTextDecoder decoder; - decoder.setLeadingWhitespace(true); - decoder.setTrailingWhitespace(true); // setup new shared buffers for the filters to process on _buffer.reset(new QString()); diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.cpp b/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.cpp index 298ddf1ddc..6db43e5ca3 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.cpp +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.cpp @@ -96,19 +96,25 @@ QSharedPointer UrlFilter::newHotSpot(int startLine, int startColumn, in { QStringList texts{}; - // remove final single quote + // remove final invalid characters // we want URLs in single quotes like the following to work correctly: // 'https://en.wikipedia.org/wiki/Earth's_rotation' - for (QString s : capturedTexts) { - QString str{s}; - if (s.right(1) == QLatin1String("'")) { - s.chop(1); + // https://example.com. + static const QRegularExpression invalidCharRegex(LS1("[',.:;]+$")); + + // capturedTexts[0] is the full match, the rest are the capture groups + QString str0 = capturedTexts[0]; + QRegularExpressionMatch match = invalidCharRegex.match(str0); + + if (match.hasMatch()) { + int invalidCharLength0 = match.captured(0).length(); + str0.chop(invalidCharLength0); + endColumn = endColumn - invalidCharLength0; + if (endColumn < 0) { + endColumn = 0; } - texts << s; - } - if (capturedTexts[0].right(1) == QLatin1String("'")) { - endColumn--; } + texts << str0; return QSharedPointer(new UrlFilterHotSpot(startLine, startColumn, endLine, endColumn, texts)); } diff --git a/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.h b/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.h index 75a2fe65ec..073f4c9f69 100644 --- a/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.h +++ b/local/recipes/kde/konsole/source/src/filterHotSpots/UrlFilter.h @@ -21,8 +21,7 @@ class KONSOLEPRIVATE_EXPORT UrlFilter : public RegExpFilter public: UrlFilter(); -protected: - QSharedPointer newHotSpot(int beginRow, int beginColumn, int endRow, int endColumn, const QStringList &list) override; + QSharedPointer newHotSpot(int startLine, int startColumn, int endLine, int endColumn, const QStringList &capturedTexts) override; public: static const QRegularExpression FullUrlRegExp; diff --git a/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.cpp b/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.cpp index 16e7f55b7c..87f098cf63 100644 --- a/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.cpp +++ b/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.cpp @@ -40,8 +40,8 @@ void CompactHistoryScroll::addCells(const Character a[], const int count) // the flag is later updated when addLine is called _lineDatas.push_back({static_cast(_cells.size() + _indexBias), LineProperty()}); - if (_lineDatas.size() > _maxLineCount + 5) { - removeLinesFromTop(5); + if (_lineDatas.size() > _maxLineCount + 1) { + removeLinesFromTop(1); } } @@ -53,8 +53,8 @@ void CompactHistoryScroll::addCellsMove(Character characters[], const int count) // the flag is later updated when addLine is called _lineDatas.push_back({static_cast(_cells.size() + _indexBias), LineProperty()}); - if (_lineDatas.size() > _maxLineCount + 5) { - removeLinesFromTop(5); + if (_lineDatas.size() > _maxLineCount + 1) { + removeLinesFromTop(1); } } diff --git a/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.h b/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.h index b08df9e652..d91b766b0b 100644 --- a/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.h +++ b/local/recipes/kde/konsole/source/src/history/compact/CompactHistoryScroll.h @@ -28,10 +28,10 @@ public: void getCells(const int lineNumber, const int startColumn, const int count, Character buffer[]) const override; bool isWrappedLine(const int lineNumber) const override; LineProperty getLineProperty(const int lineNumber) const override; - void setLineProperty(const int lineno, LineProperty prop) override; + void setLineProperty(const int lineNumber, LineProperty prop) override; void addCells(const Character a[], const int count) override; - void addCellsMove(Character a[], const int count) override; + void addCellsMove(Character characters[], const int count) override; void addLine(const LineProperty lineProperty = LineProperty()) override; void removeCells() override; diff --git a/local/recipes/kde/konsole/source/src/keyboardtranslator/CMakeLists.txt b/local/recipes/kde/konsole/source/src/keyboardtranslator/CMakeLists.txt index 5403138cc8..825ee55efe 100644 --- a/local/recipes/kde/konsole/source/src/keyboardtranslator/CMakeLists.txt +++ b/local/recipes/kde/konsole/source/src/keyboardtranslator/CMakeLists.txt @@ -1,6 +1,5 @@ add_library(keyboardtranslator STATIC - FallbackKeyboardTranslator.cpp KeyboardTranslatorManager.cpp KeyboardTranslatorWriter.cpp KeyboardTranslator.cpp diff --git a/local/recipes/kde/konsole/source/src/keyboardtranslator/FallbackKeyboardTranslator.cpp b/local/recipes/kde/konsole/source/src/keyboardtranslator/FallbackKeyboardTranslator.cpp deleted file mode 100644 index 1ba523bed9..0000000000 --- a/local/recipes/kde/konsole/source/src/keyboardtranslator/FallbackKeyboardTranslator.cpp +++ /dev/null @@ -1,24 +0,0 @@ -/* - This source file is part of Konsole, a terminal emulator. - - SPDX-FileCopyrightText: 2007-2008 Robert Knight - - SPDX-License-Identifier: GPL-2.0-or-later -*/ - -// Own -#include "FallbackKeyboardTranslator.h" - -using namespace Konsole; - -FallbackKeyboardTranslator::FallbackKeyboardTranslator() - : KeyboardTranslator(QStringLiteral("fallback")) -{ - setDescription(QStringLiteral("Fallback Keyboard Translator")); - - // Key "TAB" should send out '\t' - KeyboardTranslator::Entry entry; - entry.setKeyCode(Qt::Key_Tab); - entry.setText("\t"); - addEntry(entry); -} diff --git a/local/recipes/kde/konsole/source/src/keyboardtranslator/FallbackKeyboardTranslator.h b/local/recipes/kde/konsole/source/src/keyboardtranslator/FallbackKeyboardTranslator.h deleted file mode 100644 index 1dc5290957..0000000000 --- a/local/recipes/kde/konsole/source/src/keyboardtranslator/FallbackKeyboardTranslator.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - This source file is part of Konsole, a terminal emulator. - - SPDX-FileCopyrightText: 2007-2008 Robert Knight - - SPDX-License-Identifier: GPL-2.0-or-later -*/ - -#ifndef FALLBACKKEYBOARDTRANSLATOR_H -#define FALLBACKKEYBOARDTRANSLATOR_H - -// Konsole -#include "KeyboardTranslator.h" - -namespace Konsole -{ -class FallbackKeyboardTranslator : public KeyboardTranslator -{ -public: - FallbackKeyboardTranslator(); -}; - -} - -#endif diff --git a/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.cpp b/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.cpp index 293843b835..2fce18253a 100644 --- a/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.cpp +++ b/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.cpp @@ -9,7 +9,6 @@ // Own #include "KeyboardTranslatorManager.h" -#include "FallbackKeyboardTranslator.h" #include "KeyboardTranslatorReader.h" #include "KeyboardTranslatorWriter.h" @@ -23,16 +22,13 @@ using namespace Konsole; KeyboardTranslatorManager::KeyboardTranslatorManager() : _haveLoadedAll(false) - , _fallbackTranslator(nullptr) , _translators(QHash()) { - _fallbackTranslator = new FallbackKeyboardTranslator(); } KeyboardTranslatorManager::~KeyboardTranslatorManager() { qDeleteAll(_translators); - delete _fallbackTranslator; } Q_GLOBAL_STATIC(KeyboardTranslatorManager, theKeyboardTranslatorManager) @@ -199,13 +195,28 @@ KeyboardTranslator *KeyboardTranslatorManager::loadTranslator(QIODevice *source, const KeyboardTranslator *KeyboardTranslatorManager::defaultTranslator() { + // Note that as of 24.08, all keytab files are bundled into the + // executable via qrc. Hence there should be no way for this code + // to not find the default translator. + // // Try to find the default.keytab file if it exists, otherwise // fall back to the internal hard-coded fallback translator - const KeyboardTranslator *translator = findTranslator(QStringLiteral("default")); - if (translator == nullptr) { - translator = _fallbackTranslator; + auto translator = findTranslator(QStringLiteral("default")); + if (translator != nullptr) { + return translator; } - return translator; + + // Create a fallback translator and register it in _translators + auto *fallback = new KeyboardTranslator(QStringLiteral("fallback")); + fallback->setDescription(QStringLiteral("Fallback Keyboard Translator")); + // Key "TAB" should send out '\t' + KeyboardTranslator::Entry entry; + entry.setKeyCode(Qt::Key_Tab); + entry.setText("\t"); + fallback->addEntry(entry); + + _translators.insert(fallback->name(), fallback); + return fallback; } const QStringList KeyboardTranslatorManager::allTranslators() diff --git a/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.h b/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.h index 4109fa55b2..5b88904036 100644 --- a/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.h +++ b/local/recipes/kde/konsole/source/src/keyboardtranslator/KeyboardTranslatorManager.h @@ -114,7 +114,6 @@ private: bool _haveLoadedAll; - const KeyboardTranslator *_fallbackTranslator; QHash _translators; }; } diff --git a/local/recipes/kde/konsole/source/src/konsolepart.json b/local/recipes/kde/konsole/source/src/konsolepart.json index 24f30b84ab..e3184da373 100644 --- a/local/recipes/kde/konsole/source/src/konsolepart.json +++ b/local/recipes/kde/konsole/source/src/konsolepart.json @@ -10,6 +10,7 @@ "Description[ca]": "Accés a la línia d'ordres", "Description[cs]": "Přístup k příkazové řádce", "Description[de]": "Zugriff auf die Befehlszeile", + "Description[el]": "Πρόσβαση στη γραμμή εντολών", "Description[en_GB]": "Command line access", "Description[eo]": "Komandlinia aliro", "Description[es]": "Acceso a la línea de órdenes", @@ -17,13 +18,15 @@ "Description[fi]": "Komentorivin käyttö", "Description[fr]": "Accès par ligne de commandes", "Description[gl]": "Acceso á liña de ordes.", - "Description[he]": "גישה לשורת הפקודה", + "Description[he]": "גישה לשורת הפקודות", "Description[hu]": "Parancssori hozzáférés", "Description[ia]": "Accesso a linea de commando", + "Description[ie]": "Accesse al linea de comandes", "Description[is]": "Aðgangur með skipanalínu", "Description[it]": "Accesso alla riga di comando", "Description[ka]": "ბრძანების სტრიქონთან წვდომა", "Description[ko]": "명령행 접근", + "Description[lt]": "Prieiga prie komandų eilutės", "Description[lv]": "Komandrindas piekļuve", "Description[nl]": "Toegang tot de opdrachtregel", "Description[nn]": "Kommandolinjetilgang", @@ -31,14 +34,15 @@ "Description[pl]": "Dostęp do wiersza poleceń", "Description[pt]": "Acesso à linha de comandos", "Description[pt_BR]": "Acesso à linha de comandos", + "Description[ro]": "Acces în linie de comandă", "Description[ru]": "Доступ к командной строке", + "Description[sa]": "आदेशपङ्क्तिप्रवेशः", "Description[sk]": "Prístup na príkazový riadok", "Description[sl]": "Dostop do ukazne vrstice", "Description[sv]": "Åtkomst till kommandorad", "Description[ta]": "கட்டளை வரியை அணுக உதவும்", "Description[tr]": "Komut satırı erişimi", "Description[uk]": "Доступ до командного рядка", - "Description[x-test]": "xxCommand line accessxx", "Description[zh_CN]": "命令行访问", "Description[zh_TW]": "指令列", "Icon": "utilities-terminal", @@ -51,6 +55,7 @@ "Name[ca]": "Emulador de terminal", "Name[cs]": "Emulátor terminálu", "Name[de]": "Terminal-Emulator", + "Name[el]": "Εξομοιωτής τερματικού", "Name[en_GB]": "Terminal Emulator", "Name[eo]": "Terminal-Imitilo", "Name[es]": "Emulador de terminal", @@ -61,10 +66,12 @@ "Name[he]": "מדמה מסוף", "Name[hu]": "Terminálemulátor", "Name[ia]": "Emulator de terminal", + "Name[ie]": "Emulator de terminal", "Name[is]": "Skjáhermir", "Name[it]": "Emulatore di terminale", "Name[ka]": "ტერმინალის ემულატორი", "Name[ko]": "터미널 에뮬레이터", + "Name[lt]": "Terminalo emuliatorius", "Name[lv]": "Termināļa emulators", "Name[nl]": "Terminalprogramma", "Name[nn]": "Terminalemulator", @@ -72,14 +79,15 @@ "Name[pl]": "Emulator terminala", "Name[pt]": "Emulador de Terminal", "Name[pt_BR]": "Emulador de terminal", + "Name[ro]": "Emulator de terminal", "Name[ru]": "Эмулятор терминала", + "Name[sa]": "टर्मिनल एमुलेटर", "Name[sk]": "Emulátor terminálu", "Name[sl]": "Emulator terminala", "Name[sv]": "Terminalemulator", "Name[ta]": "முனைய செயலி", "Name[tr]": "Uçbirim Öykünücüsü", "Name[uk]": "Емулятор термінала", - "Name[x-test]": "xxTerminal Emulatorxx", "Name[zh_CN]": "终端模拟器", "Name[zh_TW]": "終端機模擬器", "ServiceTypes": [ diff --git a/local/recipes/kde/konsole/source/src/main.cpp b/local/recipes/kde/konsole/source/src/main.cpp index 2207db1d7c..8727109ee9 100644 --- a/local/recipes/kde/konsole/source/src/main.cpp +++ b/local/recipes/kde/konsole/source/src/main.cpp @@ -29,9 +29,12 @@ #include #include #include +#include #if HAVE_DBUS #include +#include +#include #endif #define HAVE_STYLE_MANAGER __has_include() @@ -51,7 +54,7 @@ using Konsole::Application; void fillAboutData(KAboutData &aboutData); // check and report whether this konsole instance should use a new konsole -// process, or re-use an existing konsole process. +// process, or reuse an existing konsole process. bool shouldUseNewProcess(int argc, char *argv[]); // restore sessions saved by KDE. @@ -147,7 +150,7 @@ int main(int argc, char *argv[]) #endif #if HAVE_DBUS - // Check if any of the arguments makes it impossible to re-use an existing process. + // Check if any of the arguments makes it impossible to reuse an existing process. // We need to do this manually and before creating a QApplication, because // QApplication takes/removes the Qt specific arguments that are incompatible. const bool needNewProcess = shouldUseNewProcess(argc, argv); @@ -209,6 +212,31 @@ int main(int argc, char *argv[]) about.processCommandLine(parser.data()); #if HAVE_DBUS + // on wayland: init token if we are launched by Konsole and have none + if (KWindowSystem::isPlatformWayland() && qEnvironmentVariable("XDG_ACTIVATION_TOKEN").isEmpty() && QDBusConnection::sessionBus().interface()) { + // can we ask Konsole for a token? + const auto konsoleService = qEnvironmentVariable("KONSOLE_DBUS_SERVICE"); + const auto konsoleSession = qEnvironmentVariable("KONSOLE_DBUS_SESSION"); + const auto konsoleActivationCookie = qEnvironmentVariable("KONSOLE_DBUS_ACTIVATION_COOKIE"); + if (!konsoleService.isEmpty() && !konsoleSession.isEmpty() && !konsoleActivationCookie.isEmpty()) { + // we ask the current shell session + QDBusMessage m = + QDBusMessage::createMethodCall(konsoleService, konsoleSession, QStringLiteral("org.kde.konsole.Session"), QStringLiteral("activationToken")); + + // use the cookie from the environment + m.setArguments({konsoleActivationCookie}); + + // get the token, if possible and export it to environment for later use + const auto tokenAnswer = QDBusConnection::sessionBus().call(m); + if (tokenAnswer.type() == QDBusMessage::ReplyMessage && !tokenAnswer.arguments().isEmpty()) { + const auto token = tokenAnswer.arguments().first().toString(); + if (!token.isEmpty()) { + qputenv("XDG_ACTIVATION_TOKEN", token.toUtf8()); + } + } + } + } + /// ! DON'T TOUCH THIS ! /// const KDBusService::StartupOption startupOption = Konsole::KonsoleSettings::useSingleInstance() && !needNewProcess ? KDBusService::Unique : KDBusService::Multiple; @@ -316,7 +344,7 @@ bool shouldUseNewProcess(int argc, char *argv[]) } // the only way to create new tab is to reuse existing Konsole process. - if (arguments.contains(QStringLiteral("--new-tab"))) { + if (Konsole::KonsoleSettings::forceNewTabs() || arguments.contains(QStringLiteral("--new-tab"))) { return false; } diff --git a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/filtermodel.cpp b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/filtermodel.cpp index 8af5057b1a..28d8bd70f2 100644 --- a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/filtermodel.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/filtermodel.cpp @@ -33,9 +33,8 @@ bool FilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParen void FilterModel::setInvertFilter(bool invert) { - beginFilterChange(); m_invertFilter = invert; - endFilterChange(QSortFilterProxyModel::Direction::Rows); + invalidateFilter(); } #include "moc_filtermodel.cpp" diff --git a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/konsole_quickcommands.in.json b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/konsole_quickcommands.in.json index 5b7f49bf7d..6cd6be009a 100644 --- a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/konsole_quickcommands.in.json +++ b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/konsole_quickcommands.in.json @@ -27,6 +27,7 @@ "Name[it]": "Comandi rapidi", "Name[ka]": "სწრაფი ბრძანებები", "Name[ko]": "빠른 명령", + "Name[lt]": "Greitosios komandos", "Name[lv]": "Ātrās komandas", "Name[nl]": "Snelle commando's", "Name[nn]": "Snøggkommandoar", @@ -36,13 +37,13 @@ "Name[pt_BR]": "Comandos rápidos", "Name[ro]": "Comenzi rapide", "Name[ru]": "Быстрые команды", + "Name[sa]": "त्वरित आदेशाः", "Name[sk]": "Rýchle príkazy", "Name[sl]": "Hitri ukazi", "Name[sv]": "Snabbkommandon", "Name[ta]": "விரை கட்டளைகள்", "Name[tr]": "Tez Komutlar", "Name[uk]": "Швидкі команди", - "Name[x-test]": "xxQuick Commandsxx", "Name[zh_CN]": "快速命令", "Name[zh_TW]": "快速命令", "Version": "@RELEASE_SERVICE_VERSION@" diff --git a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsmodel.cpp b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsmodel.cpp index 66d8c7f835..86399ea023 100644 --- a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsmodel.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsmodel.cpp @@ -22,10 +22,12 @@ QuickCommandsModel::~QuickCommandsModel() noexcept void QuickCommandsModel::load() { auto config = KConfig(QStringLiteral("konsolequickcommandsconfig"), KConfig::OpenFlag::SimpleConfig); - for (const QString &groupName : config.groupList()) { + const auto groupList = config.groupList(); + for (const QString &groupName : groupList) { KConfigGroup group = config.group(groupName); addTopLevelItem(groupName); - for (const QString &commandGroup : group.groupList()) { + const auto groupGroupList = group.groupList(); + for (const QString &commandGroup : groupGroupList) { QuickCommandData data; KConfigGroup element = group.group(commandGroup); data.name = element.readEntry("name"); @@ -39,7 +41,8 @@ void QuickCommandsModel::load() void QuickCommandsModel::save() { auto config = KConfig(QStringLiteral("konsolequickcommandsconfig"), KConfig::OpenFlag::SimpleConfig); - for (const QString &groupName : config.groupList()) { + const auto groupList = config.groupList(); + for (const QString &groupName : groupList) { config.deleteGroup(groupName); } for (int i = 0, end = invisibleRootItem()->rowCount(); i < end; i++) { diff --git a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsplugin.cpp b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsplugin.cpp index e7ce7075a0..0f52e4c76a 100644 --- a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsplugin.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandsplugin.cpp @@ -67,6 +67,10 @@ void QuickCommandsPlugin::createWidgetsForMainWindow(Konsole::MainWindow *mainWi void QuickCommandsPlugin::activeViewChanged(Konsole::SessionController *controller, Konsole::MainWindow *mainWindow) { + if (mainWindow == nullptr || controller == nullptr) { + return; + } + priv->showQuickAccess->deleteLater(); priv->showQuickAccess = new QAction(i18n("Show Quick Access")); @@ -81,10 +85,18 @@ void QuickCommandsPlugin::activeViewChanged(Konsole::SessionController *controll mainWindow->actionCollection()->setDefaultShortcut(priv->showQuickAccess, shortcutEntry); - controller->view()->addAction(priv->showQuickAccess); + // controller may exist while its view is being torn down + QPointer terminalDisplay = controller->view(); + if (terminalDisplay == nullptr) { + return; + } + terminalDisplay->addAction(priv->showQuickAccess); - Konsole::TerminalDisplay *terminalDisplay = controller->view(); - connect(priv->showQuickAccess, &QAction::triggered, this, [this, terminalDisplay, controller] { + QPointer controllerPtr(controller); + connect(priv->showQuickAccess, &QAction::triggered, this, [this, terminalDisplay, controllerPtr] { + if (terminalDisplay == nullptr) { + return; + } auto bar = new KCommandBar(terminalDisplay->topLevelWidget()); QList actions; for (int i = 0; i < priv->model.rowCount(); i++) { @@ -92,10 +104,15 @@ void QuickCommandsPlugin::activeViewChanged(Konsole::SessionController *controll for (int e = 0; e < priv->model.rowCount(folder); e++) { QModelIndex idx = priv->model.index(e, 0, folder); QAction *act = new QAction(idx.data().toString()); - connect(act, &QAction::triggered, this, [this, idx, controller] { + connect(act, &QAction::triggered, this, [this, idx, controllerPtr] { + if (controllerPtr == nullptr) { + return; + } const auto item = priv->model.itemFromIndex(idx); const auto data = item->data(QuickCommandsModel::QuickCommandRole).value(); - controller->session()->sendTextToTerminal(data.command, QLatin1Char('\r')); + if (controllerPtr->session() != nullptr) { + controllerPtr->session()->sendTextToTerminal(data.command, QLatin1Char('\r')); + } }); actions.append(act); } @@ -115,9 +132,7 @@ void QuickCommandsPlugin::activeViewChanged(Konsole::SessionController *controll bar->show(); }); - if (mainWindow) { - priv->widgetForWindow[mainWindow]->setCurrentController(controller); - } + priv->widgetForWindow[mainWindow]->setCurrentController(controller); } QList QuickCommandsPlugin::menuBarActions(Konsole::MainWindow *mainWindow) const diff --git a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandswidget.cpp b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandswidget.cpp index 366f7defc2..839910614d 100644 --- a/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandswidget.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/QuickCommands/quickcommandswidget.cpp @@ -314,11 +314,7 @@ void QuickCommandsWidget::runShellCheck() } QTemporaryFile file; - if (!file.open()) { - ui->warning->setPlainText(file.errorString()); - ui->tabWidget->setTabText(1, i18n("Warnings (*)")); - return; - } + file.open(); QTextStream ts(&file); ts << "#!/bin/bash\n"; diff --git a/local/recipes/kde/konsole/source/src/plugins/SSHManager/CMakeLists.txt b/local/recipes/kde/konsole/source/src/plugins/SSHManager/CMakeLists.txt index 92de3c7769..7bfe5fad26 100644 --- a/local/recipes/kde/konsole/source/src/plugins/SSHManager/CMakeLists.txt +++ b/local/recipes/kde/konsole/source/src/plugins/SSHManager/CMakeLists.txt @@ -1,5 +1,15 @@ -ki18n_wrap_ui(EXTRA_SSHPLUGIN_SRCS sshwidget.ui) +ki18n_wrap_ui(extra_sshplugin_SRCS sshwidget.ui) + +ecm_qt_declare_logging_category( + extra_sshplugin_SRCS + HEADER sshmanagerplugindebug.h + IDENTIFIER SshManagerPluginDebug + CATEGORY_NAME org.kde.konsole.plugin.sshmanager + DESCRIPTION "Konsole plugin (SSH Manager)" + DEFAULT_SEVERITY Warning + EXPORT KONSOLE +) kcoreaddons_add_plugin(konsole_sshmanagerplugin SOURCES @@ -8,7 +18,7 @@ SOURCES sshmanagermodel.cpp sshmanagerfiltermodel.cpp sshtreeview.cpp - ${EXTRA_SSHPLUGIN_SRCS} + ${extra_sshplugin_SRCS} INSTALL_NAMESPACE "konsoleplugins" ) diff --git a/local/recipes/kde/konsole/source/src/plugins/SSHManager/konsole_sshmanager.in.json b/local/recipes/kde/konsole/source/src/plugins/SSHManager/konsole_sshmanager.in.json index e3a3951bed..3eef84e05c 100644 --- a/local/recipes/kde/konsole/source/src/plugins/SSHManager/konsole_sshmanager.in.json +++ b/local/recipes/kde/konsole/source/src/plugins/SSHManager/konsole_sshmanager.in.json @@ -26,6 +26,7 @@ "Name[it]": "Gestore SSH", "Name[ka]": "SSH-ის მმართველი", "Name[ko]": "SSH 관리자", + "Name[lt]": "SSH tvarkytuvė", "Name[lv]": "SSH pārvaldnieks", "Name[nl]": "SSH-beheerder", "Name[nn]": "SSH-handsamar", @@ -35,13 +36,13 @@ "Name[pt_BR]": "Gerenciador de SSH", "Name[ro]": "Gestionar SSH", "Name[ru]": "Менеджер SSH", + "Name[sa]": "SSH प्रबन्धकः", "Name[sk]": "Správca SSH", "Name[sl]": "Upravljalnik SSH", "Name[sv]": "SSH-hanterare", "Name[ta]": "SSH மேலாளர்", "Name[tr]": "SSH Yöneticisi", "Name[uk]": "Керування SSH", - "Name[x-test]": "xxSSH Managerxx", "Name[zh_CN]": "SSH 管理器", "Name[zh_TW]": "SSH 管理程式", "Version": "@RELEASE_SERVICE_VERSION@" diff --git a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerfiltermodel.cpp b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerfiltermodel.cpp index a51502d77b..c3b4aa464c 100644 --- a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerfiltermodel.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerfiltermodel.cpp @@ -31,9 +31,8 @@ bool SSHManagerFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &s void SSHManagerFilterModel::setInvertFilter(bool invert) { - beginFilterChange(); m_invertFilter = invert; - endFilterChange(QSortFilterProxyModel::Direction::Rows); + invalidateFilter(); } #include "moc_sshmanagerfiltermodel.cpp" diff --git a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagermodel.cpp b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagermodel.cpp index a61e02f16c..eb5ec8c723 100644 --- a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagermodel.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagermodel.cpp @@ -30,7 +30,7 @@ #include "sshconfigurationdata.h" -Q_LOGGING_CATEGORY(SshManagerPlugin, "org.kde.konsole.plugin.sshmanager") +#include "sshmanagerplugindebug.h" namespace { @@ -249,14 +249,17 @@ void SSHManagerModel::triggerProfileChange(const QString &sshHost) void SSHManagerModel::load() { auto config = KConfig(QStringLiteral("konsolesshconfig"), KConfig::OpenFlag::SimpleConfig); - for (const QString &groupName : config.groupList()) { + + const auto groupList = config.groupList(); + for (const QString &groupName : groupList) { KConfigGroup group = config.group(groupName); if (groupName == QStringLiteral("Global plugin config")) { manageProfile = group.readEntry("manageProfile", false); continue; } addTopLevelItem(groupName); - for (const QString &sessionName : group.groupList()) { + const auto groupGroupList = group.groupList(); + for (const QString &sessionName : groupGroupList) { SSHConfigurationData data; KConfigGroup sessionGroup = group.group(sessionName); data.host = sessionGroup.readEntry("hostname"); @@ -275,7 +278,8 @@ void SSHManagerModel::load() void SSHManagerModel::save() { auto config = KConfig(QStringLiteral("konsolesshconfig"), KConfig::OpenFlag::SimpleConfig); - for (const QString &groupName : config.groupList()) { + const auto groupList = config.groupList(); + for (const QString &groupName : groupList) { config.deleteGroup(groupName); } @@ -331,7 +335,8 @@ void SSHManagerModel::importFromSshConfigFile(const QString &file) { QFile sshConfig(file); if (!sshConfig.open(QIODevice::ReadOnly)) { - qCDebug(SshManagerPlugin) << "Can't open config file"; + qCDebug(SshManagerPluginDebug) << "Can't open config file"; + return; } QTextStream stream(&sshConfig); QString line; diff --git a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerplugin.cpp b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerplugin.cpp index 03343ffab9..d4287d836c 100644 --- a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerplugin.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerplugin.cpp @@ -202,7 +202,13 @@ void SSHManagerPlugin::requestConnection(QSortFilterProxyModel *filterModel, auto data = item->data(SSHManagerModel::SSHRole).value(); QString sshCommand = QStringLiteral("ssh "); - if (!data.useSshConfig) { + if (data.useSshConfig) { + // useSshConfig is defined in sshwidget.ui:165 -> meaning whether the ssh config is taken from .ssh/config + // call that host by data.name (which is the identifier as in sshmanagermodel.cpp:263) + sshCommand += data.name; + } else { + // if (!data.useSshConfig) + // useSshConfig is false aka not set, so we just a assume a manual entry in terms of an entry that was added manually to the sshmanager if (data.sshKey.length()) { sshCommand += QStringLiteral("-i %1 ").arg(data.sshKey); } @@ -214,10 +220,10 @@ void SSHManagerPlugin::requestConnection(QSortFilterProxyModel *filterModel, if (!data.username.isEmpty()) { sshCommand += data.username + QLatin1Char('@'); } - } - - if (!data.host.isEmpty()) { - sshCommand += data.host; + + if (!data.host.isEmpty()) { + sshCommand += data.host; + } } controller->session()->sendTextToTerminal(sshCommand, QLatin1Char('\r')); diff --git a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerpluginwidget.cpp b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerpluginwidget.cpp index d79a4e0a42..fa7270a510 100644 --- a/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerpluginwidget.cpp +++ b/local/recipes/kde/konsole/source/src/plugins/SSHManager/sshmanagerpluginwidget.cpp @@ -30,14 +30,14 @@ #include #include #include -#include -#include #include #include #include +#include "sshmanagerplugindebug.h" + struct SSHManagerTreeWidget::Private { SSHManagerModel *model = nullptr; SSHManagerFilterModel *filterModel = nullptr; @@ -55,16 +55,8 @@ SSHManagerTreeWidget::SSHManagerTreeWidget(QWidget *parent) d->filterModel = new SSHManagerFilterModel(this); - // https://stackoverflow.com/questions/1418423/the-hostname-regex - const auto hostnameRegex = - QRegularExpression(QStringLiteral(R"(^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$)")); - - const auto *hostnameValidator = new QRegularExpressionValidator(hostnameRegex, this); - ui->hostname->setValidator(hostnameValidator); - - // System and User ports see: - // https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml - const auto *portValidator = new QIntValidator(0, 49151, this); + // full port range, users can setup ssh on any port they want + const auto *portValidator = new QIntValidator(0, 65535, this); ui->port->setValidator(portValidator); connect(ui->newSSHConfig, &QPushButton::clicked, this, &SSHManagerTreeWidget::showInfoPane); @@ -369,7 +361,7 @@ void SSHManagerTreeWidget::setModel(SSHManagerModel *model) void SSHManagerTreeWidget::setCurrentController(Konsole::SessionController *controller) { - qCDebug(KonsoleDebug) << "Controller changed to" << controller; + qCDebug(SshManagerPluginDebug) << "Controller changed to" << controller; d->controller = controller; d->model->setSessionController(controller); diff --git a/local/recipes/kde/konsole/source/src/pluginsystem/PluginManager.cpp b/local/recipes/kde/konsole/source/src/pluginsystem/PluginManager.cpp index 6de368c9df..9aa0343a67 100644 --- a/local/recipes/kde/konsole/source/src/pluginsystem/PluginManager.cpp +++ b/local/recipes/kde/konsole/source/src/pluginsystem/PluginManager.cpp @@ -47,7 +47,7 @@ void PluginManager::loadAllPlugins() return false; } }); - for (const auto &metaData : pluginMetaData) { + for (const auto &metaData : std::as_const(pluginMetaData)) { const KPluginFactory::Result result = KPluginFactory::instantiatePlugin(metaData); if (!result) { continue; diff --git a/local/recipes/kde/konsole/source/src/profile/Profile.cpp b/local/recipes/kde/konsole/source/src/profile/Profile.cpp index dc6e198ad1..0c09113b83 100644 --- a/local/recipes/kde/konsole/source/src/profile/Profile.cpp +++ b/local/recipes/kde/konsole/source/src/profile/Profile.cpp @@ -13,14 +13,13 @@ // Qt #include #include -#include +#include // KDE #include #include // Konsole -#include "Enumeration.h" #include "ProfileGroup.h" #include "config-konsole.h" @@ -78,6 +77,8 @@ const std::vector Profile::DefaultProperties = { {SemanticInputClick, "SemanticInputClick", GENERAL_GROUP, false}, {ShowTerminalSizeHint, "ShowTerminalSizeHint", GENERAL_GROUP, true}, {StartInCurrentSessionDir, "StartInCurrentSessionDir", GENERAL_GROUP, true}, + {InheritContainerContext, "InheritContainerContext", GENERAL_GROUP, false}, + {ContainerName, "ContainerName", GENERAL_GROUP, QString()}, {SilenceSeconds, "SilenceSeconds", GENERAL_GROUP, 10}, {TerminalColumns, "TerminalColumns", GENERAL_GROUP, 110}, {TerminalRows, "TerminalRows", GENERAL_GROUP, 28}, @@ -98,13 +99,14 @@ const std::vector Profile::DefaultProperties = { {UseFontBrailleCharacters, "UseFontBrailleChararacters", APPEARANCE_GROUP, true}, {LineSpacing, "LineSpacing", APPEARANCE_GROUP, 0}, {TabColor, "TabColor", APPEARANCE_GROUP, QColor(QColor::Invalid)}, + {TabActivityColor, "TabActivityColor", APPEARANCE_GROUP, QColor(QColor::Invalid)}, {DimValue, "DimmValue", APPEARANCE_GROUP, 128}, {DimWhenInactive, "DimWhenInactive", GENERAL_GROUP, false}, {BorderWhenActive, "BorderWhenActive", APPEARANCE_GROUP, false}, {FocusBorderColor, "FocusBorderColor", APPEARANCE_GROUP, QColor(Qt::gray)}, {InvertSelectionColors, "InvertSelectionColors", GENERAL_GROUP, false}, {EmojiFont, "EmojiFont", APPEARANCE_GROUP, QFont()}, - {WordMode, "WordMode", APPEARANCE_GROUP, true}, + {WordMode, "WordMode", APPEARANCE_GROUP, false}, {WordModeAttr, "WordModeAttr", APPEARANCE_GROUP, false}, {WordModeAscii, "WordModeAscii", APPEARANCE_GROUP, true}, {WordModeBrahmic, "WordModeBrahmic", APPEARANCE_GROUP, false}, @@ -126,6 +128,8 @@ const std::vector Profile::DefaultProperties = { {ReflowLines, "ReflowLines", SCROLLING_GROUP, true}, {MarkerColor, "MarkerColor", SCROLLING_GROUP, QColor(Qt::red)}, {MarkerSize, "MarkerSize", SCROLLING_GROUP, 2}, + {SearchLineColor, "SearchLineColor", SCROLLING_GROUP, QColor(Qt::yellow)}, + {SearchLineOpacity, "SearchLineOpacity", SCROLLING_GROUP, 100}, // Terminal Features {UrlHintsModifiers, "UrlHintsModifiers", TERMINAL_GROUP, 0}, @@ -136,11 +140,13 @@ const std::vector Profile::DefaultProperties = { {BidiLineLTR, "BidiLineLTR", TERMINAL_GROUP, true}, {BidiTableDirOverride, "BidiTableDirOverride", TERMINAL_GROUP, true}, {BlinkingCursorEnabled, "BlinkingCursorEnabled", TERMINAL_GROUP, false}, + {AnimatingCursorEnabled, "AnimatingCursorEnabled", TERMINAL_GROUP, false}, {BellMode, "BellMode", TERMINAL_GROUP, Enum::NotifyBell}, {VerticalLine, "VerticalLine", TERMINAL_GROUP, false}, {VerticalLineAtChar, "VerticalLineAtChar", TERMINAL_GROUP, 80}, {PeekPrimaryKeySequence, "PeekPrimaryKeySequence", TERMINAL_GROUP, QString()}, {LineNumbers, "LineNumbers", TERMINAL_GROUP, 0}, + {AutoSaveInterval, "AutoSaveInterval", TERMINAL_GROUP, 10000}, // Cursor {UseCustomCursorColor, "UseCustomCursorColor", CURSOR_GROUP, false}, @@ -271,9 +277,9 @@ void Profile::useBuiltin() setProperty(Arguments, QStringList{defaultShell()}); setProperty(Font, QFontDatabase::systemFont(QFontDatabase::FixedFont)); #if defined(Q_OS_WIN) - setProperty(DefaultEncoding, QLatin1String(QTextCodec::codecForName("utf8")->name())); + setProperty(DefaultEncoding, QString::fromUtf8(QStringConverter::nameForEncoding(QStringConverter::Utf8))); #else - setProperty(DefaultEncoding, QLatin1String(QTextCodec::codecForLocale()->name())); + setProperty(DefaultEncoding, QString::fromUtf8(QStringConverter::nameForEncoding(QStringConverter::System))); #endif // Built-in profile should not be shown in menus setHidden(true); diff --git a/local/recipes/kde/konsole/source/src/profile/Profile.h b/local/recipes/kde/konsole/source/src/profile/Profile.h index 96e52e4491..93c58e2536 100644 --- a/local/recipes/kde/konsole/source/src/profile/Profile.h +++ b/local/recipes/kde/konsole/source/src/profile/Profile.h @@ -187,6 +187,9 @@ public: * to text editing applications ) */ BlinkingCursorEnabled, + /** (bool) Specifies whether the cursor animates + */ + AnimatingCursorEnabled, /** (bool) If true, terminal displays use a fixed color to draw the * cursor, specified by the CustomCursorColor property. Otherwise * the cursor changes color to match the character underneath it. @@ -289,6 +292,16 @@ public: * directory as the currently active session. */ StartInCurrentSessionDir, + /** (bool) Whether new sessions should inherit the container context + * (Toolbox, Distrobox, etc.) of the currently active session. + */ + InheritContainerContext, + /** (QString) Name of the container to always start in. + * When non-empty, new sessions using this profile will automatically + * enter the specified container (Toolbox, Distrobox, etc.). + * Format is "type:name" (e.g., "toolbox:fedora-39"). + */ + ContainerName, /** (int) Specifies the threshold of detected silence in seconds. */ SilenceSeconds, /** (BellModeEnum) Specifies the behavior of bell. @@ -339,6 +352,8 @@ public: ReverseUrlHints, /** (QColor) used in tab color */ TabColor, + /** (QColor) used in tab activity color */ + TabActivityColor, /** (int) Value of the Dimm Effect */ DimValue, /** (QColor) Color for focus border */ @@ -389,6 +404,10 @@ public: * as a percentage of scrollbar length */ MarkerSize, + /** (QColor) Color for scrollbar result highlighting lines */ + SearchLineColor, + /** (int) Alpha value - Opacity for the search lines */ + SearchLineOpacity, /** When to show line numbers. * 0 for Never, 1 when showing URL hints, 2 for always */ @@ -423,6 +442,9 @@ public: * soft hyphen (\u00ad) has wcwidth=1, but should not be displayed per Unicode. */ IgnoreWcWidth, + /** (int) Milliseconds interval between autosave activations + */ + AutoSaveInterval, }; Q_ENUM(Property) @@ -506,7 +528,7 @@ public: bool isEmpty() const; /** - * Clears all set properties in this profile. Afte calling this, isEmpty() + * Clears all set properties in this profile. After calling this, isEmpty() * will return true. */ void clear() @@ -606,6 +628,12 @@ public: return property(Profile::TabColor); } + /** Convenience method for property(Profile::TabActivityColor) */ + QColor tabActivityColor() const + { + return property(Profile::TabActivityColor); + } + bool allowEscapedLinks() const { return property(Profile::AllowEscapedLinks); @@ -721,6 +749,11 @@ public: { return property(Profile::BlinkingCursorEnabled); } + /** Convenience method for property(Profile::AnimatingCursorEnabled) */ + bool animatingCursorEnabled() const + { + return property(Profile::AnimatingCursorEnabled); + } /** Convenience method for property(Profile::FlowControlEnabled) */ bool flowControlEnabled() const @@ -819,6 +852,21 @@ public: return property(Profile::StartInCurrentSessionDir); } + /** Convenience method for property(Profile::InheritContainerContext) */ + bool inheritContainerContext() const + { + return property(Profile::InheritContainerContext); + } + + /** Convenience method for property(Profile::ContainerName) + * Returns the "type:name" identifier of the container to always start in, + * or an empty string if none is configured. + */ + QString containerName() const + { + return property(Profile::ContainerName); + } + /** Convenience method for property(Profile::SilenceSeconds) */ int silenceSeconds() const { diff --git a/local/recipes/kde/konsole/source/src/profile/ProfileList.cpp b/local/recipes/kde/konsole/source/src/profile/ProfileList.cpp index c623d39d2c..2618cd9e64 100644 --- a/local/recipes/kde/konsole/source/src/profile/ProfileList.cpp +++ b/local/recipes/kde/konsole/source/src/profile/ProfileList.cpp @@ -38,7 +38,8 @@ ProfileList::ProfileList(bool addShortcuts, QObject *parent) connect(_group, &QActionGroup::triggered, this, &ProfileList::triggered); - for (const auto &profile : ProfileManager::instance()->allProfiles()) { + const auto profiles = ProfileManager::instance()->allProfiles(); + for (const auto &profile : profiles) { addShortcutAction(profile); } diff --git a/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.cpp b/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.cpp index e1394ddf61..c94efe7c79 100644 --- a/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.cpp +++ b/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.cpp @@ -8,8 +8,6 @@ #include #include #include -#include -#include #include #define READ_INTERVAL_MSEC 500 diff --git a/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.h b/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.h index 0d310b192b..1f06808326 100644 --- a/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.h +++ b/local/recipes/kde/konsole/source/src/ptyqt/conptyprocess.h @@ -147,7 +147,7 @@ public: ~ConPtyProcess(); bool - startProcess(const QString &shellPath, const QStringList &arguments, const QString &workingDirectory, QStringList environment, qint16 cols, qint16 rows); + startProcess(const QString &shellPath, const QStringList &arguments, const QString &workingDir, QStringList environment, qint16 cols, qint16 rows); bool resize(qint16 cols, qint16 rows); bool kill(); PtyType type(); diff --git a/local/recipes/kde/konsole/source/src/searchtabs/SearchTabs.cpp b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabs.cpp new file mode 100644 index 0000000000..00f44766f7 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabs.cpp @@ -0,0 +1,315 @@ +/* + SPDX-FileCopyrightText: 2024 Troy Hoover + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +// Own +#include "SearchTabs.h" + +// Qt +#include +#include +#include +#include +#include + +// KDE +#include +#include + +// Konsole +#include "KonsoleSettings.h" + +using namespace Konsole; + +/* ------------------------------------------------------------------------- */ +/* */ +/* Fuzzy Search Model */ +/* */ +/* ------------------------------------------------------------------------- */ + +class SearchTabsFilterProxyModel final : public QSortFilterProxyModel +{ +public: + SearchTabsFilterProxyModel(QObject *parent = nullptr) + : QSortFilterProxyModel(parent) + { + } + +protected: + bool lessThan(const QModelIndex &sourceLeft, const QModelIndex &sourceRight) const override + { + auto sm = sourceModel(); + + const int l = static_cast(sm)->idxScore(sourceLeft); + const int r = static_cast(sm)->idxScore(sourceRight); + return l < r; + } + + bool filterAcceptsRow(int sourceRow, const QModelIndex &parent) const override + { + Q_UNUSED(parent) + + if (pattern.isEmpty()) { + return true; + } + + auto sm = static_cast(sourceModel()); + if (!sm->isValid(sourceRow)) { + return false; + } + + QStringView tabNameMatchPattern = pattern; + + const QString &name = sm->idxToName(sourceRow); + + // dont use the QStringView(QString) ctor + if (tabNameMatchPattern.isEmpty()) { + sm->setScoreForIndex(sourceRow, 1); + return true; + } + + auto result = filterByName(QStringView(name.data(), name.size()), tabNameMatchPattern); + + sm->setScoreForIndex(sourceRow, result.score); + + return result.matched; + } + +public Q_SLOTS: + bool setFilterText(const QString &text) + { + beginResetModel(); + pattern = text; + endResetModel(); + + return true; + } + +private: + static inline KFuzzyMatcher::Result filterByName(QStringView name, QStringView pattern) + { + return KFuzzyMatcher::match(pattern, name); + } + +private: + QString pattern; +}; + +/* ------------------------------------------------------------------------- */ +/* */ +/* Search Tabs */ +/* */ +/* ------------------------------------------------------------------------- */ + +SearchTabs::SearchTabs(ViewManager *viewManager) + : QFrame(viewManager->activeContainer()->window()) + , m_viewManager(viewManager) +{ + setFrameStyle(QFrame::StyledPanel | QFrame::Sunken); + setProperty("_breeze_force_frame", true); + + // handle resizing of MainWindow + window()->installEventFilter(this); + + // ensure the components have some proper frame + QVBoxLayout *layout = new QVBoxLayout(); + layout->setSpacing(0); + layout->setContentsMargins(QMargins()); + setLayout(layout); + + // create input line for search query + m_inputLine = new QLineEdit(this); + m_inputLine->setClearButtonEnabled(true); + m_inputLine->addAction(QIcon::fromTheme(QStringLiteral("search")), QLineEdit::LeadingPosition); + m_inputLine->setTextMargins(QMargins() + style()->pixelMetric(QStyle::PM_ButtonMargin)); + m_inputLine->setPlaceholderText(i18nc("@label:textbox", "Search...")); + m_inputLine->setToolTip(i18nc("@info:tooltip", "Enter a tab name to search for here")); + m_inputLine->setCursor(Qt::IBeamCursor); + m_inputLine->setFont(QApplication::font()); + m_inputLine->setFrame(false); + // When the widget focus is set, focus input box instead + setFocusProxy(m_inputLine); + + layout->addWidget(m_inputLine); + + m_listView = new QTreeView(this); + layout->addWidget(m_listView, 1); + m_listView->setProperty("_breeze_borders_sides", QVariant::fromValue(QFlags(Qt::TopEdge))); + m_listView->setTextElideMode(Qt::ElideLeft); + m_listView->setUniformRowHeights(true); + + // model stores tab information + m_model = new SearchTabsModel(this); + + // switch to selected tab + connect(m_inputLine, &QLineEdit::returnPressed, this, &SearchTabs::slotReturnPressed); + connect(m_listView, &QTreeView::activated, this, &SearchTabs::slotReturnPressed); + connect(m_listView, &QTreeView::clicked, this, &SearchTabs::slotReturnPressed); // for single click + + m_inputLine->installEventFilter(this); + m_listView->installEventFilter(this); + m_listView->setHeaderHidden(true); + m_listView->setRootIsDecorated(false); + m_listView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + m_listView->setModel(m_model); + + // use fuzzy sort to identify tabs with matching titles + connect(m_inputLine, &QLineEdit::textChanged, this, [this](const QString &text) { + // initialize the proxy model when there is something to filter + bool didFilter = false; + if (!m_proxyModel) { + m_proxyModel = new SearchTabsFilterProxyModel(this); + m_proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive); + didFilter = m_proxyModel->setFilterText(text); + m_proxyModel->setSourceModel(m_model); + m_listView->setModel(m_proxyModel); + } else { + didFilter = m_proxyModel->setFilterText(text); + } + if (didFilter) { + m_listView->viewport()->update(); + reselectFirst(); + } + }); + + setHidden(true); + + // fill stuff + updateState(); +} + +bool SearchTabs::eventFilter(QObject *obj, QEvent *event) +{ + // catch key presses + shortcut overrides to allow to have + // ESC as application wide shortcut, too, see bug 409856 + if (event->type() == QEvent::KeyPress || event->type() == QEvent::ShortcutOverride) { + QKeyEvent *keyEvent = static_cast(event); + if (obj == m_inputLine) { + const bool forward2list = (keyEvent->key() == Qt::Key_Up) || (keyEvent->key() == Qt::Key_Down) || (keyEvent->key() == Qt::Key_PageUp) + || (keyEvent->key() == Qt::Key_PageDown); + + if (forward2list) { + QCoreApplication::sendEvent(m_listView, event); + return true; + } + + } else if (obj == m_listView) { + const bool forward2input = (keyEvent->key() != Qt::Key_Up) && (keyEvent->key() != Qt::Key_Down) && (keyEvent->key() != Qt::Key_PageUp) + && (keyEvent->key() != Qt::Key_PageDown) && (keyEvent->key() != Qt::Key_Tab) && (keyEvent->key() != Qt::Key_Backtab); + + if (forward2input) { + QCoreApplication::sendEvent(m_inputLine, event); + return true; + } + } + + if (keyEvent->key() == Qt::Key_Escape) { + hide(); + deleteLater(); + return true; + } + } + + if (event->type() == QEvent::FocusOut && !(m_inputLine->hasFocus() || m_listView->hasFocus())) { + hide(); + deleteLater(); + return true; + } + + // handle resizing + if (window() == obj && event->type() == QEvent::Resize) { + updateViewGeometry(); + } + + return QWidget::eventFilter(obj, event); +} + +void SearchTabs::reselectFirst() +{ + int first = 0; + const auto *model = m_listView->model(); + + if (m_viewManager->viewProperties().size() > 1 && model->rowCount() > 1 && m_inputLine->text().isEmpty()) { + first = 1; + } + + QModelIndex index = model->index(first, 0); + m_listView->setCurrentIndex(index); +} + +void SearchTabs::updateState() +{ + m_model->refresh(m_viewManager); + reselectFirst(); + + updateViewGeometry(); + show(); + raise(); + setFocus(); +} + +void SearchTabs::slotReturnPressed() +{ + // switch to tab using the unique ViewProperties identifier + // (the view identifier is off by 1) + const QModelIndex index = m_listView->currentIndex(); + m_viewManager->setCurrentView(index.data(SearchTabsModel::View).toInt() - 1); + + hide(); + deleteLater(); + + window()->setFocus(); +} + +void SearchTabs::updateViewGeometry() +{ + // find MainWindow rectangle + QRect boundingRect = window()->contentsRect(); + + // set search tabs window size + static constexpr int minWidth = 125; + const int maxWidth = boundingRect.width(); + const int preferredWidth = maxWidth / 4.8; + + static constexpr int minHeight = 250; + const int maxHeight = boundingRect.height(); + const int preferredHeight = maxHeight / 4; + + const QSize size{qMin(maxWidth, qMax(preferredWidth, minWidth)), qMin(maxHeight, qMax(preferredHeight, minHeight))}; + + // resize() doesn't work here, so use setFixedSize() instead + setFixedSize(size); + + // set the position just below/above the tab bar + int y; + int mainWindowHeight = window()->geometry().height(); + int containerHeight = m_viewManager->activeContainer()->geometry().height(); + + // only calculate the tab bar height if it's visible + int tabBarHeight = 0; + auto isTabBarVisible = m_viewManager->activeContainer()->tabBar()->isVisible(); + if (isTabBarVisible) { + tabBarHeight = m_viewManager->activeContainer()->tabBar()->geometry().height(); + } + + // set the position above the south tab bar + auto tabBarPos = (QTabWidget::TabPosition)KonsoleSettings::tabBarPosition(); + if (tabBarPos == QTabWidget::South && isTabBarVisible) { + y = mainWindowHeight - tabBarHeight - size.height() - 6; + } + // set the position below the north tab bar + // set the position to the top right corner if the tab bar is hidden + else { + y = mainWindowHeight - containerHeight + tabBarHeight + 6; + } + boundingRect.setTop(y); + + // set the position to the right of the window + int scrollBarWidth = qApp->style()->pixelMetric(QStyle::PM_ScrollBarExtent); + int mainWindowWidth = window()->geometry().width(); + int x = mainWindowWidth - size.width() - scrollBarWidth - 6; + const QPoint position{x, y}; + move(position); +} diff --git a/local/recipes/kde/konsole/source/src/searchtabs/SearchTabs.h b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabs.h new file mode 100644 index 0000000000..c1b96c3a31 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabs.h @@ -0,0 +1,68 @@ +/* + SPDX-FileCopyrightText: 2024 Troy Hoover + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#pragma once + +// Own +#include "SearchTabsModel.h" + +// Qt +#include +#include +#include +#include + +// Konsole +#include "ViewManager.h" +#include "widgets/ViewContainer.h" + +class SearchTabsFilterProxyModel; + +namespace Konsole +{ + +class KONSOLEPRIVATE_EXPORT SearchTabs : public QFrame +{ +public: + SearchTabs(ViewManager *viewManager); + + /** + * update state + * will fill model with current open tabs + */ + void updateState(); + void updateViewGeometry(); + +protected: + bool eventFilter(QObject *obj, QEvent *event) override; + +private: + void reselectFirst(); + + /** + * Return pressed, activate the selected tab + * and go back to background + */ + void slotReturnPressed(); + +private: + ViewManager *m_viewManager; + + QLineEdit *m_inputLine; + QTreeView *m_listView; + + /** + * tab model + */ + SearchTabsModel *m_model = nullptr; + + /** + * fuzzy filter model + */ + SearchTabsFilterProxyModel *m_proxyModel = nullptr; +}; + +} diff --git a/local/recipes/kde/konsole/source/src/searchtabs/SearchTabsModel.cpp b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabsModel.cpp new file mode 100644 index 0000000000..e9f91c9122 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabsModel.cpp @@ -0,0 +1,69 @@ +/* + SPDX-FileCopyrightText: 2024 Troy Hoover + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +// Own +#include "SearchTabsModel.h" + +// Konsole +#include "ViewProperties.h" + +using namespace Konsole; + +SearchTabsModel::SearchTabsModel(QObject *parent) + : QAbstractTableModel(parent) +{ +} + +int SearchTabsModel::rowCount(const QModelIndex &parent) const +{ + if (parent.isValid()) { + return 0; + } + return (int)m_tabEntries.size(); +} + +int SearchTabsModel::columnCount(const QModelIndex &parent) const +{ + Q_UNUSED(parent); + return 1; +} + +QVariant SearchTabsModel::data(const QModelIndex &idx, int role) const +{ + if (!idx.isValid()) { + return {}; + } + + const TabEntry &tab = m_tabEntries.at(idx.row()); + switch (role) { + case Qt::DisplayRole: + case Role::Name: + return tab.name; + case Role::Score: + return tab.score; + case Role::View: + return tab.view; + default: + return {}; + } + + return {}; +} + +void SearchTabsModel::refresh(ViewManager *viewManager) +{ + QList viewProperties = viewManager->viewProperties(); + + QVector tabs; + tabs.reserve(viewProperties.size()); + for (const auto view : std::as_const(viewProperties)) { + tabs.push_back(TabEntry{view->title(), view->identifier(), -1}); + } + + beginResetModel(); + m_tabEntries = std::move(tabs); + endResetModel(); +} diff --git a/local/recipes/kde/konsole/source/src/searchtabs/SearchTabsModel.h b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabsModel.h new file mode 100644 index 0000000000..c55dd82fac --- /dev/null +++ b/local/recipes/kde/konsole/source/src/searchtabs/SearchTabsModel.h @@ -0,0 +1,68 @@ +/* + SPDX-FileCopyrightText: 2024 Troy Hoover + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#pragma once + +// Qt +#include +#include +#include + +// Konsole +#include "ViewManager.h" + +namespace Konsole +{ + +struct TabEntry { + QString name; + int view; + int score = -1; +}; + +class SearchTabsModel : public QAbstractTableModel +{ +public: + enum Role { + Name = Qt::UserRole + 1, + View, + Score, + }; + explicit SearchTabsModel(QObject *parent = nullptr); + + int rowCount(const QModelIndex &parent = QModelIndex()) const override; + int columnCount(const QModelIndex &parent) const override; + QVariant data(const QModelIndex &idx, int role) const override; + void refresh(ViewManager *viewManager); + + bool isValid(int row) const + { + return row >= 0 && row < m_tabEntries.size(); + } + + void setScoreForIndex(int row, int score) + { + m_tabEntries[row].score = score; + } + + const QString &idxToName(int row) const + { + return m_tabEntries.at(row).name; + } + + int idxScore(const QModelIndex &idx) const + { + if (!idx.isValid()) { + return {}; + } + return m_tabEntries.at(idx.row()).score; + } + +private: + QVector m_tabEntries; +}; + +} diff --git a/local/recipes/kde/konsole/source/src/session/Session.cpp b/local/recipes/kde/konsole/source/src/session/Session.cpp index 757679ae43..c67c5ef34d 100644 --- a/local/recipes/kde/konsole/source/src/session/Session.cpp +++ b/local/recipes/kde/konsole/source/src/session/Session.cpp @@ -20,10 +20,12 @@ // Qt #include +#include #include #include #include #include +#include #include // KDE @@ -34,17 +36,25 @@ #include #include #include +#include #ifndef Q_OS_WIN #include #endif #include +// wayland window activation +#define HAVE_WAYLAND __has_include() +#if HAVE_WAYLAND +#include +#endif + // Konsole #if HAVE_DBUS #include #endif +#include "KonsoleSettings.h" #include "Pty.h" #include "SSHProcessInfo.h" #include "SessionController.h" @@ -53,6 +63,7 @@ #include "ShellCommand.h" #include "Vt102Emulation.h" #include "ZModemDialog.h" +#include "containers/ContainerRegistry.h" #include "decoders/PlainTextDecoder.h" #include "history/HistoryTypeFile.h" #include "history/HistoryTypeNone.h" @@ -76,12 +87,22 @@ using namespace Konsole; -static bool show_disallow_certain_dbus_methods_message = true; - static const int ZMODEM_BUFFER_SIZE = 1048576; // 1 Mb +// compute a securely random cookie used for activationToken +static QString computeRandomCookie() +{ + // get good random data + quint32 array[8]; + QRandomGenerator::global()->fillRange(array); + + // convert to string usable for env var KONSOLE_DBUS_ACTIVATION_COOKIE + return QString::fromUtf8(QByteArray(reinterpret_cast(array), sizeof(array)).toBase64()); +} + Session::Session(QObject *parent) : QObject(parent) + , m_activationCookie(computeRandomCookie()) { _uniqueIdentifier = QUuid::createUuid(); @@ -105,6 +126,7 @@ Session::Session(QObject *parent) _emulation->reset(); connect(_emulation, &Konsole::Emulation::sessionAttributeChanged, this, &Konsole::Session::setSessionAttribute); + connect(_emulation, &Konsole::Emulation::osc777Received, this, &Konsole::Session::handleOsc777); connect(_emulation, &Konsole::Emulation::bell, this, [this]() { Q_EMIT bellRequest(i18n("Bell in '%1' (Session '%2')", _displayTitle, _nameTitle)); this->setPendingNotification(Notification::Bell); @@ -236,32 +258,19 @@ bool Session::hasFocus() const }); } -void Session::setCodec(QTextCodec *codec) -{ - if (isReadOnly()) { - return; - } - - emulation()->setCodec(codec); - - Q_EMIT sessionCodecChanged(codec); -} - bool Session::setCodec(const QByteArray &name) { - QTextCodec *codec = QTextCodec::codecForName(name); - - if (codec != nullptr) { - setCodec(codec); - return true; - } else { + if (isReadOnly() || !emulation()->setCodec(name)) { return false; } + + Q_EMIT sessionCodecChanged(codec()); + return true; } QByteArray Session::codec() { - return _emulation->codec()->name(); + return _emulation->encoder().name(); } void Session::setProgram(const QString &program) @@ -279,9 +288,16 @@ void Session::setInitialWorkingDirectory(const QString &dir) _initialWorkingDir = validDirectory(KShell::tildeExpand(ShellCommand::expand(dir))); } +bool Session::reportedWorkingUrlIsLocalFile() +{ + return _reportedWorkingUrl.isLocalFile() // has "file://" prefix + && (_reportedWorkingUrl.host().isEmpty() || _reportedWorkingUrl.host().compare(QSysInfo::machineHostName(), Qt::CaseInsensitive) == 0) + && QDir{_reportedWorkingUrl.path()}.exists(); +} + QString Session::currentWorkingDirectory() { - if (_reportedWorkingUrl.isValid() && _reportedWorkingUrl.isLocalFile()) { + if (_reportedWorkingUrl.isValid() && reportedWorkingUrlIsLocalFile()) { return _reportedWorkingUrl.path(); } @@ -317,6 +333,7 @@ void Session::addView(TerminalDisplay *widget) // connect emulation - view signals and slots connect(widget, &Konsole::TerminalDisplay::keyPressedSignal, _emulation, &Konsole::Emulation::sendKeyEvent); connect(widget, &Konsole::TerminalDisplay::mouseSignal, _emulation, &Konsole::Emulation::sendMouseEvent); + connect(widget, &Konsole::TerminalDisplay::exactMouseSignal, _emulation, &Konsole::Emulation::sendExactMouseEvent); connect(widget, &Konsole::TerminalDisplay::sendStringToEmu, _emulation, &Konsole::Emulation::sendString); connect(widget, &Konsole::TerminalDisplay::peekPrimaryRequested, _emulation, &Konsole::Emulation::setPeekPrimary); @@ -445,15 +462,15 @@ QString Session::shellSessionId() const return friendlyUuid; } -static QStringList postProcessArgs(const QStringList &args) +static QStringList postProcessArgs(const QStringList &contextArgs, const QStringList &args) { #ifndef Q_OS_WIN if (!KSandbox::isFlatpak()) { - return args; + return contextArgs + args; } QStringList arguments; // last arg is the program - arguments = args; + arguments = contextArgs; QString program = arguments.back(); arguments.pop_back(); // Needs to be explicitly specified, KSandbox::makeHostContext @@ -461,6 +478,7 @@ static QStringList postProcessArgs(const QStringList &args) // never gets set. arguments.push_back(QStringLiteral("--env=TERM=xterm-256color")); arguments.push_back(program); + arguments << args; return arguments; #else qCritical() << "Should never get called on windows"; @@ -524,8 +542,10 @@ void Session::run() // if a program was specified via setProgram(), but it couldn't be found (but a fallback was), print a warning if (exec != checkProgram(_program)) { terminalWarning(i18n("Could not find '%1', starting '%2' instead. Please check your profile settings.", _program, exec)); + _arguments.clear(); // ignore args if program is invalid } else if (exec != checkProgram(exec)) { terminalWarning(i18n("Could not find '%1', starting '%2' instead. Please check your profile settings.", exec, checkProgram(exec))); + _arguments.clear(); // ignore args if program is invalid } // if no arguments are specified, fall back to program name @@ -536,6 +556,23 @@ void Session::run() Q_ASSERT(arguments.count() >= 1); arguments = arguments.mid(1); + // If we have a container context to enter, wrap the command + if (_containerContext.isValid() && ContainerRegistry::instance()->isEnabled()) { + qDebug(KonsoleDebug) << "Entering container context:" << _containerContext.name; + QStringList entryCmd = ContainerRegistry::instance()->entryCommand(_containerContext); + qDebug(KonsoleDebug) << "Container entry command:" << entryCmd; + if (!entryCmd.isEmpty()) { + // Replace exec and arguments with container entry command + // The container entry command will spawn the shell inside the container + exec = entryCmd.takeFirst(); + arguments = entryCmd; + _enteredViaContainerCommand = true; + } + } else { + qDebug(KonsoleDebug) << "Container context is " << (_containerContext.isValid() ? "valid" : "invalid") << "but container support is" + << (ContainerRegistry::instance()->isEnabled() ? "enabled" : "disabled"); + } + if (!_initialWorkingDir.isEmpty()) { _shellProcess->setInitialWorkingDirectory(_initialWorkingDir); } else { @@ -565,28 +602,38 @@ void Session::run() addEnvironmentEntry(QStringLiteral("WINDOWID=%1").arg(QString::number(windowId()))); + // env vars we shall not expose e.g. over dbus + QStringList secretEnv; + #if HAVE_DBUS const QString dbusService = QDBusConnection::sessionBus().baseService(); addEnvironmentEntry(QStringLiteral("KONSOLE_DBUS_SERVICE=%1").arg(dbusService)); const QString dbusObject = QStringLiteral("/Sessions/%1").arg(QString::number(_sessionId)); addEnvironmentEntry(QStringLiteral("KONSOLE_DBUS_SESSION=%1").arg(dbusObject)); + + // secret cookie to trigger activationToken via dbus + secretEnv << QStringLiteral("KONSOLE_DBUS_ACTIVATION_COOKIE=%1").arg(m_activationCookie); #endif + addEnvironmentEntry(QStringLiteral("FLATPAK_TTY_PROGRESS=1")); + + // stuff set via addEnvironmentEntry and the secret parts + const QStringList fullEnv = _environment + secretEnv; + #ifndef Q_OS_WIN const auto originalEnvironment = _shellProcess->environment(); _shellProcess->setProgram(exec); - _shellProcess->setArguments(arguments); - _shellProcess->setEnvironment(originalEnvironment + _environment); + _shellProcess->setEnvironment(originalEnvironment + fullEnv); const auto context = KSandbox::makeHostContext(*_shellProcess); - arguments = postProcessArgs(context.arguments); + arguments = postProcessArgs(context.arguments, arguments); _shellProcess->setEnvironment(originalEnvironment); - const auto result = _shellProcess->start(context.program, arguments, _environment); + const auto result = _shellProcess->start(context.program, arguments, fullEnv); #else // Q_OS_WIN const auto size = _emulation->imageSize(); const int lines = size.height(); const int cols = size.width(); - int result = _shellProcess->start(exec, arguments, _initialWorkingDir.isEmpty() ? QDir::currentPath() : _initialWorkingDir, _environment, cols, lines); + int result = _shellProcess->start(exec, arguments, _initialWorkingDir.isEmpty() ? QDir::currentPath() : _initialWorkingDir, fullEnv, cols, lines); #endif if (result < 0) { @@ -652,6 +699,15 @@ void Session::setSessionAttribute(int what, const QString &caption) } } + if (what == SessionColor) { + QString colorString = caption.section(QLatin1Char(';'), 0, 0); + QColor color = QColor(colorString); + if (color.isValid()) { + setColor(color); + tabColorSetByUser(true); + } + } + if (what == CurrentDirectory) { _reportedWorkingUrl = QUrl::fromUserInput(caption); Q_EMIT currentDirectoryChanged(currentWorkingDirectory()); @@ -663,6 +719,15 @@ void Session::setSessionAttribute(int what, const QString &caption) return; } + if (what == ResetTextColor || what == ResetBackgroundColor) { + QColor color; + if (what == ResetTextColor) { + Q_EMIT changeForegroundColorRequest(color); + } else { + Q_EMIT changeBackgroundColorRequest(color); + } + } + if (modified) { Q_EMIT sessionAttributeChanged(); } @@ -715,6 +780,16 @@ bool Session::isTabColorSetByUser() const return _tabColorSetByUser; } +void Session::tabActivityColorSetByUser(bool set) +{ + _tabActivityColorSetByUser = set; +} + +bool Session::isTabActivityColorSetByUser() const +{ + return _tabActivityColorSetByUser; +} + void Session::silenceTimerDone() { // FIXME: The idea here is that the notification popup will appear to tell the user than output from @@ -893,7 +968,7 @@ void Session::sendSignal(int signal) void Session::reportColor(SessionAttributes r, const QColor &c, uint terminator) { -#define to65k(a) (QStringLiteral("%1").arg(int(((a)*0xFFFF)), 4, 16, QLatin1Char('0'))) +#define to65k(a) (QStringLiteral("%1").arg(int(((a) * 0xFFFF)), 4, 16, QLatin1Char('0'))) QString msg = QStringLiteral("\033]%1;rgb:").arg(r) + to65k(c.redF()) + QLatin1Char('/') + to65k(c.greenF()) + QLatin1Char('/') + to65k(c.blueF()); // Match termination of OSC reply to termination of OSC request. @@ -919,11 +994,12 @@ void Session::reportBackgroundColor(const QColor &c, uint terminator) bool Session::kill(int signal) { #ifndef Q_OS_WIN - if (processId() <= 0) { + const int pid = KSandbox::isFlatpak() ? _shellProcess->flatpakSpawnProcessId() : processId(); + if (pid <= 0) { return false; } - int result = ::kill(processId(), signal); + int result = ::kill(pid, signal); if (result == 0) { return _shellProcess->waitForFinished(1000); @@ -1015,29 +1091,19 @@ void Session::sendTextToTerminal(const QString &text, const QChar &eol) const // Only D-Bus calls this function (via SendText or runCommand) void Session::sendText(const QString &text) const { - if (isReadOnly()) { + // avoid that we expose this if not wanted by the user + if (isCalledViaDbusAndForbidden() || isReadOnly()) { return; } -#if !REMOVE_SENDTEXT_RUNCOMMAND_DBUS_METHODS - if (show_disallow_certain_dbus_methods_message) { - KNotification::event(KNotification::Warning, - QStringLiteral("Konsole D-Bus Warning"), - i18n("The D-Bus methods sendText/runCommand were just used. There are security concerns about allowing these methods to be " - "public. If desired, these methods can be changed to internal use only by re-compiling Konsole.

              This warning will only " - "show once for this Konsole instance.

              ")); - - show_disallow_certain_dbus_methods_message = false; - } -#endif - _emulation->sendText(text); } // Only D-Bus calls this function void Session::runCommand(const QString &command) const { - if (isReadOnly()) { + // avoid that we expose this if not wanted by the user + if (isCalledViaDbusAndForbidden() || isReadOnly()) { return; } @@ -1046,7 +1112,8 @@ void Session::runCommand(const QString &command) const void Session::sendMouseEvent(int buttons, int column, int line, int eventType) { - if (isReadOnly()) { + // avoid that we expose this if not wanted by the user + if (isCalledViaDbusAndForbidden() || isReadOnly()) { return; } @@ -1117,7 +1184,8 @@ QStringList Session::environment() const void Session::setEnvironment(const QStringList &environment) { - if (isReadOnly()) { + // avoid that we expose this if not wanted by the user + if (isCalledViaDbusAndForbidden() || isReadOnly()) { return; } @@ -1172,6 +1240,15 @@ ProcessInfo *Session::getProcessInfo() } else { updateSessionProcessInfo(); process = _sessionProcessInfo; + + // Update _foregroundPid to reflect the current state (shell process) + // This is needed for container context detection to work correctly + // when user exits a container and returns to the host shell + _foregroundPid = _shellProcess->foregroundProcessGroup(); + + // Update container context even when foreground process is the shell + // This handles the case when user exits a container + updateContainerContext(); } return process; @@ -1187,7 +1264,14 @@ void Session::updateSessionProcessInfo() // return 0 if ((_sessionProcessInfo == nullptr) || (processId() != 0 && processId() != _sessionProcessInfo->pid(&ok))) { delete _sessionProcessInfo; - _sessionProcessInfo = ProcessInfo::newInstance(processId()); + + int sessionPid = processId(); +#ifndef Q_OS_WIN + _sessionProcessInfo = ProcessInfo::newInstance(sessionPid, -1, _shellProcess->pty()->ttyName()); +#else + _sessionProcessInfo = ProcessInfo::newInstance(sessionPid, -1); +#endif + _sessionProcessInfo->setUserHomeDir(); } _sessionProcessInfo->update(); @@ -1200,12 +1284,20 @@ bool Session::updateForegroundProcessInfo() const int foregroundPid = _shellProcess->foregroundProcessGroup(); if (foregroundPid != _foregroundPid) { delete _foregroundProcessInfo; +#ifndef Q_OS_WIN + _foregroundProcessInfo = ProcessInfo::newInstance(foregroundPid, processId(), _shellProcess->pty()->ttyName()); +#else _foregroundProcessInfo = ProcessInfo::newInstance(foregroundPid, processId()); +#endif _foregroundPid = foregroundPid; } if (_foregroundProcessInfo != nullptr) { _foregroundProcessInfo->update(); + + // Update container context detection when foreground process changes + updateContainerContext(); + return _foregroundProcessInfo->isValid(); } else { return false; @@ -1337,7 +1429,7 @@ QString Session::getDynamicTitle() // allow for shortname to have the ~ as homeDir const QString homeDir = process->userHomeDir(); if (!homeDir.isEmpty()) { - if (dir.startsWith(homeDir)) { + if (dir.startsWith(homeDir) && (dir.size() == homeDir.size() || dir.at(homeDir.size()) == QLatin1Char('/'))) { dir.remove(0, homeDir.length()); dir.prepend(QLatin1Char('~')); } @@ -1374,7 +1466,7 @@ QString Session::getDynamicTitle() QUrl Session::getUrl() { - if (_reportedWorkingUrl.isValid()) { + if (_reportedWorkingUrl.isValid() && reportedWorkingUrlIsLocalFile()) { return _reportedWorkingUrl; } @@ -1714,7 +1806,78 @@ void Session::setPreferredSize(const QSize &size) int Session::processId() const { - return _shellProcess->processId(); + return _shellProcess->shellProcessId(); +} + +ContainerInfo Session::containerContext() const +{ + return _containerContext; +} + +void Session::setContainerContext(const ContainerInfo &newContext) +{ + if (newContext != _containerContext) { + qDebug(KonsoleDebug) << "Container context changed to:" << newContext.name << "(" + << (newContext.detector ? newContext.detector->typeId() : QStringLiteral("none")) << ")"; + ContainerInfo oldContext = _containerContext; + _containerContext = newContext; + + // Detect container-to-host transition + if (oldContext.isValid() && !newContext.isValid()) { + // User exited the container + _enteredViaContainerCommand = false; + } + + Q_EMIT containerContextChanged(_containerContext); + } +} + +bool Session::isInContainer() const +{ + return _containerContext.isValid(); +} + +void Session::handleOsc777(const QStringList ¶ms) +{ + // Delegate OSC 777 container parsing to ContainerRegistry + auto info = ContainerRegistry::instance()->containerInfoFromOsc777(params); + if (info.has_value()) { + // Capture current foreground PID as the host PID for OSC 777-detected containers + // This allows us to detect when the user exits (foreground returns to host shell) + if (info->isValid()) { + info->hostPid = _foregroundPid; + } + setContainerContext(info.value()); + } +} + +void Session::updateContainerContext() +{ + // Skip if container support is disabled or we haven't started yet + if (!ContainerRegistry::instance()->isEnabled() || _foregroundPid <= 0) { + return; + } + + // If current context was set via OSC 777 (has hostPid), check if we've returned to the host + if (_containerContext.hostPid.has_value()) { + if (_foregroundPid == _containerContext.hostPid.value()) { + // Foreground PID returned to host shell - container exited (pop or crash) + qCDebug(KonsoleDebug) << "Foreground returned to host PID" << _foregroundPid << "- clearing OSC 777 container context"; + setContainerContext(ContainerInfo{}); + } + // Don't do polling-based detection while in an OSC 777-detected container + return; + } + + // Skip if PID hasn't changed since last check + if (_foregroundPid == _lastContainerCheckPid) { + return; + } + _lastContainerCheckPid = _foregroundPid; + + // Detect container for current foreground process (polling-based, e.g., distrobox) + auto newContext = ContainerRegistry::instance()->detectContainer(_foregroundPid); + setContainerContext(newContext); } void Session::setTitle(int role, const QString &title) @@ -1830,17 +1993,17 @@ bool Session::copyInputToAllSessions() bool Session::copyInputToSessions(QList sessionIds) { if (auto c = controller()) { - auto sessions = new QList(); + QList sessions; c->copyInputActions()->setCurrentItem(SessionController::CopyInputToSelectedTabsMode); for (auto sessionId : sessionIds) { if (auto session = SessionManager::instance()->idToSession(sessionId)) - sessions->append(session); + sessions.append(session); else return false; } - c->copyInputToSelectedTabs(sessions); + c->copyInputToSelectedTabs(&sessions); return true; } @@ -1863,7 +2026,8 @@ QList Session::copyingSessions() if (auto copyToGroup = c->copyToGroup()) { QList sessionIds; - for (auto session : copyToGroup->sessions()) { + const auto sessions = copyToGroup->sessions(); + for (auto session : sessions) { sessionIds.append(session->sessionId()); } @@ -2003,6 +2167,7 @@ void Session::saveSession(KConfigGroup &group) group.writeEntry("LocalTab", tabTitleFormat(LocalTabTitle)); group.writeEntry("RemoteTab", tabTitleFormat(RemoteTabTitle)); group.writeEntry("TabColor", color().isValid() ? color().name(QColor::HexArgb) : QString()); + group.writeEntry("TabActivityColor", activityColor().isValid() ? activityColor().name(QColor::HexArgb) : QString()); group.writeEntry("SessionGuid", _uniqueIdentifier.toString()); group.writeEntry("Encoding", QString::fromUtf8(codec())); } @@ -2027,6 +2192,10 @@ void Session::restoreSession(KConfigGroup &group) if (!value.isEmpty()) { setColor(QColor(value)); } + value = group.readEntry("TabActivityColor"); + if (!value.isEmpty()) { + setActivityColor(QColor(value)); + } value = group.readEntry("SessionGuid"); if (!value.isEmpty()) { _uniqueIdentifier = QUuid(value); @@ -2131,6 +2300,10 @@ void Session::setSelectMode(bool mode) void Session::setColor(const QColor &color) { + if (_tabColor == color) { + return; + } + _tabColor = color; Q_EMIT sessionAttributeChanged(); } @@ -2140,6 +2313,31 @@ QColor Session::color() const return _tabColor; } +void Session::setTabColor(const QString &colorName) +{ + setColor(QColor::fromString(colorName)); +} + +QString Session::tabColor() const +{ + return _tabColor.name(); +} + +void Session::setActivityColor(const QColor &color) +{ + if (_tabActivityColor == color) { + return; + } + + _tabActivityColor = color; + Q_EMIT sessionAttributeChanged(); +} + +QColor Session::activityColor() const +{ + return _tabActivityColor; +} + SessionController *Session::controller() { if (!_views.isEmpty()) @@ -2148,4 +2346,79 @@ SessionController *Session::controller() return nullptr; } +// Only called during LoadLayout +void Session::runCommandFromLayout(const QString &command) const +{ + if (isReadOnly()) { + return; + } + + _emulation->sendText(command + QLatin1Char('\n')); +} + +QString Session::activationToken(const QString &cookieForRequest) const +{ + // safety check, only work if the caller knows our id + // they will read it from the SHELL_SESSION_ID env var inside this session + if (cookieForRequest != m_activationCookie) { + return {}; + } + +#if HAVE_DBUS && HAVE_WAYLAND + // no window active, no token + // same if we don't run wayland + const auto window = qApp->activeWindow(); + if (!window || !window->window() || !KWindowSystem::isPlatformWayland()) { + return {}; + } + + // we will respond delayed, as the token needs to arrive + Q_ASSERT(calledFromDBus()); + const auto msg = message(); + setDelayedReply(true); + + // we need to filter the response with the request serial + const int launchedSerial = KWaylandExtras::self()->lastInputSerial(window->window()->windowHandle()); + connect( + KWaylandExtras::self(), + &KWaylandExtras::xdgActivationTokenArrived, + this, + [msg, launchedSerial](int tokenSerial, QString token) { + // if wrong token, ignore it, but we must always reply to not stall the caller + // we use here a SingleShotConnection, we will just be called once! + if (tokenSerial != launchedSerial) { + token.clear(); + } + auto reply = msg.createReply(token); + QDBusConnection::sessionBus().send(reply); + }, + Qt::SingleShotConnection); + + KWaylandExtras::requestXdgActivationToken(window->window()->windowHandle(), launchedSerial, {}); + +#endif + + return {}; +} + +bool Session::isCalledViaDbusAndForbidden() const +{ +#if HAVE_DBUS + // we can check if this is called via dbus and then consult the config + if (calledFromDBus() && !Konsole::KonsoleSettings::enableSecuritySensitiveDBusAPI()) { + // trigger error reply + setDelayedReply(true); + auto reply = message().createErrorReply(QDBusError::AccessDenied, i18n("Security sensitive DBus API is disabled in the settings.")); + QDBusConnection::sessionBus().send(reply); + + // forbid call + return true; + } + return false; +#else + // no dbus, just allow it + return false; +#endif +} + #include "moc_Session.cpp" diff --git a/local/recipes/kde/konsole/source/src/session/Session.h b/local/recipes/kde/konsole/source/src/session/Session.h index b938514ea0..1cd33c680b 100644 --- a/local/recipes/kde/konsole/source/src/session/Session.h +++ b/local/recipes/kde/konsole/source/src/session/Session.h @@ -9,6 +9,8 @@ #ifndef SESSION_H #define SESSION_H +#include "config-konsole.h" + // Qt #include #include @@ -19,9 +21,14 @@ #include #include +#if HAVE_DBUS +#include +#endif + // Konsole #include "Shortcut_p.h" #include "config-konsole.h" +#include "containers/ContainerInfo.h" #include "konsoleprivate_export.h" class QColor; @@ -51,7 +58,11 @@ class SessionController; * or send input to the program in the terminal in the form of keypresses and mouse * activity. */ +#if HAVE_DBUS +class KONSOLEPRIVATE_EXPORT Session : public QObject, protected QDBusContext +#else class KONSOLEPRIVATE_EXPORT Session : public QObject +#endif { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.kde.konsole.Session") @@ -183,6 +194,15 @@ public: /** Returns the color used by this session for tab. */ QColor color() const; + /** + * Sets the activity color user by this session for tab. + * + * @param color The foreground text color for the tab in which activity was detected. + */ + void setActivityColor(const QColor &color); + /** Returns the activity color used by this session for tab. */ + QColor activityColor() const; + /** * Returns true if the tab title has been changed by the user via the * rename-tab dialog. @@ -195,6 +215,12 @@ public: */ bool isTabColorSetByUser() const; + /** + * Returns true if the tab activity color has been changed by the user via the + * rename-tab dialog. + */ + bool isTabActivityColorSetByUser() const; + /** Returns the arguments passed to the shell process when run() is called. */ QStringList arguments() const; /** Returns the program name of the shell process started when run() is called. */ @@ -220,6 +246,8 @@ public: */ void setInitialWorkingDirectory(const QString &dir); + bool reportedWorkingUrlIsLocalFile(); + /** * Returns the current directory of the foreground process in the session */ @@ -389,12 +417,12 @@ public: BackgroundColor = 11, SessionName = 30, // Non-standard SessionIcon = 32, // Non-standard + SessionColor = 34, // Non-standard ProfileChange = 50, // this clashes with Xterm's font change command + ResetTextColor = 110, + ResetBackgroundColor = 111, }; - // Sets the text codec used by this sessions terminal emulation. - void setCodec(QTextCodec *codec); - // session management void saveSession(KConfigGroup &group); void restoreSession(KConfigGroup &group); @@ -416,6 +444,7 @@ public: bool isPrimaryScreen(); void tabTitleSetByUser(bool set); void tabColorSetByUser(bool set); + void tabActivityColorSetByUser(bool set); enum Notification { NoNotification = 0, @@ -435,6 +464,11 @@ public: // returns the binary name if available or an empty string otherwise static QString checkProgram(const QString &program); + /* + * Same as runCommand but only used when layout is loaded in ViewManager. + */ + void runCommandFromLayout(const QString &command) const; + public Q_SLOTS: /** @@ -554,20 +588,15 @@ public Q_SLOTS: */ void sendTextToTerminal(const QString &text, const QChar &eol = QChar()) const; -#if REMOVE_SENDTEXT_RUNCOMMAND_DBUS_METHODS - void sendText(const QString &text) const; -#else + /** + * Sends @p text to the current foreground terminal program. + */ Q_SCRIPTABLE void sendText(const QString &text) const; -#endif /** * Sends @p command to the current foreground terminal program. */ -#if REMOVE_SENDTEXT_RUNCOMMAND_DBUS_METHODS - void runCommand(const QString &command) const; -#else Q_SCRIPTABLE void runCommand(const QString &command) const; -#endif /** * Sends a mouse event of type @p eventType emitted by button @@ -589,6 +618,25 @@ public Q_SLOTS: */ Q_SCRIPTABLE int foregroundProcessId(); + /** + * Returns information about the container environment the foreground + * process is running in, if any. Check isValid() on the result. + */ + ContainerInfo containerContext() const; + + /** + * Sets the container context for this session. This is used when + * creating a new session that should inherit the container context + * from another session. + */ + void setContainerContext(const ContainerInfo &container); + + /** + * Returns true if the session's foreground process is running inside + * a container (Toolbox, Distrobox, etc.) + */ + bool isInContainer() const; + /** Sets the text codec used by this sessions terminal emulation. * Overloaded to accept a QByteArray for convenience since DBus * does not accept QTextCodec directly. @@ -725,6 +773,20 @@ public Q_SLOTS: */ Q_SCRIPTABLE QStringList getDisplayedTextList(int startLineOffset, int endLineOffset); + /** + * DBus slot to get an XDG activation token. + * Will check if the passed cookieForRequest is the m_activationCookie one for safety. + * Will try to generate a token and pass it back. + * Can only be called from DBus, will answer delayed. + */ + Q_SCRIPTABLE QString activationToken(const QString &cookieForRequest) const; + + /** + * Sets/gets the session's tab color + */ + Q_SCRIPTABLE QString tabColor() const; + Q_SCRIPTABLE void setTabColor(const QString &colorName); + Q_SIGNALS: /** Emitted when the terminal process starts. */ @@ -751,10 +813,18 @@ Q_SIGNALS: */ void currentDirectoryChanged(const QString &dir); + /** + * Emitted when the container context of this session changes. + * This occurs when the foreground process enters or exits a container. + * + * @param container The new container context (may be invalid if exited container) + */ + void containerContextChanged(const ContainerInfo &container); + /** * Emitted when the session text encoding changes. */ - void sessionCodecChanged(QTextCodec *codec); + void sessionCodecChanged(const QByteArray &codec); /** Emitted when a bell event occurs in the session. */ void bellRequest(const QString &message); @@ -870,7 +940,15 @@ private Q_SLOTS: void sessionAttributeRequest(int id, uint terminator); + /** + * Handles OSC 777 escape sequences from the emulation. + * Parses container;push/pop commands to update container context. + */ + void handleOsc777(const QStringList ¶ms); + private: + bool isCalledViaDbusAndForbidden() const; + Q_DISABLE_COPY(Session) void updateTerminalSize(); @@ -883,6 +961,7 @@ private: void updateSessionProcessInfo(); bool updateForegroundProcessInfo(); void updateWorkingDirectory(); + void updateContainerContext(); SessionController *controller(); QString validDirectory(const QString &dir) const; @@ -911,23 +990,25 @@ private: bool _autoClose = true; bool _closePerUserRequest = false; - QString _nameTitle; - QString _displayTitle; - QString _userTitle; + QString _nameTitle = QString(); + QString _displayTitle = QString(); + QString _userTitle = QString(); - QString _localTabTitleFormat; - QString _remoteTabTitleFormat; - QColor _tabColor; + QString _localTabTitleFormat = QString(); + QString _remoteTabTitleFormat = QString(); + QColor _tabColor = QColor(); + QColor _tabActivityColor = QColor(); bool _tabTitleSetByUser = false; bool _tabColorSetByUser = false; + bool _tabActivityColorSetByUser = false; - QString _iconName; - QString _iconText; // not actually used + QString _iconName = QString(); + QString _iconText = QString(); // not actually used bool _addToUtmp = true; bool _flowControlEnabled = true; - QString _program; + QString _program = QString(); QStringList _arguments; QStringList _environment; @@ -941,6 +1022,11 @@ private: ProcessInfo *_foregroundProcessInfo = nullptr; int _foregroundPid = 0; + // Container context tracking + ContainerInfo _containerContext; + bool _enteredViaContainerCommand = false; + int _lastContainerCheckPid = -1; + // ZModem bool _zmodemBusy = false; KProcess *_zmodemProc = nullptr; @@ -948,15 +1034,21 @@ private: bool _hasDarkBackground = false; - QSize _preferredSize; + QSize _preferredSize = QSize(0, 0); bool _readOnly = false; bool _isPrimaryScreen = true; - QString _currentHostName; + QString _currentHostName = QString(); bool _selectMode = false; + + /** + * secret cookie for activationToken, shall be only exposed to shell + * environment as KONSOLE_DBUS_ACTIVATION_COOKIE + */ + const QString m_activationCookie; }; } diff --git a/local/recipes/kde/konsole/source/src/session/SessionController.cpp b/local/recipes/kde/konsole/source/src/session/SessionController.cpp index 3c614caf07..d8e4951f64 100644 --- a/local/recipes/kde/konsole/source/src/session/SessionController.cpp +++ b/local/recipes/kde/konsole/source/src/session/SessionController.cpp @@ -8,9 +8,8 @@ // Own #include "SessionController.h" -#include "config-konsole.h" - #include "profile/ProfileManager.h" +#include "src/SearchHistoryTask.h" #include "terminalDisplay/TerminalColor.h" #include "terminalDisplay/TerminalFonts.h" @@ -57,6 +56,7 @@ #include "Emulation.h" #include "HistorySizeDialog.h" #include "RenameTabDialog.h" +#include "SaveHistoryAutoTask.h" #include "SaveHistoryTask.h" #include "ScreenWindow.h" #include "SearchHistoryTask.h" @@ -87,6 +87,7 @@ #include "terminalDisplay/TerminalColor.h" #include "terminalDisplay/TerminalDisplay.h" +#include "terminalDisplay/TerminalScrollBar.h" // For Unix signal names #include @@ -129,6 +130,7 @@ SessionController::SessionController(Session *sessionParam, TerminalDisplay *vie , _monitorProcessFinish(false) , _monitorOnce(false) , _escapedUrlFilter(nullptr) + , contextMenuAdditionalActions({}) { Q_ASSERT(sessionParam); Q_ASSERT(viewParam); @@ -147,9 +149,7 @@ SessionController::SessionController(Session *sessionParam, TerminalDisplay *vie setupExtraActions(); } -#if HAVE_QTPRINTSUPPORT connect(this, &SessionController::requestPrint, view(), &TerminalDisplay::printScreen); -#endif actionCollection()->addAssociatedWidget(viewParam); @@ -188,6 +188,7 @@ SessionController::SessionController(Session *sessionParam, TerminalDisplay *vie connect(this, &Konsole::SessionController::tabRenamedByUser, session(), &Konsole::Session::tabTitleSetByUser); connect(this, &Konsole::SessionController::tabColoredByUser, session(), &Konsole::Session::tabColorSetByUser); + connect(this, &Konsole::SessionController::tabActivityColoredByUser, session(), &Konsole::Session::tabActivityColorSetByUser); connect(session(), &Konsole::Session::currentDirectoryChanged, this, &Konsole::SessionController::currentDirectoryChanged); @@ -231,6 +232,13 @@ SessionController::SessionController(Session *sessionParam, TerminalDisplay *vie // xterm '11;?' request connect(session(), &Konsole::Session::getBackgroundColor, this, &Konsole::SessionController::sendBackgroundColor); + connect(session()->emulation(), &Konsole::Emulation::progressChanged, this, [this](int progress) { + setProgress(progress); + }); + connect(session()->emulation(), &Konsole::Emulation::progressHidden, this, [this] { + setProgress(std::nullopt); + }); + _allControllers.insert(this); // A list of programs that accept Ctrl+C to clear command line used @@ -285,6 +293,11 @@ void SessionController::trackOutput(QKeyEvent *event) return; } + // Don't jump to bottom on key release (BUG: 519251) + if (event->type() == QKeyEvent::KeyRelease) { + return; + } + view()->screenWindow()->setTrackOutput(true); } @@ -335,17 +348,27 @@ void SessionController::snapshot() title = session()->title(Session::NameRole); } + if (!_autoSaveTask.isNull()) { + title.append(QStringLiteral(" (autosaving)")); + } + QColor color = session()->color(); // use the fallback color if needed if (!color.isValid()) { color = QColor(QColor::Invalid); } + QColor activityColor = session()->activityColor(); + if (!activityColor.isValid()) { + activityColor = QColor(QColor::Invalid); + } + // apply new title session()->setTitle(Session::DisplayedTitleRole, title); // apply new color session()->setColor(color); + session()->setActivityColor(activityColor); // check if foreground process ended and notify if this option was requested if (_monitorProcessFinish) { @@ -471,9 +494,8 @@ void SessionController::updateCopyAction(const bool selectionEmpty) QAction *copyAction = actionCollection()->action(QStringLiteral("edit_copy")); QAction *copyContextMenu = actionCollection()->action(QStringLiteral("edit_copy_contextmenu")); // copy action is meaningful only when some text is selected. - // Or when semantic integration is used. bool hasRepl = view() && view()->screenWindow() && view()->screenWindow()->screen() && view()->screenWindow()->screen()->hasRepl(); - copyAction->setEnabled(!selectionEmpty || hasRepl); + copyAction->setEnabled(!selectionEmpty); copyContextMenu->setVisible(!selectionEmpty || hasRepl); QAction *Action = actionCollection()->action(QStringLiteral("edit_copy_contextmenu_in")); Action->setVisible(!selectionEmpty && hasRepl); @@ -617,6 +639,7 @@ void SessionController::setupSearchBar() { connect(_searchBar, &Konsole::IncrementalSearchBar::unhandledMovementKeyPressed, this, &Konsole::SessionController::movementKeyFromSearchBarReceived); connect(_searchBar, &Konsole::IncrementalSearchBar::closeClicked, this, &Konsole::SessionController::searchClosed); + connect(_searchBar, &Konsole::IncrementalSearchBar::closeClicked, view()->scrollBar(), &Konsole::TerminalScrollBar::clearSearchLines); connect(_searchBar, &Konsole::IncrementalSearchBar::searchFromClicked, this, &Konsole::SessionController::searchFrom); connect(_searchBar, &Konsole::IncrementalSearchBar::findNextClicked, this, &Konsole::SessionController::findNextInHistory); connect(_searchBar, &Konsole::IncrementalSearchBar::findPreviousClicked, this, &Konsole::SessionController::findPreviousInHistory); @@ -654,7 +677,10 @@ void SessionController::setupCommonActions() // Copy and Paste action = KStandardAction::copy(this, &SessionController::copy, collection); - collection->setDefaultShortcut(action, Konsole::ACCEL | Qt::Key_C); + QList copyShortcut; + copyShortcut.append(QKeySequence(Konsole::ACCEL | Qt::Key_C)); + copyShortcut.append(QKeySequence(Qt::CTRL | Qt::Key_Insert)); + collection->setDefaultShortcuts(action, copyShortcut); // disabled at first, since nothing has been selected now action->setEnabled(false); @@ -674,7 +700,7 @@ void SessionController::setupCommonActions() action = collection->addAction(QStringLiteral("split-view-top-bottom")); action->setIcon(QIcon::fromTheme(QStringLiteral("view-split-top-bottom"))); action->setText(i18n("Split View Top-Bottom")); - connect(action, &QAction::triggered, this, &SessionController::requestSplitViewTopBotton); + connect(action, &QAction::triggered, this, &SessionController::requestSplitViewTopBottom); action = collection->addAction(QStringLiteral("edit_copy_contextmenu_in_out")); action->setText(i18n("Copy except prompts")); @@ -734,11 +760,17 @@ void SessionController::setupCommonActions() action->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_S)); #endif -#if HAVE_QTPRINTSUPPORT + _startAutoSaveAction = collection->addAction(QStringLiteral("file-autosave"), this, &SessionController::autoSaveHistory); + _startAutoSaveAction->setText(i18n("Auto Save Output As...")); + _startAutoSaveAction->setVisible(true); + + _stopAutoSaveAction = collection->addAction(QStringLiteral("stop-autosave"), this, &SessionController::stopAutoSaveHistory); + _stopAutoSaveAction->setText(i18n("Stop Auto Save")); + _stopAutoSaveAction->setVisible(false); + action = KStandardAction::print(this, &SessionController::requestPrint, collection); action->setText(i18n("&Print Screen...")); collection->setDefaultShortcut(action, Konsole::ACCEL | Qt::Key_P); -#endif action = collection->addAction(QStringLiteral("adjust-history"), this, &SessionController::showHistoryOptions); action->setText(i18n("Adjust Scrollback...")); @@ -800,14 +832,12 @@ void SessionController::setupCommonActions() connect(session(), &Konsole::Session::sessionCodecChanged, this, &Konsole::SessionController::updateCodecAction); connect(_codecAction, &KCodecAction::codecNameTriggered, this, [this](const QByteArray &codecName) { - changeCodec(QTextCodec::codecForName(codecName)); + changeCodec(codecName); }); connect(_codecAction, &KCodecAction::defaultItemTriggered, this, [this] { Profile::Ptr profile = SessionManager::instance()->sessionProfile(session()); - QByteArray name = profile->defaultEncoding().toUtf8(); - - changeCodec(QTextCodec::codecForName(name)); + changeCodec(profile->defaultEncoding().toUtf8()); }); // Mouse tracking enabled @@ -998,12 +1028,12 @@ void SessionController::prepareSwitchProfileMenu() _switchProfileMenu->menu()->clear(); _switchProfileMenu->menu()->addActions(_profileList->actions()); } -void SessionController::updateCodecAction(QTextCodec *codec) +void SessionController::updateCodecAction(const QByteArray &codec) { - _codecAction->setCurrentCodec(QString::fromUtf8(codec->name())); + _codecAction->setCurrentCodec(QString::fromUtf8(codec)); } -void SessionController::changeCodec(QTextCodec *codec) +void SessionController::changeCodec(const QByteArray &codec) { session()->setCodec(codec); } @@ -1056,6 +1086,7 @@ void SessionController::renameSession() const QString sessionLocalTabTitleFormat = session()->tabTitleFormat(Session::LocalTabTitle); const QString sessionRemoteTabTitleFormat = session()->tabTitleFormat(Session::RemoteTabTitle); const QColor sessionTabColor = session()->color(); + const QColor sessionActivityTabColor = session()->activityColor(); auto *dialog = new RenameTabDialog(QApplication::activeWindow()); dialog->setAttribute(Qt::WA_DeleteOnClose); @@ -1063,6 +1094,7 @@ void SessionController::renameSession() dialog->setTabTitleText(sessionLocalTabTitleFormat); dialog->setRemoteTabTitleText(sessionRemoteTabTitleFormat); dialog->setColor(sessionTabColor); + dialog->setActivityColor(sessionActivityTabColor); if (session()->isRemote()) { dialog->focusRemoteTabTitleText(); @@ -1074,6 +1106,7 @@ void SessionController::renameSession() const QString tabTitle = dialog->tabTitleText(); const QString remoteTabTitle = dialog->remoteTabTitleText(); const QColor tabColor = dialog->color(); + const QColor tabActivityColor = dialog->activityColor(); if (tabTitle != sessionLocalTabTitleFormat) { session()->setTabTitleFormat(Session::LocalTabTitle, tabTitle); @@ -1093,6 +1126,12 @@ void SessionController::renameSession() Q_EMIT tabColoredByUser(true); snapshot(); } + + if (tabActivityColor != sessionActivityTabColor) { + session()->setActivityColor(tabActivityColor); + Q_EMIT tabActivityColoredByUser(true); + snapshot(); + } }); dialog->show(); @@ -1154,7 +1193,7 @@ bool SessionController::confirmForceClose() const " Are you sure you want to kill it by force?"); } else { question = i18n( - "The program '%1' is in this session would not die." + "The program '%1' in this session would not die." " Are you sure you want to kill it by force?", title); } @@ -1420,6 +1459,11 @@ void SessionController::copyInputToNone() Q_EMIT copyInputChanged(this); } +void SessionController::setContextMenuAdditionalActions(const QList &extension) +{ + contextMenuAdditionalActions = extension; +} + void SessionController::searchClosed() { _isSearchBarEnabled = false; @@ -1679,6 +1723,7 @@ void SessionController::beginSearch(const QString &text, Enum::SearchDirection d auto task = new SearchHistoryTask(this); connect(task, &Konsole::SearchHistoryTask::completed, this, &Konsole::SessionController::searchCompleted); + connect(task, &Konsole::SearchHistoryTask::searchResults, view()->scrollBar(), &Konsole::TerminalScrollBar::searchLines); task->setRegExp(regExp); task->setSearchDirection(direction); @@ -1688,6 +1733,7 @@ void SessionController::beginSearch(const QString &text, Enum::SearchDirection d task->addScreenWindow(session(), view()->screenWindow()); task->execute(); } else if (text.isEmpty()) { + view()->scrollBar()->clearSearchLines(); searchCompleted(false); } @@ -1799,6 +1845,34 @@ void SessionController::scrollBackOptionsChanged(int mode, int lines) } } +void SessionController::autoSaveHistory() +{ + _autoSaveTask = new SaveHistoryAutoTask(this); + _autoSaveTask->setAutoDelete(true); + _autoSaveTask->addSession(session()); + auto success = _autoSaveTask->execute(); + + if (success) { + // Only show the button to start autosave when autosave is not ongoing. + // Only show the button to stop autosave when autosave is ongoing. + connect(_autoSaveTask, &SaveHistoryAutoTask::completed, this, [&]() { + _startAutoSaveAction->setVisible(true); + _stopAutoSaveAction->setVisible(false); + }); + + _startAutoSaveAction->setVisible(false); + _stopAutoSaveAction->setVisible(true); + } else { + // Reset to avoid snapshot changing title. + _autoSaveTask->stop(); + } +} + +void SessionController::stopAutoSaveHistory() +{ + _autoSaveTask->stop(); +} + void SessionController::saveHistory() { SessionTask *task = new SaveHistoryTask(this); @@ -1822,7 +1896,7 @@ void SessionController::clearHistoryAndReset() Emulation *emulation = session()->emulation(); emulation->reset(false, true); session()->refresh(); - session()->setCodec(QTextCodec::codecForName(name)); + session()->setCodec(name); clearHistory(); } @@ -1926,6 +2000,35 @@ void SessionController::updateReadOnlyActionStates() }); } +void SessionController::appendHamburgerMenuIfNeeded(QMenu *menu) +{ + const QString hambugerMenuName = KStandardAction::name(KStandardAction::HamburgerMenu); + const QList actions = menu->actions(); + const bool hamburgerMenuFound = std::find_if(actions.begin(), + actions.end(), + [&hambugerMenuName](const QAction *action) { + return action && action->objectName() == hambugerMenuName; + }) + != actions.end(); + if (hamburgerMenuFound) { + return; + } + + auto *hamburger = static_cast(actionCollection()->action(hambugerMenuName)); + if (hamburger) { + hamburger->addToMenu(menu); + + // Add the object name to be able to find it in the list afterwards. + const QList actions = menu->actions(); + Q_ASSERT(!actions.isEmpty()); + + if (!actions.isEmpty()) { + QAction *hamburgerMenuAction = menu->actions().last(); + hamburgerMenuAction->setObjectName(KStandardAction::name(KStandardAction::HamburgerMenu)); + } + } +} + bool SessionController::isReadOnly() const { if (!session().isNull()) { @@ -1943,6 +2046,7 @@ bool SessionController::isCopyInputActive() const void SessionController::sessionAttributeChanged() { if (_sessionIconName != session()->iconName()) { + qCDebug(KonsoleDebug) << "sessionAttributeChanged: TP 1.1"; updateSessionIcon(); } @@ -2012,6 +2116,13 @@ void SessionController::showDisplayContextMenu(const QPoint &position) const QUrl currentUrl = url().isLocalFile() ? url() : QUrl::fromLocalFile(QDir::homePath()); KFileItem item(currentUrl); + if (!contextMenuAdditionalActions.isEmpty()) { + popup->addSeparator(); + for (const auto &action : std::as_const(contextMenuAdditionalActions)) { + popup->addAction(action); + } + } + const auto old = popup->actions(); const KFileItemListProperties props({item}); @@ -2039,7 +2150,7 @@ void SessionController::showDisplayContextMenu(const QPoint &position) // Open Folder With - with different folders on each. // Change the text of the second one, that points to the // current folder. - for (auto *action : newActions) { + for (auto *action : std::as_const(newActions)) { if (action->objectName() == QStringLiteral("openWith_submenu")) { action->setText(i18n("Open Current Folder With")); } @@ -2056,10 +2167,10 @@ void SessionController::showDisplayContextMenu(const QPoint &position) _preventClose = true; - auto hamburger = static_cast(actionCollection()->action(KStandardAction::name(KStandardAction::HamburgerMenu))); - if (hamburger) { - hamburger->addToMenu(popup); - } + // The hamburger menu should be added when not already appended before to the + // popup menu. Note that, in some cases, the popup menu may be re-instantiated, + // so we must verify to know if we need to add it or not. + appendHamburgerMenuIfNeeded(popup.data()); // they are here. // qDebug() << popup->actions().indexOf(contentActions[0]) << popup->actions().indexOf(contentActions[1]) << popup->actions()[3]; @@ -2069,7 +2180,7 @@ void SessionController::showDisplayContextMenu(const QPoint &position) if (!popup.isNull()) { delete contentSeparator; // Remove the 'Open with' actions from it. - for (auto *act : toRemove) { + for (auto *act : std::as_const(toRemove)) { popup->removeAction(act); } diff --git a/local/recipes/kde/konsole/source/src/session/SessionController.h b/local/recipes/kde/konsole/source/src/session/SessionController.h index 7c7ef672f8..de0ba8eb9f 100644 --- a/local/recipes/kde/konsole/source/src/session/SessionController.h +++ b/local/recipes/kde/konsole/source/src/session/SessionController.h @@ -53,6 +53,7 @@ class TerminalDisplay; class UrlFilter; class ColorFilter; class HotSpot; +class SaveHistoryAutoTask; /** * Provides the menu actions to manipulate a single terminal session and view pair. @@ -180,7 +181,7 @@ Q_SIGNALS: */ void requestSplitViewLeftRight(); - void requestSplitViewTopBotton(); + void requestSplitViewTopBottom(); /** * Emitted when the current working directory of the session associated with @@ -198,6 +199,11 @@ Q_SIGNALS: */ void tabColoredByUser(bool set) const; + /** + * Emitted when the user changes the tab activity color. + */ + void tabActivityColoredByUser(bool set) const; + /** * Emitted when the user request print screen. */ @@ -252,6 +258,8 @@ public Q_SLOTS: void copyInputToSelectedTabs(QList *sessions = nullptr); void copyInputToNone(); + void setContextMenuAdditionalActions(const QList &extension); + private Q_SLOTS: // menu item handlers void openBrowser(); @@ -268,7 +276,7 @@ private Q_SLOTS: void editCurrentProfile(); void nextProfile(); void prevProfile(); - void changeCodec(QTextCodec *codec); + void changeCodec(const QByteArray &codec); void enableSearchBar(bool showSearchBar); void searchHistory(bool showSearchBar); void searchBarEvent(); @@ -277,6 +285,8 @@ private Q_SLOTS: void findPreviousInHistory(); void updateMenuIconsAccordingToReverseSearchSetting(); void changeSearchMatch(); + void autoSaveHistory(); + void stopAutoSaveHistory(); void saveHistory(); void showHistoryOptions(); void clearHistory(); @@ -302,7 +312,7 @@ private Q_SLOTS: // other void setupSearchBar(); void prepareSwitchProfileMenu(); - void updateCodecAction(QTextCodec *codec); + void updateCodecAction(const QByteArray &codec); void showDisplayContextMenu(const QPoint &position); void movementKeyFromSearchBarReceived(QKeyEvent *event); void sessionNotificationsChanged(Session::Notification notification, bool enabled); @@ -356,6 +366,7 @@ private: private: void updateSessionIcon(); void updateReadOnlyActionStates(); + void appendHamburgerMenuIfNeeded(QMenu *menu); SessionGroup *_copyToGroup; @@ -404,10 +415,10 @@ private: bool _isSearchBarEnabled; - QString _searchText; + QString _searchText = QString(); QPointer _searchBar; - QString _previousForegroundProcessName; + QString _previousForegroundProcessName = QString(); bool _monitorProcessFinish; bool _monitorOnce; EscapeSequenceUrlFilter *_escapedUrlFilter; @@ -415,6 +426,12 @@ private: std::unique_ptr _clientBuilder; QSharedPointer _currentHotSpot; + + QAction *_startAutoSaveAction; + QAction *_stopAutoSaveAction; + QPointer _autoSaveTask; + + QList contextMenuAdditionalActions; }; } diff --git a/local/recipes/kde/konsole/source/src/session/SessionManager.cpp b/local/recipes/kde/konsole/source/src/session/SessionManager.cpp index 25522e9956..f163025110 100644 --- a/local/recipes/kde/konsole/source/src/session/SessionManager.cpp +++ b/local/recipes/kde/konsole/source/src/session/SessionManager.cpp @@ -11,7 +11,6 @@ // Qt #include -#include // KDE #include @@ -238,6 +237,9 @@ void SessionManager::applyProfile(Session *session, const Profile::Ptr &profile, if (apply.shouldApply(Profile::TabColor) && !session->isTabColorSetByUser()) { session->setColor(profile->tabColor()); } + if (apply.shouldApply(Profile::TabActivityColor) && !session->isTabActivityColorSetByUser()) { + session->setActivityColor(profile->tabActivityColor()); + } // History if (apply.shouldApply(Profile::HistoryMode) || apply.shouldApply(Profile::HistorySize)) { @@ -266,8 +268,7 @@ void SessionManager::applyProfile(Session *session, const Profile::Ptr &profile, // Encoding if (apply.shouldApply(Profile::DefaultEncoding)) { - QByteArray name = profile->defaultEncoding().toUtf8(); - session->setCodec(QTextCodec::codecForName(name)); + session->setCodec(profile->defaultEncoding().toUtf8()); } // Monitor Silence @@ -278,7 +279,8 @@ void SessionManager::applyProfile(Session *session, const Profile::Ptr &profile, const bool shouldEnableUrlExtractor = profile->allowEscapedLinks(); const bool enableReflowLines = profile->property(Profile::ReflowLines); const bool ignoreWcWidth = profile->property(Profile::IgnoreWcWidth); - for (TerminalDisplay *view : session->views()) { + const auto views = session->views(); + for (TerminalDisplay *view : views) { view->screenWindow()->screen()->setReflowLines(enableReflowLines); view->screenWindow()->screen()->setIgnoreWcWidth(ignoreWcWidth); view->screenWindow()->screen()->setEnableUrlExtractor(shouldEnableUrlExtractor); diff --git a/local/recipes/kde/konsole/source/src/session/SessionTask.cpp b/local/recipes/kde/konsole/source/src/session/SessionTask.cpp index 756a3ba7c1..0b1b63488a 100644 --- a/local/recipes/kde/konsole/source/src/session/SessionTask.cpp +++ b/local/recipes/kde/konsole/source/src/session/SessionTask.cpp @@ -29,7 +29,7 @@ void SessionTask::addSession(Session *session) _sessions.append(session); } -QList> SessionTask::sessions() const +const QList> &SessionTask::sessions() const { return _sessions; } diff --git a/local/recipes/kde/konsole/source/src/session/SessionTask.h b/local/recipes/kde/konsole/source/src/session/SessionTask.h index 48d661eb3c..266bdffdd3 100644 --- a/local/recipes/kde/konsole/source/src/session/SessionTask.h +++ b/local/recipes/kde/konsole/source/src/session/SessionTask.h @@ -46,10 +46,11 @@ public: /** * Executes the task on each of the sessions in the group. + * Returns true if the task has been spawned successfully. * The completed() signal is emitted when the task is finished, depending on the specific sub-class * execute() may be synchronous or asynchronous */ - virtual void execute() = 0; + virtual bool execute() = 0; Q_SIGNALS: /** @@ -63,7 +64,7 @@ Q_SIGNALS: protected: /** Returns a list of sessions in the group */ - QList> sessions() const; + const QList> &sessions() const; private: bool _autoDelete = false; diff --git a/local/recipes/kde/konsole/source/src/settings/GeneralSettings.cpp b/local/recipes/kde/konsole/source/src/settings/GeneralSettings.cpp index 75c41bdf3d..ed41a42490 100644 --- a/local/recipes/kde/konsole/source/src/settings/GeneralSettings.cpp +++ b/local/recipes/kde/konsole/source/src/settings/GeneralSettings.cpp @@ -6,6 +6,7 @@ // Own #include "GeneralSettings.h" +#include "config-konsole.h" #include @@ -15,6 +16,9 @@ GeneralSettings::GeneralSettings(QWidget *aParent) : QWidget(aParent) { setupUi(this); +#if !HAVE_DBUS + kcfg_ShowProgressInTaskBar->hide(); +#endif connect(enableAllMessagesButton, &QPushButton::clicked, this, &Konsole::GeneralSettings::slotEnableAllMessages); } diff --git a/local/recipes/kde/konsole/source/src/settings/GeneralSettings.ui b/local/recipes/kde/konsole/source/src/settings/GeneralSettings.ui index 756152ea75..2d0fcfc1e6 100644 --- a/local/recipes/kde/konsole/source/src/settings/GeneralSettings.ui +++ b/local/recipes/kde/konsole/source/src/settings/GeneralSettings.ui @@ -37,76 +37,7 @@ 6 - - - - Search: - - - - - - - - 0 - 0 - - - - Enable menu accelerators - - - - - - - - 0 - 0 - - - - If enabled, profile settings will be ignored - - - Remember window size - - - - - - - - 0 - 0 - - - - Show window title on the titlebar - - - - - - - Focus terminals when the mouse pointer is moved over them - - - - - - - - 0 - 0 - - - - Match using regular expressions - - - - + @@ -122,20 +53,7 @@ - - - - - 0 - 0 - - - - Highlight all matches - - - - + Qt::Orientation::Vertical @@ -151,7 +69,67 @@ - + + + + + 0 + 0 + + + + If enabled, profile settings will be ignored + + + Remember window size + + + + + + + Force new tabs + + + + + + + Listen for ZModem terminal codes + + + + + + + Show progress in taskbar + + + + + + + Notifications: + + + + + + + + 0 + 0 + + + + Sets whether search should start from the bottom + + + Search backwards + + + + @@ -167,14 +145,37 @@ - - + + - Remove window titlebar and frame + Process and window: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter - + + + + + 0 + 0 + + + + Highlight all matches + + + + + + + Search: + + + + Qt::Orientation::Vertical @@ -190,24 +191,43 @@ - - - - Process and window: + + + + + 0 + 0 + - - Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + + Sets whether search should stop instead of wrapping + + + No wrap - - + + + + + 0 + 0 + + - Notifications: + Enable menu accelerators - + + + + Focus terminals when the mouse pointer is moved over them + + + + 0 @@ -243,35 +263,43 @@ - - + + 0 0 - - Sets whether search should start from the bottom - - Search backwards + Show window title on the titlebar - - + + + + Enable the security sensitive parts of the DBus API + + + + + + + Remove window titlebar and frame + + + + + 0 0 - - Sets whether search should stop instead of wrapping - - No wrap + Match using regular expressions diff --git a/local/recipes/kde/konsole/source/src/settings/MemorySettings.ui b/local/recipes/kde/konsole/source/src/settings/MemorySettings.ui index acdc40a879..ee96d2dbab 100644 --- a/local/recipes/kde/konsole/source/src/settings/MemorySettings.ui +++ b/local/recipes/kde/konsole/source/src/settings/MemorySettings.ui @@ -21,11 +21,7 @@ - Changes will take effect upon restart. If enabled, sustained memory consumption by Konsole -exceeding the specified value will cause systemd-oomd to eliminate the tab(s) -containing the memory-intensive process(es). Note: enabling -might cause greater slowdowns during high memory consumption and specifying -excessively low values might still cause Konsole to be killed. + Changes will take effect upon restart. If enabled, sustained memory consumption by Konsole exceeding the specified value will cause systemd-oomd to eliminate the tab(s) containing the memory-intensive process(es). Note: enabling might cause greater slowdowns during high memory consumption and specifying excessively low values might still cause Konsole to be killed. true diff --git a/local/recipes/kde/konsole/source/src/settings/TabBarSettings.ui b/local/recipes/kde/konsole/source/src/settings/TabBarSettings.ui index 625dda337c..13bfaed7f3 100644 --- a/local/recipes/kde/konsole/source/src/settings/TabBarSettings.ui +++ b/local/recipes/kde/konsole/source/src/settings/TabBarSettings.ui @@ -7,7 +7,7 @@ 0 0 507 - 473 + 618 @@ -179,7 +179,7 @@ - + On ea&ch tab @@ -189,7 +189,7 @@ - + On &the tab bar @@ -199,7 +199,7 @@ - + None @@ -209,7 +209,7 @@ - + Qt::Orientation::Vertical @@ -225,7 +225,53 @@ - + + + + Show Search Tabs button: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + + + + + + + Always + + + kcfg_SearchTabsButton + + + + + + + Never + + + kcfg_SearchTabsButton + + + + + + + Qt::Orientation::Vertical + + + QSizePolicy::Policy::Fixed + + + + 20 + 16 + + + + + Miscellaneous: @@ -235,28 +281,28 @@ - + Show 'New Tab' button - + Expand individual tab widths to full window - + Use user-defined stylesheet: - + Qt::Orientation::Horizontal @@ -522,16 +568,28 @@ ShowTabBarWhenNeeded AlwaysShowTabBar AlwaysHideTabBar - Bottom Top + Bottom + Left + Right OnEachTab OnTabBar None + ShowSearchTabsButton + HideSearchTabsButton + kcfg_NewTabButton kcfg_ExpandTabWidth kcfg_TabBarUseUserStyleSheet + kcfg_TabBarUserStyleSheetFile + kcfg_CloseTabOnMiddleMouseButton PutNewTabAtTheEnd PutNewTabAfterCurrentTab - kcfg_CloseTabOnMiddleMouseButton + ShowSplitHeaderWhenNeeded + AlwaysHideSplitHeader + SplitDragHandleSmall + SplitDragHandleMedium + SplitDragHandleLarge + AlwaysShowSplitHeader @@ -775,9 +833,58 @@ + + AlwaysHideTabBar + toggled(bool) + showSearchTabsButtonLabel + setDisabled(bool) + + + 20 + 20 + + + 89 + 429 + + + + + AlwaysHideTabBar + toggled(bool) + ShowSearchTabsButton + setDisabled(bool) + + + 20 + 20 + + + 20 + 20 + + + + + AlwaysHideTabBar + toggled(bool) + HideSearchTabsButton + setDisabled(bool) + + + 20 + 20 + + + 20 + 20 + + + + diff --git a/local/recipes/kde/konsole/source/src/settings/ThumbnailsSettings.ui b/local/recipes/kde/konsole/source/src/settings/ThumbnailsSettings.ui index b7b393c7a8..7ef6aa428a 100644 --- a/local/recipes/kde/konsole/source/src/settings/ThumbnailsSettings.ui +++ b/local/recipes/kde/konsole/source/src/settings/ThumbnailsSettings.ui @@ -34,7 +34,7 @@ - <html><head/><body><p>To use this feature, enable <span style=" font-weight:600;">Mouse-&gt;Miscellaneous-&gt;Underline </span><span style=" font-weight:600;">files</span> in your profile settings</p></body></html> + <html><head/><body><p>To use this feature, enable <span style=" font-weight:600;">Mouse-&gt;Miscellaneous-&gt;Underline files</span> in your profile settings.</p></body></html> Qt::TextFormat::RichText diff --git a/local/recipes/kde/konsole/source/src/settings/konsole.kcfg b/local/recipes/kde/konsole/source/src/settings/konsole.kcfg index 82bd09d43c..58466e069b 100644 --- a/local/recipes/kde/konsole/source/src/settings/konsole.kcfg +++ b/local/recipes/kde/konsole/source/src/settings/konsole.kcfg @@ -33,6 +33,26 @@ When launching Konsole re-use existing process if possible false + + + When launching Konsole create a new tab instead of creating new windows if possible + false + + + + When a script reports its progress, it will be shown in the task bar + true + + + + DBus API like runCommand will be enabled + false + + + + Automatic send/receive files over serial connections + false + @@ -155,6 +175,14 @@ false + + + + + + + ShowSearchTabsButton + diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalBell.cpp b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalBell.cpp index 71a18ed59d..36c413a055 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalBell.cpp +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalBell.cpp @@ -9,6 +9,7 @@ #include "TerminalBell.h" #include "TerminalDisplay.h" +#include #include #include @@ -31,7 +32,7 @@ void TerminalBell::bell(TerminalDisplay *terminalDisplay, const QString &message { switch (_bellMode) { case Enum::SystemBeepBell: - KNotification::beep(); + QApplication::beep(); break; case Enum::NotifyBell: { // STABLE API: diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.cpp b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.cpp index 614276de4f..75b4fbe564 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.cpp +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.cpp @@ -25,15 +25,17 @@ TerminalColor::TerminalColor(QObject *parent) setColorTable(ColorScheme::defaultTable); } -void TerminalColor::applyProfile(const Profile::Ptr &profile, const std::shared_ptr &colorScheme, uint randomSeed) +void TerminalColor::applyProfile(const Profile::Ptr &profile, const std::shared_ptr &colorScheme, uint sessionId) { QColor table[TABLE_COLORS]; - colorScheme->getColorTable(table, randomSeed); + colorScheme->getColorTable(table, sessionId); setColorTable(table); setOpacity(colorScheme->opacity()); m_cursorColor = profile->useCustomCursorColor() ? profile->customCursorColor() : QColor(); m_cursorTextColor = profile->useCustomCursorColor() ? profile->customCursorTextColor() : QColor(); + m_defaultForeColor = colorScheme->foregroundColor(); + m_defaultBackColor = colorScheme->backgroundColor(); } QColor TerminalColor::backgroundColor() const @@ -92,13 +94,21 @@ void TerminalColor::setCursorColor(const QColor &color) void TerminalColor::setBackgroundColor(const QColor &color) { - m_colorTable[DEFAULT_BACK_COLOR] = color; + if (color == QColor()) { + m_colorTable[DEFAULT_BACK_COLOR] = m_defaultBackColor; + } else { + m_colorTable[DEFAULT_BACK_COLOR] = color; + } onColorsChanged(); } void TerminalColor::setForegroundColor(const QColor &color) { - m_colorTable[DEFAULT_FORE_COLOR] = color; + if (color == QColor()) { + m_colorTable[DEFAULT_FORE_COLOR] = m_defaultForeColor; + } else { + m_colorTable[DEFAULT_FORE_COLOR] = color; + } onColorsChanged(); } diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.h b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.h index 91b36de782..834033e76c 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.h +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalColor.h @@ -29,7 +29,7 @@ class KONSOLEPRIVATE_EXPORT TerminalColor : public QObject public: explicit TerminalColor(QObject *parent); - void applyProfile(const Profile::Ptr &profile, const std::shared_ptr &colorScheme, uint randomSeed); + void applyProfile(const Profile::Ptr &profile, const std::shared_ptr &colorScheme, uint sessionId); QColor backgroundColor() const; QColor foregroundColor() const; @@ -73,6 +73,8 @@ private: QColor m_cursorColor; QColor m_cursorTextColor; + QColor m_defaultForeColor; + QColor m_defaultBackColor; QColor m_colorTable[TABLE_COLORS]; }; diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.cpp b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.cpp index de55a0a355..c28fefb4a4 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.cpp +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.cpp @@ -55,10 +55,9 @@ #include "../characters/ExtendedCharTable.h" #include "../characters/LineBlockCharacters.h" #include "../decoders/PlainTextDecoder.h" -#if HAVE_QTPRINTSUPPORT #include "../widgets/KonsolePrintManager.h" -#endif #include "../widgets/TerminalDisplayAccessible.h" +#include "Emulation.h" // to connect the URL escape sequence extractor #include "EscapeSequenceUrlExtractor.h" #include "PrintOptions.h" #include "Screen.h" @@ -153,9 +152,14 @@ void TerminalDisplay::setScreenWindow(ScreenWindow *window) auto profile = SessionManager::instance()->sessionProfile(_sessionController->session()); _screenWindow->screen()->setReflowLines(profile->property(Profile::ReflowLines)); _screenWindow->screen()->setIgnoreWcWidth(profile->property(Profile::IgnoreWcWidth)); + _screenWindow->screen()->setEnableUrlExtractor(profile->allowEscapedLinks()); if (_screenWindow->screen()->urlExtractor()) { _screenWindow->screen()->urlExtractor()->setAllowedLinkSchema(profile->escapedLinksSchema()); + connect(_sessionController->session()->emulation(), + &Emulation::toggleUrlExtractionRequest, + _screenWindow->screen()->urlExtractor(), + &EscapeSequenceUrlExtractor::toggleUrlInput); } } } @@ -236,6 +240,10 @@ TerminalDisplay::TerminalDisplay(QWidget *parent) }); connect(_scrollBar, &QScrollBar::sliderMoved, this, &Konsole::TerminalDisplay::viewScrolledByUser); + _hoverLinkIndicator = new QLabel(this); + _hoverLinkIndicator->setStyleSheet(QStringLiteral("background-color:palette(window); padding: 2px;")); + _hoverLinkIndicator->setVisible(false); + // setup timers for blinking text _blinkTextTimer = new QTimer(this); _blinkTextTimer->setInterval(TEXT_BLINK_DELAY); @@ -310,7 +318,6 @@ TerminalDisplay::TerminalDisplay(QWidget *parent) _terminalPainter = new TerminalPainter(this); -#if HAVE_QTPRINTSUPPORT auto ldrawBackground = [this](QPainter &painter, const QRect &rect, const QColor &backgroundColor, bool useOpacitySetting) { _terminalPainter->drawBackground(painter, rect, backgroundColor, useOpacitySetting); }; @@ -322,8 +329,19 @@ TerminalDisplay::TerminalDisplay(QWidget *parent) }; _printManager.reset(new KonsolePrintManager(ldrawBackground, ldrawContents, lgetBackgroundColor)); -#endif ubidi = ubidi_open(); + + animationTimer = new QTimer(this); + connect(animationTimer, &QTimer::timeout, this, [this]() { + qreal step = 0.2; + qreal newX = currentCursorRect.x() + (targetCursorRect.x() - currentCursorRect.x()) * step; + qreal newY = currentCursorRect.y() + (targetCursorRect.y() - currentCursorRect.y()) * step; + + currentCursorRect.moveTo(newX, newY); + + if (qAbs(currentCursorRect.x() - targetCursorRect.x()) < 0.1 && qAbs(currentCursorRect.y() - targetCursorRect.y()) < 0.1) { } + update(); + }); } TerminalDisplay::~TerminalDisplay() @@ -376,12 +394,13 @@ void TerminalDisplay::setKeyboardCursorShape(Enum::CursorShapeEnum shape) _cursorShape = shape; } -void TerminalDisplay::setCursorStyle(Enum::CursorShapeEnum shape, bool isBlinking, const QColor &customColor) +void TerminalDisplay::setCursorStyle(Enum::CursorShapeEnum shape, bool isBlinking, bool isAnimating, const QColor &customColor) { setKeyboardCursorShape(shape); setBlinkingCursorEnabled(isBlinking); + setAnimatingCursorEnabled(isAnimating); if (customColor.isValid()) { _terminalColor->setCursorColor(customColor); } @@ -407,6 +426,7 @@ void TerminalDisplay::resetCursorStyle() setKeyboardCursorShape(shape); setBlinkingCursorEnabled(currentProfile->blinkingCursorEnabled()); + setAnimatingCursorEnabled(currentProfile->animatingCursorEnabled()); } } @@ -423,15 +443,6 @@ void TerminalDisplay::scrollScreenWindow(enum ScreenWindow::RelativeScrollMode m viewScrolledByUser(); } -void TerminalDisplay::setRandomSeed(uint randomSeed) -{ - _randomSeed = randomSeed; -} -uint TerminalDisplay::randomSeed() const -{ - return _randomSeed; -} - void TerminalDisplay::processFilters() { if (_screenWindow.isNull()) { @@ -522,6 +533,9 @@ void TerminalDisplay::updateImage() auto dirtyMask = new char[columnsToUpdate + 2]; QRegion dirtyRegion; + std::optional startDirtyIndex; + std::optional endDirtyIndex; + for (y = 0; y < linesToUpdate; ++y) { const Character *currentLine = &_image[y * _columns]; const Character *const newLine = &newimg[y * columns]; @@ -536,6 +550,12 @@ void TerminalDisplay::updateImage() for (x = 0; x < columnsToUpdate; ++x) { if (newLine[x] != currentLine[x]) { dirtyMask[x] = 1; + + const int indexInImage = (y * columns) + x; + if (!startDirtyIndex) { + startDirtyIndex = indexInImage; + } + endDirtyIndex = indexInImage; } } @@ -658,6 +678,21 @@ void TerminalDisplay::updateImage() QAccessible::updateAccessibility(&dataChangeEvent); QAccessibleTextCursorEvent cursorEvent(this, _usedColumns * screenWindow()->screen()->getCursorY() + screenWindow()->screen()->getCursorX()); QAccessible::updateAccessibility(&cursorEvent); + + if (startDirtyIndex && endDirtyIndex) { + const auto maxIndex = _usedLines * _usedColumns; + + // Ensure our indices are in-bounds. It can happen that we have more dirty cells than are on the display. Notably when shrinking the window + // we may have output stream past the current Display region. Let's make sure we aren't tapping into invalid inices when that happens. + startDirtyIndex = qBound(0, *startDirtyIndex, maxIndex); + endDirtyIndex = qBound(*startDirtyIndex, *endDirtyIndex, maxIndex); + + Q_ASSERT(endDirtyIndex <= maxIndex); + Q_ASSERT(endDirtyIndex >= startDirtyIndex); + const QString newText = screenWindow()->screen()->text(*startDirtyIndex, *endDirtyIndex, Screen::PreserveLineBreaks); + QAccessibleTextUpdateEvent textUpdateEvent(this, 0, QString(), newText); + QAccessible::updateAccessibility(&textUpdateEvent); + } #endif } void TerminalDisplay::showResizeNotification() @@ -789,6 +824,13 @@ void TerminalDisplay::setVisualCursorPosition(int x) _visualCursorPosition = {x, cursorPosition().y()}; } +void TerminalDisplay::setHoverLinkIndicator(QString text) +{ + _hoverLinkIndicator->setVisible(!text.isEmpty()); + _hoverLinkIndicator->setText(text); + _hoverLinkIndicator->adjustSize(); +} + bool TerminalDisplay::isCursorOnDisplay() const { return cursorPosition().x() < _columns && cursorPosition().y() < _lines; @@ -858,6 +900,12 @@ void TerminalDisplay::setBlinkingCursorEnabled(bool blink) } } +void TerminalDisplay::setAnimatingCursorEnabled(bool animate) +{ + _allowAnimatingCursor = animate; + _cursorAnimating = animate; +} + void TerminalDisplay::setBlinkingTextEnabled(bool blink) { _allowBlinkingText = blink; @@ -940,7 +988,7 @@ void TerminalDisplay::updateCursor() Q_ASSERT(cursorLocation < _imageSize); int charWidth = _image[cursorLocation].width(); - QRect cursorRect = imageToWidget(QRect(_visualCursorPosition, QSize(charWidth, 1))); + QRect cursorRect = imageToWidget(highdpi_adjust_rect(QRect(_visualCursorPosition, QSize(charWidth, 1)))); update(cursorRect); } @@ -968,6 +1016,8 @@ void TerminalDisplay::resizeEvent(QResizeEvent *event) const auto x = width() - scrollBarWidth - _searchBar->width(); const auto y = headerHeight; _searchBar->move(x, y); + + _hoverLinkIndicator->move(0, height() - _hoverLinkIndicator->height()); } void TerminalDisplay::propagateSize() @@ -1233,7 +1283,7 @@ void TerminalDisplay::mousePressEvent(QMouseEvent *ev) _iPntSel = _pntSel = pos; _actSel = 1; // left mouse button pressed but nothing selected yet. } else if (usesMouseTracking() && !_readOnly) { - Q_EMIT mouseSignal(mouseButton(0, ev->modifiers()), charColumn + 1, charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), 0); + sendMouseSignal(mouseButton(0, ev->modifiers()), ev->pos(), 0, true); } } if (_semanticInputClick && (ev->modifiers() & Qt::ControlModifier) == 0 && _screenWindow->screen()->replMode() == REPL_INPUT) { @@ -1243,12 +1293,8 @@ void TerminalDisplay::mousePressEvent(QMouseEvent *ev) } else if (ev->button() == Qt::MiddleButton) { processMidButtonClick(ev); } else if (ev->button() == Qt::RightButton) { - if (!usesMouseTracking() || ((ev->modifiers() & Qt::ShiftModifier) != 0u)) { - Q_EMIT configureRequest(ev->pos()); - } else { - if (!_readOnly) { - Q_EMIT mouseSignal(mouseButton(2, ev->modifiers()), charColumn + 1, charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), 0); - } + if (usesMouseTracking() && !_readOnly && !ev->modifiers().testFlag(Qt::ShiftModifier)) { + sendMouseSignal(mouseButton(2, ev->modifiers()), ev->pos(), 0, true); } } } @@ -1285,9 +1331,7 @@ void TerminalDisplay::mouseMoveEvent(QMouseEvent *ev) // being held down, which overrides this. if (usesMouseTracking() && !(ev->modifiers() & Qt::ShiftModifier)) { // Ignore mouse movements that don't change the character position. - if (charLine == _prevCharacterLine && charColumn == _prevCharacterColumn) { - return; - } + bool sameChar = charLine == _prevCharacterLine && charColumn == _prevCharacterColumn; _prevCharacterLine = charLine; _prevCharacterColumn = charColumn; @@ -1304,7 +1348,7 @@ void TerminalDisplay::mouseMoveEvent(QMouseEvent *ev) button = 2; } - Q_EMIT mouseSignal(mouseButton(button, ev->modifiers()), charColumn + 1, charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), 1); + sendMouseSignal(mouseButton(button, ev->modifiers()), ev->pos(), 1, !sameChar); } return; @@ -1346,6 +1390,19 @@ void TerminalDisplay::mouseMoveEvent(QMouseEvent *ev) extendSelection(ev->pos()); } +void TerminalDisplay::sendMouseSignal(int button, QPoint pos, int eventType, bool sendInexact) +{ + if (_readOnly) + return; + + if (sendInexact) { + auto [charLine, charColumn] = getCharacterPosition(pos, !usesMouseTracking()); + Q_EMIT mouseSignal(button, charColumn + 1, charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), eventType); + } + + Q_EMIT exactMouseSignal(button, pos.x(), pos.y(), eventType); +} + void TerminalDisplay::leaveEvent(QEvent *ev) { // remove underline from an active link when cursor leaves the widget area, @@ -1524,6 +1581,7 @@ void TerminalDisplay::mouseReleaseEvent(QMouseEvent *ev) clearSelection(); } else { if (_actSel > 1) { + copyToX11Selection(); if (_possibleTripleClick) { const QString text = _screenWindow->selectedText(currentDecodingOptions()); if (!text.isEmpty()) { @@ -1532,8 +1590,6 @@ void TerminalDisplay::mouseReleaseEvent(QMouseEvent *ev) _doubleClickSelectedHtml = _screenWindow->selectedText(currentDecodingOptions() | Screen::ConvertToHtml); } } - } else { - copyToX11Selection(); } } @@ -1544,17 +1600,14 @@ void TerminalDisplay::mouseReleaseEvent(QMouseEvent *ev) // applies here, too. if (usesMouseTracking() && !(ev->modifiers() & Qt::ShiftModifier) && !_readOnly) { - Q_EMIT mouseSignal(mouseButton(0, ev->modifiers()), charColumn + 1, charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), 2); + sendMouseSignal(mouseButton(0, ev->modifiers()), ev->pos(), 2, true); } } _dragInfo.state = diNone; } if (usesMouseTracking() && !_readOnly && (ev->button() == Qt::RightButton || ev->button() == Qt::MiddleButton) && !(ev->modifiers() & Qt::ShiftModifier)) { - Q_EMIT mouseSignal(mouseButton((ev->button() == Qt::MiddleButton ? 1 : 2), ev->modifiers()), - charColumn + 1, - charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), - 2); + sendMouseSignal(mouseButton((ev->button() == Qt::MiddleButton ? 1 : 2), ev->modifiers()), ev->pos(), 2, true); } if (!_screenWindow->screen()->hasSelection()) { @@ -1614,8 +1667,7 @@ void TerminalDisplay::processMidButtonClick(QMouseEvent *ev) } } else { if (!_readOnly) { - auto [charLine, charColumn] = getCharacterPosition(ev->pos(), !usesMouseTracking()); - Q_EMIT mouseSignal(mouseButton(1, ev->modifiers()), charColumn + 1, charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), 0); + sendMouseSignal(mouseButton(1, ev->modifiers()), ev->pos(), 0, true); } } } @@ -1755,12 +1807,11 @@ void TerminalDisplay::wheelEvent(QWheelEvent *ev) } else if (usesMouseTracking()) { // terminal program wants notification of mouse activity - auto [charLine, charColumn] = getCharacterPosition(ev->position().toPoint(), !usesMouseTracking()); const int steps = _scrollWheelState.consumeLegacySteps(ScrollState::DEFAULT_ANGLE_SCROLL_LINE); const int button = (steps > 0) ? 64 : 65; for (int i = 0; i < abs(steps); ++i) { // Alt+wheel unsupported, Qt transforms it into horizontal wheel, see QTBUG-30948 - Q_EMIT mouseSignal(mouseButton(button, ev->modifiers()), charColumn + 1, charLine + 1 + _scrollBar->value() - _scrollBar->maximum(), 0); + sendMouseSignal(mouseButton(button, ev->modifiers()), ev->position().toPoint(), 0, true); } } } @@ -2173,6 +2224,11 @@ void TerminalDisplay::resetCursor() setCursor(usesMouseTracking() ? Qt::ArrowCursor : Qt::IBeamCursor); } +void TerminalDisplay::setPointerShape(Qt::CursorShape shape) +{ + setCursor(shape); +} + bool TerminalDisplay::usesMouseTracking() const { return _usesMouseTracking && _allowMouseTracking; @@ -2847,6 +2903,16 @@ void TerminalDisplay::keyReleaseEvent(QKeyEvent *event) peekPrimaryRequested(false); +#ifdef Q_OS_MACOS // swap Ctrl and Meta + if (event->modifiers() & Qt::MetaModifier) { + event->setModifiers((event->modifiers() & ~Qt::MetaModifier) | Qt::ControlModifier); + } else if (event->modifiers() & Qt::ControlModifier) { + event->setModifiers((event->modifiers() & ~Qt::ControlModifier) | Qt::MetaModifier); + } +#endif + + Q_EMIT keyPressedSignal(event); + QWidget::keyReleaseEvent(event); } @@ -2937,8 +3003,9 @@ bool TerminalDisplay::event(QEvent *event) void TerminalDisplay::contextMenuEvent(QContextMenuEvent *event) { - // the logic for the mouse case is within MousePressEvent() - if (event->reason() != QContextMenuEvent::Mouse) { + if (!usesMouseTracking() || event->modifiers().testFlag(Qt::ShiftModifier)) { + Q_EMIT configureRequest(event->pos()); + } else if (event->reason() != QContextMenuEvent::Mouse) { Q_EMIT configureRequest(mapFromGlobal(QCursor::pos())); } } @@ -3032,10 +3099,12 @@ void TerminalDisplay::dropEvent(QDropEvent *event) if (mimeData == nullptr) { return; } - auto urls = mimeData->urls(); + const auto urls = mimeData->urls(); + const bool canBePasted = mimeData->hasFormat(QStringLiteral("text/plain")) || mimeData->hasFormat(QStringLiteral("text/uri-list")); QString dropText; if (!urls.isEmpty()) { + // might invalidate mimeData thanks to job->exec() dropText = extractDroppedText(urls); // If our target is local we will open a popup - otherwise the fallback kicks @@ -3068,7 +3137,7 @@ void TerminalDisplay::dropEvent(QDropEvent *event) dropText = mimeData->text(); } - if (mimeData->hasFormat(QStringLiteral("text/plain")) || mimeData->hasFormat(QStringLiteral("text/uri-list"))) { + if (canBePasted) { doPaste(dropText, false); } @@ -3115,7 +3184,7 @@ void TerminalDisplay::applyProfile(const Profile::Ptr &profile) { // load color scheme _colorScheme = ViewManager::colorSchemeForProfile(profile); - _terminalColor->applyProfile(profile, _colorScheme, randomSeed()); + _terminalColor->applyProfile(profile, _colorScheme, sessionController()->session()->sessionId()); setWallpaper(_colorScheme->wallpaper()); // load font @@ -3132,6 +3201,7 @@ void TerminalDisplay::applyProfile(const Profile::Ptr &profile) // terminal features setBlinkingCursorEnabled(profile->blinkingCursorEnabled()); + setAnimatingCursorEnabled(profile->animatingCursorEnabled()); setBlinkingTextEnabled(profile->blinkingTextEnabled()); _tripleClickMode = Enum::TripleClickModeEnum(profile->property(Profile::TripleClickMode)); setAutoCopySelectedText(profile->autoCopySelectedText()); @@ -3175,6 +3245,8 @@ void TerminalDisplay::applyProfile(const Profile::Ptr &profile) _scrollBar->setAlternateScrolling(profile->property(Profile::AlternateScrolling)); _scrollBar->setMarkerSize(profile->property(Profile::MarkerSize)); _scrollBar->setMarkerColor(profile->property(Profile::MarkerColor)); + _scrollBar->setSearchHighlightLineOpacity(profile->property(Profile::SearchLineOpacity)); + _scrollBar->setSearchHighlightLineColor(profile->property(Profile::SearchLineColor)); _dimValue = profile->dimValue(); _focusBorderColor = profile->focusBorderColor(); @@ -3186,7 +3258,6 @@ void TerminalDisplay::applyProfile(const Profile::Ptr &profile) void TerminalDisplay::printScreen() { -#if HAVE_QTPRINTSUPPORT auto lprintContent = [this](QPainter &painter, bool friendly) { QPoint columnLines(_usedLines, _usedColumns); auto lfontget = [this]() { @@ -3199,7 +3270,6 @@ void TerminalDisplay::printScreen() _printManager->printContent(painter, friendly, columnLines, lfontget, lfontset); }; _printManager->printRequest(lprintContent, this); -#endif } Character TerminalDisplay::getCursorCharacter(int column, int line) diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.h b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.h index 15392aa53d..1e79cbd0fc 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.h +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalDisplay.h @@ -8,8 +8,6 @@ #ifndef TERMINALDISPLAY_H #define TERMINALDISPLAY_H -#include "config-konsole.h" - // Qt #include #include @@ -67,12 +65,10 @@ class Profile; * This function adjusts a rect by adding a 1px border around it. The idea is to * compensate in case of approximation issues on highdpi displays with fractional * scaling applied. - * As Qt6 may not be affected by this issue, the adjustment is not added in that - * case. Hopefully the compiler ignores this function in that case. */ inline QRect highdpi_adjust_rect(const QRect &rect) { - return rect; + return rect.adjusted(-1, -1, 1, 1); } /** @@ -98,17 +94,6 @@ public: void applyProfile(const QExplicitlySharedDataPointer &profile); - /** - * Sets the seed used to generate random colors for the display - * (in color schemes that support them). - */ - void setRandomSeed(uint randomSeed); - /** - * Returns the seed used to generate random colors for the display - * (in color schemes that support them). - */ - uint randomSeed() const; - /** Sets the opacity of the terminal display. */ void setOpacity(qreal opacity); @@ -153,6 +138,9 @@ public: /** Specifies whether or not the cursor can blink. */ void setBlinkingCursorEnabled(bool blink); + /** Specifies whether or not the cursor can animate. */ + void setAnimatingCursorEnabled(bool animate); + /** Specifies whether or not text can blink. */ void setBlinkingTextEnabled(bool blink); @@ -176,9 +164,10 @@ public: * Sets the Cursor Style (DECSCUSR) via escape sequences * @p shape cursor shape * @p isBlinking if true, the cursor will be set to blink + * @p isAnimating if true, the cursor will be set to animate * @p customColor custom cursor color */ - void setCursorStyle(Enum::CursorShapeEnum shape, bool isBlinking, const QColor &customColor); + void setCursorStyle(Enum::CursorShapeEnum shape, bool isBlinking, bool isAnimating, const QColor &customColor); /** * Resets the cursor style to the current profile cursor shape and @@ -245,6 +234,8 @@ public: void resetCursor(); + void setPointerShape(Qt::CursorShape shape); + QRect contentRect() const { return _contentRect; @@ -343,6 +334,10 @@ public: { return _cursorBlinking; } + bool cursorAnimating() const + { + return _cursorAnimating; + } bool textBlinking() const { @@ -445,6 +440,8 @@ public: void setVisualCursorPosition(int x); + void setHoverLinkIndicator(QString text); + public Q_SLOTS: /** * Causes the terminal display to fetch the latest character image from the associated @@ -526,6 +523,7 @@ Q_SIGNALS: * @param eventType The type of event. 0 for a mouse press / release or 1 for mouse motion */ void mouseSignal(int button, int column, int line, int eventType); + void exactMouseSignal(int button, int x, int y, int eventType); void changedContentSizeSignal(int height, int width); /** @@ -682,6 +680,8 @@ private: // Clear _screenWindow selection and also pending double click selection void clearSelection(); + void sendMouseSignal(int button, QPoint pos, int eventType, bool sendInexact); + // the window onto the terminal screen which this display // is currently showing. QPointer _screenWindow; @@ -718,8 +718,6 @@ private: QColor _colorTable[TABLE_COLORS]; - uint _randomSeed = 0; - bool _resizing = false; bool _showTerminalSizeHint = true; bool _bidiEnabled = false; @@ -747,8 +745,10 @@ private: bool _allowBlinkingText = true; // allow text to blink bool _allowBlinkingCursor = false; // allow cursor to blink + bool _allowAnimatingCursor = false; // allow cursor to animate bool _textBlinking = false; // text is blinking, hide it when drawing bool _cursorBlinking = false; // cursor is blinking, hide it when drawing + bool _cursorAnimating = false; // cursor is animating, animate it when drawing bool _hasTextBlinker = false; // has characters to blink QTimer *_blinkTextTimer = nullptr; QTimer *_blinkCursorTimer = nullptr; @@ -761,9 +761,9 @@ private: Enum::TripleClickModeEnum _tripleClickMode = Enum::SelectWholeLine; bool _possibleTripleClick = false; // is set in mouseDoubleClickEvent and cleared // after QApplication::doubleClickInterval() delay - QPoint _tripleClickPos; // The position where a potential triple click was started - QString _doubleClickSelectedText; // selected text whose copying may be cancelled by further events; copying - QString _doubleClickSelectedHtml; // is delayed to prevent a triple-click from generating > 1 entries in the + QPoint _tripleClickPos = QPoint(0, 0); // The position where a potential triple click was started + QString _doubleClickSelectedText = QString(); // selected text whose copying may be cancelled by further events; copying + QString _doubleClickSelectedHtml = QString(); // is delayed to prevent a triple-click from generating > 1 entries in the // clipboard history (a triple click is a double click at first ;) QLabel *_resizeWidget = nullptr; @@ -775,7 +775,7 @@ private: // terminal output - informing them what has happened and how to resume output KMessageWidget *_outputSuspendedMessageWidget = nullptr; - QSize _size; + QSize _size = QSize(0, 0); std::shared_ptr _colorScheme; ColorSchemeWallpaper::Ptr _wallpaper; @@ -811,10 +811,10 @@ private: bool _selectMode = false; bool _dimWhenInactive = false; - int _dimValue; + int _dimValue = 0; bool _borderWhenActive = false; - QColor _focusBorderColor; + QColor _focusBorderColor = QColor(); ScrollState _scrollWheelState; IncrementalSearchBar *_searchBar = nullptr; @@ -835,23 +835,25 @@ private: TerminalScrollBar *_scrollBar = nullptr; TerminalColor *_terminalColor = nullptr; std::unique_ptr _terminalFont; + QLabel *_hoverLinkIndicator = nullptr; -#if HAVE_QTPRINTSUPPORT std::unique_ptr _printManager; -#endif - bool _semanticUpDown; - bool _semanticInputClick; + bool _semanticUpDown = false; + bool _semanticInputClick = false; UBiDi *ubidi = nullptr; QPoint _visualCursorPosition = {0, 0}; - int _selModeModifiers; - bool _selModeByModifiers; // Selection started by Shift+Arrow + int _selModeModifiers = 0; + bool _selModeByModifiers = false; // Selection started by Shift+Arrow int _id; static int lastViewId; + QRectF currentCursorRect; + QRectF targetCursorRect; + QTimer *animationTimer; }; } diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalFonts.cpp b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalFonts.cpp index 865ad3a467..b22a22875f 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalFonts.cpp +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalFonts.cpp @@ -79,10 +79,6 @@ void TerminalFont::setVTFont(const QFont &f) // Disabling kerning saves some computation when rendering text. newFont.setKerning(false); - // QFont::ForceIntegerMetrics has been removed. - // Set full hinting instead to ensure the letters are aligned properly. - newFont.setHintingPreference(QFont::PreferFullHinting); - // "Draw intense colors in bold font" feature needs to use different font weights. StyleName // property, when set, doesn't allow weight changes. Since all properties (weight, stretch, // italic, etc) are stored in QFont independently, in almost all cases styleName is not needed. diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.cpp b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.cpp index cb8b8fbe9e..02ebb04821 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.cpp +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -39,10 +40,74 @@ const QChar LTR_OVERRIDE_CHAR(0x202D); namespace Konsole { +QVariant interpolatePolygonF(const QPolygonF &start, const QPolygonF &end, qreal progress) +{ + if (start.size() != end.size()) { + return end; + } + + QPolygonF result; + for (int i = 0; i < start.size(); ++i) { + QPointF p = start[i] + (end[i] - start[i]) * progress; + result << p; + } + return QVariant::fromValue(result); +} + TerminalPainter::TerminalPainter(TerminalDisplay *parent) : QObject(parent) , m_parentDisplay(parent) { + qRegisterAnimationInterpolator(interpolatePolygonF); + m_cursorAnim = new QVariantAnimation(this); + m_cursorAnim->setDuration(200); + m_cursorAnim->setEasingCurve(QEasingCurve::OutCubic); + connect(m_cursorAnim, &QVariantAnimation::valueChanged, this, &TerminalPainter::updateCursorAnimation); +} +void TerminalPainter::updateCursorAnimation(const QVariant &value) +{ + m_animatedCursorPolygon = value.value(); + m_parentDisplay->update(); +} +QPolygonF createDynamicPolygon(const QRectF &rect, qreal shear, qreal taper) +{ + QPolygonF poly; + qreal dx = -shear * rect.height(); + + qreal topWidthReduction = (taper < 0) ? (rect.width() * -taper) : 0; + qreal bottomWidthReduction = (taper > 0) ? (rect.width() * taper) : 0; + + QPointF topLeft(rect.left() + dx + topWidthReduction, rect.top()); + QPointF topRight(rect.right() + dx - topWidthReduction, rect.top()); + QPointF bottomRight(rect.right() - bottomWidthReduction, rect.bottom()); + QPointF bottomLeft(rect.left() + bottomWidthReduction, rect.bottom()); + + poly << topLeft << topRight << bottomRight << bottomLeft; + return poly; +} + +void TerminalPainter::onCursorPositionChanged(const QRectF &oldRect, const QRectF &newRect) +{ + if (!m_parentDisplay->cursorAnimating()) { + return; + } + + m_cursorAnim->stop(); + + qreal deltaX = oldRect.x() - newRect.x(); + qreal deltaY = oldRect.y() - newRect.y(); + + qreal targetShear = qBound(-0.25, -deltaX * 0.015, 0.25); + + qreal targetTaper = qBound(-0.3, deltaY * 0.02, 0.3); + + QPolygonF startPoly = createDynamicPolygon(oldRect, targetShear, targetTaper); + + QPolygonF endPoly = createDynamicPolygon(newRect, 0.0, 0.0); + + m_cursorAnim->setStartValue(QVariant::fromValue(startPoly)); + m_cursorAnim->setEndValue(QVariant::fromValue(endPoly)); + m_cursorAnim->start(); } static inline bool isLineCharString(const QString &string, bool braille) @@ -71,11 +136,11 @@ QColor alphaBlend(const QColor &foreground, const QColor &background) const auto inverseForegroundAlpha = 1.0 - foregroundAlpha; const auto backgroundAlpha = background.alphaF(); - if (foregroundAlpha == 0.0) { + if (qFuzzyIsNull(foregroundAlpha)) { return background; } - if (backgroundAlpha == 1.0) { + if (qFuzzyCompare(1.0 + backgroundAlpha, 1.0 + 1.0)) { return QColor::fromRgb((foregroundAlpha * foreground.red()) + (inverseForegroundAlpha * background.red()), (foregroundAlpha * foreground.green()) + (inverseForegroundAlpha * background.green()), (foregroundAlpha * foreground.blue()) + (inverseForegroundAlpha * background.blue()), @@ -83,7 +148,7 @@ QColor alphaBlend(const QColor &foreground, const QColor &background) } else { const auto inverseBackgroundAlpha = (backgroundAlpha * inverseForegroundAlpha); const auto finalAlpha = foregroundAlpha + inverseBackgroundAlpha; - Q_ASSERT(finalAlpha != 0.0); + Q_ASSERT(!qFuzzyIsNull(finalAlpha)); return QColor::fromRgb((foregroundAlpha * foreground.red()) + (inverseBackgroundAlpha * background.red()), (foregroundAlpha * foreground.green()) + (inverseBackgroundAlpha * background.green()), @@ -198,8 +263,9 @@ void TerminalPainter::drawContents(Character *image, const int fontHeight = m_parentDisplay->terminalFont()->fontHeight(); const QRect textArea(QPoint(leftPadding + fontWidth * rect.x(), topPadding + rect.y() * fontHeight), QSize(rect.width() * fontWidth, rect.height() * fontHeight)); + QRegion sixelRegion = QRegion(); if (!printerFriendly) { - drawImagesBelowText(paint, textArea, fontWidth, fontHeight, placementIdx); + drawImagesBelowText(paint, textArea, fontWidth, fontHeight, placementIdx, sixelRegion); } static const QFont::Weight FontWeights[] = { @@ -209,7 +275,7 @@ void TerminalPainter::drawContents(Character *image, QFont::Bold, QFont::Black, }; - const QFont::Weight normalWeight = static_cast(m_parentDisplay->font().weight()); // Qt6: cast can go away + const QFont::Weight normalWeight = m_parentDisplay->font().weight(); auto it = std::upper_bound(std::begin(FontWeights), std::end(FontWeights), normalWeight); const QFont::Weight boldWeight = it != std::end(FontWeights) ? *it : QFont::Black; paint.setLayoutDirection(Qt::LeftToRight); @@ -296,7 +362,9 @@ void TerminalPainter::drawContents(Character *image, line2log, bidiEnabled, lastNonSpace, - background); + background, + y, + sixelRegion); } RenditionFlags oldRendition = -1; @@ -581,32 +649,44 @@ void TerminalPainter::updateCursorTextColor(const QColor &backgroundColor, QColo } } -void TerminalPainter::drawCursor(QPainter &painter, const QRect &rect, const QColor &foregroundColor, const QColor &backgroundColor, QColor &characterColor) +void TerminalPainter::drawCursor(QPainter &painter, const QRectF &cursorRect, const QColor &foregroundColor, const QColor &backgroundColor, QColor &characterColor) { - if (m_parentDisplay->cursorBlinking()) { - return; - } + const qreal width = qMax(m_parentDisplay->terminalFont()->fontWidth() / 12.0, 1.0); + const qreal halfWidth = width / 2.0; - // shift rectangle top down one pixel to leave some space - // between top and bottom - // noticeable when linespace>1 - QRectF cursorRect = rect.adjusted(0, 1, 0, 0); + if (m_lastTargetRect != cursorRect) { + QRectF nextRect; + + if (m_parentDisplay->cursorShape() == Enum::UnderlineCursor) { + nextRect = QRectF(cursorRect.left(), cursorRect.bottom() - width, cursorRect.width(), width); + } else if (m_parentDisplay->cursorShape() == Enum::IBeamCursor) { + nextRect = QRectF(cursorRect.left(), cursorRect.top(), width, cursorRect.height()); + } else { + nextRect = cursorRect; + } + onCursorPositionChanged(m_lastTargetRect, nextRect); + m_lastTargetRect = cursorRect; + } QColor color = m_parentDisplay->terminalColor()->cursorColor(); QColor cursorColor = color.isValid() ? color : foregroundColor; - QPen pen(cursorColor); - pen.setJoinStyle(Qt::MiterJoin); - // TODO: the relative pen width to draw the cursor is a bit hacky - // and set to 1/12 of the font width. Visually it seems to work at - // all scales but there must be better ways to do it - const qreal width = qMax(m_parentDisplay->terminalFont()->fontWidth() / 12.0, 1.0); - const qreal halfWidth = width / 2.0; - pen.setWidthF(width); - painter.setPen(pen); - - if (m_parentDisplay->cursorShape() == Enum::BlockCursor) { + if (m_parentDisplay->cursorAnimating() && m_cursorAnim->state() == QAbstractAnimation::Running && !m_animatedCursorPolygon.isEmpty()) { painter.setRenderHint(QPainter::Antialiasing, true); + painter.setBrush(cursorColor); + painter.setPen(Qt::NoPen); + painter.drawPolygon(m_animatedCursorPolygon, Qt::OddEvenFill); + painter.setRenderHint(QPainter::Antialiasing, false); + painter.setBrush(Qt::NoBrush); + } + if (m_parentDisplay->cursorBlinking()) { + return; + } + QPen pen(cursorColor); + pen.setWidthF(width); + pen.setJoinStyle(Qt::MiterJoin); + painter.setPen(pen); + if (m_parentDisplay->cursorShape() == Enum::BlockCursor) { if (m_parentDisplay->hasFocus()) { painter.fillRect(cursorRect, cursorColor); @@ -614,9 +694,10 @@ void TerminalPainter::drawCursor(QPainter &painter, const QRect &rect, const QCo } else { // draw the cursor outline, adjusting the area so that // it is drawn entirely inside cursorRect + painter.setRenderHint(QPainter::Antialiasing, true); painter.drawRect(cursorRect.adjusted(halfWidth, halfWidth, -halfWidth, -halfWidth)); + painter.setRenderHint(QPainter::Antialiasing, false); } - painter.setRenderHint(QPainter::Antialiasing, false); } else if (m_parentDisplay->cursorShape() == Enum::UnderlineCursor) { QLineF line(cursorRect.left() + halfWidth, cursorRect.bottom() - halfWidth, cursorRect.right() - halfWidth, cursorRect.bottom() - halfWidth); painter.drawLine(line); @@ -775,7 +856,9 @@ void TerminalPainter::drawBelowText(QPainter &painter, int *line2log, bool bidiEnabled, int lastNonSpace, - QColor background) + QColor background, + int Y, + QRegion sixelRegion) { // setup painter @@ -824,10 +907,12 @@ void TerminalPainter::drawBelowText(QPainter &painter, if (backgroundColor == colorTable[DEFAULT_BACK_COLOR]) { backgroundColor = background; } - drawBG = backgroundColor != colorTable[DEFAULT_BACK_COLOR]; if (style[x].rendition.f.transparent) { drawBG = false; + } else { + drawBG = backgroundColor != colorTable[DEFAULT_BACK_COLOR] || sixelRegion.contains(QPoint(i + startX, Y)); } + constRect = QRect(rect.x() + fontWidth * i, rect.y(), fontWidth, rect.height()); } else { constRect.setWidth(constRect.width() + fontWidth); @@ -894,12 +979,11 @@ void TerminalPainter::drawAboveText(QPainter &painter, if (ulColorTable != nullptr && (style[lastX].flags & EF_UNDERLINE_COLOR) != 0) { pen.setColor(ulColorTable[((style[lastX].flags & EF_UNDERLINE_COLOR)) / EF_UNDERLINE_COLOR_1 - 1].color(colorTable)); } - int lw = m_parentDisplay->terminalFont()->lineWidth(); + const int lw = m_parentDisplay->terminalFont()->lineWidth(); qreal y = rect.y() + m_parentDisplay->terminalFont()->fontAscent() + m_parentDisplay->terminalFont()->underlinePos() + m_parentDisplay->terminalFont()->lineSpacing() / static_cast(2); if (underline == RE_UNDERLINE_DOUBLE || underline == RE_UNDERLINE_CURL) { y = rect.bottom() - 1; - lw = 1; } pen.setWidth(lw); if (underline == RE_UNDERLINE_DOT) { @@ -907,17 +991,39 @@ void TerminalPainter::drawAboveText(QPainter &painter, } else if (underline == RE_UNDERLINE_DASH) { pen.setStyle(Qt::DashLine); } - if (underline == RE_UNDERLINE_CURL) { - QVector dashes(2, 2); - pen.setDashPattern(dashes); - } painter.setPen(pen); - painter.drawLine(QLineF(rect.x() + fontWidth * startUnderline, y, rect.x() + fontWidth * i - 1, y)); - if (underline == RE_UNDERLINE_DOUBLE) { - painter.drawLine(rect.x() + fontWidth * startUnderline, y - 2, rect.x() + fontWidth * i - 1, y - 2); - } - if (underline == RE_UNDERLINE_CURL) { - painter.drawLine(QLineF(rect.x() + fontWidth * startUnderline + 2, y - 1, rect.x() + fontWidth * i - 1, y - 1)); + const int x1 = rect.x() + fontWidth * startUnderline; + const int x2 = rect.x() + fontWidth * i - 1; + if (underline != RE_UNDERLINE_CURL) + painter.drawLine(QLineF(x1, y, x2, y)); + if (underline == RE_UNDERLINE_DOUBLE || underline == RE_UNDERLINE_CURL) { + const int fontHeight = m_parentDisplay->terminalFont()->fontHeight(); + const qreal amplitude = static_cast(fontHeight) / 8.0; + + if (underline == RE_UNDERLINE_DOUBLE) { + painter.drawLine(x1, y - amplitude, x2, y - amplitude); + } else { + y = std::max(static_cast(0), y - amplitude / 2); + assert(underline == RE_UNDERLINE_CURL); + const int len = x2 - x1; + if (len > 0) { + const qreal desiredWavelength = fontWidth / 1.2; + const int cycles = std::max(1, static_cast(len / desiredWavelength)); + const qreal wavelength = static_cast(len) / cycles; + const qreal halfWavelength = wavelength / 2.0; + const qreal quarterWavelength = halfWavelength / 2.0; + const qreal threeQuarterWavelength = 3 * quarterWavelength; + QPainterPath segment; + segment.moveTo(0, 0); + segment.quadTo(quarterWavelength, -amplitude, halfWavelength, 0); + segment.quadTo(threeQuarterWavelength, amplitude, wavelength, 0); + QPainterPath path; + path.moveTo(x1, y); + for (int i = 0; i < cycles; ++i) + path.addPath(segment.translated(x1 + i * wavelength, y)); + painter.drawPath(path); + } + } } startUnderline = -1; @@ -960,7 +1066,7 @@ void TerminalPainter::drawAboveText(QPainter &painter, } } -void TerminalPainter::drawImagesBelowText(QPainter &painter, const QRect &rect, int fontWidth, int fontHeight, int &placementIdx) +void TerminalPainter::drawImagesBelowText(QPainter &painter, const QRect &rect, int fontWidth, int fontHeight, int &placementIdx, QRegion &sixelRegion) { Screen *screen = m_parentDisplay->screenWindow()->screen(); @@ -982,6 +1088,9 @@ void TerminalPainter::drawImagesBelowText(QPainter &painter, const QRect &rect, QRectF dstRect(x, y - scrollDelta, p->pixmap.width(), p->pixmap.height()); painter.setOpacity(p->opacity); painter.drawPixmap(dstRect, p->pixmap, srcRect); + if (p->source == TerminalGraphicsPlacement_t::Sixel) { + sixelRegion = sixelRegion.united(QRect(p->col, p->row, p->cols, p->rows)); + } placementIdx++; } painter.setOpacity(opacity); diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.h b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.h index 06cab21908..8c7600179a 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.h +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalPainter.h @@ -10,6 +10,9 @@ #define TERMINALPAINTER_HPP // Qt +#include +#include +#include #include // Konsole @@ -86,7 +89,7 @@ private: void updateCursorTextColor(const QColor &backgroundColor, QColor &characterColor); // draws the cursor character - void drawCursor(QPainter &painter, const QRect &rect, const QColor &foregroundColor, const QColor &backgroundColor, QColor &characterColor); + void drawCursor(QPainter &painter, const QRectF &cursorRect, const QColor &foregroundColor, const QColor &backgroundColor, QColor &characterColor); TerminalDisplay *m_parentDisplay = nullptr; void drawBelowText(QPainter &painter, @@ -101,7 +104,9 @@ private: int *line2log, bool bidiEnabled, int lastNonSpace, - QColor background); + QColor background, + int Y, + QRegion sixelRegion); void drawAboveText(QPainter &painter, const QRect &rect, Character *style, @@ -115,7 +120,7 @@ private: bool bidiEnabled, int lastNonSpace, CharacterColor const *ulColorTable); - void drawImagesBelowText(QPainter &painter, const QRect &rect, int fontWidth, int fontHeight, int &placementIdx); + void drawImagesBelowText(QPainter &painter, const QRect &rect, int fontWidth, int fontHeight, int &placementIdx, QRegion &sixelRegion); void drawImagesAboveText(QPainter &painter, const QRect &rect, int fontWidth, int fontHeight, int &placementIdx); void drawTextCharacters(QPainter &painter, @@ -130,6 +135,11 @@ private: QColor oldColor, QFont::Weight normalWeight, QFont::Weight boldWeight); + void updateCursorAnimation(const QVariant &value); + void onCursorPositionChanged(const QRectF &oldRect, const QRectF &newRect); + QVariantAnimation *m_cursorAnim; + QRectF m_lastTargetRect; + QPolygonF m_animatedCursorPolygon; }; } diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.cpp b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.cpp index 832bfd15b4..b9d70239dd 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.cpp +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.cpp @@ -13,6 +13,7 @@ #include "../characters/Character.h" #include "TerminalDisplay.h" #include "TerminalFonts.h" +#include "session/SessionController.h" // KDE @@ -21,6 +22,7 @@ #include #include #include +#include namespace Konsole { @@ -28,6 +30,7 @@ TerminalScrollBar::TerminalScrollBar(QWidget *parent) : QScrollBar(parent) { connect(this, &QScrollBar::valueChanged, this, &TerminalScrollBar::scrollBarPositionChanged); + setMouseTracking(true); } TerminalScrollBar::~TerminalScrollBar() @@ -107,6 +110,15 @@ void TerminalScrollBar::setMarkerSize(double pSize) update(); } +void TerminalScrollBar::setSearchHighlightLineColor(QColor color) { + _searchHighlightLineColor = color; + update(); +} + +void TerminalScrollBar::setSearchHighlightLineOpacity(int lineOpacity) { + _lineOpacity = lineOpacity; + update(); +} void TerminalScrollBar::scrollBarPositionChanged(int) { const auto display = qobject_cast(this->parent()); @@ -261,7 +273,18 @@ void TerminalScrollBar::paintEvent(QPaintEvent *event) { QScrollBar::paintEvent(event); + const QColor searchLineColor(_searchHighlightLineColor.red(), _searchHighlightLineColor.green(), _searchHighlightLineColor.blue(), _lineOpacity); + const int cornerRadius = 2; + const int stripeHeight = 1; + QPainter p(this); + p.setPen(Qt::NoPen); + + p.setBrush(searchLineColor); + for (int y: std::as_const(_searchLines)) { + y = (y * height()) / _terminalLines; + p.drawRoundedRect(2, y, width() - 4, stripeHeight, cornerRadius, cornerRadius); + } for (int i = 0; i < _markers.size(); ++i) { p.setOpacity(0.75); @@ -269,6 +292,24 @@ void TerminalScrollBar::paintEvent(QPaintEvent *event) } } +void TerminalScrollBar::searchLines(const QSet& indexSet, int lines) { + if (indexSet.isEmpty()) { + _searchLines.clear(); + } else { + _searchLines = indexSet; + } + + if(sender()) { + _terminalLines = lines; + } + + update(); +} + +void TerminalScrollBar::clearSearchLines() { + searchLines(QSet{}, 1000); +} + void TerminalScrollBar::resizeEvent(QResizeEvent *event) { QScrollBar::resizeEvent(event); @@ -286,6 +327,28 @@ void TerminalScrollBar::mouseDoubleClickEvent(QMouseEvent *event) } } +void TerminalScrollBar::mouseMoveEvent(QMouseEvent *event) { + int posY = event->pos().y(); + bool showToolTip = false; + + for (int y: std::as_const(_searchLines)) { + int x = y; + y = (y * height()) / _terminalLines; + if (abs(y - posY) <= 3) { + QString tooltipText = QString::fromUtf8("line %1").arg(x); + QToolTip::showText(event->globalPosition().toPoint(), tooltipText); + showToolTip = true; + break; + } + } + + if (!showToolTip) { + QToolTip::hideText(); + } + + QScrollBar::mouseMoveEvent(event); +} + void TerminalScrollBar::removeMarker(int clickedYCoord) { for (int i = 0; i < _markers.size(); ++i) { @@ -309,7 +372,7 @@ void TerminalScrollBar::removeMarker(int clickedYCoord) bool TerminalScrollBar::markerExists(int clickedYCoord) { - for (Marker *marker : _markers) { + for (Marker *marker : std::as_const(_markers)) { double markerTop = marker->geometry.top(); double markerHeight = marker->geometry.height(); @@ -346,7 +409,7 @@ void TerminalScrollBar::registerMarker(TerminalScrollBar::Marker *marker) void TerminalScrollBar::regenerateMarkersGeometry() { - for (Marker *marker : _markers) { + for (Marker *marker : std::as_const(_markers)) { generateMarkerGeometry(marker->position, *marker); } } diff --git a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.h b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.h index 192595857d..81419a6099 100644 --- a/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.h +++ b/local/recipes/kde/konsole/source/src/terminalDisplay/TerminalScrollBar.h @@ -65,6 +65,10 @@ public: void setMarkerSize(double percentageSize); + void setSearchHighlightLineColor(QColor lineColor); + + void setSearchHighlightLineOpacity(int lineOpacity); + // applies changes to scrollbarLocation to the scroll bar and // if @propagate is true, propagates size information void applyScrollBarPosition(bool propagate = true); @@ -98,8 +102,10 @@ public Q_SLOTS: void scrollBarPositionChanged(int value); void highlightScrolledLinesEvent(); + void searchLines(const QSet&, int); + void clearSearchLines(); - // Reimplmentation to paint scrollbar markers over the standard drawing + // Reimplementation to paint scrollbar markers over the standard drawing void paintEvent(QPaintEvent *event) override; // Reimplementation to derive scrollbar marker geometry again. @@ -108,6 +114,9 @@ public Q_SLOTS: // Reimplementation to check for input indicating marker addition or removal void mouseDoubleClickEvent(QMouseEvent *event) override; + // Reimplementation to show a tooltip with the line number when hovering over lines. + void mouseMoveEvent(QMouseEvent *event) override; + private: class Marker { @@ -146,8 +155,12 @@ private: HighlightScrolledLines _highlightScrolledLines; QPalette _backgroundMatchingPalette; QColor _markerColor; - double _markerPSize; + double _markerPSize = 2.0; QList _markers; + QSet _searchLines; + int _terminalLines = 1; + QColor _searchHighlightLineColor; + int _lineOpacity = 100; }; } // namespace Konsole diff --git a/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/CMakeLists.txt b/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/CMakeLists.txt index 71d0e484eb..2559c165d3 100644 --- a/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/CMakeLists.txt +++ b/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/CMakeLists.txt @@ -21,6 +21,6 @@ find_package(KF6 ${REQUIRED_KF_VERSION} REQUIRED COMPONENTS I18n ) -feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) +feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) add_subdirectory(src) diff --git a/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/src/demo_konsolepart.cpp b/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/src/demo_konsolepart.cpp index 2220e09640..780d42875c 100644 --- a/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/src/demo_konsolepart.cpp +++ b/local/recipes/kde/konsole/source/src/tests/demo_konsolepart/src/demo_konsolepart.cpp @@ -45,9 +45,13 @@ demo_konsolepart::demo_konsolepart() _terminal = qobject_cast(_terminalPart); // Test if blur is enabled for profile - bool blurEnabled; - QMetaObject::invokeMethod(_terminalPart, "isBlurEnabled", Qt::DirectConnection, Q_RETURN_ARG(bool, blurEnabled)); - qWarning() << "blur enabled: " << blurEnabled; + bool blurEnabled = false; + bool invoked = QMetaObject::invokeMethod(_terminalPart, "isBlurEnabled", Qt::DirectConnection, Q_RETURN_ARG(bool, blurEnabled)); + if (!invoked) { + qWarning() << "isBlurEnabled invocation failed; using default:" << blurEnabled; + } else { + qWarning() << "blur enabled: " << blurEnabled; + } KWindowEffects::enableBlurBehind(windowHandle(), blurEnabled); } @@ -60,9 +64,10 @@ demo_konsolepart::~demo_konsolepart() KParts::ReadOnlyPart *demo_konsolepart::createPart() { - const KPluginFactory::Result result = - KPluginFactory::instantiatePlugin(KPluginMetaData(QStringLiteral("konsolepart")), this); + const KPluginMetaData metaData(QStringLiteral("kf6/parts/konsolepart"), KPluginMetaData::AllowEmptyMetaData); + Q_ASSERT(metaData.isValid()); + KPluginFactory::Result result = KPluginFactory::instantiatePlugin(metaData, this); Q_ASSERT(result); return result.plugin; diff --git a/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.cpp b/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.cpp index 5c5e3c2d8f..40671e45dd 100644 --- a/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.cpp +++ b/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.cpp @@ -24,6 +24,7 @@ DetachableTabBar::DetachableTabBar(QWidget *parent) , dragType(DragType::NONE) , _originalCursor(cursor()) , tabId(-1) + , _activityColor(QColor::Invalid) { setAcceptDrops(true); setElideMode(Qt::TextElideMode::ElideLeft); @@ -32,12 +33,47 @@ DetachableTabBar::DetachableTabBar(QWidget *parent) void DetachableTabBar::setColor(int idx, const QColor &color) { - setTabData(idx, color); + DetachableTabData data = tabData(idx).value(); + if (data.color != color) { + data.color = color; + setDetachableTabData(idx, data); + update(tabRect(idx)); + } +} + +void DetachableTabBar::setActivityColor(int idx, const QColor &color) +{ + _activityColor = color; + update(); } void DetachableTabBar::removeColor(int idx) { - setTabData(idx, QVariant()); + DetachableTabData data = tabData(idx).value(); + if (data.color.isValid()) { + data.color = QColor(); + setDetachableTabData(idx, data); + update(tabRect(idx)); + } +} + +void DetachableTabBar::setProgress(int idx, const std::optional &progress) +{ + DetachableTabData data = tabData(idx).value(); + if (data.progress != progress) { + data.progress = progress; + setDetachableTabData(idx, data); + update(tabRect(idx)); + } +} + +void DetachableTabBar::setDetachableTabData(int idx, const DetachableTabData &data) +{ + if ((data.color.isValid() && data.color.alpha() > 0) || data.progress.has_value()) { + setTabData(idx, QVariant::fromValue(data)); + } else { + setTabData(idx, QVariant()); + } } void DetachableTabBar::middleMouseButtonClickAt(const QPoint &pos) @@ -85,7 +121,11 @@ void DetachableTabBar::mouseMoveEvent(QMouseEvent *event) void DetachableTabBar::mouseReleaseEvent(QMouseEvent *event) { + // Block signals on middle mouse release, to prevent QTabBar's own handling + // closing the tab, which is not configurable. + const bool signalsWereBlocked = blockSignals(event->button() == Qt::MiddleButton); QTabBar::mouseReleaseEvent(event); + blockSignals(signalsWereBlocked); switch (event->button()) { case Qt::MiddleButton: @@ -123,6 +163,13 @@ void DetachableTabBar::mouseReleaseEvent(QMouseEvent *event) } } +void DetachableTabBar::mouseDoubleClickEvent(QMouseEvent *event) +{ + if (event->button() == Qt::LeftButton) { + QTabBar::mouseDoubleClickEvent(event); + } +} + void DetachableTabBar::dragEnterEvent(QDragEnterEvent *event) { const auto dragId = QStringLiteral("konsole/terminal_display"); @@ -161,18 +208,34 @@ void DetachableTabBar::paintEvent(QPaintEvent *event) continue; } - QColor varColor = data.value(); - if (!varColor.isValid() || varColor.alpha() == 0) { + const DetachableTabData tabData = data.value(); + + const bool colorValid = tabData.color.isValid() && tabData.color.alpha() > 0; + + if (!colorValid && !tabData.progress.has_value()) { continue; } - painter.setBrush(varColor); + const QColor color = colorValid ? tabData.color : palette().highlight().color(); + + painter.setBrush(color); QRect tRect = tabRect(tabIndex); tRect.setTop(painter.fontMetrics().height() + 6); // Color bar top position consider a height the font and fixed spacing of 6px tRect.setHeight(4); tRect.setLeft(tRect.left() + 6); tRect.setWidth(tRect.width() - 6); - painter.drawRect(tRect); + + // Draw progress, if any, ontop of a faint bar. + if (tabData.progress.has_value()) { + painter.setOpacity(0.3); + painter.drawRect(tRect); + painter.setOpacity(1.0); + + tRect.setWidth(tRect.width() * tabData.progress.value() / 100.0); + painter.drawRect(tRect); + } else { + painter.drawRect(tRect); + } } } diff --git a/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.h b/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.h index 0f297c0545..ec71de5a1d 100644 --- a/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.h +++ b/local/recipes/kde/konsole/source/src/widgets/DetachableTabBar.h @@ -10,12 +10,20 @@ #include #include +#include + class QColor; class QPaintEvent; namespace Konsole { class TabbedViewContainer; + +struct DetachableTabData { + QColor color; + std::optional progress; +}; + class DetachableTabBar : public QTabBar { Q_OBJECT @@ -30,6 +38,10 @@ public: void setColor(int idx, const QColor &color); void removeColor(int idx); + void setActivityColor(int idx, const QColor &color); + + void setProgress(int idx, const std::optional &progress); + Q_SIGNALS: void detachTab(int index); void moveTabToWindow(int tabIndex, QWidget *otherWindow); @@ -41,16 +53,22 @@ protected: void mousePressEvent(QMouseEvent *event) override; void mouseMoveEvent(QMouseEvent *event) override; void mouseReleaseEvent(QMouseEvent *event) override; + void mouseDoubleClickEvent(QMouseEvent *event) override; void dragEnterEvent(QDragEnterEvent *event) override; void dragMoveEvent(QDragMoveEvent *event) override; void paintEvent(QPaintEvent *event) override; private: + void setDetachableTabData(int idx, const DetachableTabData &data); + DragType dragType; QCursor _originalCursor; QList _containers; int tabId; + QColor _activityColor; }; } +Q_DECLARE_METATYPE(Konsole::DetachableTabData) + #endif diff --git a/local/recipes/kde/konsole/source/src/widgets/EditProfileAdvancedPage.ui b/local/recipes/kde/konsole/source/src/widgets/EditProfileAdvancedPage.ui index db609ae962..543c9bac32 100644 --- a/local/recipes/kde/konsole/source/src/widgets/EditProfileAdvancedPage.ui +++ b/local/recipes/kde/konsole/source/src/widgets/EditProfileAdvancedPage.ui @@ -6,7 +6,7 @@ 0 0 - 400 + 477 400 @@ -249,47 +249,67 @@ - - - - Line Numbers: - - - Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter - - - - - - - &Never - - - lineNums - - - - - - - When &URL hints show - - - lineNums - - - - - - - A&lways - - - lineNums - - - - + + + + Set interval between autosaves: + + + + + + + ms + + + 0 + + + 3600000 + + + + + + + Line Numbers: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + + + + + + + &Never + + + lineNums + + + + + + + When &URL hints show + + + lineNums + + + + + + + A&lways + + + lineNums + + + + diff --git a/local/recipes/kde/konsole/source/src/widgets/EditProfileAppearancePage.ui b/local/recipes/kde/konsole/source/src/widgets/EditProfileAppearancePage.ui index 4be260b13a..09bedc747f 100644 --- a/local/recipes/kde/konsole/source/src/widgets/EditProfileAppearancePage.ui +++ b/local/recipes/kde/konsole/source/src/widgets/EditProfileAppearancePage.ui @@ -185,10 +185,10 @@ - Use the selected font for line characters instead of the builtin code + Use the selected font for line characters instead of the builtin code - Use line characters contained in font + Use line characters contained in font @@ -451,6 +451,32 @@ + + + + Animation: + + + enableAnimatingCursorButton + + + + + + + + 0 + 0 + + + + Make the cursor animate smoothly + + + Enabled + + + diff --git a/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.cpp b/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.cpp index bfe7ec2ba7..d3893e6554 100644 --- a/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.cpp +++ b/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.cpp @@ -9,6 +9,7 @@ #include "EditProfileDialog.h" // Qt +#include #include #include #include @@ -17,15 +18,16 @@ #include #include #include +#include #include #include #include -#include #include #include // KDE #include +#include #include #include #include @@ -43,6 +45,8 @@ #include "colorscheme/ColorSchemeManager.h" +#include "containers/ContainerRegistry.h" + #include "keyboardtranslator/KeyboardTranslator.h" #include "KeyBindingEditor.h" @@ -509,6 +513,37 @@ void EditProfileDialog::setupGeneralPage(const Profile::Ptr &profile) _generalUi->environmentEditButton->setIcon(QIcon::fromTheme(QStringLiteral("document-edit"))); _generalUi->startInSameDirButton->setChecked(profile->startInCurrentSessionDir()); + // Container inheritance setup + _generalUi->inheritContainerButton->setChecked(profile->inheritContainerContext()); + auto *containerRegistry = ContainerRegistry::instance(); + if (!containerRegistry->isEnabled()) { + _generalUi->inheritContainerButton->setEnabled(false); + _generalUi->containerWarningWidget->setVisible(true); + _generalUi->containerWarningWidget->setMessageType(KMessageWidget::Warning); + _generalUi->containerWarningWidget->setText(containerRegistry->disabledReason()); + } + + // "Always start in container" combo box + { + _generalUi->containerCombo->clear(); + _generalUi->containerCombo->addItem(i18n("None"), QString()); + + const QList containers = containerRegistry->cachedContainers(); + for (const auto &container : containers) { + const QString label = QStringLiteral("%1: %2").arg(container.detector->displayName(), container.displayName); + _generalUi->containerCombo->addItem(QIcon::fromTheme(container.iconName), label, ContainerRegistry::keyFromContainerInfo(container)); + } + + // Select the currently configured container + const QString currentContainer = profile->containerName(); + const int idx = _generalUi->containerCombo->findData(currentContainer); + _generalUi->containerCombo->setCurrentIndex(idx >= 0 ? idx : 0); + + if (!containerRegistry->isEnabled()) { + _generalUi->containerCombo->setEnabled(false); + } + } + // initial terminal size const auto colsSuffix = ki18ncp("Suffix of the number of columns (N columns). The leading space is needed to separate it from the number value.", " column", " columns"); @@ -543,6 +578,8 @@ void EditProfileDialog::setupGeneralPage(const Profile::Ptr &profile) connect(_generalUi->dirSelectButton, &QToolButton::clicked, this, &Konsole::EditProfileDialog::selectInitialDir); connect(_generalUi->iconSelectButton, &QPushButton::clicked, this, &Konsole::EditProfileDialog::selectIcon); connect(_generalUi->startInSameDirButton, &QCheckBox::toggled, this, &Konsole::EditProfileDialog::startInSameDir); + connect(_generalUi->inheritContainerButton, &QCheckBox::toggled, this, &Konsole::EditProfileDialog::inheritContainerContext); + connect(_generalUi->containerCombo, &QComboBox::currentIndexChanged, this, &Konsole::EditProfileDialog::containerComboChanged); connect(_generalUi->profileNameEdit, &QLineEdit::textChanged, this, &Konsole::EditProfileDialog::profileNameChanged); connect(_generalUi->initialDirEdit, &QLineEdit::textChanged, this, &Konsole::EditProfileDialog::initialDirChanged); connect(_generalUi->commandEdit, &QLineEdit::textChanged, this, &Konsole::EditProfileDialog::commandChanged); @@ -661,10 +698,12 @@ void EditProfileDialog::setupTabsPage(const Profile::Ptr &profile) _tabsUi->renameTabWidget->setTabTitleText(profile->localTabTitleFormat()); _tabsUi->renameTabWidget->setRemoteTabTitleText(profile->remoteTabTitleFormat()); _tabsUi->renameTabWidget->setColor(profile->tabColor()); + _tabsUi->renameTabWidget->setActivityColor(profile->tabActivityColor()); connect(_tabsUi->renameTabWidget, &Konsole::RenameTabWidget::tabTitleFormatChanged, this, &Konsole::EditProfileDialog::tabTitleFormatChanged); connect(_tabsUi->renameTabWidget, &Konsole::RenameTabWidget::remoteTabTitleFormatChanged, this, &Konsole::EditProfileDialog::remoteTabTitleFormatChanged); connect(_tabsUi->renameTabWidget, &Konsole::RenameTabWidget::tabColorChanged, this, &Konsole::EditProfileDialog::tabColorChanged); + connect(_tabsUi->renameTabWidget, &Konsole::RenameTabWidget::tabActivityColorChanged, this, &Konsole::EditProfileDialog::tabActivityColorChanged); // tab monitoring const int silenceSeconds = profile->silenceSeconds(); @@ -727,6 +766,11 @@ void EditProfileDialog::tabColorChanged(const QColor &color) updateTempProfileProperty(Profile::TabColor, color); } +void EditProfileDialog::tabActivityColorChanged(const QColor &color) +{ + updateTempProfileProperty(Profile::TabActivityColor, color); +} + void EditProfileDialog::focusBorderColorChanged(const QColor &color) { updateTempProfileProperty(Profile::FocusBorderColor, color); @@ -758,6 +802,17 @@ void EditProfileDialog::startInSameDir(bool sameDir) updateTempProfileProperty(Profile::StartInCurrentSessionDir, sameDir); } +void EditProfileDialog::inheritContainerContext(bool inherit) +{ + updateTempProfileProperty(Profile::InheritContainerContext, inherit); +} + +void EditProfileDialog::containerComboChanged(int index) +{ + const QString containerKey = _generalUi->containerCombo->itemData(index).toString(); + updateTempProfileProperty(Profile::ContainerName, containerKey); +} + void EditProfileDialog::semanticUpDown(bool enable) { updateTempProfileProperty(Profile::SemanticUpDown, enable); @@ -873,6 +928,8 @@ void EditProfileDialog::setupAppearancePage(const Profile::Ptr &profile) // cursor options _appearanceUi->enableBlinkingCursorButton->setChecked(profile->property(Profile::BlinkingCursorEnabled)); connect(_appearanceUi->enableBlinkingCursorButton, &QToolButton::toggled, this, &EditProfileDialog::toggleBlinkingCursor); + _appearanceUi->enableAnimatingCursorButton->setChecked(profile->property(Profile::AnimatingCursorEnabled)); + connect(_appearanceUi->enableAnimatingCursorButton, &QToolButton::toggled, this, &EditProfileDialog::toggleAnimatingCursor); if (profile->useCustomCursorColor()) { _appearanceUi->customCursorColorButton->setChecked(true); @@ -1030,6 +1087,12 @@ void EditProfileDialog::toggleBlinkingCursor(bool enable) updateTempProfileProperty(Profile::BlinkingCursorEnabled, enable); } +void EditProfileDialog::toggleAnimatingCursor(bool enable) +{ + preview(Profile::AnimatingCursorEnabled, enable); + updateTempProfileProperty(Profile::AnimatingCursorEnabled, enable); +} + void EditProfileDialog::setCursorShape(int index) { preview(Profile::CursorShape, index); @@ -1330,8 +1393,9 @@ void EditProfileDialog::gotNewColorSchemes(const QList &changedE int failures = 0; for (auto &entry : std::as_const(changedEntries)) { switch (entry.status()) { - case KNSCore::Entry::Installed: - for (const QString &file : entry.installedFiles()) { + case KNSCore::Entry::Installed: { + const auto installedFiles = entry.installedFiles(); + for (const QString &file : installedFiles) { if (ColorSchemeManager::instance()->loadColorScheme(file)) { continue; } @@ -1344,8 +1408,10 @@ void EditProfileDialog::gotNewColorSchemes(const QList &changedE QTimer::singleShot(8000, _appearanceUi->colorSchemeMessageWidget, &KMessageWidget::animatedHide); } break; - case KNSCore::Entry::Deleted: - for (const auto &file : entry.uninstalledFiles()) { + } + case KNSCore::Entry::Deleted: { + const auto uninstalledFiles = entry.uninstalledFiles(); + for (const auto &file : uninstalledFiles) { if (ColorSchemeManager::instance()->unloadColorScheme(file)) { continue; } @@ -1354,6 +1420,7 @@ void EditProfileDialog::gotNewColorSchemes(const QList &changedE // it either wasn't loaded or was invalid to begin with. } break; + } case KNSCore::Entry::Invalid: case KNSCore::Entry::Installing: case KNSCore::Entry::Downloadable: @@ -1748,6 +1815,13 @@ void EditProfileDialog::setupScrollingPage(const Profile::Ptr &profile) _scrollingUi->markerSizeWidget->setValue(profile->property(Profile::MarkerSize)); connect(_scrollingUi->markerSizeWidget, &QDoubleSpinBox::valueChanged, this, &Konsole::EditProfileDialog::toggleScrollbarMarkerSize); + // setup search highlighter color button + _scrollingUi->searchHighligheterColorButton->setColor(profile->property(Profile::SearchLineColor)); + connect(_scrollingUi->searchHighligheterColorButton, &KColorButton::changed, this, &Konsole::EditProfileDialog::toggleScrollbarSearchLineColor); + + // setup search highlighter opacity widget + _scrollingUi->labelSearchHighlighterOpacitySlider->setValue(profile->property(Profile::SearchLineOpacity)); + connect(_scrollingUi->labelSearchHighlighterOpacitySlider, &QSlider::valueChanged, this, &Konsole::EditProfileDialog::toggleScrollbarSearchLineOpacity); // signals and slots connect(_scrollingUi->historySizeWidget, &Konsole::HistorySizeWidget::historySizeChanged, this, &Konsole::EditProfileDialog::historySizeChanged); } @@ -1792,6 +1866,14 @@ void EditProfileDialog::toggleScrollbarMarkerSize(double pSize) updateTempProfileProperty(Profile::MarkerSize, pSize); } +void EditProfileDialog::toggleScrollbarSearchLineColor(QColor color) { + updateTempProfileProperty(Profile::SearchLineColor, color); +} + +void EditProfileDialog::toggleScrollbarSearchLineOpacity(int opacity) { + updateTempProfileProperty(Profile::SearchLineOpacity, opacity); +} + void EditProfileDialog::setupMousePage(const Profile::Ptr &profile) { _mouseUi->underlineLinksButton->setChecked(profile->property(Profile::UnderlineLinksEnabled)); @@ -1987,17 +2069,20 @@ void EditProfileDialog::setupAdvancedPage(const Profile::Ptr &profile) connect(_advancedUi->urlHintsModifierMeta, &QCheckBox::toggled, this, &EditProfileDialog::updateUrlHintsModifier); } + _advancedUi->autoSaveIntervalWidget->setValue(profile->property(Profile::AutoSaveInterval)); + connect(_advancedUi->autoSaveIntervalWidget, &QSpinBox::valueChanged, this, &EditProfileDialog::setAutoSaveInterval); + // encoding options auto codecAction = new KCodecAction(this); codecAction->setCurrentCodec(profile->defaultEncoding()); _advancedUi->selectEncodingButton->setMenu(codecAction->menu()); connect(codecAction, &KCodecAction::codecNameTriggered, this, [this](const QByteArray &codecName) { - setDefaultCodec(QTextCodec::codecForName(codecName)); + setDefaultCodec(codecName); }); connect(codecAction, &KCodecAction::defaultItemTriggered, this, [this] { - setDefaultCodec(QTextCodec::codecForLocale()); + setDefaultCodec(QStringConverter::nameForEncoding(QStringConverter::System)); }); _advancedUi->selectEncodingButton->setText(profile->defaultEncoding()); @@ -2048,9 +2133,9 @@ int EditProfileDialog::maxSpinBoxWidth(const KPluralHandlingSpinBox *spinBox, co return spinBoxSize.width(); } -void EditProfileDialog::setDefaultCodec(QTextCodec *codec) +void EditProfileDialog::setDefaultCodec(const QByteArray &codec) { - QString name = QString::fromLocal8Bit(codec->name()); + QString name = QString::fromLocal8Bit(codec); updateTempProfileProperty(Profile::DefaultEncoding, name); _advancedUi->selectEncodingButton->setText(name); @@ -2182,6 +2267,11 @@ void EditProfileDialog::toggleFlowControl(bool enable) updateTempProfileProperty(Profile::FlowControlEnabled, enable); } +void EditProfileDialog::setAutoSaveInterval(int newVal) +{ + updateTempProfileProperty(Profile::AutoSaveInterval, newVal); +} + void EditProfileDialog::peekPrimaryKeySequenceChanged() { updateTempProfileProperty(Profile::PeekPrimaryKeySequence, _advancedUi->peekPrimaryWidget->keySequence().toString()); diff --git a/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.h b/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.h index 1ccd73c461..69f3c65062 100644 --- a/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.h +++ b/local/recipes/kde/konsole/source/src/widgets/EditProfileDialog.h @@ -115,6 +115,8 @@ private Q_SLOTS: void profileNameChanged(const QString &name); void initialDirChanged(const QString &dir); void startInSameDir(bool); + void inheritContainerContext(bool); + void containerComboChanged(int index); void commandChanged(const QString &command); void semanticUpDown(bool); void semanticInputClick(bool enable); @@ -123,6 +125,7 @@ private Q_SLOTS: void tabTitleFormatChanged(const QString &format); void remoteTabTitleFormatChanged(const QString &format); void tabColorChanged(const QColor &color); + void tabActivityColorChanged(const QColor &color); void silenceSecondsChanged(int); void terminalColumnsEntryChanged(int); @@ -148,6 +151,7 @@ private Q_SLOTS: // void focusBorderColor(); void focusBorderColorChanged(const QColor &color); void toggleBlinkingCursor(bool); + void toggleAnimatingCursor(bool); void setCursorShape(int); void autoCursorColor(); void customCursorColor(); @@ -188,6 +192,9 @@ private Q_SLOTS: void toggleScrollbarMarkerColor(QColor color); void toggleScrollbarMarkerSize(double pSize); + void toggleScrollbarSearchLineColor(QColor color); + void toggleScrollbarSearchLineOpacity(int opacity); + // keyboard page void editKeyBinding(); void newKeyBinding(); @@ -220,8 +227,9 @@ private Q_SLOTS: void toggleFlowControl(bool); void updateUrlHintsModifier(bool); void toggleReverseUrlHints(bool); + void setAutoSaveInterval(int); - void setDefaultCodec(QTextCodec *); + void setDefaultCodec(const QByteArray &codec); void setTextEditorCombo(const Profile::Ptr &profile); diff --git a/local/recipes/kde/konsole/source/src/widgets/EditProfileGeneralPage.ui b/local/recipes/kde/konsole/source/src/widgets/EditProfileGeneralPage.ui index bc50c1d28d..b6145050e3 100644 --- a/local/recipes/kde/konsole/source/src/widgets/EditProfileGeneralPage.ui +++ b/local/recipes/kde/konsole/source/src/widgets/EditProfileGeneralPage.ui @@ -194,7 +194,56 @@ - + + + + When opening a new tab or split, automatically enter the same container (Toolbox, Distrobox) as the current session + + + Enter same container as current session + + + + + + + false + + + true + + + false + + + + + + + + 0 + 0 + + + + Always start in container: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + + + containerCombo + + + + + + + Always start new sessions using this profile inside the selected container + + + + @@ -213,7 +262,7 @@ - + 0 @@ -243,7 +292,7 @@ - + Qt::Orientation::Vertical @@ -259,7 +308,7 @@ - + @@ -275,7 +324,7 @@ - + 0 @@ -334,7 +383,7 @@ - + @@ -348,12 +397,15 @@ Qt::TextFormat::RichText + + Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignTop + true - + &Terminal bell mode: @@ -363,7 +415,7 @@ - + diff --git a/local/recipes/kde/konsole/source/src/widgets/EditProfileScrollingPage.ui b/local/recipes/kde/konsole/source/src/widgets/EditProfileScrollingPage.ui index 197d01f2b5..a9ae0d4dec 100644 --- a/local/recipes/kde/konsole/source/src/widgets/EditProfileScrollingPage.ui +++ b/local/recipes/kde/konsole/source/src/widgets/EditProfileScrollingPage.ui @@ -6,8 +6,8 @@ 0 0 - 400 - 400 + 574 + 425 @@ -29,14 +29,76 @@ - - + + - + 0 0 + + Scroll Page Up/Down: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + + + + + + + Highlight the lines coming into view + + + + + + + % + + + 1 + + + 0.000000000000000 + + + 100.000000000000000 + + + + + + + Hidden + + + scrollBarPosition + + + + + + + Size of each marker (as a percentage of scrollbar length): + + + + + + + + 0 + 0 + + + + Highlighting: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + @@ -55,22 +117,6 @@ - - - - - 0 - 0 - - - - Scroll Page Up/Down: - - - Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter - - - @@ -90,6 +136,55 @@ + + + + Color of scrollbar markers: + + + + + + + Qt::Orientation::Vertical + + + QSizePolicy::Policy::Fixed + + + + 20 + 16 + + + + + + + + + + + Color of scrollbar search highlighting lines: + + + + + + + + 0 + 0 + + + + Reflow Lines: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + + + @@ -103,6 +198,60 @@ + + + + + 0 + 0 + 0 + + + + + + + + Show the scroll bar on the right side of the terminal window + + + Ri&ght side + + + scrollBarPosition + + + + + + + + 0 + 0 + + + + + + + + Show the scroll bar on the left side of the terminal window + + + &Left side + + + scrollBarPosition + + + + + + + Reflow lines when terminal resizes + + + @@ -135,138 +284,23 @@ - - - - Show the scroll bar on the right side of the terminal window - + + - Ri&ght side + Search highlighting line opacity: - - scrollBarPosition - - - - - Show the scroll bar on the left side of the terminal window + + + + 200 - - &Left side - - - scrollBarPosition - - - - - - - Hidden - - - scrollBarPosition - - - - - - Qt::Orientation::Vertical - - - QSizePolicy::Policy::Fixed - - - - 20 - 16 - - - - - - - - - 0 - 0 - - - - Highlighting: - - - Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + Qt::Orientation::Horizontal - - - - Highlight the lines coming into view - - - - - - - - 0 - 0 - - - - Reflow Lines: - - - Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter - - - - - - - Reflow lines when terminal resizes - - - - - - - Color of scrollbar markers: - - - - - - - - - - - Size of each marker (as a percentage of scrollbar length): - - - - - - - 1 - - - 0.1 - - - 100 - - - % - - - @@ -285,6 +319,11 @@ + + KColorButton + QPushButton +
              kcolorbutton.h
              +
              Konsole::HistorySizeWidget QWidget @@ -294,7 +333,7 @@ - + diff --git a/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.cpp b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.cpp index 3ccf9c6278..666a525ed7 100644 --- a/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.cpp +++ b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.cpp @@ -17,6 +17,7 @@ // KDE #include "KonsoleSettings.h" +#include "widgets/IncrementalSearchBarSizeGrip.h" #include #include @@ -27,7 +28,6 @@ using namespace Konsole; IncrementalSearchBar::IncrementalSearchBar(QWidget *parent) : QWidget(parent) , _searchEdit(nullptr) - , _caseSensitive(nullptr) , _regExpression(nullptr) , _highlightMatches(nullptr) , _reverseSearch(nullptr) @@ -35,6 +35,7 @@ IncrementalSearchBar::IncrementalSearchBar(QWidget *parent) , _findNextButton(nullptr) , _findPreviousButton(nullptr) , _searchFromButton(nullptr) + , _caseSensitiveButton(nullptr) , _searchTimer(nullptr) { setPalette(qApp->palette()); @@ -56,13 +57,11 @@ IncrementalSearchBar::IncrementalSearchBar(QWidget *parent) setFocusProxy(_searchEdit); setCursor(Qt::ArrowCursor); - // text box may be a minimum of 6 characters wide and a maximum of 10 characters wide - // (since the maxWidth metric is used here, more characters probably will fit in than 6 - // and 10) + // text box may be a minimum of 6 characters wide + // (since the maxWidth metric is used here, more characters probably will fit in than 6) QFontMetrics metrics(_searchEdit->font()); int maxWidth = metrics.maxWidth(); _searchEdit->setMinimumWidth(maxWidth * 6); - _searchEdit->setMaximumWidth(maxWidth * 10); _searchTimer = new QTimer(this); _searchTimer->setInterval(250); @@ -94,6 +93,19 @@ IncrementalSearchBar::IncrementalSearchBar(QWidget *parent) _searchFromButton->installEventFilter(this); connect(_searchFromButton, &QToolButton::clicked, this, &Konsole::IncrementalSearchBar::searchFromClicked); + _caseSensitiveButton = new QToolButton(this); + // Gnome does not seem to have all icons we want, so we use fall-back icons for those that are missing. + const QIcon caseSensitiveIcon = QIcon::fromTheme(QStringLiteral("format-text-superscript"), QIcon::fromTheme(QStringLiteral("format-text-bold"))); + _caseSensitiveButton->setIcon(caseSensitiveIcon); + _caseSensitiveButton->setObjectName(QStringLiteral("find-next-button")); + _caseSensitiveButton->setToolButtonStyle(Qt::ToolButtonIconOnly); + _caseSensitiveButton->setText(i18nc("@action:button", "Case sensitive")); + _caseSensitiveButton->setToolTip(i18nc("@info:tooltip", "Sets whether the search is case sensitive")); + _caseSensitiveButton->setAutoRaise(true); + _caseSensitiveButton->setCheckable(true); + _caseSensitiveButton->installEventFilter(this); + connect(_caseSensitiveButton, &QToolButton::clicked, this, &Konsole::IncrementalSearchBar::matchCaseToggled); + auto optionsButton = new QToolButton(this); optionsButton->setObjectName(QStringLiteral("find-options-button")); optionsButton->setCheckable(false); @@ -116,11 +128,6 @@ IncrementalSearchBar::IncrementalSearchBar(QWidget *parent) auto optionsMenu = new QMenu(this); optionsButton->setMenu(optionsMenu); - _caseSensitive = optionsMenu->addAction(i18nc("@item:inmenu", "Case sensitive")); - _caseSensitive->setCheckable(true); - _caseSensitive->setToolTip(i18nc("@info:tooltip", "Sets whether the search is case sensitive")); - connect(_caseSensitive, &QAction::toggled, this, &Konsole::IncrementalSearchBar::matchCaseToggled); - _regExpression = optionsMenu->addAction(i18nc("@item:inmenu", "Match regular expression")); _regExpression->setCheckable(true); connect(_regExpression, &QAction::toggled, this, &Konsole::IncrementalSearchBar::matchRegExpToggled); @@ -144,11 +151,17 @@ IncrementalSearchBar::IncrementalSearchBar(QWidget *parent) setOptions(); + // Allow this widget to be user resizable + this->setWindowFlags(Qt::SubWindow); + auto sizeGrip = new IncrementalSearchBarSizeGrip(this); + auto barLayout = new QHBoxLayout(this); + barLayout->addWidget(sizeGrip, 0); barLayout->addWidget(_searchEdit); barLayout->addWidget(_findNextButton); barLayout->addWidget(_findPreviousButton); barLayout->addWidget(_searchFromButton); + barLayout->addWidget(_caseSensitiveButton); barLayout->addWidget(optionsButton); barLayout->addWidget(closeButton); barLayout->setContentsMargins(4, 4, 4, 4); @@ -278,7 +291,7 @@ void IncrementalSearchBar::focusLineEdit() const QBitArray IncrementalSearchBar::optionsChecked() { QBitArray options(5, false); - options.setBit(MatchCase, _caseSensitive->isChecked()); + options.setBit(MatchCase, _caseSensitiveButton->isChecked()); options.setBit(RegExp, _regExpression->isChecked()); options.setBit(HighlightMatches, _highlightMatches->isChecked()); options.setBit(ReverseSearch, _reverseSearch->isChecked()); @@ -288,7 +301,7 @@ const QBitArray IncrementalSearchBar::optionsChecked() void IncrementalSearchBar::setOptions() { - _caseSensitive->setChecked(KonsoleSettings::searchCaseSensitive()); + _caseSensitiveButton->setChecked(KonsoleSettings::searchCaseSensitive()); _regExpression->setChecked(KonsoleSettings::searchRegExpression()); _highlightMatches->setChecked(KonsoleSettings::searchHighlightMatches()); _reverseSearch->setChecked(KonsoleSettings::searchReverseSearch()); diff --git a/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.h b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.h index 8c6ea1a331..0a46dfff74 100644 --- a/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.h +++ b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBar.h @@ -151,7 +151,6 @@ private: Q_DISABLE_COPY(IncrementalSearchBar) QLineEdit *_searchEdit; - QAction *_caseSensitive; QAction *_regExpression; QAction *_highlightMatches; QAction *_reverseSearch; @@ -159,6 +158,7 @@ private: QToolButton *_findNextButton; QToolButton *_findPreviousButton; QToolButton *_searchFromButton; + QToolButton *_caseSensitiveButton; QTimer *_searchTimer; }; } diff --git a/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBarSizeGrip.cpp b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBarSizeGrip.cpp new file mode 100644 index 0000000000..00ae6f8465 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBarSizeGrip.cpp @@ -0,0 +1,24 @@ +/* + SPDX-FileCopyrightText: 2024 Eric D'Addario + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +// Own +#include "widgets/IncrementalSearchBarSizeGrip.h" + +namespace Konsole +{ +IncrementalSearchBarSizeGrip::IncrementalSearchBarSizeGrip(QWidget *parent) + : QSizeGrip(parent) +{ + this->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Ignored); + this->setFixedWidth(5); +} + +void IncrementalSearchBarSizeGrip::moveEvent(QMoveEvent *moveEvent) +{ + QSizeGrip::moveEvent(moveEvent); + setCursor(Qt::SizeHorCursor); +} +} \ No newline at end of file diff --git a/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBarSizeGrip.h b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBarSizeGrip.h new file mode 100644 index 0000000000..f6a1f86a00 --- /dev/null +++ b/local/recipes/kde/konsole/source/src/widgets/IncrementalSearchBarSizeGrip.h @@ -0,0 +1,36 @@ +/* + SPDX-FileCopyrightText: 2024 Eric D'Addario + + SPDX-License-Identifier: GPL-2.0-or-later +*/ + +#ifndef INCREMENTALSEARCHBARSIZEGRIP_H +#define INCREMENTALSEARCHBARSIZEGRIP_H + +// Qt +#include + +namespace Konsole +{ +/** + * A custom QSizeGrip widget used by IncrementalSearchBar which allows using a QSizeGrip + * with a horizontal resize cursor. + * + * Currently, QSizeGrip only uses diagonal resize cursors, so we must override this + * functionality as a workaround. + */ +class IncrementalSearchBarSizeGrip : public QSizeGrip +{ +public: + explicit IncrementalSearchBarSizeGrip(QWidget *parent = nullptr); + +protected: + /** + * QSizeGrip sets the cursor inside moveEvent(). + * We override this function to set our desired cursor. + */ + void moveEvent(QMoveEvent *moveEvent) override; +}; +} + +#endif diff --git a/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.cpp b/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.cpp index 9f11a8109b..0be0c056c0 100644 --- a/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.cpp +++ b/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.cpp @@ -36,9 +36,13 @@ RenameTabWidget::RenameTabWidget(QWidget *parent) _ui->tabColorCombo->setColors(listColors); _ui->tabColorCombo->setItemText(1, i18nc("@label:listbox No color selected", "None")); + _ui->tabActivityColorCombo->setColors(listColors); + _ui->tabActivityColorCombo->setItemText(1, i18nc("@label:listbox No color selected", "None")); + connect(_ui->tabTitleEdit, &QLineEdit::textChanged, this, &Konsole::RenameTabWidget::tabTitleFormatChanged); connect(_ui->remoteTabTitleEdit, &QLineEdit::textChanged, this, &Konsole::RenameTabWidget::remoteTabTitleFormatChanged); connect(_ui->tabColorCombo, &KColorCombo::activated, this, &Konsole::RenameTabWidget::tabColorChanged); + connect(_ui->tabActivityColorCombo, &KColorCombo::activated, this, &Konsole::RenameTabWidget::tabActivityColorChanged); _ui->tabTitleFormatButton->setContext(Session::LocalTabTitle); connect(_ui->tabTitleFormatButton, &Konsole::TabTitleFormatButton::dynamicElementSelected, this, &Konsole::RenameTabWidget::insertTabTitleText); @@ -81,6 +85,15 @@ void RenameTabWidget::setColor(const QColor &color) } } +void RenameTabWidget::setActivityColor(const QColor &color) +{ + if (!color.isValid() || color.alpha() == 0) { + _ui->tabActivityColorCombo->setColor(_colorNone); + } else { + _ui->tabActivityColorCombo->setColor(color); + } +} + QString RenameTabWidget::tabTitleText() const { return _ui->tabTitleEdit->text(); @@ -96,6 +109,11 @@ QColor RenameTabWidget::color() const return _ui->tabColorCombo->color(); } +QColor RenameTabWidget::activityColor() const +{ + return _ui->tabActivityColorCombo->color(); +} + void RenameTabWidget::insertTabTitleText(const QString &text) { _ui->tabTitleEdit->insert(text); diff --git a/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.h b/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.h index 4d7138f2fa..7508edf9ef 100644 --- a/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.h +++ b/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.h @@ -30,9 +30,11 @@ public: QString tabTitleText() const; QString remoteTabTitleText() const; QColor color() const; + QColor activityColor() const; void setTabTitleText(const QString &); void setRemoteTabTitleText(const QString &); void setColor(const QColor &); + void setActivityColor(const QColor &); void focusTabTitleText(); void focusRemoteTabTitleText(); @@ -41,6 +43,7 @@ Q_SIGNALS: void tabTitleFormatChanged(const QString &); void remoteTabTitleFormatChanged(const QString &); void tabColorChanged(const QColor &); + void tabActivityColorChanged(const QColor &); public Q_SLOTS: void insertTabTitleText(const QString &text); diff --git a/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.ui b/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.ui index cf22296d2c..75ce1b044e 100644 --- a/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.ui +++ b/local/recipes/kde/konsole/source/src/widgets/RenameTabWidget.ui @@ -7,7 +7,7 @@ 0 0 400 - 119 + 136 @@ -118,7 +118,30 @@ false - 0 + -1 + + +
              + + + + &Activity Tab Color: + + + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter + + + tabActivityColorCombo + + + + + + + false + + + -1 @@ -141,6 +164,8 @@ tabTitleFormatButton remoteTabTitleEdit remoteTabTitleFormatButton + tabColorCombo + tabActivityColorCombo diff --git a/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.cpp b/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.cpp index 88224abf07..3053d7756b 100644 --- a/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.cpp +++ b/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.cpp @@ -168,6 +168,12 @@ QString TerminalDisplayAccessible::text(int startOffset, int endOffset) const return QString(); } + // Ensure our indices are in-bounds. The a11y client is inherently working on outdated information because of the async + // nature of the architecture, so what it thinks the offset is may actually be no longer valid by the time it gets back to us. + // Let's not fail assertions, or worse yet tap into invalid memory. + const auto maxIndex = display()->_usedColumns * display()->_usedLines; + startOffset = qBound(0, startOffset, maxIndex); + endOffset = qBound(startOffset, endOffset, maxIndex); return display()->screenWindow()->screen()->text(startOffset, endOffset, Screen::PreserveLineBreaks); } @@ -175,3 +181,10 @@ TerminalDisplay *TerminalDisplayAccessible::display() const { return qobject_cast(widget()); } + +QAccessible::State Konsole::TerminalDisplayAccessible::state() const +{ + QAccessible::State s = QAccessibleWidget::state(); + s.multiLine = true; + return s; +} diff --git a/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.h b/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.h index a5f7d0ba2e..5d0ebdefca 100644 --- a/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.h +++ b/local/recipes/kde/konsole/source/src/widgets/TerminalDisplayAccessible.h @@ -33,6 +33,8 @@ public: QString text(int startOffset, int endOffset) const override; int characterCount() const override; + QAccessible::State state() const override; + int selectionCount() const override; void selection(int selectionIndex, int *startOffset, int *endOffset) const override; void addSelection(int startOffset, int endOffset) override; diff --git a/local/recipes/kde/konsole/source/src/widgets/ViewContainer.cpp b/local/recipes/kde/konsole/source/src/widgets/ViewContainer.cpp index 8a44432a7b..1288d32402 100644 --- a/local/recipes/kde/konsole/source/src/widgets/ViewContainer.cpp +++ b/local/recipes/kde/konsole/source/src/widgets/ViewContainer.cpp @@ -9,6 +9,7 @@ #include "config-konsole.h" // Qt +#include #include #include #include @@ -24,7 +25,9 @@ #include "DetachableTabBar.h" #include "KonsoleSettings.h" #include "ViewProperties.h" +#include "containers/ContainerList.h" #include "profile/ProfileList.h" +#include "searchtabs/SearchTabs.h" #include "session/SessionController.h" #include "session/SessionManager.h" #include "terminalDisplay/TerminalDisplay.h" @@ -39,6 +42,7 @@ TabbedViewContainer::TabbedViewContainer(ViewManager *connectedViewManager, QWid : QTabWidget(parent) , _connectedViewManager(connectedViewManager) , _newTabButton(new QToolButton(this)) + , _searchTabsButton(new QToolButton(this)) , _closeTabButton(new QToolButton(this)) , _contextMenuTabIndex(-1) , _newTabBehavior(PutNewTabAtTheEnd) @@ -56,6 +60,11 @@ TabbedViewContainer::TabbedViewContainer(ViewManager *connectedViewManager, QWid _newTabButton->setToolTip(i18nc("@info:tooltip", "Open a new tab")); connect(_newTabButton, &QToolButton::clicked, this, &TabbedViewContainer::newViewRequest); + _searchTabsButton->setIcon(QIcon::fromTheme(QStringLiteral("quickopen"))); + _searchTabsButton->setAutoRaise(true); + _searchTabsButton->setToolTip(i18nc("@info:tooltip", "Search Tabs")); + connect(_searchTabsButton, &QToolButton::clicked, this, &TabbedViewContainer::searchTabs); + _closeTabButton->setIcon(QIcon::fromTheme(QStringLiteral("tab-close"))); _closeTabButton->setAutoRaise(true); _closeTabButton->setToolTip(i18nc("@info:tooltip", "Close this tab")); @@ -75,8 +84,11 @@ TabbedViewContainer::TabbedViewContainer(ViewManager *connectedViewManager, QWid connect(this, &TabbedViewContainer::currentChanged, this, &TabbedViewContainer::currentTabChanged); connect(this, &TabbedViewContainer::setColor, tabBarWidget, &DetachableTabBar::setColor); + connect(this, &TabbedViewContainer::setActivityColor, tabBarWidget, &DetachableTabBar::setActivityColor); connect(this, &TabbedViewContainer::removeColor, tabBarWidget, &DetachableTabBar::removeColor); + connect(this, &TabbedViewContainer::setProgress, tabBarWidget, &DetachableTabBar::setProgress); + // The context menu of tab bar _contextPopupMenu = new QMenu(tabBar()); connect(_contextPopupMenu, &QMenu::aboutToHide, this, [this]() { @@ -109,8 +121,26 @@ TabbedViewContainer::TabbedViewContainer(ViewManager *connectedViewManager, QWid auto profileMenu = new QMenu(this); auto profileList = new ProfileList(false, profileMenu); - profileList->syncWidgetActions(profileMenu, true); connect(profileList, &Konsole::ProfileList::profileSelected, this, &TabbedViewContainer::newViewWithProfileRequest); + + auto containerList = new Konsole::ContainerList(profileMenu); + connect(containerList, &Konsole::ContainerList::containerSelected, this, &TabbedViewContainer::newViewInContainerRequest); + + auto rebuildProfileMenu = [profileMenu, profileList, containerList]() { + profileMenu->clear(); + containerList->refreshContainers(); + + const auto actions = profileList->actions(); + for (QAction *action : actions) { + profileMenu->addAction(action); + } + + containerList->addContainerSections(profileMenu); + }; + + connect(profileMenu, &QMenu::aboutToShow, profileMenu, rebuildProfileMenu); + rebuildProfileMenu(); + _newTabButton->setMenu(profileMenu); konsoleConfigChanged(); @@ -205,9 +235,27 @@ void TabbedViewContainer::konsoleConfigChanged() setCornerWidget(KonsoleSettings::newTabButton() ? _newTabButton : nullptr, Qt::TopLeftCorner); _newTabButton->setVisible(KonsoleSettings::newTabButton()); - setCornerWidget(KonsoleSettings::closeTabButton() == 1 ? _closeTabButton : nullptr, Qt::TopRightCorner); + // Add Layout for right corner tool buttons + auto layout = new QHBoxLayout(); + layout->setStretch(0, 10); + layout->setContentsMargins(0, 0, 0, 0); + layout->setSpacing(0); + + if (KonsoleSettings::searchTabsButton() == 0) { + layout->addWidget(_searchTabsButton); + } + _searchTabsButton->setVisible(KonsoleSettings::searchTabsButton() == 0); + + if (KonsoleSettings::closeTabButton() == 1) { + layout->addWidget(_closeTabButton); + } _closeTabButton->setVisible(KonsoleSettings::closeTabButton() == 1); + QWidget *rightCornerWidget = new QWidget(); + rightCornerWidget->setLayout(layout); + setCornerWidget(rightCornerWidget, Qt::TopRightCorner); + rightCornerWidget->setVisible(true); + tabBar()->setTabsClosable(KonsoleSettings::closeTabButton() == 0); tabBar()->setExpanding(KonsoleSettings::expandTabWidth()); @@ -371,6 +419,8 @@ void TabbedViewContainer::connectTerminalDisplay(TerminalDisplay *display) connect(item, &Konsole::ViewProperties::colorChanged, this, &Konsole::TabbedViewContainer::updateColor); + connect(item, &Konsole::ViewProperties::activityColorChanged, this, &Konsole::TabbedViewContainer::updateColor); + connect(item, &Konsole::ViewProperties::iconChanged, this, &Konsole::TabbedViewContainer::updateIcon); connect(item, &Konsole::ViewProperties::activity, this, &Konsole::TabbedViewContainer::updateActivity); @@ -380,6 +430,8 @@ void TabbedViewContainer::connectTerminalDisplay(TerminalDisplay *display) connect(item, &Konsole::ViewProperties::readOnlyChanged, this, &Konsole::TabbedViewContainer::updateSpecialState); connect(item, &Konsole::ViewProperties::copyInputChanged, this, &Konsole::TabbedViewContainer::updateSpecialState); + + connect(item, &Konsole::ViewProperties::progressChanged, this, &Konsole::TabbedViewContainer::updateProgress); } void TabbedViewContainer::disconnectTerminalDisplay(TerminalDisplay *display) @@ -467,6 +519,17 @@ void TabbedViewContainer::renameTab(int index) } } +void TabbedViewContainer::searchTabs() +{ + /** + * show tab search and pass focus to it + */ + SearchTabs *searchTabs = new SearchTabs(this->connectedViewManager()); + setFocusProxy(searchTabs); + searchTabs->raise(); + searchTabs->show(); +} + void TabbedViewContainer::openTabContextMenu(const QPoint &point) { if (point.isNull()) { @@ -480,7 +543,8 @@ void TabbedViewContainer::openTabContextMenu(const QPoint &point) // TODO: add a countChanged signal so we can remove this for. // Detaching in mac causes crashes. - for (auto action : _contextPopupMenu->actions()) { + const auto actions = _contextPopupMenu->actions(); + for (auto action : actions) { if (action->objectName() == QStringLiteral("tab-detach")) { action->setEnabled(count() > 1); } @@ -516,12 +580,16 @@ void TabbedViewContainer::wheelScrolled(int delta) void TabbedViewContainer::setTabActivity(int index, bool activity) { - const QPalette &palette = tabBar()->palette(); - KColorScheme colorScheme(palette.currentColorGroup()); - const QColor colorSchemeActive = colorScheme.foreground(KColorScheme::ActiveText).color(); - - const QColor normalColor = palette.text().color(); - const QColor activityColor = KColorUtils::mix(normalColor, colorSchemeActive); + auto controller = viewSplitterAt(index)->activeTerminalDisplay()->sessionController(); + auto session = controller->session(); + QColor activityColor = session->activityColor(); + if (activityColor == QColor::Invalid) { + const QPalette &palette = tabBar()->palette(); + KColorScheme colorScheme(palette.currentColorGroup()); + const QColor colorSchemeActive = colorScheme.foreground(KColorScheme::ActiveText).color(); + const QColor normalColor = palette.text().color(); + activityColor = KColorUtils::mix(normalColor, colorSchemeActive); + } QColor color = activity ? activityColor : QColor(); @@ -556,6 +624,15 @@ void TabbedViewContainer::updateColor(ViewProperties *item) Q_EMIT setColor(index, item->color()); } +void TabbedViewContainer::updateActivityColor(ViewProperties *item) +{ + auto controller = qobject_cast(item); + auto topLevelSplitter = qobject_cast(controller->view()->parentWidget())->getToplevelSplitter(); + const int index = indexOf(topLevelSplitter); + + Q_EMIT setActivityColor(index, item->activityColor()); +} + void TabbedViewContainer::updateIcon(ViewProperties *item) { auto controller = qobject_cast(item); @@ -651,6 +728,15 @@ void TabbedViewContainer::updateSpecialState(ViewProperties *item) updateIcon(item); } +void TabbedViewContainer::updateProgress(ViewProperties *item) +{ + auto controller = qobject_cast(item); + auto topLevelSplitter = qobject_cast(controller->view()->parentWidget())->getToplevelSplitter(); + const int index = indexOf(topLevelSplitter); + + Q_EMIT setProgress(index, item->progress()); +} + void TabbedViewContainer::currentSessionControllerChanged(SessionController *controller) { auto topLevelSplitter = qobject_cast(controller->view()->parentWidget())->getToplevelSplitter(); @@ -664,6 +750,7 @@ void TabbedViewContainer::currentSessionControllerChanged(SessionController *con updateTitle(qobject_cast(controller)); updateColor(qobject_cast(controller)); + updateActivityColor(qobject_cast(controller)); updateActivity(qobject_cast(controller)); updateSpecialState(qobject_cast(controller)); } @@ -672,7 +759,8 @@ void TabbedViewContainer::closeTerminalTab(int idx) { Q_EMIT removeColor(idx); // TODO: This for should probably go to the ViewSplitter - for (auto terminal : viewSplitterAt(idx)->findChildren()) { + const auto viewSplitters = viewSplitterAt(idx)->findChildren(); + for (auto terminal : viewSplitters) { terminal->sessionController()->closeSession(); } } diff --git a/local/recipes/kde/konsole/source/src/widgets/ViewContainer.h b/local/recipes/kde/konsole/source/src/widgets/ViewContainer.h index 6c6f8d7c60..e39d5c6257 100644 --- a/local/recipes/kde/konsole/source/src/widgets/ViewContainer.h +++ b/local/recipes/kde/konsole/source/src/widgets/ViewContainer.h @@ -13,6 +13,7 @@ // Konsole #include "ViewManager.h" +#include "containers/ContainerInfo.h" #include "session/Session.h" // Qt @@ -68,6 +69,8 @@ public: /** Sets tab title to item title if the view is active */ void updateTitle(ViewProperties *item); /** Sets tab color to item color if the view is active */ + void updateActivityColor(ViewProperties *item); + /** Sets tab color to item color if the view is active */ void updateColor(ViewProperties *item); /** Sets tab icon to item icon if the view is active */ void updateIcon(ViewProperties *item); @@ -77,6 +80,8 @@ public: void updateNotification(ViewProperties *item, Konsole::Session::Notification notification, bool enabled); /** Sets tab special state (copy input or read-only) */ void updateSpecialState(ViewProperties *item); + /** Sets tab progress */ + void updateProgress(ViewProperties *item); /** Changes the active view to the next view */ void activateNextView(); @@ -117,6 +122,7 @@ public: // TODO: Re-enable this later. // void setNewViewMenu(QMenu *menu); void renameTab(int index); + void searchTabs(); ViewManager *connectedViewManager(); void currentTabChanged(int index); void closeCurrentTab(); @@ -176,6 +182,9 @@ Q_SIGNALS: /** Requests creation of a new view, with the selected profile. */ void newViewWithProfileRequest(const QExplicitlySharedDataPointer &profile); + /** Requests creation of a new view inside the given container. */ + void newViewInContainerRequest(const ContainerInfo &container); + /** a terminalDisplay was dropped in a child Splitter */ /** @@ -208,6 +217,12 @@ Q_SIGNALS: /** remove the color tab */ void removeColor(int idx); + /** set the tab progress */ + void setProgress(int idx, const std::optional &progress); + + /** set the activity color tab */ + void setActivityColor(int index, const QColor &color); + protected: // close tabs and unregister void closeTerminalTab(int idx); @@ -245,6 +260,7 @@ private: ViewManager *_connectedViewManager; QMenu *_contextPopupMenu; QToolButton *_newTabButton; + QToolButton *_searchTabsButton; QToolButton *_closeTabButton; int _contextMenuTabIndex; NewTabBehavior _newTabBehavior; diff --git a/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.cpp b/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.cpp index 252965be7d..4eb0950384 100644 --- a/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.cpp +++ b/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.cpp @@ -54,6 +54,7 @@ ViewSplitter::ViewSplitter(QWidget *parent) , _id(++lastSplitterId) { setAcceptDrops(true); + setHandleWidth(calculateHandleWidth(KonsoleSettings::self()->splitDragHandleSize())); connect(KonsoleSettings::self(), &KonsoleSettings::configChanged, this, [this] { setHandleWidth(calculateHandleWidth(KonsoleSettings::self()->splitDragHandleSize())); }); @@ -222,7 +223,7 @@ void ViewSplitter::childEvent(QChildEvent *event) } } - auto terminals = getToplevelSplitter()->findChildren(); + const auto terminals = getToplevelSplitter()->findChildren(); for (auto terminal : terminals) { terminal->headerBar()->applyVisibilitySettings(); } @@ -289,6 +290,30 @@ void ViewSplitter::focusRight() handleFocusDirection(Qt::Horizontal, +1); } +void ViewSplitter::focusNext(int dir) +{ + auto terminalDisplay = activeTerminalDisplay(); + auto parentSplitter = qobject_cast(terminalDisplay->parentWidget()); + auto topSplitter = parentSplitter->getToplevelSplitter(); + auto terminals = topSplitter->findChildren(); + int id = terminals.indexOf(terminalDisplay); + int targetId = (id + dir) % terminals.size(); + if (targetId < 0) { + targetId = terminals.size() + targetId; + } + + auto targetTerminal = terminals.at(targetId); + + if (targetTerminal) { + targetTerminal->setFocus(Qt::OtherFocusReason); + } +} + +void ViewSplitter::focusPrev() +{ + focusNext(-1); +} + TerminalDisplay *ViewSplitter::activeTerminalDisplay() const { auto focusedWidget = focusWidget(); @@ -403,7 +428,7 @@ void ViewSplitter::handleMinimizeMaximize(bool maximize, bool zoom) // toggleMaximizeCurrentTerminal or toggleZoomMaximizeCurrentTerminal. // Only the method which was used to maximize, determines if the font size needs // to be restored. - if (fontSizeBeforeMaximization) { + if (!qFuzzyIsNull(fontSizeBeforeMaximization)) { currentTerminalFont.setPointSizeF(fontSizeBeforeMaximization); currentTerminalDisplay->terminalFont()->setVTFont(currentTerminalFont); } @@ -432,7 +457,8 @@ ViewSplitter *ViewSplitter::getToplevelSplitter() ViewSplitter *ViewSplitter::getChildSplitter(int id) { - for (auto childSplitter : findChildren()) { + const auto viewSplitters = findChildren(); + for (auto childSplitter : viewSplitters) { if (childSplitter->id() == id) return childSplitter; } @@ -615,13 +641,14 @@ void Konsole::ViewSplitterHandle::mousePressEvent(QMouseEvent *ev) QList splitters = topLevelSplitter->findChildren(); splitters.append(topLevelSplitter); - for (auto splitter : splitters) { + for (auto splitter : std::as_const(splitters)) { if (splitter->orientation() != orientation()) { continue; } int delta = 0; - for (auto point : splitter->sizes()) { + const auto sizes = splitter->sizes(); + for (auto point : sizes) { delta += point; QPoint thisPoint = orientation() == Qt::Horizontal ? QPoint(delta, 0) : QPoint(0, delta); diff --git a/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.h b/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.h index 2bc684d783..761981519a 100644 --- a/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.h +++ b/local/recipes/kde/konsole/source/src/widgets/ViewSplitter.h @@ -145,6 +145,9 @@ public: void focusLeft(); void focusRight(); + void focusNext(int dir = 1); + void focusPrev(); + void handleFocusDirection(Qt::Orientation orientation, int direction); void childEvent(QChildEvent *event) override; diff --git a/local/recipes/kde/konsole/source/tests/text-files/cat_test_urls.txt b/local/recipes/kde/konsole/source/tests/text-files/cat_test_urls.txt index 5dd97ca3d6..80234c34e8 100644 --- a/local/recipes/kde/konsole/source/tests/text-files/cat_test_urls.txt +++ b/local/recipes/kde/konsole/source/tests/text-files/cat_test_urls.txt @@ -249,6 +249,18 @@ xmpp:ogoffart@kde.org 'https://en.wikipedia.org/wiki/Earths_rotation' "https://en.wikipedia.org/wiki/Earth's_rotation" +https://example.com' +https://example.com, +https://example.com. +https://example.com/: +https://example.com; + +https://example.com.. +.https://example.com. +'https://example.com', +"https://example.com", +'https://en.wikipedia.org/wiki/Earth's_rotation', + # testing edge cases - if 80 columns http://www.website.com/directory/relative.html?query=test&name=harry http://www.website.com/directory/relative.html?query=test&name=harryhttp://www.website.com/directory/relative.html?query=test&name=harry -------------- diff --git a/local/recipes/kde/konsole/source/tests/text-files/kitty.examples b/local/recipes/kde/konsole/source/tests/text-files/kitty.examples new file mode 100644 index 0000000000..f558651123 --- /dev/null +++ b/local/recipes/kde/konsole/source/tests/text-files/kitty.examples @@ -0,0 +1,27 @@ + +# Basic usage: +printf '\x1b]99;;Title\x1b\\' +printf '\x1b]99;d=0;%s\x1b\\\x1b]99;d=1:p=body;%s\x1b\\' Title Body +printf '\x1b]99;e=1:d=0;%s\x1b\\\x1b]99;e=1:d=1:p=body;%s\x1b\\' "$(echo -n Title😺 | base64)" "$(echo -n Body😽 | base64)" + +# Application name +printf '\x1b]99;f=%s;Title\x1b\\' "$(echo -n htop | base64)" + +# Icon: +printf '\x1b]99;n=%s;Title\x1b\\' "$(echo -n warn | base64)" +printf '\x1b]99;n=%s;Title\x1b\\' "$(echo -n emacs | base64)" + +# Urgency: +printf '\x1b]99;u=2:d=0;%s\x1b\\\x1b]99;d=1:p=body;%s\x1b\\' "Explosion imminent" "Spaceship will explodes in 5 minutes" + +# Buttons: +printf '\x1b]99;i=1:d=0:p=buttons;OK\xE2\x80\xa8Cancel\x1b\\\x1b]99;i=1:d=1;Proceed?\x1b\\\' + +# Report activation +printf '\x1b]99;i=98542:a=report;3 new messages\x1b\\' + +# Report close +printf '\x1b]99;i=98542:c=1;3 new messages\x1b\\' + +# Report only when unfocused: +sleep 5 ; printf '\x1b]99;o=unfocused;3 new messages\x1b\\'